diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1ac99d7bf..1ec807cf0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,6 +6,6 @@ jobs: pre-commit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 - uses: pre-commit/action@v3.0.0 diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 7f41af559..7dd76a91c 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -7,8 +7,8 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 - uses: casperdcl/deploy-pypi@v2 with: password: ${{ secrets.pypi_token }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b4d157c0e..4d450d2a2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,24 +8,22 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python -m pip install --upgrade pip + python -m pip install --upgrade pip setuptools pip install wheel pip install -r requirements.txt pip install -r requirements-dev.txt - name: Run tests - run: | - python setup.py test - python setup.py testnetwork + run: pytest # Cancel the current workflow (tests) for pull requests (head_ref) only. See: # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-a-fallback-value diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fe11479cb..f85eb6d27 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,12 +3,12 @@ ci: exclude: '^tests/examples/.*\.html$' repos: - repo: https://github.com/asottile/pyupgrade - rev: v3.14.0 + rev: v3.16.0 hooks: - id: pyupgrade args: [--py37-plus] - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.6.0 hooks: - id: check-added-large-files - id: check-ast @@ -32,13 +32,13 @@ repos: args: [--line-length=79, --transform-concats] - repo: https://github.com/psf/black - rev: 23.9.1 + rev: 24.4.2 hooks: - id: black additional_dependencies: ['click==8.0.4'] - repo: https://github.com/PyCQA/isort - rev: 5.12.0 + rev: 5.13.2 hooks: - id: isort name: isort (python) diff --git a/CHANGES.md b/CHANGES.md index dc29446aa..040356b6a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -12,10 +12,722 @@ Releases are also tagged in git, if that's helpful. ## Coming up - - N/A +- N/A ## Current +**2.6.47 - 2024-12-12** + +- Fixes: + - standardize usage of download methods in scrapers (_download, _request_url_get, _request_url_post) + - refactor scrapers to do not return "Per Curiam" as value for "author_str" or "judges" + +- Features + - added `extract_from_text` to `sc` + +## Past + +**2.6.46 - 2024-12-10** + +- Fixes: + - Support for parsing the new format of appellate attachment pages has been added + +**2.6.45 - 2024-12-05** + +- Features: + - AbstractSite now supports saving responses and response headers. + Use it with new optional argument for the sample caller `save-responses`. + - Delete `--daemon` and `--report` options + +**2.6.44 - 2024-11-27** + +- Fixes: + - Fixes `colo` + +**2.6.43 - 2024-11-21** + +- Fixes: + - Fixes `ky` and `colo` + +**2.6.42 - 2024-11-21** + +- Fixes: + - Fix `mass` and `massctapp` cleanup content method + +**2.6.40 - 2024-11-20** + +- Fixes: + - Fix `mass` and `massctapp` scrapers, scrape new endpoint + - Exclude "Commonwealth" string from short case names + +**2.6.39 - 2024-11-18** + +- Fixes: + - Fix `Kansas, Ohio Ct App's 1-13` opinion scraper + +**2.6.38 - 2024-11-08** + +- Fixes: + - Fix `uscfc` opinion scraper + +- Features: + - RECAP: add new sealed document phrase + +**2.6.37 - 2024-10-22** + +Fixes: + - Fix for `okla` cleanup_content + +**2.6.35 - 2024-10-22** + +Fixes: + - Fix for `okla` cleanup_content + +**2.6.34 - 2024-10-22** + +Fixes: + - Fix for `okla` cleanup_content + +**2.6.32 - 2024-10-21** + +Features: + - added `okla` cleanup_content + +Fixes: + - updated `coloctapp` cleanup_content + + +**2.6.31 - 2024-10-21** + +Fixes: + - `neb` now handles rows with no links + - `coloctapp` update cleanup_content + - fix `la` xpath selector that was skipping some cases + +Features: + - new scraper `lactapp_5` for Lousiana Court of Appeals, Fifth Circuit + - now sending a `logger.error` call to Sentry when an scraped date is in the future + +**2.6.30 - 2024-10-10** + +Fixes: + - fix `CADC` oral arguments + +**2.6.29 - 2024-10-10** + +Fixes: + - fix `or` and `orctapp` scraper, scraping new endpoint + - fix cache control headers in `AbstractSite` + - fix `sc` expected content types + +**2.6.28 - 2024-09-27** + +Features: + - new scraper `sc_u` + +Fixes: + - handle `illappct` (oral args) rows with no download link + - `ca11` update to Oral Argument Site Linear + - `cadc_u` change docket number getter + - `sc` implement new site + +**2.6.27 - 2024-09-16** + +Fixes: + - Fixes `coloctapp` + + + +**2.6.25 - 2024-09-16** + +Fixes: + - Handle `nh` edge cases + - Update `ohioctapp` to return "lower_courts" in order to disambiguate dockets across districts + - Update `lib.string_utils.clean_string` to no longer delete semicolons + +**2.6.25 - 2024-09-10** + +Fixes: + - `ny` Fixes NY + - Updates nyappdiv to inherit ny + - fixes tests + +**2.6.24 - 2024-09-05** + +Fixes: + - `vt` now collects neutral citations + - Fix `ca8` and updated to OpinionSiteLinear + - Update README + +**2.6.23 - 2024-09-03** + +Fixes: + - `wis` now collects neutral citations + - `ky` now skips rows with no documents + +Features: + - new scraper `wisctapp` + +**2.6.21 - 2024-08-30** + +Fixes: + - `fladistctapp` docket numbers are now unique across districts + - updated `ca11` html selectors + - updated `pa` to new API format + - set needs_special_headers to True for `vt` + +Features: + - implemented dynamic backscraper and extract_from_text for `conn` + +**2.6.20 - 2024-08-28** + +Fixes: + - Changed to nested format for attachments in the InternetArchive report + +**2.6.19 - 2024-08-26** + +Fixes: + - `nh` renamed to `nh_p` and working by using special headers + +Features: + - New scraper: `nh_u` + - Handle new bankruptcy attachment page format + - Make docket history report parser more robust + +**2.6.18 - 2024-08-22** + +Features: + - SCOTUS backscraper + +Fixes: + - Improvements to bankruptcy docket parsing + - Added `njd` regression tests files + +**2.6.17 - 2024-08-19** + +Fixes: + - RECAP: + - email: now parses short description for `okeb` + - Fixed IndexOutOfRange error in DocketReport::_set_metadata_values method + - Scrapers: + - fixed `cal` SSL errors + - now collecting citations for `minn` + +**2.6.16 - 2024-08-12** + +Fixes: + - Fixed Minnesota and implemented it's backscraper + +**2.6.15 - 2024-08-07** + +Features: + - Added support for parsing PACER bankruptcy and district docket number components. + +**2.6.14 - 2024-08-07** + +Features: + - Add special site headers attribute. + - NY Api changes + +Fixes: + - ND (with dynamic backscraper) + - PA + - Ark + +**2.6.13 - 2024-08-01** + +Features: + - Adds the de_seq_num to the download method. + +Fixes: + - Adds headers attribute to the massappct_u scraper. + - Updates the URL for the oklaag scraper. + - Updates the setup.py configuration to address deprecated setuptools options and improves test management using pytest. + +**2.6.12 - 2024-07-22** + +Features: + - Update free opinion report to store the params used for each request + +**2.6.11 - 2024-07-22** + +Fixes: + - Oklahoma opinion scrapers + - CAFC oral argument scraper + - ASBCA opinion scrapers + - renamed logger from "Logger" to "juriscraper.lib.log_tools", which follows hierarchical naming convention + +Features: + - RECAP email: Support short_description parsing for tnmb and nhb + - md backscraper + - OpinionSiteLinear now supports returning "other_dates" key + - New scraper for ky and kyctapp + +**2.6.10 - 2024-07-11** + +Features: + - Fixes colo scraper expected_content_type + + +**2.6.9 - 2024-07-10** + +Features: + +- Fixes for + - Idaho Civil + - Idaho Criminal + - Idaho Ct Appeals Civil, Criminal, Unpublished + - N. Mariana Islands + - Disables Mississippi + - Disables Missouri + - Fix Nebraska/App + - Pacer Email TXNB +- Adds + - ColoCtApp Dynamic backscraper + +**2.6.8 - 2024-07-03** + +Features: + +- Fix for RI + +**2.6.7 - 2024-07-03** + +Features: + +- Minor fixes for MA and RI + +**2.6.6 - 2024-07-02** + +Features: + +- Implemented backscraper for nj, njtaxct_u, njtaxct_p, njsuperctappdiv_p, njsuperctappdiv_u + +**2.6.5 - 2024-07-02** + +Changes: + +- Fixes for + - Mass + - RI + - NJ + - BIA + - CalAG + + +**2.6.4 - 2024-06-11** + +Changes: + +- Add dynamic backscrapers for: + - tex + - nmcca + - wyo + - vtsuperct + - alaska + +- Fixed wrong xpath selectors and updated to OpinionSiteLinear + - dcd + - nd + - ca1 + +- Solved bug with python3.12 tests in Github Actions + + +**2.6.3 - 2024-05-24** + +Changes: + +- PACER: Refactor login logic for PACER sessions. +- pacer.email: Added short description parsing for `pamb` + + +**2.6.2 - 2024-05-20** + +Features: + +- Added parser for ACMS attachment pages +- Added dynamic backscraper for `tax` + +Changes: + +- PACER: fix error string false positives +- pacer.email: support multidocket NEF short description parsing for `njb` + +**2.6.1 - 2024-05-15** + +Features: + +- Added dynamic backscrapers for these scrapers and their inheriting classes + - afcca + - olc + - bap10 + - fla + - nyappterm + - ill + +- pacer.email: Added short description parsing for `deb` and `mdb` + +Changes: +- Updated `cal` and `calctapp_*` to OpinionSiteLinear + +**2.6.0 - 2024-04-03** + +Features: + +- Added scrapers for fisa and fiscr courts + +Changes: + +- Breaking change has been made to the FreeOpinionReport its 'data' property now + returns a dictionary containing the FreeOpinionRow fields, instead of returning + a Python object with their properties. This change aligns the method of + returning 'data' in this report with that of other reports. +- Fixes to texag, tex + +## Past + +**2.5.95 - 2024-02-14** + +Features: + +- The GET method of the PacerSession class now supports custom timeouts for flexible request management. +- Adds a method to check if a district court docket entry is sealed.. + +Changes: + +- Update the DownloadConfirmationPage class to reduce the read timeout of the GET request within the query method. + +**2.5.94 - 2024-02-13** + +Features: + +Changes: + +- Update minnag +- Update alaska/app + +**2.5.93 - 2024-02-09** + +Features: + +Changes: + +- Update fladistctapp + +**2.5.92 - 2024-02-09** + +Features: + +Changes: + +- Update Nev/NevApp scrapers + +**2.5.91 - 2024-02-09** + +Features: + +- Add expected_content_types to OpinionSite and OralArgSite + +Changes: + +- Fixes for pacer.email, pacer.utils + +**2.5.90 - 2024-02-01** + +Features: + +Changes: + +- Fix Colo Ct App + +**2.5.89 - 2024-01-31** + +Features: + +Changes: + +- Fix Armed Forces Scraper + +**2.5.88 - 2024-01-31** + +Features: + +Changes: + +- Fix Guam +- Fix Fla Dist Court + +**2.5.87 - 2024-01-31** + +Features: + +Changes: + +- Fix PA Superior Court + +**2.5.86 - 2024-01-31** + +Features: + +Changes: + +- Fix Maryland Supreme and lower courts + +**2.5.85 - 2024-01-30** + +Features: + +Changes: + +- Fix Connecticut and Connecticut Court of Appeals + +**2.5.84 - 2024-01-26** + +Features: + +Changes: + +- Update Nevada/Nev App (again) + +**2.5.83 - 2024-01-25** + +Features: + +Changes: + +- Fix Hawaii App +- Nevada/Nev App +- VI Superior +- Cal AG +- LA Ct APP +- Updates the SSL Adapter +- Various RECAP Pacer Fixes + +**2.5.82 - 2024-01-12** + +Features: + +Changes: + +- Fix CADC + +**2.5.81 - 2024-01-12** + +Features: + +Changes: + +- Fix colo / Nytrial courts + +**2.5.80 - 2024-01-10** + +Features: + +Changes: + +- Fix compatibility with newer lxml +- Replace lxml sanitier with nh3 + +**2.5.78 - 2024-01-08** + +Features: + +- Add ten new NY Trial Courts +- Add Maine Superior Court + +Changes: + +- Add child_courts attribute +- Fix VI chore +- Update python dep. + +**2.5.76 - 2023-12-28** + +Features: + +- Add Bankruptcy Appellate Panel 1st Circuit + +Changes: + +**2.5.75 - 2023-12-28** + +Features: + +- + +Changes: + +- Fix BAP1 and update test for it + +**2.5.74 - 2023-12-13** + +Features: + +- Add NevApp + +Changes: + +- Fix Nevada Supreme and Colorado Ct App + + +**2.5.72 - 2023-12-12** + +Features: + +- Add VI Superior Court scraper + +Changes: + +- Fix CA2 Oral Arguments Scraper + +**2.5.71 - 2023-12-11** + +Features: + +- + +Changes: + +- Fix avoid populating case's date_filed with the entry date_filed from emails + +**2.5.70 - 2023-11-21** + +Features: + +- + +Changes: + +- Fix LA Supreme + +**2.5.69 - 2023-11-21** + +Features: + +- Fix VI Tests +- Puerto Rico and Coast Guard court ids to match CL +- Fix Arizona App Dist 2 +- Fix CA2 OA scraper + +Changes: + +- Shrink VA to be faster +- Fix Conn App Ct date handler + +**2.5.68 - 2023-11-20** + +Features: + +- Fix Okla AG content cleanup + +Changes: + +- + +**2.5.67 - 2023-11-20** + +Features: + +- Fix Connecticut Court of Appeals + +Changes: + +- + +**2.5.66 - 2023-11-19** + +Features: + +- Fix Oklahoma Scrapers + +Changes: + +- +**2.5.65 - 2023-11-19** + +Features: + +- + +Changes: + +- Remove selenium from Colorado scrapers + +**2.5.64 - 2023-11-19** + +Features: + +- + +Changes: + +- Fix alabama to remove selenium + + +**2.5.63 - 2023-11-18** + +Features: + + +Changes: + +- Fix Scotus Slip Opinions + +**2.5.62 - 2023-11-18** + +Features: + + +Changes: + +- Fix NH Supreme Court + + +**2.5.60 - 2023-11-18** + +Features: + +- Add Oregon Court of Appeals + +Changes: + +- Fix Oregon Supreme Court + + +**2.5.59 - 2023-11-18** + +Features: + + +Changes: + +- Fix Most remaining downed scrapers +- Fix mismatched court_ids + +**2.5.58 - 2023-11-13** + +Features: + + +Changes: + +- Fix 40 or so scrapers -- all state scrapers + +**2.5.57 - 2023-11-09** + +Features: + +- Add support for parsing ACMS Docket reports. + +Changes: + +- Abstract out date regexes into a new class attribute named DATE_REGEX. +- Update deprecated key in setup.cfg file. +- Refactor the message in the SlownessException to limit the precision to the right of the decimal point to three digits. +- Refactor the regex pattern in the scraper for Colorado Appeals Court + + **2.5.56 - 2023-10-09** Features: @@ -26,8 +738,6 @@ Changes: - Fix Mass/MassAppCt -## Past - **2.5.54 - 2023-10-06** Features: diff --git a/README.rst b/README.rst index e4c917f4f..4505346bd 100644 --- a/README.rst +++ b/README.rst @@ -85,7 +85,7 @@ the local installation, you can download Selenium FireFox Geckodriver:: # un-tar/zip your download sudo mv geckodriver /usr/local/bin -If you prefer to use a remote webdriver, like `Selenium's docker image `__, you can +If you prefer to use a remote webdriver, like `Selenium's docker image `__, you can configure it with the following variables: ``WEBDRIVER_CONN``: Use this to set the connection string to your remote @@ -135,10 +135,10 @@ For scrapers to be merged: `PEP8 `__ compliant with no major Pylint problems or Intellij inspection issues. -- We use the `black `__ code formatter to make sure all our Python code has the same formatting. This is an automated tool that you must run on any code you run before you push it to Github. When you run it, it will reformat your code. We recommend `integrating into your editor `__. +- We use the `black `__ code formatter to make sure all our Python code has the same formatting. This is an automated tool that you must run on any code you run before you push it to Github. When you run it, it will reformat your code. We recommend `integrating into your editor `__. - This project is configured to use git pre-commit hooks managed by the - Python program `pre-commit` ([website](https://pre-commit.com/)). Pre- + Python program `pre-commit `__. Pre- commit checks let us easily ensure that the code is properly formatted with black before it can even be commited. If you install the dev dependencies in `requirements-dev.txt`, you should then be able to run `$ pre-commit install` @@ -224,14 +224,14 @@ follows: site.parse() # Print out the object - print str(site) + print(str(site)) # Print it out as JSON - print site.to_json() + print(site.to_json()) # Iterate over the item for opinion in site: - print opinion + print(opinion) That will print out all the current meta data for a site, including links to the objects you wish to download (typically opinions or oral @@ -264,7 +264,7 @@ if they're not known before starting the scraper. For example: # Create a Site instance, then get the contents site = mod.Site() site.parse() - print str(site) + print(str(site)) This can be useful if you wish to create a command line scraper that iterates over all courts of a certain jurisdiction that is provided by a @@ -324,7 +324,6 @@ Or, to run and drop to the Python debugger if it fails, but you must install `no Future Goals ============ - Support for additional PACER pages and utilities -- Support opinions from for all intermediate appellate state courts - Support opinions from for all courts of U.S. territories (Guam, American Samoa, etc.) - Support opinions from for all federal district courts with non-PACER opinion listings - For every court above where a backscraper is possible, it is implemented. diff --git a/juriscraper/AbstractSite.py b/juriscraper/AbstractSite.py index 53b458d7b..91a4eb741 100644 --- a/juriscraper/AbstractSite.py +++ b/juriscraper/AbstractSite.py @@ -1,11 +1,16 @@ import hashlib import json -from datetime import date, datetime +from datetime import date, datetime, timedelta +from typing import Dict, List, Tuple import certifi import requests -from juriscraper.lib.date_utils import fix_future_year_typo, json_date_handler +from juriscraper.lib.date_utils import ( + fix_future_year_typo, + json_date_handler, + make_date_range_tuples, +) from juriscraper.lib.exceptions import InsanityException from juriscraper.lib.html_utils import ( clean_html, @@ -15,6 +20,7 @@ set_response_encoding, ) from juriscraper.lib.log_tools import make_default_logger +from juriscraper.lib.network_utils import SSLAdapter from juriscraper.lib.string_utils import ( CaseNameTweaker, clean_string, @@ -33,7 +39,7 @@ class AbstractSite: Should not contain lists that can't be sorted by the _date_sort function. """ - def __init__(self, cnt=None): + def __init__(self, cnt=None, **kwargs): super().__init__() # Computed metadata @@ -47,15 +53,30 @@ def __init__(self, cnt=None): self.request = { "verify": certifi.where(), "session": requests.session(), - "headers": {"User-Agent": "Juriscraper"}, - # Disable CDN caching on sites like SCOTUS (ahem) - "cache-control": "no-cache, no-store, max-age=1", + "headers": { + "User-Agent": "Juriscraper", + # Disable CDN caching on sites like SCOTUS (ahem) + "Cache-Control": "no-cache, max-age=0, must-revalidate", + # backwards compatibility with HTTP/1.0 caches + "Pragma": "no-cache", + }, "parameters": {}, "request": None, "status": None, "url": None, } + # Attribute to reference a function passed by the caller, + # which takes a single argument, the Site object, after + # each GET or POST request. Intended for saving the response for + # debugging purposes. + self.save_response = kwargs.get("save_response_fn") + + # Some courts will block Juriscraper or Courtlistener's user-agent + # or may need special headers. This flag let's the caller know it + # should use the modified `self.request["headers"]` + self.needs_special_headers = False + # Sub-classed metadata self.court_id = None self.url = None @@ -113,6 +134,14 @@ def disable_certificate_verification(self): """ self.request["verify"] = False + def set_custom_adapter(self, cipher: str): + """Set Custom SSL/TLS Adapter for out of date court systems + + :param cipher: The court required cipher + :return: None + """ + self.request["session"].mount("https://", SSLAdapter(ciphers=cipher)) + def test_mode_enabled(self): return self.method == "LOCAL" @@ -234,6 +263,7 @@ def _check_sanity(self): prior_case_name = name i += 1 + future_date_count = 0 for index, case_date in enumerate(self.case_dates): if not isinstance(case_date, date): raise InsanityException( @@ -243,24 +273,30 @@ def _check_sanity(self): ) # Sanitize case date, fix typo of current year if present fixed_date = fix_future_year_typo(case_date) + case_name = self.case_names[index] if fixed_date != case_date: logger.info( "Date year typo detected. Converting %s to %s " - "for case '%s' in %s" - % ( - case_date, - fixed_date, - self.case_names[index], - self.court_id, - ) + "for case '%s' in %s", + case_date, + fixed_date, + case_name, + self.court_id, ) case_date = fixed_date self.case_dates[index] = fixed_date - if case_date.year > 2025: - raise InsanityException( - "%s: member of case_dates list is from way in the future, " - "with value %s" % (self.court_id, case_date.year) - ) + + # dates should not be in the future. Tolerate a week + if case_date > (date.today() + timedelta(days=7)): + future_date_count += 1 + error = f"{self.court_id}: {case_date} date is in the future. Case '{case_name}'" + logger.error(error) + + # Interrupt data ingestion if more than 1 record has a bad date + if future_date_count > 1: + raise InsanityException( + f"More than 1 case has a date in the future. Last case: {error}" + ) # Is cookies a dict? if type(self.cookies) != dict: @@ -318,13 +354,16 @@ def _download(self, request_dict={}): ) else: logger.info(f"Now downloading case page at: {self.url}") + self._process_request_parameters(request_dict) - if self.method == "GET": + + if self.test_mode_enabled(): + self._request_url_mock(self.url) + elif self.method == "GET": self._request_url_get(self.url) elif self.method == "POST": self._request_url_post(self.url) - elif self.test_mode_enabled(): - self._request_url_mock(self.url) + self._post_process_response() return self._return_response_text_object() @@ -342,7 +381,7 @@ def _process_request_parameters(self, parameters={}): if parameters.get("verify") is not None: self.request["verify"] = parameters["verify"] del parameters["verify"] - self.request["parameters"] = parameters + self.request["parameters"].update(parameters) def _request_url_get(self, url): """Execute GET request and assign appropriate request dictionary @@ -356,6 +395,8 @@ def _request_url_get(self, url): timeout=60, **self.request["parameters"], ) + if self.save_response: + self.save_response(self) def _request_url_post(self, url): """Execute POST request and assign appropriate request dictionary values""" @@ -368,6 +409,8 @@ def _request_url_post(self, url): timeout=60, **self.request["parameters"], ) + if self.save_response: + self.save_response(self) def _request_url_mock(self, url): """Execute mock request, used for testing""" @@ -394,9 +437,10 @@ def _return_response_text_object(self): text = self._clean_text(payload) html_tree = self._make_html_tree(text) - html_tree.rewrite_links( - fix_links_in_lxml_tree, base_href=self.request["url"] - ) + if hasattr(html_tree, "rewrite_links"): + html_tree.rewrite_links( + fix_links_in_lxml_tree, base_href=self.request["url"] + ) return html_tree def _get_html_tree_by_url(self, url, parameters={}): @@ -407,10 +451,59 @@ def _get_html_tree_by_url(self, url, parameters={}): tree.make_links_absolute(url) return tree - def _download_backwards(self): + def _download_backwards(self, d): # methods for downloading the entire Site pass + def make_backscrape_iterable( + self, kwargs: Dict + ) -> List[Tuple[date, date]]: + """Creates back_scrape_iterable in the most common variation, + a list of tuples containing (start, end) date pairs, each of + `days_interval` size + + Uses default attributes of the scrapers as a fallback, if + expected keyword arguments are not passed in the kwargs input + + :param kwargs: if the following keys are present, use them + backscrape_start: str in "%Y/%m/%d" format ; + Default: self.first_opinion_date + backscrape_end: str + days_interval: int; Default: self.days_interval + + :return: None; sets self.back_scrape_iterable in place + """ + start = kwargs.get("backscrape_start") + end = kwargs.get("backscrape_end") + days_interval = kwargs.get("days_interval") + + if start: + start = datetime.strptime(start, "%Y/%m/%d") + else: + if hasattr(self, "first_opinion_date"): + start = self.first_opinion_date + else: + logger.warning( + "No `backscrape_start` argument passed; and scraper has no `first_opinion_date` default" + ) + + if end: + end = datetime.strptime(end, "%Y/%m/%d") + else: + end = datetime.now().date() + + if not days_interval: + if hasattr(self, "days_interval"): + days_interval = self.days_interval + else: + logger.warning( + "No `days_interval` argument passed; and scraper has no default" + ) + + self.back_scrape_iterable = make_date_range_tuples( + start, end, days_interval + ) + @staticmethod def cleanup_content(content): """ diff --git a/juriscraper/OpinionSite.py b/juriscraper/OpinionSite.py index ba0c44816..975dcbc01 100644 --- a/juriscraper/OpinionSite.py +++ b/juriscraper/OpinionSite.py @@ -11,6 +11,8 @@ class OpinionSite(AbstractSite): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) + self.expected_content_types = ["application/pdf"] + # Order of attributes is important as it affects the order of parsing. # Some methods rely on others having already been run. self._opt_attrs = [ @@ -30,6 +32,13 @@ def __init__(self, *args, **kwargs): "parallel_citations", "summaries", "case_name_shorts", + "child_courts", + "authors", + "joined_by", + "per_curiam", + "types", + "other_dates", + "attorneys", ] self._req_attrs = [ "case_dates", @@ -108,6 +117,27 @@ def _get_precedential_statuses(self): def _get_summaries(self): return None + def _get_child_courts(self): + return None + + def _get_authors(self): + return None + + def _get_types(self): + return None + + def _get_joined_by(self): + return None + + def _get_per_curiam(self): + return None + + def _get_other_dates(self): + return None + + def _get_attorneys(self): + return None + def extract_from_text(self, scraped_text): """Pass scraped text into function and return data as a dictionary diff --git a/juriscraper/OpinionSiteLinear.py b/juriscraper/OpinionSiteLinear.py index 9b1d3b478..c556feab9 100644 --- a/juriscraper/OpinionSiteLinear.py +++ b/juriscraper/OpinionSiteLinear.py @@ -9,6 +9,40 @@ class OpinionSiteLinear(OpinionSite): case you can simply extend this class and implement _process_html(). """ + # This class tries to simplify OpinionSiteLinear. Instead of using full + # attribute names, we use shorthands. The keys must be properly named + # for the getters to work, so this `valid_keys` will be used in an + # extended check_sanity method + valid_keys = { + "name", + "url", + "date", + "date_filed_is_approximate", + "status", + "docket", + "judge", + "citation", + "parallel_citation", + "summary", + "lower_court", + "child_court", + "adversary_number", + "division", + "disposition", + "cause", + "docket_attachment_number", + "docket_document_number", + "nature_of_suit", + "lower_court_number", + "lower_court_judge", + "author", + "per_curiam", + "type", + "joined_by", + "other_date", + "attorney", + } + def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.cases = [] @@ -71,5 +105,70 @@ def _get_parallel_citations(self): def _get_summaries(self): return self._get_optional_field_by_id("summary") + def _get_child_courts(self): + return self._get_optional_field_by_id("child_court") + def _get_lower_courts(self): return self._get_optional_field_by_id("lower_court") + + def _get_lower_court_judges(self): + return self._get_optional_field_by_id("lower_court_judge") + + def _get_lower_court_numbers(self): + return self._get_optional_field_by_id("lower_court_number") + + def _get_nature_of_suit(self): + return self._get_optional_field_by_id("nature_of_suit") + + def _get_docket_document_numbers(self): + return self._get_optional_field_by_id("docket_document_number") + + def _get_docket_attachment_numbers(self): + return self._get_optional_field_by_id("docket_attachment_number") + + def _get_causes(self): + return self._get_optional_field_by_id("cause") + + def _get_dispositions(self): + return self._get_optional_field_by_id("disposition") + + def _get_divisions(self): + return self._get_optional_field_by_id("division") + + def _get_adversary_numbers(self): + return self._get_optional_field_by_id("adversary_number") + + def _get_authors(self): + return self._get_optional_field_by_id("author") + + def _get_per_curiam(self): + return self._get_optional_field_by_id("per_curiam") + + def _get_joined_by(self): + return self._get_optional_field_by_id("joined_by") + + def _get_types(self): + return self._get_optional_field_by_id("type") + + def _get_other_dates(self): + """Goes into OpinionCluster.other_dates, type: string""" + return self._get_optional_field_by_id("other_date") + + def _get_attorneys(self): + """Goes into OpinionCluster.attorneys, type: string""" + return self._get_optional_field_by_id("attorney") + + def _check_sanity(self): + super()._check_sanity() + # Check that all returned keys have the proper name to be used + # in an Opinion / AbstractSite getter + for case in self.cases: + if isinstance(case, str): + # happens with mich example files + continue + + for key in case.keys(): + if key not in self.valid_keys: + raise KeyError( + f"Invalid key '{key}' for case dictionary {self.__module__}" + ) diff --git a/juriscraper/OralArgumentSite.py b/juriscraper/OralArgumentSite.py index 360bc399f..449fcc0a2 100644 --- a/juriscraper/OralArgumentSite.py +++ b/juriscraper/OralArgumentSite.py @@ -11,10 +11,13 @@ class OralArgumentSite(AbstractSite): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) + self.expected_content_types = ["audio/mpeg"] + self._opt_attrs = [ "docket_numbers", "judges", "case_name_shorts", + "attorneys", ] self._req_attrs = [ "case_dates", @@ -45,3 +48,6 @@ def _get_docket_numbers(self): def _get_judges(self): return None + + def _get_attorneys(self): + return None diff --git a/juriscraper/OralArgumentSiteLinear.py b/juriscraper/OralArgumentSiteLinear.py index 9000b6141..57d654d6c 100644 --- a/juriscraper/OralArgumentSiteLinear.py +++ b/juriscraper/OralArgumentSiteLinear.py @@ -39,3 +39,6 @@ def _get_optional_field_by_id(self, id): def _get_judges(self): return self._get_optional_field_by_id("judge") + + def _get_attorneys(self): + return self._get_optional_field_by_id("attorney") diff --git a/juriscraper/lib/auth_utils.py b/juriscraper/lib/auth_utils.py new file mode 100644 index 000000000..c80b54692 --- /dev/null +++ b/juriscraper/lib/auth_utils.py @@ -0,0 +1,26 @@ +import os + +from juriscraper.AbstractSite import logger +from juriscraper.OpinionSite import OpinionSite + + +def set_api_token_header(site: OpinionSite) -> None: + """ + Puts the NY_API_TOKEN in the X-Api-Token header + Creates the Site.headers attribute, copying the + scraper_site.request[headers] + + :param scraper_site: a Site Object + :returns: None + """ + if site.test_mode_enabled(): + return + api_token = os.environ.get("NY_API_TOKEN", None) + if not api_token: + logger.warning( + "NY_API_TOKEN environment variable is not set. " + f"It is required for scraping New York Court: {site.court_id}" + ) + return + site.request["headers"]["X-APIKEY"] = api_token + site.needs_special_headers = True diff --git a/juriscraper/lib/date_utils.py b/juriscraper/lib/date_utils.py index 713cbdf76..7e36c0ad3 100644 --- a/juriscraper/lib/date_utils.py +++ b/juriscraper/lib/date_utils.py @@ -4,6 +4,7 @@ from datetime import date from itertools import zip_longest from math import ceil +from typing import Union from dateutil.parser import parser, parserinfo from dateutil.rrule import DAILY, rrule @@ -150,3 +151,30 @@ def make_date_range_tuples(start, end, gap): for d in rrule(DAILY, interval=gap, dtstart=end_start, until=end) ] return list(zip_longest(start_dates, end_dates, fillvalue=end)) + + +def unique_year_month( + date_list: list[Union[date, datetime.datetime, tuple[date]]], +) -> list[Union[date, datetime.datetime]]: + """Takes a list of dates or date tuples, and reduces it + to date objects with unique year-months pairs + + :param date_list: a list containing dates or tuples of dates + default make_backscrape_iterable returns date tuples + :return: a list with date objects of unique year-month pairs + """ + unique_list = [] + seen_year_months = set() + + for obj in date_list: + if isinstance(obj, date) or isinstance(obj, datetime.datetime): + obj = [obj] + + for date_obj in obj: + ym = date_obj.strftime("%Y%m") + if ym in seen_year_months: + continue + seen_year_months.add(ym) + unique_list.append(date_obj) + + return unique_list diff --git a/juriscraper/lib/exceptions.py b/juriscraper/lib/exceptions.py index 6339f5fe9..488d0c994 100644 --- a/juriscraper/lib/exceptions.py +++ b/juriscraper/lib/exceptions.py @@ -1,3 +1,24 @@ +from juriscraper.lib.log_tools import make_default_logger + + +class JuriscraperException(Exception): + """ + Base class for Juriscraper custom exceptions + """ + + logger = make_default_logger() + + +class SkipRowError(JuriscraperException): + """ + Raise when a row or record has to be skipped + For example, when collecting opinions and finding an order + """ + + def __init__(self, message: str): + self.logger.debug(message) + + class SlownessException(Exception): """Raised when things are too slow.""" diff --git a/juriscraper/lib/html_utils.py b/juriscraper/lib/html_utils.py index fbb7c3b0f..d938ada71 100644 --- a/juriscraper/lib/html_utils.py +++ b/juriscraper/lib/html_utils.py @@ -1,13 +1,12 @@ #!/usr/bin/env python import re import sys +from copy import deepcopy from urllib.parse import urlsplit, urlunsplit -import lxml +import nh3 from lxml import etree, html -from lxml.etree import XMLSyntaxError -from lxml.html import HtmlElement, fromstring, html5parser, tostring -from lxml.html.clean import Cleaner +from lxml.html import HtmlElement, fromstring, tostring from requests import Response try: @@ -25,6 +24,29 @@ "completely supported. See issue #188 for details." ) +ALLOWED_ATTRIBUTES = deepcopy(nh3.ALLOWED_ATTRIBUTES) +ALLOWED_ATTRIBUTES["a"].update({"id", "onclick"}) +ALLOWED_ATTRIBUTES["div"] = {"class", "id"} +ALLOWED_ATTRIBUTES["font"] = {"face", "size"} +ALLOWED_ATTRIBUTES["form"] = {"name", "method", "action"} +ALLOWED_ATTRIBUTES["input"] = { + "class", + "id", + "name", + "value", + "type", + "onclick", +} +ALLOWED_ATTRIBUTES["span"] = {"class"} +ALLOWED_ATTRIBUTES["table"].update({"border", "class"}) +ALLOWED_ATTRIBUTES["tr"].add("class") + +ALLOWED_TAGS = deepcopy(nh3.ALLOWED_TAGS) +ALLOWED_TAGS.add("font") +ALLOWED_TAGS.add("form") +ALLOWED_TAGS.add("input") +ALLOWED_TAGS.add("script") + def get_xml_parsed_text(text): return etree.fromstring(text) @@ -41,18 +63,21 @@ def get_html_from_element(element): def get_html5_parsed_text(text: str) -> HtmlElement: """Return content using the html5parser, ideal for faulty html. - This dance is slightly different than usual because it uses the - html5parser to first create an _Element object, then serialize it using - `tostring`, then parse *that* using the usual fromstring function. The - end result is that irregularities in the html are fixed by the - html5parser, and the usual lxml parser gives us the same API we are - used to. + This first uses nh3 to sanitize the html before parsing it with + the usual lxml parser. :param text: The html of the document :return: an lxml.HtmlElement object """ - parsed = html5parser.document_fromstring(text) - return fromstring(tostring(parsed, encoding="unicode")) + return fromstring( + nh3.clean( + text, + strip_comments=False, + attributes=ALLOWED_ATTRIBUTES, + clean_content_tags=set(), + tags=ALLOWED_TAGS, + ) + ) def get_table_column_text( @@ -102,20 +127,6 @@ def get_row_column_links(row, cell_num): return row.xpath(".//td[%d]//a/@href" % cell_num)[0] -def get_clean_body_content(content, remove_extra_tags=[]): - """Parse out the body from an html string, clean it up, and send it along.""" - remove_tags = ["a", "body", "font", "noscript"] - remove_tags.extend(remove_extra_tags) - cleaner = Cleaner(style=True, remove_tags=remove_tags) - try: - return cleaner.clean_html(content) - except XMLSyntaxError: - return ( - "Unable to extract the content from this file. Please try " - "reading the original." - ) - - def strip_bad_html_tags_insecure( text: str, remove_scripts=True ) -> HtmlElement: @@ -135,40 +146,23 @@ def strip_bad_html_tags_insecure( text, str ), f"`text` must be of type str, but is of type {type(text)}." - # lxml fails to parse a script element that contains a '<' followed by any - # non-space character e.g: '([\s\S]*?)<\/script>", "", text) - - # Cleaner() can work with strs and unicode, but it does bad things to - # encodings if given the chance. - tree = get_html5_parsed_text(text) - cleaner = Cleaner( - # Keep JS: We parse onclicks for pacer metadata - javascript=False, - safe_attrs_only=False, - # Keep forms: We parse them for metadata - forms=False, - # Keep comments: We use them in appellate PACER. For discussion and fix - # to funky workaround below, see: - # https://bugs.launchpad.net/lxml/+bug/1882606 - # This workaround can be removed once lxml 4.5.2 is released - comments=False, - processing_instructions=False, - remove_unknown_tags=False, - allow_tags=set(lxml.html.defs.tags) | {lxml.etree.Comment}, - # Things we *can* actually remove - scripts=remove_scripts, - style=True, - links=True, - embedded=True, - frames=True, + clean_content_tags.add("script") + tags = deepcopy(ALLOWED_TAGS) + tags.remove("script") + else: + tags = ALLOWED_TAGS + + return fromstring( + nh3.clean( + text, + strip_comments=False, + attributes=ALLOWED_ATTRIBUTES, + clean_content_tags=clean_content_tags, + tags=tags, + ) ) - return cleaner.clean_html(tree) def get_visible_text(html_content): diff --git a/juriscraper/lib/importer.py b/juriscraper/lib/importer.py index adafc8fb5..9caa0809a 100644 --- a/juriscraper/lib/importer.py +++ b/juriscraper/lib/importer.py @@ -72,9 +72,9 @@ def get_module_by_name(name): return juriscraper_module.Site() -def site_yielder(iterable, mod): +def site_yielder(iterable, mod, save_response_fn=None): for i in iterable: - site = mod.Site() + site = mod.Site(save_response_fn=save_response_fn) try: site._download_backwards(i) yield site diff --git a/juriscraper/lib/log_tools.py b/juriscraper/lib/log_tools.py index e5da9e6c4..eb557ab8e 100644 --- a/juriscraper/lib/log_tools.py +++ b/juriscraper/lib/log_tools.py @@ -20,7 +20,7 @@ def make_default_logger(file_path=LOG_FILENAME): :return: a logger object """ - logger = logging.getLogger("Logger") + logger = logging.getLogger(__name__) if not len(logger.handlers): logger.setLevel(logging.DEBUG) # Create a handler and attach it to the logger diff --git a/juriscraper/lib/network_utils.py b/juriscraper/lib/network_utils.py index 878ec428f..2d151437a 100644 --- a/juriscraper/lib/network_utils.py +++ b/juriscraper/lib/network_utils.py @@ -1,27 +1,24 @@ import random +import ssl import time from requests.adapters import HTTPAdapter -from requests.packages.urllib3.poolmanager import PoolManager - -from juriscraper.AbstractSite import logger +from urllib3.util import create_urllib3_context class SSLAdapter(HTTPAdapter): - """An HTTPS Transport Adapter that uses an arbitrary SSL version.""" - - def __init__(self, ssl_version=None, **kwargs): - self.ssl_version = ssl_version - + def __init__( + self, ssl_version=ssl.PROTOCOL_TLSv1_2, ciphers=None, **kwargs + ): + self.ssl_version = ssl_version or ssl.PROTOCOL_TLS + self.ssl_context = create_urllib3_context( + ssl_version=self.ssl_version, ciphers=ciphers + ) super().__init__(**kwargs) - def init_poolmanager(self, connections, maxsize, block=False): - self.poolmanager = PoolManager( - num_pools=connections, - maxsize=maxsize, - block=block, - ssl_version=self.ssl_version, - ) + def init_poolmanager(self, *args, **kwargs): + kwargs["ssl_context"] = self.ssl_context + return super().init_poolmanager(*args, **kwargs) def add_delay(delay=0, deviation=0): @@ -30,6 +27,8 @@ def add_delay(delay=0, deviation=0): Delay is the number of seconds your program will be stopped for, and deviation is the number of seconds that the delay can vary. """ + from juriscraper.AbstractSite import logger + duration = random.randrange(delay - deviation, delay + deviation) logger.info(f"Adding a delay of {duration} seconds. Please wait.") time.sleep(duration) diff --git a/juriscraper/lib/string_utils.py b/juriscraper/lib/string_utils.py index c5ac51bbc..f8439b8f3 100644 --- a/juriscraper/lib/string_utils.py +++ b/juriscraper/lib/string_utils.py @@ -376,7 +376,7 @@ def clean_string(s): ) # Get rid of weird punctuation - s = s.replace("*", "").replace("#", "").replace(";", "") + s = s.replace("*", "").replace("#", "") # Strip bad stuff from the end of lines. Python's strip fails here because # we don't know the order of the various punctuation items to be stripped. @@ -608,6 +608,7 @@ def bad_words(self): "smith", "johnson", "commissioner", + "commonwealth", ] ags = [ diff --git a/juriscraper/lib/test_utils.py b/juriscraper/lib/test_utils.py index 5d654b894..da01ac712 100644 --- a/juriscraper/lib/test_utils.py +++ b/juriscraper/lib/test_utils.py @@ -64,7 +64,7 @@ def warn_or_crash_slow_parser(duration, warn_duration=1, max_duration=15): # Only do this if we're not debugging. Debuggers make things slower # and breakpoints make things stop. raise SlownessException( - "This scraper took {duration}s to test, which is more than " + "This scraper took {duration:.3f}s to test, which is more than " "the allowed speed of {max_duration}s. Please speed it up for " "tests to pass.".format( duration=duration, max_duration=max_duration diff --git a/juriscraper/lib/utils.py b/juriscraper/lib/utils.py index 0ead9a0e4..d159c5148 100644 --- a/juriscraper/lib/utils.py +++ b/juriscraper/lib/utils.py @@ -1,6 +1,9 @@ import re +from datetime import date, datetime from itertools import chain, islice, tee +from juriscraper.AbstractSite import logger + from .string_utils import force_unicode @@ -51,3 +54,69 @@ def clean_court_object(obj): return re.sub(r"\s+,", ",", s) else: return obj + + +def backscrape_over_paginated_results( + url_template: str, + first_page: int, + last_page: int, + start_date: date, + end_date: date, + date_fmt: str, + site, +) -> list[dict]: + """ + Iterates over consecutive pages, looking for cases in a specific date range + Of use when the page offers no date filters, so one must look through all the pages + Assumes the page is returning results ordered by date + + :param url_template: string to apply .format() to, like "url&page={}" + where the argument to pass will be the page number + :param first_page: integer of the first page + :param last_page: integer of the last page + :param start_date: cases with a date greater than this value will be collected + :param end_date: cases with a date lesses than this value will be collected + :param date_fmt: date format to parse case dates + :param site: the site object + + :return: the list of cases between the dates + """ + cases = [] + + if isinstance(start_date, datetime): + start_date = start_date.date() + if isinstance(end_date, datetime): + end_date = end_date.date() + + for page in range(first_page, last_page): + site.cases = [] # reset results container + site.url = url_template.format(page) + site.html = site._download() + site._process_html() + + # results are ordered by desceding date + earliest = datetime.strptime(site.cases[-1]["date"], date_fmt).date() + latest = datetime.strptime(site.cases[0]["date"], date_fmt).date() + logger.info("Results page has date range %s to %s", earliest, latest) + + # no intersection between date ranges + if max(earliest, start_date) >= min(latest, end_date): + # if earliest date from results is earlier than + # the start date, no need to iterate any further + if earliest < start_date: + logger.info( + "Finishing backscrape: earliest results date is %s earlier than start %s", + earliest, + start_date, + ) + break + continue + + # if there is an intersection, test every case and + # collect the matching cases + for case in site.cases: + case_date = datetime.strptime(case["date"], date_fmt).date() + if case_date < end_date and case_date > start_date: + cases.append(case) + + return cases diff --git a/juriscraper/opinions/opinion_template.py b/juriscraper/opinions/opinion_template.py index 6c7d4613c..117c8540a 100644 --- a/juriscraper/opinions/opinion_template.py +++ b/juriscraper/opinions/opinion_template.py @@ -7,7 +7,6 @@ YYYY-MM-DD: Created by XXX """ - from lxml import html from juriscraper.lib.string_utils import convert_date_string, titlecase diff --git a/juriscraper/opinions/united_states/administrative_agency/asbca.py b/juriscraper/opinions/united_states/administrative_agency/asbca.py index cf1ed3155..016378360 100644 --- a/juriscraper/opinions/united_states/administrative_agency/asbca.py +++ b/juriscraper/opinions/united_states/administrative_agency/asbca.py @@ -8,97 +8,50 @@ 2016-03-17: Website and phone are dead. Scraper disabled in __init__.py. """ -import re from datetime import datetime -from juriscraper.lib.string_utils import clean_if_py3, convert_date_string -from juriscraper.OpinionSite import OpinionSite +from juriscraper.AbstractSite import logger +from juriscraper.OpinionSiteLinear import OpinionSiteLinear -class Site(OpinionSite): +class Site(OpinionSiteLinear): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ - self.url = ( - "http://www.asbca.mil/Decisions/decisions%d.html" - % datetime.today().year + self.year = str(datetime.today().year) + self.url = f"http://www.asbca.mil/Decisions/decisions{self.year}.html" + self.status = "Published" + + def _process_html(self): + # Exclude headers and rows that only have the month name + rows = self.html.xpath( + "//tr[not(th) and not(.//span[@style='background-color:#F8C100;'])]" ) - self.columns = None - self.back_scrape_iterable = list(range(2013, 2000 - 1, -1)) - - # Fix broken month names and funky whitespace usage. - def _clean_text(self, text): - text = super()._clean_text(text) - text = text.replace(" ", " ").replace(" ", " ") - text = text.replace("Januray", "January") - text = text.replace("Februrary", "February") - text = re.sub(re.compile(r"[\s]+", flags=re.MULTILINE), " ", text) - return text - - def parse_column_names(self): - # Lookup column names and save them for later - self.columns = dict() - path = "//table/tr[1]/td" - i = 1 - for column in self.html.xpath(path): - colname = clean_if_py3("".join(column.itertext())).strip() - self.columns[colname] = i - i += 1 - return self.columns - - def _get_case_dates(self): - self.parse_column_names() - path = "//table/tr[td/a]/td[%d]/text()" % ( - self.columns["Decision Date"] - ) - return [ - self._get_date_object_from_string(date_string) - for date_string in self.html.xpath(path) - ] - - def _get_date_object_from_string(self, date_string): - date_string = ( - clean_if_py3(date_string) - .strip() - .replace(" ,", ", ") - .replace("2104", "2014") - ) - return convert_date_string(date_string) - - def _get_case_names(self): - path = "//table/tr/td/a[1]" - case_names = [ - clean_if_py3("".join(txt.itertext()).strip()) - for txt in self.html.xpath(path) - ] - return case_names - - def _get_download_urls(self): - path = "//table/tr/td/a[1]/@href" - return [clean_if_py3(href).strip() for href in self.html.xpath(path)] - - def _get_judges(self): - path = "//table/tr[td/a]/td[%d]/text()" % (self.columns["Judge"],) - return [clean_if_py3(txt).strip() for txt in self.html.xpath(path)] - - def _get_docket_numbers(self): - if "ASBCA Number" not in self.columns: - return None - path = "//table/tr[td/a]/td[%d]/text()" % self.columns["ASBCA Number"] - return [ - f"ASBCA No. {clean_if_py3(txt).strip()}" - for txt in self.html.xpath(path) - ] - - def _get_precedential_statuses(self): - return ["Published"] * len(self.case_dates) - - def _download_backwards(self, year): - self.url = "http://www.asbca.mil/Decisions/decisions%d.html" % year - if year == 2010: - self.url = "http://www.asbca.mil/Decisions/decisions.html" - self.html = self._download() - - def _get_case_name_shorts(self): - # We don't (yet) support short case names for administrative bodies. - return None + for row in rows: + if len(row.xpath(".//td")) != 4: + logger.warning( + "Row does not have expected number of cells %s", + row.text_content().strip(), + ) + continue + + url = row.xpath(".//a/@href") + url = url[0] + date, docket, name, judge = ( + cell.text_content().strip() for cell in row.xpath(".//td") + ) + + if self.year not in date: + # site returns all records in a single request + # in a normal scrape, check only the most recent year + break + + self.cases.append( + { + "date": date, + "name": name, + "url": url, + "docket": docket, + "judge": judge, + } + ) diff --git a/juriscraper/opinions/united_states/administrative_agency/bia.py b/juriscraper/opinions/united_states/administrative_agency/bia.py index 62abf5bd7..9190117b5 100644 --- a/juriscraper/opinions/united_states/administrative_agency/bia.py +++ b/juriscraper/opinions/united_states/administrative_agency/bia.py @@ -6,7 +6,9 @@ Type: History: 2021-12-18: Created by William E. Palin + 2024-05-07: Updated by grossir """ + import re from datetime import datetime from typing import Any, Dict @@ -19,61 +21,13 @@ def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ self.url = "https://www.justice.gov/eoir/ag-bia-decisions" - self.article = None self.volume = 0 self.urls = None + self.status = "Published" - def _process_elements(self, elements) -> Dict[str, Any]: - """Process the element grouping. - - There is no easy way to parse our the content. Unfortunately, the DOJ - admins randomly nest elements and not others. The only consistency - is that they content is always split between HR tags. So we iterate - over the elements in order until we find an HR tag and then process - the content. Rinse Wash Repeat. - - Additionally, the only date we have is the year of the decision. - - :param elements: The elements between
tags. - :return: Case data - """ - case = {} - bold_text = elements[0].xpath(".//strong[1]/.. | .//b[1]/..") - if not bold_text: - return {} - intro_text = ( - elements[0].xpath(".//strong[1]/.. | .//b[1]/..")[0].text_content() - ) - intro_text = intro_text.replace(";", ",") - name, cite = intro_text.split(",", 1) - # Unfortunately there are no accessible file dates without PDF parsing - # So we generate a date and mark it as date_filed_is_approximate = True - # This is unset to false after it is extracted from the PDF on CL side. - case["date_filed_is_approximate"] = True - years = re.findall(r"\d{4}", cite) - if not years: - return {} - case["date"] = f"{years[-1]}-07-01" - case["status"] = "Published" - case["citation"] = cite - case["name"] = name - case["url"] = elements[0].xpath(".//a")[0].get("href") - case["docket"] = elements[0].xpath(".//a")[0].text_content() - - # Iterate over the P tags that hold the summaries, sometimes - summary = [] - for element in elements: - if element.tag == "p": - summary.append(element.text_content()) - case["summary"] = "\n".join(summary).strip() - return case - - def _process_html(self): + def _process_html(self) -> None: if not self.test_mode_enabled(): - # Sort the URLS by volume to enable the backscraper - # We reverse sort the links by volume and choose the first one - # unless we are in a backscraper and then we choose what loop - # we are in. + # Get last volume URL if not self.urls: urls = self.html.xpath( ".//table[1]/tbody/tr/td/a[contains(., 'Volume')]" @@ -84,30 +38,28 @@ def get_text(elem): self.urls = sorted(urls, key=get_text, reverse=True) self.url = self.urls[self.volume].get("href") - # Download the new page of decisions self.html = super()._download() - # Get the article which will contain all of our content. - article = self.html.xpath(".//article")[0] - # get the last element in the article - # this ends the process_elements method on the final call because no - # hr tag is present on the last decision + for row in self.html.xpath("//table"): + summary = row.xpath("string(following-sibling::p[1])") + name = row.xpath(".//td[1]/*[self::strong or self::b]/text()")[0] + row_text = row.xpath(".//td[1]/text()")[-1] + citation, year = row_text.split("(", 1) - last = list(article.iter())[-1] - # Iterate over every tag in the article to separate out the cases. - elements = [] - for element in article.iter(): - elements.append(element) - # Process the data when the HR tag is found or the last element. - # this loop lets us generate all of the elements and thus all - # the data that we are looking for. The DOJ has random and weird - # HTML that sometimes nests and sometimes doesnt nest elements of - # an opinion. - if element.tag == "hr" or element == last: - case = self._process_elements(elements) - if case: - self.cases.append(case) - elements, case = [], {} + year = re.search(r"\d{4}", year).group(0) + url = row.xpath(".//td[2]/a/@href") + docket = row.xpath("string(.//td[2]/a)") + self.cases.append( + { + "name": name, + "citation": citation.strip(", "), + "url": url[0], + "docket": docket, + "date": f"{year}-07-01", + "date_filed_is_approximate": True, + "summary": summary, + } + ) def extract_from_text(self, scraped_text: str) -> Dict[str, Any]: """Can we extract the date filed from the text? diff --git a/juriscraper/opinions/united_states/administrative_agency/mspb_p.py b/juriscraper/opinions/united_states/administrative_agency/mspb_p.py index 11ccd36b6..23ee3e18b 100644 --- a/juriscraper/opinions/united_states/administrative_agency/mspb_p.py +++ b/juriscraper/opinions/united_states/administrative_agency/mspb_p.py @@ -6,6 +6,7 @@ Date created: 1 Sep 2014 Type: Precedential """ + import json from juriscraper.OpinionSiteLinear import OpinionSiteLinear diff --git a/juriscraper/opinions/united_states/administrative_agency/olc.py b/juriscraper/opinions/united_states/administrative_agency/olc.py index 8c4ad8b29..d53350eb9 100644 --- a/juriscraper/opinions/united_states/administrative_agency/olc.py +++ b/juriscraper/opinions/united_states/administrative_agency/olc.py @@ -8,36 +8,59 @@ 2022-01-14: Created by William E. Palin """ -from juriscraper.lib.html_utils import ( - get_row_column_links, - get_row_column_text, -) +from datetime import date, datetime +from typing import Tuple +from urllib.parse import urlencode + +from juriscraper.AbstractSite import logger from juriscraper.OpinionSiteLinear import OpinionSiteLinear class Site(OpinionSiteLinear): + base_url = "https://www.justice.gov/olc/opinions" + days_interval = 180 + first_opinion_date = datetime(1934, 3, 16) + def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ - self.url = "https://www.justice.gov/olc/opinions?items_per_page=40" + self.url = self.base_url self.status = "Published" + self.url = f"{self.base_url}?items_per_page=40" + self.make_backscrape_iterable(kwargs) def _process_html(self): - for row in self.html.xpath( - ".//tr[contains(@class , 'even')] | .//tr[contains(@class , 'odd')]" - ): - date = get_row_column_text(row, 1) - if "Date of Issuance" in date: - date = date.split("\n")[-1].strip() - name = get_row_column_text(row, 2) - url = get_row_column_links(row, 2) - summary = get_row_column_text(row, 3) + for row in self.html.xpath(".//article"): + name = row.xpath(".//h2")[0].text_content().strip() + if not name: + continue + url = row.xpath(".//a/@href")[0] + date_filed = row.xpath(".//time")[0].text_content() + summary = row.xpath(".//p")[0].text_content() self.cases.append( { - "date": date, + "date": date_filed, "name": name, "url": url, "summary": summary, "docket": "", # Docket numbers don't appear to exist. } ) + + def _download_backwards(self, dates: Tuple[date]) -> None: + """Make custom date range request + + :param dates: (start_date, end_date) tuple + :return None + """ + logger.info("Backscraping for range %s %s", *dates) + params = { + "search_api_fulltext": "", + "start_date": dates[0].strftime("%m/%d/%Y"), + "end_date": dates[1].strftime("%m/%d/%Y"), + "sort_by": "field_date", + "items_per_page": "40", + } + self.url = f"{self.base_url}?{urlencode(params)}" + self.html = self._download() + self._process_html() diff --git a/juriscraper/opinions/united_states/federal_appellate/ca1.py b/juriscraper/opinions/united_states/federal_appellate/ca1.py index 0b64897be..6cbb71d81 100644 --- a/juriscraper/opinions/united_states/federal_appellate/ca1.py +++ b/juriscraper/opinions/united_states/federal_appellate/ca1.py @@ -1,124 +1,73 @@ -import re -from datetime import date, datetime, timedelta +from datetime import date, datetime +from typing import Tuple from urllib.parse import urlencode -from dateutil.rrule import DAILY, rrule +from juriscraper.AbstractSite import logger +from juriscraper.OpinionSiteLinear import OpinionSiteLinear -from juriscraper.OpinionSite import OpinionSite +class Site(OpinionSiteLinear): + # This URL will show most recent opinions + base_url = "https://www.ca1.uscourts.gov/opn/aci" + days_interval = 5 + first_opinion_date = datetime(2003, 3, 23) -class Site(OpinionSite): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - self.base_url = "http://media.ca1.uscourts.gov/cgi-bin/opinions.pl" self.court_id = self.__module__ - today = date.today() - params = urlencode( - { - "FROMDATE": (today - timedelta(7)).strftime("%m/%d/%Y"), - "TODATE": today.strftime("%m/%d/%Y"), - "puid": "", - } - ) - self.url = f"{self.base_url}/?{params}" - # self.url = "http://media.ca1.uscourts.gov/cgi-bin/opinions.pl/?TODATE=06%2F24%2F1993&puid=&FROMDATE=05%2F25%2F1993" - self.interval = 30 - self.back_scrape_iterable = [ - i.date() - for i in rrule( - DAILY, - interval=self.interval, - dtstart=date(1992, 1, 1), - until=date(2016, 1, 1), - ) - ] + self.url = self.base_url + self.make_backscrape_iterable(kwargs) - def _get_case_names(self): - return [ - e.strip() - for e in self.html.xpath( - "//tr[position() > 1]/td[4]/text()[contains(., 'v.')]" + def _process_html(self): + for row in self.html.xpath("//tr[not(th)]"): + title = row.xpath("td[2]/a/text()")[0] + url = row.xpath("td[2]/a/@href")[0] + status = self.get_status_from_opinion_title(title) + docket = row.xpath("td[3]/a/text()")[0] + date_filed = row.xpath("td[1]/span/text()")[0] + name = row.xpath("td[4]/text()")[0] + lower_court = row.xpath("td[4]/span/text()")[0] + self.cases.append( + { + "name": name.strip(), + "url": url, + "date": date_filed, + "status": status, + "docket": docket, + "lower_court": lower_court, + } ) - ] - - def _get_download_urls(self): - return [ - e for e in self.html.xpath("//tr[position() > 1]/td[2]//@href") - ] - def _get_case_dates(self): - dates = [] - for s in self.html.xpath("//tr[position() > 1]/td[1]//text()"): - s = s.replace(r"\t", "").replace(r"\n", "").strip() - if s == "1996/05/32": - s = "1996/05/30" # My life is thus lain to waste. - dates.append(datetime.strptime(s.strip(), "%Y/%m/%d").date()) - return dates - - def _get_docket_numbers(self): - regex = re.compile(r"(\d{2}-.*?\W)(.*)$") - docket_numbers = [] - for s in self.html.xpath("//tr[position() > 1]/td[2]/a/text()"): - s = s.replace("O1-", "01-") # I grow older, the input grows worse. - docket_numbers.append( - regex.search(s).group(1).strip().replace(".", "") - ) - return docket_numbers + def get_status_from_opinion_title(self, title: str) -> str: + """Status is encoded in opinion's link title - def _get_precedential_statuses(self): - statuses = [] - for text in self.html.xpath("//tr[position() > 1]/td[2]//@href"): - if "U" in text: - statuses.append("Unpublished") - elif "P" in text: - statuses.append("Published") - elif "E" in text: - statuses.append("Errata") - else: - statuses.append("Unknown") - return statuses + :param title: opinion title. Ex: 23-1667P.01A, 23-1639U.01A - def _get_lower_courts(self): - lower_courts = [] - for e in self.html.xpath("//tr[position() > 1]/td[4]/font"): - try: - lower_courts.append(e.xpath("./text()")[0].strip()) - except IndexError: - lower_courts.append("") - return lower_courts + :return: status string + """ + if "U" in title: + status = "Unpublished" + elif "P" in title: + status = "Published" + elif "E" in title: + status = "Errata" + else: + status = "Unknown" + return status - def _download_backwards(self, d): - params = urlencode( - { - "FROMDATE": d.strftime("%m/%d/%Y"), - "TODATE": (d + timedelta(self.interval)).strftime("%m/%d/%Y"), - "puid": "", - } - ) - self.url = f"{self.base_url}/?{params}" + def _download_backwards(self, dates: Tuple[date]) -> None: + """Change URL to backscraping date range + :param dates: tuple with date range to scrape + :return None + """ + start, end = dates + logger.info("Backscraping for range %s %s", *dates) + params = { + "field_opn_csno_value_op": "starts", + "field_opn_issdate_value[min][date]": start.strftime("%m/%d/%Y"), + "field_opn_issdate_value[max][date]": end.strftime("%m/%d/%Y"), + } + self.url = f"{self.base_url}?{urlencode(params)}" self.html = self._download() - if self.html is not None: - # Setting status is important because it prevents the download - # function from being run a second time by the parse method. - self.status = 200 - - def _post_parse(self): - """This will remove the cases without a case name""" - to_be_removed = [ - index - for index, case_name in enumerate(self.case_names) - if not case_name.replace("v.", "").strip() - ] - - for attr in self._all_attrs: - item = getattr(self, attr) - if item is not None: - new_item = self.remove_elements(item, to_be_removed) - self.__setattr__(attr, new_item) - - @staticmethod - def remove_elements(list_, indexes_to_be_removed): - return [ - i for j, i in enumerate(list_) if j not in indexes_to_be_removed - ] + self._process_html() diff --git a/juriscraper/opinions/united_states/federal_appellate/ca10.py b/juriscraper/opinions/united_states/federal_appellate/ca10.py index 070177a7e..360d03b6a 100644 --- a/juriscraper/opinions/united_states/federal_appellate/ca10.py +++ b/juriscraper/opinions/united_states/federal_appellate/ca10.py @@ -1,12 +1,10 @@ from lxml import html -from juriscraper.AbstractSite import logger -from juriscraper.lib.exceptions import InsanityException from juriscraper.lib.string_utils import convert_date_string -from juriscraper.OpinionSite import OpinionSite +from juriscraper.OpinionSiteLinear import OpinionSiteLinear -class Site(OpinionSite): +class Site(OpinionSiteLinear): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.url = ( @@ -14,83 +12,28 @@ def __init__(self, *args, **kwargs): ) self.court_id = self.__module__ - def _get_case_names(self): - """Case name parsing - Expected value for title_string: - <p>Bazan-Martinez v. Garland</p> - """ - case_names = [] - for title_string in self.html.xpath("//item/title/text()"): - try: - p_element = html.etree.fromstring(str(title_string)) - title_string = p_element.xpath("/p/text()")[0] - case_names.append(title_string) - except: - logger.error(f"Error while parsing case name: {title_string}") - raise InsanityException( - f"Error while parsing case name: {title_string}" - ) - return case_names - - def _get_download_urls(self): - return [ - html.tostring(e, method="text").decode() - for e in self.html.xpath("//item/link") - ] - - def _get_case_dates(self): - """Case date parsing - Expected value for date_string: - <span class="date-display-single" property="dc:date" datatype="xsd:dateTime" content="2021-11-16T00:00:00-07:00">Tue Nov 16 2021</span> - """ - dates = [] - for date_string in self.html.xpath("//item/pubdate/text()"): - try: - span_element = html.etree.fromstring(str(date_string)) - date_string = span_element.xpath("/span/text()")[0] - dates.append(convert_date_string(date_string)) - except: - logger.error(f"Error while parsing case date: {date_string}") - raise InsanityException( - f"Error while parsing case date: {date_string}" - ) - return dates - - def _get_docket_numbers(self): - """Case docket parsing - Expected content in description tag: - Docket#: 21-6001 - Date Issued: Mon Nov 15 2021 - Unpublished Order and Judgment - """ - return [ - e.split(" - ")[0].split(":")[1] - for e in self.html.xpath("//item/description/text()") - ] - - def _get_precedential_statuses(self): - """Case precedential status parsing - Expected content in description tag: - Docket#: 21-5062 - Date Issued: Fri Nov 12 2021 - Unpublished Order and Judgment - Status: - - Published: "Published Opinion" - - Unpublished: "Unpublished Order and Judgment" - """ - return [ - "Published" - if "published opinion" in e.split(" - ")[2].lower() - else "Unpublished" - for e in self.html.xpath("//item/description/text()") - ] - - def _get_lower_courts(self): - """Case lower court name parsing - namescpace "dc": "http://purl.org/dc/elements/1.1/" - Tags: - - Board of Immigration Appeals - """ - return [ - e - for e in self.html.xpath( - "//item/creator/text()", + def _process_html(self): + for item in self.html.xpath(".//item"): + for e in item.xpath( + ".//description/text()", namespaces={"dc": "http://purl.org/dc/elements/1.1/"}, + ): + if "Published Opinion" in e: + status = "Published" + else: + status = "Unpublished" + docket = e.split()[1].strip() + date = convert_date_string(item.xpath(".//pubdate/text()")[0]) + formatted_date = date.strftime("%Y-%m-%d") + self.cases.append( + { + "url": html.tostring(item.xpath("link")[0], method="text") + .decode() + .replace("\\n", "") + .strip(), + "name": item.xpath(".//title/text()")[0], + "date": formatted_date, + "status": status, + "docket": docket, + } ) - ] diff --git a/juriscraper/opinions/united_states/federal_appellate/ca2_p.py b/juriscraper/opinions/united_states/federal_appellate/ca2_p.py index 2162940a5..b0a6c3932 100644 --- a/juriscraper/opinions/united_states/federal_appellate/ca2_p.py +++ b/juriscraper/opinions/united_states/federal_appellate/ca2_p.py @@ -6,7 +6,6 @@ Shane_Clouden@ca2.uscourts.gov """ - import time from datetime import date, timedelta diff --git a/juriscraper/opinions/united_states/federal_appellate/ca2_u.py b/juriscraper/opinions/united_states/federal_appellate/ca2_u.py index cf039994c..cc1da9176 100644 --- a/juriscraper/opinions/united_states/federal_appellate/ca2_u.py +++ b/juriscraper/opinions/united_states/federal_appellate/ca2_u.py @@ -6,7 +6,6 @@ Shane_Clouden@ca2.uscourts.gov """ - from juriscraper.opinions.united_states.federal_appellate import ca2_p diff --git a/juriscraper/opinions/united_states/federal_appellate/ca4.py b/juriscraper/opinions/united_states/federal_appellate/ca4.py index b99881ca7..58e4d37fb 100644 --- a/juriscraper/opinions/united_states/federal_appellate/ca4.py +++ b/juriscraper/opinions/united_states/federal_appellate/ca4.py @@ -13,10 +13,13 @@ def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.url = "https://www.govinfo.gov/wssearch/search" self.court_id = self.__module__ + + self.method = "POST" self.td = date.today() today = self.td.strftime("%Y-%m-%d") last_month = (self.td - timedelta(days=31)).strftime("%Y-%m-%d") - self.parameters = { + self.parameters = {} + self.request["parameters"]["json"] = { "facets": { "accodenav": [ "USCOURTS", @@ -37,7 +40,6 @@ def __init__(self, *args, **kwargs): "browseByDate": True, "historical": False, } - self.method = "POST" self.json = {} self.interval = 14 @@ -51,25 +53,12 @@ def __init__(self, *args, **kwargs): ) ] - def _download(self, request_dict={}): - if self.test_mode_enabled(): - with open(self.url) as file: - self.json = json.load(file) - else: - self.json = ( - self.request["session"] - .post( - self.url, - json=self.parameters, - ) - .json() - ) - def _process_html(self) -> None: """Process CA4 Opinions :return: None """ + self.json = self.html for row in self.json["resultSet"]: package_id = row["fieldMap"]["packageid"] docket = row["line1"].split()[0] @@ -113,5 +102,7 @@ def _download_backwards(self, dt) -> None: """ start = (dt - timedelta(days=7)).strftime("%Y-%m-%d") end = dt.strftime("%Y-%m-%d") - self.parameters["query"] = f"publishdate:range({start},{end})" + self.request["parameters"]["json"][ + "query" + ] = f"publishdate:range({start},{end})" self.html = self._download() diff --git a/juriscraper/opinions/united_states/federal_appellate/ca7.py b/juriscraper/opinions/united_states/federal_appellate/ca7.py index 01c05130a..f18257b92 100644 --- a/juriscraper/opinions/united_states/federal_appellate/ca7.py +++ b/juriscraper/opinions/united_states/federal_appellate/ca7.py @@ -21,6 +21,12 @@ def _process_html(self): parts = item["summary"].split() docket = parts[parts.index("case#") + 1] name = item["summary"].split(docket)[1].split("(")[0] + author = item["summary"].split("{")[1].split("}")[0] + per_curiam = False + if "curiam" in author.lower(): + per_curiam = True + author = "" + self.cases.append( { "url": item["link"], @@ -28,6 +34,8 @@ def _process_html(self): "date": item["published"], "name": name, "status": "Published", - "author": item["summary"].split("{")[1].split("}")[0], + "judge": author, + "author": author, + "per_curiam": per_curiam, } ) diff --git a/juriscraper/opinions/united_states/federal_appellate/ca8.py b/juriscraper/opinions/united_states/federal_appellate/ca8.py index 56725da67..7baf97472 100644 --- a/juriscraper/opinions/united_states/federal_appellate/ca8.py +++ b/juriscraper/opinions/united_states/federal_appellate/ca8.py @@ -1,18 +1,17 @@ import re -import time from datetime import date from dateutil.rrule import MONTHLY, rrule -from juriscraper.OpinionSite import OpinionSite +from juriscraper.OpinionSiteLinear import OpinionSiteLinear -class Site(OpinionSite): +class Site(OpinionSiteLinear): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) today = date.today() self.url = ( - "http://media.ca8.uscourts.gov/cgi-bin/opnByMM.pl?theMM=%02d&theYY=%s&A1=Get+Opinions" + "https://media.ca8.uscourts.gov/cgi-bin/opnByMM.pl?theMM=%02d&theYY=%s&A1=Get+Opinions" % (today.month, today.year) ) self.court_id = self.__module__ @@ -26,68 +25,48 @@ def __init__(self, *args, **kwargs): ) ] - def _get_case_names(self): - case_names = [] - case_name_regex = re.compile(r"(\d{2}/\d{2}/\d{4})(.*)") - for text in self.html.xpath( - '//a[contains(@href, "opndir")]/following-sibling::b/text()' - ): - case_names.append(case_name_regex.search(text).group(2)) - return case_names + def _process_html(self): + for link in self.html.xpath('//a[contains(@href, "opndir")]'): + url = link.get("href") + text = link.xpath("following-sibling::text()")[0].strip() + first_line = text.split("\n")[0] + date_filed, case_name = first_line.strip().split(" ", 1) + docket_number = ", ".join(re.findall(r"\d{2}-\d{4}", text)) - def _get_download_urls(self): - return [ - e for e in self.html.xpath('//a[contains(@href, "opndir")]/@href') - ] + lower_court = "" + court_match = re.search(r"U\.S\. District Court.+", text) + if court_match: + lower_court = court_match.group(0) - def _get_case_dates(self): - case_dates = [] - case_date_regex = re.compile(r"(\d{2}/\d{2}/\d{4})(.*)") - for text in self.html.xpath( - '//a[contains(@href, "opndir")]/following-sibling::b/text()' - ): - date_string = case_date_regex.search(text).group(1) - case_dates.append( - date.fromtimestamp( - time.mktime(time.strptime(date_string, "%m/%d/%Y")) - ) - ) - return case_dates + doc_name = link.text_content().split(".")[0].lower() + if "p" in doc_name: + status = "Published" + elif "u" in doc_name: + status = "Unpublished" + else: + status = "Unknown" - def _get_docket_numbers(self): - docket_numbers = [] - docket_number_regex = re.compile(r"(\d{2})(\d{4})(u|p)", re.IGNORECASE) - for docket_number in self.html.xpath( - '//a[contains(@href, "opndir")]/text()' - ): - regex_results = docket_number_regex.search(docket_number) - docket_numbers.append( - f"{regex_results.group(1)}-{regex_results.group(2)}" + self.cases.append( + { + "date": date_filed, + "docket": docket_number, + "url": url, + "status": status, + "name": case_name.strip(), + "lower_court": lower_court, + } ) - return docket_numbers - - def _get_precedential_statuses(self): - statuses = [] - for docket_number in self.html.xpath( - '//a[contains(@href, "opndir")]/text()' - ): - docket_number = docket_number.split(".")[0] - if "p" in docket_number.lower(): - statuses.append("Published") - elif "u" in docket_number.lower(): - statuses.append("Unpublished") - else: - statuses.append("Unknown") - return statuses def _download_backwards(self, d): + """ + If an updated backscraper is needed in the future, this court + updates the HTML with new values with a 4/5 months lag. + Among the new values, I have seen the following fields we collect: + per_curiam, judges and summaries are available + """ self.url = ( "http://media.ca8.uscourts.gov/cgi-bin/opnByMM.pl?theMM=%02d&theYY=%s&A1=Get+Opinions" % (d.month, d.year) ) - self.html = self._download() - if self.html is not None: - # Setting status is important because it prevents the download - # function from being run a second time by the parse method. - self.status = 200 + self._process_html() diff --git a/juriscraper/opinions/united_states/federal_appellate/cadc_pi.py b/juriscraper/opinions/united_states/federal_appellate/cadc_pi.py index b8d5c5443..6ea39f690 100644 --- a/juriscraper/opinions/united_states/federal_appellate/cadc_pi.py +++ b/juriscraper/opinions/united_states/federal_appellate/cadc_pi.py @@ -4,8 +4,10 @@ Author: flooie History: 2021-12-18: Created by flooie + 2023-01-12: Fixed requests.exceptions.InvalidURL error by grossir """ +from urllib.parse import urljoin from juriscraper.OpinionSiteLinear import OpinionSiteLinear @@ -17,7 +19,7 @@ def __init__(self, *args, **kwargs): self.base = "https://www.cadc.uscourts.gov" self.court_id = self.__module__ - def _process_html(self): + def _process_html(self) -> None: """Iterate over the public interest cases. :return: None @@ -32,7 +34,7 @@ def _process_html(self): self.cases.append( { "date": date, - "url": f"https:{url}", + "url": urljoin("https:", url), "docket": docket, "name": name, "status": "Published", diff --git a/juriscraper/opinions/united_states/federal_appellate/cadc_u.py b/juriscraper/opinions/united_states/federal_appellate/cadc_u.py index 3a4553a76..e636ddb36 100644 --- a/juriscraper/opinions/united_states/federal_appellate/cadc_u.py +++ b/juriscraper/opinions/united_states/federal_appellate/cadc_u.py @@ -17,7 +17,7 @@ def _get_case_names(self): def _get_docket_numbers(self): return [ - re.split("Judgment in Case |,", e)[1] + re.search(r"\d{2}-\d+", e).group(0) for e in self.html.xpath("//item/title/text()") ] diff --git a/juriscraper/opinions/united_states/federal_appellate/scotus_chambers.py b/juriscraper/opinions/united_states/federal_appellate/scotus_chambers.py index d0fc37922..5525f6fc3 100644 --- a/juriscraper/opinions/united_states/federal_appellate/scotus_chambers.py +++ b/juriscraper/opinions/united_states/federal_appellate/scotus_chambers.py @@ -1,14 +1,158 @@ from juriscraper.opinions.united_states.federal_appellate import scotus_slip +""" +Court Contact: https://www.supremecourt.gov/contact/contact_webmaster.aspx +""" + + +from datetime import date + +from juriscraper.AbstractSite import logger +from juriscraper.lib.exceptions import InsanityException +from juriscraper.lib.string_utils import convert_date_string +from juriscraper.OpinionSite import OpinionSite + + +class Site(OpinionSite): + required_headers = ["Date", "Docket", "Name", "J."] + expected_headers = required_headers + ["Revised", "R-", "Pt."] + justices = { + "A": "Samuel Alito", + "AB": "Amy Coney Barrett", + "AS": "Antonin Scalia", + "B": "Stephen Breyer", + "BK": "Brett Kavanaugh", + "D": "Decree", + "DS": "David Souter", + "EK": "Elana Kagan", + "G": "Ruth Bader Ginsburg", + "JS": "John Paul Stephens", + "K": "Anthony Kennedy", + "KJ": "Ketanji Brown Jackson", + "NG": "Neil Gorsuch", + "PC": "Per Curiam", + "R": "John G. Roberts", + "SS": "Sonia Sotomayor", + "T": "Clarence Thomas", + } -class Site(scotus_slip.Site): - # Note that scotus_relating inherits from this class. def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ + self.yy = self._get_current_term() self.back_scrape_iterable = list(range(5, int(self.yy) + 1)) + self.url_base = "https://www.supremecourt.gov/opinions" + self.path_table = "//table[@class='table table-bordered']" + self.path_row = f"{self.path_table}/tr[position() > 1]" self.precedential = "In-chambers" self.court = "in-chambers" + self.headers = False + self.url = False + self.headers = [] + self.cases = [] + + @staticmethod + def _get_current_term(): + """The URLs for SCOTUS correspond to the term, not the calendar. + + The terms kick off on the first Monday of October, so we use October 1st + as our cut off date. + """ + today = date.today() + term_cutoff = date(today.year, 10, 1) + if today < term_cutoff: + # Haven't hit the cutoff, return previous year. + return int(today.strftime("%y")) - 1 # y3k bug! + else: + return today.strftime("%y") + + def _download(self, request_dict={}): + if not self.test_mode_enabled(): + self.set_url() + html = super()._download(request_dict) + self.extract_cases_from_html(html) + return html def set_url(self): self.url = f"{self.url_base}/{self.court}.aspx" + + def set_table_headers(self, html): + # Do nothing if table is missing + if html.xpath(self.path_table): + path = f"{self.path_table}//th" + self.headers = [ + cell.text_content().strip() for cell in html.xpath(path) + ] + # Ensure that expected/required headers are present + if not set(self.required_headers).issubset(self.headers): + raise InsanityException("Required table column missing") + + def extract_cases_from_html(self, html): + self.set_table_headers(html) + for row in html.xpath(self.path_row): + case = self.extract_case_data_from_row(row) + if case: + # Below will raise key error is new judge key encountered (new SC judge appointed) + case["judge"] = self.justices[case["J."]] if case["J."] else "" + self.cases.append(case) + for revision_data in case["revisions"]: + revision = case.copy() + revision["Date"] = revision_data["date_string"] + revision["Name_Url"] = revision_data["href"] + self.cases.append(revision) + + def extract_case_data_from_row(self, row): + cell_index = 0 + case = {"revisions": []} + # Process each cell in row + for cell in row.xpath("./td"): + text = cell.text_content().strip() + # Skip rows with blank first cell + if cell_index == 0 and not text: + break + label = self.headers[cell_index] + if label in ["R-", "Pt."]: + # Ignore some columns that we don't need + pass + elif label == "Revised": + # It is possible for an opinion to have + # multiple revisions, so we need to iterate + # over the links the the cell + for anchor in cell.xpath("a"): + case["revisions"].append( + { + "href": anchor.xpath("@href")[0], + "date_string": anchor.text_content(), + } + ) + else: + # Handle normal data cells + case[label] = text + href = cell.xpath("./a/@href") + if href: + case[f"{label}_Url"] = href[0] + cell_index += 1 + return case + + def _get_case_names(self): + return [case["Name"] for case in self.cases] + + def _get_download_urls(self): + return [case["Name_Url"] for case in self.cases] + + def _get_case_dates(self): + return [convert_date_string(case["Date"]) for case in self.cases] + + def _get_docket_numbers(self): + return [case["Docket"] for case in self.cases] + + def _get_judges(self): + return [case["judge"] for case in self.cases] + + def _get_precedential_statuses(self): + return [self.precedential] * len(self.cases) + + def _download_backwards(self, d): + self.yy = str(d if d >= 10 else f"0{d}") + logger.info(f"Running backscraper for year: 20{self.yy}") + self.html = self._download() diff --git a/juriscraper/opinions/united_states/federal_appellate/scotus_slip.py b/juriscraper/opinions/united_states/federal_appellate/scotus_slip.py index 59c56fe2f..7a5a3861f 100644 --- a/juriscraper/opinions/united_states/federal_appellate/scotus_slip.py +++ b/juriscraper/opinions/united_states/federal_appellate/scotus_slip.py @@ -2,18 +2,14 @@ Court Contact: https://www.supremecourt.gov/contact/contact_webmaster.aspx """ - -from datetime import date +from datetime import date, datetime +from typing import Dict, List, Union from juriscraper.AbstractSite import logger -from juriscraper.lib.exceptions import InsanityException -from juriscraper.lib.string_utils import convert_date_string -from juriscraper.OpinionSite import OpinionSite +from juriscraper.OpinionSiteLinear import OpinionSiteLinear -class Site(OpinionSite): - required_headers = ["Date", "Docket", "Name", "J."] - expected_headers = required_headers + ["Revised", "R-", "Pt."] +class Site(OpinionSiteLinear): justices = { "A": "Samuel Alito", "AB": "Amy Coney Barrett", @@ -33,124 +29,72 @@ class Site(OpinionSite): "SS": "Sonia Sotomayor", "T": "Clarence Thomas", } + base_url = "https://www.supremecourt.gov/opinions/slipopinion" + first_opinion_date = datetime(2018, 6, 25) + days_interval = 365 def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ - self.yy = self._get_current_term() - self.back_scrape_iterable = list(range(6, int(self.yy) + 1)) - self.url_base = "https://www.supremecourt.gov/opinions" - self.path_table = "//table[@class='table table-bordered']" - self.path_row = f"{self.path_table}/tr[position() > 1]" - self.precedential = "Published" - self.court = "slipopinion" - self.headers = False - self.url = False - self.headers = [] - self.cases = [] + self.status = "Published" + self.url = f"{self.base_url}/{self.get_term()}" + self.make_backscrape_iterable(kwargs) @staticmethod - def _get_current_term(): + def get_term( + date_of_interest: Union[date, datetime] = date.today() + ) -> int: """The URLs for SCOTUS correspond to the term, not the calendar. The terms kick off on the first Monday of October, so we use October 1st as our cut off date. """ - today = date.today() - term_cutoff = date(today.year, 10, 1) - if today < term_cutoff: - # Haven't hit the cutoff, return previous year. - return int(today.strftime("%y")) - 1 # y3k bug! + term_cutoff = date(date_of_interest.year, 10, 1) + if isinstance(date_of_interest, datetime): + date_of_interest = date_of_interest.date() + year = int(date_of_interest.strftime("%y")) + # Return the previous year if we haven't reached the cutoff + return year - 1 if date_of_interest < term_cutoff else year + + def _process_html(self): + for row in self.html.xpath("//tr"): + cells = row.xpath(".//td") + if len(cells) != 6: + continue + _, date, docket, link, justice, citation = row.xpath(".//td") + if not link.text_content(): + continue + self.cases.append( + { + "citation": citation.text_content(), + "date": date.text_content(), + "url": link.xpath(".//a/@href")[0], + "name": link.text_content(), + "docket": docket.text_content(), + "judge": self.justices[justice.text_content()], + } + ) + + def make_backscrape_iterable(self, kwargs: Dict) -> List[str]: + """Use the default make_backscrape_iterable to parse input + and create date objects. Then, use the dates to get the terms + + Note that the HTML slipopinion page exists only since term 17 + + :return: a list of URLs + """ + super().make_backscrape_iterable(kwargs) + start = self.get_term(self.back_scrape_iterable[0][0]) + end = self.get_term(self.back_scrape_iterable[-1][1]) + if start == end: + self.back_scrape_iterable = [f"{self.base_url}/{start}"] else: - return today.strftime("%y") - - def _download(self, request_dict={}): - if not self.test_mode_enabled(): - self.set_url() - html = super()._download(request_dict) - self.extract_cases_from_html(html) - return html - - def set_url(self): - self.url = f"{self.url_base}/{self.court}/{self.yy}" - - def set_table_headers(self, html): - # Do nothing if table is missing - if html.xpath(self.path_table): - path = f"{self.path_table}//th" - self.headers = [ - cell.text_content().strip() for cell in html.xpath(path) + self.back_scrape_iterable = [ + f"{self.base_url}/{yy}" for yy in range(start, end) ] - # Ensure that expected/required headers are present - if not set(self.required_headers).issubset(self.headers): - raise InsanityException("Required table column missing") - - def extract_cases_from_html(self, html): - self.set_table_headers(html) - for row in html.xpath(self.path_row): - case = self.extract_case_data_from_row(row) - if case: - # Below will raise key error is new judge key encountered (new SC judge appointed) - case["judge"] = self.justices[case["J."]] if case["J."] else "" - self.cases.append(case) - for revision_data in case["revisions"]: - revision = case.copy() - revision["Date"] = revision_data["date_string"] - revision["Name_Url"] = revision_data["href"] - self.cases.append(revision) - - def extract_case_data_from_row(self, row): - cell_index = 0 - case = {"revisions": []} - # Process each cell in row - for cell in row.xpath("./td"): - text = cell.text_content().strip() - # Skip rows with blank first cell - if cell_index == 0 and not text: - break - label = self.headers[cell_index] - if label in ["R-", "Pt."]: - # Ignore some columns that we don't need - pass - elif label == "Revised": - # It is possible for an opinion to have - # multiple revisions, so we need to iterate - # over the links the the cell - for anchor in cell.xpath("a"): - case["revisions"].append( - { - "href": anchor.xpath("@href")[0], - "date_string": anchor.text_content(), - } - ) - else: - # Handle normal data cells - case[label] = text - href = cell.xpath("./a/@href") - if href: - case[f"{label}_Url"] = href[0] - cell_index += 1 - return case - - def _get_case_names(self): - return [case["Name"] for case in self.cases] - - def _get_download_urls(self): - return [case["Name_Url"] for case in self.cases] - - def _get_case_dates(self): - return [convert_date_string(case["Date"]) for case in self.cases] - - def _get_docket_numbers(self): - return [case["Docket"] for case in self.cases] - - def _get_judges(self): - return [case["judge"] for case in self.cases] - - def _get_precedential_statuses(self): - return [self.precedential] * len(self.cases) - def _download_backwards(self, d): - self.yy = str(d if d >= 10 else f"0{d}") - logger.info(f"Running backscraper for year: 20{self.yy}") + def _download_backwards(self, d: str): + self.url = d + logger.info("Backscraping %s", self.url) self.html = self._download() + self._process_html() diff --git a/juriscraper/opinions/united_states/federal_bankruptcy/__init__.py b/juriscraper/opinions/united_states/federal_bankruptcy/__init__.py index c197e2dc4..5ccb4fe74 100644 --- a/juriscraper/opinions/united_states/federal_bankruptcy/__init__.py +++ b/juriscraper/opinions/united_states/federal_bankruptcy/__init__.py @@ -1,4 +1,5 @@ __all__ = [ + "bap1", "bap9", "bap10", ] diff --git a/juriscraper/opinions/united_states/federal_bankruptcy/bap1.py b/juriscraper/opinions/united_states/federal_bankruptcy/bap1.py new file mode 100644 index 000000000..5f3b34d3a --- /dev/null +++ b/juriscraper/opinions/united_states/federal_bankruptcy/bap1.py @@ -0,0 +1,179 @@ +""" +Scraper for the United States Bankruptcy Appellate Panel for the First Circuit +CourtID: bap1 +Court Short Name: 1st Cir. BAP +Court Contact: ca01_BAP@ca1.uscourts.gov, (617) 748-9650 +Author: Gianfranco Rossi +History: + - 2023-12-28, grossir: created +""" + +import calendar +import re +from typing import Any, Dict, Optional + +from lxml.html import HtmlElement + +from juriscraper.lib.exceptions import SkipRowError +from juriscraper.lib.string_utils import convert_date_string +from juriscraper.OpinionSiteLinear import OpinionSiteLinear + + +class Site(OpinionSiteLinear): + lower_court_to_abbreviation = { + "USBC - District of New Hampshire": "NH", + "USBC - District of Massachusetts (Worcester)": "MW", + "USBC - District of Puerto Rico": "PR", + "USBC - District of Massachusetts (Boston)": "MB", + "USBC - District of Maine (Portland)": "EP", + "USBC - District of Rhode Island": "RI", + "Bankrupcty Court of ME - Bangor": "EB", + "Bankruptcy Court of MA - Boston": "MB", + "Bankruptcy Court of MA - Springfield": "MS", + "Bankruptcy Court of ME - Portland": "EP", + "Bankruptcy Court - Rhode Island": "RI", + "Bankruptcy Court - San Juan Puerto Rico": "PR", + "Bankruptcy Court of MA - Worcester": "MW", + "Bankruptcy Court - Ponce Puerto Rico": "PR", + "Bankruptcy Court of NH, Concord": "NH", + } + # See issue #828 for mapper extraction reference + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self.base_url = self.url = "https://www.bap1.uscourts.gov/bapopn" + self.court_id = self.__module__ + + # There are 29 historical pages as of development in Dec 2023 + # source indexes from 0 + self.back_scrape_iterable = range(29)[::-1] + + def _download(self, request_dict: Optional[Dict] = None) -> HtmlElement: + """Gets the source's HTML + + For a normal periodic scraper, get the last page where + most recent opinions are + Backscraper will iterate over all available pages + + :param request_dict: unused in this scraper + :return: HTML object from the downloaded page + """ + if self.base_url == self.url: + self.html = super()._download() + self.url = self.html.xpath("//li/a/@href")[-1] + + return super()._download() + + def _download_backwards(self, page_number: int) -> None: + """Method used by backscraper to download historical records + + :param page_number: an element of self.back_scrape_iterable + :return: None + """ + self.url = f"{self.base_url}?page={page_number}" + + def _process_html(self) -> None: + """Parses a page's HTML into opinion dictionaries + + Most recent opinions are on the last rows of the table + + :return: None + """ + for row in self.html.xpath("//tr[td]")[::-1]: + docket_string = self.get_text_by_xpath(row, "td[1]") + + try: + status = self.get_status_from_docket_string(docket_string) + except SkipRowError: + continue + + partial_docket_number = self.get_text_by_xpath(row, "td[2]") + date_placeholder = self.get_text_by_xpath(row, "td[3]") + lower_court = self.get_text_by_xpath(row, "td[4]/span") + name = row.xpath("td[4]")[0].text.strip() + + docket = self.build_full_docket_number( + partial_docket_number, lower_court + ) + + self.cases.append( + { + "status": status, + "url": row.xpath("td[1]/a/@href")[0], + "docket": docket, + "date": date_placeholder, + "name": name, + "lower_court": lower_court, + } + ) + + def build_full_docket_number( + self, partial_docket_number: str, lower_court: str + ) -> str: + """Completes docket number with lower court abbreviation + + For each unique lower court in the opinions available on the source, + a linked opinion PDF was opened and the abbrevation extracted + + :param partial_docket_number: The partial docket string + :param lower_court: The lower court abbreviation + :return: The full docket number + """ + lower_court_abbreviation = self.lower_court_to_abbreviation.get( + lower_court, "" + ) + + return f"BAP No. {lower_court_abbreviation} {partial_docket_number}" + + @staticmethod + def get_status_from_docket_string(docket_string: str) -> str: + """Extracts status implicit in partial docket number + + Examples of opinion names: 02-084P1.01A, 00-094P1, 21-021P + + :param docket_string + :raises SkipRowError: when the docket refers to an order + :return: status in `[Published, Unpublished, Unknown]` + """ + if "P" in docket_string: + status = "Published" + elif "U" in docket_string: + status = "Unpublished" + elif "O" in docket_string: + raise SkipRowError( + f"Skipping row {docket_string} because it is an order" + ) + else: + status = "Unknown" + + return status + + @staticmethod + def get_text_by_xpath(html_element: HtmlElement, xpath: str) -> str: + """Extracts first text content from html element located by xpath + + :param html_element: anchor element for xpath selection + :param xpath: xpath string + :return: stripped text content + """ + return html_element.xpath(xpath)[0].text_content().strip() + + def extract_from_text(self, scraped_text: str) -> Dict[str, Any]: + """Extract Date Filed from text + + :param scraped_text: Text of scraped content + :return: Dict in the format expected by courtlistener, + containing date_filed + """ + months = "|".join(calendar.month_name[1:]) + date_pattern = re.compile(rf"({months})\s+\d{{1,2}}\s?,?\s+\d{{4}}") + match = re.search(date_pattern, scraped_text) + date_extracted = match.group(0) if match else "" + date_filed = re.sub(r"\s+", " ", date_extracted).strip() + + metadata = { + "OpinionCluster": { + "date_filed": convert_date_string(date_filed), + }, + } + return metadata diff --git a/juriscraper/opinions/united_states/federal_bankruptcy/bap10.py b/juriscraper/opinions/united_states/federal_bankruptcy/bap10.py index 4e09eb583..63b2d6fe6 100644 --- a/juriscraper/opinions/united_states/federal_bankruptcy/bap10.py +++ b/juriscraper/opinions/united_states/federal_bankruptcy/bap10.py @@ -10,37 +10,26 @@ into the _get_case_dates function. """ -from datetime import date, timedelta +from datetime import date, datetime, timedelta +from typing import Optional, Tuple from urllib.parse import urlencode +from juriscraper.AbstractSite import logger from juriscraper.OpinionSiteLinear import OpinionSiteLinear class Site(OpinionSiteLinear): + base_url = url = "https://www.bap10.uscourts.gov/opinion/search/results" + first_opinion_date = datetime(1996, 11, 12) + days_interval = 120 + def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - self.url = "https://www.bap10.uscourts.gov/opinion/search/results" self.court_id = self.__module__ - today = date.today() - params = urlencode( - { - "keywords": "", - "parties": "", - "judges": "", - "field_opinion_date_value[min][date]": ( - today - timedelta(30) - ).strftime("%m/%d/%Y"), - "field_opinion_date_value[max][date]": today.strftime( - "%m/%d/%Y" - ), - "exclude": "", - } - ) - self.url = ( - f"https://www.bap10.uscourts.gov/opinion/search/results?{params}" - ) - - def _process_html(self): + self.set_url() + self.make_backscrape_iterable(kwargs) + + def _process_html(self) -> None: for row in self.html.xpath(".//tr"): if not row.xpath(".//td"): continue @@ -53,3 +42,37 @@ def _process_html(self): "status": "Published", } ) + + def set_url( + self, start: Optional[date] = None, end: Optional[date] = None + ) -> None: + """Sets URL with date filters in query string + + :param start: optional start date + :param end: optional end date + :return None: + """ + if not start: + end = date.today() + start = end - timedelta(30) + + params = { + "keywords": "", + "parties": "", + "judges": "", + "field_opinion_date_value[min][date]": start.strftime("%m/%d/%Y"), + "field_opinion_date_value[max][date]": end.strftime("%m/%d/%Y"), + "exclude": "", + } + self.url = f"{self.base_url}?{urlencode(params)}" + + def _download_backwards(self, dates: Tuple[date]) -> None: + """Make custom date range request + + :param dates: (start_date, end_date) tuple + :return None + """ + logger.info("Backscraping for range %s %s", *dates) + self.set_url(*dates) + self.html = self._download() + self._process_html() diff --git a/juriscraper/opinions/united_states/federal_district/dcd.py b/juriscraper/opinions/united_states/federal_district/dcd.py index 47de5f1ed..2c8934cfd 100644 --- a/juriscraper/opinions/united_states/federal_district/dcd.py +++ b/juriscraper/opinions/united_states/federal_district/dcd.py @@ -4,142 +4,71 @@ Author: V. David Zvenyach Date created: 2014-02-27 Substantially Revised: Brian W. Carver, 2014-03-28 +2024-05-03, grossir: Change base class OpinionSiteLinear """ import re -import time -from datetime import date +from datetime import date, datetime +from typing import Tuple from lxml import html from juriscraper.lib.string_utils import titlecase -from juriscraper.OpinionSite import OpinionSite +from juriscraper.OpinionSiteLinear import OpinionSiteLinear -class Site(OpinionSite): +class Site(OpinionSiteLinear): + docket_document_number_regex = re.compile(r"(\?)(\d+)([a-z]+)(\d+)(-)(.*)") + nature_of_suit_regex = re.compile(r"(\?)(\d+)([a-z]+)(\d+)(-)(.*)") + def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ - self.url = "https://ecf.dcd.uscourts.gov/cgi-bin/Opinions.pl?" + str( - date.today().year - ) + self.url = f"https://ecf.dcd.uscourts.gov/cgi-bin/Opinions.pl?{date.today().year}" + self.status = "Published" - def _get_download_urls(self): - # There are often multiple documents and hence urls for each case. - # This requires us to pad every other metadata field to match the - # number of urls we find here. - path = "//table[2]//tr[position()>0]/td[3]/a/@href" - return [url for url in self.html.xpath(path)] + def _process_html(self): + """ + Some rows have mutliple documents and hence urls for each case. + We will "pad" every other metadata field to match the urls + """ + for row in self.html.xpath("//table[2]//tr[not(th)]"): + case_name = titlecase( + row.xpath("td[2]//text()[preceding-sibling::br]")[0].lower() + ) + date_string = row.xpath("td[1]/text()")[0] + date_filed = datetime.strptime(date_string, "%m/%d/%Y") + docket = row.xpath("td[2]//text()[following-sibling::br]")[0] - def _get_case_names(self): - casenames = [] - rowpath = "//table[2]//tr[position()>0]" - cnpath = "./td[2]//text()[preceding-sibling::br]" - urlpath = "./td[3]/a/@href" - for row in self.html.xpath(rowpath): - case_list = row.xpath(cnpath) - for rough_case_name in case_list: - case_name = titlecase(rough_case_name.lower()) - # Determine the number of urls in each row and pad the case - # name list sufficiently - count = len(row.xpath(urlpath)) - casenames.extend([case_name] * count) - return casenames + judge_element = row.xpath("td[3]")[0] + judge_string = html.tostring( + judge_element, method="text", encoding="unicode" + ) + judge = re.search(r"(by\s)(.*)", judge_string, re.MULTILINE).group( + 2 + ) - def _get_case_dates(self): - dates = [] - rowpath = "//table[2]//tr[position()>0]" - datepath = "./td[1]/text()" - urlpath = "./td[3]/a/@href" - for row in self.html.xpath(rowpath): - date_string = row.xpath(datepath) - for d in date_string: - date_object = date.fromtimestamp( - time.mktime(time.strptime(d, "%m/%d/%Y")) + for url in row.xpath("td[3]/a/@href"): + doc_number = self.get_docket_document_number_from_url(url) + self.cases.append( + { + "name": case_name, + "date": str(date_filed), + "url": url, + "docket": docket, + "docket_document_number": doc_number, + "judge": judge, + } ) - # Determine the number of urls in each row and pad the date - # list sufficiently - count = len(row.xpath(urlpath)) - dates.extend([date_object] * count) - return dates - - def _get_precedential_statuses(self): - return ["Published"] * len(self.case_names) - def _get_docket_numbers(self): - docket_numbers = [] - rowpath = "//table[2]//tr[position()>0]" - dktpath = "./td[2]//text()[following-sibling::br]" - urlpath = "./td[3]/a/@href" - for row in self.html.xpath(rowpath): - docket_number = row.xpath(dktpath) - # Determine the number of urls in each row and pad the docket - # numbers list sufficiently - count = len(row.xpath(urlpath)) - docket_numbers.extend(docket_number * count) - return docket_numbers + def get_docket_document_number_from_url(self, url: str) -> Tuple[str, str]: + """Get docket document number from the opinion URL - def _get_docket_document_numbers(self): - document_numbers = [] - regex = re.compile(r"(\?)(\d+)([a-z]+)(\d+)(-)(.*)") - for url in self.html.xpath( - "//table[2]//tr[position()>0]/td[3]/a/@href" - ): - # Because we are acting directly on the entire url list, no padding - # of the docket number field is required. - doc_no = regex.search(url) - # In 2012 (and perhaps elsewhere) they have a few weird urls. - if re.search(regex, url) is not None: - document_numbers.append(doc_no.group(6)) - else: - document_numbers.append(url) - return document_numbers - - def _get_judges(self): - judges = [] - rowpath = "//table[2]//tr[position()>0]" - urlpath = "./td[3]/a/@href" - judgepath = "./td[3]" - for row in self.html.xpath(rowpath): - for judge_element in row.xpath(judgepath): - judge_string = html.tostring( - judge_element, method="text", encoding="unicode" - ) - judge = re.search( - r"(by\s)(.*)", judge_string, re.MULTILINE - ).group(2) - # Determine the number of urls in each row and pad the judges - # list sufficiently - count = len(row.xpath(urlpath)) - judges.extend([judge] * count) - return judges + :param url: + :return: docket document number + """ + # In 2012 (and perhaps elsewhere) they have a few weird urls. + match = self.docket_document_number_regex.search(url) + doc_number = match.group(6) if match else url - def _get_nature_of_suit(self): - nos = [] - for url in self.html.xpath( - "//table[2]//tr[position()>0]/td[3]/a/@href" - ): - # Because we are acting directly on the entire url list, no padding - # of the nature of suit field is required. - regex = r"(\?)(\d+)([a-z]+)(\d+)(\-)(.*)" - url_str = re.search(r"(\?)(\d+)([a-z]+)(\d+)(-)(.*)", url) - # In 2012 (and perhaps elsewhere) they have a few weird urls. - if re.search(regex, url) is not None: - nature_code = url_str.group(3) - if nature_code == "cv": - nos.append("Civil") - elif nature_code == "cr": - nos.append("Criminal") - # This is a tough call. Magistrate Cases are typically also - # Criminal or Civil cases, and their docket_number field will - # reflect this, but they do classify these separately under - # these 'mj' and 'mc' codes and the first page of these - # documents will often refer to them as 'Magistrate Case - # ####-####' so, we will too. - elif nature_code == "mj" or "mc": - nos.append("Magistrate Case") - else: - nos.append("Unknown") - else: - nos.append("Unknown") - return nos + return doc_number diff --git a/juriscraper/opinions/united_states/federal_special/__init__.py b/juriscraper/opinions/united_states/federal_special/__init__.py index 805bde801..e04652849 100644 --- a/juriscraper/opinions/united_states/federal_special/__init__.py +++ b/juriscraper/opinions/united_states/federal_special/__init__.py @@ -6,12 +6,12 @@ "ag", "armfor", "cavc", - "cgcca", + "uscgcoca", "cit", "nmcca", "tax", "uscfc", - "uscfc_u", "uscfc_vaccine", - "uscfc_vaccine_u", + "fisc", + "fiscr", ] diff --git a/juriscraper/opinions/united_states/federal_special/acca_memorandum.py b/juriscraper/opinions/united_states/federal_special/acca_memorandum.py index d87aacb4e..eb828a40a 100644 --- a/juriscraper/opinions/united_states/federal_special/acca_memorandum.py +++ b/juriscraper/opinions/united_states/federal_special/acca_memorandum.py @@ -11,8 +11,6 @@ class Site(acca_p.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - self.url = "https://www.jagcnet.army.mil/85257546006DF36B/MODD?OpenView&Count=-1" + self.url = "https://www.jagcnet.army.mil/ACCALibrary/cases/opinions/MO" self.court_id = self.__module__ - - def _get_precedential_statuses(self): - return ["Unpublished"] * len(self.case_names) + self.status = "Unpublished" diff --git a/juriscraper/opinions/united_states/federal_special/acca_p.py b/juriscraper/opinions/united_states/federal_special/acca_p.py index c2ecb35ae..22c40e42a 100644 --- a/juriscraper/opinions/united_states/federal_special/acca_p.py +++ b/juriscraper/opinions/united_states/federal_special/acca_p.py @@ -14,25 +14,26 @@ class Site(OpinionSiteLinear): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ - self.url = "https://www.jagcnet.army.mil/85257546006DF36B/ODD?OpenView&Count=-1" + self.url = "https://www.jagcnet.army.mil/ACCALibrary/cases/opinions/OC" self.status = "Published" + self.expected_content_types = ["application/octet-stream"] def _process_html(self): - for row in self.html.xpath('//tr[@class="domino-viewentry"]'): - cell_three = row.xpath(".//td[3]")[0] - text = cell_three.text_content() - text_parts = text.split("-", 1) - hrefs = cell_three.xpath(".//a/@href") - - # skip rows without link to opinion - if not hrefs: + for row in self.html.xpath( + '//*[@id="Opinions_ResizeContainer"]/table/tbody/tr' + ): + col1, col2, col3 = row.xpath(".//td") + url = col1.xpath(".//a/@href") + if not url: continue - + name = col1.text_content() + docket = col2.text_content() + date = col3.text_content() self.cases.append( { - "date": row.xpath(".//td[1]")[0].text_content(), - "docket": text_parts[0], - "name": text_parts[1], - "url": hrefs[0], + "date": date.strip(), + "docket": docket.strip(), + "name": name.strip(), + "url": url[0], } ) diff --git a/juriscraper/opinions/united_states/federal_special/acca_summary.py b/juriscraper/opinions/united_states/federal_special/acca_summary.py index 739952ce2..1e44697a9 100644 --- a/juriscraper/opinions/united_states/federal_special/acca_summary.py +++ b/juriscraper/opinions/united_states/federal_special/acca_summary.py @@ -11,8 +11,6 @@ class Site(acca_p.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - self.url = "https://www.jagcnet.army.mil/85257546006DF36B/SDD?OpenView&Count=-1" + self.url = "https://www.jagcnet.army.mil/ACCALibrary/cases/opinions/SD" self.court_id = self.__module__ - - def _get_precedential_statuses(self): - return ["Unpublished"] * len(self.case_names) + self.status = "Unpublished" diff --git a/juriscraper/opinions/united_states/federal_special/afcca.py b/juriscraper/opinions/united_states/federal_special/afcca.py index 2d5a37e19..641c3b7f0 100644 --- a/juriscraper/opinions/united_states/federal_special/afcca.py +++ b/juriscraper/opinions/united_states/federal_special/afcca.py @@ -12,14 +12,18 @@ class Site(OpinionSiteLinear): + base_url = "http://afcca.law.af.mil/content/opinions_date_{}.html" + start_year = 2002 + def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ - self.url_base = "http://afcca.law.af.mil/content/opinions_date_%d.html" - self.url = self.url_base % date.today().year + self.current_year = date.today().year + self.make_backscrape_iterable(kwargs) + self.url = self.base_url.format(self.current_year) self.disable_certificate_verification() - def _process_html(self): + def _process_html(self) -> None: for row in self.html.xpath(".//img[contains(@src, 'pdf.gif')]/../..")[ :-1 ]: @@ -35,3 +39,29 @@ def _process_html(self): "status": status, } ) + + def _download_backwards(self, year: int) -> None: + """Build URL with year input and scrape + + :param year: year to scrape + :return None + """ + self.url = self.base_url.format(year) + self.html = self._download() + self._process_html() + + def make_backscrape_iterable(self, kwargs: dict) -> None: + """Checks if backscrape start and end arguments have been passed + by caller, and parses them accordingly + + :param kwargs: passed when initializing the scraper, may or + may not contain backscrape controlling arguments + :return None + """ + start = kwargs.get("backscrape_start") + end = kwargs.get("backscrape_end") + + start = int(start) if start else self.start_year + end = int(end) + 1 if end else self.current_year + + self.back_scrape_iterable = range(start, end) diff --git a/juriscraper/opinions/united_states/federal_special/ag.py b/juriscraper/opinions/united_states/federal_special/ag.py index c16f56320..4f94c3060 100644 --- a/juriscraper/opinions/united_states/federal_special/ag.py +++ b/juriscraper/opinions/united_states/federal_special/ag.py @@ -3,57 +3,30 @@ Court Short Name: United States Attorney General """ -from juriscraper.lib.string_utils import convert_date_string -from juriscraper.OpinionSite import OpinionSite +from juriscraper.OpinionSiteLinear import OpinionSiteLinear -class Site(OpinionSite): +class Site(OpinionSiteLinear): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ self.url = "https://www.justice.gov/olc/opinions?items_per_page=40" - self.back_scrape_url = f"{self.url}&page=%d" - self.back_scrape_iterable = None - self.cell_path = "//table//tr/td[%d]" - - def _download(self, request_dict={}): - if not self.test_mode_enabled(): - # don't set this if running tests, as it hits the network - self.back_scrape_iterable = list( - range(0, self.get_last_page() + 1) + self.status = "Published" + + def _process_html(self): + for row in self.html.xpath(".//article"): + name = row.xpath(".//h2")[0].text_content().strip() + url = row.xpath(".//a/@href")[0] + date = row.xpath(".//time")[0].text_content() + if not name: + continue + summary = row.xpath(".//p")[0].text_content() + self.cases.append( + { + "date": date, + "name": name, + "url": url, + "summary": summary, + "docket": "", # Docket numbers don't appear to exist. + } ) - return super()._download(request_dict) - - def _get_case_names(self): - cells = self.html.xpath(self.cell_path % 2) - return [cell.text_content().strip() for cell in cells] - - def _get_download_urls(self): - base_path = self.cell_path % 2 - return [href for href in self.html.xpath(f"{base_path}//a[1]/@href")] - - def _get_case_dates(self): - cells = self.html.xpath(self.cell_path % 1) - return [ - convert_date_string(cell.text_content().strip()) for cell in cells - ] - - def _get_docket_numbers(self): - """advisory opinions have no docket numbers""" - return [""] * len(self.case_names) - - def _get_precedential_statuses(self): - return ["Published"] * len(self.case_names) - - def _get_summaries(self): - cells = self.html.xpath(self.cell_path % 3) - return [cell.text_content().strip() for cell in cells] - - def get_last_page(self): - html = self._get_html_tree_by_url(self.url) - path = "//li[contains(@class, 'pager__item--last')]/a[1]/@href" - return int(html.xpath(path)[0].split("=")[-1]) - - def _download_backwards(self, page_num): - self.url = self.back_scrape_url % page_num - self.html = self._download() diff --git a/juriscraper/opinions/united_states/federal_special/armfor.py b/juriscraper/opinions/united_states/federal_special/armfor.py index 95293a82b..4245c9648 100644 --- a/juriscraper/opinions/united_states/federal_special/armfor.py +++ b/juriscraper/opinions/united_states/federal_special/armfor.py @@ -2,80 +2,32 @@ CourtID: armfor Court Short Name: C.A.A.F.""" -from juriscraper.lib.html_utils import get_html5_parsed_text -from juriscraper.lib.string_utils import convert_date_string -from juriscraper.OpinionSite import OpinionSite +from juriscraper.OpinionSiteLinear import OpinionSiteLinear -# This court has some funky html that varies -# across the old term listings. Before committing -# changes, make sure you haven't broken the backscraper -# by running: python juriscraper/sample_caller.py -c opinions.united_states.federal_special.armfor --backscrape -class Site(OpinionSite): +class Site(OpinionSiteLinear): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ self.back_scrape_iterable = [""] - self.url = "http://www.armfor.uscourts.gov/newcaaf/opinions.htm" - self.row_base_path = '//table[@border="1"]//tr[descendant::a]' - self.path_to_landing_page_links = ( - "//blockquote/ul/li[1]/font/a[1]/@href" + self.url = ( + "https://www.armfor.uscourts.gov/newcaaf/opinions/CurrentOpins.htm" ) - - def _download(self, request_dict={}): - landing_page_html = super()._download(request_dict) - - # Example test files should include html of direct resource page - if self.test_mode_enabled(): - return [landing_page_html] - - urls = landing_page_html.xpath(self.path_to_landing_page_links) - return [self._get_html_tree_by_url(url, request_dict) for url in urls] - - def _get_case_names(self): - names = [] - path = f"{self.row_base_path}/td[1]" - for html_tree in self.html: - names.extend( - [cell.text_content().strip() for cell in html_tree.xpath(path)] - ) - return names - - def _get_download_urls(self): - urls = [] - path = f"{self.row_base_path}/td[2]//a[last()]/@href" - for html_tree in self.html: - urls.extend([url for url in html_tree.xpath(path)]) - return urls - - def _get_case_dates(self): - dates = [] - path = f"{self.row_base_path}/td[3]" - for html_tree in self.html: - for cell in html_tree.xpath(path): - dates.append(convert_date_string(cell.text_content())) - return dates - - def _get_docket_numbers(self): - dockets = [] - path = f"{self.row_base_path}//td[2]" - for html_tree in self.html: - for cell in html_tree.xpath(path): - docket_raw = cell.text_content().strip() - dockets.append(docket_raw.rstrip("(PDF)")) - return dockets - - def _get_precedential_statuses(self): - return ["Published"] * len(self.case_names) - - def _download_backwards(self, _): - # We skip the 1998 and 1999 entries because they - # are formatted differently and don't contain dates - limitation = 'not(contains(@href, "1998Term.htm")) and not(contains(@href, "1997Term.htm"))' - self.path_to_landing_page_links = ( - f"//blockquote/ul/li/font/a[1][{limitation}]/@href" + self.row_base_path = ( + ".//td/font/a[contains(@href, '.pdf')]/ancestor::tr" ) - self.html = self._download() - - def _make_html_tree(self, text): - return get_html5_parsed_text(text) + self.status = "Published" + + def _process_html(self): + for row in self.html.xpath(self.row_base_path): + case_name, docket, date, cite = row.xpath(".//td") + cite = "" if "xx" in cite.text_content() else cite.text_content() + self.cases.append( + { + "name": case_name.text_content(), + "url": docket.xpath(".//a/@href")[0], + "date": date.text_content().strip(), + "citation": cite, + "docket": docket.text_content().split()[0], + } + ) diff --git a/juriscraper/opinions/united_states/federal_special/fisc.py b/juriscraper/opinions/united_states/federal_special/fisc.py new file mode 100644 index 000000000..e0041485a --- /dev/null +++ b/juriscraper/opinions/united_states/federal_special/fisc.py @@ -0,0 +1,65 @@ +from urllib.parse import urljoin + +from juriscraper.OpinionSiteLinear import OpinionSiteLinear + + +class Site(OpinionSiteLinear): + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self.court_id = self.__module__ + self.url = "https://www.fisc.uscourts.gov/public-filings" + self.status = "Published" + self.back_scrape_iterable = ["placeholder"] + self.do_backscrape = False + + def _process_html(self) -> None: + """Parse HTML into case objects + + :return None + """ + for row in self.html.xpath("//tr[td/a]"): + filing_name, *_, filename = row.xpath("td/a/text()") + if "opinion" not in filing_name.lower(): + continue + + docket = row.xpath("string(td[4])").strip() + date_filed = row.xpath("td[1]/span/text()")[0] + + if self.skip_record(docket, filename): + continue + + url = row.xpath(".//a/@href")[-1] + self.cases.append( + { + "date": date_filed.split(",")[-1], + "docket": docket, + "name": filing_name, + "url": url, + } + ) + + next_page = self.html.xpath("//a[@title='Go to next page']/@href") + if self.do_backscrape and next_page: + # Perform download since we are not yielding a site for each + # element in the backscrape iterable + self.url = urljoin(self.url, next_page[0]) + self.html = self._download() + self._process_html() + + def skip_record(self, docket: str, filename: str) -> bool: + """Check if a record belongs to 'FISCR' + + :param docket: docket number + :param filename: opinion title + + :return: True if record should skipped + """ + return "FISCR" in docket or "FISCR" in filename + + def _download_backwards(self, _) -> None: + """Start from second page up to last page + + :return None + """ + self.do_backscrape = True + self.url = "https://www.fisc.uscourts.gov/public-filings?page=1" diff --git a/juriscraper/opinions/united_states/federal_special/fiscr.py b/juriscraper/opinions/united_states/federal_special/fiscr.py new file mode 100644 index 000000000..74f886acf --- /dev/null +++ b/juriscraper/opinions/united_states/federal_special/fiscr.py @@ -0,0 +1,13 @@ +from .fisc import Site as FiscSite + + +class Site(FiscSite): + def skip_record(self, docket: str, filename: str) -> bool: + """Skips a record that belongs to FISC + + :param docket: docket number + :param filename: opinion title + + :return: True if record should skipped + """ + return "FISCR" not in docket and "FISCR" not in filename diff --git a/juriscraper/opinions/united_states/federal_special/nmcca.py b/juriscraper/opinions/united_states/federal_special/nmcca.py index 903684ac9..f3450b8db 100644 --- a/juriscraper/opinions/united_states/federal_special/nmcca.py +++ b/juriscraper/opinions/united_states/federal_special/nmcca.py @@ -6,50 +6,70 @@ 15 Sep 2014: Created by Jon Andersen """ -from juriscraper.lib.string_utils import convert_date_string, titlecase -from juriscraper.OpinionSite import OpinionSite +from datetime import date, datetime +from typing import Tuple +from urllib.parse import urlencode +from juriscraper.AbstractSite import logger +from juriscraper.OpinionSiteLinear import OpinionSiteLinear + + +class Site(OpinionSiteLinear): + base_url = "https://www.jag.navy.mil/api/tables/decisions-opinions/data/" + days_interval = 60 + first_opinion_date = datetime(2004, 1, 8) -class Site(OpinionSite): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - self.url = "http://www.jag.navy.mil/courts/opinion_archive.htm" self.court_id = self.__module__ - self.back_scrape_iterable = list(range(2013, 2004 - 1, -1)) - - def _get_case_dates(self): - # this court makes a lot of typos apparently - typos = { - "6/13/30/13": "6/13/13", - "6/11/30/13": "6/11/13", - "02/12/09 & 12/04/08": "02/12/09", - "006/08/2020": "06/08/2020", - } + self.request["verify"] = False + self.url = self.base_url + self.make_backscrape_iterable(kwargs) - dates = [] - path = "//table/tbody/tr/td[3]//text()" - for ds in self.html.xpath(path): - ds = typos[ds] if ds in typos else ds - dates.append(convert_date_string(ds)) - return dates + def _process_html(self) -> None: + for row in self.html["results"]: + date, docket, notes, name = list(row["data"].values()) + url = row["documents"][0]["document"]["download_url"] + if notes == "Unpublished": + status = "Unpublished" + else: + status = "Published" + self.cases.append( + { + "date": date, + "name": name, + "url": url, + "status": status, + "docket": docket, + } + ) - def _get_case_names(self): - path = "//table/tbody/tr/td[1]/text()" - return [titlecase(text) for text in self.html.xpath(path)] + def _download_backwards(self, dates: Tuple[date]) -> None: + """Make custom date range request - def _get_download_urls(self): - path = "//table/tbody/tr/td[4]/a[1]/@href" - return [e for e in self.html.xpath(path)] + "6e61b248-ef67-423e-b321-f2ed8ad05728" seems to be the name + of the date field. It is also present on the response JSON keys. + It seems stable through time, from last example file edit in 2023 + to April 2024. - def _get_docket_numbers(self): - path = "//table/tbody/tr/td[2]//text()" - return [docket_number for docket_number in self.html.xpath(path)] + If something changes, go to + https://www.jag.navy.mil/about/organization/ojag/code-05/nmcca/opinions/ - def _get_precedential_statuses(self): - return ["Published"] * len(self.case_dates) - - def _download_backwards(self, year): - self.url = ( - "http://www.jag.navy.mil/courts/opinion_archive_%d.htm" % year - ) + :param dates: (start_date, end_date) tuple + :return None + """ + logger.info("Backscraping for range %s %s", *dates) + ts = str(datetime.now().timestamp()).replace(".", "")[:13] + start = dates[0].strftime("%Y-%m-%d") + end = dates[1].strftime("%Y-%m-%d") + params = { + "page": "1", + "page_size": "100", + "ordering": "-data__6e61b248-ef67-423e-b321-f2ed8ad05728", + "data__6e61b248-ef67-423e-b321-f2ed8ad05728__gte": start, + "data__6e61b248-ef67-423e-b321-f2ed8ad05728__lte": end, + "_": ts, + } + self.url = f"{self.base_url}?{urlencode(params)}" self.html = self._download() + self._process_html() diff --git a/juriscraper/opinions/united_states/federal_special/tax.py b/juriscraper/opinions/united_states/federal_special/tax.py index 301687dcd..3e928e5b1 100644 --- a/juriscraper/opinions/united_states/federal_special/tax.py +++ b/juriscraper/opinions/united_states/federal_special/tax.py @@ -4,31 +4,37 @@ # Neutral Citation Format (Tax Court opinions): 138 T.C. No. 1 (2012) # Neutral Citation Format (Memorandum opinions): T.C. Memo 2012-1 # Neutral Citation Format (Summary opinions: T.C. Summary Opinion 2012-1 -import json -from datetime import date, timedelta +import time +from datetime import date, datetime, timedelta +from typing import Tuple +from juriscraper.AbstractSite import logger from juriscraper.lib.string_utils import titlecase from juriscraper.OpinionSiteLinear import OpinionSiteLinear class Site(OpinionSiteLinear): + first_opinion_date = datetime(1986, 5, 1) + days_interval = 10 + base_url = "https://public-api-green.dawson.ustaxcourt.gov/public-api" + def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.set_blue_green = None - self.base = "https://public-api-green.dawson.ustaxcourt.gov/public-api" - self.url = f"{self.base}/opinion-search" + self.url = f"{self.base_url}/opinion-search" self.court_id = self.__module__ - self.td = date.today() - today = self.td.strftime("%m/%d/%Y") self.method = "GET" + self.td = date.today() + today = self.td.strftime("%m/%d/%Y") last_month = (self.td - timedelta(days=31)).strftime("%m/%d/%Y") - self.params = { + self.params = self.request["parameters"]["params"] = { "dateRange": "customDates", "startDate": last_month, "endDate": today, "opinionTypes": "MOP,SOP,TCOP", } + self.make_backscrape_iterable(kwargs) def _download(self, request_dict={}): """Download from api @@ -39,33 +45,28 @@ def _download(self, request_dict={}): :param request_dict: An empty dictionary. :return: None """ - if not self.set_blue_green and not self.test_mode_enabled(): + if self.test_mode_enabled(): + return super()._download() + + if not self.set_blue_green: check = self.request["session"].get(self.url) if check.status_code != 200: - self.base = ( + self.base_url = ( "https://public-api-blue.dawson.ustaxcourt.gov/public-api" ) - self.url = f"{self.base}/opinion-search" + self.url = f"{self.base_url}/opinion-search" self.set_blue_green = True - if self.test_mode_enabled(): - with open(self.url) as file: - self.json = json.load(file) - else: - self.json = ( - self.request["session"] - .get( - self.url, - params=self.params, - ) - .json() - ) + + return super()._download() def _process_html(self) -> None: - """Process the html + """Process the JSON response Iterate over each item on the page collecting our data. return: None """ + self.json = self.html + for case in self.json: url = self._get_url(case["docketNumber"], case["docketEntryId"]) status = ( @@ -75,7 +76,9 @@ def _process_html(self) -> None: ) self.cases.append( { - "judge": case.get("signedJudgeName", ""), + "judge": case.get( + "signedJudgeName", case.get("judge", "") + ), "date": case["filingDate"][:10], "docket": case["docketNumber"], "url": url, @@ -91,10 +94,36 @@ def _get_url(self, docket_number: str, docketEntryId: str) -> str: param docketEntryId: The docket entry id return: The URL to the PDF """ - self.url = f"{self.base}/{docket_number}/{docketEntryId}/public-document-download-url" + self.url = f"{self.base_url}/{docket_number}/{docketEntryId}/public-document-download-url" if self.test_mode_enabled(): # Don't fetch urls when running tests. Because it requires # a second api request. return self.url + pdf_url = super()._download()["url"] return pdf_url + + def _download_backwards(self, dates: Tuple[date]) -> None: + """Make custom date range request to the API + + Note that the API returns 100 results or less, so the + days_interval should be conservative + + :param dates: (start_date, end_date) tuple + :return None + """ + self.params["startDate"] = dates[0].strftime("%m/%d/%Y") + self.params["endDate"] = dates[1].strftime("%m/%d/%Y") + self._download() + logger.info( + "Backscraping for range %s %s\n%s cases found", + *dates, + len(self.json), + ) + self._process_html() + + # Using time.sleep to prevent rate limiting + # {'message': 'you are only allowed 15 requests in a 60 second window time', 'type': 'ip-limiter'} + if len(self.json) > 0: + logger.info("Sleeping for 61 seconds to prevent rate limit") + time.sleep(61) diff --git a/juriscraper/opinions/united_states/federal_special/uscfc.py b/juriscraper/opinions/united_states/federal_special/uscfc.py index 31bdb730e..017b4abdd 100644 --- a/juriscraper/opinions/united_states/federal_special/uscfc.py +++ b/juriscraper/opinions/united_states/federal_special/uscfc.py @@ -4,137 +4,86 @@ Notes: Scraper adapted for new website as of February 20, 2014. + 2024-10-23, grossir: implemented new site """ -import datetime +import json import re -from lxml import html +from juriscraper.lib.string_utils import titlecase +from juriscraper.OpinionSiteLinear import OpinionSiteLinear -from juriscraper.lib.exceptions import InsanityException -from juriscraper.lib.string_utils import ( - clean_if_py3, - convert_date_string, - titlecase, -) -from juriscraper.OpinionSite import OpinionSite +class Site(OpinionSiteLinear): + judge_regex = re.compile(r"Signed by[\w\s]+(Master|Judge)(?P.+?)\(") + other_date_regex = re.compile(r"\([Oo]riginally filed:?[\d\s/]+\)") -class Site(OpinionSite): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - self.url = "http://www.uscfc.uscourts.gov/aggregator/sources/8" - self.back_scrape_iterable = list(range(1, 4)) + self.url = "https://ecf.cofc.uscourts.gov/cgi-bin/CFC_RecentOpinionsOfTheCourt.pl" self.court_id = self.__module__ - self.today = datetime.datetime.now() + self.is_vaccine = "uscfc_vaccine" in self.court_id + + def _process_html(self): + """The site returns a page with all opinions for this time period + The opinions are inside a - - - - -ACCA - Opinions: Memorandum Opinions by Date - - - - - - -
- - - - - - - - - - - - - - - - - -
- - - - - -
Login

- -
-
- - - - - - - - - + + + - - - + - + - + - + - + + + + + + + - - - - - -


+
+
+ +
+ +
+ + + + + + + + + + + + + +
+
+ + + + + + -
04/27/201804/27/2018ARMY 20160278 - United States v. Staff Sergeant LONNIE L. PETERKIN
04/26/201804/26/2018ARMY 20160183 - United States v. Staff Sergeant JIMMY R. PERRIGIN
04/26/201804/26/2018ARMY 20160388 - United States v. Sergeant MICHAEL J. PAULINO
04/18/201804/18/2018ARMY MISC 20180088 - United States v. Sergeant COLBY S. MORRIS
04/17/201804/17/2018ARMY 20160245 - United States v. Staff Sergeant MAURICE N. JOHNSON
04/12/201804/12/2018ARMY 20160427 - United States v. Specialist JASON A. KOHLBEK
04/09/201804/09/2018ARMY 20120592 - United States v. Staff Sergeant NORMAN R. STOUT
03/30/201803/30/2018ARMY 20160267 - United States v. Sergeant First Class JEFFERY A. SINCLAIR
03/27/201803/27/2018ARMY 20150781 - United States v. Staff Sergeant HECTOR NICOLA
03/27/201803/27/2018ARMY 20150726 - United States v. Specialist STEPHEN C. MCGINN
03/01/201803/01/2018ARMY 20121100 - United States v. Private E1 CARLOS A. GONZALEZ-GOMEZ
02/28/201802/28/2018ARMY 20150447 - United States v. Captain UVO T. OGHREIKANONE
02/28/201802/28/2018ARMY 20160438 - United States v. Private First Class JEFFREY G. EUGENE
02/27/201802/27/2018ARMY 20160364 - United States v. Specialist CHARLES W. WOOD
02/27/201802/27/2018ARMY 20130331 - United States v. Private E1 BENJAMIN C. HILL
-
- -
-
- - -
-
- -

-
- - + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/acca_memorandum_example_2.compare.json b/tests/examples/opinions/united_states/acca_memorandum_example_2.compare.json deleted file mode 100644 index f7b6d6ee5..000000000 --- a/tests/examples/opinions/united_states/acca_memorandum_example_2.compare.json +++ /dev/null @@ -1,21302 +0,0 @@ -[ - { - "case_dates": "2019-09-04", - "case_names": "United States v. Private E2 DANIEL I. AVILA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/428C91FF124AFD8D8525846B00607F17/$FILE/mo-avila, di.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160200", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-28", - "case_names": "United States v. Sergeant WILLIAM T. BARKSDALE III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F9E21C9715D20120852584650047B416/$FILE/mo-barksdale, wt.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170090", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-12", - "case_names": "United States v. Private First Class JOHN A. HAYES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9996FAAD5DCFEF2B8525845500415EFE/$FILE/mo-hayes, ja.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20180165", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-09", - "case_names": "United States v. Staff Sergeant MICHAEL L. ESSARY JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6C9C2383E7A06FB5852584540056C384/$FILE/mo-essary, ml.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170556", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-09", - "case_names": "United States v. Specialist NICHOLAS J. WRIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C8CCACCE67979A7C8525845400556141/$FILE/mo-wright, nj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170486", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-11", - "case_names": "United States v. Private First Class WYATT J. ALCORN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8CC66306C99EC77C85258438006A4670/$FILE/mo-alcorn, wj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20190313", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-03", - "case_names": "United States v. Staff Sergeant THERON R. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B2034CEC96CBE4708525843200436187/$FILE/mo-williams, tr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160231", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-03", - "case_names": "United States v. Private E1 ANTONIO T. MOORE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FFED2B9367C74A33852584320043A93F/$FILE/mo-moore, at.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20180692", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-28", - "case_names": "United States v. Sergeant AARON J. WHITMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/37842DEDA1DA2D4785258432004B01F4/$FILE/mo-whitman, aj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170550", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-27", - "case_names": "United States v. Specialist BRIAN K. HOLLENBECK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6437642E6AE13E1685258432004B109F/$FILE/mo-hollenbeck, bk.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170237", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-21", - "case_names": "United States v. Private E2 CHANDLER A. MAJSTOROVIC", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D578A4601487F1B585258432004B2462/$FILE/mo-majstorovic, ca.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20180045", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-10", - "case_names": "United States v. Sergeant NORMAN L. CLARK, SR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/82263A65C051029585258417004FA886/$FILE/mo-clark, nl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170023", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-11", - "case_names": "United States v. Private First Class RYAN E. MANNAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B01BA78B6639ACDB852583DD004B9C7C/$FILE/mo-mannan, re.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170096", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-03", - "case_names": "United States v. Sergeant TERRACE L. SOLOMON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F0DEBA4D78847845852583D60055DB8E/$FILE/mo-solomon, tl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160456", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-01", - "case_names": "United States v. Specialist DRAKE S. MCANINCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ACAE523CE0B0444B852583D20043DA47/$FILE/mo-mcaninch, ds (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170091", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-28", - "case_names": "United States v. Staff Sergeant MICHAEL J. GUINN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B043532D422C8419852583D20043F217/$FILE/mo-guinn, mj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170500", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-28", - "case_names": "United States v. Private First Class GERALD R. CARTER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6713E47ED8FAA19B852583CF005F70D7/$FILE/mo-carter, gr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160770", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-22", - "case_names": "United States v. Specialist NICHOLAS S. MARCUM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4638A0B48108707D852583C900592DB0/$FILE/mo-marcum, ns.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150500", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-21", - "case_names": "United States v. Specialist WILLIAM C. GUY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6EE7DDE1B3E89CCA852583C900591A86/$FILE/mo-guy, wc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20180292", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-20", - "case_names": "United States v. Captain CHRISTOPHER S. BERGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/51F9F771E8D60B96852583C800448911/$FILE/mo-berger, cs.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170232", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-08", - "case_names": "United States v. Specialist JOSHUA D. WHITE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D34FBA1EA3896789852583BB0062631C/$FILE/mo-white, jd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170147", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-05", - "case_names": "United States v. Master Sergeant ANDREW D. STEELE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2B6210A5433CA01E852583B600569B34/$FILE/mo-steele, ad (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170303", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-05", - "case_names": "United States v. Captain RYAN F. BARRETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/518B5C526A602A6B852583B60056AFA1/$FILE/mo-barrett, rf.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170354", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-26", - "case_names": "United States v. Sergeant First Class CHRISTOPHER G. PACHECO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/645DF5BA08C703CE852583AF006C5753/$FILE/mo-pacheco, cg.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170177", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-26", - "case_names": "United States v. Private E1 DALTON C. CZAICZYNSKI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9E880FDC564B2BFB852583AF006C424C/$FILE/mo-czaiczynski, dc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170309", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-26", - "case_names": "United States v. First Lieutenant HECTOR HERNANDEZAVILES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6CAAED93A713A536852583AF006C8BFE/$FILE/mo-hernandezaviles, h.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170131", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-14", - "case_names": "United States v. Specialist FRANCIS L. BRUNETTA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C28A6799D1434B54852583A600603A2E/$FILE/mo-brunetta, fl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160697", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-13", - "case_names": "United States v. Specialist ANDREW W. BOWHALL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/27C4C0F18F77E8E9852583A600602AF5/$FILE/mo-bowhall, aw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170357", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-08", - "case_names": "United States v. Major ERIK J. BURRIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F01B14C92D480F1F8525839E00760834/$FILE/mo-burris, ej.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150047", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-05", - "case_names": "United States v. Sergeant STEVEN J. FURGERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/77DEFAED3CAAB1F58525839E0075F86A/$FILE/mo-furgerson, sj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170239", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-31", - "case_names": "United States v. Specialist MIKEL K.W. TILLMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D50B04196BB9AD8985258398004F1B14/$FILE/mo-tillman, mk.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160449", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-31", - "case_names": "United States v. Specialist JORDAN T. RODRIGUEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/165C4C30AD8362E285258398004F2E9B/$FILE/mo-rodriguez, jt.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160787", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-31", - "case_names": "United States v. Sergeant TRAVIS HERNANDEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ACCC0913C50FAD7C85258398004F43A0/$FILE/mo-hernandez, t(cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160558", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-25", - "case_names": "United States v. Specialist LONNIE L. LOVETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DF8E51BC6E0E0E9685258390004E089F/$FILE/mo-lovett, ll.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170674", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-25", - "case_names": "United States v. Specialist BRANDON L. DEASON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7EFD173EA7B0D02985258390004DF69B/$FILE/mo-deason, bl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150674", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-23", - "case_names": "United States v. Specialist HECTOR L. RODRIGUEZCORTES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/376DDEEB4BD1F3B68525838C00783C8A/$FILE/mo-rodriguezcortes, hl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170521", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-17", - "case_names": "United States v. Sergeant First Class RONDELL A. HILLIARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BF008986CC12A1418525838A00766401/$FILE/mo-hilliard, ra.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170377", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-10", - "case_names": "United States v. Captain ADAM J. MYER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C6605819D55B8F0485258383005C0737/$FILE/mo-myer, aj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160490", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-07", - "case_names": "United States v. Staff Sergeant MATTHEW A. REYES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/666EC06596768AB08525837D0047A027/$FILE/mo-reyes, ma.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170198", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-07", - "case_names": "United States v. Captain KEVIN W. BEER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A94627F76A8C0D2F8525837D004805ED/$FILE/mo-beer, kw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160659", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-28", - "case_names": "United States v. Chief Warrant Officer Two LAMONT S. JESSIE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AFDCA1097E0BCE06852583760054BC23/$FILE/mo-jessie, ls (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160187", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-27", - "case_names": "United States v. FRANCISCO C. LARA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B527FBA13EBF087185258374004FF2DA/$FILE/mo-lara, fc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170025", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-21", - "case_names": "United States v. Private First Class DESTRO M. DELA PENA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A226C580FB8A15B385258374004FBEE4/$FILE/mo-dela pena, dm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170534", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-07", - "case_names": "United States v. Major ERIK J. BURRIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A82E43648E44A7C58525835F005EE822/$FILE/mo-burris, ej.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150047", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-04", - "case_names": "United States v. Private E1 WILLIAM A. COLLINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B58CBF7D4F6521008525835F005EF821/$FILE/mo-collins, wa.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170032", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-30", - "case_names": "United States v. Specialist MALCOLM R. TURNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/741D6425B5EC9EE5852583580059B0DF/$FILE/mo-turner, mr (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160131", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-30", - "case_names": "United States v. Captain RICHARD M. CAMACHO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F8BD0E37FDFD935485258358006A9E52/$FILE/mo-camacho, rm (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140495", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-26", - "case_names": "United States v. Specialist WILLIAM P. MOYNIHAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B86F9B08F903E0AD8525835400465EB0/$FILE/mo-moynihan, wp.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130855", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-16", - "case_names": "United States v. Specialist VICTOR J. FERNANDEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/29A6087C0E57A5C78525834C0067577F/$FILE/mo-fernandez, vj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160688", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-30", - "case_names": "United States v. Major JASON A. SCOTT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/80A39A9B815A95AB8525833800491B69/$FILE/mo-scott, ja.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170242", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-26", - "case_names": "United States v. Staff Sergeant LAWRENCE P. MUSCAT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DB2B2937B563EF698525833600549D76/$FILE/mo-muscat, lp.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160534", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-26", - "case_names": "United States v. Master Sergeant JOHN T. LONG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EE73129C8B33D0D2852583360054F640/$FILE/mo-long, jt.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150160", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-26", - "case_names": "United States v. Captain KEVIN W. BEER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2B99E6076A6E25058525833600581820/$FILE/mo-beer, kw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160659", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-23", - "case_names": "United States v. Private E2 DANIEL I. AVILA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C9BDC9D6B425630E8525833600558292/$FILE/mo-avila, di.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160200", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-22", - "case_names": "United States v. Specialist CHASTIN L. WALKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/36308417012526538525833000472726/$FILE/mo-walker, cl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160239", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-16", - "case_names": "United States v. Specialist TERENCE K. TAYLOR, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5287B4715B11F25E8525832E004B8136/$FILE/mo-taylor, tk (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160744", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-12", - "case_names": "United States v. Private E2 VINCENT MATTHEW B. MACARIO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/15B877C162DD4B7D852583280050056E/$FILE/mo-macario, mb (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160760", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-05", - "case_names": "United States v. Specialist COREY N. WALL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C660076F08F23BA18525832100490718/$FILE/mo-wall, cn (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160235", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-02", - "case_names": "United States v. Sergeant ROBERT L. ATKINSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5D346F8FC4E9714C8525831B005132B8/$FILE/mo-atkinson, rl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160634", - "case_name_shorts": "" - }, - { - "case_dates": "2018-09-28", - "case_names": "United States v. Staff Sergeant ROGER J. RAMIREZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E6858F2755CF162E8525831A0043D0D4/$FILE/mo-ramirez, rj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160599", - "case_name_shorts": "" - }, - { - "case_dates": "2018-09-28", - "case_names": "United States v. Sergeant First Class BILLY J. SMITH JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7DA717D79B81D95F8525831A0043E8C2/$FILE/mo-smith, bj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160049", - "case_name_shorts": "" - }, - { - "case_dates": "2018-09-26", - "case_names": "United States v. Sergeant First Class AARON D. KELLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DF25D164EDBC1DC885258315005C0B02/$FILE/mo-keller, ad.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150619", - "case_name_shorts": "" - }, - { - "case_dates": "2018-09-25", - "case_names": "United States v. Sergeant DAVID R. MCHUGH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/158360D914BE181685258315005CC27A/$FILE/mo-mchugh, dr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160647", - "case_name_shorts": "" - }, - { - "case_dates": "2018-09-19", - "case_names": "United States v. Sergeant CHRISTOPHER A. PAFFORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EC300B93D852B1288525830D005C33EC/$FILE/mo-pafford, ca.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170057", - "case_name_shorts": "" - }, - { - "case_dates": "2018-09-17", - "case_names": "United States v. Specialist JEREMY N. NAVARETTE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B587D0FDACAEEED18525830D00442569/$FILE/mo-navarette, jn.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160786", - "case_name_shorts": "" - }, - { - "case_dates": "2018-09-14", - "case_names": "United States v. Captain JACK K. NORRIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/46D483F5F31755E18525830D0044367C/$FILE/mo-norris, jk (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160262", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-30", - "case_names": "United States v. Master Sergeant OMAR A. VELEZ-PAGAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6ECF438E85A967EB852582FA004DA16A/$FILE/mo-velez-pagan, oa.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160209", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-24", - "case_names": "United States v. Sergeant LEROY STRAKER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7B9A6BB530858013852582F600464034/$FILE/mo-straker, l.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160476", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-24", - "case_names": "United States v. Private First Class ABELARDO GONZALEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/71D829382984465B852582F600462EB1/$FILE/mo-gonzalez, ab.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170118", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-22", - "case_names": "United States v. Captain BRADY B. SIMPKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/54D32BEE97E4149A852582F600465428/$FILE/mo-simpkins, bb.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160263", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-16", - "case_names": "United States v. Private E2 NICHOLAS E. DAVIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A4C3A6E2B6B491A7852582EF0048D278/$FILE/mo-davis, ne.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160069", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-14", - "case_names": "United States v. Private First Class NATHANIEL E. ALLEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7F530E0AF0769B20852582EA0046CF64/$FILE/mo-allen, ne.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20180285", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-10", - "case_names": "United States v. Sergeant LOUIS R. QUILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1A52F3996CDC5ABC852582E80049D1D5/$FILE/mo-quill, lr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160454", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-10", - "case_names": "United States v. Private E2 OMAR A. HERNANDEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/24AE3831FD97DC81852582E80049E6A6/$FILE/mo-hernandez, oa.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160217", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-07", - "case_names": "United States v. Specialist CHRISTOPHER H. MEREDITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D6A04A94CA1AA6B7852582E300493207/$FILE/mo-meredith, ch.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170178", - "case_name_shorts": "" - }, - { - "case_dates": "2018-07-19", - "case_names": "United States v. Specialist JUVENTINO TOVARCHAVEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4D571593DE40D5CE852582D4004AA250/$FILE/mo-tovarchavez, j.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150250", - "case_name_shorts": "" - }, - { - "case_dates": "2018-07-13", - "case_names": "United States v. Sergeant First Class DAVID E. BLACK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0290789F0F9E39AD852582CF004F0EE3/$FILE/mo-black, de.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170140", - "case_name_shorts": "" - }, - { - "case_dates": "2018-07-03", - "case_names": "United States v. Private E1 ADRIAN GONZALEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/381B5086F3D2E189852582C20065F6CE/$FILE/mo-gonzalez, a.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160363", - "case_name_shorts": "" - }, - { - "case_dates": "2018-07-02", - "case_names": "United States v. Colonel JAMES C. LAUGHREY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1E63484BC5A87B85852582BF005001F1/$FILE/mo-laughrey, jc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160146", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-29", - "case_names": "United States v. Sergeant First Class AARON D. JESKO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C2C308E109E24A57852582BF004F39AF/$FILE/mo-jesko, ad.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160439", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-28", - "case_names": "United States v. Staff Sergeant CALVIN R. GIBBS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6EC2C8161F880052852582BF004EAC35/$FILE/mo-gibbs, cr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110998", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-22", - "case_names": "United States v. Staff Sergeant SCOTT E. MORGAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/811385789E90EFD8852582B8005BCD11/$FILE/mo-morgan, se.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160573", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-22", - "case_names": "United States v. Sergeant MARIO I. LOPEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/72D5B19440F0AF47852582B80059EE4A/$FILE/mo-lopez, mi.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140973", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-22", - "case_names": "United States v. Private E1 VICTOR D. WILSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B66EA97EF386035B852582B8005A57E9/$FILE/mo-wilson, vd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160342", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-07", - "case_names": "United States v. Chief Warrant Officer Three CASEY B. ROBERTS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8E83A4F7ED7A8FCE852582A6006446B0/$FILE/mo-roberts, cb.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150023", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-30", - "case_names": "United States v. Specialist NICHOLAS L. FROST", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D68E71F02C83EF758525829E004E9A62/$FILE/mo-frost, nl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160171", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-25", - "case_names": "United States v. Sergeant First Class JAMES E. HOPKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3DF17A965F90DD458525829C0046773C/$FILE/mo-hopkins, je.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140913", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-24", - "case_names": "United States v. Private First Class CORNELL HURLEY JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B7379ABEE654ED6585258298003F052A/$FILE/mo-hurley, c.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160122", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-17", - "case_names": "United States v. Private First Class CEDRIC L. MCDONALD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F8136954085D3A4A852582900053F934/$FILE/mo-McDonald, c.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160339", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-30", - "case_names": "United States v. Major ANTIWAN HENNING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/34BEC3CFD650FEAD852582810061DA63/$FILE/mo-henning, a.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160572", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-27", - "case_names": "United States v. Staff Sergeant LONNIE L. PETERKIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E065C9E6C4C705358525827F004FC65B/$FILE/mo-peterkin, ll.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160278", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-26", - "case_names": "United States v. Staff Sergeant JIMMY R. PERRIGIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4F316E5D6FA155708525827C005AB0F8/$FILE/mo-perrigin, jr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160183", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-26", - "case_names": "United States v. Sergeant MICHAEL J. PAULINO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/24B28C11D63D6A0C8525827C005AA3C5/$FILE/mo-paulino, mj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160388", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-18", - "case_names": "United States v. Sergeant COLBY S. MORRIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4EB8F0B5C33027C18525827300690B47/$FILE/mo-morris, cs.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20180088", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-17", - "case_names": "United States v. Staff Sergeant MAURICE N. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3C883D16549740A385258273006936AF/$FILE/mo-johnson, mn.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160245", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-12", - "case_names": "United States v. Specialist JASON A. KOHLBEK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B711B7A19DEEA3918525826E00633E22/$FILE/mo-kohlbek, ja.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160427", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-09", - "case_names": "United States v. Staff Sergeant NORMAN R. STOUT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FD8CA6770733902D8525826C006B93D1/$FILE/mo-stout, nr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120592", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-30", - "case_names": "United States v. Sergeant First Class JEFFERY A. SINCLAIR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0E8DB873AAD6AFF585258263004857AB/$FILE/mo-sinclair, ja.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160267", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-27", - "case_names": "United States v. Staff Sergeant HECTOR NICOLA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AAACE9E6CA0684EC8525825F0044C8AE/$FILE/mo-nicola, h.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150781", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-27", - "case_names": "United States v. Specialist STEPHEN C. MCGINN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A06D6D5DDFFC50F88525825E005F1BB4/$FILE/mo-mcginn, sc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150726", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-01", - "case_names": "United States v. Private E1 CARLOS A. GONZALEZ-GOMEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B5EDFA5E2574886885258247004B6F72/$FILE/mo-gonzalez-gomez, ca.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20121100", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-28", - "case_names": "United States v. Private First Class JEFFREY G. EUGENE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/01FCDFE0661452FF852582480059C4A1/$FILE/mo-eugene, jg (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160438", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-28", - "case_names": "United States v. Captain UVO T. OGHREIKANONE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2E63026A8217118D85258247004B21A9/$FILE/mo-oghreikanone, ut.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150447", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-27", - "case_names": "United States v. Specialist CHARLES W. WOOD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D44E1E37C0BA2F8185258247004B0F03/$FILE/mo-wood, cw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160364", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-27", - "case_names": "United States v. Private E1 BENJAMIN C. HILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/19714E91C2985A6685258247004AD7F5/$FILE/mo-hill, bc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130331", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-16", - "case_names": "United States v. Sergeant DWIGHT D. HARRIS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A8C9FB3B7B610CFB8525823B00653F4A/$FILE/mo-harris, dd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20131045", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-16", - "case_names": "United States v. Private E2 ANTHONY M. BODOH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/101E079C4827C7978525823B006445A2/$FILE/mo-bodoh, am.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150218", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-31", - "case_names": "United States v. Private First Class ROBERT C. DELMASTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/69AABB061B6FEED38525822700482BDA/$FILE/mo-delmaster, rc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150593", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-29", - "case_names": "United States v. Specialist SCOTT W. KOCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A016C2DB03ADD4418525822600515835/$FILE/mo-koch, sw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160107", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-29", - "case_names": "United States v. Specialist ROBERTO FLORES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F958E567022F93D08525822700489D70/$FILE/mo-flores, r.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160252", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-29", - "case_names": "United States v. Sergeant First Class ALVIN W. BRADLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1240839F515D735D8525822B00569016/$FILE/mo-bradley, aw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150752", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-23", - "case_names": "Sergeant THOMAS M. ADAMS v. Colonel J. HARPER COOK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3C92AF8B7EB58A7A85258224004977CC/$FILE/mo-adams, tm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20170581", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-16", - "case_names": "United States v. Specialist JORDAN T. ELIE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/42D65CB32D7096378525821A004AF756/$FILE/mo-elie, jt.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160112", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-28", - "case_names": "United States v. Sergeant First Class RONALD S. NAGY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/71E637AF6F364598852582090053E7CC/$FILE/mo-nagy, rs.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140352", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-20", - "case_names": "United States v. Sergeant First Class MANUEL ORTIZ, III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/89F8D9E521C12C018525820900542233/$FILE/mo-ortiz, m.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150267", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-14", - "case_names": "United States v. Private E2 JAMES B. HENDRIX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1B7A481B5584841F852581FB0058DE02/$FILE/mo-hendrix, jb (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20170439", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-30", - "case_names": "United States v. Specialist WILLIAM P. MOYNIHAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1A28D162EC83DAFE852581ED0058D277/$FILE/mo-moynihan, wp.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130855", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-30", - "case_names": "United States v. Specialist ROBERT S. AVERY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5868101D89F673ED852581EC0077B675/$FILE/mo-avery, rs.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140202", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-30", - "case_names": "United States v. Private First Class MITCHELL L. BRANTLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CE6DACB5440F6B54852581EC007747E5/$FILE/mo-brantley, ml.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150199", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-28", - "case_names": "United States v. Staff Sergeant RUDY L. RIVERA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4DAC9A113D10F091852581EC007CC906/$FILE/mo-rivera, rl (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160393", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-22", - "case_names": "United States v. Private E1 JAMESON T. HAZELBOWER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0F53867F36987634852581E5004CB24B/$FILE/mo-hazelbower, jt.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150335", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-21", - "case_names": "United States v. Specialist LUIS J. ALVIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/99817E11AF654F0C852581E5004C67E8/$FILE/mo-alvin, lj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150353", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-08", - "case_names": "United States v. Specialist RILEY W. COLLIER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E0D1CBDEA89D0E27852581D300498F8C/$FILE/mo-collier, rw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160447", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-06", - "case_names": "United States v. Specialist ANDREW J. CRISWELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/32522CBBD4B51B4E852581D1006D3713/$FILE/mo-criswell, aj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150530", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-03", - "case_names": "United States v. Specialist NELS F. JACKSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E839CF99E42F3D94852581D1006C8BFF/$FILE/mo-jackson, nf.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120159", - "case_name_shorts": "" - }, - { - "case_dates": "2017-10-06", - "case_names": "United States v. Staff Sergeant GABRIEL C. GARCIA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EDBC564F126769D9852581B60065BE4C/$FILE/mo-garcia, gc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130660", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-28", - "case_names": "United States v. Staff Sergeant JOHN T. COWAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/028A633881463945852581AD00545237/$FILE/mo-cowan, jt.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160031", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-27", - "case_names": "United States v. Staff Sergeant ROBERT BALES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D02B240AC01DADE9852581A900658471/$FILE/mo-bales, r.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130743", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-27", - "case_names": "United States v. Specialist AVERY J. SUAREZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5424D83ABDB36EE2852581A9006FCDAF/$FILE/mo-suarez, aj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20170366", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-22", - "case_names": "United States v. Staff Sergeant TIMOTHY D. WORLDS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/58566A3F148C8BFD852581A60050F23F/$FILE/mo-worlds, td.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150134", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-07", - "case_names": "United States v. Specialist JUVENTINO TOVARCHAVEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E9735A0F0140DD9F8525819900647B14/$FILE/mo-tovarchavez, j.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150250", - "case_name_shorts": "" - }, - { - "case_dates": "2017-08-31", - "case_names": "United States v. Sergeant RAYMOND P. PASAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/87F0AAD7CA18A05E8525818E00580C9D/$FILE/mo-pasay, rp (recon).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140930", - "case_name_shorts": "" - }, - { - "case_dates": "2017-08-29", - "case_names": "United States v. Specialist JUSTIN P. SWIFT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E809B6A23F0657D78525818C006785F9/$FILE/mo-swift, jp (remand).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100196", - "case_name_shorts": "" - }, - { - "case_dates": "2017-08-18", - "case_names": "United States v. Staff Sergeant RICARDO E. CHINCHILLA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1001BDCFDA24500C852581840057C48F/$FILE/mo-chinchilla, re.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150266", - "case_name_shorts": "" - }, - { - "case_dates": "2017-08-18", - "case_names": "United States v. Private First Class ALEXANDER E. DENSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/57FD17703741306B852581840058B254/$FILE/mo-denson, ae.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150137", - "case_name_shorts": "" - }, - { - "case_dates": "2017-08-18", - "case_names": "United States v. Captain JOHN W. LONIAK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A3EAA4BE686425A18525818400573B29/$FILE/mo-loniak, jw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150835", - "case_name_shorts": "" - }, - { - "case_dates": "2017-07-17", - "case_names": "United States v. Staff Sergeant ANGEL M. SANCHEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4CD8370C5D4A50E285258161005468EF/$FILE/mo-sanchez, am (recon).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140735", - "case_name_shorts": "" - }, - { - "case_dates": "2017-07-13", - "case_names": "United States v. Sergeant MARCELL T. BUNCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1F6BCF03CEE2559E85258161005412A2/$FILE/mo-bunch, mt.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160197", - "case_name_shorts": "" - }, - { - "case_dates": "2017-07-03", - "case_names": "United States v. Specialist CEZAR M. LAZCANO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1179E5DB19E677A985258154005FF0CB/$FILE/mo-lazcano, cm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150354", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-30", - "case_names": "United States v. Private E2 EMILIO J. SCHELMETTY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/602936A0695ECF3385258152006001A6/$FILE/mo-schelmetty, ej (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150488", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-27", - "case_names": "United States v. Private First Class JASON A. CLOSE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CF6A63A61BFAE36D8525814E006C5707/$FILE/mo-close, ja.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140984", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-27", - "case_names": "United States v. First Lieutenant CLINT A. LORANCE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/331E0265DC59E54F8525814E006BA1DC/$FILE/mo-lorance, ca.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130679", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-16", - "case_names": "United States v. Staff Sergeant JERRY D. CLEVELAND", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C3671FDFB10E8E0085258144005439F7/$FILE/mo-cleveland, jd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20170268", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-16", - "case_names": "United States v. Sergeant MONTRELL L. MAYO (ORDER)", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B1A50D32A925BAD985258147007373CA/$FILE/or-mayo, ml.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140901", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-16", - "case_names": "United States v. Private E1 ADEN J. SCHRADER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0CE65DB5C6C4FFB88525814400539AD3/$FILE/mo-schrader, aj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150744", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-15", - "case_names": "United States v. Private First Class CHRISTOPHER E. CHRISTENSEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FC3A5AE7DF35DAC98525814400531F2A/$FILE/mo-christensen, ce.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140372", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-13", - "case_names": "United States v. Sergeant JOSEPH C. BOZICEVICH, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B96ABF3F4C3FFAB48525813F005AC90E/$FILE/mo-bozicevich, jc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110683", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-13", - "case_names": "United States v. Private E1 PIERRE C. T. SCOTT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F96B576C771D4FDD8525813F005B1305/$FILE/mo-scott, pc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150157", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-31", - "case_names": "United States v. Private First Class PATRICK A. BATTLES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4F5A5A273CAC1202852581320067AD4B/$FILE/mo-battles, pa.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140399", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-26", - "case_names": "United States v. Warrant Officer One TONY L. BISHOP", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/814C37BC874B128185258130004ED6C0/$FILE/mo-bishop, tl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150441", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-25", - "case_names": "United States v. Private First Class JACOB R. GRANT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E979620F6DF092928525812C005F79F6/$FILE/mo-grant, jr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150572", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-24", - "case_names": "United States v. Captain JAMES H. LEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/61E927B5D22B20008525812B0064FE18/$FILE/mo-lee, jh.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140309", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-22", - "case_names": "United States v. Sergeant First Class LAWSON L. HO-SHING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6A4759E58FD97412852581290074F560/$FILE/mo-ho-shing, ll.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150167", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-17", - "case_names": "United States v. Sergeant ORVAL W. GOULD, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2ED5B0851EC2E72D85258124005A0711/$FILE/mo-gould, ow.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120727", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-17", - "case_names": "United States v. Major WILLIAM G. INMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3C707C68E0A1C0AD852581240059A266/$FILE/mo-inman, wg (dofr).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150042", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-08", - "case_names": "United States v. Major ERIK J. BURRIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/51ED0CD9E92AEA378525811B0047010D/$FILE/mo-burris, ej.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150047", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-02", - "case_names": "United States v. Specialist KRISTOPHER M. HADLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1523355A9CC790E685258115006789A0/$FILE/mo-hadley, km.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150766", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-25", - "case_names": "United States v. Specialist DURELL J. STEWART", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/363819DCA17AB50F8525810E0074CA0D/$FILE/mo-stewart, dj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160128", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-25", - "case_names": "United States v. Sergeant PATRICK L. CLARK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EE993EF6E6E576708525810E007520C1/$FILE/mo-clark, pl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160121", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-20", - "case_names": "United States v. Sergeant First Class JOHN F. SELLERS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D8FE76FA0AB4F45A8525810C004DEB96/$FILE/mo-sellers, jf.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150045", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-19", - "case_names": "United States v. Sergeant RAYMOND P. PASAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/17B8C2EA41904A9F85258108007414D0/$FILE/mo-pasay, rp.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140930", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-07", - "case_names": "United States v. Sergeant MONTRELL L. MAYO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6ACDD22513B9E639852580FE005EC37F/$FILE/mo-mayo, ml.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140901", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-07", - "case_names": "United States v. Sergeant ANTHONY J. PATTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C88A1AB8E98D8107852580FE005F1E43/$FILE/mo-patton, aj (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150675", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-06", - "case_names": "United States v. Private E1 JEREMIAH D. HILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BF907BE9FEDE16FA852580FE005DEF3E/$FILE/mo-hill, jd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150310", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-03", - "case_names": "United States v. Private First Class DUSTIN L. STARNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E8BFD992E14BD47E852580F8006E99B6/$FILE/mo-starner, dl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140370", - "case_name_shorts": "" - }, - { - "case_dates": "2017-03-29", - "case_names": "United States v. Private First Class WILLIE J. BOSTICK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7034F50B95A61058852580F300663AED/$FILE/mo-bostick, wj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140880", - "case_name_shorts": "" - }, - { - "case_dates": "2017-03-28", - "case_names": "United States v. Staff Sergeant ANGEL M. SANCHEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C859D1ABB273F6B3852580F2004C7D54/$FILE/mo-sanchez, am.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140735", - "case_name_shorts": "" - }, - { - "case_dates": "2017-03-23", - "case_names": "United States v. Staff Sergeant ANTONIO T. MOORE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3D0EDD69BA16329E852580F0006B4F2B/$FILE/mo-moore, at.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140875", - "case_name_shorts": "" - }, - { - "case_dates": "2017-03-22", - "case_names": "United States v. Specialist JEFFERSON C. WASHINGTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7C1D89566743E9F1852580EC006308F6/$FILE/mo-washington, jc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150096", - "case_name_shorts": "" - }, - { - "case_dates": "2017-03-14", - "case_names": "United States v. Specialist DAKOTA A. BRAGAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/74A60A3FF1EA4627852580E500753EC9/$FILE/mo-bragan, da.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160124", - "case_name_shorts": "" - }, - { - "case_dates": "2017-03-13", - "case_names": "United States v. Staff Sergeant TIMOTHY R. SLACK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/780FD395F5FEF008852580E40067C1C2/$FILE/mo-slack, tr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150352", - "case_name_shorts": "" - }, - { - "case_dates": "2017-03-01", - "case_names": "United States v. Specialist CASEY A. PHILLIPS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BF1004DD164A2029852580D7006C06D8/$FILE/mo-phillips, ca.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150373", - "case_name_shorts": "" - }, - { - "case_dates": "2017-03-01", - "case_names": "United States v. Sergeant RANDY L. SIMPSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7B96C40B6E91FAF0852580D7006C55EF/$FILE/mo-simpson, rl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140126", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-28", - "case_names": "United States v. Specialist JORDAN M. PETERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0D175A552A0AA422852580D60075EF9D/$FILE/mo-peters, jm (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110057", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-06", - "case_names": "United States v. Private E-2 COREY J. ROBINSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8F47B14C3AD4EBE5852580C600566639/$FILE/mo-robinson, cj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150088", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-30", - "case_names": "United States v. Staff Sergeant WILLIAM L. MITCHAM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/60AA473B0DB45F48852580B9004D5DA0/$FILE/mo-mitcham, wl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140969", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-23", - "case_names": "United States v. Private First Class MICHAEL A. UPDEGROVE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AECDA632B8CFE472852580B200683316/$FILE/mo-updegrove, ma.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160166", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-23", - "case_names": "United States v. Private First Class JOSEPH B. CAMPBELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8BC3A56FCB0CA98E852580B2006826F4/$FILE/mo-campbell, jb.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140305", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-17", - "case_names": "United States v. Specialist HARRY J. CIBOROWSKI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BF4D13D377D92947852580AD0054B0D6/$FILE/mo-ciborowski, hj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150544", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-29", - "case_names": "United States v. Private First Class ERICK A. MEDRANO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/011682599482F9348525809D007F1197/$FILE/mo-medrano, ea.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140167", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-23", - "case_names": "United States v. Staff Sergeant FRANCISCO LARA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B897247F2DBA47668525809D007F66E7/$FILE/mo-lara, f (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20160776", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-21", - "case_names": "United States v. Captain DWAYNE M. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/61689B228B73AED185258091005C7C62/$FILE/mo-williams, dm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 987654321", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-19", - "case_names": "United States v. Specialist ANTHONY T. DAVENPORT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C04ED9FAB83061708525808F0065FF95/$FILE/mo-davenport, at.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150322", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-14", - "case_names": "United States v. Private First Class THOMAS A. CHESTNUT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ECD206623C8EF83C8525808A00597388/$FILE/mo-chestnut, ta.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140547", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-13", - "case_names": "United States v. Specialist LAURO P. FRANCISCO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/20F361BA7E15D7BD8525808A005986C7/$FILE/mo-francisco, lp.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140541", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-02", - "case_names": "United States v. Sergeant RANDON P. MAZZIE, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/894E0450A50F8A4085258080007A6CA0/$FILE/mo-mazzie, rp.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140923", - "case_name_shorts": "" - }, - { - "case_dates": "2016-11-30", - "case_names": "United States v. Staff Sergeant WILLIAM L. MITCHAM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4BE98721C3587C3A8525807C0075F612/$FILE/mo-mitcham, wl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140969", - "case_name_shorts": "" - }, - { - "case_dates": "2016-11-30", - "case_names": "United States v. Major DAVID L. JERKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D6050603DBB60BD48525807C00760F40/$FILE/mo-jerkins, dl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140071", - "case_name_shorts": "" - }, - { - "case_dates": "2016-11-28", - "case_names": "United States v. Private E1 JOSHUA A. MARKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/022256767519A3E38525807A006455FB/$FILE/mo-marks, ja.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150428", - "case_name_shorts": "" - }, - { - "case_dates": "2016-11-18", - "case_names": "United States v. Private E1 ISAAC G. AGUIGUI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8434F68339BE457E8525807300586EAE/$FILE/mo-aguigui, ig (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140260", - "case_name_shorts": "" - }, - { - "case_dates": "2016-11-18", - "case_names": "United States v. Major GARY S. OSCAR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A1E33FB10C4886A18525807300585224/$FILE/mo-oscar, gs.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140445", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-31", - "case_names": "United States v. Specialist MARTELO C. NELSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C6474C15ED5F67968525805E004F2BB9/$FILE/mo-nelson, mc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140758", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-28", - "case_names": "United States v. Specialist ADRIAN E. SOSA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/691D00D04C8C922A8525805D0053A376/$FILE/mo-sosa, ae.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140869", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-26", - "case_names": "United States v. Specialist ANTIONE D. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3DB910A9DC3635D48525805900533BE8/$FILE/mo-williams, ad.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130446", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-24", - "case_names": "United States v. Sergeant First Class PAUL E. THOMAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D6072B9C59AC4F9C85258057006D7454/$FILE/mo-thomas, pe.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150269", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-20", - "case_names": "United States v. Private First Class SHAWN S. KEEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F1EA12D70B259B8785258057006A4A73/$FILE/mo-keen, ss.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150168", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-20", - "case_names": "United States v. First Lieutenant NATHANEAL H. RAMOS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5984BCD9AD341A5F85258057006A8E24/$FILE/mo-ramos, nh.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140475", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-30", - "case_names": "United States v. Sergeant First Class CHARLES BONILLA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ABD4F53388521FD685258041006A8959/$FILE/mo-bonilla, c.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20131084", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-30", - "case_names": "United States v. Private E1 ANTHONY V. SANTUCCI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ACA2784F3468036785258041006A96F1/$FILE/mo-santucci, av (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140216", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-29", - "case_names": "United States v. Staff Sergeant TIMOTHY A. SKAGGS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1A9912734CDCB55E8525803E005FB8FC/$FILE/mo-skaggs, ta.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140099", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-29", - "case_names": "United States v. Staff Sergeant MARCUS V. DAVIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FA73953D807067A28525803E005FAE82/$FILE/mo-davis, mv.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150100", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-25", - "case_names": "United States v. Specialist PHILLIP L. WIGLITTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F63E1D90290CC7AA85258034007153F0/$FILE/mo-wiglitton, pl (recon).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140638", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-09", - "case_names": "United States v. Private E1 SEAN D. THOMAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1D86E492D3ACEA708525802C0065BEAD/$FILE/mo-thomas, sd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150205", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-24", - "case_names": "United States v. Sergeant GARRETT B. SINGLETON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/03E2EF4BB11A0E1C8525801A0052C100/$FILE/mo-singleton,gb.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150099", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-24", - "case_names": "United States v. Lieutenant Colonel SEAN M. AHERN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/258E52DD05C2627F8525801A0052D2F5/$FILE/mo-ahern, sm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130822", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-22", - "case_names": "United States v. Staff Sergeant FRANCISCO I. NAREWSKI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/416504DD4EDB85CA85258019006191FF/$FILE/mo-narewski, fi.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140080", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-22", - "case_names": "United States v. Private E-2 JEFFRY A. FELICIANO, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/88F398EDAB8924768525801900615340/$FILE/mo-feliciano, ja.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140766", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-16", - "case_names": "United States v. Specialist CHRISTOPHER B. HUKILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3BE508B78E8F611785258017006CFC67/$FILE/mo-hukill, cb (dofur).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140939", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-15", - "case_names": "United States v. Specialist JOSHUA A. TANKERSLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/26685B04E92FCCEB85258017006CCA7D/$FILE/mo-tankersley, ja.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140074", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-12", - "case_names": "United States v. Private E-2 TIMOTHY J. MURPHY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1DFA314227E653D485258017006C8146/$FILE/mo-murphy, tj (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130333", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-09", - "case_names": "United States v. Specialist KYLE D. RICH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2D050EABDB7028E58525800B0060FB01/$FILE/mo-rich, kd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130805", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-09", - "case_names": "United States v. Specialist CHRISTOPHER B. HUKILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/24523536D56C79CA8525800B0060EB00/$FILE/mo-hukill, cb.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140939", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-05", - "case_names": "United States v. Sergeant ORVAL W. GOULD, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DAAEFDFAA700464885258009006D4D33/$FILE/mo-gould, ow.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120727", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-04", - "case_names": "United States v. Sergeant TOMMIE E. CRUMEDY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F9AF89BBFCA3E60F852580060066BD64/$FILE/mo-crumedy, te.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140128", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-03", - "case_names": "United States v. Private E2 QUINCY C. BROADEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9B152D222051BC4785258005006BA450/$FILE/mo-broaden, qc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150414", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-29", - "case_names": "United States v. Private First Class KARINA FLORES-SANTOS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/214868D79F6757BA85258003006AE492/$FILE/mo-flores-santos, ka (recon).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140066", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-26", - "case_names": "United States v. Private E-1 JASMINE S. HERCULES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/59C1E3B05CBB320785257FFD0050A20E/$FILE/mo-hercules, js.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150197", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-21", - "case_names": "United States v. Staff Sergeant SAMUEL A. WRIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4881FE5AB128EAFB85257FF80068F9BE/$FILE/mo-wright, sa.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130296", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-30", - "case_names": "United States v. Private (E-1) ZACHARY A. BENNETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/84599DDF40ACCBE485257FE70063B74A/$FILE/mo-bennett, za.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20121072", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-28", - "case_names": "United States v. Specialist MATTIE L. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/432EB8E2E7EACA8785257FE200608D82/$FILE/mo-brown, ml.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140346", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-28", - "case_names": "United States v. Sergeant MICHAEL W. SCHAEFER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5B61DA9CED35B74A85257FE200611798/$FILE/mo-schaefer, mw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140245", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-23", - "case_names": "United States v. Major WILLIAM G. INMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6068AE885281AEEF85257FDC0064E1E5/$FILE/mo-inman, wg (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150042", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-22", - "case_names": "United States v. Specialist BRAEDEN J. TORGENSEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1D26B3D95040BD7185257FDB007AB3E0/$FILE/mo-torgensen, bj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150356", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-22", - "case_names": "United States v. Major FRANCISCO I. GUMATAOTAO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DF452A1E9FF0FF9B85257FDB007AE079/$FILE/mo-gumataotao, fi.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150765", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-20", - "case_names": "United States v. Specialist TRAVIS L. GALLEGOS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1A3D1384E568A2E185257FD90076329F/$FILE/mo-gallegos, tl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130926", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-16", - "case_names": "United States v. Staff Sergeant DEONTE M. SINGLETERY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/63C2C6DA83906AB085257FD50071E426/$FILE/mo-singletery, dm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140686", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-13", - "case_names": "United States v. Specialist PHILLIP L. WIGLITTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/188AE436058B652485257FD3006E997E/$FILE/mo-wiglitton, pl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140638", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-31", - "case_names": "United States v. Specialist SHAWN C. CLARK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0A4666516BA3B6E685257FC500718943/$FILE/mo-clark, sc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140252", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-31", - "case_names": "United States v. Private E1 BRYANT K. MARSH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/716D1A617AD3154885257FC5007231F8/$FILE/marsh, bk.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120572", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-26", - "case_names": "United States v. Private First Class MATTHEW N. WATKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/370A827D0F79432C85257FC50072821D/$FILE/mo-watkins, mn.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140275", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-20", - "case_names": "United States v. Private First Class RICHARD T. MANRIQUEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/31026782CE08D48285257FBC005399AD/$FILE/mo-manriquez, rt.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140893", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-13", - "case_names": "United States v. Staff Sergeant MARK V. ODIE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3E93148499633BDC85257FB7005265EA/$FILE/mo-odie, mv.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130122", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-13", - "case_names": "United States v. Private First Class H. COHEN BAKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8C620B5D2A48F8FA85257FB70052824B/$FILE/mo-baker, c.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140396", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-05", - "case_names": "United States v. Specialist JOSEPH R. WILSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/824C621D66381D0B85257FAE007159B9/$FILE/mo-wilson, jr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130601", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-04", - "case_names": "United States v. Major WILLIAM G. INMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/08C5E2629C2E368185257FAE00714C08/$FILE/mo-inman, wg.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150042", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-29", - "case_names": "United States v. Sergeant First Class JASON M. COMMISSO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A1A13994925C7BD485257FA70064BB1B/$FILE/mo-commisso, jm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140205", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-29", - "case_names": "United States v. Private First Class JARRID R. LOVETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3277BBE18F17D43F85257FA70063F0D7/$FILE/mo-lovett, jr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140580", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-29", - "case_names": "United States v. Private First Class CORLEY Z. BLACK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3E37F9A0F5CAF5BC85257FA700647397/$FILE/mo-black, cz.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140010", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-29", - "case_names": "United States v. Captain LAITH G. COX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7A268EBEF7F077E585257FA700638601/$FILE/mo-cox, lg.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130923", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-28", - "case_names": "United States v. Sergeant ROBERT B. BERGDAHL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D9F2A8DCE60B1B2D85257FA40063B9D3/$FILE/mo-bergdahl, rb (62).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20160118", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "United States v. Staff Sergeant SAMUEL J. CHANCE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A99900A8738A161185257F9A0067DB67/$FILE/mo-chance, sj (recon).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140072", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-13", - "case_names": "United States v. Captain WALTER J. MATHIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F696851A29B23A7585257F96006CBB66/$FILE/mo-mathis, wj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140473", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-08", - "case_names": "United States v. Private First Class RONALD K. MCELHOSE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5030B247B10A78E485257F920068B79C/$FILE/mo-mcelhose, rk.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140760", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-31", - "case_names": "United States v. Private First Class GEORGE R. GALVAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2931B97798BA440F85257F8B005574EB/$FILE/mo-galvan, gr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140320", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-31", - "case_names": "United States v. Captain BRIAN L. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0114F3B00076D9D385257F8B00546420/$FILE/mo-johnson, bl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20131075", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "United States v. Staff Sergeant (E-6) EVERALD S. ALLEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8F42981582AC6AFA85257F85006C01AA/$FILE/mo-allen, es.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130521", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-23", - "case_names": "United States v. Private First Class TYLER L. SANKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8784F74D9EEBD66A85257F84004B504A/$FILE/mo-sanks, tl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130085", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-22", - "case_names": "United States v. Staff Sergeant BRIAN W. SCHWISOW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A30BC13BA3DB5C7E85257F84004B5EBC/$FILE/mo-schwisow, bw (recond).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20150720", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-18", - "case_names": "United States v. Sergeant EDWARD J. MITCHELL, II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C8F1A9741D35E5F885257F7E006EC461/$FILE/mo-mitchell, ej.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20150776", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-17", - "case_names": "United States v. Staff Sergeant SHAWN D. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5C39FAAAAE45C81985257F7A006F4F04/$FILE/mo-williams, sd (recon).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140691", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "United States v. Sergeant JASON R. CREWS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/036FBDD94E21281885257F69006C0F9B/$FILE/mo-crews, jr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130766", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-26", - "case_names": "United States v. Staff Sergeant SCOTT T. SCHEMPP", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2367E39F191B8FE085257F70006D22CB/$FILE/mo-schempp, st.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140313", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-26", - "case_names": "United States v. Staff Sergeant SAMUEL J. CHANCE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F4A575BE9F949FA285257F680054DC32/$FILE/mo-chance, sj (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140072", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-25", - "case_names": "United States v. Staff Sergeant SHAWN D. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5BF798892A17AB3385257F680053ACCE/$FILE/mo-williams, sd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140691", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-19", - "case_names": "United States v. Sergeant SHAUN B. MARCUS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/586D99A977B74F6385257F6100769D2C/$FILE/mo-marcus, sb (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130795", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-18", - "case_names": "United States v. Staff Sergeant BRIAN W. SCHWISOW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3C83B4C6B84C3CC985257F5D00755712/$FILE/mo-schwisow, bw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20150720", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-11", - "case_names": "United States v. Captain JAMES H. LEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7A0889BED4B1B4C485257F5B0062F561/$FILE/mo-lee, jh.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140309", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "United States v. Sergeant OTIS R. DUCKSWORTH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/26FD0E24011746CF85257F4C00553CC2/$FILE/mo-ducksworth, or.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20150769", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-21", - "case_names": "United States v. Specialist JUSTIN P. SWIFT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6EA0F911995AF52385257F41007456B4/$FILE/mo-swift, jp.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100196", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-14", - "case_names": "United States v. Sergeant MARVIN R. MULLINGS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C4A852B111F576D385257F3F006439F1/$FILE/mo-mullings, mr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140079", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-06", - "case_names": "United States v. Sergeant First Class WILLIAM J. DELGADO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3B0E07E962D27E3285257F34006E14D5/$FILE/mo-delgado, wj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140927", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-22", - "case_names": "United States v. Specialist JOHN T. GOETZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2678BCD6E55DFD5685257F300072A19D/$FILE/mo-goetz, jt.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130744", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-18", - "case_names": "United States v. Specialist RONNIE M. ROGERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/910543FC218F5E3B85257F3000709962/$FILE/mo-rogers, rm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20131074", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-17", - "case_names": "United States v. Specialist DARRIE C. RANDALL JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2724ADFEC11193BE85257F3000704AAD/$FILE/mo-randall, dc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130452", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-16", - "case_names": "United States v. Private First Class KYLE M. GOVINDASAMY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/792580C92AD6060985257F1E0058F1A2/$FILE/mo-govindasamy, km.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20121038", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-01", - "case_names": "United States v. Specialist KEVIN RODRIGUEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C931AC92883C4B9485257F100071AE6C/$FILE/mo-rodriguez, k.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130577", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-25", - "case_names": "United States v. Specialist LEVI A. KEEFAUVER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/11CD69522F3D3FB085257F0D00717FC6/$FILE/mo-keefauver, la.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20121026", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-12", - "case_names": "United States v. First Lieutenant LARRY D. BARTELLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/91B2DEE5E260B00E85257EFC0079B32F/$FILE/mo-bartelle, ld.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130420", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-30", - "case_names": "United States v. Staff Sergeant TRAVIS R. McGRUDER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E5D39343E1ED346E85257EEE0073D9F6/$FILE/mo-mcgruder, tr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130294", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-29", - "case_names": "United States v. Chief Warrant Officer Three WENDELL W. BENJAMIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A16135F5222DBC6A85257EEE00738FE7/$FILE/mo-benjamin, ww.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130092", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-23", - "case_names": "United States v. Private First Class ZACHARY TORO III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B08F2648E3D5835085257EEA00686DDC/$FILE/mo-toro, ziii (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130441", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-23", - "case_names": "United States v. Chief Warrant Officer Three STEVEN VALENCIA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/52651F9B23B6437385257EEA00680556/$FILE/mo-valencia, s (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130558", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-08", - "case_names": "United States v. Sergeant ROBERT B. BERGDAHL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/597A9B70BEAB0E9E85257EDD0074A768/$FILE/mo-bergdahl, rb.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20150624", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-29", - "case_names": "United States v. Private E1 ANDREW W. CUCCARO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/57BA59C9A639300F85257ED0006BBC49/$FILE/mo-cuccaro, aw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130338", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-03", - "case_names": "United States v. Major ANTIWAN M. HENNING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A295FBB847569CAE85257EB6005C96D0/$FILE/mo-henning, am.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20150410", - "case_name_shorts": "" - }, - { - "case_dates": "2015-08-25", - "case_names": "United States v. Private E1 WILLIAM E. MAYBERRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/57E4FAA69ACDD9C085257EB3006700ED/$FILE/mo-mayberry, we.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120396", - "case_name_shorts": "" - }, - { - "case_dates": "2015-08-18", - "case_names": "United States v. Staff Sergeant GABRIEL GARCIA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5EB02B308E9DEC4585257EA60055DFB5/$FILE/mo-garcia, g.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130660", - "case_name_shorts": "" - }, - { - "case_dates": "2015-08-13", - "case_names": "United States v. Private First Class HENRY C. HOEFT, IV", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5B7C2C0401FC53B485257EA4004C02CD/$FILE/mo-hoesft, hc iv.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140827", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-31", - "case_names": "United States v. Sergeant WILLIAM D. RECORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CBF173FB3352196B85257E970075CB32/$FILE/mo-record, wd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130721", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-27", - "case_names": "United States v. Specialist COREY W. NORTH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CA7D0C4BB0E94AC185257E90004F4A0C/$FILE/mo-north, cw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140268", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "United States v. Private E1 JOSE I. AYALA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BC54591BB871BC3C85257E8B0054C120/$FILE/mo-ayala, ji (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130610", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-17", - "case_names": "United States v. Major ERIC B. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/01B8C4F1BD9340EC85257E880046B32C/$FILE/mo-smith, eb (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120918", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-17", - "case_names": "United States v. First Lieutenant ASA M. EVANS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AEFF81D170ABBBF885257E880060A3BD/$FILE/mo - Evans.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130647", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-16", - "case_names": "United States v. Private First Class KAMARQUES K. DYESS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/78A1A7C418E5C65F85257E85003FFB6F/$FILE/mo-dyess, kk (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120486", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-30", - "case_names": "United States v. First Lieutenant DAHUD HANID-ORTIZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/42D2B72CA3853A4A85257E740070FF50/$FILE/mo -Hanid-Ortiz.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140288", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-30", - "case_names": "United States v. Captain RICARDO J. REYNA-RIVERA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2F5CFB0B08BB5F9785257E7D005C5EA3/$FILE/mo - Reyna-Rivera.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140527", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-29", - "case_names": "United States v. Specialist THOMAS D. MOELLERING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2A2A9DA00CF34A8C85257E7400497E56/$FILE/mo - Moellering.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130516", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-25", - "case_names": "United States v. Sergeant KENDELL HILLS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/609857AC96DDDED185257E700043F8B4/$FILE/mo-Hills.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130833", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-15", - "case_names": "United States v. Staff Sergeant BRANDON E. GOFF", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/70EDDD123793BAEF85257E67004C9BB5/$FILE/mo - Goff.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140327", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-15", - "case_names": "United States v. Major RODNEY H. LIPSCOMB", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/87375FC5A46069B485257E67004C38B7/$FILE/mo - Lipscomb.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120829", - "case_name_shorts": "" - }, - { - "case_dates": "2015-05-29", - "case_names": "United States v. Staff Sergeant ROBERT D. CARLSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8861D18EE811EB9D85257E570061EC24/$FILE/mo-Carlson.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130129", - "case_name_shorts": "" - }, - { - "case_dates": "2015-05-29", - "case_names": "United States v. Staff Sergeant ALEJANDRO L. PEREZ III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/076860987295D84585257E57005CD4C6/$FILE/mo-Perez.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130174", - "case_name_shorts": "" - }, - { - "case_dates": "2015-05-28", - "case_names": "United States v. Private E1 TAYLOR J. CORBIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D2186DE28DBD917785257E57005E3927/$FILE/mo-Corbin.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130480", - "case_name_shorts": "" - }, - { - "case_dates": "2015-05-28", - "case_names": "United States v. Private E1 NICHOLAS A. SOLT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FDD6AB52D8A0141585257E57005DB6E1/$FILE/mo-Solt.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130029", - "case_name_shorts": "" - }, - { - "case_dates": "2015-05-13", - "case_names": "United States v. Sergeant WESLEY V. EATON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3DE613C84CDD43F385257E44006E3ED9/$FILE/mo - Eaton.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130298", - "case_name_shorts": "" - }, - { - "case_dates": "2015-04-14", - "case_names": "United States v. Sergeant First Class STANLEY S. JNBAPTISTE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C6668671B0F41D6985257E2D004B902F/$FILE/mo - Jnbaptiste.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20121113", - "case_name_shorts": "" - }, - { - "case_dates": "2015-03-27", - "case_names": "United States v. Sergeant MARIO A. JINETECABARCAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5CA4F7FF943E909885257E180052F25F/$FILE/mo - Jinetecabarcas.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130444", - "case_name_shorts": "" - }, - { - "case_dates": "2015-03-23", - "case_names": "United States v. Specialist KEITH D. WILLIAMS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0D24E369295CA1DF85257E1B00658D31/$FILE/mo-Williams.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130438", - "case_name_shorts": "" - }, - { - "case_dates": "2015-03-20", - "case_names": "United States v. Specialist KEVIN A. HUGGINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/41258912B77ED2AD85257E0E00690499/$FILE/mo - Huggins.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20121043", - "case_name_shorts": "" - }, - { - "case_dates": "2015-03-20", - "case_names": "United States v. Private E2 KEVIN J. SHAKELY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/842987895AE141C685257E0E00697F76/$FILE/MO -Shakely.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140108", - "case_name_shorts": "" - }, - { - "case_dates": "2015-02-26", - "case_names": "United States v. Specialist DANIEL D. RUDE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AD393C1EC08E1F1885257DFD00592C7F/$FILE/mo-Rude.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120139", - "case_name_shorts": "" - }, - { - "case_dates": "2015-02-26", - "case_names": "United States v. Sergeant BRENT A. BURKE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F151D141C1F1B4CF85257EC4004FF450/$FILE/mo-burke, ba.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120448", - "case_name_shorts": "" - }, - { - "case_dates": "2015-02-25", - "case_names": "United States v. Staff Sergeant MANUEL RICO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C91850B1BFF1752B85257DF900487A07/$FILE/mo-Rico.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130045", - "case_name_shorts": "" - }, - { - "case_dates": "2015-02-24", - "case_names": "United States v. Sergeant MARCUS C. DOSHIER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B3552944DCF6786085257DF90046F9A7/$FILE/mo - Doshier.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120691", - "case_name_shorts": "" - }, - { - "case_dates": "2015-02-13", - "case_names": "United States v. Private E2 MARQUILL D. WILLIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/146F78316C71999E85257DF100532E5C/$FILE/mo-willis, md.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120999", - "case_name_shorts": "" - }, - { - "case_dates": "2015-02-10", - "case_names": "United States v. Specialist KEVIN L. KINDLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/27E1D377C114DC1D85257DE90070B3B9/$FILE/mo-Kindle.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120954", - "case_name_shorts": "" - }, - { - "case_dates": "2015-01-28", - "case_names": "United States v. Specialist JAMIE T. GOLD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FBAA0D8E99F9ED0885257E5A00561B92/$FILE/mo-Gold.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120964", - "case_name_shorts": "" - }, - { - "case_dates": "2014-12-23", - "case_names": "United States v. Specialist TIMOTHY T. ROBINSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/923233591B02A65F85257DBD0048AFC9/$FILE/mo-Robinson.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120993", - "case_name_shorts": "" - }, - { - "case_dates": "2014-12-23", - "case_names": "United States v. Private First Class JEREMY M. WESTBROOK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6915F056255BBA7185257DBD004959FA/$FILE/mo - Westbrook.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120369", - "case_name_shorts": "" - }, - { - "case_dates": "2014-12-16", - "case_names": "United States v. First Lieutenant CHRISTOPHER S. SCHLOFF", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BA24E6F27A8FE7F085257DB10072DFC3/$FILE/MO - Schloff.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20140708", - "case_name_shorts": "" - }, - { - "case_dates": "2014-12-10", - "case_names": "United States v. Sergeant First Class COREY L. HOUSTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/11B85BB29BD388FA85257DAB004B9ED5/$FILE/MO- Houston.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120991", - "case_name_shorts": "" - }, - { - "case_dates": "2014-12-08", - "case_names": "United States v. Private E1 NICHOLAS A. YANCEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8CEAFE510FD03A8685257DAB00503ECB/$FILE/mo - Yancey.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120393", - "case_name_shorts": "" - }, - { - "case_dates": "2014-10-31", - "case_names": "United States v. Private First Class CORY M. LANG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/44B73E282887ED2E85257D85006EEA57/$FILE/mo-lang, cm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140083", - "case_name_shorts": "" - }, - { - "case_dates": "2014-10-28", - "case_names": "United States v. Specialist JAMEL E. GREENE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B67FF25DC33B997F85257D81005CD3E8/$FILE/mo-greene, je.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120805", - "case_name_shorts": "" - }, - { - "case_dates": "2014-10-28", - "case_names": "United States v. Sergeant First Class RASHEEN K. MCCULLERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5381B7D76E5B5BB985257D81005D65B1/$FILE/mo-mccullers, rk.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120931", - "case_name_shorts": "" - }, - { - "case_dates": "2014-10-24", - "case_names": "United States v. Specialist JOHNATHAN M. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/918025008C009FA685257D7E006ED402/$FILE/mo-johnson, jm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120643", - "case_name_shorts": "" - }, - { - "case_dates": "2014-09-30", - "case_names": "United States v. Specialist JOSHUA L. SUDBURY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/290ECC552CE4979C85257D64007B1C22/$FILE/mo-sudbury, jl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120600", - "case_name_shorts": "" - }, - { - "case_dates": "2014-09-30", - "case_names": "United States v. Private E2 CHRISTOPHER A. EDGECOMB", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/19D81261D5C6D9BD85257D64007ADDB9/$FILE/mo-edgecomb, ca.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120891", - "case_name_shorts": "" - }, - { - "case_dates": "2014-09-29", - "case_names": "United States v. Sergeant DAVID D. BRAM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F77BC3CD9305E74485257D660069DF2C/$FILE/mo-bram, dd (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20111032", - "case_name_shorts": "" - }, - { - "case_dates": "2014-09-12", - "case_names": "United States v. Private E1 TOREY R. PURDIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0FE3B4EF9E2D0A2E85257DF8004E416D/$FILE/mo-Purdin (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120277", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Specialist TRAVIS J. GARDNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DF34606A46EC3AEE85257D47005C7F5A/$FILE/mo-gardner, tj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120193", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Specialist HENRY L. WILLIAMS III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/27F95A76489ADEF585257D47005CF42F/$FILE/mo-williams, hl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130284", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-15", - "case_names": "United States v. Specialist BRANDON S. WILSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7AAF6D824BFCC0B185257D380076C57B/$FILE/mo-wilson, bs.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140386", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-15", - "case_names": "United States v. Private E1 MATTHEW M. DENTICE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CBA4AFE6FA9AB8D885257D3800770F03/$FILE/mo-dentice, mm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130591", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Specialist JONATHAN R. CHAVEZ-CORRALES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A4A7417E660E2F9985257D2A00532B51/$FILE/mo-chavez-corrales, jr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120640", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-25", - "case_names": "United States v. Staff Sergeant NORMAN R. STOUT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/717D1357BBEC911D85257D2300539DC4/$FILE/mo-stout, nr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120592", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "United States v. Specialist BRANDON B. WARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5FF14891678CE21785257D2000730F2D/$FILE/mo-ward, bb - cc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120681", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "United States v. Sergeant CHAD R. CAMPBELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1ED9C74B2CDFDE4185257D200072CA89/$FILE/mo-campbell, cr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120850", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "United States v. Private (E1) ADAM J. HALL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9476F7B7109505C785257D1F0067FC30/$FILE/mo-hall, aj (cc).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130217", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-30", - "case_names": "United States v. Sergeant CHRISTOPHER W. BROWNE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/172E9BD8E06C6D9385257D08005A5E4E/$FILE/mo-browne, cw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130252", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-27", - "case_names": "United States v. Specialist MARVIN L. MAYBERRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/09CC3453C2F218B785257D08005A0C0F/$FILE/mo-mayberry, ml.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110486", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Private E2 ROBERT E. KENNEDY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EE9C6D327CC24E4285257D0400536C63/$FILE/mo-kennedy, re.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130159", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Private (E2) MASON D. DIVINE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DEEFC8D09DD4D7ED85257D040053BA66/$FILE/mo-divine, md.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120962", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-12", - "case_names": "United States v. Sergeant CLINTON R. HARDIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/60969FE96919F78685257CF60047F78E/$FILE/mo-hardin, cr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120051", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-11", - "case_names": "United States v. Private E1 JUSTIN S. CHATMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3908A93BCAE7C94F85257CF5004AC291/$FILE/mo-chatman, js.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120494", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-02", - "case_names": "United States v. Specialist KEVIN S. HOSKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/43D9690D005E0F7C85257CEC004A42CE/$FILE/mo-hoskins, ks.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130451", - "case_name_shorts": "" - }, - { - "case_dates": "2014-05-30", - "case_names": "United States v. Private (E1) CHARDELL N. OWENS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/334D955DB30C6DD985257CEB0052F46E/$FILE/mo-owens, cn.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20121071", - "case_name_shorts": "" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Sergeant First Class SHAUN P. KUHN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AA4BA4D2E141ACDB85257CE8006F36FA/$FILE/mo-kuhn, sp.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120098", - "case_name_shorts": "" - }, - { - "case_dates": "2014-05-19", - "case_names": "United States v. Private E2 KENNETH W. BROGAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/47A7A6ACAEB4206D85257CDE004EEB71/$FILE/mo-brogan, kw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130419", - "case_name_shorts": "" - }, - { - "case_dates": "2014-05-15", - "case_names": "United States v. Specialist SARAH D. GRANT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/276819A5B17CEE3085257CDA004CE24A/$FILE/mo-grant, sd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120882", - "case_name_shorts": "" - }, - { - "case_dates": "2014-04-30", - "case_names": "United States v. Staff Sergeant DAVID J. MALLAR, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/741F6C48FABAD76185257CCB004CEBDF/$FILE/mo-mallar, dj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130523", - "case_name_shorts": "" - }, - { - "case_dates": "2014-04-30", - "case_names": "United States v. Specialist KEITH J. HIGGINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CA2539A79F51242785257CCB004CFDC0/$FILE/mo-higgins, kj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110664", - "case_name_shorts": "" - }, - { - "case_dates": "2014-04-30", - "case_names": "United States v. Specialist JEREMY N. MORLOCK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/644FCC50BBE608C685257CCB004CD808/$FILE/mo-morlock, jn.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110230", - "case_name_shorts": "" - }, - { - "case_dates": "2014-04-28", - "case_names": "United States v. Specialist COREY J. BENNETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/400E443C8EFD89B185257CC90053EB98/$FILE/mo-bennett, cj - cc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20111107", - "case_name_shorts": "" - }, - { - "case_dates": "2014-04-17", - "case_names": "United States v. Sergeant CHRISTOPHER M. SAULSBERRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6EEB484220373B4885257CBE005DCCE7/$FILE/mo-saulsberry, cm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120132", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-31", - "case_names": "United States v. Staff Sergeant STEPHEN T. COLLIER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5851546364C3A7A785257CAC0069A1D8/$FILE/mo-collier, st.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120554", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-31", - "case_names": "United States v. Specialist LARRY G. LOVELL, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2711E9895F025E5F85257CAE005288F3/$FILE/mo-lovell, lg.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20111006", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-31", - "case_names": "United States v. Specialist CHRISTOPHER L. MOYERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F917EAC62D11E76785257CAE005385E7/$FILE/mo-moyers, cl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110975", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-31", - "case_names": "United States v. Sergeant IAN C. SEMENIUK-HAUSER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/93A744C27AFC212585257CAF006A0645/$FILE/mo-semeniuk-hauser, ic.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110976", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-25", - "case_names": "United States v. Private E2 TIMOTHY E. BENNITT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4FCDB3667334F3F785257CA7006DD0D4/$FILE/mo-bennitt, te.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100172", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-21", - "case_names": "United States v. Private E1 TRAVIS W. BARNES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9D3D348131C8686D85257CA7006BB1C6/$FILE/mo-barnes, tw .pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130529", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-19", - "case_names": "United States v. Private First Class VICENTE C. TORRES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CCB8C04493224B8285257CA500546FFB/$FILE/mo-torres, vc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20111168", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-18", - "case_names": "United States v. Sergeant JUSTIN R. CROWELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/78092F15BFA36A7985257CA6006D8B8D/$FILE/sd-crowell, jr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120184", - "case_name_shorts": "" - }, - { - "case_dates": "2014-02-28", - "case_names": "United States v. Captain GREGORY A. MARTIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/00940186D6467F6C85257C92005D883D/$FILE/mo-martin, ga.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110345", - "case_name_shorts": "" - }, - { - "case_dates": "2014-02-27", - "case_names": "United States v. Sergeant DEAN B. VALLEJO-PACHECO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F36253E50958838585257C9100543AE8/$FILE/mo-vallejo-pacheco, db.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120450", - "case_name_shorts": "" - }, - { - "case_dates": "2014-02-21", - "case_names": "United States v. Sergeant LARRY W. PLOWS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2D8679E3396921BA85257C92005D0273/$FILE/mo-plows, lw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120449", - "case_name_shorts": "" - }, - { - "case_dates": "2014-02-19", - "case_names": "United States v. Specialist CURTIS E. LACEFIELD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DC3B9BCF3B87010885257C84006DFB77/$FILE/mo-lacefield, ce.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120598", - "case_name_shorts": "" - }, - { - "case_dates": "2014-02-05", - "case_names": "United States v. Private E1 COLBY R. ADAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AC9AB70B161F75AE85257C7700549DAE/$FILE/mo-adams, cr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20111009", - "case_name_shorts": "" - }, - { - "case_dates": "2014-01-31", - "case_names": "United States v. Specialist WILLIAM J. GRIMES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/461A643EB674D74085257C76004A3B2B/$FILE/mo-grimes, wj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100720", - "case_name_shorts": "" - }, - { - "case_dates": "2014-01-29", - "case_names": "United States v. Specialist MATTHEW R. ADAMS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E39730E86757BF9785257C76004AD5B2/$FILE/mo-adams, mr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110503", - "case_name_shorts": "" - }, - { - "case_dates": "2014-01-10", - "case_names": "United States v. Sergeant First Class ANTHONY M. STANCZYK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/10EF58F859F0B1F185257C62004CAD45/$FILE/mo-stanczyk, am.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110438", - "case_name_shorts": "" - }, - { - "case_dates": "2014-01-09", - "case_names": "United States v. Staff Sergeant BENJAMIN D. BARNES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/023723DF78515D9785257C5C0059203D/$FILE/mo-barnes, bd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110361", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-31", - "case_names": "United States v. Private First Class SAMIR ZUBAIR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3153C710DC20B8C285257C5500632836/$FILE/ACCA Memorandum Opinion - US v. PFC SAMIR ZUBAIR, ARMY 20110433.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110433", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-31", - "case_names": "United States v. Private E2 SETH D. LEMASTERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5E75EF6568235D1C85257C550061F624/$FILE/US v. LEMASTERS (ACCA MEMORANDUM OPINION 31 DECEMBER 2013).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20111143", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-31", - "case_names": "United States v. Private E1 CHAD D. BARTSH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5218EE05840B444C85257C5500776646/$FILE/mo-bartsh, cd - corrected copy.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20111104", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-27", - "case_names": "United States v. Sergeant First Class CHRISTOPHER C. CASTLEBERRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FC8DFB5BD184B78C85257C520052FFC7/$FILE/MO- Castleberry, CC.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120117", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-26", - "case_names": "United States v. Private First Class TEAKELL D. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/829F27AA2886152C85257C52006B232B/$FILE/MO- Smith, TD.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110401", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-24", - "case_names": "United States v. Private First Class JOSHUA A. PHENIX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9F26CCC624DA210285257C4E006253D1/$FILE/mo-PHENIX, JA.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20111108", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-23", - "case_names": "United States v. Private E1 BRIAN E. KOCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7BEE96F1BEE8C5B985257C4D00546160/$FILE/MO- KOCH, BE.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110922", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-19", - "case_names": "United States v. Staff Sergeant RICHARD A. BOURNE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/83E7691D8D0A0F6685257C47005D0447/$FILE/MO - Bourne, RA.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120481", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-19", - "case_names": "United States v. Specialist LUIS RODRIGUEZ III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ABA4D8F55808200D85257C4A0052DDFB/$FILE/MO - Rodriguez, L.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120063", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-13", - "case_names": "United States v. Captain RYAN K. TOMLINSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/37572BAD2E351B1F85257C4400721601/$FILE/mo-tomlinson, rk.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110034", - "case_name_shorts": "" - }, - { - "case_dates": "2013-11-27", - "case_names": "United States v. Private E1 ELLIOTT H. HAYES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/33BB167C2FE8987F85257C37004E5389/$FILE/mo-hayes, eh.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120480", - "case_name_shorts": "" - }, - { - "case_dates": "2013-11-22", - "case_names": "United States v. Private First Class CASEY A. GARRISON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5928F33E83E2F48685257C2F006C19EA/$FILE/mo-garrison, ca.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110545", - "case_name_shorts": "" - }, - { - "case_dates": "2013-11-22", - "case_names": "United States v. Lieutenant Colonel DENNIS E. DOCKERY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FC4DDA4FD58FDBA085257C2E0057BB92/$FILE/mo-dockery, de.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110796", - "case_name_shorts": "" - }, - { - "case_dates": "2013-11-19", - "case_names": "United States v. Specialist ROBERT J. TRANK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FA37C79DC83EDB3D85257C29006B61B1/$FILE/mo-trank, rj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130742", - "case_name_shorts": "" - }, - { - "case_dates": "2013-10-31", - "case_names": "United States v. Specialist LUTHER L. PORTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3C3B34810C262F0985257C1D005DAC0F/$FILE/mo-porter, ll.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110470", - "case_name_shorts": "" - }, - { - "case_dates": "2013-10-30", - "case_names": "United States v. Private First Class RONALD D. WASHINGTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5F498047710B59EB85257C1D005E4397/$FILE/mo-washington, rd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110525", - "case_name_shorts": "" - }, - { - "case_dates": "2013-09-30", - "case_names": "United States v. Private E1 MICHAEL A. NICKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C20D9A6E279F09CC85257BF70054BC62/$FILE/mo-nicks, ma.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110658", - "case_name_shorts": "" - }, - { - "case_dates": "2013-09-20", - "case_names": "United States v. Private E2 STEVEN F. GUZMAN II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9DCFA4D35329449D85257BF30047D7E8/$FILE/mo-guzman, sf.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100020", - "case_name_shorts": "" - }, - { - "case_dates": "2013-09-04", - "case_names": "United States v. Private First Class KENNY FREEMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0FC2151993448C4485257BDD006DF98D/$FILE/mo-freeman, k.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110661", - "case_name_shorts": "" - }, - { - "case_dates": "2013-08-29", - "case_names": "United States v. Staff Sergeant AARON M. MAGILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5DAC8BCC739B1A6E85257BDC0067E1EB/$FILE/mo-magill, am.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110640", - "case_name_shorts": "" - }, - { - "case_dates": "2013-08-28", - "case_names": "United States v. Private First Class JUSTIN H. ADAIR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/389DDFCF20206ACE85257BD6005FC3BB/$FILE/mo-adair, jh.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100933", - "case_name_shorts": "" - }, - { - "case_dates": "2013-08-22", - "case_names": "United States v. Sergeant ARMANDO R. BACA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/026CD2B712B02B9E85257BD0006E1098/$FILE/mo-baca, ar.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100396", - "case_name_shorts": "" - }, - { - "case_dates": "2013-08-14", - "case_names": "United States v. Specialist SHAWN M. E. PELLETIER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/74D140BFA4AAC80985257BC8006B4690/$FILE/mo-pelletier, sme.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100711", - "case_name_shorts": "" - }, - { - "case_dates": "2013-08-14", - "case_names": "United States v. Private E2 PERRY V. WARREN, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/24920C3174BD741285257BCC0054E6C1/$FILE/mo-warren, pv.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110790", - "case_name_shorts": "" - }, - { - "case_dates": "2013-08-13", - "case_names": "United States v. Sergeant First Class HOLLY C. HARRISON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9C54C9C7D3D4080085257BC7004668D0/$FILE/mo-harrison, hc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120345", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-31", - "case_names": "United States v. Master Sergeant MARK S. ASHLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/17819FC51E6CE0D085257BC000508AA9/$FILE/mo-ashley, ms.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120566", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-30", - "case_names": "United States v. Specialist EDWARD J. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E8FD3494545E82DF85257BB9006438C8/$FILE/mo-smith, ej.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110418", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-30", - "case_names": "United States v. Private First Class DAVID A. LOPEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/529BA5E979CA868085257BC00050CE9B/$FILE/mo-lopez, da.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100457", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-30", - "case_names": "United States v. Private First Class DAMARCUS D. MCGINTY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A6F140EB0E3082B185257BB9004274A3/$FILE/mo-mcginty, dd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110627", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-29", - "case_names": "United States v. Private First Class RYAN L. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1BF412442C8E168285257BB90064D580/$FILE/mo-brown, rl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110932", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-29", - "case_names": "United States v. Private E1 ROBERT L. DAVIS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/659B3A4B4701625E85257BB80049F537/$FILE/mo-davis, rl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120244", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-29", - "case_names": "United States v. Private E1 JASON C. WAGNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5ACF8FE5398E6A2585257BB8004ABD4F/$FILE/mo-wagner, jc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20111064", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-23", - "case_names": "United States v. Sergeant JOSHUA R. SICKELS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A810B289AE51B8B385257BB20053522A/$FILE/mo-sckels, jr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110110", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-17", - "case_names": "United States v. Staff Sergeant BRANDON A. TRIPP", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FA24A28C4FEA741085257BB2005443A5/$FILE/mo-tripp, ba.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20111018", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-15", - "case_names": "United States v. Sergeant RONALD J. DAVIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C83D09953F3BD37C85257BB200556208/$FILE/mo-davis, rj..pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100815", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-03", - "case_names": "United States v. Specialist ERIC L. NORDIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8213C15C7F289EA385257BA2004BB94A/$FILE/mo-nordin, el.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090044", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-03", - "case_names": "United States v. Private First Class GEORGE D.B. MACDONALD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E98F2C23665D343685257BA2004D3EA9/$FILE/mo-macdonald, gdb.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20091118", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-01", - "case_names": "United States v. Staff Sergeant DANIEL C. ARIZMENDI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/63541062238CACC985257BA400675C66/$FILE/mo-arizmendi, dc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110966", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-01", - "case_names": "United States v. Sergeant DAVID J. Sergeant DAVID J. POGGIOLI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4A5DD710B18FEEB085257BA4006B0E3A/$FILE/mo-poggioli, dj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110656", - "case_name_shorts": "" - }, - { - "case_dates": "2013-06-28", - "case_names": "United States v. Specialist TYWARD D. BATES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E61EB7301E23117A85257B9C00456E3F/$FILE/mo-bates, td.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120281", - "case_name_shorts": "" - }, - { - "case_dates": "2013-06-28", - "case_names": "United States v. Private E2 JAMES A. CRAWFORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/991F6DEA21F9C79C85257B9C0046160F/$FILE/mo-crawford, ja.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110765", - "case_name_shorts": "" - }, - { - "case_dates": "2013-06-28", - "case_names": "United States v. Private E1 DANIEL I. ENRIQUEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1218CC4C3FA0CBE585257B9C004F939D/$FILE/mo-enriquez, di.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110921", - "case_name_shorts": "" - }, - { - "case_dates": "2013-06-27", - "case_names": "United States v. Private E1 JOSHUA J. FULTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F95D9CAD01E951DD85257B97006F11FC/$FILE/mo-fulton, jj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120432", - "case_name_shorts": "" - }, - { - "case_dates": "2013-06-24", - "case_names": "United States v. Specialist JOHNNIE M. MCDONALD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0E7C7FF09FFBE91085257B950052E375/$FILE/mo-mcdonald, jm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20130423", - "case_name_shorts": "" - }, - { - "case_dates": "2013-06-21", - "case_names": "United States v. Specialist KEVIN A. GIBSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/63EA7FED0F34F32D85257B940042F649/$FILE/mo-gibson, ka.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110247", - "case_name_shorts": "" - }, - { - "case_dates": "2013-06-10", - "case_names": "United States v. Private First Class MATTHEW R. STREMPLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8A84F6C988D5C78B85257B87004267E5/$FILE/mo- strempler, mr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100989", - "case_name_shorts": "" - }, - { - "case_dates": "2013-05-29", - "case_names": "United States v. Private First Class DEREK J. FORIT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/600C46CC726A084D85257B7F004B6A77/$FILE/sd-forit, dj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110537", - "case_name_shorts": "" - }, - { - "case_dates": "2013-05-22", - "case_names": "United States v. Specialist JIMMY RODRIGUEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/00401513F1542FEB85257B73006DB2B6/$FILE/mo-rodriguez, j.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110153", - "case_name_shorts": "" - }, - { - "case_dates": "2013-05-17", - "case_names": "United States v. Master Sergeant ALFRED L. PEMBERTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6EE1AF0ACD2DA8FC85257B710047A133/$FILE/mo-pemberton, al.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110127", - "case_name_shorts": "" - }, - { - "case_dates": "2013-05-16", - "case_names": "United States v. Specialist WALTER J. CLEMMONS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EAEDCEF35774FA1385257B7100473316/$FILE/mo-clemmons, wj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120008", - "case_name_shorts": "" - }, - { - "case_dates": "2013-05-02", - "case_names": "United States v. Specialist GREGORY R. MIEDEMA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F625A00B7482BA4F85257B63006612E8/$FILE/mo-miedema, gr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110496", - "case_name_shorts": "" - }, - { - "case_dates": "2013-04-18", - "case_names": "United States v. Sergeant First Class CALVIN J. DAVENPORT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/42A17140DE1054B785257B5F0062B1C0/$FILE/mo-davenport, cj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20081102", - "case_name_shorts": "" - }, - { - "case_dates": "2013-04-09", - "case_names": "United States v. Specialist CARLOS I. VELASQUEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/55C75331E7B3B0C085257B4900665ED0/$FILE/mo-velasquez, ci.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110296", - "case_name_shorts": "" - }, - { - "case_dates": "2013-02-28", - "case_names": "United States v. Sergeant DARRICK GARNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6845809417917E9985257B25006B0D68/$FILE/mo-garner, d.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100684", - "case_name_shorts": "" - }, - { - "case_dates": "2013-02-28", - "case_names": "United States v. Sergeant BRIAN S. MULLINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B732BDD0720A96C185257B25006D0911/$FILE/sd-mullins, bs.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110133", - "case_name_shorts": "" - }, - { - "case_dates": "2013-02-27", - "case_names": "United States v. Private First Class WILLIAM G. MATHESIUS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2CE04578BC58A8F385257B1F0078047E/$FILE/mo-mathesius, wg.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110592", - "case_name_shorts": "" - }, - { - "case_dates": "2013-02-13", - "case_names": "United States v. Sergeant First Class WILLIAM S. HARTGROVE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FEBE0320C419330C85257B190049D134/$FILE/mo-hartgrove, ws.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100743", - "case_name_shorts": "" - }, - { - "case_dates": "2013-01-31", - "case_names": "United States v. Private E2 DANEWOOD L. KIRKPATRICK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6E2C631B46D5D92485257B04006CFD2C/$FILE/mo-kirkpatrick, dl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100716", - "case_name_shorts": "" - }, - { - "case_dates": "2013-01-17", - "case_names": "United States v. Private First Class ROBERT W. MEDEIROS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0F5B8CB46E4C930C85257AF7006AFE02/$FILE/mo-medeiros, rw.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20081092", - "case_name_shorts": "" - }, - { - "case_dates": "2013-01-17", - "case_names": "United States v. Private First Class AMANDA N. MOSS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2CAA8A00D58EE23D85257AF7006A2A21/$FILE/mo-moss, an.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110337", - "case_name_shorts": "" - }, - { - "case_dates": "2012-12-26", - "case_names": "United States v. Private First Class COREY M. LUEHRING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/63E569B7560A14FF85257AEC00743961/$FILE/mo-luehring, cm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120077", - "case_name_shorts": "" - }, - { - "case_dates": "2012-12-17", - "case_names": "United States v. Captain CLYDE E. CALLWOOD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/15911D8577B6013885257AD900458A45/$FILE/mofr-callwood, ce.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080577", - "case_name_shorts": "" - }, - { - "case_dates": "2012-11-28", - "case_names": "United States v. Private First Class JOE SOTELO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5D8D7D99DDB4B8ED85257ACA004BCC4B/$FILE/mo-sotelo, j.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110267", - "case_name_shorts": "" - }, - { - "case_dates": "2012-11-10", - "case_names": "United States v. Private E2 BRANDON M. ANDERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EB72BBCE17788B1885257AD0005F448E/$FILE/mo-anderson, bm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110504", - "case_name_shorts": "" - }, - { - "case_dates": "2012-11-08", - "case_names": "United States v. Private First Class KHOI J. POTTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/14D5BAE4B9D5A06285257AB6005B9AA2/$FILE/mo-potter.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110332", - "case_name_shorts": "" - }, - { - "case_dates": "2012-10-31", - "case_names": "United States v. Private E1 KYLE A. JUHL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3367CB011B7B9D3585257AB6005AEC94/$FILE/MO-Juhl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100836", - "case_name_shorts": "" - }, - { - "case_dates": "2012-10-18", - "case_names": "United States v. Major Nidal M. Hasan", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E261A0422FCBCC2585257A9B006ACD56/$FILE/mo-hasan, nm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20120876/20120877", - "case_name_shorts": "" - }, - { - "case_dates": "2012-09-28", - "case_names": "United States v. Specialist ROBERT O. BOZEMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CB646D5B2CA3338185257A8A0047D3AC/$FILE/mo-bozeman, ro.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080711", - "case_name_shorts": "" - }, - { - "case_dates": "2012-09-28", - "case_names": "United States v. Private E1 KEITH D. VALENCIA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C72A087B0746D04285257A8D006A5301/$FILE/mo-valencia, kd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090381", - "case_name_shorts": "" - }, - { - "case_dates": "2012-09-17", - "case_names": "United States v. Private First Class MICHAEL S. MILAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9AEFE29556E7F55E85257A8400619945/$FILE/mo-milay, ms.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100621", - "case_name_shorts": "" - }, - { - "case_dates": "2012-09-10", - "case_names": "United States v. Specialist DANIEL A. DEMARSH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FD08F18670ADFF1285257A75005F6EA8/$FILE/mo-demarsh, da.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110088", - "case_name_shorts": "" - }, - { - "case_dates": "2012-09-10", - "case_names": "United States v. Specialist DANIEL A. DEMARSH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A09B47682EC665D685257B2800532583/$FILE/mo-demarsh, da.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110088", - "case_name_shorts": "" - }, - { - "case_dates": "2012-08-30", - "case_names": "United States v. Private First Class MARK S. BLUE, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6AF26C2DC372724E85257A7000428DA3/$FILE/mo-blue, ms.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110323", - "case_name_shorts": "" - }, - { - "case_dates": "2012-08-30", - "case_names": "United States v. Captain ALEXANDER LOYA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8B3252E0EE5CF4B985257A70005AF970/$FILE/mo-loya, a.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090770", - "case_name_shorts": "" - }, - { - "case_dates": "2012-08-17", - "case_names": "United States v. Sergeant First Class TED C. SQUIRE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/24445106CC2E052985257A620053EF40/$FILE/mo-squire, tc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20091106", - "case_name_shorts": "" - }, - { - "case_dates": "2012-07-26", - "case_names": "United States v. Sergeant First Class KELLY A. STEWART", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AD2B094BCA5A279B85257A4D00614424/$FILE/mo-stewart, ka.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090751", - "case_name_shorts": "" - }, - { - "case_dates": "2012-07-16", - "case_names": "United States v. Private First Class JOHN M. DODSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/10F48E3434FB949F85257A3D006C1FB4/$FILE/mo-dodson, jm .pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090378", - "case_name_shorts": "" - }, - { - "case_dates": "2012-07-13", - "case_names": "United States v. Sergeant PAUL R. JASPER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9A95DA186CEFA7B385257A3A006C5B3E/$FILE/mo-Jasper, pr .pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100112", - "case_name_shorts": "" - }, - { - "case_dates": "2012-07-13", - "case_names": "United States v. Sergeant HASAN K. AKBAR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7C1F98BA6859265985257A3A005069B5/$FILE/mo-akbar, hk.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050514", - "case_name_shorts": "" - }, - { - "case_dates": "2012-07-13", - "case_names": "United States v. Private First Class BRADLEY O. TEMPLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F7870FBE36EF6E5385257A3A0062378B/$FILE/mo-temple, bo.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090883", - "case_name_shorts": "" - }, - { - "case_dates": "2012-07-09", - "case_names": "United States v. Specialist WALTER S. COLEMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0AAC368F9CDA21ED85257A370049B412/$FILE/mo-coleman, ws.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100417", - "case_name_shorts": "" - }, - { - "case_dates": "2012-07-09", - "case_names": "United States v. Private First Class ROGER CRUZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/22D9249CD280F47085257A3700491F08/$FILE/mo-cruz, r.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100132", - "case_name_shorts": "" - }, - { - "case_dates": "2012-06-28", - "case_names": "United States v. Sergeant DALE A. BOLDWARE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BCC3C8A96FEF5AE685257A300046AAE7/$FILE/mo-boldware, da.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090665", - "case_name_shorts": "" - }, - { - "case_dates": "2012-06-13", - "case_names": "United States v. Private First Class BRANDON M. WHITE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E483AB79634B6B7185257A1D0051BDEF/$FILE/mo - white, bm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100325", - "case_name_shorts": "" - }, - { - "case_dates": "2012-06-01", - "case_names": "United States v. Sergeant JOHN RON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0CE6ACC9C35A4CA085257A1C005E13CE/$FILE/mo-ron, j.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100599", - "case_name_shorts": "" - }, - { - "case_dates": "2012-06-01", - "case_names": "United States v. Sergeant First Class ANDREW J. AGUIRRE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/28FB1065859BF5E885257A1C005F85AC/$FILE/mo - aguirre, aj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090487", - "case_name_shorts": "" - }, - { - "case_dates": "2012-06-01", - "case_names": "United States v. Private E1 LARRY E. HENDERSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A91529027F3A38C485257A16006C92D2/$FILE/mo - henderson, le.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090613", - "case_name_shorts": "" - }, - { - "case_dates": "2012-05-11", - "case_names": "United States v. Private First Class KENNETH D. NUNEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1EDF890F4977A2D785257A01005583C4/$FILE/mo-nunez, kd.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100703", - "case_name_shorts": "" - }, - { - "case_dates": "2012-05-11", - "case_names": "United States v. Private E1 CASSANDRA M. RILEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DEE90D923209CEF085257A0100569817/$FILE/mo- riley, cm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100084", - "case_name_shorts": "" - }, - { - "case_dates": "2012-04-24", - "case_names": "United States v. Private E1 RANDY E. KRYSTYAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/95A23305D08FB23B852579EA006A2F8D/$FILE/mo-krystyan, re.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110014", - "case_name_shorts": "" - }, - { - "case_dates": "2012-04-23", - "case_names": "United States v. Specialist JEREMEY C. CLIFTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A982ACFB90DB6404852579E9005C0106/$FILE/mo - clifton, jc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20091092", - "case_name_shorts": "" - }, - { - "case_dates": "2012-04-05", - "case_names": "United States v. Captain CHRISTOPHER GRAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E0303AFD6267E785852579DB0046740E/$FILE/mo- gray, c.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090259", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-29", - "case_names": "United States v. Sergeant CARLOS A. RIVERAROSADO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C6B52F1FA9603977852579D0006D9505/$FILE/mo-rivararosado, ca.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090924", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-28", - "case_names": "United States v. Private First Class BRANDON T. WEAVER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/542DA0C9B10B7E33852579D0006E6CED/$FILE/mo-weaver, bt.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090397", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-27", - "case_names": "United States v. Staff Sergeant BRUCE L. KELLY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/09FC55B9269FEAB0852579D1004928C6/$FILE/mo-kelly, bl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090809", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-28", - "case_names": "United States v. Private E2 ROBERT A. LYON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4364B759CF3F32B5852579B4006CF0A0/$FILE/mo-lyon, ra.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090792", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-27", - "case_names": "United States v. Specialist PHILLIP L. PIERCE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/51B24FC3A0CE0CA0852579B20055EF9C/$FILE/mo-pierce, pl.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080009", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-31", - "case_names": "United States v. Specialist TRAVIS J. GARDNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/50A62EAF3C11013185257997006EDBFD/$FILE/mo-gardner, tj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110916", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-31", - "case_names": "United States v. Sergeant First Class DAVID J. WATSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4104DF3CF42504F685257997006E52A1/$FILE/mo-watson, dj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100930", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-23", - "case_names": "United States v. Staff Sergeant KIRBY B. MOSES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B4380F1D13A4E8B585257991004EE140/$FILE/mo-moses, kb.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090247", - "case_name_shorts": "" - }, - { - "case_dates": "2011-12-21", - "case_names": "United States v. Sergeant JAMIL V. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/016B63449A7DA234852579750048F161/$FILE/mo-williams, jv.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090619", - "case_name_shorts": "" - }, - { - "case_dates": "2011-12-21", - "case_names": "United States v. Sergeant ERIC W. COOPER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BEBA121A78123B2C8525797300498BF2/$FILE/mo-cooper, ew.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110914", - "case_name_shorts": "" - }, - { - "case_dates": "2011-12-14", - "case_names": "United States v. Staff Sergeant DAVID B. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/879DABF1E0FF39038525796700510435/$FILE/mo-jones, db.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090401", - "case_name_shorts": "" - }, - { - "case_dates": "2011-12-09", - "case_names": "United States v. Private First Class DAVID V. PETERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0EFB15A52077481985257965006DB239/$FILE/mo-peterson, dv.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100851", - "case_name_shorts": "" - }, - { - "case_dates": "2011-11-23", - "case_names": "United States v. Staff Sergeant RODGER S. DANES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C41CECAA23A82DF0852579580066A5F6/$FILE/mo-danes, rs.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20091072", - "case_name_shorts": "" - }, - { - "case_dates": "2011-11-23", - "case_names": "United States v. Sergeant JUSTIN C. WIESENHOFER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B1EC127E3D0F39D185257958005C3934/$FILE/mo - wiesenhofer, jc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100041", - "case_name_shorts": "" - }, - { - "case_dates": "2011-11-23", - "case_names": "United States v. Sergeant JUSTIN C. WIESENHOFER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/86B0EB7758EECDEC85257961004E64C3/$FILE/mo-wiesenhofer (cc), jc.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100041", - "case_name_shorts": "" - }, - { - "case_dates": "2011-11-17", - "case_names": "United States v. Private E2 ANTHONY J. CRUSE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BE79566F68A2F5978525794C004A3F48/$FILE/mo - cruse, aj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080148", - "case_name_shorts": "" - }, - { - "case_dates": "2011-10-31", - "case_names": "United States v. Specialist KEVIN J. KITMANYEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EAF0654C7CF64E288525793E004B2488/$FILE/mo- kitmanyen, kj.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20110609", - "case_name_shorts": "" - }, - { - "case_dates": "2011-10-24", - "case_names": "United States v. Private First Class ADRIAN M. LEBALLISTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DF4F80A15843EB94852579350060CA5E/$FILE/mo-leballister, am.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100618", - "case_name_shorts": "" - }, - { - "case_dates": "2011-10-11", - "case_names": "United States v. Private E1 EDWARD MATOS-MARTINEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F2422FF3772BF99D8525792C004D9229/$FILE/mo-matos-martinez, e.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20091141", - "case_name_shorts": "" - }, - { - "case_dates": "2011-08-31", - "case_names": "United States v. Private E1 BRYAN D. SANTIZO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/75086F57C36ADE7285257903006AF90C/$FILE/mo-santizo, bd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100146", - "case_name_shorts": "" - }, - { - "case_dates": "2011-08-26", - "case_names": "United States v. Sergeant ANDRE K. HARDAWAY III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4D23822C91BA3DDC852578FD005DFE02/$FILE/mo-hardaway, ak.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100139", - "case_name_shorts": "" - }, - { - "case_dates": "2011-08-19", - "case_names": "United States v. Specialist MATTHEW J. MCCLAIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2C64B6759FE39C11852578F4005364A3/$FILE/mo-mcclain, mj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090446", - "case_name_shorts": "" - }, - { - "case_dates": "2011-08-08", - "case_names": "United States v. Private E2 ROBERT A. LYON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CE18454AD33169A7852578E8004E6D6A/$FILE/mo-lyon, ra.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090792", - "case_name_shorts": "" - }, - { - "case_dates": "2011-07-19", - "case_names": "United States v. Captain WARREN B. GILBERTSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/38F0CBB5BA6B0A68852578D80054A939/$FILE/mo-gilbertson, wb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080428", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-30", - "case_names": "United States v. Master Sergeant JOHN E. HATLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/77A07BCF586D7BEB852578C000653870/$FILE/mo-hatley, je.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090329", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-30", - "case_names": "United States v. Master Sergeant JOHN E. HATLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/345A1AF6662C9C48852578C00065468E/$FILE/mo-hatley, je.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090329", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-28", - "case_names": "United States v. Staff Sergeant LONELL J. LEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/79EA42C1ADA7D777852578C000651BFC/$FILE/mo-lee, lj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20081130", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-28", - "case_names": "United States v. Private First Class JESSE V. SPIELMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/79E1CB6639889B96852578C000655AC8/$FILE/mo-spielman, jv.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070883", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-07", - "case_names": "United States v. Staff Sergeant ROBERT L. McCULLOUGH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1DF7A2434DFD2CE4852578AA0070E730/$FILE/mo-mccullough,rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090206", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-03", - "case_names": "United States v. Private E1 JAMAUEL T. ANDERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1D760FE056CEBAAD852578A9004CB46F/$FILE/mo-anderson,jt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090691", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-27", - "case_names": "United States v. Staff Sergeant KIRBY B. MOSES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/114F8BAFD09D0F39852578A40068B643/$FILE/mo-moses,kb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090247", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-27", - "case_names": "United States v. Private E1 LARRY E. HENDERSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C7E674C7F9B04630852578A40068D5FC/$FILE/mo-henderson,le.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090613", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-27", - "case_names": "United States v. Private E1 JARED M. BOEH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E14EAB26EB7F33C2852578A40068C59D/$FILE/mo-boeh, jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090764", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-15", - "case_names": "United States v. Specialist JONATHAN D. BOOTH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BABD9ABF23669A2A852578770067FAFE/$FILE/mo-booth, jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080564", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-12", - "case_names": "United States v. Sergeant BERTTRAN L. TILLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B0A0328A0E9653EC85257872006F1A91/$FILE/mo-tiller, bl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080438", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-08", - "case_names": "United States v. Specialist WILLIAM S. PARKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6A7FCC8A006DFABB852578700065AB88/$FILE/mo-parker, ws.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090281", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-08", - "case_names": "United States v. Private E1 ANGELICA D. UPCHURCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8AA50FAA65991C418525787000656C10/$FILE/mo-upchurch, ad.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100630", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-07", - "case_names": "United States v. Private E2 JEREMY P. RERA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F779A1E3813900028525786C006E3554/$FILE/mo-rera, jp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090071", - "case_name_shorts": "" - }, - { - "case_dates": "2011-03-28", - "case_names": "United States v. Specialist NOEL L. VELORIA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CCA5B93AB15CB81F85257862004C11ED/$FILE/mo-veloria, nl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090483", - "case_name_shorts": "" - }, - { - "case_dates": "2011-03-21", - "case_names": "United States v. Private First Class JEFFREY A. DANIELS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1618026BF80066678525785E005773C3/$FILE/mo-daniels, ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20091071", - "case_name_shorts": "" - }, - { - "case_dates": "2011-03-07", - "case_names": "United States v. Specialist DEMETRICE K. BAKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F8FD9D5EBABB5C898525784D0073160F/$FILE/mo-baker, dk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100841", - "case_name_shorts": "" - }, - { - "case_dates": "2011-03-03", - "case_names": "United States v. First Lieutenant JEFFEREY M. FIORITO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8C4D794F5F5049D1852578490056DA86/$FILE/mo-fiorito, jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080535", - "case_name_shorts": "" - }, - { - "case_dates": "2011-02-24", - "case_names": "United States v. Staff Sergeant PEDRUS HELGENBERGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FC1D66CB6FB0353C85257847007A1A3E/$FILE/mo-helgenberger, p.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080560", - "case_name_shorts": "" - }, - { - "case_dates": "2011-02-17", - "case_names": "United States v. Specialist LAMEL D. BURLESON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E71D80FEE999ACA88525783F006D2B6D/$FILE/mo-burleson, ld.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020262", - "case_name_shorts": "" - }, - { - "case_dates": "2011-02-08", - "case_names": "United States v. Private First Class RONALD D. WASHINGTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D8F71D994F08554B8525783200759381/$FILE/mo-washington, rd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100961", - "case_name_shorts": "" - }, - { - "case_dates": "2011-02-03", - "case_names": "United States v. Lieutenant Colonel WILLIAM H. STEELE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CA20FB9C6393BEC985257831006624FB/$FILE/mo-steele, wh.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20071177", - "case_name_shorts": "" - }, - { - "case_dates": "2011-01-31", - "case_names": "United States v. Sergeant DAVID J. GIBSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3AA2E215257E0B9C8525782A005AAA69/$FILE/mo-gibson, dj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100937", - "case_name_shorts": "" - }, - { - "case_dates": "2010-12-22", - "case_names": "United States v. Private First Class DAVID E. RUTHERFORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/072137BCF47B02BD852578020052B0A7/$FILE/mo-rutherford, de.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090199", - "case_name_shorts": "" - }, - { - "case_dates": "2010-12-22", - "case_names": "United States v. Private E1 BOBBY D. MORRISSETTE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C0B2B5E45678125F8525782C0069C515/$FILE/mo-morrissette, bd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090166", - "case_name_shorts": "" - }, - { - "case_dates": "2010-12-10", - "case_names": "United States v. Sergeant ERIC FIGUEROAMARCIAL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6E050E1F1827A0908525781000526CC7/$FILE/mo-figueroamarcial, e.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090056", - "case_name_shorts": "" - }, - { - "case_dates": "2010-12-03", - "case_names": "United States v. Sergeamt MARK GILLIAM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/98198019C8F7773A852577F1004E8E2C/$FILE/mo-gilliam, m.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090907", - "case_name_shorts": "" - }, - { - "case_dates": "2010-11-30", - "case_names": "United States v. Specialist TRAVIS E. HOLLACE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F5F9A5AE438ECA8D852577ED0050A93E/$FILE/mo-hollace, te.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080083", - "case_name_shorts": "" - }, - { - "case_dates": "2010-11-30", - "case_names": "United States v. Lieutenant Colonel DOUGLAS K. WINCKELMANN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7D1B0A3B3584F886852577EC006A8119/$FILE/mo-wincklemann, dk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070243", - "case_name_shorts": "" - }, - { - "case_dates": "2010-11-08", - "case_names": "United States v. Specialist PHILLIP L. PIERCE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/047225504E95D98E852577D6004B599E/$FILE/mo-pierce, pl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080009", - "case_name_shorts": "" - }, - { - "case_dates": "2010-10-29", - "case_names": "United States v. Private E1 JOSEPH BALOGUN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7A50CE7A6CDF39FF852577CE004333D9/$FILE/mo-balogun, j.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080768", - "case_name_shorts": "" - }, - { - "case_dates": "2010-10-27", - "case_names": "United States v. Private E2 DEVON J. MOORE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B404DCEA4C383856852577CA00538E69/$FILE/mo-moore, dj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080795", - "case_name_shorts": "" - }, - { - "case_dates": "2010-09-30", - "case_names": "United States v. Sergeant AARON R. STANLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/765FC889FA96B948852577AF004B829D/$FILE/mo-stanley rs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050703", - "case_name_shorts": "" - }, - { - "case_dates": "2010-09-28", - "case_names": "United States v. Cadet MICHAEL J. MARTIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/023DDC35BC67919B852577AE004940BB/$FILE/mo-martin mj (reconsideration).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080519", - "case_name_shorts": "" - }, - { - "case_dates": "2010-09-13", - "case_names": "United States v. Specialist SHAUN K. BRASINGTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3FDCB6A20795680B8525779E00541213/$FILE/mo-brasington, sk (further review).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060033", - "case_name_shorts": "" - }, - { - "case_dates": "2010-09-10", - "case_names": "United States v. Warrant Officer One SHAWN A. ANDERSEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/30225FCD100E97508525779D005D1B6C/$FILE/mo-andersen, sa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080669", - "case_name_shorts": "" - }, - { - "case_dates": "2010-09-01", - "case_names": "United States v. Private E1 CLAYTON H. HONEYCUTT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ADB3D9B15575F6DC8525779200541039/$FILE/mo-honeycutt, ch.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080589", - "case_name_shorts": "" - }, - { - "case_dates": "2010-08-23", - "case_names": "United States v. Private E2 GABRIEL L. DELAGARZA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3209C6AE4CC087B485257789004B36A9/$FILE/mo-delagarza, gl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080891", - "case_name_shorts": "" - }, - { - "case_dates": "2010-08-19", - "case_names": "United States v. Specialist PATRICK C. MCGINNIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9060950ECAF1B0068525778500402AA3/$FILE/mo-mcginnis, pc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20071204", - "case_name_shorts": "" - }, - { - "case_dates": "2010-08-13", - "case_names": "United States v. Private E2 JONATHAN R. DARLING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/967157F59060D2EF85257781004F3565/$FILE/mo-darling, jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070449", - "case_name_shorts": "" - }, - { - "case_dates": "2010-08-12", - "case_names": "United States v. Sergeant KEVIN M. BENEFIEL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8739B6A92012D2868525777E0046EA8C/$FILE/mo-benefiel, km.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090411", - "case_name_shorts": "" - }, - { - "case_dates": "2010-08-11", - "case_names": "United States v. Specialist JEFFREY J. WHITE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/97F1F02AF9DF60BC852577810050EA09/$FILE/mo-white, jj (corrected copy).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061313", - "case_name_shorts": "" - }, - { - "case_dates": "2010-08-09", - "case_names": "United States v. Sergeant KIMBERLY E. DOBSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BE1FD666B373C5F18525777B0050D071/$FILE/mo-dobson, ke. (furthe review - corrected copy).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000098", - "case_name_shorts": "" - }, - { - "case_dates": "2010-07-28", - "case_names": "United States v. Private E1 CARROLL J. KIRK, III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B92945B775997A59852577700065DF78/$FILE/mo-kirk, cj (action on appeal)(corrected copy).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20100443", - "case_name_shorts": "" - }, - { - "case_dates": "2010-07-22", - "case_names": "United States v. Private First Class PHILIP T. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/799B9DCB7D4D451185257768005567AF/$FILE/mo-jones, pt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080484", - "case_name_shorts": "" - }, - { - "case_dates": "2010-07-20", - "case_names": "United States v. Private First Class PAUL J. BARSOTTI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4BAFBE1F17790BB2852577680055817B/$FILE/mo-barsotti, pj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080888", - "case_name_shorts": "" - }, - { - "case_dates": "2010-06-30", - "case_names": "United States v. Private First Class MAKISHA I. MORTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B29C83498668B8D88525775300503E88/$FILE/mo-morton, mi.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060458", - "case_name_shorts": "" - }, - { - "case_dates": "2010-06-01", - "case_names": "United States v. Private E1 MATTHEW E. JOHNSON (Corrected Copy)", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/01F3799B023619528525773500657C66/$FILE/mo-johnson, me (corrected).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20081165", - "case_name_shorts": "" - }, - { - "case_dates": "2010-05-26", - "case_names": "United States v. Staff Sergeant JOHN M. DIAMOND", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0518B5C7B1C6B27F852577310042F72B/$FILE/mo-diamond, jm (remand).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010761", - "case_name_shorts": "" - }, - { - "case_dates": "2010-05-20", - "case_names": "United States v. Sergeant ROBERT K. MILLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F5678551544A21B08525772A004166EE/$FILE/mo-miller, rk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090286", - "case_name_shorts": "" - }, - { - "case_dates": "2010-05-07", - "case_names": "United States v. Staff Sergeant ALAN E. PECK (Corrected Copy)", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E9420CFB98B4D7FF8525772100609F24/$FILE/mo-peck, ae (corrected).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080072", - "case_name_shorts": "" - }, - { - "case_dates": "2010-05-07", - "case_names": "United States v. Staff Sergeant ALAN E. PECK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D1D521FD8035078F8525771F004B7CAC/$FILE/mo-peck, ae.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080072", - "case_name_shorts": "" - }, - { - "case_dates": "2010-05-06", - "case_names": "United States v. Private E1 DARREN S. BLACKMON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AB5EBE6DDA47781E8525771C0043BB82/$FILE/mo-blackmon, ds.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090463", - "case_name_shorts": "" - }, - { - "case_dates": "2010-04-28", - "case_names": "United States v. Private E1 JOHN B. TURNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DE655F5B2977CACE852577140045CFAD/$FILE/mo-turner, jb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20081062", - "case_name_shorts": "" - }, - { - "case_dates": "2010-04-23", - "case_names": "United States v. Staff Sergeant RAYMOND L. GIROUARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E803BDA8A15872938525771100420FD0/$FILE/mo-girouard, rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070299", - "case_name_shorts": "" - }, - { - "case_dates": "2010-04-22", - "case_names": "United States v. Private E2 CY T. NEWMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1A24AEFA24939BF78525770E005047FB/$FILE/mo-newman, ct.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20091113", - "case_name_shorts": "" - }, - { - "case_dates": "2010-04-20", - "case_names": "United States v. Sergeant First Class JERRY PEARSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/333E5F0D0D35EE328525770C004D5825/$FILE/mo-pearson, jp jr (remand).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080802", - "case_name_shorts": "" - }, - { - "case_dates": "2010-04-15", - "case_names": "United States v. Private First Class CLIFFTON L. GALLOWAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/67BC13EB8D6D89D58525770A0044D642/$FILE/mo-galloway, cl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080833", - "case_name_shorts": "" - }, - { - "case_dates": "2010-04-08", - "case_names": "United States v. Staff Sergeant MARC A. KIRIOU", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5B01633DBAE28790852577030047C1FD/$FILE/mo-kiriou, ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20081064", - "case_name_shorts": "" - }, - { - "case_dates": "2010-04-03", - "case_names": "United States v. Private First Class KYLE M. WILLIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DB8F07204191336185257718004E7E42/$FILE/mo-willis, km.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20071339", - "case_name_shorts": "" - }, - { - "case_dates": "2010-03-26", - "case_names": "United States v. Private First Class DAVID C. ELLERBROCK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/85B6C4118A11C7E9852576F600602622/$FILE/mo-ellerbrock,dc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070925", - "case_name_shorts": "" - }, - { - "case_dates": "2010-03-25", - "case_names": "United States v. Private First Class STEVEN J. MULLIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8B3C443CF752DCAB852576F20054C06F/$FILE/mo-mullins,sj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090821", - "case_name_shorts": "" - }, - { - "case_dates": "2010-01-28", - "case_names": "United States v. Private DARRCHELLE D. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/67676512FD54B568852576BA00490AD2/$FILE/mo-johnson, dd..doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080776", - "case_name_shorts": "" - }, - { - "case_dates": "2010-01-11", - "case_names": "United States v. Private First Class NELSON L. COX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C51B1F38E884DF0D852576A9006DBA2E/$FILE/mo-cox, nl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080819", - "case_name_shorts": "" - }, - { - "case_dates": "2009-12-14", - "case_names": "United States v. Specialist CHRISTOPHER J. MATTHEWS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6EC3574BB1B899358525768D0051635E/$FILE/mo-matthews, cj (mo remand).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030404", - "case_name_shorts": "" - }, - { - "case_dates": "2009-12-14", - "case_names": "United States v. Private E1 SYDONNA A. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6034D361683A54048525768D00512209/$FILE/mo-jones, sa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060821", - "case_name_shorts": "" - }, - { - "case_dates": "2009-12-04", - "case_names": "United States v. Private E2 JOSEPH T. LAFFERTY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A904E5653ADB862585257685004C2922/$FILE/mo-lafferty, jt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080386", - "case_name_shorts": "" - }, - { - "case_dates": "2009-12-02", - "case_names": "United States v. Cadet LONNIE A. STORY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F3421D76F2F84CF3852576810049D38A/$FILE/mo-story, la.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061014", - "case_name_shorts": "" - }, - { - "case_dates": "2009-11-25", - "case_names": "United States v. Specialist JUSTIN D. THURSTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4095F14A9DC93E888525767E00493CEC/$FILE/mo-thurston, jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080871", - "case_name_shorts": "" - }, - { - "case_dates": "2009-11-19", - "case_names": "United States v. Specialist JOHN C. ALSTON (Corrected Copy)", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8C92A7AA045297EE8525767700489CE7/$FILE/mo-alston, jc (corrected copy).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080504", - "case_name_shorts": "" - }, - { - "case_dates": "2009-11-19", - "case_names": "United States v. Specialist JOHN C. ALSTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FD6E4349ECE75B9285257674004BEA79/$FILE/mo-alston, jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080504", - "case_name_shorts": "" - }, - { - "case_dates": "2009-11-10", - "case_names": "United States v. Private E2 JUSTIN T. KLOCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/43743234373ACA398525766C00493A27/$FILE/mo-kloch, jt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080788", - "case_name_shorts": "" - }, - { - "case_dates": "2009-10-30", - "case_names": "United States v. Private First Class JONATHAN M. TOTH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A535B12A6DF3D04C8525767000602D00/$FILE/mo-toth, jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20081016", - "case_name_shorts": "" - }, - { - "case_dates": "2009-10-22", - "case_names": "United States v. Sergeant E5 CHRISTOPHER G. VINES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BAB9BEA5AC52824B8525765800420045/$FILE/mo-vines, cg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080777", - "case_name_shorts": "" - }, - { - "case_dates": "2009-10-05", - "case_names": "United States v. Specialist SHAUN K. BRASINGTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/993C5D086D97DAD8852576470049ECE4/$FILE/mo-brasington,sk(mo remand).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060033", - "case_name_shorts": "" - }, - { - "case_dates": "2009-09-28", - "case_names": "United States v. Private E1 DARYUS C. GIPSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/546AB6EDBA01D2DA85257640004C48EB/$FILE/mo-gipson, dc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070521", - "case_name_shorts": "" - }, - { - "case_dates": "2009-09-10", - "case_names": "United States v. Private First Class LYNNDIE R. ENGLAND", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C816ED150D4FE4958525762E003DA9A7/$FILE/mo-england, lr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 987654321", - "case_name_shorts": "" - }, - { - "case_dates": "2009-08-31", - "case_names": "United States v. Private E2 FRANCIS H. PARKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1D523CE452202A8C852576250065A252/$FILE/mo-parker, fh.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080579", - "case_name_shorts": "" - }, - { - "case_dates": "2009-08-18", - "case_names": "United States v. Staff Sergeant SEAN G. MARKIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4269CD4EDCAC0AD38525761700426979/$FILE/mo-markis, sg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070580", - "case_name_shorts": "" - }, - { - "case_dates": "2009-08-18", - "case_names": "United States v. Private E2 RYAN J. CRANE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4CC75D618E25C8A6852576810059F8AA/$FILE/mo-crane, rj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080469", - "case_name_shorts": "" - }, - { - "case_dates": "2009-08-12", - "case_names": "United States v. Private First Class DAVID M. SIMMONS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1FDAF4D1BBCA7B9385257611003C5634/$FILE/mo-simmons, dm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070486", - "case_name_shorts": "" - }, - { - "case_dates": "2009-08-11", - "case_names": "United States v. Private First Class WILLIAM C. LUCAS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/67A7554F3DEA71C085257610003FFDD4/$FILE/mo-lucas, wc jr.doc.docx", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080036", - "case_name_shorts": "" - }, - { - "case_dates": "2009-08-10", - "case_names": "United States v. Staff Sergeant TONY D. RANSOM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E2FE5BAE6F6AA7308525760F0047D96C/$FILE/mo-ransom, td.doc.docx", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060591", - "case_name_shorts": "" - }, - { - "case_dates": "2009-07-24", - "case_names": "United States v. Sergeant TRAMMEL A.J. DAVIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2F0C31B5CFE4E0F2852576000049FA30/$FILE/mo-davis, taj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090450", - "case_name_shorts": "" - }, - { - "case_dates": "2009-07-14", - "case_names": "United States v. Staff Sergeant DANIEL ROSAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/79959F38B3ED19A78525760E00531C8A/$FILE/mo-rosas, d.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060075", - "case_name_shorts": "" - }, - { - "case_dates": "2009-06-30", - "case_names": "United States v. Private First Class MARIO A. COMPANY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/719B8757102E56CF852575E5005DAB16/$FILE/mo-company, ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070795", - "case_name_shorts": "" - }, - { - "case_dates": "2009-06-19", - "case_names": "United States v. Private E2 JUSTIN A. VOSICKY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D8D6D4903E729D52852575DE006622B0/$FILE/mo-vosicky, ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070874", - "case_name_shorts": "" - }, - { - "case_dates": "2009-06-15", - "case_names": "United States v. Private E1 QUANNA D. INLOW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D1D5F55D299525B6852575D80047E6D0/$FILE/mo-inlow, qd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20070239", - "case_name_shorts": "" - }, - { - "case_dates": "2009-06-08", - "case_names": "United States v. Specialist DAVID J. ROMINGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6ECD6C31548FEE2F852575D000403C3B/$FILE/mo-rominger, dj..doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080423", - "case_name_shorts": "" - }, - { - "case_dates": "2009-05-21", - "case_names": "United States v. Private First Class COREY R. CLAGETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1DD8474DB3341C50852575BE004FAC77/$FILE/mo-clagett, cr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070082", - "case_name_shorts": "" - }, - { - "case_dates": "2009-05-20", - "case_names": "United States v. Specialist JAIME E. PAGAN, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AF847301A543A7E5852575BD0042A7E1/$FILE/mo-pagan, jr, je.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080157", - "case_name_shorts": "" - }, - { - "case_dates": "2009-05-19", - "case_names": "United States v. Private First Class CALEB L. GRIFFEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F8A6148291BB0292852575BC004E94A4/$FILE/mo-griffee, cl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070629", - "case_name_shorts": "" - }, - { - "case_dates": "2009-05-18", - "case_names": "United States v. Sergeant ROBERT B. CLAYTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9D75468011FC39DF852575BB00543798/$FILE/mo-clayton, rb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040903", - "case_name_shorts": "" - }, - { - "case_dates": "2009-05-13", - "case_names": "United States v. Private First Class RONALD L. PARKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2EC8ED058F60D46E852575B6003FA1B8/$FILE/mo-parks, rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20090133", - "case_name_shorts": "" - }, - { - "case_dates": "2009-04-28", - "case_names": "United States v. Staff Sergeant KENNETH A. ZEPEDA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/355D0026E7B486EF852575A8005A4D5A/$FILE/mo-zepeda,ka.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080129", - "case_name_shorts": "" - }, - { - "case_dates": "2009-04-20", - "case_names": "United States v. Private First Class JEFFREY A. LORENZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/220D349B0D657C3D852575A600679087/$FILE/mo-lorenz,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061071", - "case_name_shorts": "" - }, - { - "case_dates": "2009-03-31", - "case_names": "United States v. Private E2 TIMOTHY W. DENNER (Corrected Copy)", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/719D0BE55E81F8628525758C005C4F55/$FILE/mo-denner, tw (corrected copy).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080265", - "case_name_shorts": "" - }, - { - "case_dates": "2009-03-30", - "case_names": "United States v. Sergeant FREDERICK C. HOUSE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A0E5C80C92BB2A908525758D00461052/$FILE/mo-house, fc.(Corrected Copy).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061064", - "case_name_shorts": "" - }, - { - "case_dates": "2009-03-30", - "case_names": "United States v. Private E2 ROBERT L. KIMBROUGH, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3D10868934BFEB738525758A0043F49D/$FILE/mo-kimbrough jr., rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080046", - "case_name_shorts": "" - }, - { - "case_dates": "2009-03-26", - "case_names": "United States v. Staff Sergeant CAMILO E. MEJIA-CASTILLO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1BDA27F10C95630185257586004D70BB/$FILE/mo-mejia-castillo, ce.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040654", - "case_name_shorts": "" - }, - { - "case_dates": "2009-03-18", - "case_names": "United States v. Specialist ROBERT C. HUNTZINGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CF3292A7FE2614888525757E00622679/$FILE/mo-huntzinger, rc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060976", - "case_name_shorts": "" - }, - { - "case_dates": "2009-02-20", - "case_names": "United States v. Staff Sergeant NORMAN R. HOTRUM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/299618661177187F852575670045E4D5/$FILE/mo-hotrum, nr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060649", - "case_name_shorts": "" - }, - { - "case_dates": "2009-02-04", - "case_names": "United States v. Private First Class CHARLES L. LANIER II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E93FE5E20C7521B68525755400430D9C/$FILE/mo-lanier II, c.l.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080296", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-30", - "case_names": "United States v. Staff Sergeant DONALD L. DITTO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A25EF8FD908DF7538525755100691C34/$FILE/mo-ditto, dl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061026", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-30", - "case_names": "United States v. Specialist CHRISTOPHER P. REMSBURG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AC58B2E665DBFE218525755100689559/$FILE/mo-remsburg, cp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070161", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-08", - "case_names": "United States v. Sergeant First Class RICKIE E. PARRISH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/62F8A689DF8DC1E48525753C004721A2/$FILE/mo-parrish, re.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020916", - "case_name_shorts": "" - }, - { - "case_dates": "2008-12-31", - "case_names": "United States v. First Sergeant KEVIN O. BELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0A996D22492045BD85257535005DA5E3/$FILE/mo-bell, ko.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060845", - "case_name_shorts": "" - }, - { - "case_dates": "2008-12-30", - "case_names": "United States v. Master Sergeant ROBERT T. TOUSSANT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/044DF392BCC1255785257535005DEF93/$FILE/mo-toussant, rt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080962", - "case_name_shorts": "" - }, - { - "case_dates": "2008-12-12", - "case_names": "United States v. Private First Class TYREEK D. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8A63801377B4F48B8525752000509790/$FILE/MO-Smith,TD.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061278", - "case_name_shorts": "" - }, - { - "case_dates": "2008-12-04", - "case_names": "United States v. Private DANIEL K. SCHNEIDER (Corrected Copy)", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9856A531E3140BB08525751D00530F8E/$FILE/mo-schneider, dk (corrected copy).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20071312", - "case_name_shorts": "" - }, - { - "case_dates": "2008-12-04", - "case_names": "United States v. Private DANIEL K. SCHNEIDER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0965C914DBA00DB585257516004FBFE8/$FILE/mo-schneider, dk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20071312", - "case_name_shorts": "" - }, - { - "case_dates": "2008-12-03", - "case_names": "United States v. Private E1 JOSEPH D. JACKSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/00C5FFA478AE05E28525751500634BC6/$FILE/mo-jackson, jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20080367", - "case_name_shorts": "" - }, - { - "case_dates": "2008-11-24", - "case_names": "United States v. Private First Class JASON P. PIRACINI (Corrected Copy)", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8657B34DB57484D5852575130043C557/$FILE/mo-piracini, jp (corrected copy).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070381", - "case_name_shorts": "" - }, - { - "case_dates": "2008-11-18", - "case_names": "United States v. Private First Class JEFFREY A. LORENZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/915085AF37F8541B8525750C0074D443/$FILE/mo-lorenz,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061071", - "case_name_shorts": "" - }, - { - "case_dates": "2008-10-31", - "case_names": "United States v. Private E1 MICHAEL E. FLYNN (2d Corrected Copy)", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DF42B2831D3F5F678525751500636ACC/$FILE/mo-flynn, me ( 2nd corrected copy).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061309", - "case_name_shorts": "" - }, - { - "case_dates": "2008-10-31", - "case_names": "United States v. Private E1 MICHAEL E. FLYNN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FA77A4F2607DD7DE852574F900457F98/$FILE/mo-flynn, me (corrected copy).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061309", - "case_name_shorts": "" - }, - { - "case_dates": "2008-10-21", - "case_names": "United States v. Specialist ALONZO P. STURINO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9D8BA7AABD850C81852574EB005D1221/$FILE/mo-sturino, ap.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20051425", - "case_name_shorts": "" - }, - { - "case_dates": "2008-09-30", - "case_names": "United States v. Private First Class MAKISHA I. MORTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BCBD682EEE2F3E7F852574D7005D33E7/$FILE/mo-morton, mi.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060458", - "case_name_shorts": "" - }, - { - "case_dates": "2008-09-29", - "case_names": "United States v. Sergeant RICARDO A. BARRON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/968AD927C5BFEABD852574D4004DFB0E/$FILE/mo-barron, ra.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060718", - "case_name_shorts": "" - }, - { - "case_dates": "2008-08-29", - "case_names": "United States v. Sergeant First Class SEAN P. BRIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5E0C035F38B63D41852574B80045224A/$FILE/mo-bright, sp.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020938", - "case_name_shorts": "" - }, - { - "case_dates": "2008-08-29", - "case_names": "United States v. Private First Class MARC B. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D742C56C57B8D40A852574B800456485/$FILE/mo-williams, mb.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070667", - "case_name_shorts": "" - }, - { - "case_dates": "2008-08-14", - "case_names": "United States v. Specialist LUIS E. PEREZNIEVES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1B89D5721BB9EEEF852574A6005B6548/$FILE/mo-pereznieves,le.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070653", - "case_name_shorts": "" - }, - { - "case_dates": "2008-08-07", - "case_names": "United States v. Colonel PATRICK REINERT, Military Judge &...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/549E91BC1DB6081D8525749E006B6581/$FILE/mo-reinert,p & US.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20071195 & ARMY 20071343", - "case_name_shorts": "" - }, - { - "case_dates": "2008-08-05", - "case_names": "United States v. Staff Sergeant ALBERTO B. MARTINEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BBF49E0702EE158E8525749C006CAC94/$FILE/mo-martinez,ab.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20080372", - "case_name_shorts": "" - }, - { - "case_dates": "2008-08-04", - "case_names": "United States v. Warrant Officer One DARRELL S. WELCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ECBBECEC8F0FAAF58525749C0058137C/$FILE/mo-welch, ds.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060516", - "case_name_shorts": "" - }, - { - "case_dates": "2008-07-31", - "case_names": "United States v. Specialist MIGUEL A. CAMPOS, JR. (Corrected Copy)", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B0F0DFCDB51B062E8525749B0040AA34/$FILE/mo-campos, ma.doc (Corrected Copy).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060301", - "case_name_shorts": "" - }, - { - "case_dates": "2008-07-29", - "case_names": "United States v. Chief Warrant Officer Four NEIL S. LUBASKY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BEE94A2AF7F33B7185257496003FA21F/$FILE/mofr-lubask, ns.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020924", - "case_name_shorts": "" - }, - { - "case_dates": "2008-06-30", - "case_names": "United States v. Sergeant ALFONSO J. HURTADO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A1CE4B7D1571BAC98525747A0051D1A4/$FILE/mo-hurtado, aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060258", - "case_name_shorts": "" - }, - { - "case_dates": "2008-06-30", - "case_names": "United States v. Private First Class KEITH ANDRE PORTER aka KEITH LYNN DAN...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CA685D1790018B1A85257479003E5DA0/$FILE/mo-porter,kep.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061129", - "case_name_shorts": "" - }, - { - "case_dates": "2008-06-30", - "case_names": "United States v. Private E1 NICHOLAS E. GRAVES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0D0BE6B2034DE63E8525747A00516735/$FILE/mo-graves, ne.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070899", - "case_name_shorts": "" - }, - { - "case_dates": "2008-06-27", - "case_names": "United States v. Staff Sergeant JOSEPH J. ROMERO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2053219F9C738F12852574780049A5BE/$FILE/mo-romero,jj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20051093", - "case_name_shorts": "" - }, - { - "case_dates": "2008-06-27", - "case_names": "United States v. Sergeant JOSE A. PADILLA-PORTILLO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7200A5249567823E8525747800491B41/$FILE/mo-padilla-portillo,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060590", - "case_name_shorts": "" - }, - { - "case_dates": "2008-06-26", - "case_names": "United States v. Specialist ALICIA S. BETHEA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/916EB1F77E861EF98525747800445627/$FILE/mo-bethea,as.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050763", - "case_name_shorts": "" - }, - { - "case_dates": "2008-06-23", - "case_names": "United States v. Private E1 JOSE D. VARGAS JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/18FD3EB4A208647C852574C7006592B3/$FILE/mo-vargas, jose d. sr..pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070361", - "case_name_shorts": "" - }, - { - "case_dates": "2008-06-18", - "case_names": "United States v. Private First Class ROBERT A. HAWRYSZCZUK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/19185805FC401F618525746D005BC796/$FILE/mo-hawryszczuk, ra.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060939", - "case_name_shorts": "" - }, - { - "case_dates": "2008-05-30", - "case_names": "United States v. Specialist JOHN VEGA II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/59BCD37BD9E1AFBF8525745C0065848D/$FILE/mo-vega,jv ii.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20071351", - "case_name_shorts": "" - }, - { - "case_dates": "2008-05-29", - "case_names": "United States v. Specialist STEVEN E. SPENCER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/09C78843FAA1F475852574580067A269/$FILE/mo-spencer,se.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060040", - "case_name_shorts": "" - }, - { - "case_dates": "2008-05-29", - "case_names": "United States v. Specialist JAMES A. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4E8A1781C312D732852574C7006576C5/$FILE/mo-smith, ja.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070488", - "case_name_shorts": "" - }, - { - "case_dates": "2008-05-21", - "case_names": "United States v. Private First Class JOSE A. FARFAN (2d Corrected Copy)", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EEBE1EE40123F41285257451003F8EDD/$FILE/mo-farfan,ja(remand for 1105s)(2d corrected).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070467", - "case_name_shorts": "" - }, - { - "case_dates": "2008-05-21", - "case_names": "United States v. Private E1 NICHOLAS B. SHAPIRO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/12E927D63B4E55CD852574510055B338/$FILE/mo-shapiro,nb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20071134", - "case_name_shorts": "" - }, - { - "case_dates": "2008-04-30", - "case_names": "United States v. Private First Class THOMAS WILKINS IV", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CDFE2D76DB7A34238525743B0070F988/$FILE/mo-wilkins,t iv.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20051373", - "case_name_shorts": "" - }, - { - "case_dates": "2008-04-29", - "case_names": "United States v. Private E2 KEVIN J. SIZEMORE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/57719A47310BF063852574440059727D/$FILE/mo-sizemore,kj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20051235", - "case_name_shorts": "" - }, - { - "case_dates": "2008-04-25", - "case_names": "United States v. Staff Sergeant HARVEY A. GARDINIER II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A92AC7B3677F4ACD8525743600647CEC/$FILE/mo-gardinier,ga ii.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020427", - "case_name_shorts": "" - }, - { - "case_dates": "2008-04-24", - "case_names": "United States v. Private First Class DANIEL R. RAYBON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8936D651B7D504CA852574360064693B/$FILE/mo-raybon,dr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061109", - "case_name_shorts": "" - }, - { - "case_dates": "2008-04-16", - "case_names": "United States v. Sergeant CHARLES E. MCANGUS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6099A422EBF2077A85257432005E5484/$FILE/mo-mcangus,ce.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070054", - "case_name_shorts": "" - }, - { - "case_dates": "2008-03-31", - "case_names": "United States v. Staff Sergeant ROBERT J. MEDINA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ECEDFAEB9095C2128525741E0064D438/$FILE/mo-medina,rj (remand).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040327", - "case_name_shorts": "" - }, - { - "case_dates": "2008-03-24", - "case_names": "United States v. Sergeant First Class DAVID R. THOMPSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E7003B7BE410038685257418005392AA/$FILE/mo-miller,bi (corrected).pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000342", - "case_name_shorts": "" - }, - { - "case_dates": "2008-03-24", - "case_names": "United States v. Private E1 BRANDON I. MILLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B5031384891E8C24852574170052F7AE/$FILE/mo-miller,bi.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060224", - "case_name_shorts": "" - }, - { - "case_dates": "2008-02-26", - "case_names": "United States v. Private First Class JARMEOKA L. GIST", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4E4D9DE86D5BF9E3852573FD004881ED/$FILE/mo-gist,j.l..doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050603", - "case_name_shorts": "" - }, - { - "case_dates": "2008-02-19", - "case_names": "United States v. Private E2 SHAUN F. O'NEAL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5A875B4566A39A24852573F50063C636/$FILE/mo-o'neal, s.f.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20051530", - "case_name_shorts": "" - }, - { - "case_dates": "2008-02-12", - "case_names": "United States v. Private First Class MAURICE S. DOW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2E9C4BFF7103CFF1852573EF0049CA22/$FILE/mo-dow, ms.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020005", - "case_name_shorts": "" - }, - { - "case_dates": "2008-02-01", - "case_names": "United States v. Private First Class PHILLIP J. JONES, II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2C62239D171C590F852573E5006A4345/$FILE/mo-jones, p.j.II.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070603", - "case_name_shorts": "" - }, - { - "case_dates": "2008-01-25", - "case_names": "United States v. Specialist IVAN AGUILAR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/10D3DD8957929FD8852573DE004272EE/$FILE/mo-aguilar,i.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20071149", - "case_name_shorts": "" - }, - { - "case_dates": "2008-01-25", - "case_names": "United States v. Sergeant STANLEY D. MORRIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C8C21027A747F335852573DE00434523/$FILE/mo-morris,sd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060944", - "case_name_shorts": "" - }, - { - "case_dates": "2008-01-22", - "case_names": "United States v. Private E2 JOSEPH R. GUERNSEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/559866BD26294C32852573D90045CAEF/$FILE/mo-guernsey.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061127", - "case_name_shorts": "" - }, - { - "case_dates": "2008-01-16", - "case_names": "United States v. Private First Class RICARDO T. CARTER, II (Corrected Copy...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E63DB47E0A52BC2D852573D4005B9CC1/$FILE/mo-CarterR2 (final corrected).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061115", - "case_name_shorts": "" - }, - { - "case_dates": "2007-12-19", - "case_names": "United States v. Speialist TOBY L. MCMILLAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E65AFE8345BBCCE1852573B700663935/$FILE/mo-mcmillan,tl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070076", - "case_name_shorts": "" - }, - { - "case_dates": "2007-12-18", - "case_names": "United States v. Private First Class JEFFEREY W. BELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B6174A6D1E1E0F62852573B5006D7051/$FILE/mo-Bell,jw(2nd corrected).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061353", - "case_name_shorts": "" - }, - { - "case_dates": "2007-11-30", - "case_names": "United States v. Specialist JASON E. HICKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A8BEFE9096800102852573A600757696/$FILE/mo-hicks,je.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060451", - "case_name_shorts": "" - }, - { - "case_dates": "2007-11-30", - "case_names": "United States v. Sergeant KENNETH W. CLARK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EC6DE1114A89AD4D852573A60075A6B8/$FILE/mo-clark,kw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20051285", - "case_name_shorts": "" - }, - { - "case_dates": "2007-11-30", - "case_names": "United States v. Private E1 SHAUN M. LUQUETTE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FD5CF74CD81E2647852573A600759503/$FILE/mo-luquette,sm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050745", - "case_name_shorts": "" - }, - { - "case_dates": "2007-11-20", - "case_names": "United States v. Staff Sergeant DEWAYNE L. LIVENGOOD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A841773D3DCEE3E78525739A005B7EEB/$FILE/mo-livengood,dl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030558", - "case_name_shorts": "" - }, - { - "case_dates": "2007-10-31", - "case_names": "United States v. Private First Class JUAN R. GUTIERREZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FDE6A5CD060DAA558525738A0077479D/$FILE/mo-gutierrez,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040596", - "case_name_shorts": "" - }, - { - "case_dates": "2007-10-10", - "case_names": "United States v. Staff Sergeant RODGER D. HARGIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A633C1EB3AE2DC2F8525737500537481/$FILE/mo-hargis,rd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060031", - "case_name_shorts": "" - }, - { - "case_dates": "2007-09-25", - "case_names": "United States v. Specialist MICHAEL A. LABRADOR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E9170372F969D56485257361004FFAC8/$FILE/mo-labrador,ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060453", - "case_name_shorts": "" - }, - { - "case_dates": "2007-09-20", - "case_names": "United States v. Private E1 KELLY B. JAUREGUI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/53D37EA93AB85CF08525735D0069A7AB/$FILE/mo-jauregui, kb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061057", - "case_name_shorts": "" - }, - { - "case_dates": "2007-09-17", - "case_names": "United States v. Private E1 ANTHONY R. LUCERO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D0795AB59C919CEC8525735A006FD375/$FILE/mo-lucero,ar.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020869", - "case_name_shorts": "" - }, - { - "case_dates": "2007-09-10", - "case_names": "United States v. Private E2 MICHELLE S. KARAJMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BD6C21EF77E3FEE08525735300518B86/$FILE/mo-karajman,ms.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20061003", - "case_name_shorts": "" - }, - { - "case_dates": "2007-08-30", - "case_names": "United States v. Private First Class THOMAS H. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1EB666CBAB82CF498525734D004D2AD8/$FILE/mo-thomas, jh.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20051515", - "case_name_shorts": "" - }, - { - "case_dates": "2007-08-07", - "case_names": "United States v. Sergeant CHARLES D. PALMER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6EDE193BA62304D185257330005F01C2/$FILE/mo-palmer, cd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050769", - "case_name_shorts": "" - }, - { - "case_dates": "2007-08-03", - "case_names": "United States v. Private E1 RODNEY J. MCDANIEL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/31B8D24B7895E57B85257330005EDBD8/$FILE/mo-mcdaniel, rj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060193", - "case_name_shorts": "" - }, - { - "case_dates": "2007-07-31", - "case_names": "United States v. Sergeant DAVID L. ECKARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/264FABF086C042388525732B00530150/$FILE/mo-eckard,dl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010870", - "case_name_shorts": "" - }, - { - "case_dates": "2007-07-31", - "case_names": "United States v. Private First Class NATHAN C. O'REILLY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/663C92CADB31FE0B8525732B00533E6E/$FILE/mo-o'reilly,nc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050681", - "case_name_shorts": "" - }, - { - "case_dates": "2007-07-31", - "case_names": "United States v. Private E1 PRINTESS D. CALLAWAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/43D609C2FD699F8F8525732B00532936/$FILE/mo-callaway,pd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050268", - "case_name_shorts": "" - }, - { - "case_dates": "2007-07-26", - "case_names": "United States v. Private E2 JASON L. EDWARDS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1FBFA71F7142749D85257325005D3EA2/$FILE/mo-edwards,jl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20051120", - "case_name_shorts": "" - }, - { - "case_dates": "2007-07-24", - "case_names": "United States v. Sergeant RYAN A. METIVIER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2A05067B4D3862358525732300513052/$FILE/mo-metivier,ra.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050615", - "case_name_shorts": "" - }, - { - "case_dates": "2007-07-20", - "case_names": "United States v. Specialist GARY McCARNS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/62C4B41426289B7F8525731E0062C93A/$FILE/mo-mccarns,g.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050762", - "case_name_shorts": "" - }, - { - "case_dates": "2007-06-25", - "case_names": "United States v. Private First Class EMILY M. HAMILTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0D5555694482688285257305006BA53C/$FILE/mor-hamilton,em.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050738", - "case_name_shorts": "" - }, - { - "case_dates": "2007-06-11", - "case_names": "United States v. Sergeant First Class ALVIN JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7B496444D5D5D5D3852572F700521A3F/$FILE/mo-jones,a.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041071", - "case_name_shorts": "" - }, - { - "case_dates": "2007-05-25", - "case_names": "United States v. Specialist ANDREW P. OBER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0CE83C625204FA1E852572E6005FF095/$FILE/mo-ober,ap.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040081", - "case_name_shorts": "" - }, - { - "case_dates": "2007-05-25", - "case_names": "United States v. Second Lieutenant JAVIER O. MORALEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7F51E29BCFF41363852572E6005F527B/$FILE/mo-moralez,jo.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060123", - "case_name_shorts": "" - }, - { - "case_dates": "2007-05-22", - "case_names": "United States v. Sergeant DOUGLAS W. EMMETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BB3CF53F51B926FF852572E4004F494C/$FILE/mo-emmett,dw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20041035", - "case_name_shorts": "" - }, - { - "case_dates": "2007-05-22", - "case_names": "United States v. Private First Class WARREN D. ARMAN II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A7044053CEB25ADD852572E4004F2177/$FILE/mo-arman,wd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20060693", - "case_name_shorts": "" - }, - { - "case_dates": "2007-05-18", - "case_names": "United States v. Private E2 JEFFERY B. DENNING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/48745F43324E5C96852572E200475D4F/$FILE/mo-denning,jb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030963", - "case_name_shorts": "" - }, - { - "case_dates": "2007-05-14", - "case_names": "United States v. Specialist SAMMI D. TAYLOR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/95937713570E87D5852572DC00494067/$FILE/mo-taylor,sd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050673", - "case_name_shorts": "" - }, - { - "case_dates": "2007-05-03", - "case_names": "United States v. Specialist DEANDRE L. WALTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CF0F29E7E755455E852572D000716DF2/$FILE/mo-walton,dl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011151", - "case_name_shorts": "" - }, - { - "case_dates": "2007-05-03", - "case_names": "United States v. Private First Class DAVID M. SANCHEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DA14228535D79F4F852572D000714BD3/$FILE/mo-sanchez,dm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050399", - "case_name_shorts": "" - }, - { - "case_dates": "2007-04-17", - "case_names": "United States v. Private E2 JOSEPH D. LAJEUNESSE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DD1A2A0860555DBA852572C10065A28C/$FILE/mo-lajeunesse,jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060385", - "case_name_shorts": "" - }, - { - "case_dates": "2007-03-29", - "case_names": "United States v. Private First Class STEVEN R. ORAMAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6D214D547D937F63852572AE0062E05D/$FILE/mo-oramas,sr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20051168", - "case_name_shorts": "" - }, - { - "case_dates": "2007-03-29", - "case_names": "United States v. Private First Class SELBY P. ETIBEK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/04D48ABCAA10731E852572AE00630CB4/$FILE/mo-etibeck,sp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050889", - "case_name_shorts": "" - }, - { - "case_dates": "2007-03-23", - "case_names": "United States v. Sergeant DAVID J. JACKSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7D95DACFF04CEF25852572AC00400D39/$FILE/mo-jackson,dj (C).doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20051165", - "case_name_shorts": "" - }, - { - "case_dates": "2007-03-20", - "case_names": "United States v. Specialist DANN R. LINTEAU", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1989DF9CC9218D31852572A4006704BD/$FILE/mo-linteau,dr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010926", - "case_name_shorts": "" - }, - { - "case_dates": "2007-03-07", - "case_names": "United States v. Specialist JOHN M. MURPHY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/474304EB79680E3E852572970063ACA5/$FILE/mo-murphy,jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20050948", - "case_name_shorts": "" - }, - { - "case_dates": "2007-02-20", - "case_names": "United States v. Specialist EDGAR D. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5B9B8EA9239E4F058525728800694E91/$FILE/mofr-jones,ed.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010856", - "case_name_shorts": "" - }, - { - "case_dates": "2007-02-16", - "case_names": "United States v. Specialist ANTHONY C. HADDOCK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FB8D33E9B99D0845852572840067C1B4/$FILE/mo-haddock,ac.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041319", - "case_name_shorts": "" - }, - { - "case_dates": "2007-02-13", - "case_names": "United States v. Sergeant TREBOR J. DUNN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3433B198C4BC0A6985257283006B4B96/$FILE/mo-dunn,tj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030107", - "case_name_shorts": "" - }, - { - "case_dates": "2007-02-09", - "case_names": "United States v. Staff Sergeant RODOLFO VASQUEZ-SANCHEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/52EC471DDC4ADF748525727D006ADC27/$FILE/mo-vasquez-sanchez,r.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040883", - "case_name_shorts": "" - }, - { - "case_dates": "2007-02-09", - "case_names": "United States v. Staff Sergeant GREGORY V. CARR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A944B4EF355684A88525727D006A7F11/$FILE/mo-carr,gv.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20041336", - "case_name_shorts": "" - }, - { - "case_dates": "2007-02-09", - "case_names": "United States v. Private E2 CHRISTOPHER S. SNIDER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0061FC33AC5239C98525727D006AB3BB/$FILE/mo-snider,cs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041043", - "case_name_shorts": "" - }, - { - "case_dates": "2007-01-24", - "case_names": "United States v. Specialist RAFAEL CANAS-GUTIERREZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D8AA8270C0BB9F908525726D0066DDB1/$FILE/mo-Canas-Gutierrez,r.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021285", - "case_name_shorts": "" - }, - { - "case_dates": "2007-01-23", - "case_names": "United States v. Specialist DUWAYNE M. THOMAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2EC8F0E704A2F7218525726C006BC7C1/$FILE/mo-thomas,dm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021181", - "case_name_shorts": "" - }, - { - "case_dates": "2007-01-22", - "case_names": "United States v. Specialist ANTON C. EDWIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4428EBEA38F855948525726B006755FE/$FILE/mo-edwin.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20050607", - "case_name_shorts": "" - }, - { - "case_dates": "2007-01-22", - "case_names": "United States v. Private E1 ADAM E. KAPLAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E69B9114034B67E48525726B006778F8/$FILE/mo-kaplan,ae.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20050531", - "case_name_shorts": "" - }, - { - "case_dates": "2007-01-18", - "case_names": "United States v. Private E1 AARON J. SILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/979C6DFB232B862485257267006713A5/$FILE/mo-sill,aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050888", - "case_name_shorts": "" - }, - { - "case_dates": "2007-01-08", - "case_names": "United States v. Sergeant PHILLIP R. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D8C4E97171B1024A8525725D006935EA/$FILE/mo-brown,pr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040087", - "case_name_shorts": "" - }, - { - "case_dates": "2006-12-22", - "case_names": "United States v. Private First Class JEREMY T. WILCOX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8CC1C765179D88718525724C005A5755/$FILE/mo-r-wilcox,jt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000876", - "case_name_shorts": "" - }, - { - "case_dates": "2006-12-13", - "case_names": "United States v. Private E1 WILLIAM H. EGGERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/737D783F38D0926A85257244004C9708/$FILE/mofr-eggers,wh.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20050393", - "case_name_shorts": "" - }, - { - "case_dates": "2006-12-07", - "case_names": "United States v. Specialist RICHIE R. MAISONET", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4BAFCE27FE578ADB852572650047AFA3/$FILE/mo-maisonet,rr.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060252", - "case_name_shorts": "" - }, - { - "case_dates": "2006-12-07", - "case_names": "United States v. Specialist EDWIN J. HARDEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/92135EE1F666ED2B8525723E006BFA3F/$FILE/mo-harden,ej.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040910", - "case_name_shorts": "" - }, - { - "case_dates": "2006-12-06", - "case_names": "United States v. Staff Sergeant CHRISTOPHER D. GOODMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B924881F375ACB198525723D0046CB3C/$FILE/mo-goodman,cd-C.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021215", - "case_name_shorts": "" - }, - { - "case_dates": "2006-11-30", - "case_names": "United States v. Staff Sergeant ANTHONY BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5150D14706CF0F3285257236005B0323/$FILE/mo-brown,a.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020983", - "case_name_shorts": "" - }, - { - "case_dates": "2006-11-30", - "case_names": "United States v. Private E1 CHRISTINE N. THOMPSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/85F95125706C184185257236006C950D/$FILE/mo-thompson,cn.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20060901", - "case_name_shorts": "" - }, - { - "case_dates": "2006-11-30", - "case_names": "United States v. Private E1 BRANDON S. PYBURN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4CD02C5BB248B68885257236006C606F/$FILE/mo-pyburn,bs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040483", - "case_name_shorts": "" - }, - { - "case_dates": "2006-11-22", - "case_names": "United States v. Private E1 YOSHUA Y. YHISREAL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/557B50636D2C0B3F8525722E00648970/$FILE/mo-yhisreal,yy.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20060087", - "case_name_shorts": "" - }, - { - "case_dates": "2006-11-21", - "case_names": "United States v. Private First Class ABSOLOM D. FANENE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EA20655F5E6C20348525722D0064FF01/$FILE/mo-fanene,ad.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20051389", - "case_name_shorts": "" - }, - { - "case_dates": "2006-11-06", - "case_names": "United States v. Private First Class ANAS KENZOU", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DF52329CB453A2A88525721E006770FE/$FILE/mo-Kenzou,a.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20050620", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-31", - "case_names": "United States v. Staff Sergeant ROXANNA C. THOMPSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/95A47832B343E25285257218006DD71D/$FILE/mo-thompson,rc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041250", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-31", - "case_names": "United States v. Private First Class MICHAEL S. FARROW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B6E4D0AC793BEAC685257218006D99FC/$FILE/mo-farrow,ms.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040055", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-31", - "case_names": "United States v. Private E2 SHAWN C. KINCHEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/485264E770B6D2E685257218006DB3FC/$FILE/mo-kinchen,sc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040707", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-27", - "case_names": "United States v. Specialist KRISTOFFER G. HALL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0732FB113E91C60985257214005FDDA6/$FILE/mo-hall,kg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030840", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-27", - "case_names": "United States v. Sergeant JEREMY T. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F2F494C9D7BACC5585257214005E9BDA/$FILE/mo-brown,jt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010461", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-27", - "case_names": "United States v. Private E1 VALMAN O. STEVENS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7BE91BD63477A5FE8525721400602296/$FILE/mo-stevens,vo.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031188", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-27", - "case_names": "United States v. Private E1 MARIO R. MARTINEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BFB9685516597EFA852572140060000F/$FILE/mo-martinez,mr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031049", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-26", - "case_names": "United States v. Private E2 DANIEL R. LOZANO III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/90BA76050971E725852572130062B5FC/$FILE/mo-lozano,dr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20041274", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-25", - "case_names": "United States v. Staff Sergeant WANDA C. TWEEDY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BF125C5B88D7A4F1852572120063818B/$FILE/mo-tweedy,wc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030584", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-18", - "case_names": "United States v. Private First Class TERREL L. LEWIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1CC19B3642E06A078525720B00645FCB/$FILE/mo-lewis,tl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030835", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-17", - "case_names": "United States v. Private First Class JOHN M. TAYLOR, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CF725CC9F283639E852572130045A0B9/$FILE/mo-taylor,jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041277", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-12", - "case_names": "United States v. Staff Sergeant STANLEY E. EDMOND", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/31B5B2F921DD98A78525720500665BEB/$FILE/mor-edmond,se.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900904", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-10", - "case_names": "United States v. Sergeant First Class RICKIE E. PARRISH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7B32B89AE9A32DD885257204003D69D9/$FILE/mofr-parrish,re.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020916", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-06", - "case_names": "United States v. Private GARRETT Q. ARRIETA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2A827881E9171AAC852571FF006262A5/$FILE/mo-arrieta,gq.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20051124", - "case_name_shorts": "" - }, - { - "case_dates": "2006-10-04", - "case_names": "United States v. Specialist MADELEINE S. DOLL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8ABE5EBD346D0ADC852571FD0061D4A7/$FILE/mo-doll,ms.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040591", - "case_name_shorts": "" - }, - { - "case_dates": "2006-09-29", - "case_names": "United States v. Staff Sergeant MICHAEL J. WENEK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3160D25953D0467C852571F80066F504/$FILE/mo-wenek,mj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021357", - "case_name_shorts": "" - }, - { - "case_dates": "2006-09-29", - "case_names": "United States v. Specialist FRIDAY O. AYENI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7EE52E8A1F5C910D852571F800660EB8/$FILE/mo-ayeni,fo.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030328", - "case_name_shorts": "" - }, - { - "case_dates": "2006-09-29", - "case_names": "United States v. Sergeant First Class HARRY J. COOPER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AC08C1A7BD3D941B852571F800662EE6/$FILE/mo-cooper,hj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050219", - "case_name_shorts": "" - }, - { - "case_dates": "2006-09-29", - "case_names": "United States v. Private First Class JESUS RIOS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C5227233DD3F2D25852571F8006653A5/$FILE/mo-rios,j.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020123", - "case_name_shorts": "" - }, - { - "case_dates": "2006-09-27", - "case_names": "United States v. Specialist JASON A. DONNELLY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6E4248EFEB34616E852571F600647464/$FILE/mo-donnelly,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031026", - "case_name_shorts": "" - }, - { - "case_dates": "2006-09-27", - "case_names": "United States v. Sergeant GABRIEL M. GANZAGAN II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5A15F8F3531F4439852571F60064AA6D/$FILE/mo-ganzagan,gm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY XXXXXXXXX", - "case_name_shorts": "" - }, - { - "case_dates": "2006-09-25", - "case_names": "United States v. Sergeant BRADLEY M. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6057D95C8A4E7794852571F400643549/$FILE/mo-johnson, bm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20051065", - "case_name_shorts": "" - }, - { - "case_dates": "2006-09-25", - "case_names": "United States v. Private E1 JOSHUA R. BARR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F93821FC61379DDE852571F40063F4F7/$FILE/mo-barr,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030090", - "case_name_shorts": "" - }, - { - "case_dates": "2006-09-22", - "case_names": "United States v. Sergeant SCOTT A. BUBER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D143A04383D54A56852571F10060C797/$FILE/mo-remand-buber,sa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20000777", - "case_name_shorts": "" - }, - { - "case_dates": "2006-09-18", - "case_names": "United States v. Private First Class BRIAN E. WORTHINGTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C94D28B3AD16A54A852571ED0062F26A/$FILE/mo-worthington,be.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040396", - "case_name_shorts": "" - }, - { - "case_dates": "2006-09-12", - "case_names": "United States v. Staff Sergeant TIMOTHY WARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AC32E43E5909C3EA852571E70067E9B7/$FILE/mo-ward,t-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 200000078", - "case_name_shorts": "" - }, - { - "case_dates": "2006-09-11", - "case_names": "United States v. Private E2 JEREMY M. PHILLIPPE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2BAAEE7D37740A14852571E600684DF7/$FILE/mo-remand-phillippe.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040616", - "case_name_shorts": "" - }, - { - "case_dates": "2006-09-07", - "case_names": "United States v. Private E1 ALAN M. CORBIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/752A08F63BB09F9A852571E300501B13/$FILE/mo-corbin,am.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050486", - "case_name_shorts": "" - }, - { - "case_dates": "2006-08-31", - "case_names": "United States v. Staff Sergeant ROBERT J. MEDINA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EB3D6192BD2D70E4852571DC003FF684/$FILE/mo-medina,rj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040327", - "case_name_shorts": "" - }, - { - "case_dates": "2006-08-31", - "case_names": "United States v. Specialist WILLIAM G. SPELLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/87CC33B5F45E570E852571DC004040CB/$FILE/mo-speller,wg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040676", - "case_name_shorts": "" - }, - { - "case_dates": "2006-08-31", - "case_names": "United States v. Private First Class TIMOTHY C. WRIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/69C3AB050C256EB5852571DC0040D4D9/$FILE/mo-wright,tc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040789", - "case_name_shorts": "" - }, - { - "case_dates": "2006-08-31", - "case_names": "United States v. Private E2 PATRICK A. FLOWERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0D11FD5F9D541379852571DC003F8B80/$FILE/mo-flowers,pa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050128", - "case_name_shorts": "" - }, - { - "case_dates": "2006-08-16", - "case_names": "United States v. Sergeant DERRICK D. MILTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E448BF5EF4A4658B852571CD0044E7F4/$FILE/mo-milton,dd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20050591", - "case_name_shorts": "" - }, - { - "case_dates": "2006-08-15", - "case_names": "United States v. Sergeant LAWRENCE D. SORDEN, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EE878774A91989DC852571CB0062F3D8/$FILE/mo-sorden,ld.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040467", - "case_name_shorts": "" - }, - { - "case_dates": "2006-08-11", - "case_names": "United States v. Sergeant JOHNNY D. DUNLAP", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E357B06EFF83E7E2852571CA00644A14/$FILE/mo-dunlap,jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000949", - "case_name_shorts": "" - }, - { - "case_dates": "2006-08-10", - "case_names": "United States v. Specialist TRACY V. FLAKES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F4B9351F3BFE45A3852571C60064694F/$FILE/mo-flakes,tv.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020698", - "case_name_shorts": "" - }, - { - "case_dates": "2006-08-10", - "case_names": "United States v. Private E1 LEO R. COLEMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/19F557BD1BBA7655852571C600644755/$FILE/mofr-coleman,lr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020699", - "case_name_shorts": "" - }, - { - "case_dates": "2006-08-09", - "case_names": "United States v. Sergeant DAVID P. BUSH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/72801B1A939F2947852571C500661C94/$FILE/mo-bush,dp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20041111", - "case_name_shorts": "" - }, - { - "case_dates": "2006-08-08", - "case_names": "United States v. Specialist THOMAS W. ROLLINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0F44D17F909FF4CA852571C400617B47/$FILE/mo-rollins,tw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040800", - "case_name_shorts": "" - }, - { - "case_dates": "2006-08-01", - "case_names": "United States v. Sergeant ALAA E. ALBAAJ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/69DCAD84A1CCD6C5852571BD0062107F/$FILE/mo-albaaj,ae.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20000121", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-31", - "case_names": "United States v. Specialist DANN R. LINTEAU", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/65478609C6D9858B852571BD004090F6/$FILE/mo-linteau,dr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20010926", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-27", - "case_names": "United States v. Staff Sergeant JOSEPH E. POSTMA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/02DDB812BC837DBA852571B80063058C/$FILE/mo-postma,je.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020514", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-27", - "case_names": "United States v. Sergeant KEVIN L. NEELEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E4FB9996FE96110F852571B80062D497/$FILE/mo-neeley,kl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021362", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-27", - "case_names": "United States v. Private First Class JERAINE K. GUSTAVE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F9C791CA592BC5C0852571B80062AB32/$FILE/mo-gustave,jk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040029", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-27", - "case_names": "United States v. Private E2 MARCUS L. RAGLAND, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C7FA326331009FCD852571B800633FBA/$FILE/mo-ragland,ml.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030995", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-26", - "case_names": "United States v. Sergeant LLOYD C. DANIELS III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C542781E3EA5E638852571B80043E747/$FILE/mo-daniels,lc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010088", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-25", - "case_names": "United States v. Chief Warrant Officer Two PATRICK A. MONETTE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F1C92803E1FB0715852571B6005FFBC1/$FILE/mor-monette,pa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020088", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-24", - "case_names": "United States v. Private First Class JOHN A. MOWRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C097448E3E0A5754852571B500640B6B/$FILE/mo-mowry,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050789", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-21", - "case_names": "United States v. Specialist GREGORY C. CHURCH, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2A1A59E78FAE67D4852571B20062FE55/$FILE/mo-church,gc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010509", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-21", - "case_names": "United States v. Private First Class RADAMUS F. CROWELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7FC5C339E9899EDE852571B50063D1C7/$FILE/mofr-crowell,rf.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040749", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-19", - "case_names": "United States v. Sergeant ORLANDO BUSTOSLOPEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/48CA34BE338119DC852571B10047AB89/$FILE/mo-bustoslopez,o.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030901", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-19", - "case_names": "United States v. Private E1 MICHAEL L. ADKISSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6CB40AEF9F4A4BDE852571B100478038/$FILE/mo-adkisson,ml.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040773", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-11", - "case_names": "United States v. Provate E1 RHOSHEEK N. PEARSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B9721A9FB00079AF852571A900449F01/$FILE/mo-pearson,rn.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040609", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-11", - "case_names": "United States v. Private E2 KENTORID L. GREEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/13C2A5219FFED887852571A900445840/$FILE/mo-green,kl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020644", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-07", - "case_names": "United States v. Specialist JESSIE L. DURHAM, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6D29253E4CF1FE7D852571A8004C0B49/$FILE/mo-durham,jl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040957", - "case_name_shorts": "" - }, - { - "case_dates": "2006-07-06", - "case_names": "United States v. Private E2 STEVIE REED, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D7A4D4E086E8E0EF852571A30063EDA5/$FILE/mo-reed2,s.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021225", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-30", - "case_names": "United States v. Private First Class ZEITORI B. HUIETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4D2AD500FB3844478525719D006EFBEE/$FILE/mo-huiett,zb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020725", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-30", - "case_names": "United States v. Private First Class JOSEPH C. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/32E634C3DB15CB1C8525719D006E1D85/$FILE/mo-jones,jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041034", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-30", - "case_names": "United States v. Private First Class Eddie L. Young, Jr.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E067CD686583CD9D8525719D006E43A9/$FILE/mo-Young,.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040963", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-30", - "case_names": "United States v. Private First Class ALTON K. TOM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FB309708F51242E18525719D006E6AC0/$FILE/mo-tom,a.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020419", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-29", - "case_names": "United States v. Staff Sergeant MELVIN LAMBERT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3BD961F67B97212C8525719C00636E40/$FILE/mo-lambert,m.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040449", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-29", - "case_names": "United States v. Private E1 JEREMY M. JAGLOWSKI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/419165C10B4371BF8525719D004C1043/$FILE/mo-Jaglowski,jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021023", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-29", - "case_names": "United States v. Private E1 CHRISTOPHER W. DELACRUZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A6D24DFA02F278258525719C0063504E/$FILE/mo-Delacruz,c.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040148", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-28", - "case_names": "United States v. Specialist OLUWAKEMI R. OKI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C25002FE4C2499FE8525719B006DF7A0/$FILE/mo-oki-2,or.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20050114", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-28", - "case_names": "United States v. Specialist DONALD E. GENTRY, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E5069EC29ED3B6448525719B006E1770/$FILE/mo-gentry,de.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040700", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-27", - "case_names": "United States v. Staff Sergeant KEVIN L. OLIVER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0F607BF64A1686D68525719A0060362E/$FILE/mo-oliver,kl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031133", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-26", - "case_names": "United States v. Sergeant STUART P. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/67B7024240E1DFC28525719900690480/$FILE/mo-johnson,sp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041089", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-23", - "case_names": "United States v. Specialist ANTHONY R. SUNFORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/760385A88585E142852571960061369D/$FILE/mo-sunford,ar.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040868", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-23", - "case_names": "United States v. Private E1 ROGER A. HEATH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/182650F26A36D0AF852571960060B393/$FILE/mo-heath,ra.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041113", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-23", - "case_names": "United States v. Private E1 ROBERT L. PATTISON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/22702E3F291CC4B0852571960060D4CC/$FILE/mo-pattison,rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031000", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-22", - "case_names": "United States v. Specialist MARCUS A. POWELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/818A35442EB5A0828525719500625708/$FILE/mo-powell,ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040841", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-22", - "case_names": "United States v. Specialist ALVYN L. AICHINGER IV", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3F355F0FFB91E1BA8525719500623614/$FILE/mo-aichinger,al.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040065", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-21", - "case_names": "United States v. Sergeant ANTHONY J. HOBERTY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/35A88A19C0E8C0D085257195005FE7D5/$FILE/mo-hoberty,aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030636", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-20", - "case_names": "United States v. Private First Class SHAPOUR MEGHDADI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/46E2C2FB7E288DA985257195005FC42E/$FILE/mo-meghdadi,s.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000029", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-19", - "case_names": "United States v. Private E2 ERIC R. THILMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9DB097925FF795D2852571940067CD8C/$FILE/mo-thilman,er.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050858", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-16", - "case_names": "United States v. Private First Class DANIEL COTTI, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/166AAE371088F9838525718F0060E033/$FILE/mofr-cotti,d.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021210", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-14", - "case_names": "United States v. Staff Sergeant KEITH C. REEDER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/19A321F0EC8759738525718E00502710/$FILE/mo-recon-reeder,kc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020161", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-14", - "case_names": "United States v. Specialist CHARLES R. WILKE, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0436244C9C7AD7358525718E0050571C/$FILE/mo-wilke, cr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050679", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-14", - "case_names": "United States v. Sergeant KIMBERLY E. DOBSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A9827FADCBF35D4D8525718E004FF888/$FILE/mo-dobson,ke.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20000098", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-13", - "case_names": "United States v. Specialist JAMISON E. NEIDLINGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B4A9C757A03A8C088525718E004FA49D/$FILE/mo-neidecker,cs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030179", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-12", - "case_names": "United States v. Staff Sergeant MICHAEL R. ZIEGLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E9B55720B0EFB9178525718E004F720C/$FILE/mo-ziegler,mr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030009", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-12", - "case_names": "United States v. Specialist AHYAN T. TYLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FE4053BB2C0D0C938525718E005CC237/$FILE/mo-tyler,at.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040180", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-12", - "case_names": "United States v. Private E2 LEON A. BARRETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7541551986F0DB338525718E004F3482/$FILE/mo-barrett,la.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020268", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-09", - "case_names": "United States v. Sergeant BRADLEY D. BERNDT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4DEC481F30DFDEBB8525718B006185B1/$FILE/mo-berndt,bd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031170", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-01", - "case_names": "United States v. Specialist JAMES L. JACKSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F1EA34B96A3995F78525718100448192/$FILE/mo-jackson,jl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021224", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-01", - "case_names": "United States v. Sergeant ADRIAN L. ALLEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/44597530DF5EF9F18525718100442505/$FILE/mo-allen,al.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030495", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-01", - "case_names": "United States v. Private First Class KEVIN M. MOSLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/434F977575C0B01D852571810044AB70/$FILE/mo-mosley,km.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030492", - "case_name_shorts": "" - }, - { - "case_dates": "2006-06-01", - "case_names": "United States v. Private E2 STEPHEN M. CALE, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5C30DA995E8222C68525718100444E09/$FILE/mo-cale,sm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040182", - "case_name_shorts": "" - }, - { - "case_dates": "2006-05-31", - "case_names": "United States v. Specialist TODD M. ROBINSHAW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B3C9C93D655E0E3C85257180003FCA32/$FILE/mo-robinshaw,tm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030527", - "case_name_shorts": "" - }, - { - "case_dates": "2006-05-31", - "case_names": "United States v. Specialist KEVIN P. STOESER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/69F3285E6240115885257180003FF3C3/$FILE/mo-stoeser,kp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030596", - "case_name_shorts": "" - }, - { - "case_dates": "2006-05-26", - "case_names": "United States v. Staff Sergeant JAMES M. MATHIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/626CBD3D136F24CB852571840053206D/$FILE/mo-mathis,jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040788", - "case_name_shorts": "" - }, - { - "case_dates": "2006-05-26", - "case_names": "United States v. Staff Sergeant DAVID O. BRAUBURGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/942B01103CD01517852571840052D4FB/$FILE/mo-brauburger,do.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020706", - "case_name_shorts": "" - }, - { - "case_dates": "2006-05-26", - "case_names": "United States v. Private First Class MICHAEL D. LUTZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8D91F9E988533FCB852571840052F829/$FILE/mofr-lutz,md.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030792", - "case_name_shorts": "" - }, - { - "case_dates": "2006-05-26", - "case_names": "United States v. Private E2 GREGORY D. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/425D3E8B5431430C8525718400534B71/$FILE/mo-smith,gd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030337", - "case_name_shorts": "" - }, - { - "case_dates": "2006-05-26", - "case_names": "United States v. Private E1 DACIA A. ARTHUR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A0930565FDEA0699852575C300421554/$FILE/mo-arthur, da.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20070683", - "case_name_shorts": "" - }, - { - "case_dates": "2006-05-25", - "case_names": "United States v. Specialist SAMUEL L. DEWITT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9EDAEB6742B5A0858525717900634799/$FILE/mo-dewitt,sl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20031281", - "case_name_shorts": "" - }, - { - "case_dates": "2006-05-22", - "case_names": "United States v. Private E1 CHAZ F. BURNEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/664ABA7434BD614A8525717A00434F49/$FILE/mo-burney, cf.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20031064", - "case_name_shorts": "" - }, - { - "case_dates": "2006-05-15", - "case_names": "United States v. Private E2 ANTHONY N. MENO (aka ANTHONYNOEL S. MENO)", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3756D827A3AABB13852571700040E01F/$FILE/mofr-meno,a.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20000733", - "case_name_shorts": "" - }, - { - "case_dates": "2006-05-09", - "case_names": "United States v. Specialist CODY L. OWENS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/71EAF970DB26D6BF852571690063190A/$FILE/mo-owens,cl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030814", - "case_name_shorts": "" - }, - { - "case_dates": "2006-05-09", - "case_names": "United States v. Private RODNEY G. LACER II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0ECFB55C2B1B97F785257169006674F1/$FILE/mo-lacer,rg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031039", - "case_name_shorts": "" - }, - { - "case_dates": "2006-05-06", - "case_names": "United States v. Private E2 JOSHUA C. ADAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6990D530C73F1F70852571710042389C/$FILE/mo-adams, jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20031038", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-28", - "case_names": "United States v. Staff Sergeant JAMES D. AGAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7452187139411DA08525715E0054F07E/$FILE/mo-agan,jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040970", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-28", - "case_names": "United States v. Private First Class SHAPOUR MEGHDADI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5317FE9526C41BD58525715E00552D00/$FILE/mo-meghdadi,s.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000029", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-28", - "case_names": "United States v. Private First Class CHRISTOPHER C. WHITE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/320F97FA0DB887AF8525715E00556694/$FILE/mo-white,cc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021322", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-26", - "case_names": "United States v. Private E1 MICHAEL S. TOTTEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DD1D5655B425943F8525715E0054CBDF/$FILE/mo-totten,ms.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040513", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-19", - "case_names": "United States v. Sergeant GENARO TREVINO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/50DD52EE89280A898525715500681AB5/$FILE/mo-trevino,g.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040144", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-18", - "case_names": "United States v. Private First Class LATANYA N. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6C3D1F6FA9411A1D852571540066FEE4/$FILE/mo-smith,ln.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040583", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-18", - "case_names": "United States v. Private E2 SHAWN K. AUGAR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9754BB52D895BD2A852571540066869F/$FILE/mo-augar,sk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030796", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-18", - "case_names": "United States v. Private E1 TERRILL M. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E21B405730630E9A852571540066C075/$FILE/mo-johnson,tm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031290", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-18", - "case_names": "United States v. Private E1 MICHAEL J. HERMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DEB33A2F4C297DF2852571540066A544/$FILE/mo-herman,mj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041293", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-18", - "case_names": "United States v. First Lieutenant AARON K. NESBITT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A345A0E936B6C2F4852571540066DD24/$FILE/mo-nesbitt,ak.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040037", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-10", - "case_names": "United States v. Specialist TRAVIS D. HOLMES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4A57FAFD3B3F6D308525714C00623E72/$FILE/mo-holmes,td.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010004", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-06", - "case_names": "United States v. Specialist CHRISTOPHER J. ROSSI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EF67DBDE5374BC0C852571480066131B/$FILE/mo-rossi,cj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040929", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-06", - "case_names": "United States v. Private First Class SALVADOR E. GONZALEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4060CC753326FA3E85257148006514ED/$FILE/mo-gonzalez,se.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020077", - "case_name_shorts": "" - }, - { - "case_dates": "2006-04-06", - "case_names": "United States v. Private First Class JOHN M. LAWSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5508EE6355A42E43852571480065EDB3/$FILE/mo-lawson,jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041109", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-31", - "case_names": "United States v. Specialist TREY A. GRAHAM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0601B1959E329C4B85257142006AFEF3/$FILE/mo-graham,ta.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030414", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-31", - "case_names": "United States v. Private First Class ANDRE E. KELLY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B9D44EF1EC8F030285257142006ADC81/$FILE/mo-kelly,ae.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040214", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-30", - "case_names": "United States v. Private E2 JAMES M. GOULD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8C5B738E48A3799585257141006B46E1/$FILE/mo-gould,jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030885", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-28", - "case_names": "United States v. Specialist EDWARD E. PEACOCK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3EE1F7F532DBE94E8525713F006A5531/$FILE/mo-peacock,ee.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030761", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-28", - "case_names": "United States v. Sergeant JAVIER J. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/653BD55E412957F38525713F006A7460/$FILE/mo-smith-jj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030910", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-22", - "case_names": "United States v. Staff Sergeant GUALBERTO ESPINO, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/517FDC68C54EA1C285257139005A6B2A/$FILE/mo-espino,g.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20051140", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-17", - "case_names": "United States v. Sergeant TIMOTHY J. MURCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C30A44B74D5D82D28525713400679BF0/$FILE/mo-murch,tj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040250", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-17", - "case_names": "United States v. Private First Class JAMES C. PRIESTER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/485376E480C5E63785257134006808D8/$FILE/mo-priester,jc-recon.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020576", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-15", - "case_names": "United States v. Specialist KELVIN M. STEADMAN, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0BFB1EC10E1A16CE85257132006B130A/$FILE/mo-steadman,km.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030804", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-15", - "case_names": "United States v. Private First Class RODERICK A. CORLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D5FCC9C47DAF80AD85257132006AE938/$FILE/mo-corley,ra.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031223", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-07", - "case_names": "United States v. Sergeant RICARDO G. GRIFFITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7426E0DADCC868518525712A006AC0DF/$FILE/mo-griffith,rg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040503", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-07", - "case_names": "United States v. Sergeant LENG SOK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0434993CD8149A988525712A006ADDD9/$FILE/mo-sok,l.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030221", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-06", - "case_names": "United States v. Staff Sergeant JAMES L. McCRAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9B497A46208C0A9D85257129005C13DA/$FILE/mo-mccray,jl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030102", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-03", - "case_names": "United States v. Staff Sergeant ALPHONSO L. SIMMONS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/70CC1011C04314758525712600659343/$FILE/mo-simmons,al.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20011090", - "case_name_shorts": "" - }, - { - "case_dates": "2006-03-03", - "case_names": "United States v. Specialist IVAN R. SHARON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9DDDE9E4BAF738BC8525712600657696/$FILE/mo-sharon,ir.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030118", - "case_name_shorts": "" - }, - { - "case_dates": "2006-02-23", - "case_names": "United States v. Specialist AARON J. MARTINEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/33F8B0B2EAFCE12B852571260065519A/$FILE/mo-martinez,aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020641", - "case_name_shorts": "" - }, - { - "case_dates": "2006-02-17", - "case_names": "United States v. Private First Class BRANDON D. FLOWERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E7D267782096364B852571180062A470/$FILE/mo-flowers,bd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041169", - "case_name_shorts": "" - }, - { - "case_dates": "2006-02-16", - "case_names": "United States v. Staff Sergeant KEITH C. REEDER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/31D5216B1E8847AE8525711700667117/$FILE/mo-reeder,kc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020161", - "case_name_shorts": "" - }, - { - "case_dates": "2006-02-14", - "case_names": "United States v. Specialist JEREMY D. RILEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/113FF6E5F8EF7AB685257116004E4472/$FILE/mo-riley,jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020176", - "case_name_shorts": "" - }, - { - "case_dates": "2006-02-13", - "case_names": "United States v. Specialist JOSEPH E. DOWDY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6B3B2905F5A847CD8525711400681069/$FILE/mo-dowdy,je.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041112", - "case_name_shorts": "" - }, - { - "case_dates": "2006-02-13", - "case_names": "United States v. Private First Class ANTONIO A. ANDERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9C48F33C7203863E852571140067EAB0/$FILE/mo-anderson,aa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030802", - "case_name_shorts": "" - }, - { - "case_dates": "2006-02-12", - "case_names": "United States v. Specialist LUCAS W. STIMPSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/88CA84C4D5CB7F4C852571140068418E/$FILE/mo-stimpson,lw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040060", - "case_name_shorts": "" - }, - { - "case_dates": "2006-02-10", - "case_names": "United States v. Private E1 LEO J. JOHNSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/14D175277B340D728525711100680212/$FILE/mo-johnson,lj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20041304", - "case_name_shorts": "" - }, - { - "case_dates": "2006-02-09", - "case_names": "United States v. Captain LUIS R. AYALA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6B7E22EEF945C51A85257110006CE013/$FILE/mo-ayala,lr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020717", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-31", - "case_names": "United States v. Specialist CLAUDE E. MORINGS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BEEE7D656A7A7EE78525710700632ACB/$FILE/mo-morings,ce.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020875", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-31", - "case_names": "United States v. Private E1 CHARLES A. DIPIETRO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C42913E2EFE2933585257107006284CC/$FILE/mo-dipietro,ca.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030188", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-31", - "case_names": "United States v. Chief Warrant Officer Four NEIL S. LUBASKY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/32A1153DBB2655F0852571070062B040/$FILE/mo-lubasky,ns.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020924", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-31", - "case_names": "United States v. Captain JOSEPH F. PIOTROWSKI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0BDD4B51DECF8F7B852571070063475A/$FILE/mo-piotrowski,jf.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010721", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-30", - "case_names": "United States v. Specialist DEANDRE L. WALTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F9C47F63B5634CFE85257106006D95DD/$FILE/mo-walton,dl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011151", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-30", - "case_names": "United States v. Sergeant JESUS SANTANA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DFAEB993166D62A085257106006D15C5/$FILE/mo-santana,j.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040312", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-30", - "case_names": "United States v. Sergeant FRANCISCO J. NUNEZ-FLORES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E1DC4379217531F185257106006CF1A7/$FILE/mo-nunez-flores,fj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040278", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-27", - "case_names": "United States v. Specialist DAVIDEON R. GUSTAVIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E280E7F80DDEC3F48525710300528EB9/$FILE/mo-gustavis,d.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20031119", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-26", - "case_names": "United States v. United States v. Private E2 DAVID A. CAIN, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8F2CB62FC3C10B9F85257102006FEC73/$FILE/mo-cain,d..doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030886", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-26", - "case_names": "United States v. Specialist DAVID A. LANSDALE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/57597084CE4952268525710200704076/$FILE/mo-Lansdale,d.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021121", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-26", - "case_names": "United States v. Specialist BOBBY L. ADAMS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2B95FD0C81B34CE48525710200702615/$FILE/mo-adams-2.b.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020065", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-26", - "case_names": "United States v. Private E1 CALEB E. BELL, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2F5ADA47449BD91A852571020070102E/$FILE/mo-bell.doc(1105),c..doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020484", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-24", - "case_names": "United States v. Private First Class CHRISTOPHER WILSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D88016E60725227385257100006803A0/$FILE/mo-Wilson,C.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030317", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-18", - "case_names": "United States v. SSG Maximilliane MERRIWEATHER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/516D208DCD60192D852570FF00649ECA/$FILE/mo-merriweather,m.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030643", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-17", - "case_names": "United States v. Private First Class CHANCE S. NEIDECKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9C70C85899D83737852570F9006BC387/$FILE/mo-neidecker,cs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030813", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-13", - "case_names": "United States v. Specialist DANIEL F. TUIFAGU", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/424CCAA38D5D491C852570F500568030/$FILE/mo-tuifagu,df.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040934", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-13", - "case_names": "United States v. Private First Class ANTHONY J. LYNCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CEBD8CC389B94557852570F500565BE1/$FILE/mofr-lynch,aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030602", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-12", - "case_names": "United States v. Sergeant First Class LUIS A. JUSTINIANO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6D177026E2BF33D4852570F500476EE3/$FILE/mo-justiniano,la.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041313", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-10", - "case_names": "United States v. Private E1 ROBERT E. BLAND", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/40AB79DA3FFBA476852570F20068819C/$FILE/mo-bland,re.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030787", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-10", - "case_names": "United States v. Private E1 LEO R. COLEMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7328EE4161F819E2852570F20068C353/$FILE/mo-coleman,lr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020699", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-10", - "case_names": "United States v. Private E1 ERIC S. FISCHER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/480911F045CCB159852570F20068F944/$FILE/mo-fischer,es.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030828", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-06", - "case_names": "United States v. Specialist RICHARD K. REMBERT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9BC629BB5E9D9549852570F10050BFD5/$FILE/mo-rembert,rk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20011082", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-06", - "case_names": "United States v. Specialist DAVID T. STARNS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2CC76019897095D5852570F10050EBCC/$FILE/mo-Starns,dt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031204", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-06", - "case_names": "United States v. Private JOHN W. BURDESHAW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4C9415FCB53B0CF6852570F1005092D9/$FILE/mo-burdeshaw,jw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040772", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-04", - "case_names": "United States v. Private First Class RICO L. KNIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D1EB2D16B579FD5C852570EC00544C4F/$FILE/mo-knight,rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021382", - "case_name_shorts": "" - }, - { - "case_dates": "2006-01-04", - "case_names": "United States v. Private First Class JAMES C. PRIESTER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BBC51EC02793113B852570EC00547953/$FILE/mo-priester,jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020576", - "case_name_shorts": "" - }, - { - "case_dates": "2005-12-23", - "case_names": "United States v. Master Sergeant TREVOR A. DELGADO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BA16C9D4B53D5E2D852570E0006E77F3/$FILE/mo-delgado,t.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020929", - "case_name_shorts": "" - }, - { - "case_dates": "2005-12-19", - "case_names": "United States v. Private First Class BARRY A. CHANEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6DE174961DA5A6C9852570DC006F793B/$FILE/mo-chaney.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040519", - "case_name_shorts": "" - }, - { - "case_dates": "2005-12-16", - "case_names": "United States v. Private E2 MARVIN E. LEWIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6760F8B656A402D4852570DC006F41DF/$FILE/mo-LewisMarvin.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010765", - "case_name_shorts": "" - }, - { - "case_dates": "2005-12-14", - "case_names": "United States v. Specialist RASHEIKA R. CARTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A83E617C4C58B07C852570D80046DDD2/$FILE/mo-carter,rr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030475", - "case_name_shorts": "" - }, - { - "case_dates": "2005-12-08", - "case_names": "United States v. Sergeant ADAM B. HODGE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/251AC6CB8722112E852570D1006D6CC2/$FILE/mo-hodge,ab.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010656", - "case_name_shorts": "" - }, - { - "case_dates": "2005-12-08", - "case_names": "United States v. Private First Class JOSHUA J. PARISI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FDEE267DCA3D32BE852570D1006DB59C/$FILE/mo-parisi,jj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020970", - "case_name_shorts": "" - }, - { - "case_dates": "2005-12-08", - "case_names": "United States v. Private First Class JOHN D. FOLAND", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D89D0C29B9BA99FA852570D1006D3CDB/$FILE/mo-foland,jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031063", - "case_name_shorts": "" - }, - { - "case_dates": "2005-11-29", - "case_names": "United States v. Staff Sergeant DOUGLAS M. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/24732CA4204E0293852570C80067D28F/$FILE/mo-Smith,dm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010842", - "case_name_shorts": "" - }, - { - "case_dates": "2005-11-29", - "case_names": "United States v. Private E1 PHILIP R. SWANSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E9F95EB47677FAD8852570C80067FD39/$FILE/mo-swanson,pr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021189", - "case_name_shorts": "" - }, - { - "case_dates": "2005-11-29", - "case_names": "United States v. Cadet JUSTIN L. BURTH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/295DC940FD8B1EF3852571AF00532591/$FILE/mo-burth,jl-c.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031218", - "case_name_shorts": "" - }, - { - "case_dates": "2005-11-29", - "case_names": "United States v. Cadet JUSTIN L. BURTH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0ACED82D7901FF78852570C80067AB1F/$FILE/mo-burth,jl-c.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031218", - "case_name_shorts": "" - }, - { - "case_dates": "2005-11-23", - "case_names": "United States v. Staff Sergeant MICHAEL T. CALDWELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7E56CA0FAF41CC1C852570C200619673/$FILE/mo-caldwell,mt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010737", - "case_name_shorts": "" - }, - { - "case_dates": "2005-11-23", - "case_names": "United States v. Private First Class DENNIS J. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/32E4E93F4D4E4F2D852570C2006176DC/$FILE/mo-brown,dj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040237", - "case_name_shorts": "" - }, - { - "case_dates": "2005-11-23", - "case_names": "United States v. Private E2 RICHARD A. ERLENMEYER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/11EAC9DB44C269D8852570C20061BE1F/$FILE/mo-erlenmeyer,ra.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030964", - "case_name_shorts": "" - }, - { - "case_dates": "2005-11-22", - "case_names": "United States v. Private E2 MARK A. NEELEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B13D0CE9487C7F1E852570C100675A1A/$FILE/mo-neeley,ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020971", - "case_name_shorts": "" - }, - { - "case_dates": "2005-11-21", - "case_names": "United States v. Staff Sergeant RAY T. LEAK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/21FF231BCF0B4E6B852570C000695F8E/$FILE/mo-leak,rt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000356", - "case_name_shorts": "" - }, - { - "case_dates": "2005-11-21", - "case_names": "United States v. Private First Class RADAMUS F. CROWELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/31D99F03AAA537AC852570C000680A5C/$FILE/mo-crowell,rf.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040749", - "case_name_shorts": "" - }, - { - "case_dates": "2005-11-17", - "case_names": "United States v. Staff Sergeant JAMES E. HOFFMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/987F10D779604803852570BC00686071/$FILE/mo-hoffman,je.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020385", - "case_name_shorts": "" - }, - { - "case_dates": "2005-11-16", - "case_names": "United States v. Private First Class DANIEL COTTI, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/994EF3B6E8D311A7852570BB006B1F3F/$FILE/mo-cotti,d.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021210", - "case_name_shorts": "" - }, - { - "case_dates": "2005-11-10", - "case_names": "United States v. Sergeant SHINAKA M. MURRAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E7B763DB9A6B7741852570BB006AF4FF/$FILE/mo-murray,sm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031051", - "case_name_shorts": "" - }, - { - "case_dates": "2005-10-31", - "case_names": "United States v. Specialist DAVID L. MOTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/46F6330A5EBFD84F852570AB006464C8/$FILE/mo-moter, dl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040730", - "case_name_shorts": "" - }, - { - "case_dates": "2005-10-31", - "case_names": "United States v. Private First Class JOSHUA A. GREGORY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FC684F3396C63E3C852570AB0064313E/$FILE/mo-gregory,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020364", - "case_name_shorts": "" - }, - { - "case_dates": "2005-10-31", - "case_names": "United States v. Private E1 AARON L. BROKENBOROUGH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6667324183E9D877852570AB006D6013/$FILE/mo-brokenborough,al.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040986", - "case_name_shorts": "" - }, - { - "case_dates": "2005-10-28", - "case_names": "United States v. Specialist VANCE J. ROGERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/42F76AC7575ED75E852570A80065C787/$FILE/mo-rogers,vj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021167", - "case_name_shorts": "" - }, - { - "case_dates": "2005-10-28", - "case_names": "United States v. Specialist JOHN C. MCALLISTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/71257BB212BDD60E852570A80065A090/$FILE/mofr-mcallister,jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601134", - "case_name_shorts": "" - }, - { - "case_dates": "2005-10-27", - "case_names": "United States v. Sergeant JAMES C. LANE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5A7C42DC6A528509852570A70066B6F1/$FILE/mo-lane,jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031033", - "case_name_shorts": "" - }, - { - "case_dates": "2005-10-17", - "case_names": "United States v. Staff Sergeant RANDY L. HART", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A6F8DD905926B56D852570AB00650796/$FILE/mofr-hart,rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040133", - "case_name_shorts": "" - }, - { - "case_dates": "2005-10-13", - "case_names": "United States v. Specialist SETH E. BOESE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2F93FC656ED668458525709A0066007F/$FILE/mo-boese,se.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021154", - "case_name_shorts": "" - }, - { - "case_dates": "2005-10-11", - "case_names": "United States v. Specialist JOHN T. TREVINO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D88AEF860BCF707E85257097006832B4/$FILE/mo-trevino,jt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030353", - "case_name_shorts": "" - }, - { - "case_dates": "2005-10-07", - "case_names": "United States v. Staff Sergeant DANIEL VILLARREAL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FA0B1966CC411E9C85257093005D3AF1/$FILE/mofr-villarreal,d.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20001108", - "case_name_shorts": "" - }, - { - "case_dates": "2005-10-06", - "case_names": "United States v. Specialist JOSEPH R. THOMAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EC2AAA4CE75402CE852570920050AAAA/$FILE/mo-thomas,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041235", - "case_name_shorts": "" - }, - { - "case_dates": "2005-10-06", - "case_names": "United States v. Private E2 NOLAND D. WAITHE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/409236465AE170A2852570920050D982/$FILE/mo-waithe,nd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011101", - "case_name_shorts": "" - }, - { - "case_dates": "2005-10-05", - "case_names": "United States v. Private E1 SAMUEL T. HUTTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B28F03315471D8278525709200507FAD/$FILE/mo-hutton,st.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020507", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-29", - "case_names": "United States v. Specialist TERRON S. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/86C8A4A6BD802FB48525708C003F7349/$FILE/mo-johnson,ts.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030827", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-29", - "case_names": "United States v. Private First Class DANIEL R. MORRIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8582B6CCBC4E2F348525708C003FA09C/$FILE/mo-morris, dr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20041140", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-28", - "case_names": "United States v. Private E2 SINGNHOTH A. BOUNMY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/13A9A08C1BA0BFD18525708A005EF6A7/$FILE/mo-Bounmy,sa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021303", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-28", - "case_names": "United States v. First Lieutenant PATRICIA E. FOLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9F6F0D12C6FC8CD38525708A005F1B51/$FILE/mo-foley,pe.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010955", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-27", - "case_names": "United States v. Specialist JEREMIAH I. KING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1DADF1F193DE43508525708900622366/$FILE/mo-king,ji.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010532", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-27", - "case_names": "United States v. Private E2 JASMINE R. LEWIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/76EC77EC1D4A96D985257089006275CF/$FILE/mo-lewis,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030927", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-27", - "case_names": "United States v. Private E1 PATRICK E. DAVIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/50D875DA46CE1D8F852570890061FE58/$FILE/mo-davis,pe.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030192", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-23", - "case_names": "United States v. Specialist ERNEST L. PASTRAN, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/076B4E584430E3218525708500601442/$FILE/mo-pastran,el.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020710", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-23", - "case_names": "United States v. Private First Class DANIEL R. COFFMAN, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BDBA2BD50DC723DB85257085005FC0DD/$FILE/mo-coffman,dr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010692", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-23", - "case_names": "United States v. Private E1 SHANE N. DEBRULAR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C3D09764C7DF397385257085005FE786/$FILE/mo-debrular,sn.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030454", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-21", - "case_names": "United States v. Staff Sergeant SIM DILL IV", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A8889B2F39AC05D085257083005D20DA/$FILE/mo-dill,s.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20011104", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-21", - "case_names": "United States v. Private E1 HASSAN M. CHEBARO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AEB386A9982BF3CC85257083005CF9B5/$FILE/mo-chebaro,hm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030838", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-20", - "case_names": "United States v. Private E1 SIDNEY E. HODGE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7C5A6F160540717485257083005CC26C/$FILE/mo-hodge,se.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040163", - "case_name_shorts": "" - }, - { - "case_dates": "2005-09-16", - "case_names": "United States v. Staff Sergeant RUBEN ESCAMILLA, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EB08306E38619FA58525707E00678A50/$FILE/mo-escamilla,r.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040803", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-31", - "case_names": "United States v. Private First Class MATTHEW B. MELLOTT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/05E4E95E8E768B178525706E0066FCF3/$FILE/mo-mellott,mb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040337", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-29", - "case_names": "United States v. Private First Class LASHONDA M. POLLACK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/98FA719978BF486D8525706C004C411F/$FILE/mo-pollack,lm.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020663", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-29", - "case_names": "United States v. Private E1 JASON M. COX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/474302D0F4B56CFE8525706C004C1C8C/$FILE/mo-cox,jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021049", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-25", - "case_names": "United States v. Private E1 JOHN M. CARTY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9BAE10C15FF6E3EF852570C800692098/$FILE/mo-carty,jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20041155", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-24", - "case_names": "United States v. Specialist MAXIE E. RICHARDS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A30A727FD43D3DA68525706700600FA8/$FILE/mo-richards,me.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030339", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-24", - "case_names": "United States v. Specialist CHRISTOPHER JOHNSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/85FE5BD64056C66585257067005FC793/$FILE/mo-johnson,c.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20050233", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-24", - "case_names": "United States v. Specialist BRYAN J. THOMAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FCDA033C1201636E8525706700603ABC/$FILE/mo-thomas,bj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021374", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-24", - "case_names": "United States v. Private First Class KENNETH J. MACLEAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A2C2733035D0598B85257067005FF131/$FILE/mo-maclean,kj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030915", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-24", - "case_names": "United States v. Private E2 RASHARD C. JACKSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/72C34DAAC9E1B17785257067005FA073/$FILE/mo-jackson,rc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20010355", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-22", - "case_names": "United States v. Specialist SEANRIQUE R. DINKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B2D4A540651F547985257065006034FC/$FILE/mo-dinkins,sr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030494", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-22", - "case_names": "United States v. Private First Class KEITH D. BULLOCK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/95CBD704CAF573DB8525706500601193/$FILE/mo-bullock-kd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021240", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-17", - "case_names": "United States v. Private First Class ANDREW B. JUDY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CA8B9EBC58CABDF18525706000660CF4/$FILE/mo-judy,ab.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030062", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-16", - "case_names": "United States v. Specialist CLINTON D. VANDENBERG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/65C77037286DA9DC8525706000458298/$FILE/mo-vandenberg,cd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020991", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-15", - "case_names": "United States v. Staff Sergeant DONALD M. PRESTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1D6EA9829AF2E3488525705E0065A911/$FILE/mo-preston,dm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030499", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-15", - "case_names": "United States v. Private ADAM D. ELLINGSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6FAEB81BF8F18E208525705E00658D15/$FILE/mo-ellingson,ad.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030311", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-08", - "case_names": "United States v. Specialist LEROY NORRIS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F02304E46347A18F852570570050D40A/$FILE/mo-norris,l.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20041060", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-08", - "case_names": "United States v. Specialist JOSEPH W. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CCC50CDC4610C8FA8525705700505965/$FILE/mo-johnson,jw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030849", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-08", - "case_names": "United States v. Specialist DANIEL M. SHERRIFF", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0B16BAEBA2F75B1485257057005129B1/$FILE/mo-sherrirf,dm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030673", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-08", - "case_names": "United States v. Sergeant First Class CLEO SOUTHALL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DA045EDED83BFD90852570570051B7E7/$FILE/mo-southall,c.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020618", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-08", - "case_names": "United States v. Private E1 SONIA OSBORN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7DBDEF326F7E462B852570570051005B/$FILE/mo-osborn,s.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030180", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-08", - "case_names": "United States v. Private E1 ISAAC E. BELANGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2155378D6FC6B29185257057004FB4CD/$FILE/mo-ballenger,jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031116", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-08", - "case_names": "United States v. Private E1 ANTHONY L. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E2AAC0FF198DD45D8525705700516C6B/$FILE/mo-smith,al.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020880", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-08", - "case_names": "United States v. Private E-2 MARCEL A. KEYS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/007F25AB54649656852570570050A83C/$FILE/mo-keys,ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030714", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-04", - "case_names": "United States v. Specialist MOSES L. HAMILTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FCB012BC0EC62DE785257053004F6F9E/$FILE/mo-hamilton,ml.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030574", - "case_name_shorts": "" - }, - { - "case_dates": "2005-08-02", - "case_names": "United States v. Sergeant DAVID N. WEBER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D5CD573A20A9950B85257052003DD552/$FILE/mo-weber,dn.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021186", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-29", - "case_names": "United States v. Specialist KENNETH B. WRIGHT, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C503207CD34ADEE28525704D005DFA72/$FILE/mo-wright,kb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040061", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-29", - "case_names": "United States v. Specialist DAMION D. BREWER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2E0315BAC0A3FAFE8525704D0043796A/$FILE/mo-brewer,dd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011066", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-29", - "case_names": "United States v. Private TIMOTHY J. LARSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4014DBB71C0224EE8525704D005DDA3F/$FILE/mo-larson,tj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040836", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-29", - "case_names": "United States v. Private E2 JERAD A. GARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/14F882CDB7DE7A288525704D0043A17B/$FILE/mo-gard,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030816", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-28", - "case_names": "United States v. Specialist VICTORIA L. CAPITINI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/51BB99E03118C4548525704D0040BEC7/$FILE/mo-capitini,vl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030823", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-28", - "case_names": "United States v. Private First Class MICHAEL D. LUTZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2AA3ECF9DC01CED58525704D0041100A/$FILE/mo-lutz,md.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030792", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-26", - "case_names": "United States v. Private E2 ROBERT L. KENNEDY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/76AFD5AC1E591D698525704B00464580/$FILE/mo-kennedy,rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011081", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-26", - "case_names": "United States v. Private E2 JEREMY M. PHILLIPPE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4886C2BA7CD6CF668525704B0046AD08/$FILE/mo-philllippe,jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040616", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-25", - "case_names": "United States v. Private E1 MICHAEL G. BOOKMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8CD413C561A8944785257049005EDD3E/$FILE/mo-bookman,mg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040922", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-20", - "case_names": "United States v. Specialist RICHARD K. REMBERT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/43CC08F707F4E9768525704400651B59/$FILE/mo-rembert,rk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20011082", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-20", - "case_names": "United States v. Sergeant CLARK A. CROWE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/625DE9C890B32D6A852570440065B466/$FILE/mo-crowe,ca.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20041262", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-15", - "case_names": "United States v. Private E1 ROBERT C. ECKHARDT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/32AC5850CA7849F98525703F0064AAA3/$FILE/mo-eckhardt,rc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021377", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-15", - "case_names": "United States v. Private E1 AARON D. ADAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D006A6836E38939E8525706C004898BC/$FILE/mo-adams,ad.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021101", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-13", - "case_names": "United States v. Sergeant First Class ADONIJAH J. OGLETREE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CA8FADC338E388E78525703D00677699/$FILE/mo-ogletree,aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010487", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-13", - "case_names": "United States v. Private E1 ROMIE N. JENKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3158C508484298078525703D00674E28/$FILE/mo-jenkins,rn.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020233", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-06", - "case_names": "United States v. Staff Sergeant TIMOTHY WARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3B4FD30F17FD60F8852570360054B568/$FILE/mo-ward,t.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000078", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-06", - "case_names": "United States v. Private E1 JUSTIN L. ABRAHAMSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2129761E27831107852570370058315D/$FILE/mo-abrahamson,jl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020841", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-05", - "case_names": "United States v. Specialist ROBERT J. WINGO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6AA873610ED2144185257035005CF563/$FILE/mo-wingo,rj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030172", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-05", - "case_names": "United States v. Private JOSEPH V. HUSTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AA23936DD7BD201985257035005C9C0F/$FILE/mo-huston,jv.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020758", - "case_name_shorts": "" - }, - { - "case_dates": "2005-07-05", - "case_names": "United States v. Master Sergeant THOMAS D. MORRISON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/58C74334A88A886985257035005CC594/$FILE/mo-morrison,td.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600461", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-28", - "case_names": "United States v. Staff Sergeant KEITH S. CAMPBELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9E7F1D580AF53E6D8525702E005AEF6A/$FILE/mo-campbell,ks.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020190", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-24", - "case_names": "United States v. Staff Sergeant ALBERT A. GEORGE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4D9051AF549C12A98525702D0068C219/$FILE/mo-george,aa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030308", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-24", - "case_names": "United States v. Specialist MAURICE LEWIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A8E101BFE077A5808525702D0069695C/$FILE/mo-lewis,m.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020775", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-24", - "case_names": "United States v. Private E2 NICHOLAS J. SCOTT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/93931086FABD1B4B8525702D00698A50/$FILE/mo-scott,nj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030825", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-22", - "case_names": "United States v. Private E2 ANTHONYNOEL S. MENO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C6F052A3771AF6968525702800642BF1/$FILE/mo-meno,as.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20000733", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-22", - "case_names": "United States v. Private E1 BRIAN A. WALKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8219541541F9FBB08525702800645852/$FILE/mo-walker,ba.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030149", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-17", - "case_names": "United States v. Specialist FABIAN G. PEREZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0C30ABAA8705405E852570230049EEE7/$FILE/mofr-perez,fg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20011030", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-16", - "case_names": "United States v. Staff Sergeant CURTIS SAMPSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CA0B03FB192B27E88525702200673B7F/$FILE/mo-sampson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020596", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-16", - "case_names": "United States v. Private E2 MATTHEW A. SALTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A73C1C727186AE1B85257022006773BD/$FILE/mo-salter,ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031036", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-15", - "case_names": "United States v. Private E1 BEECHER J. MEADOWS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/29CDCCAE4089569A852570210063EB1F/$FILE/mo-meadows,bj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031115", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-06", - "case_names": "United States v. Private First Class ASTREA G. ABDOO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/90E2646B4B6ADB8485257019003EB673/$FILE/mo-abdoo,ag.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030837", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-06", - "case_names": "United States v. Private E2 JAMAR R. COX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5FD8238A99F6D10A85257019003ED853/$FILE/mo-cox,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030260", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-02", - "case_names": "United States v. Staff Sergeant STANLEY E. EDMOND", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/544CB14232041BB6852570140064E27D/$FILE/mo-edmond,se.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY9900904", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-02", - "case_names": "United States v. Sergeant First Class BENJAMIN J. PARRISH III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8343F0A7622AEDE48525701400652673/$FILE/mo-parrish,bj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020178", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-02", - "case_names": "United States v. Private First Class JUSTIN D. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4EE962AEBA37F8A985257014006505A1/$FILE/mo-johnson,jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030913", - "case_name_shorts": "" - }, - { - "case_dates": "2005-06-02", - "case_names": "United States v. Private E1 CHRISTOPHER L. BOSTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/61EC94D7B8A9CDED8525701400649A24/$FILE/mo-boston,cl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030108", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-31", - "case_names": "United States v. Private First Class DARRON W. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EDA6B02FF3564B5F852570120049A4BF/$FILE/mofr-brown,dw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010599", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-27", - "case_names": "United States v. Private E2 AARON E. YOUNG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3F47D5EB9B0CF0698525700E0047B1AC/$FILE/mo-young,ae.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031137", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-27", - "case_names": "United States v. Private E1 MAURICE ABBOTT, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7F04A5F491EF613C8525700E00478CF0/$FILE/mo-abbott,m.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030786", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-26", - "case_names": "United States v. Private E1 LISA K. RUPP", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7DD2D67CC0359B928525700D00674AD3/$FILE/mo-rupp,lk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010949", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-25", - "case_names": "United States v. Specialist KONAH C. PARKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C93EE3C0566209A38525700C004A3840/$FILE/mo-parker,kc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021252", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-24", - "case_names": "United States v. Specialist JAMES A. NASH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2C39BB4F3873AC038525700B0064F084/$FILE/mo-nash,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20010800", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-18", - "case_names": "United States v. Sergeant First Class RICKIE E. PARRISH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9D1542E07F342AB585257005004B8137/$FILE/mo-parrish,re.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020916", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-17", - "case_names": "United States v. Sergeant WAYNE M. PARKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/654521A1C4D1A84F852570040064B37A/$FILE/mo-parker,wm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY9600945", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-17", - "case_names": "United States v. Sergeant First Class TODD W. THOMPSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1020CC35F817838B852570040064EF8F/$FILE/mo-thompson,tw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000977", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-17", - "case_names": "United States v. Private First Class CRAIG K. BYNUM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0791DF32C0E32A1C8525700400648D24/$FILE/mo-bynum,ck.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011137", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-11", - "case_names": "United States v. Private E2 TELLEY E. PRETLOW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/163BEA90E893366D85256FFE005D60DA/$FILE/mo-pretlow,te.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20011149", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-10", - "case_names": "United States v. Sergeant BOBBY B. LIGGINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5EBA57D8E984C6AF85256FFD00687DA2/$FILE/mo-Liggins,bb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030773", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-10", - "case_names": "United States v. Private E2 MICHAEL E. BODKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/189B84CD23C466C485256FFD0067B66A/$FILE/mofr-bodkins.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20010107", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-10", - "case_names": "United States v. Private E1 JASON D. BALLENGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6485907D68F757CF85256FFD0067854B/$FILE/mo-ballenger,jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030647", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-06", - "case_names": "United States v. Private E2 CARLOS R. CURRENTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CA0D77992029F27C852571840022C5B1/$FILE/mo-currenton,cr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020848", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-06", - "case_names": "United States v. Private E2 CARLOS R. CURRENTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CA0D77992029F27C85256FF900617FA7/$FILE/mo-currenton,cr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020848", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-04", - "case_names": "United States v. Private First Class CORNELL R. BARBER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/267E3AC21DB92AB285256FF7006162D6/$FILE/mo-barber,cr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021193", - "case_name_shorts": "" - }, - { - "case_dates": "2005-05-03", - "case_names": "United States v. Specialist DWAYNE L. NICHOLS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CA91219918BBC49D85256FF700612912/$FILE/mo-nichols,dl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020683", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-29", - "case_names": "United States v. Specialist WILLIE PRESCOTT III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B4C31A8B09C0806985256FF200613DBC/$FILE/mo-prescott,w.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020257", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-29", - "case_names": "United States v. Private First Class CHRISTOPHER D. EDWARDS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5A20EAB28EBB962A85256FF20060F412/$FILE/mo-edwards,cd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030236", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-29", - "case_names": "United States v. Private E2 TERRILL D. BURKETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B3A4B4E4D515ED2C85256FF20060D581/$FILE/mo-burkett,td.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020914", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-29", - "case_names": "United States v. Private E2 DEREK J. ORLANDO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A13FF18D8D56157185256FF200611B4B/$FILE/mo-orlando,dj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030818", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-29", - "case_names": "United States v. Private E1 JONATHAN R. RIGGS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E8959CFA749A3F1685256FF200615BEA/$FILE/mo-riggs,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021202", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-27", - "case_names": "United States v. Specialist TAMMY T. BELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/26D1DA99BB1F35E485256FF1003EF8DB/$FILE/mo-bell,tt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030878", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-26", - "case_names": "United States v. Staff Sergeant TIRRELL L. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F4E6F0A0456806E485256FEF00524423/$FILE/mo-Williams,tl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020972", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-26", - "case_names": "United States v. Sergeant ERIK C. HOLMES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9B010F711342870985256FEF00520E1D/$FILE/mo-holmes,ec.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030633", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-26", - "case_names": "United States v. Private First Class BRANDON R. FRAMESS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1748574D59D34E7185256FEF0051D8AF/$FILE/mo-frames,br.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20010796", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-25", - "case_names": "United States v. Sergeant First Class RAFAEL A. PEREZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1A11971B8CE0ACE585256FEF0051A93F/$FILE/mo-perez,ra.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY9900680", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-25", - "case_names": "United States v. Private First Class ALTON K. TOM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3650D54E91C7E9BD8525700E003D3D9D/$FILE/mo-tom,ak.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020419", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-22", - "case_names": "United States v. Private E2 KEESHA R. HABEEB", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/90D083837A7B0F8385256FEB00507418/$FILE/mo-habeeb,kr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021190", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-21", - "case_names": "United States v. Specialist ANDREW C. GORTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E14848F4F696F2EE85256FEA0065ACD5/$FILE/mo-gorton,ac-c.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010900", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-20", - "case_names": "United States v. Specialist JAMIE A. WEARE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/739CB0A1110D0A5885256FE900609830/$FILE/mo-weare,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031329", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-20", - "case_names": "United States v. Private E1 JOHN M. ENRIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CE33EC6D6E35DC4885256FE900604953/$FILE/mo-enright,jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030379", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-20", - "case_names": "United States v. Private E1 AARON M. GRAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1CB721BA62FD45FB85256FE9006066EA/$FILE/mo-gray,am.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030106", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-15", - "case_names": "United States v. Sergeant THEODORE J. DAVIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/350D4C7480B349E485256FE40052AFEE/$FILE/mo-davis-tj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020448", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-15", - "case_names": "United States v. Sergeant SHANNON D. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/622C24B67B701DFE85256FE40052CD98/$FILE/mo-jones,sd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030386", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-15", - "case_names": "United States v. Sergeant KIM P. PAYNE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/60B491A2A9B2379B85256FE400533263/$FILE/mo-payne,kp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040756", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-15", - "case_names": "United States v. Private First Class KIMBERLY S. MURPHY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7721F7BD9AFE2C9D85256FE40052F8CD/$FILE/mo-murphy,ks.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031296", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-12", - "case_names": "United States v. Specialist KENNETH M. KEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1F798E12328622D485256FE10052296A/$FILE/mo-kee,km.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030249", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-12", - "case_names": "United States v. Private First Class LOUIS F.M. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EE808A56DEC0C67385256FE100520130/$FILE/mo-johnson,lfm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011145", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-11", - "case_names": "United States v. Sergeant MARIO LEDESMA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C06856A49220CF7185256FE0004AE181/$FILE/mo-ledesma,m.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021033", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-08", - "case_names": "United States v. Private First Class JAMES E. COTTEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A2E47F5588CB08C785256FDD005EB3FD/$FILE/mo-cotten,je-c.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040864", - "case_name_shorts": "" - }, - { - "case_dates": "2005-04-08", - "case_names": "United States v. Private E2 FREED E. STEVENS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EE95FE35AD57BE6485256FDD005EDA61/$FILE/mo-stevens,fe.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030634", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-31", - "case_names": "United States v. Specialist MARK M. ESPARZA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BA1463E0ED56D6A885256FD500666397/$FILE/mo-esparza,mm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020614", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-31", - "case_names": "United States v. Specialist DONALD R. THOMAS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/280D55350C4DF7C285256FD5006702FD/$FILE/mo-thomas,dr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020919", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-31", - "case_names": "United States v. Private First Class MICHAEL K. CROSBY, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A5382CDACA500CF585256FD5006629DD/$FILE/mo-crosby,mk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021276", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-31", - "case_names": "United States v. Private E1 CASEY L. LARSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/207C6556101D6B2885256FD50066B93F/$FILE/mo-larson,cl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020490", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-29", - "case_names": "United States v. Staff Sergeant KENNETH M. KERR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/30A3CD308418F15C85256FD300686BB3/$FILE/mo-kerr,km.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021064", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-29", - "case_names": "United States v. Specialist TERRANCE J. GRAYSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/704F3E666DAA85DC85256FD30067FE4A/$FILE/mo-grayson,tj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020948", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-29", - "case_names": "United States v. Sergeant MARCUS W. MAPPS, SR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/25E1C1410EAA1B5485256FD3006947A0/$FILE/mo-mapps,mw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020540", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-29", - "case_names": "United States v. Sergeant First Class DANIEL J. DORAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AF9524BFDA12381285256FD30066FD86/$FILE/mo-doran,dj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020109", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-29", - "case_names": "United States v. Private JEFFREY c. EISON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E1D07834EA48340A85256FD300673CEE/$FILE/mo-eison,jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040952", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-29", - "case_names": "United States v. Private JEFFREY C. EISON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0D18FFBFA9069ACF85256FD30067A42D/$FILE/mo-eison,jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040952", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-29", - "case_names": "United States v. Private First Class DERRICK W. MOORE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E22B422E428B4C6F85256FD300697325/$FILE/mo-moore,dw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021272", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-28", - "case_names": "United States v. Private First Class ANNA L . REDDISH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A4BD8F8C06AE406D85256FD30069A5E4/$FILE/mo-reddish,al.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040797", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-22", - "case_names": "United States v. Sergeant DAVID L. ANDERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/61C03D37BB21AD1985256FCC00677F38/$FILE/mo-anderson-dl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040255", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-22", - "case_names": "United States v. Private First Class ANTHONY J. LYNCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6D61049DC43330C985256FCC0067A0EC/$FILE/mo-lynch,aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030602", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-21", - "case_names": "United States v. Staff Sergeant DANIEL VILLARREAL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D70A6E62EE5701B585256FCB006DC930/$FILE/mo-villarreal,d.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20001108", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-21", - "case_names": "United States v. Specialist THOMAS C. GOODWIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/831A0FA202C03B6C85256FCB006DA806/$FILE/mo-goodwin,tc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040504", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-18", - "case_names": "United States v. Private First Class MICHAEL B. KANE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ADF83FAF9F11A4C285256FC800650206/$FILE/mo-kane,mb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030711", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-16", - "case_names": "United States v. Private E2 CHRISTOPHER M. GOODIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C6D5586B1FF0558985256FC6006B4B98/$FILE/mo-goodin,cm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040610", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-16", - "case_names": "United States v. Private E2 CHRISTOPHER M. GOODIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B01DF0EE5F0C95C285256FC6006B0448/$FILE/mo-goodin,cm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040610", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-16", - "case_names": "United States v. First Lieutenant ZENOBIA C. JOSEPH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E45638BA9969832C85256FC6006B93B2/$FILE/mo-joseph,zc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 2000889", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-16", - "case_names": "United States v. Chief Warrant Officer Two PATRICK A. MONETTE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/014F9876DE53FCDD85256FC6006BBCE8/$FILE/mo-monette,pa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020088", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-15", - "case_names": "United States v. Specialist BENJAMIN M. RATLIFF", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/84D4D9EA53E6369A85256FC600517BBF/$FILE/mo-ratliff,bm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031037", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-15", - "case_names": "United States v. Private E1 ALLEN J. HOWARD III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5601EA42338D3BE285256FC70064BDAF/$FILE/mo-howard,aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030621", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-10", - "case_names": "United States v. Private E2 JEREMY Y. WARE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3005FD4772119AA185256FC000667B35/$FILE/mo-ware,jy.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20010923", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-10", - "case_names": "United States v. Private E1 CEDELL STARKS III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/03CB1E469897ABD585256FC000665DCA/$FILE/mo-starks,c.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020224", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-09", - "case_names": "United States v. Private First Class ROSS A. EVERETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C184BD8E3EE89FB485256FBF00643A2D/$FILE/mo-everett,ra.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020709", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-09", - "case_names": "United States v. Private First Class MARK S. STEWART", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/503EB2248BD33A4385256FBF0064DAEB/$FILE/mo-stewart,ms.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030721", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-09", - "case_names": "United States v. Private First Class JAMES R. MANNING, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/91B363E473FC758885256FBF0064AACA/$FILE/mo-manning,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030214", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-09", - "case_names": "United States v. Private E2 REGINALD R. GRAY, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4DC2D7AB9E802E5C85256FBF006470B5/$FILE/mo-gray,rr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20011030", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-04", - "case_names": "United States v. Sergeant BROOKE J. RITTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/71E7899F0B91134F85256FBA0059CFF4/$FILE/mo-ritter.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010528", - "case_name_shorts": "" - }, - { - "case_dates": "2005-03-04", - "case_names": "United States v. Sergeant BROOKE J. RITTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/25FDABE35554D9B485256FBA00646EC2/$FILE/mo-ritter.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010528", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-25", - "case_names": "United States v. Sergeant AARON J. McKAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3E7E9FAF8ABC82FE85256FB3005C87CF/$FILE/mo-mckay,aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020276", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-23", - "case_names": "United States v. Sergeant ROMAN S. HUERTA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E363A579236947BC85256FB1005784F8/$FILE/mo-huerta,rs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20010097", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-23", - "case_names": "United States v. Private First Class WILLIAM R. WEST", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/078471B7DC39171785256FB10057B975/$FILE/mo-west,wr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030277", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-23", - "case_names": "United States v. Private E2 AVERY L. HOUSTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EC18282BF720693985256FB100575097/$FILE/mo-houston,al.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030266", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-23", - "case_names": "United States v. DENVER POST CORP. v. USA & Captain ROBERT AYERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F1FF13F985C4862685256FB2004D947A/$FILE/mo-Denver Post v USA & Ayers,r.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20041215", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-22", - "case_names": "United States v. Sergeant JOHNNIE S. SANCHEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/174EACEAA32463AA85256FB0005581BB/$FILE/mo-sanchez,js.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020281", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-22", - "case_names": "United States v. Private E2 JORGE A. IRIZARRY, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9D8032DD28F10DF685256FB0005553E5/$FILE/mo-irizarry,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010366", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-16", - "case_names": "United States v. Specialist BOBBY L. ADAMS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DE986D0ECF50163385256FB00057532F/$FILE/mo-adams,bl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020065", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-16", - "case_names": "United States v. Private First Class JASON B. BAINBRIDGE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4C332A200F0FC55985256FB000577027/$FILE/mo-bainbridge,jb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020556", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-15", - "case_names": "United States v. Staff Sergeant RANDY L. HART", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B7CB62D99227015285256FA9006CE28F/$FILE/mo-hart,rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040133", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-15", - "case_names": "United States v. Sergeant MATTHEW Z. COMBS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7141512F3F9FE41485256FA9006BD8CB/$FILE/mo-combs,mz.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020565", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-15", - "case_names": "United States v. Private First Class RANDY T. GRIMSLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1FAB509A2810CC3E85256FA9006C8C11/$FILE/mo-grimsley,rt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030906", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-15", - "case_names": "United States v. Private First Class LAMONE D. LAWRENCE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BC98B3C9B6A6608685256FA9006D0DFF/$FILE/mo-lawrence,ld.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011164", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-15", - "case_names": "United States v. Private E2 ANDRE EASTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D520B5E2471628F085256FA9006C3574/$FILE/mo-easter,a.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030693", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-15", - "case_names": "United States v. Chief Warrant Officer Two JOHN D. FOLLROD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/010F203C8DB338DA85256FA9006C5E33/$FILE/mo-follrod,jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020350", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-11", - "case_names": "United States v. Private E2 ALAN P. KINKEAD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/244E4963FB57FE3C85256FA5006489A1/$FILE/mo-kinkead,ap.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030503", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-08", - "case_names": "United States v. Specialist TERRY E. SOUTHARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B8F4DA823427772085256FA2006791E3/$FILE/mo-southard,te.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021317", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-08", - "case_names": "United States v. Private E1 JAMES KUCIA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6533AFD2DCFD1C9385256FA200676CB9/$FILE/mo-kucia,j.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030369", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-02", - "case_names": "United States v. Specialist KEVIN L. HARRIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F70E706453234B6085256F9C006ABD35/$FILE/mo-harris,kl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021000", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-02", - "case_names": "United States v. Sergeant JESSIE SPEED, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7886C0139BFB143A85256F9C006AD979/$FILE/mo-speed,j.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020573", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-02", - "case_names": "United States v. Sergeant DONALD COLEMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5345E90546B8B56E85256F9C006A679C/$FILE/mo-coleman,d.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030173", - "case_name_shorts": "" - }, - { - "case_dates": "2005-02-02", - "case_names": "United States v. Private E1 CARL K. CARTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/93A1BC355F92C17785256F9C006A20A4/$FILE/mo-carter,ck.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030536", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-28", - "case_names": "United States v. Staff Sergeant WELDON B. FORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/85A877A109D99D7E85256F97006B7A06/$FILE/mo-ford.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20001078", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-28", - "case_names": "United States v. Private First Class STEVEN P. TURNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BB9530C9F29FEB5985256F97006B4BC6/$FILE/mo-turner-C.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030521", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-27", - "case_names": "United States v. Major DARLENE M. McPHEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1620407CA897C20285256F97004EA2FF/$FILE/mo-mcphee.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020801", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-25", - "case_names": "United States v. Private E1 MATTHEW O. ALDRIDGE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8CFD8A1D3765D6C185256F95006B792B/$FILE/mo-aldridge.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020693", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-18", - "case_names": "United States v. Specialist LAVINIA Y. LaFON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/961F7C14F2BCF81485256F8D004C363F/$FILE/mo-lafon,ly.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000884", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-12", - "case_names": "United States v. Specialist ALTON L. JENKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EC220E9D6EB7B87385256F870069C072/$FILE/mofr-jenkins,al.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010327", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-12", - "case_names": "United States v. Sergeant SCOTT A. BUBER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A0E343CB58D05EC285256F8700691D87/$FILE/mo-buber,sa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000077", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-12", - "case_names": "United States v. Private E1 DALE E. STEAD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E8D05AC9712E8AA685256F870069EB01/$FILE/mo-stead,de.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010869", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-12", - "case_names": "United States v. Chief Warrant Officer Two JOHN D. TYNES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0BE9427C6ABC8A7185256F87006A0B9C/$FILE/mofr-tynes,jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901093", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-07", - "case_names": "United States v. Specialist BRENT C. PILGREEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0614BFDBC178604885256F85004A202F/$FILE/mo-pilgreen,bc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030874", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-07", - "case_names": "United States v. Sergeant RODNEY S. O'NEAL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5B39034E41568A9985256F85004A01DC/$FILE/mo-oneal,rs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020018", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-07", - "case_names": "United States v. SPC BARON L. WATSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6C53629267272B4E852570EB00678E06/$FILE/mo-watson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030498", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-07", - "case_names": "United States v. Private First Class DARRON W. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FAAC0AA5EF1E8E7385256F850049CB97/$FILE/mo-brown,dw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010599", - "case_name_shorts": "" - }, - { - "case_dates": "2005-01-07", - "case_names": "United States v. Private E1 KENNETH D. RHEAUME", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8FB9E51C3AC1C9F185256F85004A4829/$FILE/MO-Rheaume,kd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020844", - "case_name_shorts": "" - }, - { - "case_dates": "2004-12-28", - "case_names": "United States v. Private E2 JOSHUA K. CLANTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/214291098CE7AA1885256F7800533053/$FILE/mo-clanton,jk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020279", - "case_name_shorts": "" - }, - { - "case_dates": "2004-12-28", - "case_names": "United States v. Private E1 EUGENE T. DELACRUZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8BC560F355EED4A585256F7800536202/$FILE/mo-delacruz,et.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020925", - "case_name_shorts": "" - }, - { - "case_dates": "2004-12-20", - "case_names": "United States v. Specialist ISREAL A. FLATEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E188C48AC5B82E0685256F700051A685/$FILE/mo-flaten,ia.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030704", - "case_name_shorts": "" - }, - { - "case_dates": "2004-12-20", - "case_names": "United States v. Specialist CARLOS J. SHAMBURGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E1492C36C344B46D85256F70006D41C1/$FILE/mo-shamburger,cj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030753", - "case_name_shorts": "" - }, - { - "case_dates": "2004-12-20", - "case_names": "United States v. Private First Class FRANK FITCHETT, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7B8B8B6B29BF613485256F70005164D7/$FILE/mo-fitchett,f.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020760", - "case_name_shorts": "" - }, - { - "case_dates": "2004-12-17", - "case_names": "United States v. Sergeant JOHNNIE L. SANDERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/41FA7862FD676E5285256F6D0058C9BF/$FILE/mo-sanders,jl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030325", - "case_name_shorts": "" - }, - { - "case_dates": "2004-12-17", - "case_names": "United States v. Private E1 RONALD B. BORBOA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/845A9540D0B7BFE085256F6D0058AA40/$FILE/mo-borboa,rb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020551", - "case_name_shorts": "" - }, - { - "case_dates": "2004-12-15", - "case_names": "United States v. Specialist COREY J. BOREL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E3DBA1EC1B0F84EA85256F6B004994EB/$FILE/mo-borel,cj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020569", - "case_name_shorts": "" - }, - { - "case_dates": "2004-12-14", - "case_names": "United States v. Private E1 SIDNEY W. FEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/414A7138C5D721B885256F6A006A502B/$FILE/mo-fee,sw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021415", - "case_name_shorts": "" - }, - { - "case_dates": "2004-12-10", - "case_names": "United States v. Specialist TREY A. GRAHAM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A24AF131C4DFAB0485256F66006A2F0B/$FILE/mo-graham,ta.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030414", - "case_name_shorts": "" - }, - { - "case_dates": "2004-12-09", - "case_names": "United States v. Private E2 CHRISTOPHER C. PLUMB", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AF580B65E70BBD3F85256F65006DC833/$FILE/mo-plumb,cc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021410", - "case_name_shorts": "" - }, - { - "case_dates": "2004-12-07", - "case_names": "United States v. Sergeant JESSE J. TABOR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4EC06CCA414A0C2385256F630056C282/$FILE/mo-tabor,jj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010008", - "case_name_shorts": "" - }, - { - "case_dates": "2004-12-06", - "case_names": "United States v. Private First Class JACOB P. COOLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3A152F9BA9B4FC6B85256F62006DE377/$FILE/mo-cooley,jp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020731", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-30", - "case_names": "United States v. Specialist KENNETH M. BULLOCK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5B8A0766FAC739F985256F5C006EA3BE/$FILE/mo-bullock,km.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030534", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-23", - "case_names": "United States v. Specialist MICHELLE M. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6CC81AC960D84AC085256F55006E9762/$FILE/mo-johnson,mm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030579", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-23", - "case_names": "United States v. Private E2 JASON R. LEMOINE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AFF01816824F572585256F55006E7291/$FILE/mo-lemoine,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021361", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-19", - "case_names": "United States v. Sergeant ANTHONY D. REED", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D329E63AE789422E85256F5100666462/$FILE/mo-reed,ad.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020195", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-15", - "case_names": "United States v. Staff Sergeant MICHAEL A. RAGSDALE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E5EF4666A85A84AD85256F4D006AC7DB/$FILE/mo-ragsdale,ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010072", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-15", - "case_names": "United States v. Specialist JOHN S. STONEMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/342FA4A40BAD7E6A85256F4D006AEC77/$FILE/mo-stoneman,js.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY9800137", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-15", - "case_names": "United States v. Private First Class JAQUAN R. TURNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/44131EB831A3930F85256F4D006B1BC2/$FILE/mo-turner,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030051", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-15", - "case_names": "United States v. Private E1 THOMAS J. DILWORTH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6F60D4A83332BF6D85256F4D006A7B76/$FILE/mo-dillworth,tj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020263", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-15", - "case_names": "United States v. Private E1 LANGDON L. VANWEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/12B612AD66345DE285256F4D006B40B8/$FILE/mo-vanwey,ll.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030759", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-05", - "case_names": "United States v. Private First Class COREY B. WOODS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/54E73801330F90E985256F46006D0F39/$FILE/mo-woods,cb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021016", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-04", - "case_names": "United States v. Private First Class JEREMY T. WILCOX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ADB4CEABE7F27C7E85256F420064407B/$FILE/mo-wilcox,jt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000876", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-04", - "case_names": "United States v. Master Sergeant JOHN A. GONZALEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E40EF2B31219B98C85256F42006411D2/$FILE/mo-gonzales,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010059", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-02", - "case_names": "United States v. Specialist MARK M. ESPARZA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3BE287092C99DB1985256F40004F813B/$FILE/morc-esparza,mm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020614", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-02", - "case_names": "United States v. Sergeant CONSTANTE L. PAZ, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/728AA3889C0A6D8885256F40004FB4B7/$FILE/mo-paz,cl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010910", - "case_name_shorts": "" - }, - { - "case_dates": "2004-11-02", - "case_names": "United States v. Private E2 WILLIAM J. BROWN, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1AB86A000C6890AE85256F40004F55F8/$FILE/mo-brown-wj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020763", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-29", - "case_names": "United States v. Sergeant MELANIE L. PRATT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9BDA17C1F85DBFC485256F3F00666A06/$FILE/mo-pratt,ml.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030145", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-29", - "case_names": "United States v. Private E1 STEVEN R. WELLS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8F2636920080B5C285256F3C0065D9C4/$FILE/mo-well,sr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031197", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-28", - "case_names": "United States v. Private E2 TROY D. LUCAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AB29E02DBFA88B9F85256F3B0066BAE4/$FILE/mo-lucas,td.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030783", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-25", - "case_names": "United States v. Private First Class ROBERT W. GERACI, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B8B928B09BCDC90885256F3800620105/$FILE/mo-geraci,rw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010051", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-19", - "case_names": "United States v. Private First Class TONY L. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/25AA706679E451CD85256F320065F5CB/$FILE/mo-williams,tl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021325", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-19", - "case_names": "United States v. Private First Class BRYCE J. HAZELWOOD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B59EB360FA56299685256F32006619B3/$FILE/mo-hazelwood,bj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20010916", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-19", - "case_names": "United States v. Captain RAPHAEL K. WORKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5FFE60D0F53CD72C85256F3200667E36/$FILE/mo-works,rk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020050", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-14", - "case_names": "United States v. Staff Sergeant MARK G. SARAZINE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1D9274162DBB9E6285256F2E005BFABA/$FILE/mo-sarazine,mg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020321", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-14", - "case_names": "United States v. Private First Class PETER A. ORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7056D84D0AE74B3585256F2E005BCD1A/$FILE/mo-ord,pa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020961", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-13", - "case_names": "United States v. Private E1 MICHAEL L. BALLARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/194ACFDA208B9E4885256F2C004EE80A/$FILE/mo-ballard,ml.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010766", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-13", - "case_names": "United States v. Private E1 MICHAEL B. KNIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4561AA9C012BA9E485256F2C004EC346/$FILE/mo-knight,mb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020895", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-13", - "case_names": "United States v. Private E1 DWAYENE A. WHITTAKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6E766B8653145AC385256F2C004F11F7/$FILE/mo-whittaker,da.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020312", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-08", - "case_names": "United States v. Staff Sergeant NINO M. NELSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CE08E595F5B88A1385256F2B0050E518/$FILE/mo-nelson,nm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010630", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-08", - "case_names": "United States v. Sergeant JEREMY P. BECK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/35CACB1E985C143B85256F2B0051D51A/$FILE/mo-beck,jp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020675", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-08", - "case_names": "United States v. Private E2 NAOMI A. LEON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4E6C90AD6BFA474485256F2B0051819B/$FILE/mo-leon,na.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020695", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-08", - "case_names": "United States v. Captain JOHN W. PYLES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5A3B0495088A199085256F2B00515D94/$FILE/mo-pyles,jw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010967", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-07", - "case_names": "United States v. Staff Sergeant DAMON K. HODGE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E0235E7B202472C485256F2B0051A87E/$FILE/mo-hodge,dk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020524", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-07", - "case_names": "United States v. Sergeant ANTONIO D. BARBER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FF1D9C20E4B77A3D85256F2B0051F6F2/$FILE/mo-barber,ad.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000413", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-07", - "case_names": "United States v. Private E1 JUSTIN A. BLANCHARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E6E982A22ABE7C4185256F2B00509FB9/$FILE/mo-blanchard.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20001110", - "case_name_shorts": "" - }, - { - "case_dates": "2004-10-06", - "case_names": "United States v. Sergeant STEVE A. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F43B94CD7AD2D75B85256F2500604EC6/$FILE/mo-jones-sa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010229", - "case_name_shorts": "" - }, - { - "case_dates": "2004-09-24", - "case_names": "United States v. Sergeant WILLIAM J. KREUTZER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DCD933D9941B3DC885256F19004CDE3F/$FILE/mo-writ-kreutzer.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20040953", - "case_name_shorts": "" - }, - { - "case_dates": "2004-09-22", - "case_names": "United States v. Specialist JAMES W. SMARTT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/96F1115E1B16D0D085256F17004FBCD7/$FILE/mo-Smartt,jw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010890", - "case_name_shorts": "" - }, - { - "case_dates": "2004-09-22", - "case_names": "United States v. Private E1 BARKIM S. McKIBBEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2E6B7AE7E5B40BBE85256F17004F9722/$FILE/mo-McKibben,bs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030174", - "case_name_shorts": "" - }, - { - "case_dates": "2004-09-09", - "case_names": "United States v. Sergeant JERMAINE R. LOWE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8ABB4B2BC66DF16B85256F15003CAAAD/$FILE/mo-lowe,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030568", - "case_name_shorts": "" - }, - { - "case_dates": "2004-09-09", - "case_names": "United States v. Sergeant First Class DAVID S. SWEETING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/669228D8A610FFC485256F0B0051C5C6/$FILE/mo-sweeting,ds.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020720", - "case_name_shorts": "" - }, - { - "case_dates": "2004-09-09", - "case_names": "United States v. Private First Class MARCUS D. GRUBBS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/429793491BA8099F85256F0B0050B819/$FILE/mo-grubbs,md.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021404", - "case_name_shorts": "" - }, - { - "case_dates": "2004-09-09", - "case_names": "United States v. Private E2 MAURICE A. ROBINSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/735C97E1482514CE85256F0B0050DF5C/$FILE/mo-robinson,ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021301", - "case_name_shorts": "" - }, - { - "case_dates": "2004-09-08", - "case_names": "United States v. Sergeant JACK E. WHITE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4EAAB7627C2DFEDE85256F0F0062F386/$FILE/mo-white,je-recon.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020119", - "case_name_shorts": "" - }, - { - "case_dates": "2004-09-08", - "case_names": "United States v. Private First Class WAYNE A. McMILLAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/87888FF336A2DDBE85256F09005D42AD/$FILE/mo-mcmillan,wa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030887", - "case_name_shorts": "" - }, - { - "case_dates": "2004-09-07", - "case_names": "United States v. Specialist IAN J. POMARLEAU", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/602F184F0A58FE7B85256F0800613BDE/$FILE/mofr-pomarleau,ij.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800836", - "case_name_shorts": "" - }, - { - "case_dates": "2004-09-07", - "case_names": "United States v. Private First Class THOMAS BANKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5F30E1B2D9C25F9A85256F0800611406/$FILE/mo-banks,t.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021302", - "case_name_shorts": "" - }, - { - "case_dates": "2004-09-02", - "case_names": "United States v. Staff Sergeant MICHAEL T. SPEARMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C8A8035CCE2B9A4B85256F040045DA4C/$FILE/mo-spearman,mt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030463", - "case_name_shorts": "" - }, - { - "case_dates": "2004-08-30", - "case_names": "United States v. Specialist SHANDALE G. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CF066065D15BFF0185256F000066C9DA/$FILE/mo-johnson,sg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030424", - "case_name_shorts": "" - }, - { - "case_dates": "2004-08-20", - "case_names": "United States v. Staff Sergeant WILLIAM E. PITRE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C29918BAE99B565D85256EF90040C705/$FILE/mo-pitre,we.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010258", - "case_name_shorts": "" - }, - { - "case_dates": "2004-08-20", - "case_names": "United States v. Specialist BENJAMIN M. RATLIFF", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2483F8A1F623E30B85256EF6006825D3/$FILE/mo-ratliff,bm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031037", - "case_name_shorts": "" - }, - { - "case_dates": "2004-08-20", - "case_names": "United States v. Sergeant KIMBERLY E. DOBSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1C0A9C658749E98885256EF60067A65C/$FILE/mo-dobson,ke.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000098", - "case_name_shorts": "" - }, - { - "case_dates": "2004-08-20", - "case_names": "United States v. Private E1 DAVID F. DALTON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A5B97769D692FF9E85256EF60067E40F/$FILE/mo-dalton,df-recon.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20040187", - "case_name_shorts": "" - }, - { - "case_dates": "2004-08-17", - "case_names": "United States v. Private E1 DANIEL G. LANGILLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E9F51A91D59321FB85256EF30041C317/$FILE/mo-langille,dg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020920", - "case_name_shorts": "" - }, - { - "case_dates": "2004-08-16", - "case_names": "United States v. Private E1 KATHERINE M. LAWRENCE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BF67FD172D92543485256EF300419D57/$FILE/mo-lawrence.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020511", - "case_name_shorts": "" - }, - { - "case_dates": "2004-08-11", - "case_names": "United States v. Private First Class RYAN M. HEINRICH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CC60D6F9F22B13DB85256EED006620BE/$FILE/mo-heinrich,rm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030474", - "case_name_shorts": "" - }, - { - "case_dates": "2004-07-30", - "case_names": "United States v. Specialist RICARDO BULLINGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DA8D335331ACDDE985256EE4005128F4/$FILE/mo-bullinger,r.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030931", - "case_name_shorts": "" - }, - { - "case_dates": "2004-07-30", - "case_names": "United States v. Private First Class JASON T. STEAGAL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A4F2B0DDE3E3CD9485256EE400515024/$FILE/mo-steagal,jt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030879", - "case_name_shorts": "" - }, - { - "case_dates": "2004-07-23", - "case_names": "United States v. Specialist SCOTT V. DEBIASE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F27892653DC7F0F485256EDA00665496/$FILE/mo-debiase,sv.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020095", - "case_name_shorts": "" - }, - { - "case_dates": "2004-07-23", - "case_names": "United States v. Specialist CARLOS R. LOWE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A26F7CCC30A7D3B485256EDA0066733F/$FILE/mo-lowe,cr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030330", - "case_name_shorts": "" - }, - { - "case_dates": "2004-07-22", - "case_names": "United States v. Private E2 JEREMIAS R. MARTIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D246067F0DD9391E85256ED9004447F8/$FILE/mo-martis,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030515", - "case_name_shorts": "" - }, - { - "case_dates": "2004-07-19", - "case_names": "United States v. Specialist LENARD A. BROOKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3F6142CCB60963B685256ED90043711D/$FILE/mo-brooks,la.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031150", - "case_name_shorts": "" - }, - { - "case_dates": "2004-07-19", - "case_names": "United States v. Private E2 JACK D. EASON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9B1DACFAD221B15A85256ED900439EB5/$FILE/mo-eason.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20031297", - "case_name_shorts": "" - }, - { - "case_dates": "2004-07-16", - "case_names": "United States v. Specialist JOSHUA C. KAHANEK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2E72216A199B80B185256ED300510DC8/$FILE/mo-kahanek,jc-.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030275", - "case_name_shorts": "" - }, - { - "case_dates": "2004-07-16", - "case_names": "United States v. Sergeant ROBERT J. WIESEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5879487E097F183185256ED300512DE1/$FILE/mo-wiesen,rj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801770", - "case_name_shorts": "" - }, - { - "case_dates": "2004-07-15", - "case_names": "United States v. Sergeant First Class ANTHONY D. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D7E25C022CB1F27785256ED20061DDDC/$FILE/mo-williams,ad.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021139", - "case_name_shorts": "" - }, - { - "case_dates": "2004-06-29", - "case_names": "United States v. Private First Class BENJAMIN J. SVOBODA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/711697E8F183640485256EC200672ADD/$FILE/mo-svoboda.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010904", - "case_name_shorts": "" - }, - { - "case_dates": "2004-06-28", - "case_names": "United States v. Private E1 GEOFFREY A. ROCKWELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B1AC18CD9B6B477985256EC200682376/$FILE/MO- Rockwell, G..doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011057", - "case_name_shorts": "" - }, - { - "case_dates": "2004-06-22", - "case_names": "United States v. Specialist BENJAMIN S. MACIEL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/06B9409D91C629A885256EBC0052615C/$FILE/MOFR-Maciel.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000970", - "case_name_shorts": "" - }, - { - "case_dates": "2004-06-22", - "case_names": "United States v. Private E1 RONNIE C. CARPENTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3B5C7825591661ED85256EBC00528716/$FILE/mo-carpenter.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020894", - "case_name_shorts": "" - }, - { - "case_dates": "2004-06-16", - "case_names": "United States v. Specialist MICHAEL S. GARZA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EDDF1C68517F60F385256EBB006AFC67/$FILE/mo-garza.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030760", - "case_name_shorts": "" - }, - { - "case_dates": "2004-06-16", - "case_names": "United States v. Private E2 DANIELLE M. DIGGLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/42D1B882559736C685256EBB006043D8/$FILE/mo-diggle.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030077", - "case_name_shorts": "" - }, - { - "case_dates": "2004-06-16", - "case_names": "United States v. Private E1 MICHAEL K. BOYD II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/32FB514D8717D8BD85256EBB006E83F4/$FILE/MO Boyd-16 June.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021264", - "case_name_shorts": "" - }, - { - "case_dates": "2004-06-15", - "case_names": "United States v. Specialist JASON E. RUDIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E51FF367F98D062A85256EBB0070F040/$FILE/MO-Rudin-15 June.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031287", - "case_name_shorts": "" - }, - { - "case_dates": "2004-06-15", - "case_names": "United States v. Specialist CHRISTOPHER N. SHOUSE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2D6F92D6322E494985256EBB006ED5ED/$FILE/mo-shouse-15 jun.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030815", - "case_name_shorts": "" - }, - { - "case_dates": "2004-06-15", - "case_names": "United States v. Private E1 ANDREW R. IRELAND", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/85FBE4F577C1559B85256EB5006A7D3E/$FILE/MO-Ireland-15 Jun.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20040028", - "case_name_shorts": "" - }, - { - "case_dates": "2004-06-10", - "case_names": "United States v. Specialist ERIC J. BELLO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/848CDF0185A2EE7C85256EAF005C88EB/$FILE/mo-bello, ej.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20031294", - "case_name_shorts": "" - }, - { - "case_dates": "2004-06-04", - "case_names": "United States v. Specialist RICHARD D. BRESNAHAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0ED614C781E0CF1985256EA9006534BC/$FILE/mo-bresnahan,rc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010304", - "case_name_shorts": "" - }, - { - "case_dates": "2004-05-28", - "case_names": "United States v. Specialist ENRIQUE FLORES-RIVERA, JR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2B1E49375D5A13FE85256EAE005EFB1C/$FILE/mo-flores-rivera.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010505", - "case_name_shorts": "" - }, - { - "case_dates": "2004-05-28", - "case_names": "United States v. Private E2 DANIEL A. NEECE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F0E81859584808B185256EA200436F7A/$FILE/mo-neece,da.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020090", - "case_name_shorts": "" - }, - { - "case_dates": "2004-05-27", - "case_names": "United States v. Private First Class BERTHONY PIERRE-LOUISE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/63A6CB254AFE108485256EA100654D0F/$FILE/mo-pierre-louise,b.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010158", - "case_name_shorts": "" - }, - { - "case_dates": "2004-05-27", - "case_names": "United States v. Private E2 RYON J. MEISEGEIER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/74A4AB191D7F2DA085256EA100657A51/$FILE/mo-meisegeier,rj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021077", - "case_name_shorts": "" - }, - { - "case_dates": "2004-05-17", - "case_names": "United States v. Staff Sergeant ROGER L. HAMPTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D561ABE109A8DC5485256E970062FF8B/$FILE/mo-hampton,rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021295", - "case_name_shorts": "" - }, - { - "case_dates": "2004-05-17", - "case_names": "United States v. Sergeant DAVID J. KAISER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/50C6765B301DD71385256E970062DEFA/$FILE/mo-kaiser,dj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900485", - "case_name_shorts": "" - }, - { - "case_dates": "2004-05-11", - "case_names": "United States v. Specialist BRAD S. BISIKIRSKI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/041CEF7089C84BCF85256E930053CFB7/$FILE/mofr-bisikirski,bs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020810", - "case_name_shorts": "" - }, - { - "case_dates": "2004-05-11", - "case_names": "United States v. Private First Class JOSHUA K. MAYLEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7E5127F195D2D2A285256E9300543405/$FILE/mo-maylee,jk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020374", - "case_name_shorts": "" - }, - { - "case_dates": "2004-05-11", - "case_names": "United States v. Private First Class CHARLES P. MILLER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C0BAF2957BE6A07185256E9300546140/$FILE/mo-miller,cp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20001033", - "case_name_shorts": "" - }, - { - "case_dates": "2004-05-11", - "case_names": "United States v. Private E1 SCOTT D. GIBSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/537E8C14907E123C85256E9300548C5F/$FILE/mofr-gibson,sd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900573", - "case_name_shorts": "" - }, - { - "case_dates": "2004-05-11", - "case_names": "United States v. Private E1 SAMUELL A. MURRAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1301E8C7957A877085256E930054CE6E/$FILE/mo-murray,sa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020609", - "case_name_shorts": "" - }, - { - "case_dates": "2004-04-27", - "case_names": "United States v. Private First Class EDWARD D. HOWARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/89011C0923462AA585256E83003EA0BA/$FILE/mo-howard,ed.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010787", - "case_name_shorts": "" - }, - { - "case_dates": "2004-04-27", - "case_names": "United States v. Private E-1 MARVIN R. SCATCHMER III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/523B988AF706DB6A85256E830066D891/$FILE/mo-scotchmer,mr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030967", - "case_name_shorts": "" - }, - { - "case_dates": "2004-04-26", - "case_names": "United States v. Private First Class EVERETTE J. HARMON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BEB63453E0D34A0185256E83003E79F0/$FILE/mo-harmon,ej.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010697", - "case_name_shorts": "" - }, - { - "case_dates": "2004-04-20", - "case_names": "United States v. Private E1 TRAVIS J. FITZGERALD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5D2C8B1C03676E8685256E7C0065B12E/$FILE/mo-fitzgerald,tj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021093", - "case_name_shorts": "" - }, - { - "case_dates": "2004-04-19", - "case_names": "United States v. Specialist JAMES E. WHITESELL III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A060A6A708BCEB4785256E7B0048FA24/$FILE/mo-whitesell,je.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010221", - "case_name_shorts": "" - }, - { - "case_dates": "2004-04-16", - "case_names": "United States v. Staff Sergeant MICHAEL A. SHIFFLETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BCC23DA737B63DBA85256E7B004815B7/$FILE/mo-shifflett,ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20000881", - "case_name_shorts": "" - }, - { - "case_dates": "2004-04-13", - "case_names": "United States v. Private E-2 FRANK E. PAIGE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3002EA8B3F6D39D685256E7B00483C76/$FILE/mo-paige,fe.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020691", - "case_name_shorts": "" - }, - { - "case_dates": "2004-04-12", - "case_names": "United States v. First Lieutenant JAMES H. HILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6E97EACA813C472F85256E7B0047E46E/$FILE/mo-hill,jh.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000208", - "case_name_shorts": "" - }, - { - "case_dates": "2004-04-06", - "case_names": "United States v. Private First Class ANDREW G. MULLINS III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/054C547D70130B5B85256E6E0062A94C/$FILE/mo-mullins,ag.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030357", - "case_name_shorts": "" - }, - { - "case_dates": "2004-04-06", - "case_names": "United States v. Private E2 MATTHEW A. GAUTHIER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8204C691A5F8E42385256E6E0062FEEF/$FILE/mo-gauthier,ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030924", - "case_name_shorts": "" - }, - { - "case_dates": "2004-03-31", - "case_names": "United States v. Specialist ADAM C. PACKHAM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/36839AC6DE89B2E385256E680068720F/$FILE/mo-packham,ac.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020808", - "case_name_shorts": "" - }, - { - "case_dates": "2004-03-31", - "case_names": "United States v. Private E1 ERIC P. SCOTT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9BA60C0F560B34EA85256E680068918C/$FILE/mo-scott,ep.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021233", - "case_name_shorts": "" - }, - { - "case_dates": "2004-03-30", - "case_names": "United States v. Private First Class BENJAMIN D. LEEMON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/53DE3D31A1DC1BED85256E67005B93D4/$FILE/mo-leemon,bd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030133", - "case_name_shorts": "" - }, - { - "case_dates": "2004-03-29", - "case_names": "United States v. Specialist CHARLES A. LEWIS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7DAC89B32C413B7E85256E67005B4BE6/$FILE/mo-lewis,ca.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010162", - "case_name_shorts": "" - }, - { - "case_dates": "2004-03-25", - "case_names": "United States v. Private E1 AARON E. MUNIZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5AA814231C68F2A985256E62004C8CFB/$FILE/mo-muniz,ae.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000668", - "case_name_shorts": "" - }, - { - "case_dates": "2004-03-24", - "case_names": "United States v. Private E1 DEMARCUS K. LUCKEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/31CE6FACE7D5E8A085256E610063ABD3/$FILE/mo-luckey,dk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030580", - "case_name_shorts": "" - }, - { - "case_dates": "2004-03-19", - "case_names": "United States v. Private E1 JOHN E. PULIDO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A983911527FC092C85256E5C0056DB71/$FILE/mo-pulido,je.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011043", - "case_name_shorts": "" - }, - { - "case_dates": "2004-03-17", - "case_names": "United States v. Specialist ALAN C. KESSLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3AEE9FE56C43C46285256E5A00672F3B/$FILE/mo-kessler,ac.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030052", - "case_name_shorts": "" - }, - { - "case_dates": "2004-03-17", - "case_names": "United States v. Private E1 ALLEN L. REED", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/296D57ACE6A6416485256E5A006BED67/$FILE/mo-reed,al.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010760", - "case_name_shorts": "" - }, - { - "case_dates": "2004-03-12", - "case_names": "United States v. Private E1 SAMUEL J. McCANN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1BD0C1418E3A652785256E550067C7E5/$FILE/mo-mccann,sj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010996", - "case_name_shorts": "" - }, - { - "case_dates": "2004-03-04", - "case_names": "United States v. Private E1 SHAWN D. FAIR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4B7D8A03900D20D785256E5100470E3B/$FILE/mo-fair,sd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021131", - "case_name_shorts": "" - }, - { - "case_dates": "2004-03-03", - "case_names": "United States v. Private First Class CALVIN B. DONOVAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E48C13A845B0B15385256E4C006B7212/$FILE/mo-donovan,cb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020669", - "case_name_shorts": "" - }, - { - "case_dates": "2004-02-27", - "case_names": "United States v. Private First Class RICKIE J. BRADFORD, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F54E46B38B66566C85256E4C006B3CC9/$FILE/mo-bradford-rj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010774", - "case_name_shorts": "" - }, - { - "case_dates": "2004-02-27", - "case_names": "United States v. Private First Class RICKIE J. BRADFORD, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/47897779CB5A108C85256E4700592DC9/$FILE/mo-bradford-rj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010774", - "case_name_shorts": "" - }, - { - "case_dates": "2004-02-27", - "case_names": "United States v. Private E1 DANIEL J. SONOQUI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/23BFB473D02EF5E885256E47005958EC/$FILE/mo-sonoqui,dj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021137", - "case_name_shorts": "" - }, - { - "case_dates": "2004-02-26", - "case_names": "United States v. Staff Sergeant CEDRIC L. AARON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CBDB374B86A0FB4185256E470058D7EC/$FILE/mo-aaron,cl,.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000747", - "case_name_shorts": "" - }, - { - "case_dates": "2004-02-26", - "case_names": "United States v. Sergeant ROBERT J. GIEBLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5872C376B16DE63685256E470058629E/$FILE/mo-giebler,rj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021229", - "case_name_shorts": "" - }, - { - "case_dates": "2004-02-26", - "case_names": "United States v. Private First Class CHRISTOPHER W. CONLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7A8614A1A9F1BC1685256E470058901A/$FILE/mo-copley,cw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011015", - "case_name_shorts": "" - }, - { - "case_dates": "2004-02-26", - "case_names": "United States v. Captain DAVID R. GANDY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/89CE2B92FAFFEA4185256E470058B4CC/$FILE/mo-gandy,dr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020129", - "case_name_shorts": "" - }, - { - "case_dates": "2004-02-20", - "case_names": "United States v. Staff Sergeant ARTURO A. MORGAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2DBF9CDD064A89E885256E40006E0B93/$FILE/mo-morgan,aa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20000928", - "case_name_shorts": "" - }, - { - "case_dates": "2004-02-15", - "case_names": "United States v. Private First Class KEVIN W. DEGGS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AE883BE41C1DA8AD85256FA9006C034D/$FILE/mo-deggs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020133", - "case_name_shorts": "" - }, - { - "case_dates": "2004-02-13", - "case_names": "United States v. Private First Class DEMETRIC D. SHAW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D56426DC4928F11085256E3900619D49/$FILE/mo-shaw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021333", - "case_name_shorts": "" - }, - { - "case_dates": "2004-02-11", - "case_names": "United States v. Sergeant First Class RICHARD N. ANDERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B99EE05C6D1EB61685256E38004B55D7/$FILE/mo-anderson-rn.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010237", - "case_name_shorts": "" - }, - { - "case_dates": "2004-02-11", - "case_names": "United States v. Private First Class LAZARUS D. REZNICK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6C9607EB9C6EF74785256E390062BBDB/$FILE/mo-reznick,ld.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010928", - "case_name_shorts": "" - }, - { - "case_dates": "2004-02-04", - "case_names": "United States v. Specialist ARTURO CANO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/51ED0EDEEF53B4B985256E68004316D9/$FILE/mo-cano,a.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010086", - "case_name_shorts": "" - }, - { - "case_dates": "2004-01-30", - "case_names": "United States v. Specialist MICHELLE R. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/089135F367B0911785256E3700496137/$FILE/mo-williams,mr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030392", - "case_name_shorts": "" - }, - { - "case_dates": "2004-01-29", - "case_names": "United States v. Private E1 NORMAN A. WARNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7818F2504343A1C085256E370045E302/$FILE/mo-warner,na.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010190", - "case_name_shorts": "" - }, - { - "case_dates": "2004-01-29", - "case_names": "United States v. Private E1 NORMAN A. WARNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3CE0E34ADDB58B7D85256E2B00568B66/$FILE/mo-warner,na.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010190", - "case_name_shorts": "" - }, - { - "case_dates": "2004-01-21", - "case_names": "United States v. Staff Sergeant ADAM J. HILTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F42C0D487AF3D6E685256E23006CC7DC/$FILE/mo-hilton,aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030481", - "case_name_shorts": "" - }, - { - "case_dates": "2004-01-21", - "case_names": "United States v. Private JEFFERSON B. MORGAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FC977C0E7C97409485256E23006CE611/$FILE/mo-morgan,jb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021061", - "case_name_shorts": "" - }, - { - "case_dates": "2004-01-21", - "case_names": "United States v. Private E2 THOMAS L. BRANTLEY, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/34101E5C5511782E85256E23006CA359/$FILE/mo-brantley,tl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021228", - "case_name_shorts": "" - }, - { - "case_dates": "2004-01-21", - "case_names": "United States v. Private E1 JEFFERY L. PERKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3C103B2028631D5385256E24005905DC/$FILE/mo-perkins,jl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030897", - "case_name_shorts": "" - }, - { - "case_dates": "2004-01-15", - "case_names": "United States v. Private First Class DANNY R. PENNINGTON, JR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DE228FDFB0B4898A85256E3700440E85/$FILE/mo-pennington,dr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021128", - "case_name_shorts": "" - }, - { - "case_dates": "2004-01-15", - "case_names": "United States v. Private E2 ANDY PIMENTEL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/379074AAAD37F67485256E1C006BCD1F/$FILE/mo-pimentel,a.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030218", - "case_name_shorts": "" - }, - { - "case_dates": "2004-01-12", - "case_names": "United States v. Specialist JAMES W. GRANDY II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ABD869C581BDF3A285256E19006D951E/$FILE/mo-Grandy,jw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000258", - "case_name_shorts": "" - }, - { - "case_dates": "2004-01-12", - "case_names": "United States v. Specialist DUY H. VUONG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/461E91A743536B6F85256E19006D6A1E/$FILE/mo-vuong,dh.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030120", - "case_name_shorts": "" - }, - { - "case_dates": "2004-01-12", - "case_names": "United States v. Private First Class ANN M. BRENNAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DDE4DE5A9AA0123685256E19006DBD1C/$FILE/mofr-brennan,am.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000401", - "case_name_shorts": "" - }, - { - "case_dates": "2003-12-31", - "case_names": "United States v. Specialist NATHAN A. HELFER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/94FB3FEA98C949E185256E1200690141/$FILE/mo-helfer,na.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020650", - "case_name_shorts": "" - }, - { - "case_dates": "2003-12-31", - "case_names": "United States v. Private First Class HOSEA G. SHERROD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5B8FC2ABCB67F19485256E120069EF45/$FILE/mo-sherrod,hg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000383", - "case_name_shorts": "" - }, - { - "case_dates": "2003-12-30", - "case_names": "United States v. Private First Class DANIEL J. POINDEXTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4301833163CABA8D85256E12006A1A88/$FILE/mofr-Poindexter,dj-.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000594", - "case_name_shorts": "" - }, - { - "case_dates": "2003-12-30", - "case_names": "United States v. Private E2 ROBERT W. BOARDMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0E7204EC8D6BA93B85256E12006A47B1/$FILE/mo-boardman,rw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030382", - "case_name_shorts": "" - }, - { - "case_dates": "2003-12-30", - "case_names": "United States v. Private E1 ARMAND A. ANDREOZZI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8D88DEDDBE25070285256E120069395F/$FILE/mo-andreozzi,aa-writ.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030440", - "case_name_shorts": "" - }, - { - "case_dates": "2003-12-18", - "case_names": "United States v. Staff Sergeant JAMES R. HAMP", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E33431F8E18A41E485256E0000567A17/$FILE/mofr-hamp,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000306", - "case_name_shorts": "" - }, - { - "case_dates": "2003-12-18", - "case_names": "United States v. Sergeant First Class TRACY V. RYLEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0D07F5FCAAC8FF6085256E000055A1AE/$FILE/mo-rylee,tv.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000852", - "case_name_shorts": "" - }, - { - "case_dates": "2003-12-18", - "case_names": "United States v. Sergeant BARTHOLOMEW M. BERRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AE975ADDBB05E4ED85256E000056529D/$FILE/mo-berry,bm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000960", - "case_name_shorts": "" - }, - { - "case_dates": "2003-12-15", - "case_names": "United States v. Private E1 ADAM J. SAVOY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/55ED305B8769505385256DFE006B0D36/$FILE/mo-savoy,aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020694", - "case_name_shorts": "" - }, - { - "case_dates": "2003-12-11", - "case_names": "United States v. Private E2 ETHAN E. CARLSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F96B8E4D896C61AD85256DFA0062DA53/$FILE/mo-carlson,ee.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030648", - "case_name_shorts": "" - }, - { - "case_dates": "2003-12-11", - "case_names": "United States v. Private E1 ZACHARY C. GAUSTAD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1802BF3E03F8C11885256DFA0063003D/$FILE/mo-gaustad,zc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021274", - "case_name_shorts": "" - }, - { - "case_dates": "2003-12-09", - "case_names": "United States v. Specialist JOHN C. MCALLISTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/12586DF888F89A7685256DF700595562/$FILE/mor-mcallister,jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601134", - "case_name_shorts": "" - }, - { - "case_dates": "2003-12-08", - "case_names": "United States v. Sergeant ANTHONY WHITE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/36FD8D162C635EF685256DF70058EABB/$FILE/mo-white,a.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011132", - "case_name_shorts": "" - }, - { - "case_dates": "2003-11-26", - "case_names": "United States v. Staff Sergeant NATHAN L. BURKEEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4507A2346F915B2D85256DEA005AD9F3/$FILE/mo-burkeen,nj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20010839", - "case_name_shorts": "" - }, - { - "case_dates": "2003-11-26", - "case_names": "United States v. Specialist DAWN M. YOUNGBLOOD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FEE4F5280978F18E85256DEA0063D02D/$FILE/mo-Youngblood,dm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030012", - "case_name_shorts": "" - }, - { - "case_dates": "2003-11-25", - "case_names": "United States v. sSergeant First Class ADONIJAH J. OGLETREE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9EA485F7C7062ABA85256DE90064B8DC/$FILE/mo-ogletree,aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20010487", - "case_name_shorts": "" - }, - { - "case_dates": "2003-11-25", - "case_names": "United States v. Specialist CALVIN DAVIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/955200DAEFA6EF6985256DE90064EC34/$FILE/mo-davis,c.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010678", - "case_name_shorts": "" - }, - { - "case_dates": "2003-11-12", - "case_names": "United States v. Seaman (E-3) Anthony Q. DO, U.S. Navy", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1CB033FD0F4B835A85256DE2005D0EEA/$FILE/DO-200100525.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCCA 200100525", - "case_name_shorts": "" - }, - { - "case_dates": "2003-11-04", - "case_names": "United States v. Private E2 JOHN T. BROWN, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1434B06C4AB3A21485256DD400680130/$FILE/mo-brown,jt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000493", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-31", - "case_names": "United States v. Staff Sergeant JASON M. BRINKLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/77C7CEA536FC067885256DE2006F660B/$FILE/Brinkley.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ACM 34629", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-31", - "case_names": "United States v. Specialist BENJAMIN S. MACIEL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F6D58F6FFCD70BE185256DD0006655D8/$FILE/mo-maciel,bs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20000970", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-31", - "case_names": "United States v. Specialist ATALIE D. STEVENS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4E9D593A07E6B38885256DD000662A1F/$FILE/mo-stevens,ad.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021294", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-31", - "case_names": "United States v. Private First Class CHARLES P. MILLER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E67EF6E108A04BC685256DD0006776BA/$FILE/mo-miller,cp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20001033", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-31", - "case_names": "United States v. Private E2 CHARLES Y. HILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/17B03FDA8B5583C785256DD00066EB11/$FILE/mofr-hill,cy.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010231", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-31", - "case_names": "United States v. Private E1 ROBY L. HOPKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/67E05E4EACD8603685256DD00067A998/$FILE/mo-hopkins,rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010108", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-31", - "case_names": "United States v. Fireman Recruit (E-1) John M. LABORDE, U.S. Navy", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1861983FC21EEDB985256DE200539A1E/$FILE/MO-Laborde.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCCA 200001654", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-31", - "case_names": "United States v. Aviation Ordnanceman Airman Recruit (E-1) Heath E. JUHN...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E104B679C453A38985256DE3005B76AA/$FILE/200200172-Juhnke.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCCA 200200172", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-30", - "case_names": "United States v. Aviation Boatswain's Mate (Fuels) Airman Apprentice (E-...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E0BFD837E0BF03DD85256DE3005844CD/$FILE/200202005-Gleason.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCCA 200202005", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-29", - "case_names": "United States v. Senior Airman BARRY V. O'CONNOR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/22649B150F750B0985256DE2006C7F6D/$FILE/O'Connor.frev.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ACM 33671 (f rev)", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-24", - "case_names": "United States v. Staff Sergeant JERRY J. DROEDER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/48F9D84F681BF7A485256DE3004C71BF/$FILE/Droeder.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ACM 35100", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-24", - "case_names": "United States v. Master Sergeant HENRY L. MCMASTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3AD255B84895C0F685256DE30050DD14/$FILE/Mcmaster.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ACM 35153", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-24", - "case_names": "United States v. Airman Basic JERMOND K. NICHOLS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B411732352DC575A85256DE2006975B9/$FILE/Nichols.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ACM S30263", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-23", - "case_names": "United States v. Lance Corporal (E-3) Dondre L. JOHNSON, U.S. Marine Cor...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/58D31C1E3DC6C3C585256DE3005D81F5/$FILE/200202349-Johnson.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCCA 200202349", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-22", - "case_names": "United States v. Senior Airman DAMION J. CAMPBELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8457CAACED21809E85256DE2006E637C/$FILE/Campbell.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ACM 35019", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-22", - "case_names": "United States v. Private E2 TROY S. QUALE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2DF228F96F280B2385256DC800490B8F/$FILE/mo-quale,ts.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021118", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-21", - "case_names": "United States v. Airman First Class CHRISTOPHER J. ASTLEY-TEIXERA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B7614C1237AD5FAD85256DE300560766/$FILE/Astley.pc.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ACM 35161", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-17", - "case_names": "United States v. Senior Airman TAMMY J. STONE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F9129051F9FE6F7385256DE3004A13DD/$FILE/StoneT.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ACM S30069", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-16", - "case_names": "United States v. Specialist WILLIAM F. WHITE II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/71FA9C23F6EC2B2885256DC1006706C8/$FILE/mo-white,wf.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021304", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-15", - "case_names": "United States v. Specialist MARK M. ESPARZA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/88174D69CC46DC7985256DC00066F4E5/$FILE/mo-esparza,mm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020614", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-15", - "case_names": "United States v. Private First Class JACQUES SAINTAUDE, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/122A5B187D24006F85256DC00067232F/$FILE/mofr-saintaude.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801647", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-15", - "case_names": "United States v. Private E2 PAUL E. SCHERZBERG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/93204D240FD269B185256DC00067993A/$FILE/mo-scherzberg,pe.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20030217", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-15", - "case_names": "United States v. Private E2 LEVI BOWMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4DEB0A1BC7AC289885256DC000677D37/$FILE/mo-bowman,l.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020903", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-15", - "case_names": "United States v. Private E1 WALTER C. CHRISTIAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/440CA49E3FE60C4A85256DC000675BDA/$FILE/mo-christian.wc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030005", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-15", - "case_names": "United States v. Major ANTHONY R. RUDD, SR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D568EAC15D134B7585256DC10043BF23/$FILE/mo-rudd,ar.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000886", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-14", - "case_names": "United States v. Specialist KRISTY L. FARNSWORTH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/597BA05C0537882485256DBF0065054F/$FILE/mo-farnsworth,kl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010738", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-14", - "case_names": "United States v. Specialist JAMES F. McCLUNEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E604C96432D781A885256DBF00658433/$FILE/mo-mccluney,jf.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020975", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-14", - "case_names": "United States v. Sergeant First Class RAFAEL A. PEREZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0F1B2BB4B0604A6985256DBF00655FB2/$FILE/mo-perez,ra.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900680", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-14", - "case_names": "United States v. Senior Airman TIMOTHY A. WHEAT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3B2575A3DBC0258D85256DE20065F60B/$FILE/Wheat.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ACM 34861", - "case_name_shorts": "" - }, - { - "case_dates": "2003-10-14", - "case_names": "United States v. Private First Class DARRIN L. PRUDE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5FBFD7E666C3F07D85256DBF00653695/$FILE/mo-prude,dl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010119", - "case_name_shorts": "" - }, - { - "case_dates": "2003-09-30", - "case_names": "United States v. Specialist ADRIAN L. NICHOLS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2A54C794ACE9579885256DB2003B6FC5/$FILE/mo-nichols,al.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20001073", - "case_name_shorts": "" - }, - { - "case_dates": "2003-09-30", - "case_names": "United States v. Private First Class BRYANAN E. BRITMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/948112C636BF006985256DB2003BA1BD/$FILE/mo-britman,be.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010893", - "case_name_shorts": "" - }, - { - "case_dates": "2003-09-22", - "case_names": "United States v. Private E-1 JEREMY L. CUMMINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/242E5E4555A5796985256DAA004BFD84/$FILE/mo-cummins,jl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020106", - "case_name_shorts": "" - }, - { - "case_dates": "2003-09-16", - "case_names": "United States v. Specialist ANTOINE W. ENSLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3C2942DDA3BC847685256DA30046FA9A/$FILE/mo-ensley,aw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010555", - "case_name_shorts": "" - }, - { - "case_dates": "2003-09-16", - "case_names": "United States v. Sergeant ADAM L. CONRAD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AE8A7D9B5B263ABE85256DA800548D4F/$FILE/mo-conrad,al.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020267", - "case_name_shorts": "" - }, - { - "case_dates": "2003-09-16", - "case_names": "United States v. Private E1 CHARLES W. MASDEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2D4EC4828E31754985256DA3004727AD/$FILE/mo-masden,cw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020936", - "case_name_shorts": "" - }, - { - "case_dates": "2003-09-15", - "case_names": "United States v. Specialist EDWARD G. JENNINGS, Jr.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1EFA592707E5B7F085256DA3003FE1E5/$FILE/mo-jennings,eg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010550", - "case_name_shorts": "" - }, - { - "case_dates": "2003-09-11", - "case_names": "United States v. Private First Class (E-2) Chesdon J. HAUGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C05ACD04995B94B985256DA800585926/$FILE/200200929-HAUGHT.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCCA 200200929", - "case_name_shorts": "" - }, - { - "case_dates": "2003-09-11", - "case_names": "United States v. Airman (E-3) Willie B. NICKLES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A05339412D7B3C5B85256DA80057AD73/$FILE/200201761-nickles.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCCA 200201761", - "case_name_shorts": "" - }, - { - "case_dates": "2003-09-09", - "case_names": "United States v. Private First Class DEDRIC T. BROOKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4F795FCD39F4EABB85256D9D003CADD4/$FILE/mo-brooks,dt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011152", - "case_name_shorts": "" - }, - { - "case_dates": "2003-09-09", - "case_names": "United States v. Private (E-1) Victor R. IZQUIERDO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1B48379BF4E8C5A785256DA8005A571A/$FILE/200100219-INQUIERDO.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCCA 200100219", - "case_name_shorts": "" - }, - { - "case_dates": "2003-09-08", - "case_names": "United States v. Private First Class SCOTT T. STRONG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C4890E201ECC4D5885256D9B00640072/$FILE/mo-strong,st.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021028", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-28", - "case_names": "United States v. Specialist JOSHUA M. MILLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/15B65DA50B1EA74585256D9500453B91/$FILE/mo-miller,jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020204", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-27", - "case_names": "United States v. Specialist BRAD S. BISIKIRSKI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4814ACAE457AC88885256D95004508B9/$FILE/mo-bisikirski,bs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020810", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-26", - "case_names": "United States v. Specialist LANDON K. DECHERONG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/809FFF44B0623BE885256D950044C503/$FILE/mo-decherong,lk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020392", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-25", - "case_names": "United States v. Specialist RYAN C. SHOOK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/675067A51FF3F9D785256D9500448C5F/$FILE/mo-shook,rc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020391", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-25", - "case_names": "United States v. Senior Airman MATHEW P. SCHEURER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5D3793812ECF9B9E85256DA7004C5949/$FILE/ScheurerM.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ACM 34866", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-21", - "case_names": "United States v. Specialist LAURICE A. PARHAM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/08694C37C378854185256D8900417994/$FILE/mo-parham,la.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000456", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-20", - "case_names": "United States v. Specialist SAMUEL A. STERNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2FE325CA22205ACA85256D8800506D73/$FILE/mo-sterner,sa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010358", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-20", - "case_names": "United States v. Specialist ADAM J. WERMERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5105262E4192EB3885256D8900415100/$FILE/mo-wermers,aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020443", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-20", - "case_names": "United States v. Sergeant ANDREW J. GILLIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B5F332EEEF88D49285256D88004F93EC/$FILE/mo-gillis,aj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020324", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-20", - "case_names": "United States v. Private E2 ZERNICE E. STUBBLEFIELD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EAC35F694B8E57BD85256D8900406D3B/$FILE/mofr-stubblefield,ze.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000389", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-20", - "case_names": "United States v. Private E2 DON D. STREETMAN, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5C82D8C1BDF30E7F85256D8800634723/$FILE/mo-streetman,dd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020537", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-20", - "case_names": "United States v. Private E1 SCOTT H. KARCHER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F456239B465ADDB885256D88004FC42A/$FILE/mofr-karcher,sh.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000702", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-19", - "case_names": "United States v. Private E1 DOUGLAS E. INGALLS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E1BA69478AC6B41F85256D880048ACF3/$FILE/mo-ingalls,de.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020968", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-19", - "case_names": "United States v. Private E1 DOUGLAS E. INGALLS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/338A591271E70E0985256D8800478226/$FILE/mo-ingalls,de.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020968", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-14", - "case_names": "United States v. Private E1 GARY A. MILLER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/801A0E4259C19E2985256D830045F8FE/$FILE/mo-miller,ga.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021433", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-14", - "case_names": "United States v. Private E1 GARY A. MILLER, JR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2EEC82BF0829324E85256D88004978A0/$FILE/mo-miller,ga.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20021433", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-12", - "case_names": "United States v. Sergeant TERRICK C. FINKLEA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/04856FB9573ABCD685256D80005188E8/$FILE/mofr-finklea,tc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020927", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-08", - "case_names": "United States v. Private E1 ROBERT E. BATES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9E1A7689E2E7F06E85256D7C005D3B04/$FILE/mo-bates,re.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021231", - "case_name_shorts": "" - }, - { - "case_dates": "2003-08-06", - "case_names": "United States v. Specialist WALLACE J. BENSON III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/663072880823762E85256DE90046E13E/$FILE/mo-benson,wj-c.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011126", - "case_name_shorts": "" - }, - { - "case_dates": "2003-07-29", - "case_names": "United States v. Private E1 DORIAN R. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A9847647CA7DE5B785256D73005F96DC/$FILE/mo-jones,dr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20030037", - "case_name_shorts": "" - }, - { - "case_dates": "2003-07-28", - "case_names": "United States v. Staff Sergeant PHILLIP G. RICHARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5F308C67B591152085256D710063E8C6/$FILE/mo-richard,pg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011182", - "case_name_shorts": "" - }, - { - "case_dates": "2003-07-24", - "case_names": "United States v. Private First Class JESSICA C. GHOLSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/15188EE4BFAC003585256D6E00450006/$FILE/mo-gholson,jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021176", - "case_name_shorts": "" - }, - { - "case_dates": "2003-07-24", - "case_names": "United States v. Lieutenant Commander (O-4) Charles W. DAVIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/22F7D72F26E52F7985256D6F00634463/$FILE/9600585-Davis.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 9600585", - "case_name_shorts": "" - }, - { - "case_dates": "2003-07-24", - "case_names": "United States v. Lance Corporal Erin G. PHIPPS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CA18144A9853A08785256D6F006185BF/$FILE/200202076-Phipps.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCCA 200202076", - "case_name_shorts": "" - }, - { - "case_dates": "2003-07-23", - "case_names": "United States v. Sergeant CHAD D. BENNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F7F0BB18A61B20F085256D6D00627FEF/$FILE/mofr-benner,cd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY9801777", - "case_name_shorts": "" - }, - { - "case_dates": "2003-07-14", - "case_names": "United States v. Private E1 RODRIQUES A. PFISTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D723CEA31FB057BB85256D64003B5150/$FILE/mo-pfister,ra.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000791", - "case_name_shorts": "" - }, - { - "case_dates": "2003-07-10", - "case_names": "United States v. Private First Class SCOTT C. BURDICK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1665843D96D1AFED85256D60004FE6B9/$FILE/mo-Burdick, sc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020337", - "case_name_shorts": "" - }, - { - "case_dates": "2003-07-10", - "case_names": "United States v. Private E1 JOSHUA O. BYNUM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F43FFE1402ABDC5485256D6000501E9B/$FILE/mo-Bynum,jo.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20001020", - "case_name_shorts": "" - }, - { - "case_dates": "2003-06-23", - "case_names": "United States v. Specialist LARRY J. SLUSS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5537528F00843AF785256D6E00765704/$FILE/mo-sluss,lj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020225", - "case_name_shorts": "" - }, - { - "case_dates": "2003-06-18", - "case_names": "United States v. Private E1JULIE A. JENKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6B516E9FFBB0CCC385256D4A004CEEDC/$FILE/mo-jenkins,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010592", - "case_name_shorts": "" - }, - { - "case_dates": "2003-06-17", - "case_names": "United States v. Private E1 CLIFTON L. STUDYWAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6280832A6B4BD00685256D490055C952/$FILE/mo-studyway,cl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010347", - "case_name_shorts": "" - }, - { - "case_dates": "2003-06-13", - "case_names": "United States v. Staff Sergeant MITCHELL R. CHATMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A501F315CC1603AD85256D48003F5F0F/$FILE/mo-chatman,mr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010163", - "case_name_shorts": "" - }, - { - "case_dates": "2003-06-12", - "case_names": "United States v. Lance Corporal (E-3) James S. STEUDL, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3A2EC7E6FB38A78785256D49006B8903/$FILE/200201625-Steudl.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200201625", - "case_name_shorts": "" - }, - { - "case_dates": "2003-06-04", - "case_names": "United States v. Private E1 RICHARD D. DALEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A1310DFC288E099185256D3C005E9288/$FILE/mo-daley,rd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010449", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-30", - "case_names": "United States v. Sergeant MARC R. REEVES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/85E238B45E0F81F585256D39005127E6/$FILE/mo-Reeves, mr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010497", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-30", - "case_names": "United States v. Seaman Recruit (E-1) Joseph D. HURD, U.S. Naval Reserve", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8DA15C9C603FAF5085256D4900694C76/$FILE/200201114-Hurd.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200201114", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-30", - "case_names": "United States v. Lance Corporal (E-3) Jimmie L. GETER, Jr., U.S. Marine Cor...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/67D8116A6F035C0185256D49006ABF4F/$FILE/9901433-Geter.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 9901433", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-30", - "case_names": "United States v. Chief Warrant Officer Three ERROL P. BODIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D93D479B8F931DAF85256D390050EB2C/$FILE/mo-bodin, ep.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000525", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-28", - "case_names": "United States v. Staff Sergeant THOMAS E. CARLSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FAA90E90700DDDA685256D340060CA80/$FILE/mo-carlson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901060", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-27", - "case_names": "United States v. Staff Sergeant FRANK J. RONGHI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FD133CF7B47A397385256D3300646780/$FILE/mo-ronghi,fj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000635", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-27", - "case_names": "United States v. Corporal Jason A. FORREST, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B585942CE5EB7D7E85256D350055D234/$FILE/200000133-Forrest.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200000133", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-20", - "case_names": "United States v. Private First Class ALEXISON V. McKINNEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/319627E75AEB5F4585256D2E005590C1/$FILE/mo-mckinney.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020333", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-14", - "case_names": "United States v. Specialist KURSTON R. SIMMONS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/032A765D1E3FFB4785256D2E00567DCE/$FILE/mo-simmons,kr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000691", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-14", - "case_names": "United States v. Private First Class JASON P. HAYES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3B4855472413FF8085256D2E0055EFC2/$FILE/mo-hayes,jp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010832", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-14", - "case_names": "United States v. Private E2 ANTHONYNOEL S. MENO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CD256826F460F65985256D2E0055BF52/$FILE/mo-meno-corrected copy.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000733", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-14", - "case_names": "United States v. Private E1 DANIEL R. TATUM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/32331BB321E2F92485256D2E0054954C/$FILE/mo-tatum.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011205", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-12", - "case_names": "United States v. Private First Class Derrick A. COATES, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ABD0C2FCE0FF735885256D2D00681BAE/$FILE/200000920-Coates.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200000920", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-12", - "case_names": "United States v. Lance Corporal Eric J. SUBJECT, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E51896F2F1AEEC6585256D2D006581C8/$FILE/200100426-Subject.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200100426", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-09", - "case_names": "United States v. Sergeant Christopher E. SPENCE, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/16D9E5934421A40685256D2D00629508/$FILE/200100085-Spence.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200100085", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-09", - "case_names": "United States v. Corporal Jason W. ROBERTSON, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/93D3EDF9DB33C9DC85256D2D006026DF/$FILE/200101115-Robertson.OP.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200101115", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-08", - "case_names": "United States v. Sergeant Richard B. SMITH, U....", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CBF0E18D022F06D085256D2100702ADA/$FILE/9802155-Smith.unpub2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 9802155", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-06", - "case_names": "United States v. Private First Class Patrick J. NDON, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/18A0651B9BDD7E1E85256D2100713F33/$FILE/200201090-Ndon.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200201090", - "case_name_shorts": "" - }, - { - "case_dates": "2003-05-02", - "case_names": "United States v. Staff Sergeant JAMES R. HAMP", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CB5965DD5F9639F485256D1D0051C905/$FILE/mo-Hamp, jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20000306", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-30", - "case_names": "United States v. Specialist JAMES R. McSWAIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/12774149F6B67A5985256D1800610C25/$FILE/mo-mcswain,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010392", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-29", - "case_names": "United States v. Private E1 MICHAEL C. KNOBLOCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E291B6566794908B85256D180060AEEA/$FILE/mo-knobloch,mc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000814", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-29", - "case_names": "United States v. Private E-2 CHRISTOPHER R. KLINGENSTEIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FBECDA78C7CEED9185256D180061E54A/$FILE/mor-klingenstein,cr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000178", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-28", - "case_names": "United States v. Private E1 JOSHUA R. MARS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C0C2F9E4E9349B1A85256D17003E8571/$FILE/mo-mars,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020661", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-28", - "case_names": "United States v. Private E1 CHRISTOPHER L. CASEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2C99C25FE23E340585256D17003E285B/$FILE/mo-casey,cl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020033", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-28", - "case_names": "United States v. Lance Corporal Nathan T. OTTO, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0F0F392A91E386CA85256D210072AA1D/$FILE/200001460-Otto.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200001460", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-23", - "case_names": "United States v. Corporal Nii-Kwao KOTEY, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FD05F608709B268985256D210074A7B8/$FILE/9900676-Kotey.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 9900676", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-21", - "case_names": "United States v. Corporal Daniel T. CHAMPION, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FFF43CE11AAE31DF85256D10006EE58F/$FILE/200000890-Champion.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200000890", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-18", - "case_names": "United States v. Private Spencer W. QUICK, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E6717556DD24EF7585256D10006D9650/$FILE/200001657-Quick.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200001657", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-15", - "case_names": "United States v. Specialist WILLIAM J. ANDERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B4A1FC4BE0D6C48785256DC90053588D/$FILE/mofr-anderson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010711", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-15", - "case_names": "United States v. Specialist WILLIAM J. ANDERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1D57D9E59655C02385256D710051FEF4/$FILE/mofr-anderson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020711", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-15", - "case_names": "United States v. Sergeant SHEREE N. MANNING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8222955A3C43B59485256D09004E1035/$FILE/mo-manning,sn.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000832", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-15", - "case_names": "United States v. Private First Class JOHN A. NICHOLSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A63C2914F2B0E60B85256D09004D7C2D/$FILE/mo-nicholson,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010638", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-15", - "case_names": "United States v. Private E2 JEROME W. FORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4D6E49CE2C4B500085256D09004E4344/$FILE/mo-ford,jw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010841", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-15", - "case_names": "United States v. Private E-2 ZERNICE E. STUBBLEFIELD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/746DEAD043DA561A85256D0A003D59CA/$FILE/mo-stubblefield,ze.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20000389", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-14", - "case_names": "United States v. Private E2 TAVARES D. EVINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/007B3AC87F42FC8285256D09003E7F11/$FILE/mo-evins,td.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20021075", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-10", - "case_names": "United States v. Staff Sergeant THOMAS T. CALDWELL, Jr.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/93CB95CD4FC85EEC85256D050047E671/$FILE/mo-caldwell.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010991", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-09", - "case_names": "United States v. Private First Class ANTHONY D. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/76A75EDEE10556C085256D03005352EA/$FILE/mo-johnson-ad.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020412", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-09", - "case_names": "United States v. Private E1 MYRON S. JAMES, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3A6372F5BD40E08685256D05004767EE/$FILE/mo-james,ms.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010402", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-09", - "case_names": "United States v. Lance Corporal Samuel GARCIA, Jr., U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D97A8465330D13B385256D100070B821/$FILE/200101554-Garcia.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200101554", - "case_name_shorts": "" - }, - { - "case_dates": "2003-04-07", - "case_names": "United States v. Lance Corporal Tianda M. NELSON, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BF063E10511DC63885256D100071F685/$FILE/200101286-Nelson.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200101286", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-31", - "case_names": "United States v. Sergeant CHAD E. COOK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3E80905F72BBA13885256CFB00413A54/$FILE/mo-cook,ce.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010939", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-31", - "case_names": "United States v. Private E1 MICHAEL A. ARVISO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E16E9F90D7B7EF7F85256CFB006C7B0A/$FILE/mo-arviso,ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020534", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-31", - "case_names": "United States v. Hospital Corpsman First Class (E-6) Lorna L. VILETA, U.S...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6710905320DAC91485256CFC006FB204/$FILE/200000315-Vileta.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200000315", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-31", - "case_names": "United States v. First Lieutenant PATRICK L. SIMMONS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EB6D504B464C773585256CFB004101EE/$FILE/mo-simmons.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000153", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-31", - "case_names": "United States v. Damage Controlman Fireman Apprentice (E-2) Trevor L. NAL...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/633A0AF7B724BA7885256CFC0070527F/$FILE/200100469-Nall.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200100469", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-31", - "case_names": "United States v. Airman Apprentice (E-2) Maurice V.A. GARY, U.S. Navy", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D8389E335C33337285256CFC006F5B6D/$FILE/9901196-Gary.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 9901196", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-27", - "case_names": "United States v. Private (E-1) Justin P. WALKER, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4A054AECDC63E6FD85256CFC006DC040/$FILE/200101354-Walker.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200101354", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-25", - "case_names": "United States v. Seaman Apprentice (E-2) Courtney D. DAVIS, U.S. Naval Res...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D7A02DF3C51A03CE85256CFC0068D377/$FILE/9901170-Davis.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 9901170", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-25", - "case_names": "United States v. Lance Corporal (E-3) Zachary R. FISHER, U.S. Marine Corp...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0F0A8608F68F974385256CFC0069AD03/$FILE/200101235-Fisher.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200101235", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-24", - "case_names": "United States v. Specialist JOSEPH C. NUGARA, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/166209EF606BB85185256CF30051FC13/$FILE/mo-nugura,jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010937", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-24", - "case_names": "United States v. Private E1 SCOTT D. GIBSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FB0F855DB27C20CB85256CF30051CF9A/$FILE/mo-gibson,sd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900573", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-20", - "case_names": "United States v. Sergeant WILFORD L. CHISM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F91231B230B3DCF585256CEF0051D832/$FILE/mo-Chism,wl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020340", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-20", - "case_names": "United States v. Sergeant JAMES H. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/14E8B70B587CD7BA85256CEF00513649/$FILE/mo-williams,jh.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010965", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-20", - "case_names": "United States v. Private E1 PATRICK CULBERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/06ED631C332DDDB685256CEF004F11F2/$FILE/ATT1HOEP", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020197", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-20", - "case_names": "United States v. Corporal (E-4) Robert W. WILCOX, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6F448679638820B085256CFC00641B40/$FILE/200101091-Wilcox.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200101091", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-19", - "case_names": "United States v. Specialist CHRISTOPHER R. HAYES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8CC8A5A4C993A2B285256CEF0051AD85/$FILE/mo-Hayes,cr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901175", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-19", - "case_names": "United States v. Sergeant NURA L. SALES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BA483D5BCFD1AC6985256CEF00516B76/$FILE/mo-Sales,nl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9602005", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-18", - "case_names": "United States v. Fireman Recruit (E-1) Jason W. POSTON, U.S. Navy", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C85FAFC1422DF19285256CFC006009B9/$FILE/200102197-Poston.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200102197", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-12", - "case_names": "United States v. Private E1 TYLER J. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B91ECF611D56548385256CEF0051F8F3/$FILE/mo-Johnson,tj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020059", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-11", - "case_names": "United States v. Corporal Matthew R. DIXSON Corporal (E-4), U.S. Marine C...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F65036DF2A525E9A85256CFC00638612/$FILE/200200006-Dixson.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200200006", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-11", - "case_names": "United States v. Airman Apprentice (E-2) Logan J. CALEY, U.S. Navy", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D667613E14EF6BA485256CFC0061081C/$FILE/9901651-Caley.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 9901651", - "case_name_shorts": "" - }, - { - "case_dates": "2003-03-06", - "case_names": "United States v. Lance Corporal (E-3) Juan C. URRA, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/65E2F89B40698C9185256CFC0061ED09/$FILE/200200257-Urra.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200200257", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-28", - "case_names": "United States v. Specialist THOMAS R. ADAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8DD2F7C029F9C1D485256CE0004D9D84/$FILE/mo-adams,tr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020386", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-27", - "case_names": "United States v. Sergeant Michael A. REJKOWSKI, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/46E6C6B807BC102785256CFC005F5317/$FILE/200102166-Rejkowski.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200102166", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-27", - "case_names": "United States v. Sergeant Michael A. REJKOWSKI, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0E3F847421FB368785256CDB0078B783/$FILE/200102166-Rejkowski.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200102166", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-27", - "case_names": "United States v. Private Grant R. ALEXANDER, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F1D4A6C8CAAE48BC85256CDB0060BE09/$FILE/200001976-Alexander.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200001976", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-27", - "case_names": "United States v. Private Gary A. LOCKE, Jr., U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7CAC3364D6CCC69685256CDB0063BEAD/$FILE/200101318-Locke.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200101318", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-27", - "case_names": "United States v. Gas Turbine System Technician (Electrical) First Class J...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/93C51BD81872BD1D85256CDB005F16C5/$FILE/200001531-Escolar.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200001531", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-27", - "case_names": "United States v. Damage Controlman Fireman Apprentice Michael J. HENDERSO...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B62F98B27DEB653385256CDB00715C13/$FILE/200101752-Henderson.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200101752", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-27", - "case_names": "United States v. Airman Apprentice Micah T. HATTON, U.S. Navy", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E9EF8951C0E5786C85256CDB00642467/$FILE/200101584-Hatton.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200101584", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-26", - "case_names": "United States v. Sergeant TERRICK C. FINKLEA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6CD28B8961A4ECE785256CE0004A27A7/$FILE/mo-finklea.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020927", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-26", - "case_names": "United States v. First Lieutenant MICHAEL S. HOFLICH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C08D4EFB29DE04D785256CE00049E324/$FILE/mo-hoflich.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000676", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-25", - "case_names": "United States v. Lance Corporal Richard S. NOTI, Jr., U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F6699D7FFCBC3DF785256CD90054340F/$FILE/200202315-Noti.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200202315", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-21", - "case_names": "United States v. Specialist SHANE M. COLLINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9C12F28D0343E46885256CD4006ADFC4/$FILE/mo-collins,sm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010768", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-21", - "case_names": "United States v. Private E1 ERIC J. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DAA35B753C22F02485256CD400683408/$FILE/mo-brown,ej.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020152", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-20", - "case_names": "United States v. Staff Sergeant MARK E. McCRAE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F81CDFEDBBBC97B785256CD3006AD9B4/$FILE/mo-mccrae.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010940", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-20", - "case_names": "United States v. Private E2 CASEY J. DISTEL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/38329B84EFAFC02885256CD3006A5375/$FILE/mo-Distel,cj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020055", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-20", - "case_names": "United States v. Aviation Structural Mechanic (Structures) Second Class A...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5365B04CA5CD86FB85256CD400677F6A/$FILE/200100281-Cuento.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200100281", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-18", - "case_names": "United States v. Private Joseph M. GRAZIANO II, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AF00F048E66E205085256CD3004FAA65/$FILE/200201579-Graziano.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200201579", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-18", - "case_names": "United States v. Private First Class Polly M. ROGERS, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8E148D454F918BC485256CD3004D2421/$FILE/200201403-Rogers.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200201403", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-18", - "case_names": "United States v. Personnelman Third Class Travis J. HARDIN, U.S. Navy", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2FDC8AF55CCF56C185256CD3004DEF20/$FILE/200000034-Hardin.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200000034", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-14", - "case_names": "United States v. Specialist MATTHEW J. YRUEGAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/66B61DB74CB2453385256CD200551421/$FILE/mo-yruegas,mj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020791", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-14", - "case_names": "United States v. Major WINFRED O. BROWN, SR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/35151F9D9F49FEE085256CD20054D5AA/$FILE/mo-brown,wo.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901186", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-13", - "case_names": "United States v. Private First Class Edgard M. MONICO, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1519A0C5F58F345185256CD2006D5DC0/$FILE/200101270-Monico.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200101270", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-12", - "case_names": "United States v. Private E2 BRANDON G. RUSHING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A62FB9FBEACBAFC985256CCB006C9763/$FILE/mo-rushing.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010582", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-07", - "case_names": "United States v. Private E1 JASON G. SLOSS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/46359B93772E6D3F85256CCB006DF437/$FILE/mo-Sloss,jg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020023", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-06", - "case_names": "United States v. Staff Sergeant JAMES O. WILEY, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A801411076BC9B0885256CC600590BC8/$FILE/mo-wiley,jo.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020503", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-06", - "case_names": "United States v. Private First Class James P. LEONARD, Jr., U.S. Marine C...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3D022EBD3A7C7D1185256CD3004BEFD0/$FILE/200200260-Leonard.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200200260", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-06", - "case_names": "United States v. Lance Corporal Earl A. POWE, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0D2F60A30FDDFA1285256CD3004910DE/$FILE/9901162-Powe.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 9901162", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-04", - "case_names": "United States v. Staff Sergeant LISA M. HAIRSTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DEB0AC1DE6CB95FF85256CC50066AF62/$FILE/mo-hairston,lm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900811", - "case_name_shorts": "" - }, - { - "case_dates": "2003-02-03", - "case_names": "United States v. Private E2 CHARLES Y. HILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E71CF8F1C00D6CBA85256CC300523563/$FILE/mo-hill,cy.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010231", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-30", - "case_names": "United States v. Quartermaster Third Class Troy B. JENKINS, U.S. Navy", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DD86E6B187E1810985256CD2006CEE6B/$FILE/200101151-Jenkins.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200101151", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-30", - "case_names": "United States v. Dentalman Marcus B. DANIELS, U.S. Navy", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/493494B37CD2677E85256CD3004866B6/$FILE/200200423-Daniels.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200200423", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-29", - "case_names": "United States v. Specialist ALFONSO VELASQUEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7E1455C3A173089385256CBD006A1CCC/$FILE/mo-velasquez.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901217", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-29", - "case_names": "United States v. Private E2 JAMES L. WIGGINS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CE71EF2C375AB81085256CBD0069813F/$FILE/mo-wiggins,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20010736", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-28", - "case_names": "United States v. Private E2 JARED E. KERR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/03244E813D469F4685256CBD00670C69/$FILE/mo-kerr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20020509", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-28", - "case_names": "United States v. Fire Controlman Seaman Iredell W. BOULDIN, U.S. Navy", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9BEB0462614458D885256CD30050F0ED/$FILE/200101583-Bouldin.UNPUB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200101583", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-24", - "case_names": "United States v. Sergeant JERRY D. LEE, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5ADCBF7F34AB6F6185256CB80059A3A2/$FILE/mo-lee.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000951", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-22", - "case_names": "United States v. Sergeant ALLAN R. CREIGHTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A5EBFB77F88E13BB85256E51004F3260/$FILE/mo-creighton.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010208", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-22", - "case_names": "United States v. Private E1 KIRKLAND G. SPRATTLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/438D9A3DE3D69F4285256CB60068F3EC/$FILE/mo-sprattley,kg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010191", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-21", - "case_names": "United States v. Sergeant DANIEL M. FUREY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D7E09EECE05CA4B785256CB600693E08/$FILE/mo-furey.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000740", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-16", - "case_names": "United States v. Staff Sergeant RAMON L. HARRIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/052023DA323E354485256CB10048C93C/$FILE/mo-harris,rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000854", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-16", - "case_names": "United States v. Staff Sergeant Lauolefiso P. JONES, U.S. Marine Corps", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1DA54DD1EC09713885256CD20073139C/$FILE/200000845-Jones.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200000845", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-16", - "case_names": "United States v. Private First Class Joshua A. LOCKHART, U.S. Marine Corp...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ACC35AFC6DEFD29D85256CD200724A48/$FILE/200100427-Lockhart.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200100427", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-16", - "case_names": "United States v. Private E1 SCOTT H. KARCHER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/504934A61E8023E085256CB10048F3AC/$FILE/mo-karcher,sh.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000702", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-16", - "case_names": "United States v. Private E1 RICHARD A. WALLERT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/20F463FAA61F9D3C85256CB100488E7E/$FILE/mo-wallert.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900977", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-10", - "case_names": "United States v. Private First Class JACOB M. BOWLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2D992BF053632BD985256CB0004AA26C/$FILE/mo-bowley.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000093", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-09", - "case_names": "United States v. Storekeeper Second Class, James D. LOVETT, U.S. Navy", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5C9CC3AEAE10B9AE85256CD20068ED3A/$FILE/200001468-Lovett.unpub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "NMCM 200001468", - "case_name_shorts": "" - }, - { - "case_dates": "2003-01-06", - "case_names": "United States v. Sergeant CORNELIUS K. ABNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/17A7F9549A180AD685256CA6006341B9/$FILE/mo-abner.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901209", - "case_name_shorts": "" - }, - { - "case_dates": "2002-12-23", - "case_names": "United States v. Specialist MICHAEL A. WATKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D189BDDF7CDFD7C185256C9F004DB767/$FILE/mo-Watkins.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020045", - "case_name_shorts": "" - }, - { - "case_dates": "2002-12-23", - "case_names": "United States v. Sergeant WILLIAM A. BYRD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/75B06A897BCC57D785256CA3004A0943/$FILE/mo-Byrd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901101", - "case_name_shorts": "" - }, - { - "case_dates": "2002-12-23", - "case_names": "United States v. Sergeant PAUL J. PARKKO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C9C3F73BDEB74C7385256C9F004D5F91/$FILE/MO-Parkko.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20010806", - "case_name_shorts": "" - }, - { - "case_dates": "2002-12-23", - "case_names": "United States v. Private E-2 BRETT A. FOGARTY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E3FD7E36128F583785256CA300473CC0/$FILE/mo-Fogarty.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010103", - "case_name_shorts": "" - }, - { - "case_dates": "2002-12-19", - "case_names": "United States v. Private E1 TRAVIS L. RODICK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4E578FF2E6AD74A485256C9F004D8ED9/$FILE/MO-rodick.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000675", - "case_name_shorts": "" - }, - { - "case_dates": "2002-12-18", - "case_names": "United States v. Staff Sergeant DONALD E. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/496157198932FB7F85256C9F004C940F/$FILE/mo-brown.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY9901052", - "case_name_shorts": "" - }, - { - "case_dates": "2002-12-16", - "case_names": "United States v. Sergeant BRYANT T. JENKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E14F42F6EFA4C9BF85256C9F004D324D/$FILE/mo-jenkins bt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY20010763", - "case_name_shorts": "" - }, - { - "case_dates": "2002-12-13", - "case_names": "United States v. Specialist WILLIAM J. ANDERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7825327D89AA775885256C8E005A2A29/$FILE/mo-Anderson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010711", - "case_name_shorts": "" - }, - { - "case_dates": "2002-12-10", - "case_names": "United States v. Specialist JASON R. TOPLISS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3E768869C57877B185256C8C005D0CAE/$FILE/MO-Topliss.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000607", - "case_name_shorts": "" - }, - { - "case_dates": "2002-12-03", - "case_names": "United States v. Technical Sergeant WILLIAM BLAKE JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DD1DAA12C7B329CA85256DE20067F8DA/$FILE/Blake.pub.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ACM 34482", - "case_name_shorts": "" - }, - { - "case_dates": "2002-11-27", - "case_names": "United States v. Sergeant First Class MICHAEL R. GUEDEA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F5CE4A70BE31288185256C8700522644/$FILE/mo-guedea.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000645", - "case_name_shorts": "" - }, - { - "case_dates": "2002-11-27", - "case_names": "United States v. Private First Class WAYNE C. CONLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/341BA25FF56CFC2685256C87005126AF/$FILE/mo-conley.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900183", - "case_name_shorts": "" - }, - { - "case_dates": "2002-11-26", - "case_names": "United States v. Private First Class GERALD R. WALLACE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8FEE7F5B3139285385256C8A0053D270/$FILE/mo-wallace.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010848", - "case_name_shorts": "" - }, - { - "case_dates": "2002-11-25", - "case_names": "United States v. Sergeant DEWAYNE HALL, SR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4404FFD0538DA61085256C7E001033EC/$FILE/Mo-hall.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000148", - "case_name_shorts": "" - }, - { - "case_dates": "2002-11-25", - "case_names": "United States v. Private First Class DEAN W. BAKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3D33FA850EA764B985256C7D000F144D/$FILE/mo-baker,ed.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20001049", - "case_name_shorts": "" - }, - { - "case_dates": "2002-11-25", - "case_names": "United States v. Private E2 BRANDON A. BUNDY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FDBD664EEFC42F2C85256C7E000BE1FD/$FILE/Mo-bundy.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000473", - "case_name_shorts": "" - }, - { - "case_dates": "2002-11-25", - "case_names": "United States v. Private E1 VICTORIA J. HAVENS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5E2FCAB6D3DA937785256C7D00097921/$FILE/mo-Havens.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010364", - "case_name_shorts": "" - }, - { - "case_dates": "2002-11-18", - "case_names": "United States v. Specialist GERALD M. ATWATERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/64B6CB97AED0FA4C85256C7D00065113/$FILE/mo-atwaters.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900187", - "case_name_shorts": "" - }, - { - "case_dates": "2002-11-13", - "case_names": "United States v. Staff Sergeant FRANK C. JIMENEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/62FA39C54B19B93A85256C7D0009DEA7/$FILE/mo-jimenez.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010918", - "case_name_shorts": "" - }, - { - "case_dates": "2002-11-07", - "case_names": "United States v. Private E2 CALVIN N. GLOVER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/59B592F7922FE4DD85256C6F00556658/$FILE/MO-GLOVER,CN-need appendix.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901132", - "case_name_shorts": "" - }, - { - "case_dates": "2002-10-29", - "case_names": "United States v. Private E1 TRISTAN J. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A3FAB829ADB7CEDD85256C7D00084C67/$FILE/mo-brown2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000937", - "case_name_shorts": "" - }, - { - "case_dates": "2002-10-28", - "case_names": "United States v. Specialist GORDON M. BENNETT, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ADD7E12C7D2C6C0E85256C7D00077F71/$FILE/mo-bennett,gm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010922", - "case_name_shorts": "" - }, - { - "case_dates": "2002-10-25", - "case_names": "United States v. Private E2 NEAL T. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2612109EEFE22D3085256C6F0057CCB2/$FILE/mo-jones-N-2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900571", - "case_name_shorts": "" - }, - { - "case_dates": "2002-10-17", - "case_names": "United States v. Private First Class DARRELL R. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A6EDEA4FB2E6D62F85256C7D001184DB/$FILE/mo-smith-D.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010589", - "case_name_shorts": "" - }, - { - "case_dates": "2002-10-09", - "case_names": "United States v. Private E1 NARADA C. BRYANT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/70C29219E3E7078285256C6F00590FBC/$FILE/mo-bryant.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010811", - "case_name_shorts": "" - }, - { - "case_dates": "2002-09-26", - "case_names": "United States v. Sergeant KEATHA J. KIRKLAND", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CACBE7877970147785256C650005F428/$FILE/mo-kirkland.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010479", - "case_name_shorts": "" - }, - { - "case_dates": "2002-09-26", - "case_names": "United States v. Sergeant JERRY E. MADDOX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7F56107E559A376385256C650005F439/$FILE/mo-maddox.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000581", - "case_name_shorts": "" - }, - { - "case_dates": "2002-09-26", - "case_names": "United States v. Sergeant BRANTON E. WATKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D117B8C4261D508585256C650005F4C0/$FILE/mo-watkins.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901136", - "case_name_shorts": "" - }, - { - "case_dates": "2002-09-20", - "case_names": "United States v. Captain RICHARD GALLOZA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F36E96A478C70FCD85256C650005F366/$FILE/20000294-Galloza-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000294", - "case_name_shorts": "" - }, - { - "case_dates": "2002-09-17", - "case_names": "United States v. Staff Sergeant STANLEY E. EDMOND", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F6116C7CBEA37DF185256C650005F3D5/$FILE/mo-edmond.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900904", - "case_name_shorts": "" - }, - { - "case_dates": "2002-08-29", - "case_names": "United States v. Specialist JOSEPH J. MAZZULLO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/65D9D1B5B61805A685256C7E004EBC2C/$FILE/mo-mazzullo.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000629", - "case_name_shorts": "" - }, - { - "case_dates": "2002-08-29", - "case_names": "United States v. Specialist ANTOINE L. ORTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5E8B90C41A9AD60685256C650005F377/$FILE/20010396-Orton.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010396", - "case_name_shorts": "" - }, - { - "case_dates": "2002-08-29", - "case_names": "United States v. Sergeant First Class JAMES K. ARCHER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/268321907668D40485256C7E000A97F9/$FILE/mo-archer.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901118", - "case_name_shorts": "" - }, - { - "case_dates": "2002-08-29", - "case_names": "United States v. Private E1 ROCHESTER THOMAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/98AADCA69D4DD81C85256C7D000C3D20/$FILE/mo-thomas-2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800139", - "case_name_shorts": "" - }, - { - "case_dates": "2002-08-28", - "case_names": "United States v. Private E1 SY A. CAMPHOR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2624AE5DDBE82A8485256C650005F37A/$FILE/20020066-Camphor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020066", - "case_name_shorts": "" - }, - { - "case_dates": "2002-08-13", - "case_names": "United States v. Staff Sergeant JOHN D. MANDIGO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1D184F29F53DB22D85256C650005F43A/$FILE/MO-MANDIGO,JD.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900597", - "case_name_shorts": "" - }, - { - "case_dates": "2002-08-13", - "case_names": "United States v. Specialist SET J. RICO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C3814E0CA5AC73BE85256C650005F47E/$FILE/mo-rico,sj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000596", - "case_name_shorts": "" - }, - { - "case_dates": "2002-08-13", - "case_names": "United States v. Specialist DAVID C. APRODA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AAF5EEA0D343BCB185256C650005F388/$FILE/mo-aproda,da.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000369", - "case_name_shorts": "" - }, - { - "case_dates": "2002-08-13", - "case_names": "United States v. Private First Class MICHAEL P. YOCUM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2B60B58BACB1773985256C650005F4D8/$FILE/mo-yocum.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20020062", - "case_name_shorts": "" - }, - { - "case_dates": "2002-08-13", - "case_names": "United States v. Private E2 BRANDON R. CATHER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E86C3632293197AC85256C650005F3BB/$FILE/mo-cather,br.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011073", - "case_name_shorts": "" - }, - { - "case_dates": "2002-07-30", - "case_names": "United States v. Sergeant First Class JULIUS DAVIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AE43F65A79B9557B85256C7E000E1CDB/$FILE/mo-davis-J.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700945", - "case_name_shorts": "" - }, - { - "case_dates": "2002-07-26", - "case_names": "United States v. Sergeant First Class MARIO E. CASE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A0FC0B0E429F2EB885256C7E000C75D7/$FILE/Mo-case.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801088", - "case_name_shorts": "" - }, - { - "case_dates": "2002-07-26", - "case_names": "United States v. Chief Warrant Officer Two JOHN A. WEISBECK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B85C4A55F9D4AA8885256C650005F2B2/$FILE/19952215-Weisbeck.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9502215", - "case_name_shorts": "" - }, - { - "case_dates": "2002-07-24", - "case_names": "United States v. Private E1 MICHAEL W. ELVERUM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/21156BD296B35F4885256C8700688EA3/$FILE/Elverum-20010864.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010864", - "case_name_shorts": "" - }, - { - "case_dates": "2002-07-24", - "case_names": "United States v. Private E1 ESSEX V. DEBERRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6D5D918EF2E7E9EC85256C650005F3D1/$FILE/mo-DeBerry,ev.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900722", - "case_name_shorts": "" - }, - { - "case_dates": "2002-07-11", - "case_names": "United States v. Specialist KURT A. HENNEKE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DECFAC94B3702FAB85256C650005F405/$FILE/mo-henneke,ka.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000753", - "case_name_shorts": "" - }, - { - "case_dates": "2002-07-11", - "case_names": "United States v. Private First Class CHRISTOPHER L. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AB9842EC9F13D7E885256C650005F419/$FILE/mo-johnson,cl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010743", - "case_name_shorts": "" - }, - { - "case_dates": "2002-06-28", - "case_names": "United States v. Captain WILLIAM B. ANDREWS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0AD613FEFC35BDBD85256C650005F36B/$FILE/20000496-Andrews.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000496", - "case_name_shorts": "" - }, - { - "case_dates": "2002-06-27", - "case_names": "United States v. Private First Class VICENTE D. BASTIDAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AC1B94C00AC9635585256C650005F398/$FILE/mo-bastidas.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000902", - "case_name_shorts": "" - }, - { - "case_dates": "2002-06-27", - "case_names": "United States v. Private First Class ANDREW J. NEAL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EAC7AC659576A8DB85256C650005F45D/$FILE/mo-neal.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000023", - "case_name_shorts": "" - }, - { - "case_dates": "2002-06-27", - "case_names": "United States v. Private E1 CARLOS M. CORDOVA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/961208EFE6B6349885256C650005F3C7/$FILE/mo-cordova,cm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010936", - "case_name_shorts": "" - }, - { - "case_dates": "2002-06-26", - "case_names": "United States v. Private First Class LONNIE J. LILES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/978BF7B4732DDB2285256C650005F431/$FILE/mo-liles-2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000185", - "case_name_shorts": "" - }, - { - "case_dates": "2002-06-17", - "case_names": "United States v. Private First Class JEREMY L. BRITTENUM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EF02AB228F511C7485256C650005F3AD/$FILE/mo-brittenum.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800602", - "case_name_shorts": "" - }, - { - "case_dates": "2002-06-11", - "case_names": "United States v. Specialist JOSEPH C. NUGARA, Jr.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/65DE262FB171B98085256C650005F45E/$FILE/mo-Nugara,JC.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010937", - "case_name_shorts": "" - }, - { - "case_dates": "2002-06-10", - "case_names": "United States v. Sergeant DAVID H. DONALDSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B7BF86D7C85EEBE485256C650005F34A/$FILE/19990554-Donaldson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900544", - "case_name_shorts": "" - }, - { - "case_dates": "2002-06-06", - "case_names": "United States v. Private E1 JEREMY W. PALMER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/28B2FEF0FA8E688785256C650005F463/$FILE/mo-palmer,jw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010249", - "case_name_shorts": "" - }, - { - "case_dates": "2002-06-05", - "case_names": "United States v. Private First Class DANIEL J. POINDEXTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8192B1136322060E85256C650005F473/$FILE/mo-Poindexter,dj-FINAL.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000594", - "case_name_shorts": "" - }, - { - "case_dates": "2002-06-05", - "case_names": "United States v. Private E1 CHRISTINA E. HENLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4E4CC83FC4ECF21A85256C650005F404/$FILE/mo-henley.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000749", - "case_name_shorts": "" - }, - { - "case_dates": "2002-06-03", - "case_names": "United States v. Specialist JAYVEE CABANILLA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1131CD448269777185256C650005F35C/$FILE/19991116-Cabanilla.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901116", - "case_name_shorts": "" - }, - { - "case_dates": "2002-05-28", - "case_names": "United States v. Sergeant COURTHNEY R. HALL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E989F0A5AA0AB8B685256C650005F3FB/$FILE/mo-hall,cr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000159", - "case_name_shorts": "" - }, - { - "case_dates": "2002-05-22", - "case_names": "United States v. Staff Sergeant MATTHEW K. SANFORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F900DBD2B464426985256C650005F48A/$FILE/mo-sanford.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010171", - "case_name_shorts": "" - }, - { - "case_dates": "2002-05-22", - "case_names": "United States v. Private First Class THOMAS R. ALSBROOKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7D98F56B94FBF5D385256C650005F384/$FILE/mo-alsbrooks.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010447", - "case_name_shorts": "" - }, - { - "case_dates": "2002-05-13", - "case_names": "United States v. Private First Class KEITH A. GRIFFITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0FF3DD45F0D96ED685256C650005F379/$FILE/20010968-Griffith.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010968", - "case_name_shorts": "" - }, - { - "case_dates": "2002-05-07", - "case_names": "United States v. Private E1 JOHN C. GOODENOUGH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/524DEBF251A2EA3085256C650005F3F2/$FILE/mo-goodenough,jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900564", - "case_name_shorts": "" - }, - { - "case_dates": "2002-05-01", - "case_names": "United States v. Chief Warrant Officer Two JOYCE M. GAINES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/38C07C1C8178E81585256C650005F3E7/$FILE/mo-gaines, jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000384", - "case_name_shorts": "" - }, - { - "case_dates": "2002-04-29", - "case_names": "United States v. Specialist MICHAEL R. WILSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9363B750B6E91B9485256C650005F378/$FILE/20010554-Wilson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010554", - "case_name_shorts": "" - }, - { - "case_dates": "2002-04-29", - "case_names": "United States v. Specialist JASON R. BAUMANN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A7B23EEC74DD832785256C650005F399/$FILE/mo-baumann,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000229", - "case_name_shorts": "" - }, - { - "case_dates": "2002-04-26", - "case_names": "United States v. Sergeant MICHAEL J. RAUCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3FE2C6394DC6BCBF85256C650005F364/$FILE/20000114-Rauch.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000114", - "case_name_shorts": "" - }, - { - "case_dates": "2002-04-26", - "case_names": "United States v. Sergeant GILBERTO PAZ-MEDINA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/35796923CC73C12585256C650005F309/$FILE/19980452-Paz-Medina-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800452", - "case_name_shorts": "" - }, - { - "case_dates": "2002-04-23", - "case_names": "United States v. Master Sergeant NICKY A. THOMPSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B86FC50E08153E6585256C650005F4AD/$FILE/MO-THOMPSON,NA-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600798", - "case_name_shorts": "" - }, - { - "case_dates": "2002-04-22", - "case_names": "United States v. Private E1 MELISSA A. MAXWELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AFBEBE03E32B726885256C650005F442/$FILE/mo-maxwell,ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901036", - "case_name_shorts": "" - }, - { - "case_dates": "2002-04-17", - "case_names": "United States v. Staff Sergeant MICHAEL D. MOSS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5D014F8EB9ED861D85256C650005F348/$FILE/19990475-Moss.DOC", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900475", - "case_name_shorts": "" - }, - { - "case_dates": "2002-04-16", - "case_names": "United States v. Private First Class TODD C. BETHKE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C3BCD0ADE89045AA85256C650005F3A2/$FILE/mo-bethke.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010789", - "case_name_shorts": "" - }, - { - "case_dates": "2002-04-16", - "case_names": "United States v. Private E1 JACKIE J. REED", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F50577EA5AC4576B85256C650005F35E/$FILE/19991220-Reed.DOC", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901220", - "case_name_shorts": "" - }, - { - "case_dates": "2002-03-29", - "case_names": "United States v. Private E1 CIRO G. PIOMPINO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3C0B8EA347103A6485256C650005F471/$FILE/mo-piompino.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010126", - "case_name_shorts": "" - }, - { - "case_dates": "2002-03-27", - "case_names": "United States v. Specialist COURTNEY R. EVANS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B52D10B160F7DC6385256C650005F3D7/$FILE/mo-evans,cr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000108", - "case_name_shorts": "" - }, - { - "case_dates": "2002-03-27", - "case_names": "United States v. Sergeant DAVID J. KAISER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/61BE76690F1EF46485256C650005F423/$FILE/mo-kaiser,dj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900485", - "case_name_shorts": "" - }, - { - "case_dates": "2002-03-27", - "case_names": "United States v. Private First Class SEAN T. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E6C841EF5915BC3585256C650005F359/$FILE/19991042-Johnson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901042", - "case_name_shorts": "" - }, - { - "case_dates": "2002-03-25", - "case_names": "United States v. Sergeant JOHN A. TATEM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F9CFB75874994F7085256C650005F4A8/$FILE/mo-tatem,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20011060", - "case_name_shorts": "" - }, - { - "case_dates": "2002-03-22", - "case_names": "United States v. Private E2 PATRICK D. TULLOCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/36B5CD77A331784E85256C650005F2AA/$FILE/19940329-Tulloch-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9400329", - "case_name_shorts": "" - }, - { - "case_dates": "2002-03-20", - "case_names": "United States v. Sergeant FREDRICK D. DALTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2C99CFE8C9CFC0CE85256C650005F373/$FILE/20001014-Dalton.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20001014", - "case_name_shorts": "" - }, - { - "case_dates": "2002-03-19", - "case_names": "United States v. Sergeant First Class GARY F. ALFORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5EDDDEE7240154D885256C650005F37E/$FILE/mo-alford, gf-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701367", - "case_name_shorts": "" - }, - { - "case_dates": "2002-03-19", - "case_names": "United States v. Second Lieutenant PATRICK R. CUNANAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/04BE660327609E9B85256C650005F3CC/$FILE/mo-cunanan,pr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010338", - "case_name_shorts": "" - }, - { - "case_dates": "2002-02-28", - "case_names": "United States v. Private E2 VANESSA J. ALBRIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/354183CAC7AA8F0085256C650005F37D/$FILE/mo-albright,vp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010054", - "case_name_shorts": "" - }, - { - "case_dates": "2002-02-28", - "case_names": "United States v. Private E2 RAYMOND LITTLES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5EF28BD0D6086DA285257178001079A6/$FILE/Littles.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900553", - "case_name_shorts": "" - }, - { - "case_dates": "2002-02-28", - "case_names": "United States v. Private E2 RAYMOND LITTLES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5EF28BD0D6086DA285256CD3006E6825/$FILE/Littles.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900553", - "case_name_shorts": "" - }, - { - "case_dates": "2002-02-12", - "case_names": "United States v. Staff Sergeant JOHNNY O. INGRAM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/61C0C4F6AD816A3F85256C650005F40D/$FILE/mo-ingram.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901117", - "case_name_shorts": "" - }, - { - "case_dates": "2002-02-12", - "case_names": "United States v. Staff Sergeant JAMES ANDERSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/22C73C735855C0E485256C650005F387/$FILE/mo-anderson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000172", - "case_name_shorts": "" - }, - { - "case_dates": "2002-02-12", - "case_names": "United States v. Sergeant RICHARD R. SCAGGS II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2528371E94DA0D9485256C650005F48C/$FILE/mo-scaggs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000056", - "case_name_shorts": "" - }, - { - "case_dates": "2002-02-12", - "case_names": "United States v. Private First Class LONNIE J. LILES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A7D0CA74812C50B485256C650005F432/$FILE/mo-liles.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000185", - "case_name_shorts": "" - }, - { - "case_dates": "2002-02-08", - "case_names": "United States v. Private E2 FRANCISCO L. MELENDEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AFE23FAF6D90C11C85256C650005F44D/$FILE/mo-melendez,fl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901054", - "case_name_shorts": "" - }, - { - "case_dates": "2002-02-07", - "case_names": "United States v. Captain MIGUEL A. RODRIGUEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DE0CA3E7D6978A9B85256C650005F483/$FILE/mo-rodriguez,ma-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900318", - "case_name_shorts": "" - }, - { - "case_dates": "2002-02-04", - "case_names": "United States v. Private First Class JOSHUA F. SINNARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B7AB794C17123D6985256C650005F36A/$FILE/20000494-Sinnard.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000494", - "case_name_shorts": "" - }, - { - "case_dates": "2002-02-04", - "case_names": "United States v. Private E2 ALFRAE D. KRONINGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6DEAC19CE53C0BE085256C650005F370/$FILE/20000774-Kroninger.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000774", - "case_name_shorts": "" - }, - { - "case_dates": "2002-01-31", - "case_names": "United States v. Specialist ANDREW A. SZENTMIKLOSI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6F804962DC0F8B9885256C650005F4A6/$FILE/mo-szentmiklosi-2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701049", - "case_name_shorts": "" - }, - { - "case_dates": "2002-01-31", - "case_names": "United States v. Sergeant CHARLES E. DAVIS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0C58EAB47182205885256C650005F3CF/$FILE/mo-davis,ce.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010303", - "case_name_shorts": "" - }, - { - "case_dates": "2002-01-31", - "case_names": "United States v. Private E2 ANTONIO R. HENNIX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/54B4105C7C32EBA685256C650005F406/$FILE/mo-hennix.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20001059", - "case_name_shorts": "" - }, - { - "case_dates": "2002-01-25", - "case_names": "United States v. Sergeant JAMES SHERRILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/82FCCD2B2401A38085256C650005F362/$FILE/20000094-Sherrill.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000094", - "case_name_shorts": "" - }, - { - "case_dates": "2002-01-23", - "case_names": "United States v. Specialist CHRISTOPHER M. MYRICK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2F13B8AEAACED19985256C650005F360/$FILE/20000027-Myrick.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000027", - "case_name_shorts": "" - }, - { - "case_dates": "2002-01-22", - "case_names": "United States v. Sergeant First Class ALFRED R. HAMLET", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6C370CBE66C9B34985256C650005F3FD/$FILE/mo-hamlet.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000755", - "case_name_shorts": "" - }, - { - "case_dates": "2002-01-18", - "case_names": "United States v. Staff Sergeant MICHAEL L. BAKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D8B4851ACB1C199685256C650005F391/$FILE/mo-baker.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800743", - "case_name_shorts": "" - }, - { - "case_dates": "2002-01-18", - "case_names": "United States v. Private First Class WILLIAM T. GIBBS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3CD5EB839A07231385256C650005F3EC/$FILE/mo-gibbs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000786", - "case_name_shorts": "" - }, - { - "case_dates": "2002-01-14", - "case_names": "United States v. Private E1 BRANDON J. WRIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E2C9D9364C7252A285256C650005F4D6/$FILE/mo-wright.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010343", - "case_name_shorts": "" - }, - { - "case_dates": "2002-01-11", - "case_names": "United States v. Staff Sergeant RASHON L. BANKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ABFC1E48F2434A7185256C650005F369/$FILE/20000443-Banks.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000443", - "case_name_shorts": "" - }, - { - "case_dates": "2002-01-03", - "case_names": "United States v. Specialist TONITA E. REVELS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6A23D2BD22E95A7B85256C650005F47A/$FILE/mo-revels.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900739", - "case_name_shorts": "" - }, - { - "case_dates": "2002-01-03", - "case_names": "United States v. Private E1 PEPPER E. BEARD, Jr.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6FF241A5626AA18385256C650005F39B/$FILE/mo-beard,pe.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000301", - "case_name_shorts": "" - }, - { - "case_dates": "2002-01-03", - "case_names": "United States v. Captain RICHARD GALLOZA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C99CE041C789F38985256C650005F367/$FILE/20000294-Galloza.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000294", - "case_name_shorts": "" - }, - { - "case_dates": "2001-12-26", - "case_names": "United States v. Captain ROBERT A. ZICCARDI, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/991CE2AA29D9458985256C650005F4DB/$FILE/mo-ziccardi-2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601496", - "case_name_shorts": "" - }, - { - "case_dates": "2001-12-13", - "case_names": "United States v. Staff Sergeant LARRY D. YOUNG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/491BAE497106643D85256C650005F4D9/$FILE/mo-young, ld-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9501208", - "case_name_shorts": "" - }, - { - "case_dates": "2001-12-06", - "case_names": "United States v. Specialist NATHANIEL DRAKE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CF6322DD24B71A0985256C650005F322/$FILE/19981109-Drake.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801109", - "case_name_shorts": "" - }, - { - "case_dates": "2001-12-06", - "case_names": "United States v. Specialist BASIL D. KINGSBERRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B3134CF048BA95BC85256C650005F425/$FILE/mo-kingsberry,bd-MOFR.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800884", - "case_name_shorts": "" - }, - { - "case_dates": "2001-12-05", - "case_names": "United States v. Private E1 CORY M. ALLEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9048C07BC949407E85256C650005F381/$FILE/MO-ALLEN,CM-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900857", - "case_name_shorts": "" - }, - { - "case_dates": "2001-11-30", - "case_names": "United States v. Sergeant BRIAN W. NAPRSTEK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3E08DDB72F7A1B9085256C650005F45C/$FILE/mo-naprstek.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701997", - "case_name_shorts": "" - }, - { - "case_dates": "2001-11-29", - "case_names": "United States v. Private E2 ANDRE D. HARRELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A608EB14A23D42B085256C650005F376/$FILE/20010220-Harrell.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010220", - "case_name_shorts": "" - }, - { - "case_dates": "2001-11-28", - "case_names": "United States v. Specialist MARK R. WICKMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/614ED5BE7ACB30F185256C650005F351/$FILE/19990819-Wickman.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900819", - "case_name_shorts": "" - }, - { - "case_dates": "2001-11-28", - "case_names": "United States v. Corporal DARYL B. COLLINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/65793802AC98B56F85256C650005F3C4/$FILE/mo-collins.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900711", - "case_name_shorts": "" - }, - { - "case_dates": "2001-11-20", - "case_names": "United States v. Specialist JONATHON P. KISNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7D23CDD058FB696785256C650005F346/$FILE/19990434-Kisner.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900434", - "case_name_shorts": "" - }, - { - "case_dates": "2001-11-20", - "case_names": "United States v. Private E1 ANTOINE M. CHASE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/47C4CC1ECE88074185256C650005F3BC/$FILE/mo-chase,am.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000745", - "case_name_shorts": "" - }, - { - "case_dates": "2001-11-14", - "case_names": "United States v. Sergeant JAMES E. BRYANT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/39080944130C52C585256C650005F3B3/$FILE/MO-BRYANT, JE.DOC", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901057", - "case_name_shorts": "" - }, - { - "case_dates": "2001-11-05", - "case_names": "United States v. Sergeant JUDY A. HALL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B6CF4884D03BB9BB85256C650005F3FC/$FILE/MO-HALL,JA.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901124", - "case_name_shorts": "" - }, - { - "case_dates": "2001-11-05", - "case_names": "United States v. Private JOSHUA E. GAHL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F6EC64F6E330AC9985256C650005F3E6/$FILE/mo-gahl,je.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000437", - "case_name_shorts": "" - }, - { - "case_dates": "2001-11-05", - "case_names": "United States v. Private First Class VIRGILIO SALOMON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/27A8AA29B8EA405285256C650005F363/$FILE/200001045-Salomon.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20001045", - "case_name_shorts": "" - }, - { - "case_dates": "2001-11-05", - "case_names": "United States v. Private First Class THERMAN L. PRICE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CC2F88FF09BFC59785256C650005F474/$FILE/mo-price.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000351", - "case_name_shorts": "" - }, - { - "case_dates": "2001-11-05", - "case_names": "United States v. Private E1 SAMUEL E. SLOAS II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8E6DCCC884A00D7985256C650005F498/$FILE/mo-sloas,se.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901165", - "case_name_shorts": "" - }, - { - "case_dates": "2001-11-02", - "case_names": "United States v. Private E2 CHARLES D. MASON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/01E9D73F1BEE0BBB85256C650005F32B/$FILE/19981745-Mason-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801745", - "case_name_shorts": "" - }, - { - "case_dates": "2001-10-19", - "case_names": "United States v. Captain FRANCIS L. FRELIX-VANN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/23F79599A1AB58F785256C650005F3E3/$FILE/mo-frelix-vann-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701014", - "case_name_shorts": "" - }, - { - "case_dates": "2001-10-12", - "case_names": "United States v. Specialist EDWIN N. MILLAYES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CE3EFBBDCECC02E085256C650005F44F/$FILE/mo-millayes,en.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901080", - "case_name_shorts": "" - }, - { - "case_dates": "2001-10-11", - "case_names": "United States v. Sergeant ALVEANO M. BLACKWELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/97B7D559F8AA55D085256C650005F3A5/$FILE/mo-blackwell.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010184", - "case_name_shorts": "" - }, - { - "case_dates": "2001-10-11", - "case_names": "United States v. Private First Class MATHEW B. WEST", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/89CA9EEDE5C38E9285256C650005F4C3/$FILE/mo-west,mb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900738", - "case_name_shorts": "" - }, - { - "case_dates": "2001-10-10", - "case_names": "United States v. Specialist STEVE B. TUALAULELEI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9AFF9AE6AA85220A85256C650005F34E/$FILE/19990795-Taulaulelei.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900795", - "case_name_shorts": "" - }, - { - "case_dates": "2001-10-10", - "case_names": "United States v. Sergeant First Class ROGER D. EVERSOLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7D53ECC554E6C8AD85256C650005F2B7/$FILE/19960466-Eversole-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600466", - "case_name_shorts": "" - }, - { - "case_dates": "2001-10-09", - "case_names": "United States v. Sergeant JULION D. TEDDLETON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4E60BE06EBB356ED85256C650005F319/$FILE/19980796-Teddleton.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800796", - "case_name_shorts": "" - }, - { - "case_dates": "2001-10-09", - "case_names": "United States v. Private First Class JARVOS J. GRIFFIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A008F6AD66A04EAB85256C650005F336/$FILE/19990112-Griffin.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900112", - "case_name_shorts": "" - }, - { - "case_dates": "2001-10-04", - "case_names": "United States v. Private E1 MIGUEL ECHAVARRIA, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D903BF7F5518A17685256C650005F36E/$FILE/20000660-Echavarria.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000660", - "case_name_shorts": "" - }, - { - "case_dates": "2001-09-28", - "case_names": "United States v. Sergeant KIRK S. BYINGTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/230D4AB6D65E180985256C650005F3B6/$FILE/mo-byington.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800128", - "case_name_shorts": "" - }, - { - "case_dates": "2001-09-28", - "case_names": "United States v. Private E2 TOMA F. FITZGERALD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C332DC8364BA40D485256C7E000F561F/$FILE/mo-fitzgerald.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801677", - "case_name_shorts": "" - }, - { - "case_dates": "2001-09-28", - "case_names": "United States v. Private E2 ROBERT E. URBAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D946AE594F89A48C85256C7E00627A8A/$FILE/mo-urban.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000723", - "case_name_shorts": "" - }, - { - "case_dates": "2001-09-26", - "case_names": "United States v. Staff Sergeant CARLOS V. DIAZ-DUPREY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D74AA22132CC01F885256C650005F2B3/$FILE/19960181-Diaz-Duprey-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600181", - "case_name_shorts": "" - }, - { - "case_dates": "2001-09-26", - "case_names": "United States v. Private E2 CLARENCE E. GREMPEL III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8B9D0C21B5FE65DA85256C650005F34B/$FILE/19990581-Grempel.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900581", - "case_name_shorts": "" - }, - { - "case_dates": "2001-09-10", - "case_names": "United States v. Private First Class PHILIP L. KAHAL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/587B7B2EDC9A720285256C650005F421/$FILE/MO-KAHAL,PL-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900927", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-30", - "case_names": "United States v. Sergeant First Class ERIC R. JACKSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9779D628F3C488E385256C650005F40F/$FILE/mo-jackson, er.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 99001047", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-22", - "case_names": "United States v. Specialist GARY J. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1B8565B873C3FC4685256C650005F49A/$FILE/mo-smith,gj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000682", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-21", - "case_names": "United States v. Private First Class DAVID L. WILLIAM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/40BC665954A5612B85256C650005F4CC/$FILE/mo-williams-D.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900143", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-17", - "case_names": "United States v. Private First Class JOHN F. PERRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0C6C25D7B1D9139C85256C650005F46E/$FILE/mo-perry.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000630", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-16", - "case_names": "United States v. Specialist DERRICK D. BOULT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5DE0015F7EA50A1485256C650005F35F/$FILE/200000018-Boult.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000018", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-16", - "case_names": "United States v. Specialist BELROY L. JUNOR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/37F38D22F408B93185256C650005F420/$FILE/mo-junor,bl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900867", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-16", - "case_names": "United States v. Sergeant First Class DENNIS W. SHARKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/082D8EC37D9F675585256C650005F34D/$FILE/19990770-Sharks.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900770", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-16", - "case_names": "United States v. Private First Class JOEL Z. MOMENT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D53B3D817167CA0C85256C650005F451/$FILE/mo-moment.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900604", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-16", - "case_names": "United States v. Private E1 SHAWNTE M. MYERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3A9D8F3D8C2E0CDA85256C650005F45A/$FILE/mo-myers,sm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900329", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-10", - "case_names": "United States v. Specialist ERIC D. TURPIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/40EC62A46058675085256C650005F4B4/$FILE/MO-TURPIN,ED.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900115", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-10", - "case_names": "United States v. Private DAVID B. PENDERGRAST", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/37F2FA7AC652E0B885256C650005F46B/$FILE/mo-pendergrast.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801530", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-07", - "case_names": "United States v. Staff Sergeant JEFFREY R. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C0247200EC74D70D85256C650005F330/$FILE/19981805-Smith-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801805", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-07", - "case_names": "United States v. Private First Class BRIAN W. GEORGE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F1F3CE67C0BC12AF85256C650005F3EB/$FILE/mo-george-B.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000719", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-03", - "case_names": "United States v. Sergeant PATRICK A. SCHEINA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/09BBF38BA52634DD85256C650005F356/$FILE/19990956-Scheina.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900956", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-03", - "case_names": "United States v. Private First Class ANTHONY W. BASS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B1F946F13BF4834B85256C650005F327/$FILE/19981511-Bass.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801511", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-01", - "case_names": "United States v. Sergeant DAVID M. HOLLAND, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B2A52F12BD3E37DC85256C650005F40A/$FILE/mo-holland,dm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901168", - "case_name_shorts": "" - }, - { - "case_dates": "2001-08-01", - "case_names": "United States v. Corporal DENNIS M. STEVENS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D0B9D27733D1BADE85256C650005F4A3/$FILE/mo-stevens,dm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900666", - "case_name_shorts": "" - }, - { - "case_dates": "2001-07-20", - "case_names": "United States v. Specialist CAMILLE A. SAMUELS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AB0D1C4DF98B90C185256C650005F488/$FILE/mo-samuels,c-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900274", - "case_name_shorts": "" - }, - { - "case_dates": "2001-07-20", - "case_names": "United States v. Specialist ANDY OCCEAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4CC8CFE720EAD53885256C650005F461/$FILE/MO-OCCEAN,A.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900854", - "case_name_shorts": "" - }, - { - "case_dates": "2001-07-20", - "case_names": "United States v. Sergeant CHARLES R. WAGGONER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/98F3EAD696333C8585256C650005F4B9/$FILE/mo-waggoner,cr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800084", - "case_name_shorts": "" - }, - { - "case_dates": "2001-07-19", - "case_names": "United States v. Private First Class TUTUILA AVA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/12E65D29506879CC85256C650005F375/$FILE/20010055-Ava.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20010055", - "case_name_shorts": "" - }, - { - "case_dates": "2001-07-19", - "case_names": "United States v. Private E2 BRANDON L. PETTYPERRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/977AEAF290C4898B85256C650005F46F/$FILE/mo-pettyperry.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000621", - "case_name_shorts": "" - }, - { - "case_dates": "2001-07-13", - "case_names": "United States v. Specialist ANDRE C. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BB612826BE373C8885256C650005F41E/$FILE/mo-jones-2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901251", - "case_name_shorts": "" - }, - { - "case_dates": "2001-07-13", - "case_names": "United States v. Private First Class CARLTON E. BROWN, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/067FE03498FD6C1D85256C650005F3B1/$FILE/mo-brown-c.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900216", - "case_name_shorts": "" - }, - { - "case_dates": "2001-07-13", - "case_names": "United States v. Private E2 SYLVESTER J. McKNIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/18386F32619070A985256C650005F447/$FILE/mo-mcknight,s.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800871", - "case_name_shorts": "" - }, - { - "case_dates": "2001-07-05", - "case_names": "United States v. Sergeant WALTER HUDSON III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D41A198BF73A376A85256C650005F320/$FILE/19981086-Hudson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801086", - "case_name_shorts": "" - }, - { - "case_dates": "2001-06-29", - "case_names": "United States v. Sergeant First Class BRETT WRIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1FBA6C68A41DE3F885256C650005F4D5/$FILE/mo-Wright-Brett.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700470", - "case_name_shorts": "" - }, - { - "case_dates": "2001-06-29", - "case_names": "United States v. Private First Class THOMAS N. JOHNSON III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/01A1DE274520B5E685256C650005F416/$FILE/mo-johnson, tn.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900699", - "case_name_shorts": "" - }, - { - "case_dates": "2001-06-29", - "case_names": "United States v. Private First Class IRAK BARRERA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A02D93FF17C4347985256C650005F394/$FILE/mo-barrera.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000799", - "case_name_shorts": "" - }, - { - "case_dates": "2001-06-22", - "case_names": "United States v. Specialist CHRISTOPHER G. BIEGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0E338F34C2CC844B85256C650005F3A3/$FILE/MO-Bieger,cg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000409", - "case_name_shorts": "" - }, - { - "case_dates": "2001-06-22", - "case_names": "United States v. Private E2 DONALD J. BEICHNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E9665EC7C999F46985256C650005F39E/$FILE/mo-beichner.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000650", - "case_name_shorts": "" - }, - { - "case_dates": "2001-06-12", - "case_names": "United States v. Specialist PHILLIP B. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/278060BE7655640585256C650005F49E/$FILE/mo-smith-P.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900944", - "case_name_shorts": "" - }, - { - "case_dates": "2001-06-12", - "case_names": "United States v. Private E1 JAMIE PERSHAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4BB8F62E714E433885256C650005F316/$FILE/19980729-Pershay.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800729", - "case_name_shorts": "" - }, - { - "case_dates": "2001-06-05", - "case_names": "United States v. Private First Class TERRALE L. DARBY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DB5CB70EAF53FEF385256C650005F3CE/$FILE/mo-darby.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000638", - "case_name_shorts": "" - }, - { - "case_dates": "2001-06-04", - "case_names": "United States v. Private E1 DOMINIQUE T. WASHINGTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/021C37AA2AFD0B2985256C650005F36D/$FILE/20000655-Washington.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000655", - "case_name_shorts": "" - }, - { - "case_dates": "2001-06-04", - "case_names": "United States v. First Lieutenant JAMES R. WOOD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2ED6A1487354EFFF85256C650005F338/$FILE/19990196-Wood.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900196", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-31", - "case_names": "United States v. Sergeant LAWRENCE J. HALE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B62443EBC0F7747D85256C650005F33B/$FILE/19990269-Hale.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900269", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-31", - "case_names": "United States v. Private First Class ANTHONY T. McMILLAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9A9FEA7A1DB98E3C85256C650005F44B/$FILE/mo-mcmillan.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900273", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-31", - "case_names": "United States v. Private E2 JOHNNY J. HUCKABY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9D31A447FF2315C685256C650005F372/$FILE/20000858-Huckaby.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000858", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-25", - "case_names": "United States v. Sergeant ROBERT T.D. TORRES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B53B4396A9FF9FE285256C650005F4AF/$FILE/mo-torres.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800575", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-25", - "case_names": "United States v. Sergeant GEORGE W. BLACKLEY, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C4F89B4489EEA04185256C650005F3A4/$FILE/mo-blackley.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700647", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-25", - "case_names": "United States v. Sergeant First Class KENNETH B. WILDER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B75DC2BACC3292B585256C650005F4C7/$FILE/MO-Wilder,kb.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801517", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-23", - "case_names": "United States v. Staff Sergeant Joseph R. PASADAVA, JR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9E41A3A8B16C940285256C8700697C0E/$FILE/pasadava.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801741", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-16", - "case_names": "United States v. Specialist ROY P. TARBOX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/814224F0B093FE7F85256C650005F337/$FILE/19990180-Tarbox.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900180", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-16", - "case_names": "United States v. Specialist ROOSEVELT BRADFORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/667FCFD9CA4BE48385256C650005F3AA/$FILE/mo-bradford.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900366", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-16", - "case_names": "United States v. Specialist JEREMY R. MYERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8FBADC3A06C4794885256C650005F45B/$FILE/mo-myers-2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800035", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-14", - "case_names": "United States v. Sergeant First Class DANIEL E. MORGAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C125EB6023B2A89485256C650005F454/$FILE/mo-morgan-2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601890", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-11", - "case_names": "United States v. Specialist ARIEL A. NUNEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B8A3F0029AC061C685256C650005F45F/$FILE/mo-nunez-2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900181", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-10", - "case_names": "United States v. Specialist RIAN W. HANSEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/87C6FD7AD5D4B06B85256C7E0010AA57/$FILE/mo-hansen.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000532", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-04", - "case_names": "United States v. Staff Sergeant JOSEPH R. PASADAVA, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/07A5FD498D75F84D85256C7E004FB7A8/$FILE/mo-pasadava.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801741", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-04", - "case_names": "United States v. Private E1 KIRK S. BYINGTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AFDA37B7997F430585256C650005F4DD/$FILE/MOR-BYINGTON,KS.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800580", - "case_name_shorts": "" - }, - { - "case_dates": "2001-05-03", - "case_names": "United States v. Specialist BASIL D. KINGSBERRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D5E80640066FF4D685256C650005F426/$FILE/mo-kingsberry,bd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800884", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-30", - "case_names": "United States v. Private First Class COBY D. RUSSELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4698B6BF701BC05F85256C650005F31C/$FILE/19980856-Russell.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800856", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-30", - "case_names": "United States v. Private First Class ABEL G. ACOSTA-RONDON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9BE2EF95909D55F585256C650005F347/$FILE/19990458-Acosta-Rondon.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900458", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-23", - "case_names": "United States v. Staff Sergeant JESUS M. REYES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/914D6CE6607BE8C685256C650005F47B/$FILE/MO-REYES,JM.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900213", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-23", - "case_names": "United States v. Specialist JEFFREY D. GRIER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/55C809F0559A272C85256C650005F3F6/$FILE/MO-Grier,jd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000679", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-20", - "case_names": "United States v. Captain MIGUEL A. RODRIGUEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/533911CDE1E084FB85256C650005F484/$FILE/MO-RODRIQUEZ,ma.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900318", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-18", - "case_names": "United States v. Staff Sergeant RONALD P. SARDON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/85C9F7825007C59685256C7E0052C5CD/$FILE/mo-sardon.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900445", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-18", - "case_names": "United States v. Private E1 DAVID S. McLAURIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0A9562A0E27B223785256C7E004F2D9B/$FILE/mo-mclaurin.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901115", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-16", - "case_names": "United States v. Specialist ROSCHAN D. HALL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BF7CF8D1ACEB38B585256C870069AB63/$FILE/Hall.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900427", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-16", - "case_names": "United States v. Sergeant ERIC A. SHARP", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5E220B2114E3BD9185256C650005F2F7/$FILE/19971883-Sharp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701883", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-12", - "case_names": "United States v. Staff Sergeant MARQUIS K. WARREN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6DE084B498AFCA6C85256C650005F4BF/$FILE/mo-warren mk.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900982", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-12", - "case_names": "United States v. Staff Sergeant DANIEL C. LEVILLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9F121C74B79A7AC685256C650005F430/$FILE/MO-LEVILLE,DC.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900763", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-12", - "case_names": "United States v. Sergeant First Class ELROY WIDOW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FF80E60AD27A5BC885256C650005F4C5/$FILE/MO-WIDOW,E.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801409", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-12", - "case_names": "United States v. Private E2 RUDOLPH COLES III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0A47E2CEFB83916985256C87006AA2EC/$FILE/Coles-20000215.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000215", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-12", - "case_names": "United States v. Private E1 MICHAEL J. ARROYO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CF8CE3C31C1FA11385256C87006A7BF0/$FILE/Arroyo-9901032.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901032", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-06", - "case_names": "United States v. Specialist IAN J. POMARLEAU", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7437121C1EFAF9B285256C650005F31A/$FILE/19980836-Pomarleau.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800836", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-04", - "case_names": "United States v. Staff Sergeant RUFUS L. HAMILTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CC42FC11EFC502DB85256C7E001068C1/$FILE/mo-hamilton-4 Apr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600200", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-04", - "case_names": "United States v. Specialist VICTOR M. LOCKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CBE2B46F277E8DDD85256C7E00467AD9/$FILE/mo-locks.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901074", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-04", - "case_names": "United States v. Specialist DERRICK C. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FAAFEBDD44FCE9CA85256C7E006358B5/$FILE/mo-Williams -27 Mar 01.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701161", - "case_name_shorts": "" - }, - { - "case_dates": "2001-04-04", - "case_names": "United States v. Specialist CARL L. BRANCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/16CAEE3A2FBC0F2085256C650005F32F/$FILE/19981790-Branch-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801790", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-30", - "case_names": "United States v. Chief Warrant Officer Two EDWIN R. PALAGAR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C51DC6C5DA309E8785256C870068F6DB/$FILE/palagar.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900781", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-28", - "case_names": "United States v. Staff Sergeant SEAN G. GRIGORUK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0B3BFEA0C6B13F4085256C87006C6728/$FILE/grigoruk-9600949.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600949", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-22", - "case_names": "United States v. Staff Sergeant STEVEN P. VANDERJAGT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/518A13679C08FCD685256C650005F4B6/$FILE/MO-VANDERJAGT,SP.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900772", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-21", - "case_names": "United States v. Specialist AMES L. LAFFERTY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/80B81A05770E10A185256C650005F36C/$FILE/20000507-Lafferty.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000507", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-20", - "case_names": "United States v. First Lieutenant JOHN W. DAWSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/86D31758B0878E0185256C650005F3D0/$FILE/mo-dawson,jw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901144", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-19", - "case_names": "United States v. Private E1 CORY M. ALLEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/93161C061F49D60885256C650005F382/$FILE/mo-allen,cm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900857", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-14", - "case_names": "United States v. Specialist RON M. SHRIVER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DFB47DAB7033201185256C850067A5A2/$FILE/mo-shriver,rm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000589", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-14", - "case_names": "United States v. Specialist RON M. SHRIVER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0312F0FD671958A685256C87006AEB17/$FILE/Shriver-20000589.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000589", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-14", - "case_names": "United States v. Sergeant JOHN H. WHITE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/776B4574DBD61FF985256C650005F34F/$FILE/19990800-White-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900800", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-14", - "case_names": "United States v. Private E1 TERRENCE C. HERNDON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2251A0B5A702914585256C650005F310/$FILE/19980600-Herndon-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800600", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-09", - "case_names": "United States v. Private First Class JOSEPH P. GRIFFIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D53FA02C2DF8907185256C7E001004BC/$FILE/mo-griffis.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000851", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-09", - "case_names": "United States v. Private E1 RYAN G. GRONEWALD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/65363834F8654F4F85256C650005F3F8/$FILE/mo-gronewald,rg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900254", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-09", - "case_names": "United States v. Private BRIAN L. McCALL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/283F661DF1C25C9085256C7E004EFAE5/$FILE/mo-mccall.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801532", - "case_name_shorts": "" - }, - { - "case_dates": "2001-03-06", - "case_names": "United States v. Specialist JASON R. PETERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FEE2A1087BD01EDC85256C650005F365/$FILE/20000125-Peters.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000125", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-28", - "case_names": "United States v. Specialist THOMAS DURECUT, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/22DC9935FCA5047085256C7E000F1390/$FILE/mo-durecut.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801454", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-28", - "case_names": "United States v. Specialist MARTIN R. MIZZLES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9E62AECA58A7FF6A85256C650005F335/$FILE/1999-Mizzles.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900601", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-28", - "case_names": "United States v. Private E2 ZACHARY W. STEPHENS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E9DAD0212821C0A585256C7E00537F92/$FILE/mo-stephens.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900888", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-28", - "case_names": "United States v. Private E1 CHARLES F. KEESEY III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B26E86EAB61A133685256C7E00464CF2/$FILE/mo-keesey.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900403", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-27", - "case_names": "United States v. Private E1 DONALD L. REED, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/998C67FF3B169F0985256C650005F2FE/$FILE/19972057-Reed-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9702057", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-23", - "case_names": "United States v. Specialist WILLIAM R. HOOK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5FDC2785F6D8B09485256C650005F358/$FILE/19991030-Hook.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901030", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-23", - "case_names": "United States v. Private E1 JEFFERY A. HERNANDEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/17BA4B1653F2E85B85256C7E0010ED2D/$FILE/mo-hernandez.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900776", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-23", - "case_names": "United States v. Private E1 CHRISTOPHER D. CHANGO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0725557D64571B5F85256C650005F374/$FILE/2000698-Chango.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000698", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-21", - "case_names": "United States v. Staff Sergeant ISAIAH D. GREEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/88AC7CC0C513322185256C650005F341/$FILE/19990374-Green.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900374", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-16", - "case_names": "United States v. Private E1 ANGELA M. ROBBINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BA5B2129CDE01BFF85256C650005F2EB/$FILE/19971524-Robbins.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701524", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-15", - "case_names": "United States v. Specialist JAMES O. ENGLISH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F38D4FC4688036AD85256C650005F35B/$FILE/19991089-English.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901089", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-12", - "case_names": "United States v. Specialist JAMES C. HUDSON, JR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8EB4CB9E070C918485256C650005F40B/$FILE/mo-hudson,jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900313", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-12", - "case_names": "United States v. Sergeant RANDALL MITCHELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1E8D87F7850FB18E85256C650005F450/$FILE/mo-mitchell,r.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900997", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-09", - "case_names": "United States v. Private E2 PATRICK A. MARLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CA3E84A97CD8917B85256C650005F43D/$FILE/mo-marley,pa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000116", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-08", - "case_names": "United States v. Private First Class PHILIP L. KAHAL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0DDF918B836A2FB985256C650005F422/$FILE/MO-KAHAL,PL.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900927", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-08", - "case_names": "United States v. Private E1 PAULA J. ALBER-PERRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9F75B3EBF56D1A1F85256C650005F37C/$FILE/mo-alber-pery,pj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900885", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-06", - "case_names": "United States v. Specialist SKY M. NEAL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4BA343A711B4294E85256C650005F36F/$FILE/20000677-Neal.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000677", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-05", - "case_names": "United States v. Sergeant RODNEY D. STRANGE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6FF00E13C21FE29E85256C7E000F94EA/$FILE/mofr-strange.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900889", - "case_name_shorts": "" - }, - { - "case_dates": "2001-02-05", - "case_names": "United States v. Major DAVID L. DRUECKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/695A7D2B440E5B4785256C7E000E5735/$FILE/mo-druecker.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901028", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-30", - "case_names": "United States v. Sergeant IGNACIO E. O. RIOS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/45C546AB69B83EBE85256C7E005194B6/$FILE/mo-rios-30Jan01.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000760", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-30", - "case_names": "United States v. Private E1 ANDREW J. STEPHANY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2CDE51128950E9F885256C7E00531143/$FILE/mo-stephany-22Jan01.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900071", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-26", - "case_names": "United States v. Specialist MICHAEL W. WEIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3A79C147D51613E885256C650005F302/$FILE/19980134-Weis.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800134", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-26", - "case_names": "United States v. Specialist DENNIS R. BLANKENSHIP, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DC5707D62B335E4C85256C650005F3A6/$FILE/mo-blankenship, dr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900525", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-26", - "case_names": "United States v. Sergeant SELWYN S. HAWTHORNE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/07DCC9C6982ED8EF85256C650005F303/$FILE/19980209-Hawthorne.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800209", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-26", - "case_names": "United States v. Private E1 MARK C. MARLEY, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/036F2843E8C0D4E985256C7E0047045E/$FILE/mo-marley.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900474", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-26", - "case_names": "United States v. Private E1 BRYANT H. STRIGGLES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D788A6CA2D55737885256C650005F35D/$FILE/19991219-Striggles.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901219", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-22", - "case_names": "United States v. Specialist LARON M. McGHEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/45FDB3FD39A1298D85256C7E00809CAA/$FILE/mo-McGhee.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900600", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-22", - "case_names": "United States v. Specialist LARON M. McGHEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/45FDB3FD39A1298D492570C60030E324/$FILE/mo-McGhee.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900600", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-22", - "case_names": "United States v. Private First Class JEFFREY L. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1385522236705BB185256C7E0080E078/$FILE/mo-jones-J.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900483", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-16", - "case_names": "United States v. Private First Class ERIC O. JENOTT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CC1ABF544B6CEAC485256C650005F414/$FILE/MO-JENOTT,EO.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9602035", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-12", - "case_names": "United States v. Private E1 FRANK F. DILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4CBFECB5411FBC6B85256C650005F371/$FILE/20000775-Dill.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000775", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-11", - "case_names": "United States v. Specialist DAVID M. YOUNG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4466F0E48958C05C85256C7E007F5B62/$FILE/mo-young-D.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900230", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-10", - "case_names": "United States v. Specialist ALLYSON C. SIDBERRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5477A32D7FF482F085256C650005F492/$FILE/MO-SIDBERRY,AC.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900876", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-10", - "case_names": "United States v. Private E2 STEVEN S. BAHR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5E5D3C07233F4D3F85256C650005F390/$FILE/MO-BAHR,SS.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801838", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-08", - "case_names": "United States v. Private E1 CURTIS C. RIEBEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/21E997A33E40BA7385256C7E00801705/$FILE/mo-rieben.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000171", - "case_name_shorts": "" - }, - { - "case_dates": "2001-01-03", - "case_names": "United States v. Private TIMOTHY D. ELLIS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BDC6AE13B167345F85256C7E00811C4A/$FILE/Mo-ellis.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900621", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-21", - "case_names": "United States v. Private E2 JASON F. KOLODJAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1FDDE86B086AAD6185256C650005F429/$FILE/mo-kolodjay.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700389", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-21", - "case_names": "United States v. Private E2 DAVID J. FAULKNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D0B15A619F75219485256C650005F345/$FILE/19990432-Faulkner.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900432", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-21", - "case_names": "United States v. Private CHRISTIAN J. BERTLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2123144059EB1BD085256C7F000070C1/$FILE/mo-bertley.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900901", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-19", - "case_names": "United States v. Private E1 JEFFREY M. PARENT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/55314EE80656C31285256C650005F465/$FILE/mo-parent,jm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000106", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-15", - "case_names": "United States v. Private First Class ERIN M. NORTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CE72B5256CF72BB485256C650005F333/$FILE/19981832-Norton-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801832", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-13", - "case_names": "United States v. Staff Sergeant JEFFREY R. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BE904580D34BAEA385256C650005F331/$FILE/19981805-Smith.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801805", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-13", - "case_names": "United States v. Specialist CRYSTAL D. DUNN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1DB803148425DEE085256C650005F357/$FILE/19991010-Dunn.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901010", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-11", - "case_names": "United States v. Staff Sergeant JAMES A. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ADA0C7089F3A181885256C650005F3AF/$FILE/mo-brown,ja-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801503", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-11", - "case_names": "United States v. Private E2 PATRICK A. CORDER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/05D78327C57A288A85256C650005F3C6/$FILE/mo-corder,pa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900529", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-08", - "case_names": "United States v. Staff Sergeant ROCHESTER THOMAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FC617F755103433785256C650005F4AB/$FILE/mo-Thomas-R.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9502100", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-08", - "case_names": "United States v. Specialist PHILIP J. WAHL III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/83B4E963E4FF1E2F85256C650005F340/$FILE/19990372-Wahl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900372", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-07", - "case_names": "United States v. Sergeant ROBERT J. WIESEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0215F561637A930D85256C650005F4C6/$FILE/MO-WIESEN,RJ.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801770", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-07", - "case_names": "United States v. Sergeant DAVID M. PECARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6EC3B0D02FA78A2E85256C650005F467/$FILE/mo-pecard,dm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701940", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-07", - "case_names": "United States v. Captain DONALD A. CLOUD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/743E1CB38AEFA92A85256C650005F2FF/$FILE/1998-Cloud-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800299", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-06", - "case_names": "United States v. Private E1 RYAN L. WRAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/454D80BF1D51870485256C650005F4D3/$FILE/mo-wray,rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900522", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-05", - "case_names": "United States v. Staff Sergeant BENJIMAN JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0D60A707AD698B3085256C650005F417/$FILE/mo-johnson,b-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9602016", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-05", - "case_names": "United States v. Sergeant JOHN M. EMMINGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E883DC5547D0441D85256C650005F3D6/$FILE/MO-EMMINGER,JM.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900428", - "case_name_shorts": "" - }, - { - "case_dates": "2000-12-05", - "case_names": "United States v. Private E1 ASHLEE J. LEMAIRE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D5FD29089531057985256C650005F301/$FILE/19980121-Lemaire.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800121", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-27", - "case_names": "United States v. Sergeant ALEX CRAIG, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F5397A7CE4519F4185256C650005F3CA/$FILE/mo-craig,a.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900127", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-27", - "case_names": "United States v. Private E1 MARIO A. ALLEGRO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A9C795148AD1489185256C650005F380/$FILE/MO-ALLEGRO,MA.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900712", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-21", - "case_names": "United States v. Private E1 MICHAEL J. ARROYO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6DEDB66F94DFFA0E85256C650005F38C/$FILE/mo-arroyo,mj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901032", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-20", - "case_names": "United States v. Warrant Officer One ANTHONY V. HAMRIC", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8C699934051E899985256C650005F3FE/$FILE/mo-hamric,av.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900848", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-20", - "case_names": "United States v. Staff Sergeant JEFFERY L. AYERS, SR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/49F2DE641E82C87685256C650005F2F6/$FILE/19971847-Ayers-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701847", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-17", - "case_names": "United States v. Specialist AMY C. SCOTT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BE7F53FBADD14B2985256C650005F48D/$FILE/mo-scott-A.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900659", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-17", - "case_names": "United States v. Sergeant RONALD L. HARRIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/62729A859E156DE385256C650005F3FF/$FILE/mo-harris-R.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9301182", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-17", - "case_names": "United States v. Private E2 KEVIN W. FLOYD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8D79E40E1542C56485256C650005F34C/$FILE/19990668-Floyd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900668", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-17", - "case_names": "United States v. Private E2 BOBBY DANTZLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4A44909759E235E185256C650005F313/$FILE/19980645-Dantzler.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800645", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-17", - "case_names": "United States v. First Lieutenant DEATRIK L. BLEDSOE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0FB4F2F3BF2EFA2785256C650005F3A7/$FILE/mo-bledsoe.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900658", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-15", - "case_names": "United States v. Private First Class ZIMMAN J. CASEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ECCB628CFE16709185256C650005F3BA/$FILE/mo-casey.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900411", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-06", - "case_names": "United States v. Private First Class TYRON L. WATSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/71250477A4F0572A85256C650005F361/$FILE/20000045-Watson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000045", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-03", - "case_names": "United States v. Staff Sergeant TIMOTHY A. BURCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C7D44FC013D0F4FD85256C650005F3B4/$FILE/mo-burch.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801133", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-03", - "case_names": "United States v. Private E2 FRANKLIN L. SUTHERLAND", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/485266DB13AF023F85256C650005F368/$FILE/20000338-Sutherland.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000338", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-02", - "case_names": "United States v. Sergeant TRACY PEDEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/86DD67408C822E2285256C650005F468/$FILE/mo-peden.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800258", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-01", - "case_names": "United States v. Staff Sergeant MICHAEL D. HAAR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FB69EE2D6CCF531A85256C650005F3FA/$FILE/mo-haar,md.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601167", - "case_name_shorts": "" - }, - { - "case_dates": "2000-11-01", - "case_names": "United States v. Private E1 CLIFFORD J. MESSER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0659892AA5E8B9CC85256C650005F44E/$FILE/mo-messer,cj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900358", - "case_name_shorts": "" - }, - { - "case_dates": "2000-10-31", - "case_names": "United States v. Specialist ARIEL A. NUNEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9F404E26E23C7F4685256C650005F460/$FILE/mo-nunez.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900181", - "case_name_shorts": "" - }, - { - "case_dates": "2000-10-25", - "case_names": "United States v. Sergeant WAYNE L. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4CC4AFC71657436485256C650005F33E/$FILE/19990336-Jones.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900336", - "case_name_shorts": "" - }, - { - "case_dates": "2000-10-24", - "case_names": "United States v. Staff Sergeant JAMES W. LLOYD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AF03E4A712D160AF85256C650005F433/$FILE/mo-Lloyd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801781", - "case_name_shorts": "" - }, - { - "case_dates": "2000-10-23", - "case_names": "United States v. Specialist PERICLES D. BENOIT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CE7D803B4E871CFD85256C650005F39F/$FILE/mo-benoit,pd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801093", - "case_name_shorts": "" - }, - { - "case_dates": "2000-10-23", - "case_names": "United States v. Sergeant First Class ALLEN E. SIMPSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1250FAA65285FDA585256C650005F494/$FILE/mo-simpson,ae.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801824", - "case_name_shorts": "" - }, - { - "case_dates": "2000-10-20", - "case_names": "United States v. Specialist HUBERT FUSSELL, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/23416C795A403F2B85256C650005F31D/$FILE/19981022-Fussell.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801022", - "case_name_shorts": "" - }, - { - "case_dates": "2000-10-17", - "case_names": "United States v. Private E2 WILLIAM J. ROSS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DDAC01A25AB7427F85256C650005F32E/$FILE/19981761-Ross.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801761", - "case_name_shorts": "" - }, - { - "case_dates": "2000-10-10", - "case_names": "United States v. Staff Sergeant VANCE R. LASUEUR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0A81B6D3745AEEB885256C650005F42F/$FILE/mo-lasueur,vr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700803", - "case_name_shorts": "" - }, - { - "case_dates": "2000-10-05", - "case_names": "United States v. Lieutenant Colonel SARVESWARA R. CHERUKURI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/89DCCF0736A62AAE85256C650005F3BD/$FILE/mo-cherukuri,sr-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601824", - "case_name_shorts": "" - }, - { - "case_dates": "2000-10-03", - "case_names": "United States v. Private E2 SHANTE I. FORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/01A08CAC6ACEBC6D85256C650005F3E1/$FILE/mo-ford,si.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900383", - "case_name_shorts": "" - }, - { - "case_dates": "2000-10-03", - "case_names": "United States v. Lieutenant Colonel THOMAS F. ARMSTRONG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/119E860E1F1E0FEB85256C650005F38A/$FILE/mo-armstrong,tf.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600445", - "case_name_shorts": "" - }, - { - "case_dates": "2000-09-29", - "case_names": "United States v. Specialist CARLOS O. PALMER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/64E501D20BD318A885256C650005F464/$FILE/mo-palmer.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801039", - "case_name_shorts": "" - }, - { - "case_dates": "2000-09-28", - "case_names": "United States v. Private E2 ANGELA L. JEAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9068CCA98A096C9785256C650005F413/$FILE/mo-jean.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20000031", - "case_name_shorts": "" - }, - { - "case_dates": "2000-09-26", - "case_names": "United States v. Private E1 ZACHARY W. SEEM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/90A6FBBFA48D717885256C650005F32D/$FILE/19981754-Seem.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801754", - "case_name_shorts": "" - }, - { - "case_dates": "2000-09-15", - "case_names": "United States v. Private First Class SHAWN H. RICHARDS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1EC33178D7B5888685256C650005F47C/$FILE/mo-richards,sh.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700809", - "case_name_shorts": "" - }, - { - "case_dates": "2000-09-14", - "case_names": "United States v. Private E2 WALDO VIEYRA-BLANCO, AKA WALDO VIEYRA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/609BAF78999923AB85256C650005F4B8/$FILE/mo-vieyra-blanco,w.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900095", - "case_name_shorts": "" - }, - { - "case_dates": "2000-09-14", - "case_names": "United States v. Private E2 ANTONIO L. YELDER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/89A6D334435CCF9C85256C650005F4D7/$FILE/mo-yelder,al.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900741", - "case_name_shorts": "" - }, - { - "case_dates": "2000-09-01", - "case_names": "United States v. Private E1 JAMIE E. GUTIERREZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A37A51B526C318D685256C650005F3F9/$FILE/mo-gutierrez,je.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9901094", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-31", - "case_names": "United States v. Staff Sergeant PATRICK B. ROLLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8F9DC41DD75A2CB285256C650005F485/$FILE/MO-ROLLE,PB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601336", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-31", - "case_names": "United States v. Private E1 JAMES R. MARLOW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BBCA88A82D25122A85256C650005F43E/$FILE/mo-marlow,jr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800727", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-30", - "case_names": "United States v. Private E2 GUILLERMO JARAMILLO, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EBB08E105435163E85256C650005F412/$FILE/MO-JARAMILLO.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900743", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-29", - "case_names": "United States v. Captain TERESA J. GRANT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AF48E652C417C21085256C650005F332/$FILE/19981829-Grant.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801829", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-28", - "case_names": "United States v. Specialist TYRONE W. SIMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6FD4EA87F083FCE385256C650005F497/$FILE/mo-sims2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701206", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-22", - "case_names": "United States v. Sergeant KURT C. HUHN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E186748EE7CC9EEC85256C650005F40C/$FILE/mo-huhn,kc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900210", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-22", - "case_names": "United States v. Inmate CORTNEY A. RILEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4724F3488D06B0D985256C650005F47F/$FILE/mo-riley,ca.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900755", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-11", - "case_names": "United States v. Private First Class KRISTOPHER L. CRASS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DE9E30E8D92D7F0A85256C650005F3CB/$FILE/mo-crass.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801576", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-10", - "case_names": "United States v. Staff Sergeant TEMPLE A. LOOMIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/28FF9BE3ABBE6DD685256C650005F435/$FILE/mo-loomis, ta.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800077", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-10", - "case_names": "United States v. Sergeant LATONYA D. BENTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/270AF6E87023C82585256C650005F3A0/$FILE/mo-benton.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701402", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-10", - "case_names": "United States v. Private First Class ZACHARY G. GARRIOTT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6510A10384C7B10F85256C650005F3E9/$FILE/mo-garriott.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801567", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-10", - "case_names": "United States v. Private E1 EDWARD A. GRAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D5925E631DCCA81585256C650005F3F5/$FILE/mo-gray.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900175", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-09", - "case_names": "United States v. Specialist DAVID E. HIRD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B899B46377FBC9C785256C650005F339/$FILE/19990222-Hird.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900222", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-09", - "case_names": "United States v. Private E2 NATHAN R. KISBEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2B0F94A623E5771585256C650005F353/$FILE/19990863-Kisbey.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900863", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-07", - "case_names": "United States v. Specialist STEVEN C. FERGUSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/171D3209A62B9F5C85256C650005F3DB/$FILE/mo-ferguson,sc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801572", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-04", - "case_names": "United States v. Private First Class MATTHEW S. RUNGE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DB6727F54FBB9CDA85256C650005F487/$FILE/mo-runge.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801502", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-03", - "case_names": "United States v. Private E2 DESMOND D. TURNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BF39E1F26A9B982685256C650005F342/$FILE/19990396-Turner.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900396", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-03", - "case_names": "United States v. Private E2 DENNIS M. BEAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5D52151AA79600CB85256C650005F354/$FILE/19990886-Bean.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900886", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-03", - "case_names": "United States v. Private E2 CHARLES D. MASON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/52DA979EA276E62985256C650005F32C/$FILE/19981745-Mason.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801745", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-31", - "case_names": "United States v. Sergeant ALBERT L. GILMORE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6B03C191C68603D285256C650005F3EE/$FILE/mo-gilmore.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900536", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-27", - "case_names": "United States v. Private E2 DAMON L. PICKETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FFF92D7B610DD6A185256C650005F323/$FILE/19981126-Pickett-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801126", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-25", - "case_names": "United States v. Specialist CAMILLE A. SAMUELS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1FC24A40DFE2F6C385256C650005F489/$FILE/mo-samuels,ca.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900274", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-17", - "case_names": "United States v. Private First Class DESHAUN C. LUNA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8831D1231AEED6A185256C650005F437/$FILE/mo-luna,dc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900769", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-17", - "case_names": "United States v. Private E2 ROBERT C. AYERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A025D6F618E3BE4B85256C650005F38F/$FILE/mo-ayers.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900074", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-13", - "case_names": "United States v. Sergeant DAVID J. McDONALD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/923DDE9388E82E1685256C650005F33A/$FILE/19990233-Mcdonald.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900233", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-13", - "case_names": "United States v. Private E2 JAESON A. HEDGEPETH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8093A710253D924A85256C650005F403/$FILE/mo-hedgepeth.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900448", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-11", - "case_names": "United States v. Private First Class WILLIE J. HARRIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8AB512EB3032A47B85256C650005F400/$FILE/mo-harris.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801595", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-06", - "case_names": "United States v. Private E1 ANTHONY L. NEHRING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/605E234E7868D3FD85256C650005F2DC/$FILE/19970342-Nehring.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700342", - "case_name_shorts": "" - }, - { - "case_dates": "2000-06-28", - "case_names": "United States v. Private First Class RICHARD E. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/49A9988A5710E83B85256C650005F4DE/$FILE/9900718 SMITH.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900718", - "case_name_shorts": "" - }, - { - "case_dates": "2000-06-26", - "case_names": "United States v. Specialist ERIK L. KUHLMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/95703A4CC8B8113785256C650005F42B/$FILE/mo-kuhlman,el.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701691", - "case_name_shorts": "" - }, - { - "case_dates": "2000-06-21", - "case_names": "United States v. Staff Sergeant ROBERT O. McLEAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5F59D2D8E1D882FE85256C650005F449/$FILE/mo-mclean,ro.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701870", - "case_name_shorts": "" - }, - { - "case_dates": "2000-06-20", - "case_names": "United States v. Staff Sergeant GUY R. PATTERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0493A5929C10365D85256C650005F2E9/$FILE/19971464-Patterson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701464", - "case_name_shorts": "" - }, - { - "case_dates": "2000-06-20", - "case_names": "United States v. Sergeant JOHN H. WHITE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/94B3E7D2BBBE3E4A85256C650005F350/$FILE/19990800-White.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900800", - "case_name_shorts": "" - }, - { - "case_dates": "2000-06-20", - "case_names": "United States v. Private KEON L. REED", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/729A67227253873385256C650005F479/$FILE/mo-reed-k.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900378", - "case_name_shorts": "" - }, - { - "case_dates": "2000-06-06", - "case_names": "United States v. Sergeant RICHARD A. KINNEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/08BE00924E99B1B785256C650005F427/$FILE/mo-kinney,ra.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800451", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-31", - "case_names": "United States v. Specialist GERALD GALARZA, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8AC204E7FF3BC05E85256C650005F3E8/$FILE/mo-galarza.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800075", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-31", - "case_names": "United States v. Private First Class ERIN M. NORTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DFD31053AFAB448E85256C650005F334/$FILE/19981832-Norton.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801832", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-31", - "case_names": "United States v. Private E2 JOSHUA B. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9206399DE6290E0485256C650005F49D/$FILE/mo-smith-J.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801026", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-19", - "case_names": "United States v. Sergeant RODNEY D. STRANGE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/92F432AF7BFCAC1585256C650005F355/$FILE/19990889-Strange.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900889", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-16", - "case_names": "United States v. Staff Sergeant REGINAL L. BOATWRIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EF3515F2B38FF0F985256C650005F3A8/$FILE/mo-boatwright.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800446", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-12", - "case_names": "United States v. Staff Sergeant JAMES T. VAUGHN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EFEA3816B2392CEF85256C650005F4B7/$FILE/mo-vaughn,jt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800593", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-11", - "case_names": "United States v. Sergeant First Class GARY F. ALFORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/13C8A096EB29AFE685256C650005F37F/$FILE/mo-alford, gf.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701367", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-10", - "case_names": "United States v. Private First Class COURTNEY L. TANNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1A362C941C93F68385256C650005F33C/$FILE/19990272-Tanner.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900272", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-04", - "case_names": "United States v. Staff Sergeant JOHN E. FARRISH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0C3DDC275B8D2C4985256C650005F3D9/$FILE/mo-farrish2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601617", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-04", - "case_names": "United States v. Private First Class GEORGE B. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E1F934EB445F3F8385256C650005F499/$FILE/MO-SMITH,GB.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801455", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-04", - "case_names": "United States v. Private E2 LYNDELL TOWNSEND", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8370934F64C676A885256C650005F317/$FILE/19980740-Townsend.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800740", - "case_name_shorts": "" - }, - { - "case_dates": "2000-04-13", - "case_names": "United States v. Staff Sergeant CHRISSANDRA V. MARBURY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EEB1CF68E8CE1A3B85256C650005F2DD/$FILE/19970371-Marbury-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700371", - "case_name_shorts": "" - }, - { - "case_dates": "2000-04-13", - "case_names": "United States v. Specialist RAHEIM J. SALTERS (AKA RAHEIM J. JACKSON)", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E5CBFBE2BC4364F185256C87006B31D0/$FILE/Salters-9800893.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800893", - "case_name_shorts": "" - }, - { - "case_dates": "2000-04-03", - "case_names": "United States v. Specialist TERENIE A. McLAURIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/184EAFA9DA37023B85256C650005F448/$FILE/mo-McLaurin, TA.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801194", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-31", - "case_names": "United States v. Specialist CHRISTOPHER S. WEATHERFORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A47D7EDB2B6E798585256C650005F4C1/$FILE/mo-weatherford.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801553", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-31", - "case_names": "United States v. Private First Class DOROTHY L. EVANS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0E3B6550EE84F45C85256C650005F3D8/$FILE/mo-evans.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801117", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-31", - "case_names": "United States v. Private E1 LEMONTA JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ECEA52D9C1E53C5585256C650005F33F/$FILE/19990347-Johnson-recon.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900347", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-28", - "case_names": "United States v. Sergeant DELVAN GONZALES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/57022548256CA93685256C650005F3F0/$FILE/MO-GONZALES,D.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800445", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-23", - "case_names": "United States v. Private E1 THOMAS A. JOYCE, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CD0D2D7AC8617D4385256C650005F30C/$FILE/19980569-Joyce.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800569", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-17", - "case_names": "United States v. Private E2 LESLIE C. McLEMORE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/056B56D319F42C7B85256C650005F44A/$FILE/mo-mclemore.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801578", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-16", - "case_names": "United States v. Specialist TYRONE W. SIMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/977B038CE764CD2185256C650005F496/$FILE/mo-sims-T.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701206", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-08", - "case_names": "United States v. Specialist THELMA A. MOORE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FAEAEDDA6F7D128885256C650005F343/$FILE/19990416-Moore.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900416", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-08", - "case_names": "United States v. Private First Class ERIC G. MATHEWS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/31BE412B10D7ECC885256C650005F441/$FILE/mo-mathews.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900627", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-08", - "case_names": "United States v. Private E2 JERMAIN J. BEST", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/329885920FA6F96585256C650005F3A1/$FILE/mo-best,gj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701222", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-08", - "case_names": "United States v. Private E1 SEAN D. DABNEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6BF3B35F460E342685256C650005F3CD/$FILE/mo-dabney.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800428", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-07", - "case_names": "United States v. Private E2 DAMON L. PICKETT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2FD6E8B9B9B981C785256C650005F324/$FILE/19981126-Pickett.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801126", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-24", - "case_names": "United States v. Sergeant REDELL GREEN, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2611198E47703D4685256C650005F2D1/$FILE/19961821-Green-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601821", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-24", - "case_names": "United States v. Sergeant NURA L. SALES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D858F8495BB0714F85256C650005F2D5/$FILE/19962005-Sales.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9602005", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-24", - "case_names": "United States v. Sergeant First Class LOWELL L. McGEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DA90BAA4D86FA23785256C650005F446/$FILE/mo-mcgee,ll-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700480", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-24", - "case_names": "United States v. Private E2 MARTY L. STEVENS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CD39EE1B188DAB5285256C650005F4A4/$FILE/mo-stevens.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801404", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-24", - "case_names": "United States v. Private E1 ANDREW K. LEAL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/42701F05686A66F785256C650005F2D7/$FILE/1997-Leal-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701028", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-23", - "case_names": "United States v. Private E1 JAMES A. YOUNG , AKA ARTHUR J. YOUNG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/447132DB6BBDAC0585256C650005F4DA/$FILE/mo-young,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701952", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-15", - "case_names": "United States v. Specialist LAJAMES C. WILSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/94AE033ACC1C275685256C650005F4CF/$FILE/mo-wilson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801512", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-15", - "case_names": "United States v. Sergeant THOMAS M. LONERGAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/243EB735792DC32D85256C650005F434/$FILE/mo-lonergan.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700615", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-15", - "case_names": "United States v. Sergeant KENNETH W. CAUTHEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/31FB44F955ACA04885256C87006B9DBC/$FILE/Cauthen-9801025.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801025", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-15", - "case_names": "United States v. Private E2 QUANLON S. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/99078569653F304785256C650005F49B/$FILE/mo-smith,qs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700747", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-10", - "case_names": "United States v. Staff Sergeant TRACY R. GWYN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4BF36F38DDA9ED6085256C650005F312/$FILE/19980621-Gwyn.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800621", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-08", - "case_names": "United States v. Staff Sergeant GRETA R. LYONS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E43EF35C39FC2D4D85256C650005F438/$FILE/mo-lyons.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701575", - "case_name_shorts": "" - }, - { - "case_dates": "2000-01-31", - "case_names": "United States v. Sergeant First Class EMMET URIAH ALLEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/13A0B7695B8EC00685256C650005F383/$FILE/mo-allen,eu.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701466", - "case_name_shorts": "" - }, - { - "case_dates": "2000-01-31", - "case_names": "United States v. Captain ROBERT A. ZICCARDI, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4B1D9336F006C76685256C650005F4DC/$FILE/mo-ziccardi.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601496", - "case_name_shorts": "" - }, - { - "case_dates": "2000-01-27", - "case_names": "United States v. Private E2 JOSHUA B. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8D519972915D8AA185256C650005F40E/$FILE/mo-J-smith.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801026", - "case_name_shorts": "" - }, - { - "case_dates": "2000-01-13", - "case_names": "United States v. Sergeant MARGARET J. CARR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9557858122A5736D85256C7F00003C35/$FILE/mo-Carr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9501722", - "case_name_shorts": "" - }, - { - "case_dates": "2000-01-13", - "case_names": "United States v. Private E1 MATTHEW P. COTTMON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C112C3C38C503CB185256C650005F3C9/$FILE/mo-cottmon.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900271", - "case_name_shorts": "" - }, - { - "case_dates": "2000-01-11", - "case_names": "United States v. Specialist STEPHEN E. BOONE, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6629428EF8F8C62A85256C650005F3A9/$FILE/mo-boone,se.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9200231", - "case_name_shorts": "" - }, - { - "case_dates": "2000-01-11", - "case_names": "United States v. Private E2 JUNIOR S. PHILLIP", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/60552345C6EB8DD485256C650005F470/$FILE/mo-phillip.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700398", - "case_name_shorts": "" - }, - { - "case_dates": "2000-01-07", - "case_names": "United States v. Private E2 TIMOTHY M. HUMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3313608AD34B9B0385256C650005F321/$FILE/19981090-Human.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701049", - "case_name_shorts": "" - }, - { - "case_dates": "2000-01-04", - "case_names": "United States v. Sergeant LISA R. HUMPHREY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6A556928721C553B85256C650005F344/$FILE/19990417-Humphrey.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900417", - "case_name_shorts": "" - }, - { - "case_dates": "1999-12-29", - "case_names": "United States v. Private First Class MILTON E. WYATT II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6784D948ED856D7285256C650005F325/$FILE/19981342-Wyatt-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801342", - "case_name_shorts": "" - }, - { - "case_dates": "1999-12-21", - "case_names": "United States v. Sergeant JASON E. MYERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3A777CFB70082AC485256C650005F491/$FILE/mo-shriver,rm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801138", - "case_name_shorts": "" - }, - { - "case_dates": "1999-12-21", - "case_names": "United States v. Sergeant JASON E. MYERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3A2B581D1A6F428385256C650005F459/$FILE/MO-MYERS, JE.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801138", - "case_name_shorts": "" - }, - { - "case_dates": "1999-12-21", - "case_names": "United States v. Private E2 RAYMOND LITTLES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DC4EE0DB46104D0685256C650005F35A/$FILE/19991059-Littles-writ.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 9901059", - "case_name_shorts": "" - }, - { - "case_dates": "1999-12-21", - "case_names": "United States v. Private E1 HARRELL WOODSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5034F0ED017092B885256C650005F4D0/$FILE/mo-woodson,h.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701853", - "case_name_shorts": "" - }, - { - "case_dates": "1999-12-21", - "case_names": "United States v. Captain WALTER H. McCLENDON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/69B1F7464ED785B385256C650005F444/$FILE/mo-McClendon.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700824", - "case_name_shorts": "" - }, - { - "case_dates": "1999-12-13", - "case_names": "United States v. Specialist JAMES E. PUGH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/564EE862F5982FDB85256C650005F33D/$FILE/19990325-Pugh.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900325", - "case_name_shorts": "" - }, - { - "case_dates": "1999-12-09", - "case_names": "United States v. Master Sergeant THOMAS D. MORRISON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A7A730DBA919E99885256C7E00806109/$FILE/mo-morrison.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600461", - "case_name_shorts": "" - }, - { - "case_dates": "1999-12-06", - "case_names": "United States v. Sergeant First Class WILLIE J. WILLIAMSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DF507AD58FA494FB85256C650005F2FA/$FILE/19972022-Williamson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9702022", - "case_name_shorts": "" - }, - { - "case_dates": "1999-12-06", - "case_names": "United States v. Private (E1) SCOTT J. BRUNO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D21D60CDF66E87DD85256C650005F352/$FILE/19990820-Bruno.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900820", - "case_name_shorts": "" - }, - { - "case_dates": "1999-12-03", - "case_names": "United States v. Specialist JOHN C. McALLISTER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4D5DAC3389DEDEE385256C650005F443/$FILE/mo-mcallister,jc.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601134", - "case_name_shorts": "" - }, - { - "case_dates": "1999-12-03", - "case_names": "United States v. Chief Warrant Officer Five TROY W. CARBAUGH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DC27A91F40C0060A85256C650005F3B8/$FILE/mo-carbaugh,tw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701612", - "case_name_shorts": "" - }, - { - "case_dates": "1999-11-29", - "case_names": "United States v. Sergeant CHRISTOPHER L. BURNS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/61888E6BC059C0D985256C650005F3B5/$FILE/mo-burns,cl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701487", - "case_name_shorts": "" - }, - { - "case_dates": "1999-11-29", - "case_names": "United States v. Private First Class NIGEL L. ADAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0346ED2A47CA072685256C650005F37B/$FILE/mo-adams.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801072", - "case_name_shorts": "" - }, - { - "case_dates": "1999-11-10", - "case_names": "United States v. Sergeant First Class CHARLES G. KNIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/53B1F0A7105B234685256C650005F2DA/$FILE/19970322-Knight-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700322", - "case_name_shorts": "" - }, - { - "case_dates": "1999-11-06", - "case_names": "United States v. Private DAVID M. MELANSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BC6F1D682648357985256C870069EE7A/$FILE/Melanson.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 9801349", - "case_name_shorts": "" - }, - { - "case_dates": "1999-10-29", - "case_names": "United States v. Private E1 JESSE F. SPURGIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/696F436422BC2D1885256C650005F4A1/$FILE/mo-spurgin.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700788", - "case_name_shorts": "" - }, - { - "case_dates": "1999-10-25", - "case_names": "United States v. Private First Class DAMON D. ADAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D614A1C135760F7085256C650005F315/$FILE/19980728-Adams.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800728", - "case_name_shorts": "" - }, - { - "case_dates": "1999-10-19", - "case_names": "United States v. Specialist JASON L. LADOUCEUR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EB51A7ACD21F6DD985256C650005F42D/$FILE/mo-ladouceur.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800724", - "case_name_shorts": "" - }, - { - "case_dates": "1999-10-19", - "case_names": "United States v. Specialist GREGORY J. DUDLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F4E287CC7B1620A385256C650005F3D4/$FILE/mo-dudley.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701614", - "case_name_shorts": "" - }, - { - "case_dates": "1999-10-19", - "case_names": "United States v. Specialist CHRISTOPHER L. CAIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7BA69875669A23E885256C650005F3B7/$FILE/mo-cain-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601810", - "case_name_shorts": "" - }, - { - "case_dates": "1999-10-18", - "case_names": "United States v. Staff Sergeant JOHN D. GUNKLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/72932F4BABFB622185256C650005F2F8/$FILE/19971960-Gunkle.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701960", - "case_name_shorts": "" - }, - { - "case_dates": "1999-10-18", - "case_names": "United States v. Specialist JON T. MOREAU", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/405DFC421ED1A02385256C650005F453/$FILE/MO-MOREAU,JT.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9900212", - "case_name_shorts": "" - }, - { - "case_dates": "1999-10-14", - "case_names": "United States v. Sergeant CLYDE B. PUGH, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CC32288444FCDED585256C650005F2BF/$FILE/19960811-Pugh-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600811", - "case_name_shorts": "" - }, - { - "case_dates": "1999-10-14", - "case_names": "United States v. Private E2 JASON E. NELSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5FA011CE6849966885256C650005F2C2/$FILE/19961144-Nelson-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601144", - "case_name_shorts": "" - }, - { - "case_dates": "1999-10-05", - "case_names": "United States v. Private E1 JOE A. JIMENEZ-BELEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6393574D86950EBD85256C650005F415/$FILE/mo-jimenez-benz,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801351", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-30", - "case_names": "United States v. Specialist RAYMOND L. HUMPHRIES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A80811B3BC85612F85256C650005F307/$FILE/19980368-Humphries.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800368", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-29", - "case_names": "United States v. Staff Sergeant CLAUDE E. PRUITT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CCA3593F09DAD40E85256C87006B7CCB/$FILE/Pruitt-9800284.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800284", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-29", - "case_names": "United States v. Staff Sergeant CLAUDE E. PRUITT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1F8AB683185B5FAF85256C7E004FF882/$FILE/mo-pruitt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800284", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-22", - "case_names": "United States v. Sergeant GREGORY C. HILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7455DFDF0F88FE2A85256C650005F308/$FILE/19980381-Hill.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800381", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-17", - "case_names": "United States v. Specialist DEMETRIOUS D. HARRIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/20DF94077E17830F85256C87006D55B2/$FILE/harris-9601822.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601822", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-17", - "case_names": "United States v. Sergeant JAIRAJ ARJOON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4F61BEF096978F0E85256C870069CE99/$FILE/Arjoon.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700995", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-16", - "case_names": "United States v. Specialist DONALD R. SHIELDS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EFDBF066DED8CBC185256C650005F329/$FILE/19981570-Shields.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801570", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-16", - "case_names": "United States v. Sergeant TODD D. KOVACH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ACC8418316C9018885256C650005F318/$FILE/19980764-Kovach.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800764", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-14", - "case_names": "United States v. Private E2 JUAN G. BARRIOS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5C6E85B8C82007D585256C650005F395/$FILE/mo-barrios,jg-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800597", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-08", - "case_names": "United States v. Sergeant First Class MOSES LOVER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2083CAFF6939DD9C85256C7E0046BA0B/$FILE/mo-lover,m-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9500726", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-07", - "case_names": "United States v. Sergeant ROBERT E. BECKLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/71D3AA598DE71A3185256C6F00540925/$FILE/mo-beckley-9701282.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701282", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-07", - "case_names": "United States v. Captain JAMES A. HAWKINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7EE807B11D9E523385256C650005F402/$FILE/MO-HAWKINS,JA.DOC", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800097", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-05", - "case_names": "United States v. Staff Sergeant STEVEN T. FISCHER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/33C20B7C2FC7A1F985256C650005F3DF/$FILE/mo-fischer2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701308", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-01", - "case_names": "United States v. Sergeant PAUL J. FULLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/799C28D1A498C37485256C650005F3E4/$FILE/mo-fuller.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701004", - "case_name_shorts": "" - }, - { - "case_dates": "1999-09-01", - "case_names": "United States v. Sergeant ANTHONY J. BAUMANN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B69C0CEE1C50D34B85256C650005F39A/$FILE/mo-baumann.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701765", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-27", - "case_names": "United States v. Private First Class BILLY J. HILDRETH II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4E11E55F89E48BF285256C7E00111F26/$FILE/mo-hildreth2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601969", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-27", - "case_names": "United States v. Private E1 JAMES A. DELANEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9688B2316349EF8285256C850067D228/$FILE/mo-delaney.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801380", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-23", - "case_names": "United States v. Private E1 RONALD S. MORRIS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A1B3D5E76A327DFC85256C650005F456/$FILE/mo-morris rs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701566", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-20", - "case_names": "United States v. Private E1 LAWRENCE N. PRINCE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E9F542CF0399F77D85256C650005F475/$FILE/mo-prince,ln.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701353", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-18", - "case_names": "United States v. Specialist GEORGE E. SMITH III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C45621124DA4B8C385256C650005F2E1/$FILE/19970657-Smith.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700657", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-18", - "case_names": "United States v. Sergeant DERRICK D. JACKSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E60863F15CEA00C985256C650005F410/$FILE/mo-jackson,dd.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800670", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-17", - "case_names": "United States v. Specialist BRIAN D. ROBERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E254619BB9F7054085256C650005F2BB/$FILE/19960765-Roberson-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600765", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-17", - "case_names": "United States v. Sergeant JOHNNY C. TORRES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/359DDAD1CED9214C85256C650005F2FB/$FILE/19972026-Torres.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9702026", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-13", - "case_names": "United States v. Private First class JOHNNY L. PENNINGTON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5D21B5734C158E8485256C650005F46C/$FILE/mo-pennington, jl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801776", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-10", - "case_names": "United States v. Private JOSEPH A. MONTERO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F47AE15104AF7E2B85256C650005F452/$FILE/mo-montero,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701328", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-10", - "case_names": "United States v. Private E2 CHARLES J. GABLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/000ED02B99647AC385256C650005F3E5/$FILE/mo-gable,cj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701533", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-03", - "case_names": "United States v. Private JEREMY J. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AD5BE7DABC0AF0E085256C7E007FE163/$FILE/mo-williams2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601126", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-03", - "case_names": "United States v. Private JEREMY J. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9C50B38B9F4269DD85256C850067FBAF/$FILE/mo-williams2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601126", - "case_name_shorts": "" - }, - { - "case_dates": "1999-08-03", - "case_names": "United States v. Private First Class WILLIE L. VERTISON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B7AFC43294BAD12785256C8500682F82/$FILE/mo-vertison.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600303", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-30", - "case_names": "United States v. Sergeant DONALD L. MILLS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7C587E748743079F85256C8500685A71/$FILE/mo-mills.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9602038", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-28", - "case_names": "United States v. Staff Sergeant TOMMY L. HUTCHINSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E4E2DBA4A36C5B7685256C850068D281/$FILE/mo-hutchinson2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701619", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-28", - "case_names": "United States v. Specialist RICKY M. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D3E249475FAB3E9F85256C650005F41D/$FILE/mo-johnson,rm-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601024", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-27", - "case_names": "United States v. Sergeant DAVID HIRALDO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/136FE517B612E4F985256C850068FF10/$FILE/mo-hiraldo2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701543", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-23", - "case_names": "United States v. Specialist PAUL J. TIRADO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/81BF03E31AB151E985256C650005F2C1/$FILE/19960943-Tirado-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600943", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-22", - "case_names": "United States v. Private E1 TIMOTHY J. WHARTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/721716F7E68E0BA585256C850069222E/$FILE/mo-wharton.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800432", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-22", - "case_names": "United States v. Captain DERRICK ROBERTSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/12BF8EBAAC9E4B7485256C85006941D7/$FILE/mo-robertson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700500", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-19", - "case_names": "United States v. Specialist MURALI S. KULATHUNGAM", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/88B6DA7BA0A8F45285256C650005F42C/$FILE/mo-kulathungam,ms.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700340", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-15", - "case_names": "United States v. Specialist MICHAEL A. PAULING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/66B21F1C952AEC8D85256C650005F466/$FILE/MO-PAULING,MA.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700685", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-15", - "case_names": "United States v. Sergeant DEREK T. MARLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E588568221F966FC85256C650005F43C/$FILE/MO-MARLEY,DT.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701558", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-15", - "case_names": "United States v. Private E2 KEVIN E. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9A31D15BA03B010985256C650005F2EC/$FILE/19971539-Brown.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701539", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-15", - "case_names": "United States v. Private E2 BENJAMIN T. FIELD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/71EF0EE641F1E03F85256C650005F3DC/$FILE/mo-field,bj-m-reco.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700785", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-14", - "case_names": "United States v. Sergeant First Class LOWELL L. McGEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/74990987C6E6F51985256C650005F445/$FILE/mo-mcgee,lI.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700480", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-13", - "case_names": "United States v. Specialist LASHION J. ROBINSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9368B907C378BFB985256C850069638E/$FILE/mo-robinson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701535", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-13", - "case_names": "United States v. Sergeant FREDERICK J. B. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E0E796CC77ED3CAF85256C850069849E/$FILE/mo-jones2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700692", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-09", - "case_names": "United States v. Private E1 JOHN L. BROOKS III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DAFF890AA934B8DA85256C650005F305/$FILE/19980259-Brooks.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800259", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-08", - "case_names": "United States v. Specialist OMAR J. WALKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/60FF89E288CC1E5985256C650005F4BA/$FILE/mo-walker,oj-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600561", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-07", - "case_names": "United States v. Sergeant First Class MARTIN H. PELECH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EBAB9C8C79F9783E85256C650005F46A/$FILE/mo-pelech,mh-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601153", - "case_name_shorts": "" - }, - { - "case_dates": "1999-07-06", - "case_names": "United States v. Specialist MICHAEL J. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7418B8F716B3D1D385256C650005F4CB/$FILE/mo-williams,mj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700228", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-30", - "case_names": "United States v. Staff Sergeant ARTHUR MASON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/064F7E669AB0BDE585256C650005F2D0/$FILE/19961811-Mason.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601811", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-30", - "case_names": "United States v. Specialist RICHARD F. JENSEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1ED79297D07F4B2E85256C7E00502990/$FILE/mo-remand-jensen.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601495", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-30", - "case_names": "United States v. Specialist PAUL D. PIERCE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A76F5E4005C0D5AA85256C7E00512B48/$FILE/mo-remand-pierce2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601171", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-30", - "case_names": "United States v. Private E2 DAVID E. NIX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/90DB5FA77184053685256C650005F2BD/$FILE/19960778-Nix-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600778", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-30", - "case_names": "United States v. Private E1 JOHN H.I. WARNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4C73E3F315DCB0B185256C650005F2C9/$FILE/19961510-Warner-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601510", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-25", - "case_names": "United States v. Sergeant First Class STEVEN L. BECKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BD71E856DF4936C485256C650005F39C/$FILE/mo-becker,sl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9400644", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-22", - "case_names": "United States v. Specialist JUAN O. ALVARADO-ALBELO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F82BC1E1859CC8F485256C650005F306/$FILE/19980265-Alvarado-Albelo.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800265", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-21", - "case_names": "United States v. Staff Sergeant EDDIE M. GOBEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F7D0BF706E67517385256C850069AB55/$FILE/mo-goben.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801115", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-18", - "case_names": "United States v. Specialist PAUL S. WORRELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/570EC0CA9E8EC35785256C850069CC9C/$FILE/mo-worrell2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601261", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-15", - "case_names": "United States v. Specialist JAMES O. WRIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D3C0374889FA92AD85256C650005F4D4/$FILE/mo-wright,jo-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601769", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-15", - "case_names": "United States v. Private E1 JOSEPH R. McGREW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CE0B63395F77D5FA85256C650005F328/$FILE/19981563-Mcgrew.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801563", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-14", - "case_names": "United States v. Private First Class JOHNNY L. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C856EE8293FA98BB85256C650005F4CA/$FILE/MO-WILLIAMS,JA.DOC", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700167", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-11", - "case_names": "United States v. Private E2 ROHAN G. R. WILSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/52E3E772C902F8DD85256C650005F4CE/$FILE/MO-WILSON,RG.DOC", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700659", - "case_name_shorts": "" - }, - { - "case_dates": "1999-06-08", - "case_names": "United States v. Sergeant LONNIE P. TURNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9B589597D24F3FB885256C650005F4B2/$FILE/mo-turner,lp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9702038", - "case_name_shorts": "" - }, - { - "case_dates": "1999-05-28", - "case_names": "United States v. Staff Sergeant JOHN P. WOLF", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/54C9C03F6F38D89F85256C850069F0F9/$FILE/mo-wolf.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801160", - "case_name_shorts": "" - }, - { - "case_dates": "1999-05-27", - "case_names": "United States v. Private E2 STEPHEN F. MESSNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D917B0CA3DAD841A85256C650005F2B9/$FILE/19960694-Messner-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600694", - "case_name_shorts": "" - }, - { - "case_dates": "1999-05-27", - "case_names": "United States v. Private E1 ROBERT ENNIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5A47E7687506481485256C650005F2EF/$FILE/19971722-Ennis.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701722", - "case_name_shorts": "" - }, - { - "case_dates": "1999-05-27", - "case_names": "United States v. Private E1 ART A. HERMOSILLA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/13019EBA0C0A000685256C650005F407/$FILE/MO-HERMOSILLA,AA-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700922", - "case_name_shorts": "" - }, - { - "case_dates": "1999-05-27", - "case_names": "United States v. Master Sergeant ALBERT L. WEATHERSBY, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8DF02CB1EF7259E185256C650005F4C2/$FILE/mo-weathersby,amofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9500911", - "case_name_shorts": "" - }, - { - "case_dates": "1999-05-27", - "case_names": "United States v. First Lieutenant DANIEL J. DE SANTI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AED5E7A0519E477485256C650005F2C5/$FILE/19961323-De Santi-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601323", - "case_name_shorts": "" - }, - { - "case_dates": "1999-05-18", - "case_names": "United States v. Staff Sergeant NEFTALI RIVERANIEVES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6DE7F6CD4956502D85256C650005F480/$FILE/mo-riveranieves,n.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701655", - "case_name_shorts": "" - }, - { - "case_dates": "1999-05-17", - "case_names": "United States v. Private E2 MICHAEL A. AXON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DBDFBB51E92C17A285256C650005F38E/$FILE/MO-AXON,MA.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701537", - "case_name_shorts": "" - }, - { - "case_dates": "1999-05-17", - "case_names": "United States v. Private E1 FABIEN BERNHARD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/587C11DD0CCB124185256C650005F393/$FILE/mo-barnhard,f.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801444", - "case_name_shorts": "" - }, - { - "case_dates": "1999-05-14", - "case_names": "United States v. Sergeant RUSSELL E. MYERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A00E3E2A9600288A85256C85006A13A0/$FILE/mo-myers.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701025", - "case_name_shorts": "" - }, - { - "case_dates": "1999-05-06", - "case_names": "United States v. Staff Sergeant ALFRED H. GARDNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/38D097A687363AD585256C7E000FD1E8/$FILE/mo-gardner2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701761", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-30", - "case_names": "United States v. Staff Sergeant REYNALDO G. ALVARADO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/22D8ACA6D964E7DB85256C650005F385/$FILE/mo-alvardo,rg.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701332", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-30", - "case_names": "United States v. Specialist STACY A. MARTIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AF8A716B5282438185256C650005F31F/$FILE/19981069-Martin.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801069", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-30", - "case_names": "United States v. Sergeant RALPH W. ROBALIK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/369180C87D8512C585256C650005F30D/$FILE/19980594-Robalik.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800594", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-30", - "case_names": "United States v. Private First Class TERESA M. BRONNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4AF7B7CABAE5126A85256C650005F2D9/$FILE/19970202-Bronner.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700202", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-30", - "case_names": "United States v. Private E2 MARCO P. RAMIREZ-ALVAREZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A004D910B769C13585256C650005F477/$FILE/mo-ramirez-alvarez,mp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801128", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-29", - "case_names": "United States v. Staff Sergeant TOMMIE D. GARTH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/36D1A7FA3F7219CB85256C650005F2EE/$FILE/19971694-Garth.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701694", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-29", - "case_names": "United States v. Staff Sergeant CALVIN McCRARY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FF831BB5A85745F085256C85006A5E18/$FILE/mo-Mccrary-remand1.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601483", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-29", - "case_names": "United States v. Private E1 AMOS M. WALLACE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0F77B89E07E9637D85256C85006A391A/$FILE/mo-wallace.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700245", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-28", - "case_names": "United States v. Private First Class MILTON E. WYATT II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/968E12B386003D6485256C650005F326/$FILE/19981342-Wyatt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801342", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-21", - "case_names": "United States v. First Lieutenant BERNARD J. BLANKENSHIP", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C231C94E46A8EDD38525725A0063C0E8/$FILE/mo-blankenship.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701159", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-19", - "case_names": "United States v. Staff Sergeant TOMMY L. HUTCHINSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CF74B3F205F203E185256C85006A9516/$FILE/mo-hutchinson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701619", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-09", - "case_names": "United States v. Specialist WILLIAM S. HOLLAND", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ED29DB2BB6CC152B85256C650005F2E5/$FILE/19970831-Holland-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700831", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-09", - "case_names": "United States v. Captain FRANCIS L. FRELIX-VANN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F5D74AD895A37A1F85256C650005F3E2/$FILE/mo-frelix-vann,fl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701014", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-08", - "case_names": "United States v. Private E2 JUAN G. BARRIOS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2633719342AAB6A985256C650005F396/$FILE/9800597-Barrios-on recon.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800597", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-02", - "case_names": "United States v. Master Sergeant NICKY A. THOMPSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6BE4AD33B80FEB3A85256C650005F4AE/$FILE/mo-thompson,na.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600798", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-01", - "case_names": "United States v. Sergeant First Class ROBIN W. HIGGINS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/90261524868D13ED85256C650005F314/$FILE/19980695-Higgins.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800695", - "case_name_shorts": "" - }, - { - "case_dates": "1999-03-30", - "case_names": "United States v. Specialist STEPHAN G. HILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/182DE31CBD381BBC85256C650005F409/$FILE/9800320-Hill.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800320", - "case_name_shorts": "" - }, - { - "case_dates": "1999-03-30", - "case_names": "United States v. Specialist EDWARD J. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5CEA06FFFF22128F85256C650005F3AE/$FILE/mo-brown,ej.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701998", - "case_name_shorts": "" - }, - { - "case_dates": "1999-03-30", - "case_names": "United States v. Private E2 BENJAMIN T. FIELD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0AAD67EE93665ED285256C650005F3DD/$FILE/mo-field,bj-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700785", - "case_name_shorts": "" - }, - { - "case_dates": "1999-03-17", - "case_names": "United States v. Staff Sergeant JERRY L. JEFFERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2487E1BAD7D09EB085256C85006AB56A/$FILE/mo-jeffers.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801101", - "case_name_shorts": "" - }, - { - "case_dates": "1999-03-17", - "case_names": "United States v. Private First Class JOSE D. LICON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/955A64D5D232EEC285256C650005F30F/$FILE/19980599-Licon.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800599", - "case_name_shorts": "" - }, - { - "case_dates": "1999-03-16", - "case_names": "United States v. Staff Sergeant SCOTT R. THOMAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F3E0BADD0E1D8D8985256C650005F4AA/$FILE/mo-thomas,sr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601643", - "case_name_shorts": "" - }, - { - "case_dates": "1999-03-12", - "case_names": "United States v. Specialist WILLIAM M. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D67F585ED747736785256C650005F49C/$FILE/mo-smith,wm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800197", - "case_name_shorts": "" - }, - { - "case_dates": "1999-03-12", - "case_names": "United States v. Private First Class WILLIAM M. MUNOZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DD49FEEE6D63AB5F85256C650005F32A/$FILE/19981646-Munoz.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801646", - "case_name_shorts": "" - }, - { - "case_dates": "1999-03-12", - "case_names": "United States v. Private E1 JOHN M. OTT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/299F69276810209585256C650005F2F2/$FILE/19971757-Ott.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701757", - "case_name_shorts": "" - }, - { - "case_dates": "1999-03-11", - "case_names": "United States v. Sergeant ROBERT L. KNOX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EF67872ADEBBD00785256C650005F2FC/$FILE/19972044-Knox.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9702044", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-26", - "case_names": "United States v. Specialist JEFFERY A. WALTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9867016F0479324685256C650005F4BE/$FILE/mo-walton.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800067", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-26", - "case_names": "United States v. Specialist JASON S. WESLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CB23E1A64BA2CADE85256C85006AD8EE/$FILE/mor-wesley.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700164", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-26", - "case_names": "United States v. Private E1 SHANNON L. SELF", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B9F3DD3F59C57D8785256C650005F311/$FILE/19980614-Self.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800614", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-26", - "case_names": "United States v. Inmate ANTHONY T. KING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8E27CA3FBBD4765785256C85006AFC03/$FILE/mo-king.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601507", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-25", - "case_names": "United States v. Private First Class BRADFORD M. GOSNEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FF76C81196D5B5E785256C650005F3F3/$FILE/mo-gosney,bm.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700653", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-16", - "case_names": "United States v. Corporal PAUL D. SIMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/18D005826523A81785256C85006B25CA/$FILE/mo-sims.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701620", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-12", - "case_names": "United States v. Staff Sergeant SAMUEL G. BROWNING", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/83EDA984D987916C85256C85006B464D/$FILE/mo-browning.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601041", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-12", - "case_names": "United States v. Staff Sergeant BENJIMAN JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FA8B80EF97FEE9DF85256C650005F418/$FILE/mo-johnson,b.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9602016", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-12", - "case_names": "United States v. Specialist DAVID T. MOYE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5E9BC40A3A91618185256C650005F458/$FILE/mo-moye,d-re.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600723", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-12", - "case_names": "United States v. Private First Class RAYNOR T. COOK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/75CEAEEBB1D9124585256C7E000DAE39/$FILE/mo-cook,rt-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9502164", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-12", - "case_names": "United States v. Private First Class RAYNOR T. COOK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/68FCA4F33D81D5DA85256C87006BC525/$FILE/Cook-9502164.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9502164", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-11", - "case_names": "United States v. Sergeant BRUCE A. WRIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/68B0FFC8131F88CF85256C650005F2F9/$FILE/19971987-Wright.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701987", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-11", - "case_names": "United States v. Private RODNEY E. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B85C657DCF714EBF85256C650005F41A/$FILE/mo-johnson,re-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700975", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-09", - "case_names": "United States v. Staff Sergeant STEVEN T. FISCHER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/426F8DC3DEA1674A85256C85006B6728/$FILE/mo-fischer.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701308", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-09", - "case_names": "United States v. Specialist REGINALD S. BRAZELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1770ECE93715BC0285256C650005F3AB/$FILE/mo-brazell,rs-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701215", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-09", - "case_names": "United States v. Private First Class FREDERICK L. HEATH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CD8D01E138C75F3785256C650005F30B/$FILE/19980539-Heath.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800539", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-03", - "case_names": "United States v. Sergeant ZACHARY V. STICKLES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D575F7510E1668FA85256C85006B87C0/$FILE/mo-stickles.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701877", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-03", - "case_names": "United States v. Private First Class JERRY WILLIAMS, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D7A7A63B6C49326D85256C650005F4C9/$FILE/mo-williams,j.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800172", - "case_name_shorts": "" - }, - { - "case_dates": "1999-02-03", - "case_names": "United States v. Private E2 ROBERT A. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F1D0F8F085D504AA85256C650005F3B0/$FILE/mo-brown,ra.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9602004", - "case_name_shorts": "" - }, - { - "case_dates": "1999-01-29", - "case_names": "United States v. Staff Sergeant ALFRED H. GARDNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4C82A1E6770EADF785256C650005F2F4/$FILE/19971761-Gardner.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701761", - "case_name_shorts": "" - }, - { - "case_dates": "1999-01-29", - "case_names": "United States v. Specialist MARK P. BANASZAK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4783C16CE2A887DE85256C85006BA893/$FILE/mo-banaszak.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700949", - "case_name_shorts": "" - }, - { - "case_dates": "1999-01-21", - "case_names": "United States v. Specialist JEFFREY L. DEIDERICH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B122CCD1A38D914785256C650005F3D2/$FILE/mo-deiderich,jl-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9401464", - "case_name_shorts": "" - }, - { - "case_dates": "1999-01-21", - "case_names": "United States v. Private First Class FREDERICK A. TETRO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/83AB0A991566C66C85256C650005F4A9/$FILE/mo-tetro,fa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800064", - "case_name_shorts": "" - }, - { - "case_dates": "1999-01-19", - "case_names": "United States v. Staff Sergeant JOHN E. FARRISH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/094CFFDD40ED85D985256C85006BC918/$FILE/mo-farrish.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601617", - "case_name_shorts": "" - }, - { - "case_dates": "1999-01-08", - "case_names": "United States v. Staff Sergeant TIMOTHY W. SHELTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F1D8C46FDE05CF2685256C650005F48F/$FILE/mo-shelton,tw-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600456", - "case_name_shorts": "" - }, - { - "case_dates": "1999-01-06", - "case_names": "United States v. Specialist MICHAEL E. BRASCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/04DB710D3F41E3AF85256C650005F2ED/$FILE/19971690-Brasch.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701690", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-28", - "case_names": "United States v. Specialist JAMES E. GEORGE, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8F35C82C4C5F584E85256C650005F3EA/$FILE/mo-george,je.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700180", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-28", - "case_names": "United States v. Sergeant ROBERT L. MITCHELL, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/80781FBF0F62F5ED85256C85000912D9/$FILE/mo-mitchell-rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601800", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-28", - "case_names": "United States v. Sergeant ANTHONY C. GRADY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/77E9AAD76D2D22F485256C650005F3F4/$FILE/mo-grady,ac.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600194", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-28", - "case_names": "United States v. Private First Class STEVEN L. HILL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4DB3CCB4DEB0F6FF85256C850008CB9A/$FILE/Mo-hill.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701538", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-28", - "case_names": "United States v. Lieutenant Colonel SARVESWARA R. CHERUKURI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9D855CE8A91D199C85256C650005F3BE/$FILE/mo-cherukuri,sr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601824", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-22", - "case_names": "United States v. Private E1 LARRY W. BURGE, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9D25EBC133ED615D85256C650005F2FD/$FILE/19972055-Burge.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9702055", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-21", - "case_names": "United States v. Specialist DERRICK C. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D7674AF86E9EBD1485256C850009905E/$FILE/mo-williams.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701161", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-21", - "case_names": "United States v. Private First Class EUNICE PIPKIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/61CBCB31EA2EE9C185256C650005F472/$FILE/mo-pipkin,e.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600192", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-21", - "case_names": "United States v. Private First Class DANIEL J. COFFMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EA6D41E5C950743C85256C650005F3C3/$FILE/mo-coffman,dj-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9501478", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-21", - "case_names": "United States v. Private E1 DAMIEN L. A. COLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EDF9E6201AEF793585256C85000951D5/$FILE/Mo-cole.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800078", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-16", - "case_names": "United States v. Staff Sergeant ROB W. ROBERTS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5885881F8E988E0F85256C650005F481/$FILE/mo-roberts,rw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600785", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-16", - "case_names": "United States v. Specialist TOUSSAINT L. LEWIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2D2B0E0BE54B8E4D85256C650005F2D6/$FILE/19962074-Lewis.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9602074", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-16", - "case_names": "United States v. Private E2 JUAN G. BARRIOS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CF83B82FB4DC055F85256C650005F397/$FILE/9800597-Barrios.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800597", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-15", - "case_names": "United States v. Private E2 CARLOS E. MORALES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2B6D0026B452C4C585256C650005F31E/$FILE/19981032-Morales.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801032", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-11", - "case_names": "United States v. Specialist LEANDREA JACKSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/54C58C03196EDF5F85256C650005F411/$FILE/mo-jackson,l.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701517", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-11", - "case_names": "United States v. Private First Class ROMMEL FERMIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9A9F8A687CA62A6085256C650005F300/$FILE/19980118-Fermin.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800118", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-11", - "case_names": "United States v. Private First Class PAUL E. GRIER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/68E1D6B5AEC8D06B85256C650005F3F7/$FILE/mo-grier,pe-corrected.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700651", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-09", - "case_names": "United States v. Sergeant DOUGLAS K. OLIVER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0DE8B7A1981C978485256C650005F2CF/$FILE/19961776-Oliver.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601776", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-08", - "case_names": "United States v. Sergeant CLYDE B. PUGH, JR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E2580DAEE35B871D85256C650005F2C0/$FILE/19960811-Pugh.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600811", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-03", - "case_names": "United States v. Staff Sergeant PATRICIA A. BULLIE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E5EBAF3628BC610585256C650005F30E/$FILE/19980598-Bullie.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800598", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-03", - "case_names": "United States v. Private E1 JAMES E. GEORGE, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5E23FB089CD049B585256C850009C73A/$FILE/mo-george.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700630", - "case_name_shorts": "" - }, - { - "case_dates": "1998-12-03", - "case_names": "United States v. Captain JAMES K. SAUNDERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DDEC9ACEF67181C685256C650005F2E4/$FILE/19970830-Saunders.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700830", - "case_name_shorts": "" - }, - { - "case_dates": "1998-11-17", - "case_names": "United States v. Specialist NATHANIEL E. CARLISLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D87E037126C8079A85256C850009F908/$FILE/mo-carlisle.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800237", - "case_name_shorts": "" - }, - { - "case_dates": "1998-11-17", - "case_names": "United States v. Captain LISA Y. BELL ANDERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/596E57983413360185256C650005F2EA/$FILE/19971475-Anderson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701475", - "case_name_shorts": "" - }, - { - "case_dates": "1998-11-09", - "case_names": "United States v. Sergeant STEVIE L. TURNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/89BB6CB96470504485256C650005F2E3/$FILE/19970766-Turner.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700766", - "case_name_shorts": "" - }, - { - "case_dates": "1998-11-09", - "case_names": "United States v. Private E2 JERMAINE O. GOODE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/08EDF9C4CC8564DC85256C650005F30A/$FILE/19980525-Goode.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800525", - "case_name_shorts": "" - }, - { - "case_dates": "1998-11-06", - "case_names": "United States v. Lieutenant Colonel DONNA M. WRIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2E347954B2B078A085256C650005F44C/$FILE/mo-melanson,dm5.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9801266", - "case_name_shorts": "" - }, - { - "case_dates": "1998-11-03", - "case_names": "United States v. Private First Class LAZARO B. SEGURA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/53B5ECBB6E9CFD7285256C85000A3051/$FILE/mo-segura.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701132", - "case_name_shorts": "" - }, - { - "case_dates": "1998-10-30", - "case_names": "United States v. Private E2 RULX T. BASTIEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/73563A06115B9E3B85256C650005F304/$FILE/19980223-Bastien.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800223", - "case_name_shorts": "" - }, - { - "case_dates": "1998-10-23", - "case_names": "United States v. Private First Class ISAKAI B. LAWSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/05763EEB623ECC3285256C85000A69BA/$FILE/mo-lawson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700673", - "case_name_shorts": "" - }, - { - "case_dates": "1998-10-15", - "case_names": "United States v. Private First Class ALIAN D. MARSHALL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/92890907A5EF318985256C650005F43F/$FILE/mo-marshall,ad.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601344", - "case_name_shorts": "" - }, - { - "case_dates": "1998-10-15", - "case_names": "United States v. Master Sergeant MICHAEL R. ARMSTRONG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E82D89C2562504C285256C650005F389/$FILE/mo-armstrong,mr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601966", - "case_name_shorts": "" - }, - { - "case_dates": "1998-10-09", - "case_names": "United States v. Private First Class LEE R. FIELDS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/788624957ABBFB7785256C650005F3DE/$FILE/mo-fields,lr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9602031", - "case_name_shorts": "" - }, - { - "case_dates": "1998-10-06", - "case_names": "United States v. Private First Class ALFONZO W. MURRAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5AE462D5B650BF4385256C85000A9AD7/$FILE/mo-murray.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601163", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-30", - "case_names": "United States v. Specialist JOHN G. RICHARDSON II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B730E39E063B6DA485256C650005F2BA/$FILE/19960725-Richardson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600725", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-30", - "case_names": "United States v. Private E2 ROBERT J. REILLY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/40FAF8F3AA7A51FA85256C650005F2F0/$FILE/19971756-Reilly-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701756", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-30", - "case_names": "United States v. Private E1 ADRIAN JORDAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CB94DBE6CF61A89885256C650005F41F/$FILE/mo-jordan,a.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701411", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-29", - "case_names": "United States v. Specialist ANDRE T. HARGROVE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/21C569B1AB1FC35585256C85000B337F/$FILE/mo-hargrove.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601783", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-29", - "case_names": "United States v. Specialist ALEXANDER N. BENAVIDEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0B44D5413B21051B85256C85000B0523/$FILE/mo-benavidez.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700961", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-29", - "case_names": "United States v. Private E2 MARKEITH D. CARROLL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A1867FB5C8763C0885256C85000AD63A/$FILE/mo-carroll.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800554", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-28", - "case_names": "United States v. Specialist WILLIE A. HAYES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9E9887C4BF75892885256C85000B667C/$FILE/Mo-hayes.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700443", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-28", - "case_names": "United States v. Specialist GARLAND S. EDGERTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/314E14DA576AAA7585256C85000B9575/$FILE/mo-edgerton.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700345", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-24", - "case_names": "United States v. Private E2 ERIC L. TOWLES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E54A4FAC2B60D1A385256C650005F2E0/$FILE/19970633-Towles.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700633", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-23", - "case_names": "United States v. Specialist JULIE M. DANIELS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/98F2A60C461C920685256C650005F2DF/$FILE/19970601-Daniels.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700601", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-23", - "case_names": "United States v. Private RODNEY E. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/384D9BC11C0A6F7985256C650005F41B/$FILE/mo-johnson,re-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700975", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-23", - "case_names": "United States v. Private E2 DAVID E. NIX", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2FEA80576D6E31E385256C650005F2BE/$FILE/19960778-Nix-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600778", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-23", - "case_names": "United States v. Private E1 ART A. HERMOSILLA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/10177BC052BB3A6785256C650005F408/$FILE/mo-hermosilla,aa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700922", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-17", - "case_names": "United States v. Specialist OMAR J. WALKER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EEADC0101519D2F885256C650005F4BB/$FILE/mo-walker,oj.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600561", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-17", - "case_names": "United States v. Sergeant DAVID A. MORROW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F1565A558BEAD20385256C650005F31B/$FILE/19980852-Morrow.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800852", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-15", - "case_names": "United States v. Private E1 ANDREW K. LEAL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C67B001432DD914385256C650005F2E7/$FILE/19971028-Leal.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701028", - "case_name_shorts": "" - }, - { - "case_dates": "1998-09-11", - "case_names": "United States v. Major MARGARET B. LISECKI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/46E0EF2671E1908285256C650005F2DE/$FILE/19970511-Lisecki.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700511", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-27", - "case_names": "United States v. Sergeant THURSTON K. SAWTELLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F9243AD484E700D885256C650005F48B/$FILE/mo-sawtelle,tk-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601029", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-26", - "case_names": "United States v. Specialist JACOB T. MALONE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C1188BF75BC811B985256C650005F2E6/$FILE/19970981-Malone.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700981", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-25", - "case_names": "United States v. Staff Sergeant MORRIS T. COBIA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/56B9AF9E02C2ED9785256C650005F3C2/$FILE/mo-cobia, mt.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601645", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-25", - "case_names": "United States v. Specialist JEREMY J. FERRO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AF879CC17A68F62885256C85000BC2E6/$FILE/Mo-ferro.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701015", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-24", - "case_names": "United States v. Specialist RICHARD F. JENSEN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/79ECE0533231657385256C87006CA4F0/$FILE/Jensen-9601495.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601495", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-20", - "case_names": "United States v. Specialist PAUL S. WORRELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E00BEF919F0A118285256C87006C827C/$FILE/Worrell-9601261.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601261", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-20", - "case_names": "United States v. Sergeant FREDERICK J. B. JONES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/75BA0F9C7977055585256C85000C21EC/$FILE/Mo-jones.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700692", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-20", - "case_names": "United States v. Sergeant DAVID HIRALDO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F1CF2E731C0FF3AA85256C85000BEF28/$FILE/mo-hiraldo.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701543", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-20", - "case_names": "United States v. Private First Class JOSHUA L. COMAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9E0D15A0E875BAA685256C85000CCE3C/$FILE/Mo-coman.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600853", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-20", - "case_names": "United States v. Private CHRISTOPHER M. DONLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7A943D6D1B2B7FC485256C85000CFC1C/$FILE/mo-donley.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9501697", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-19", - "case_names": "United States v. Specialist PAUL D. PIERCE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E554CA87DDC034F985256C650005F2C4/$FILE/19961171-Pierce-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601171", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-14", - "case_names": "United States v. Private E1 JOHN H.I. WARNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0B2A4584CD92A2A285256C650005F2CA/$FILE/19961510-Warner-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601510", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-14", - "case_names": "United States v. First Lieutenant DANIEL J. DE SANTI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/56CBCEFE532AD10185256C650005F2CD/$FILE/19961623-De Santi-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601323", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-07", - "case_names": "United States v. Specialist JAMES O. WRIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7B4FA08E9BFEDEE485256C87006A2034/$FILE/Wright.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601769", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-07", - "case_names": "United States v. Sergeant First Class MARTIN H. PELECH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/981192F6F7B34CE885256C650005F469/$FILE/mo-pelch,mh-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601153", - "case_name_shorts": "" - }, - { - "case_dates": "1998-08-05", - "case_names": "United States v. Private E1 RICHARD W. FAUST", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4593003BA461467285256C650005F3DA/$FILE/mo-faust,rw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701112", - "case_name_shorts": "" - }, - { - "case_dates": "1998-07-29", - "case_names": "United States v. Specialist JESSE D. BIDDLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/E79F48F5E02AD13E85256C650005F2CB/$FILE/19961511-Biddle.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601511", - "case_name_shorts": "" - }, - { - "case_dates": "1998-07-29", - "case_names": "United States v. Private E1 RICHARD F. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DB46C8CAFD7001F285256C650005F2F5/$FILE/19971766-Smith.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701766", - "case_name_shorts": "" - }, - { - "case_dates": "1998-07-24", - "case_names": "United States v. Staff Sergeant STUART W. SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9EB08B3EAC9C160385256C650005F2AC/$FILE/19950065-Smith-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9500065", - "case_name_shorts": "" - }, - { - "case_dates": "1998-07-24", - "case_names": "United States v. Specialist WILFERD E. HARPER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2D1DA58E344D136D85256C650005F2D3/$FILE/19961935-Harper.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601935", - "case_name_shorts": "" - }, - { - "case_dates": "1998-07-24", - "case_names": "United States v. Private First Class TEREASA M. HICKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8166995AC768160385256C650005F2B1/$FILE/19952205-Hicks-remand.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9502205", - "case_name_shorts": "" - }, - { - "case_dates": "1998-07-24", - "case_names": "United States v. Private E2 MICHELLE ENCARNACION", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5EAFA595576272B385256C650005F2CC/$FILE/19961597-Encarnacion.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601597", - "case_name_shorts": "" - }, - { - "case_dates": "1998-07-23", - "case_names": "United States v. Sergeant JOHN A. ROBINSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AAFD3FED4F6A44E885256C650005F482/$FILE/mo-robinson,ja-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9301094", - "case_name_shorts": "" - }, - { - "case_dates": "1998-07-22", - "case_names": "United States v. Sergeant First Class CHARLES G. KNIGHT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9659AA2DAC32144985256C650005F2DB/$FILE/19970322-Knight.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700322", - "case_name_shorts": "" - }, - { - "case_dates": "1998-07-21", - "case_names": "United States v. Specialist JOSEPH K. AVERY, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/27CCCFF84535EFA385256C85000D369B/$FILE/Mo-avery.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9500062", - "case_name_shorts": "" - }, - { - "case_dates": "1998-07-16", - "case_names": "United States v. Private First Class CLIFTON W. HAMILTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/23EB41BC3AECA60885256C85000D65FA/$FILE/mo-hamilton-clif.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700325", - "case_name_shorts": "" - }, - { - "case_dates": "1998-07-16", - "case_names": "United States v. Private E1 HARRELL WOODSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/3EDFA9544ACBB44C85256C85000D97E6/$FILE/Mo-woodson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9602057", - "case_name_shorts": "" - }, - { - "case_dates": "1998-07-13", - "case_names": "United States v. Sergeant First Class DONALD K. CHILDRESS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7221C6DC6BC29E9285256C650005F3BF/$FILE/mo-childress.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700797", - "case_name_shorts": "" - }, - { - "case_dates": "1998-07-01", - "case_names": "United States v. Private JAMES M. GIBSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/976AED6DFD1E0E1285256C85000DC6A7/$FILE/mo-gibson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700619", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-30", - "case_names": "United States v. Private First Class CHRISTOPHER M. PERTELLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/CD9F2179B78B603885256C650005F2E2/$FILE/19970689-Pertelle.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700689", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-29", - "case_names": "United States v. Private First Class BILLY J. HILDRETH II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B18287F82B55EB6F85256C650005F2D4/$FILE/19961969-Hildreth.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601969", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-25", - "case_names": "United States v. Specialist JOHNNY GUTIERREZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A809485AF212AA5085256C650005F2D8/$FILE/19970131-Gutierrez.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700131", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-25", - "case_names": "United States v. Specialist JEFFERY D. L. COTTRELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0D8CFAEAB03B0B6085256C85000DF330/$FILE/mo-cottrell.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601600", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-25", - "case_names": "United States v. Sergeant CASEY V. SINGLETON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4A1AC456EEF6CA1385256C85000E2A07/$FILE/mo-singleton.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601353", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-25", - "case_names": "United States v. Private First Class STERLING S.W. COBB", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1D2D0B7894D0779285256C650005F3C1/$FILE/mo-cobb,ssw.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700620", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-18", - "case_names": "United States v. Private E1 PERRY MARTIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/71B21F6672A2191485256C85000E5D0B/$FILE/mo-martin.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700900", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-16", - "case_names": "United States v. Specialist TYRIE A. ROZIER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/7175A438297FBC7785256C650005F486/$FILE/mo-rozier,ta-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9400181", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-16", - "case_names": "United States v. Private RODNEY E. JOHNSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/23F2D5EA090B0D9085256C650005F41C/$FILE/mo-johnson,re.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700975", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-16", - "case_names": "United States v. Private E1 MERRILL R. CORMIER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F08EEDFE86D9854285256C650005F3C8/$FILE/mo-cormier,mr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9800135", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-12", - "case_names": "United States v. Specialist RICHARD L. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5C28ACAEFDC85D2885256C650005F4C8/$FILE/mo-williams, rl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601314", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-12", - "case_names": "United States v. Sergeant First Class ROGER D. EVERSOLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1A8A8C9991F100D985256C650005F2B8/$FILE/19960466-Eversole.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600466", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-12", - "case_names": "United States v. Private First Class ANTHONY D. SCOTT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/A071EBA1D581457985256C650005F2C7/$FILE/19961465-Scott.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601465", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-12", - "case_names": "United States v. Private E2 ROBERT J. REILLY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5FFC0DFEECAF7FC585256C650005F2F1/$FILE/19971756-REILLY.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701756", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-11", - "case_names": "United States v. Private First Class DAVID M. PIERCE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/40CA4F6B46E1227485256C650005F2B6/$FILE/19960442-Pierce-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600442", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-10", - "case_names": "United States v. Staff Sergeant SYLVESTER L. KELLY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AEDB7DB07F0FC2B785256C650005F424/$FILE/mo-kelly,sl.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600774", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-10", - "case_names": "United States v. Specialist JOSE A. PEREZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/59303949371D105C85256C650005F46D/$FILE/mo-perez,ja.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601312", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-04", - "case_names": "United States v. Specialist RICKY L. BRIDGES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C295B69E4FD1D45085256C85000E9270/$FILE/mo-bridges.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700157", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-04", - "case_names": "United States v. Major JAMES W. HUFF, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/81B69A82032213BB85256C85000ECDC2/$FILE/Mo-huff.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600772", - "case_name_shorts": "" - }, - { - "case_dates": "1998-06-02", - "case_names": "United States v. Specialist REGINALD S. BRAZELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/BEB70ED6B008374A85256C650005F3AC/$FILE/mo-brazell,rs.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701215", - "case_name_shorts": "" - }, - { - "case_dates": "1998-05-29", - "case_names": "United States v. Private First Class JACOB P. SWEENEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D0D08D183AF6137C85256C650005F4A5/$FILE/mo-sweeney,jp.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600447", - "case_name_shorts": "" - }, - { - "case_dates": "1998-05-29", - "case_names": "United States v. Private First Class CHARLIE SCOTT, AKA ALONSO HUDSON, CHAR...", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4478A98791D42CF585256C650005F2B0/$FILE/19952201-Scott.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9502201", - "case_name_shorts": "" - }, - { - "case_dates": "1998-05-28", - "case_names": "United States v. Private JEREMY J. WILLIAMS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9BD02652D31A839B85256C85000EFD8A/$FILE/mo-williams.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601126", - "case_name_shorts": "" - }, - { - "case_dates": "1998-05-28", - "case_names": "United States v. Private E1 EFRAIN BURGOS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/68A05587E1DF2AD385256C650005F2E8/$FILE/19971230-Burgos.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701230", - "case_name_shorts": "" - }, - { - "case_dates": "1998-05-27", - "case_names": "United States v. First Lieutenant ANDREW G. AULL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8F39EDB8F316836285256C650005F38D/$FILE/mo-aull,ag-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9402074", - "case_name_shorts": "" - }, - { - "case_dates": "1998-05-13", - "case_names": "United States v. Specialist SHAUN MICHAEL SMITH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AD9B67A2C1B0A11885256C650005F2B5/$FILE/19960300-Smith.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600300", - "case_name_shorts": "" - }, - { - "case_dates": "1998-05-13", - "case_names": "United States v. Sergeant KEITH HENRY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/15CAE95D1AA8E9E785256C85000F2679/$FILE/Mo-henry.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9402015", - "case_name_shorts": "" - }, - { - "case_dates": "1998-05-07", - "case_names": "United States v. Sergeant First Class MOSES LOVER, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/D82691C21DA6C65285256C650005F436/$FILE/mo-lover,m.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9500726", - "case_name_shorts": "" - }, - { - "case_dates": "1998-05-07", - "case_names": "United States v. Lieutenant Colonel THOMAS F. ARMSTRONG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/880766EAA07F527185256C7E000B91E8/$FILE/mo-armstrong,tf.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600445", - "case_name_shorts": "" - }, - { - "case_dates": "1998-05-05", - "case_names": "United States v. Private E2 QUINTUS MORRELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/49A2994B2046244F85256C650005F455/$FILE/mo-morrell,q.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600469", - "case_name_shorts": "" - }, - { - "case_dates": "1998-05-05", - "case_names": "United States v. Chief Warrant Officer Two MICHAEL D. RICKEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/69D420E40DE2F29485256C650005F47D/$FILE/mo-rickey-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9501597", - "case_name_shorts": "" - }, - { - "case_dates": "1998-04-29", - "case_names": "United States v. Specialist PAMELA A. WILSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2E831EF62FB135F885256C650005F4CD/$FILE/mo-wilson,pa.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700235", - "case_name_shorts": "" - }, - { - "case_dates": "1998-04-29", - "case_names": "United States v. Specialist JOHN M. McCLAIN, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/94F42672E112586185256C650005F2AF/$FILE/19951831-Mcclain.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9501831", - "case_name_shorts": "" - }, - { - "case_dates": "1998-04-28", - "case_names": "United States v. Sergeant RALPH V. GILCREASE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/07BDA13D9A52369585256C650005F2CE/$FILE/19961734-Gilcrease.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601734", - "case_name_shorts": "" - }, - { - "case_dates": "1998-04-28", - "case_names": "United States v. Captain MORRIS C. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/8B3F12012B2DB13C85256C650005F3B2/$FILE/mo-brown.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601505", - "case_name_shorts": "" - }, - { - "case_dates": "1998-04-20", - "case_names": "United States v. Specialist DELROY G. REID", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/2BD2512D516CF0BA85256C650005F2AB/$FILE/19941123-Reid-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9401123", - "case_name_shorts": "" - }, - { - "case_dates": "1998-04-15", - "case_names": "United States v. Corporal TIMOTHY B. GIBSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B4CE6C2251F0E84285256C650005F3ED/$FILE/mo-gibson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600274", - "case_name_shorts": "" - }, - { - "case_dates": "1998-04-08", - "case_names": "United States v. First Lieutenant GREGORY S. WILLIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EA64C69E8674B03985256C650005F2AE/$FILE/19950730-Willis-ofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9500730", - "case_name_shorts": "" - }, - { - "case_dates": "1998-04-02", - "case_names": "United States v. Specialist BRIAN D. ROBERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9FCFAEFA85AA1CCB85256C650005F2BC/$FILE/19960765-Roberson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600765", - "case_name_shorts": "" - }, - { - "case_dates": "1998-03-30", - "case_names": "United States v. Staff Sergeant CARLOS V. DIAZ-DUPREY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/5BD16AE8F57D97A085256C650005F2B4/$FILE/19960181-Diaz-Duprey.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600181", - "case_name_shorts": "" - }, - { - "case_dates": "1998-03-30", - "case_names": "United States v. Private First Class ENMANUEL GONZALEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/6160CA8CEB8B19A085256C650005F3F1/$FILE/mo-gonzalez.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701564", - "case_name_shorts": "" - }, - { - "case_dates": "1998-03-30", - "case_names": "United States v. First Lieutenant SHAWN B. BARBER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9128F56818775C9B85256C650005F392/$FILE/mo-barber.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601820", - "case_name_shorts": "" - }, - { - "case_dates": "1998-03-27", - "case_names": "United States v. Staff Sergeant TIMOTHY W. SHELTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/97F0131CD9D3865D85256C650005F490/$FILE/mo-shelton.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600456", - "case_name_shorts": "" - }, - { - "case_dates": "1998-03-27", - "case_names": "United States v. Specialist ROSEMARY RHOADS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F442F07327BC5D8985256C85000F50DF/$FILE/mo-rhoads.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700539", - "case_name_shorts": "" - }, - { - "case_dates": "1998-03-20", - "case_names": "United States v. Private E1 CHRISTOPHER R. SURLES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/340711F69B08D8FD85256C650005F2AD/$FILE/19950617-Surles.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9500617", - "case_name_shorts": "" - }, - { - "case_dates": "1998-03-05", - "case_names": "United States v. Specialist EDWARD L. WORTHINGTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C34EF7D8DA5B41D985256C650005F4D2/$FILE/mo-worthington.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601109", - "case_name_shorts": "" - }, - { - "case_dates": "1998-03-05", - "case_names": "United States v. Specialist EDWARD L. WORTHINGTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/480BEE4D5E8E1CE485256C7E0062BF05/$FILE/mo-worthington,el-mor-2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601109", - "case_name_shorts": "" - }, - { - "case_dates": "1998-03-05", - "case_names": "United States v. Private E1 JONATHAN E. SIDWELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/75196CCFFDAC63F185256C650005F493/$FILE/MO-Sidwell.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601596", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-27", - "case_names": "United States v. Staff Sergeant LEVERNE THOMAS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/99941DDE35C0001D85256C650005F2D2/$FILE/19961823-Thomas.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601823", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-27", - "case_names": "United States v. Sergeant ALONZA DAVIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/032A839626BF74D085256C650005F2C3/$FILE/19961151-Davis.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601151", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-26", - "case_names": "United States v. Specialist PATRICK J. GIRUP", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FD95631CCF7043B885256C650005F3EF/$FILE/mo-girup.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601629", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-26", - "case_names": "United States v. Specialist ALVIN W. CARR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0CB03D761495B36385256C650005F3B9/$FILE/mo-Carr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600939", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-24", - "case_names": "United States v. Private E2 JARED W. SHEFFIELD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/68D1B41E5B24F6AF85256C650005F48E/$FILE/MO-SHEFFIELD.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601912", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-19", - "case_names": "United States v. Sergeant First Class EDUARDO V. BUTLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/577F13677DDBCF4485256C85000F7DB1/$FILE/mo-butler.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9501566", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-19", - "case_names": "United States v. Captain FORREST D. LANCHBURY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/24E00E07E093E9F085256C87006D2150/$FILE/Lanchbury-9601577.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601577", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-18", - "case_names": "United States v. Specialist JOHN L. SIMPSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/88B18CF9A7C1AE9E85256C650005F495/$FILE/mo-simpson.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600722", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-18", - "case_names": "United States v. Private First Class RALPH M. COSBY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/EC3405CDD62AE89185256C650005F2C6/$FILE/19961360-Cosby.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601360", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-18", - "case_names": "United States v. Private E2 SAVALLES V. EMORY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/707716ECD6C809B885256C85000FADF2/$FILE/Mo-emory.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701344", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-18", - "case_names": "United States v. Private E1 JAMES J. MARBLE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C147AAD2B73650B685256C650005F43B/$FILE/mo-marble.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700229", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-09", - "case_names": "United States v. Specialist THOMAS C. HAVERS II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/F5A14F1853B1AD6A85256C650005F401/$FILE/mo-Havers-mofr.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9500015", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-05", - "case_names": "United States v. Second Lieutenant KIRK J. ANDEREGG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/1A9AAF441DA6096685256C650005F386/$FILE/MO-ANDEREGG.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9502120", - "case_name_shorts": "" - }, - { - "case_dates": "1998-02-03", - "case_names": "United States v. Corporal CLEVELL S. ROSEBORO II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/212AE0D05C61BD8385256C8700693B96/$FILE/Roseboro.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600788", - "case_name_shorts": "" - }, - { - "case_dates": "1998-01-30", - "case_names": "United States v. Private KEITH MORRISON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/AA7B1A039B6751C885256C650005F457/$FILE/mo-morrison.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9502092", - "case_name_shorts": "" - }, - { - "case_dates": "1998-01-29", - "case_names": "United States v. Sergeant First Class STEPHEN E. TIDD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/9F5AF57798E1E75385256C85000FD9DC/$FILE/Mo-tidd2.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601595", - "case_name_shorts": "" - }, - { - "case_dates": "1998-01-26", - "case_names": "United States v. Specialist MICHAEL G. CRAWFORD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/DF01FE5C4B036EC285256C8500100089/$FILE/mo-crawford.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700232", - "case_name_shorts": "" - }, - { - "case_dates": "1998-01-26", - "case_names": "United States v. Sergeant First Class ATTIE C. MITCHELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/222F041634E4BDBA85256C8500102DB1/$FILE/mo-mitchell.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9501466", - "case_name_shorts": "" - }, - { - "case_dates": "1998-01-23", - "case_names": "United States v. Sergeant KENNITH A. ARNOLD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/ED58C94736FA6DC885256C650005F38B/$FILE/MO-ARNOLD.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700805", - "case_name_shorts": "" - }, - { - "case_dates": "1998-01-22", - "case_names": "United States v. Private First Class ARCHIE J. SALAZAR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/C82EB91CBEE00D1E85256C8500105A66/$FILE/MO-SALAZAR.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9302040", - "case_name_shorts": "" - }, - { - "case_dates": "1998-01-21", - "case_names": "United States v. Specialist VINCENT A. YOUNG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/4E4AEC2BE7D1C5A685256C850010878D/$FILE/Mo-young.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9501501", - "case_name_shorts": "" - }, - { - "case_dates": "1998-01-21", - "case_names": "United States v. Sergeant DAVID E. OTTINGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/FC2AE4774F0AE62785256C650005F462/$FILE/mo-ottinger.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701511", - "case_name_shorts": "" - }, - { - "case_dates": "1998-01-09", - "case_names": "United States v. Private E1 JEFFREY B. BOLLINGER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/37C860C8568C4C9285256C850010BB42/$FILE/mo-bollinger.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701380", - "case_name_shorts": "" - }, - { - "case_dates": "1997-01-28", - "case_names": "United States v. Specialist MICHAEL S. FLOWERS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/0F72363FD7F6760385256D6700431427/$FILE/MO-FLOW.DOC", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9501947", - "case_name_shorts": "" - }, - { - "case_dates": "1996-12-17", - "case_names": "United States v. Private First Class LARRY WALLACE, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/488A5788DAF8F9FB85256C650005F4BD/$FILE/MO-WALLACE,L.DOC", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9500234", - "case_name_shorts": "" - }, - { - "case_dates": "1996-12-04", - "case_names": "United States v. Private First Class RAYNOR T. COOK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/MODD/B4FC90772537D15A85256C650005F3C5/$FILE/mo-cook-r-mor.doc", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9502164", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/acca_memorandum_example_2.html b/tests/examples/opinions/united_states/acca_memorandum_example_2.html deleted file mode 100644 index 425971f49..000000000 --- a/tests/examples/opinions/united_states/acca_memorandum_example_2.html +++ /dev/null @@ -1,4532 +0,0 @@ - - - - - - - - - - - - - - - - - -ACCA - Opinions: Memorandum Opinions by Date - - - - - - -
- - - - - - - - - - - - - - - - - -
- - - - - -
Login

- -
-
- - - - - - - - -


-

-
- - -
-
- -

-
- - diff --git a/tests/examples/opinions/united_states/acca_p_example.compare.json b/tests/examples/opinions/united_states/acca_p_example.compare.json index 71fe43b76..45c79ae59 100644 --- a/tests/examples/opinions/united_states/acca_p_example.compare.json +++ b/tests/examples/opinions/united_states/acca_p_example.compare.json @@ -1,462 +1,252 @@ [ { - "case_dates": "2019-07-16", - "case_names": "United States v. Sergeant ROBERT B. BERGDAHL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/486153099F6994AE8525843A005620B1/$FILE/oc-bergdahl, rb.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170582", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-05", - "case_names": "United States v. Sergeant First Class CORRY P. BROOKS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/007FDAE1AA5ACC72852584320042329A/$FILE/oc-brooks, cp.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170087", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-10", - "case_names": "United States v. Sergeant First Class MICHAEL D. MILLER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/6222E2A3E7847D51852583F9005FD96E/$FILE/oc-miller, md.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20180023", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-02", - "case_names": "United States v. Specialist MARCO A. REYES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/B223C0425492540D852583F20045D098/$FILE/oc-reyes, ma.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160704", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-24", - "case_names": "United States v. Private E2 KELVIN D. PEEBLES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/7AED6D6451A830C4852583E70061286E/$FILE/oc-peebles, kd (recon).pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170044", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-25", - "case_names": "United States v. Staff Sergeant JASON A. LOPEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/0C097D99EFF6AB57852583CC0046985D/$FILE/oc-lopez, ja.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170386", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-19", - "case_names": "United States v. Staff Sergeant GENE R. ROUSE III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/2EAABB137FF13AB6852583C400433C4D/$FILE/oc-rouse, gr.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170192", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-13", - "case_names": "United States v. Specialist DAVID M. FINCH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/BE2C88C4583B24FC852583F3005F6FF4/$FILE/oc-finch, dm.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170501", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-28", - "case_names": "United States v. Staff Sergeant KE'AIRA S. CONLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/043D1B69BE119D57852583B3004ED93B/$FILE/oc-conley, ks.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170560", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-22", - "case_names": "United States v. Staff Sergeant SEAN W. CORNELISON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/B911BEAA2A1137A5852583AE005A31FE/$FILE/oc-cornelison, sw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160733", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-21", - "case_names": "United States v. Sergeant First Class QUANTRELL L. ANDERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/A039414786B57C2F852583AC004E95F3/$FILE/oc-anderson, ql.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170158", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-18", - "case_names": "United States v. Colonel ROBERT J. RICE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/2167E900C434D3C185258354006C05D6/$FILE/oc-rice, rj (recon).pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160695", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-30", - "case_names": "United States v. Sergeant ERIC F. KELLY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/3C8A0266410421B285258358005991A3/$FILE/oc-kelly, ef.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150725", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-05", - "case_names": "United States v. Captain ELMO E. VANCE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/E5C507132AA595968525833E0050E8DE/$FILE/oc-vance, ee.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20180011", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-26", - "case_names": "United States v. Specialist JOSHUA D. LEWIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/8EE39A8B061B8181852583360060E1C8/$FILE/oc-lewis, jd.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20180260", - "case_name_shorts": "" - }, - { - "case_dates": "2018-09-06", - "case_names": "United States v. Specialist LUKE D. ENGLISH", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/6B67DAFF58AB257D852583060058C0B6/$FILE/oc-english, ld.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160510", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-19", - "case_names": "United States v. Major JOHNNIE HARGROVE, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/4767DC8599A504EF8525692E005F6C59/$FILE/oc-hargrove.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701151", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-08", - "case_names": "United States v. Staff Sergeant ROGELIO PABLO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/4932C8A46D62027C8525692E006999C2/$FILE/oc-pablo31mar.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700481", - "case_name_shorts": "" - }, - { - "case_dates": "1999-04-02", - "case_names": "United States v. Specialist McTYRAN L. LANIER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/615AE2450D33A32A8525692E00610339/$FILE/ocre-lanier,mt-final.pdf", + "case_dates": "2023-10-27", + "case_names": "United States v. Private First Class JUSTIN M. SCOTT", + "download_urls": "/ACCALibrary/cases/opinion/file/960", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700598", + "docket_numbers": "20220450", "case_name_shorts": "" }, { - "case_dates": "1999-04-02", - "case_names": "United States v. Specialist HEATHER A. PATTIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/394DE9A4FFDD7B2C8525692E0060697D/$FILE/oc-pattin,ha.pdf", + "case_dates": "2023-08-24", + "case_names": "United States v. Specialist TONEY E. HENDERSON", + "download_urls": "/ACCALibrary/cases/opinion/file/900", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701188", + "docket_numbers": "20210543", "case_name_shorts": "" }, { - "case_dates": "1999-03-16", - "case_names": "United States v. Private First Class FRANKIE J. CRUSE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/904E972D27CFAB068525692E0065801C/$FILE/oc-cruse,fj.pdf", + "case_dates": "2023-07-28", + "case_names": "United States v. Private First Class GLEN R. SPITZ", + "download_urls": "/ACCALibrary/cases/opinion/file/882", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601948", + "docket_numbers": "20220195", "case_name_shorts": "" }, { - "case_dates": "1999-02-10", - "case_names": "United States v. Staff Sergeant CHRISSANDRA V. MARBURY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/D6FCB926ED54685F8525692E005FDF06/$FILE/oc-marbury.pdf", + "case_dates": "2023-06-16", + "case_names": "United States v. Specialist JORGE G. MARTINEZ-COLON", + "download_urls": "/ACCALibrary/cases/opinion/file/850", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700371", + "docket_numbers": "20210071", "case_name_shorts": "" }, { - "case_dates": "1999-01-20", - "case_names": "United States v. Sergeant First Class HOMER R. LANGSTON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/E985815819C9D9908525692E005F9F8C/$FILE/oc-langston.pdf", + "case_dates": "2023-06-14", + "case_names": "United States v. LESLY J. LINDOR", + "download_urls": "/ACCALibrary/cases/opinion/file/879", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700358", + "docket_numbers": "20210520", "case_name_shorts": "" }, { - "case_dates": "1998-11-09", - "case_names": "United States v. Sergeant DONALD L. GARREN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/384483321674361E8525692E005565DC/$FILE/oc-garren.pdf", + "case_dates": "2023-04-27", + "case_names": "United States v. Private E1 KELVIN T. WINFIELD", + "download_urls": "/ACCALibrary/cases/opinion/file/822", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700732", + "docket_numbers": "20210092", "case_name_shorts": "" }, { - "case_dates": "1998-10-30", - "case_names": "United States v. Specialist HECTOR RODRIGUEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/84DB15B6B19FE29F8525692E00588D21/$FILE/oc-rodriguez.pdf", + "case_dates": "2023-01-06", + "case_names": "United States v. Staff Sergeant LADONIES P. STRONG", + "download_urls": "/ACCALibrary/cases/opinion/file/738", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700189", + "docket_numbers": "20200391", "case_name_shorts": "" }, { - "case_dates": "1998-10-02", - "case_names": "United States v. Staff Sergeant SHERDELL HOOD", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/4461109772174D378525692E0055AB28/$FILE/oc-hood.pdf", + "case_dates": "2022-11-14", + "case_names": "United States v. Private First Class WILLIS A. GRANT", + "download_urls": "/ACCALibrary/cases/opinion/file/698", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9501547", + "docket_numbers": "20200645", "case_name_shorts": "" }, { - "case_dates": "1998-09-23", - "case_names": "United States v. Private E1 MIQUEL D. RIDGEWAY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/BF4C93F51B1267468525692E00581BF9/$FILE/oc-ridgeway1.pdf", + "case_dates": "2022-07-08", + "case_names": "United States v. Lieutenant Colonel ANDREW J. DIAL", + "download_urls": "/ACCALibrary/cases/opinion/file/599", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700978", + "docket_numbers": "20220001", "case_name_shorts": "" }, { - "case_dates": "1998-08-05", - "case_names": "United States v. Major ROBERT W. MARTIN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/7D055653E7097BF08525692E005790A8/$FILE/oc-martin.pdf", + "case_dates": "2022-06-10", + "case_names": "United States v. Lieutenant Colonel ANDREW J. DIAL", + "download_urls": "/ACCALibrary/cases/opinion/file/575", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600413", + "docket_numbers": "20220001", "case_name_shorts": "" }, { - "case_dates": "1998-07-21", - "case_names": "United States v. Specialist KEVIN L. BARROWS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/2031A2FCBC6DE2128525692D004E044B/$FILE/oc-barrows1.pdf", + "case_dates": "2022-06-09", + "case_names": "United States v. Master Sergeant ANDREW D. STEELE", + "download_urls": "/ACCALibrary/cases/opinion/file/577", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600845", + "docket_numbers": "20170303", "case_name_shorts": "" }, { - "case_dates": "1998-06-26", - "case_names": "United States v. Sergeant CHARLES H. LEE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/AF5F54D0FC6D48988525692E00575A93/$FILE/oc-lee.pdf", + "case_dates": "2022-02-22", + "case_names": "United States v. Private First Class AUSTIN C. HAMILTON", + "download_urls": "/ACCALibrary/cases/opinion/file/482", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600243", + "docket_numbers": "20200347", "case_name_shorts": "" }, { - "case_dates": "1998-06-04", - "case_names": "United States v. Staff Sergeant MICHAEL D. SPRIGGS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/F8725EDCD68BCC238525692E00597A9C/$FILE/oc-spriggs.pdf", + "case_dates": "2021-12-15", + "case_names": "United States v. Sergeant TREVAR TINSLEY", + "download_urls": "/ACCALibrary/cases/opinion/file/412", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601685", + "docket_numbers": "20200337", "case_name_shorts": "" }, { - "case_dates": "1998-05-29", - "case_names": "United States v. Specialist TERRY KELLEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/4FEB3B56420D7D6A8525692E00573B95/$FILE/ocre-kelley,t.pdf", + "case_dates": "2021-12-06", + "case_names": "United States v. Specialist PHILLIP THOMPSON", + "download_urls": "/ACCALibrary/cases/opinion/file/408", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600727", + "docket_numbers": "20190525", "case_name_shorts": "" }, { - "case_dates": "1998-05-29", - "case_names": "United States v. Sergeant JOSE M. MARTINEZ", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/993911C802F035078525692E0057A2EC/$FILE/oc-martinez.pdf", + "case_dates": "2021-06-03", + "case_names": "United States v. Sergeant ANTHONY R. HALE", + "download_urls": "/ACCALibrary/cases/opinion/file/277", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9501957", + "docket_numbers": "20180407", "case_name_shorts": "" }, { - "case_dates": "1998-05-29", - "case_names": "United States v. Private First Class NATHAN D. LOONEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/284F21C47BC5C43F8525692E00576E71/$FILE/oc-looney,nd.pdf", + "case_dates": "2021-03-08", + "case_names": "United States v. Private E2 TYNAJI V. BROWN", + "download_urls": "/ACCALibrary/cases/opinion/file/202", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9500433", + "docket_numbers": "20190442", "case_name_shorts": "" }, { - "case_dates": "1998-05-26", - "case_names": "United States v. Master Sergeant ALBERT L. WEATHERSBY, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/9D350ADA6FD6ADBC8525692E0059D817/$FILE/oc-weathersby.pdf", + "case_dates": "2021-02-19", + "case_names": "United States v. Staff Sergeant ANGEL M. SANCHEZ", + "download_urls": "/ACCALibrary/cases/opinion/file/179", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9500911", + "docket_numbers": "20140735", "case_name_shorts": "" }, { - "case_dates": "1998-05-05", - "case_names": "United States v. Specialist VERNON R. SCOTT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/0B63FCA3EAE28E0B8525692E00592A05/$FILE/oc-scott,vr3.pdf", + "case_dates": "2020-12-11", + "case_names": "United States v. Major NIDAL M. HASAN", + "download_urls": "/ACCALibrary/cases/opinion/file/legacy/2333", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601958", + "docket_numbers": "20130781", "case_name_shorts": "" }, { - "case_dates": "1998-04-30", - "case_names": "United States v. Private First Class MARTEZ L. HENDERSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/0EBFA9A699159C6B8525692E0055806E/$FILE/oc-hend3.pdf", + "case_dates": "2020-08-28", + "case_names": "United States v. Private E2 ERICK C. BLACK", + "download_urls": "/ACCALibrary/cases/opinion/file/legacy/2329", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9501435", + "docket_numbers": "20180683", "case_name_shorts": "" }, { - "case_dates": "1998-04-23", - "case_names": "United States v. Staff Sergeant ELEANOR L. DEW", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/C049FC9AF51C50758525692E00552C62/$FILE/oc-dew.pdf", + "case_dates": "2020-05-11", + "case_names": "United States v. Sergeant MICHAEL Q. COFFMAN", + "download_urls": "/ACCALibrary/cases/opinion/file/legacy/272", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9701700 (MISC)", + "docket_numbers": "20190329", "case_name_shorts": "" }, { - "case_dates": "1998-04-20", - "case_names": "United States v. Private E2 STEPHEN F. MESSNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/B41B04F5671B4C038525692E0057D096/$FILE/oc-messner1.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600694", - "case_name_shorts": "" - }, - { - "case_dates": "1998-04-17", - "case_names": "United States v. Specialist NHO INTHAVONG", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/922D776D396FD75D8525692E0055E2ED/$FILE/oc-inthavong.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9601318", - "case_name_shorts": "" - }, - { - "case_dates": "1998-03-30", - "case_names": "United States v. Private First Class ARTHUR A. JENKINS III", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/687A7A2F28486A1A8525692E00570E73/$FILE/oc-jenkins.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9502038", - "case_name_shorts": "" - }, - { - "case_dates": "1998-03-27", - "case_names": "United States v. Private E1 LEON N. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/73B7744BCDF275108525692D004EE738/$FILE/oc-brown2-.pdf", + "case_dates": "2020-02-05", + "case_names": "United States v. Sergeant First Class QUANTRELL L. ANDERSON", + "download_urls": "/ACCALibrary/cases/opinion/file/legacy/3043", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600270", + "docket_numbers": "20170158", "case_name_shorts": "" }, { - "case_dates": "1998-03-27", - "case_names": "United States v. Chief Warrant Officer Two JOHN A. WEISBECK", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/DBDAA166184A05B38525692E005A265D/$FILE/oc-weis.pdf", + "case_dates": "2020-01-22", + "case_names": "United States v. Staff Sergeant TONY S. SPRINGER", + "download_urls": "/ACCALibrary/cases/opinion/file/legacy/3041", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9502215", + "docket_numbers": "20170662", "case_name_shorts": "" }, { - "case_dates": "1998-02-26", - "case_names": "United States v. Staff Sergeant STEVEN C. TURNER", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/E089E4FFBC31B7258525692E0059B96B/$FILE/oc-turner.pdf", + "case_dates": "2019-07-16", + "case_names": "United States v. Sergeant ROBERT B. BERGDAHL", + "download_urls": "/ACCALibrary/cases/opinion/file/legacy/249", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9600603", + "docket_numbers": "20170582", "case_name_shorts": "" }, { - "case_dates": "1998-02-09", - "case_names": "United States v. Captain LAWRENCE P. ROCKWOOD II", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/E5CDDD24C86E63038525692E00583B53/$FILE/oc-rock1.pdf", + "case_dates": "2019-07-05", + "case_names": "United States v. Sergeant First Class CORRY P. BROOKS", + "download_urls": "/ACCALibrary/cases/opinion/file/legacy/1638", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9500872", + "docket_numbers": "20170087", "case_name_shorts": "" }, { - "case_dates": "1998-01-26", - "case_names": "United States v. Private E1 WILLIAM A. RHODES", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/ODD/27349C6ECD84FDC38525692E0057F50A/$FILE/oc-rhodes1.pdf", + "case_dates": "2019-05-10", + "case_names": "United States v. Sergeant First Class MICHAEL D. MILLER", + "download_urls": "/ACCALibrary/cases/opinion/file/legacy/3024", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 9700227", + "docket_numbers": "20180023", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/acca_p_example.html b/tests/examples/opinions/united_states/acca_p_example.html index 99c8d902b..b229a2b5e 100644 --- a/tests/examples/opinions/united_states/acca_p_example.html +++ b/tests/examples/opinions/united_states/acca_p_example.html @@ -1,351 +1,730 @@ - + - - - - - - - - - - - - - - -ACCA - Opinions: Opinions of the Court by Date - - - - - - -
- - - - - - - - - - - - - - - - - -
- - - - - -
Login

- -
-
- - - - - - - - - + + + - - - + - + - + - + - + + + + + + + - - - -


+
+
+ +
+ +
+ + + + + + + + + + + + + +
+
+ + + + + + -
05/29/199805/29/1998ARMY 9500433 - United States v. Private First Class NATHAN D. LOONEY
05/26/199805/26/1998ARMY 9500911 - United States v. Master Sergeant ALBERT L. WEATHERSBY, JR.
05/05/199805/05/1998ARMY 9601958 - United States v. Specialist VERNON R. SCOTT
04/30/199804/30/1998ARMY 9501435 - United States v. Private First Class MARTEZ L. HENDERSON
04/23/199804/23/1998ARMY 9701700 (MISC) - United States v. Staff Sergeant ELEANOR L. DEW
04/20/199804/20/1998ARMY 9600694 - United States v. Private E2 STEPHEN F. MESSNER
04/17/199804/17/1998ARMY 9601318 - United States v. Specialist NHO INTHAVONG
03/30/199803/30/1998ARMY 9502038 - United States v. Private First Class ARTHUR A. JENKINS III
03/27/199803/27/1998ARMY 9502215 - United States v. Chief Warrant Officer Two JOHN A. WEISBECK
03/27/199803/27/1998ARMY 9600270 - United States v. Private E1 LEON N. BROWN
02/26/199802/26/1998ARMY 9600603 - United States v. Staff Sergeant STEVEN C. TURNER
02/09/199802/09/1998ARMY 9500872 - United States v. Captain LAWRENCE P. ROCKWOOD II
01/26/199801/26/1998ARMY 9700227 - United States v. Private E1 WILLIAM A. RHODES
-
- -
-
- - -
-
- -

-
diff --git a/tests/examples/opinions/united_states/acca_summary_example.compare.json b/tests/examples/opinions/united_states/acca_summary_example.compare.json index f838998f7..0295d153b 100644 --- a/tests/examples/opinions/united_states/acca_summary_example.compare.json +++ b/tests/examples/opinions/united_states/acca_summary_example.compare.json @@ -1,242 +1,252 @@ [ { - "case_dates": "2019-07-18", - "case_names": "United States v. Staff Sergeant THOMAS AYALA", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/93E6C79DFA4EB7678525843F0051FCCD/$FILE/sd-ayala, t.pdf", + "case_dates": "2023-10-26", + "case_names": "United States v. Staff Sergeant DYLAN GRIFFIN", + "download_urls": "/ACCALibrary/cases/opinion/file/955", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170336", + "docket_numbers": "20220211", "case_name_shorts": "" }, { - "case_dates": "2019-07-09", - "case_names": "United States v. Private First Class DARRELL K. BRISCOE JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/85EFC448E020D26085258438006A2A9F/$FILE/sd-briscoe, dk.pdf", + "case_dates": "2023-10-20", + "case_names": "United States v. Sergeant First Class BYUNGGU KIM", + "download_urls": "/ACCALibrary/cases/opinion/file/953", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170302", + "docket_numbers": "20200689", "case_name_shorts": "" }, { - "case_dates": "2019-06-13", - "case_names": "United States v. Private First Class DAVID L. JORDAN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/5AA44C943FF98E548525841D0050BD7C/$FILE/sd-jordan, dl.pdf", + "case_dates": "2023-10-18", + "case_names": "United States v. Major SERGIO O. LOPEZGARCIA", + "download_urls": "/ACCALibrary/cases/opinion/file/945", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20180003", + "docket_numbers": "20220590", "case_name_shorts": "" }, { - "case_dates": "2019-06-03", - "case_names": "United States v. Cadet JACOB D. WHISENHUNT", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/9EE2E42F14CD0F0D8525840F00464C40/$FILE/sd-whisenhunt, jd.pdf", + "case_dates": "2023-10-05", + "case_names": "United States v. Staff Sergeant RICKY I. GUMBS", + "download_urls": "/ACCALibrary/cases/opinion/file/938", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170274", + "docket_numbers": "20220066", "case_name_shorts": "" }, { - "case_dates": "2019-05-22", - "case_names": "United States v. Captain SPENCER D. DORR", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/5ACE063CE979F3FF85258403004D030C/$FILE/sd-dorr, sd.pdf", + "case_dates": "2023-10-03", + "case_names": "United States v. Captain JEREMY T. DUNN", + "download_urls": "/ACCALibrary/cases/opinion/file/937", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170172", + "docket_numbers": "20210428", "case_name_shorts": "" }, { - "case_dates": "2019-05-20", - "case_names": "United States v. Staff Sergeant ERIC A. SPITALE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/CF82BB183464E10F85258402005FA587/$FILE/sd-spitale, ea.pdf", + "case_dates": "2023-09-29", + "case_names": "United States v. Private First Class BRANDON L. WOODALL", + "download_urls": "/ACCALibrary/cases/opinion/file/936", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170128", + "docket_numbers": "20220629", "case_name_shorts": "" }, { - "case_dates": "2019-05-20", - "case_names": "United States v. Private E2 SHONTONIO K. TIDWELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/4B8D12CCE049CE998525840200603E68/$FILE/sd-tidwell, sk.pdf", + "case_dates": "2023-09-13", + "case_names": "United States v. Specialist ISMAEL G. ARMENTARUIZ", + "download_urls": "/ACCALibrary/cases/opinion/file/921", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20180476", + "docket_numbers": "20220610", "case_name_shorts": "" }, { - "case_dates": "2019-05-17", - "case_names": "United States v. Sergeant First Class BRADLEY W. COFFEY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/7FDB635D644813D0852584020061BB91/$FILE/sd-coffey, bw.pdf", + "case_dates": "2023-08-31", + "case_names": "United States v. Sergeant First Class ERIC L. THOMPSON", + "download_urls": "/ACCALibrary/cases/opinion/file/910", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20180073", + "docket_numbers": "20220040", "case_name_shorts": "" }, { - "case_dates": "2018-02-26", - "case_names": "United States v. Sergeant EDISON C. ROBERTSON, JR.", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/8B03D32A3D5897AF852582410055915B/$FILE/sd-robertson, ec.pdf", + "case_dates": "2023-08-30", + "case_names": "United States v. Sergeant SUGURU L. SAITO", + "download_urls": "/ACCALibrary/cases/opinion/file/906", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170022", + "docket_numbers": "20220501", "case_name_shorts": "" }, { - "case_dates": "2018-02-26", - "case_names": "United States v. Major MICHAEL D. THOMPSON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/F688C86AD762D060852582410055847A/$FILE/sd-thompson, md.pdf", + "case_dates": "2023-08-17", + "case_names": "United States v. Private E2 MATTHEW L. COE", + "download_urls": "/ACCALibrary/cases/opinion/file/898", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20140974", + "docket_numbers": "20220052", "case_name_shorts": "" }, { - "case_dates": "2018-02-26", - "case_names": "United States v. Chief Warrant Officer Three MICHAEL D. TROGDON", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/9874F159AD9A3929852582410055A2B3/$FILE/sd-trogdon, md.pdf", + "case_dates": "2023-08-09", + "case_names": "United States v. Specialist AUSTIN B. GARRIGUS", + "download_urls": "/ACCALibrary/cases/opinion/file/889", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160344", + "docket_numbers": "20220259", "case_name_shorts": "" }, { - "case_dates": "2018-02-23", - "case_names": "United States v. First Lieutenant DAVID BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/34E35A3CBD6EFC588525824100557875/$FILE/sd-brown, d.pdf", + "case_dates": "2023-07-17", + "case_names": "United States v. Specialist NYRICO REEDY", + "download_urls": "/ACCALibrary/cases/opinion/file/878", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160139", + "docket_numbers": "20220170", "case_name_shorts": "" }, { - "case_dates": "2018-02-22", - "case_names": "United States v. Private (E2) VANESSA AYALA-SANTIAGO", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/6CD7BEE42BD186188525824100556AE2/$FILE/sd-ayala-santiago, v.pdf", + "case_dates": "2023-07-14", + "case_names": "United States v. Specialist JUSTIN M. REAPER", + "download_urls": "/ACCALibrary/cases/opinion/file/876", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170136", + "docket_numbers": "20210230", "case_name_shorts": "" }, { - "case_dates": "2018-02-15", - "case_names": "United States v. Staff Sergeant NATHAN P. CANCELLIERI", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/145C3C945ACA419E852582360061A0D2/$FILE/sd-cancellieri, np.pdf", + "case_dates": "2023-07-13", + "case_names": "United States v. Sergeant First Class NEIL PULVER", + "download_urls": "/ACCALibrary/cases/opinion/file/877", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160525", + "docket_numbers": "20210670", "case_name_shorts": "" }, { - "case_dates": "2018-02-14", - "case_names": "United States v. Staff Sergeant ERIC A. SPITALE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/5CC30DC00E8DE5998525823600624100/$FILE/sd-spitale, ea.pdf", + "case_dates": "2023-07-06", + "case_names": "United States v. Sergeant DANIEL D. PULLEY", + "download_urls": "/ACCALibrary/cases/opinion/file/864", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170128", + "docket_numbers": "20220494", "case_name_shorts": "" }, { - "case_dates": "2018-02-14", - "case_names": "United States v. Specialist NICHOLAS L. FROST", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/45811296A69DA1C9852582360062016A/$FILE/sd-frost, nl.pdf", + "case_dates": "2023-06-26", + "case_names": "United States v. Private E2 TAYONNE J. JOBES", + "download_urls": "/ACCALibrary/cases/opinion/file/854", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160171", + "docket_numbers": "20210394", "case_name_shorts": "" }, { - "case_dates": "2018-02-08", - "case_names": "United States v. Private First Class KESHAWN A. FLOURNOY", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/96BB02C49C0C4D898525822E005FB27F/$FILE/sd-flournoy, ka.pdf", + "case_dates": "2023-06-16", + "case_names": "United States v. Specialist ROBERT ANGELL (II)", + "download_urls": "/ACCALibrary/cases/opinion/file/851", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160451", + "docket_numbers": "20220353", "case_name_shorts": "" }, { - "case_dates": "2018-02-05", - "case_names": "United States v. First Lieutenant CHRISTOPHER S. SCHLOFF", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/287B54479C125FF68525822D004BA08F/$FILE/sd-schloff, cs.pdf", + "case_dates": "2023-06-14", + "case_names": "United States v. Staff Sergeant DAVID C. TATE", + "download_urls": "/ACCALibrary/cases/opinion/file/847", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150724", + "docket_numbers": "20180477", "case_name_shorts": "" }, { - "case_dates": "2018-01-31", - "case_names": "United States v. Staff Sergeant ANDREW J. BRASSELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/818A83CA18249948852582270046FEFF/$FILE/sd-brassell, aj.pdf", + "case_dates": "2023-06-09", + "case_names": "United States v. Specialist SHADAI A. BRIMMER", + "download_urls": "/ACCALibrary/cases/opinion/file/845", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160746", + "docket_numbers": "20210622", "case_name_shorts": "" }, { - "case_dates": "2018-01-31", - "case_names": "GREGORY J. MURRAY v. United States", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/FD9776C6DF58588785258227004798C6/$FILE/sd-murray, gj.pdf", + "case_dates": "2023-06-02", + "case_names": "United States v. Sergeant DASHAWNA D. ROBINSON", + "download_urls": "/ACCALibrary/cases/opinion/file/839", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY MISC 20180025", + "docket_numbers": "20220043", "case_name_shorts": "" }, { - "case_dates": "2018-01-30", - "case_names": "United States v. Specialist KYSEAN A. PETTIS", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/5C12B939C7F680D7852582260051E37F/$FILE/sd-pettis, ka.pdf", + "case_dates": "2023-05-31", + "case_names": "United States v. Staff Sergeant MICHAEL L. WILSON", + "download_urls": "/ACCALibrary/cases/opinion/file/837", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20160246", + "docket_numbers": "20210276", "case_name_shorts": "" }, { - "case_dates": "2018-01-30", - "case_names": "United States v. Sergeant CHRISTOPHER T. BROWN", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/334EA4C28ED5B333852582260052B033/$FILE/sd-brown, ct.pdf", + "case_dates": "2023-05-31", + "case_names": "United States v. Specialist JAMES C. BIONAZ", + "download_urls": "/ACCALibrary/cases/opinion/file/838", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170009", + "docket_numbers": "20220247", "case_name_shorts": "" }, { - "case_dates": "2018-01-25", - "case_names": "United States v. Sergeant CHICQUELL R. GILMORE", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/3AB0D746C6AA98438525822B00573914/$FILE/sd-gilmore, cr.pdf", + "case_dates": "2023-05-08", + "case_names": "United States v. Second Lieutenant TYANAH A. MORRIS", + "download_urls": "/ACCALibrary/cases/opinion/file/830", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20170273", + "docket_numbers": "20210624", "case_name_shorts": "" }, { - "case_dates": "2018-01-16", - "case_names": "United States v. Staff Sergeant ANTHONY T. POWELL", - "download_urls": "/Apps/ACCAOpinions/ACCAOpinions.nsf/SDD/51E87DF4A4C084EF8525821F00522074/$FILE/sd-powell, at.pdf", + "case_dates": "2023-05-05", + "case_names": "United States v. Private First Class CHA E. SEPULVEDA", + "download_urls": "/ACCALibrary/cases/opinion/file/826", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ARMY 20150562", + "docket_numbers": "20220241", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-03", + "case_names": "United States v. Sergeant First Class JOSEPH A. SANTIAGO", + "download_urls": "/ACCALibrary/cases/opinion/file/824", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "20230094", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/acca_summary_example.html b/tests/examples/opinions/united_states/acca_summary_example.html index 72eb29f5a..66584579a 100644 --- a/tests/examples/opinions/united_states/acca_summary_example.html +++ b/tests/examples/opinions/united_states/acca_summary_example.html @@ -1,307 +1,1004 @@ - - - - - - - - - - - - - - - - - -ACCA - Opinions: Summary Disposition by Date - - - - - -
- - - - - - - - - - - - - - - - - -
- - - - - -
Login

- -
-
- - + $(".film-main-row").replaceWith(video); - + }) - + $(window).scroll(function(){ +// $(window).on("dblclick", function(){ - - + + + - - - + - + - + - + - + + + + + + + - - - - - -


+
+
+ +
+ +
+ + + + + + + + + + + + + +
+
+ + + + + + -
02/26/201802/26/2018ARMY 20160344 - United States v. Chief Warrant Officer Three MICHAEL D. TROGDON
02/26/201802/26/2018ARMY 20170022 - United States v. Sergeant EDISON C. ROBERTSON, JR.
02/23/201802/23/2018ARMY 20160139 - United States v. First Lieutenant DAVID BROWN
02/22/201802/22/2018ARMY 20170136 - United States v. Private (E2) VANESSA AYALA-SANTIAGO
02/15/201802/15/2018ARMY 20160525 - United States v. Staff Sergeant NATHAN P. CANCELLIERI
02/14/201802/14/2018ARMY 20170128 - United States v. Staff Sergeant ERIC A. SPITALE
02/14/201802/14/2018ARMY 20160171 - United States v. Specialist NICHOLAS L. FROST
02/08/201802/08/2018ARMY 20160451 - United States v. Private First Class KESHAWN A. FLOURNOY
02/05/201802/05/2018ARMY 20150724 - United States v. First Lieutenant CHRISTOPHER S. SCHLOFF
01/31/201801/31/2018ARMY MISC 20180025 - GREGORY J. MURRAY v. United States
01/31/201801/31/2018ARMY 20160746 - United States v. Staff Sergeant ANDREW J. BRASSELL
01/30/201801/30/2018ARMY 20160246 - United States v. Specialist KYSEAN A. PETTIS
01/30/201801/30/2018ARMY 20170009 - United States v. Sergeant CHRISTOPHER T. BROWN
01/25/201801/25/2018ARMY 20170273 - United States v. Sergeant CHICQUELL R. GILMORE
01/16/201801/16/2018ARMY 20150562 - United States v. Staff Sergeant ANTHONY T. POWELL
-
- -
-
- - -
-
- -

-
- - + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ag_example.compare.json b/tests/examples/opinions/united_states/ag_example.compare.json index 58d1b1ee4..e829a26a9 100644 --- a/tests/examples/opinions/united_states/ag_example.compare.json +++ b/tests/examples/opinions/united_states/ag_example.compare.json @@ -1,442 +1,112 @@ [ { - "case_dates": "2017-01-20", - "case_names": "Application of the Anti-Nepotism Statute to a Presidential Appointment in the White House Office", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2017/01/20/2017-01-20-anti-nepo-stat-who_0.pdf", + "case_dates": "2023-01-04", + "case_names": "Retaining Private Counsel to Represent the DHS Secretary in Impeachment Processes", + "download_urls": "/d9/2023-02/2023-01-04-dhs-impeachment-representation.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "summaries": "Section 105(a) of title 3, U.S. Code, which authorizes the President to appoint employees in the White House Office \"without regard to any other provision of law regulating the employment or compen-sation of persons in the Government service,\" exempts positions in the White House Office from the prohibition on nepotism in 5 U.S.C. \u00a7 3110.", + "summaries": "The Department of Homeland Security may retain private counsel to assist the Department in representing itself and the Secretary in impeachment proceedings aimed at decisions or actions within the scope of the Secretary's official duties and unaccompanied by any allegations of personal misconduct.", "case_name_shorts": "" }, { - "case_dates": "2016-08-25", - "case_names": "Application of the Recommendations Clause to Section 802 of the Medicare Prescription Drug, Improvement, and Modernization Act of 2003", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2017/01/19/2016-08-25-recommendations-clause-mma.pdf", + "case_dates": "2022-12-23", + "case_names": "Application of the Comstock Act to the Mailing of Prescription Drugs That Can Be Used for Abortions", + "download_urls": "/d9/opinions/attachments/2023/01/03/2022-12-23_-_comstock_act_1.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "summaries": "The Recommendations Clause bars Congress from enacting laws that purport to prevent the President from recommending legislation that he judges \"necessary and expedient.\" The Recommendations Clause bars Congress from enacting laws that purport to require the President to recommend legislation even if he does not judge it \"necessary and expedient.\" Section 802 of the Medicare Prescription Drug, Improvement, and Modernization Act of 2003 contravenes the Recommendations Clause and may be treated as advisory and non-binding.", + "summaries": "Section 1461 of title 18 of the U.S. Code does not prohibit the mailing of certain drugs that can be used to perform abortions where the sender lacks the intent that the recipient of the drugs will use them unlawfully. Because there are manifold ways in which recipients in every state may lawfully use such drugs, including to produce an abortion, the mere mailing of such drugs to a particular jurisdiction is an insufficient basis for concluding that the sender intends them to be used unlawfully.", "case_name_shorts": "" }, { - "case_dates": "2016-08-24", - "case_names": "Applicability of the National Emergencies Act to Statutes That Do Not Expressly Require the President to Declare a National Emergency", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2016/12/01/2016-08-24-natl-emergs-act.pdf", + "case_dates": "2022-10-28", + "case_names": "Application of the Anti-Terrorism Act of 1987 to Diplomatic Visit of Palestinian Delegation", + "download_urls": "/d9/opinions/attachments/2022/11/02/2022-10-28-plo-visitation_final_1.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "summaries": "The National Emergency Act's coverage is not limited to statutes that expressly require the President to declare a national emergency, but rather extends to any statute \"conferring powers and authorities to be exercised during a national emergency,\" unless Congress has exempted such a statute from the Act.", + "summaries": "Section 1003(2) of the Anti-Terrorism Act of 1987, which prohibits the expenditure of funds from the Palestine Liberation Organization in the United States to further the PLO's interests, is unconstitutional to the extent it prevents the exercise of the Presi-dent's Article II authorities to receive public ministers and to determine the manner in which the Executive engages in diplomacy with foreign representatives. The ATA therefore does not prevent PLO representatives invited by the State Department to Washington, D.C., from spending PLO funds to attend diplomatic meetings with Ex-ecutive Branch officials, including for expenses that are necessary incidents to those meetings.", "case_name_shorts": "" }, { - "case_dates": "2016-04-27", - "case_names": "Authority of the Department of Justice to Disclose Statutorily Protected Materials to Its Inspector General in Light of Section 540 of the Commerce, Justice, Science, and Related Agencies Appropriations Act, 2016", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2016/04/28/2016-04-27-disclosure-to-ig.pdf", + "case_dates": "2022-10-21", + "case_names": "Federal Vacancies Reform Act's Application to a Vacancy for Which Prior Presidents Submitted Multiple Nominations", + "download_urls": "/d9/2022-11/2022-10-21_-_vra_multiple_nominations.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "summaries": "Section 540 of the Commerce, Justice, Science, and Related Agencies Appropriations Act, 2016, effectively prohibits the Department of Justice, for the remainder of fiscal year 2016, from denying the Department's Office of the Inspector General (\"OIG\") timely access to materials requested by OIG, or preventing or impeding OIG's access to such materials, pursuant to the Federal Wiretap Act (Title III of the Omnibus Crime Control and Safe Streets Act of 1968) Rule 6(e) of the Federal Rules of Criminal Procedure or section 626 of the Fair Credit Reporting Act. As a result, the Department may (and must) disregard the limitations in those statutes in making disclosures to OIG for the remainder of the fiscal year.", + "summaries": "Upon the inauguration of a new President, the Federal Vacancies Reform Act restarts the entire timing sequence for acting service in a position that was vacant on inauguration day, authorizing an acting official to serve for up to 300 days after inauguration day, during the pendency of the new President's first and second nominations for the vacant position, and for 210 days following the rejection, withdrawal, or return of a first or second nomination submitted by the new President.", "case_name_shorts": "" }, { - "case_dates": "2016-04-14", - "case_names": "Interpretation of Article 17 Bis of the US-EU Air Transport Agreement", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2016/04/21/2016-04-14-ata-article-17.pdf", + "case_dates": "2022-10-03", + "case_names": "Authority of the Department of Defense to Use Appropriations for Travel by Service Members and Dependents to Obtain Abortions", + "download_urls": "/d9/2022-11/2022-10-03-dod-abortion-transportation.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "summaries": "Article 17 bis of the Air Transport Agreement Between the United States of America and the European Community and Its Member States does not provide an independent basis upon which the United States may deny a permit to an air carrier of a Party to the Agreement if that carrier is otherwise qualified to receive such a permit.", + "summaries": "The Department of Defense may lawfully expend funds to pay for service members and their dependents to travel to obtain abortions that DoD cannot itself perform due to statutory restrictions. DoD may lawfully expend funds to pay for such travel pursuant to both its express statutory authorities and, independently, the necessary expense doctrine.", "case_name_shorts": "" }, { - "case_dates": "2016-03-24", - "case_names": "Whether a Military Officer May Continue on Terminal Leave After He Is Appointed to a Federal Civilian Position Covered by 10 U.S.C. \u00a7 973(b)(2)(A)", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2016/08/02/2016-03-24-terminal-leave.pdf", + "case_dates": "2022-09-27", + "case_names": "Application of the Hyde Amendment to the Provision of Transportation for Women Seeking Abortions", + "download_urls": "/d9/2022-11/2022-09-27-hyde_amendment_application_to_hhs_transportation.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "summaries": "An active duty military officer on terminal leave who meets the requirements of 5 U.S.C. \u00a7 5334a may continue on terminal leave status after his appointment or election to a position covered by 10 U.S.C. \u00a7 973(b)(2)(A).", + "summaries": "The Hyde Amendment's prohibition barring the Department of Health and Human Services from expending covered funds for any abortion does not bar HHS from expending covered funds to provide transportation for women seeking abortions in circumstances in which HHS has the requisite statutory authority and appropriations to provide such transportation.", "case_name_shorts": "" }, { - "case_dates": "2015-12-31", - "case_names": "Authority to Permit Part-Time Employees to Work Regularly Scheduled Workweeks of 33 to 39 Hours", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2016/07/30/2015-12-31-part-time-employment.pdf", + "case_dates": "2022-09-21", + "case_names": "Intergovernmental Immunity for the Department of Veterans Affairs and Its Employees When Providing Certain Abortion Services", + "download_urls": "/d9/2022-11/2022-09-21-va_immunity_for_abortion_services.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "summaries": "The statutes governing federal employment permit federal agencies to schedule part-time employees to work regularly scheduled workweeks of 33 to 39 hours. The Federal Employees Part-Time Career Employment Act of 1978 does not limit agencies' preexisting authority to schedule part-time employees to work any number of hours per week less than 40.", + "summaries": "The rule issued by the Department of Veterans Affairs on Reproductive Health Services, 87 Fed. Reg. 55,287 (Sept. 9, 2022), is a lawful exercise of VA's authority. States may not impose criminal or civil liability on VA employees\u2014including doctors, nurses, and administrative staff\u2014who provide or facilitate abortions or related services in a manner authorized by federal law, including VA's rule. The Supremacy Clause bars state officials from penalizing VA employees for performing their federal functions, whether through criminal prosecution, license revocation proceedings, or civil litigation.", "case_name_shorts": "" }, { - "case_dates": "2015-07-20", - "case_names": "The Department of Justice Inspector General's Access to Information Protected by the Federal Wiretap Act, Rule 6(e) of the Federal Rules of Criminal Procedure, and Section 626 of the Fair Credit Reporting Act", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2017/01/17/2015-07-20-doj-oig-access-ed-note.pdf", + "case_dates": "2022-08-23", + "case_names": "Use of the HEROES Act of 2003 to Cancel the Principal Amounts of Student Loans", + "download_urls": "/d9/2022-11/2022-08-23-heroes-act.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "summaries": "Department of Justice officials may disclose information protected by the Federal Wiretap Act (Title III of the Omnibus Crime Control and Safe Streets Act of 1968), Rule 6(e) of the Federal Rules of Criminal Procedure, and section 626 of the Fair Credit Reporting Act to the Department's Office of Inspector General (\"OIG\") in connection with many, but not all, of OIG's investigations and reviews. Section 6(a)(1) of the Inspector General Act of 1978 does not supersede the limitations on disclosure contained in Title III, Rule 6(e), and section 626. Section 218 of the Consolidated and Further Continuing Appropriations Act, 2015, also does not supersede the limitations on disclosure contained in Title III, Rule 6(e), and section 626.", + "summaries": "The Higher Education Relief Opportunities for Students Act of 2003, Pub. L. No. 108-76, 117 Stat. 904, grants the Secretary of Education authority to reduce or eliminate the obligation to repay the principal balance of federal student loan debt, including on a class-wide basis in response to the COVID-19 pandemic, provided all other requirements of the statute are satisfied.", "case_name_shorts": "" }, { - "case_dates": "2015-05-21", - "case_names": "Authority of the Chairman of the Defense Nuclear Facilities Safety Board to Disclose Performance Appraisals of Senior Executive Service Employees", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2016/07/28/2015-05-21-dnfsb-privacy-act_0.pdf", + "case_dates": "2022-08-12", + "case_names": "Application of the Assimilative Crimes Act to Conduct of Federal Employees Authorized by Federal Law", + "download_urls": "/d9/2022-11/2022-08-12-aca.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "summaries": "In the circumstances presented here, the organic statute of the Defense Nuclear Facilities Safety Board requires the Chairman to grant a requesting Board member access to written performance appraisals of Senior Executive Service employees. In these circumstances, the Privacy Act does not bar the disclosure of those appraisals to the requesting Board member.", + "summaries": "Federal employees performing their duties in a manner authorized by federal law, while on a federal enclave within a state that criminalizes such authorized conduct, would not violate the Assimilative Crimes Act and could not be prosecuted by the federal government under that law.", "case_name_shorts": "" }, { - "case_dates": "2014-11-19", - "case_names": "The Department of Homeland Security's Authority to Prioritize Removal of Certain Aliens Unlawfully Present in the United States and to Defer Removal of Others", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2014/11/20/2014-11-19-auth-prioritize-removal.pdf", + "case_dates": "2022-07-29", + "case_names": "Authority of a Majority of the FDIC Board to Present Items for Vote and Decision", + "download_urls": "/d9/2022-11/2022-07-29-fdic-board-majority.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "summaries": "The Department of Homeland Security's proposed policy to prioritize the removal of certain aliens unlawfully present in the United States would be a permissible exercise of DHS's discretion to enforce the immigration laws. The Department of Homeland Security's proposed deferred action program for parents of U.S. citizens and legal permanent residents would also be a permissible exercise of DHS's discretion to enforce the immigration laws. The Department of Homeland Security's proposed deferred action program for parents of recipients of deferred action under the Deferred Action for Childhood Arrivals program would not be a permissible exercise of DHS's enforcement discretion.", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-13", - "case_names": "The Authority of the Equal Employment Opportunity Commission to Order a Federal Agency to Pay a Monetary Award to Remedy a Breach of a Settlement Agreement", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2016/03/18/2014-08-13-ssa-monetary-award.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "Based on principles of sovereign immunity, the Equal Employment Opportunity Commission lacks authority to order the Social Security Administration to pay a monetary award as a remedy for breach of a settlement agreement entered to resolve a dispute under Title VII of the Civil Rights Act of 1964.", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-15", - "case_names": "Immunity of the Assistant to the President and Director of the Office of Political Strategy and Outreach From Congressional Subpoena", - "download_urls": "https://www.justice.gov/sites/default/files/opinions/attachments/2014/07/25/simas-immunity-final_1.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The Assistant to the President and Director of the Office of Political Strategy and Outreach (\"OPSO\") is immune from the House Committee on Oversight and Government Reform's subpoena to compel him to testify about matters concerning his service to the President in the OPSO.", - "case_name_shorts": "" - }, - { - "case_dates": "2013-08-23", - "case_names": "Competitive Bidding Requirements Under the Federal-Aid Highway Program", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2013/08/31/comp-bidding-reqs_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The competitive bidding requirement of 23 U.S.C. \u00a7 112 imposes, in addition to procedural rules dictating the process by which bids are awarded, a substantive limitation on state or local bidding requirements that are unrelated to the bidder's performance of the necessary work. Section 112's competitive bidding requirement does not preclude any and all state or local bidding or contractual restrictions that have the effect of reducing the pool of potential bidders for reasons unrelated to the performance of the necessary work. Rather, section 112 affords the Federal Highway Administration discretion to assess whether a particular state or local requirement unduly limits competition. Generally, state or local government requirements that eliminate or disadvantage a class of potential responsible bidders to advance objectives unrelated to the efficient use of federal funds or the integrity of the bidding process are likely to unduly impede competition in contravention of the substantive component of section 112's competitive bidding requirement.", - "case_name_shorts": "" - }, - { - "case_dates": "2013-05-03", - "case_names": "Whether the Millennium Challenge Corporation Should Be Considered an \"Agency\" for Purposes of the Open Meeting Requirements of the Sunshine Act", - "download_urls": "https://www.justice.gov/sites/default/files/opinions/attachments/2014/09/22/2013-05-03-mcc-sunshine-act.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The Millennium Challenge Corporation is not an \"agency\" for purposes of the open meeting requirements of the Sunshine Act.", - "case_name_shorts": "" - }, - { - "case_dates": "2013-02-04", - "case_names": "Availability of Appropriations for Social Security Administration Grant Programs Following the Expiration of Authorizations of Appropriations", - "download_urls": "https://www.justice.gov/sites/default/files/opinions/attachments/2014/09/22/2013-02-04-ssa-grants.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "Notwithstanding the expiration of the specific authorizations of appropriations for the Work Incentives Planning and Assistance program and the Protection and Advocacy for Beneficiaries of Social Security program, the appropriation for administrative expenses of the Social Security Administration remains available to fund those two grant programs. When an agency has legal authority to administer a program and appropriated funds are available for that purpose, the absence or expiration of an authorization of appropriations does not prevent the agency from expending funds on the program unless such a restriction is imposed by statute.", - "case_name_shorts": "" - }, - { - "case_dates": "2013-01-09", - "case_names": "Whether the Peace Corps Director May Certify Peace Corps Response Volunteers for Noncompetitive Eligibility for Federal Employment Under Executive Order 11103", - "download_urls": "https://www.justice.gov/sites/default/files/opinions/attachments/2014/09/22/2013-01-09-peace-corps.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "Under Executive Order 11103, which describes a \"full term of service\" as \"approximately two years,\" the Director of the Peace Corps may not issue certificates of satisfactory service to volunteers in the Peace Corps Response program (\"PCRVs\") who serve between three and twelve months. The Director may not issue certificates of satisfactory service to PCRVs under the exception in Executive Order 11103 for those who do not complete a full term \"due to circumstances beyond their control.\"", - "case_name_shorts": "" - }, - { - "case_dates": "2012-11-20", - "case_names": "Residence Requirement for Assistant United States Attorneys Under 28 U.S.C. \u00a7 545(a)", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2016/03/18/2012-11-20-residence-ausas.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "Under 28 U.S.C. \u00a7 545(a), Assistant United States Attorneys must physically reside in or within 25 miles of the district that they serve.", - "case_name_shorts": "" - }, - { - "case_dates": "2012-11-16", - "case_names": "Whether the United States Department of Labor Has the Authority to Control the Disclosure of Federal Employee Compensation Act Records Held by the United States Postal Service", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2012/11/31/ctrl-discl-feca-recs_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The Federal Employee Compensation Act gives the Department of Labor the authority to control and limit the disclosure of FECA records held by the United States Postal Service, and DOL's FECA regulations prohibit USPS from disclosing FECA records in a manner inconsistent with DOL's Privacy Act routine uses. The Labor Department's regulatory regime for FECA records is consistent with and furthers the purposes of the Privacy Act. Neither the Postal Reorganization Act nor the National Labor Relations Act authorizes USPS to control the disclosure of FECA records.", - "case_name_shorts": "" - }, - { - "case_dates": "2012-08-22", - "case_names": "Whether Individuals May Be Required to Provide Basic Identifying Information in Order to Access the Financial Disclosure Reports Made Available on Agency Websites During the Period Governed by Section 11(a) of the STOCK Act", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2016/03/18/2012-08-22-stock-act.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "A procedure under which prospective viewers are required to provide basic identifying information similar to that described in section 105(b)(2) of the Ethics in Government Act in order to access financial disclosure reports made available under section 11(a) of the Stop Trading on Congressional Knowledge Act is consistent with both these statutes. This procedure may be implemented by Executive Branch agencies at the direction of the Office of Government Ethics, pursuant to its authority under section 402 of the Ethics in Government Act to prescribe procedures governing the public availability of financial disclosure reports. The interim regime established by section 11(a) of the Stop Trading on Congressional Knowledge Act terminates upon implementation of the permanent public disclosure system on the Office of Government Ethics website required by section 11(b). Section 11(b)(2) makes clear that viewers may not be required to provide identifying information in order to view reports made available through that system.", - "case_name_shorts": "" - }, - { - "case_dates": "2012-06-19", - "case_names": "Assertion of Executive Privilege Over Documents Generated in Response to Congressional Investigation Into Operation Fast and Furious", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2012/06/31/ag-ff-exec-priv_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "Executive privilege may properly be asserted in response to a congressional subpoena seeking internal Department of Justice documents generated in the course of the deliberative process concerning the Department's response to congressional and related media inquiries into Operation Fast and Furious.", - "case_name_shorts": "" - }, - { - "case_dates": "2012-05-29", - "case_names": "Duty to Report Suspected Child Abuse Under 42 U.S.C. \u00a7 13031", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2012/05/31/aag-reporting-abuse_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "Under 42 U.S.C. \u00a7 13031\u2014a provision of the Victims of Child Abuse Act of 1990\u2014all covered professionals who learn of suspected child abuse while engaged in enumerated activities and professions on federal land or in federal facilities must report that abuse, regardless of where the suspected victim is cared for or resides. The fact that a patient has viewed child pornography may \"give reason to suspect that a child has suffered an incident of child abuse\" under the statute, and a covered professional is not relieved of an obligation to report the possible abuse simply because neither the covered professional nor the patient knows the identity of the child depicted in the pornography.", - "case_name_shorts": "" - }, - { - "case_dates": "2012-04-03", - "case_names": "Whether Reservists Who Otherwise Qualify for Leave Under Both 5 U.S.C. \u00a7 6323(a) and 5 U.S.C. \u00a7 6323(b) Must Exhaust Available Leave Under Section 6323(b) Before Taking Leave Under Section 6323(a)", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2012/04/31/exhausting-military-leave_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "A reservist who performs military service that qualifies for leave under both 5 U.S.C. \u00a7\u00a7 6323(a) and 6323(b) may elect to take leave under section 6323(a) without first using all of his or her available leave under section 6323(b).", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-27", - "case_names": "The Anti-Deficiency Act Implications of Consent by Government Employees to Online Terms of Service Agreements Containing Open-Ended Indemnification Clauses", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2012/03/31/aag-ada-impls-of-consent-by-govt-empls_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "Traditional principles of contract law govern the standard for consent to an online terms of service agreement, and, as a result, consent to such an agreement turns on whether the web user had reasonable notice of and manifested assent to the online agreement. A government employee with actual authority to contract on behalf of the United States violates the Anti-Deficiency Act by entering into an unrestricted, open-ended indemnification agreement on behalf of the government. A government employee who lacks authority to contract on behalf of the United States does not violate the Anti-Deficiency Act by consenting to an agreement, including an agreement containing an unrestricted, open-ended indemnification clause, because no binding obligation on the government was incurred.", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-05", - "case_names": "State and Local Deputation of Federal Law Enforcement Officers During Stafford Act Deployments", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2012/03/31/state-local-fleo-stafford-act-deployments_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "Where federal law enforcement officers have been deployed pursuant to the Stafford Act and are properly carrying out federal disaster relief in a local community, they may accept deputation under state laws that expressly authorize them to make state law arrests, where such arrests would bear a logical relationship to or advance the purposes of the Stafford Act deployment.", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-02", - "case_names": "Whether the General Services Administration May Proceed With an Assisted Acquisition for the Department of Veterans Affairs in Fiscal Year 2012 Using the Department's Fiscal Year 2009/2010 Funds", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2012/03/31/gsa-assisted-acq-va_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The Department of Veterans Affairs properly obligated its FY 2009/2010 funds when it and the General Services Administration signed an interagency agreement in August 2010, and GSA may properly use those funds in FY 2012 to perform its obligations under the interagency agreement. GSA may use those funds without running afoul of the requirement, developed by the Government Accountability Office, that servicing agencies acting under interagency agreements perform within a \"reasonable time.\"", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-30", - "case_names": "State of Residence Requirements for Firearms Transfers", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2012/01/31/ATF90dayruleFINAL1-30-12_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "Section 922(b)(3) of title 18, which forbids federal firearms licensees from selling or delivering any firearm to any person who the licensee knows or has reasonable cause to believe does not reside in . . . the State in which the licensee's place of business is located, cannot be interpreted to define \"reside in . . . the State\" differently for citizens and aliens.", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-06", - "case_names": "Lawfulness of Recess Appointments During a Recess of the Senate Notwithstanding Periodic Pro Forma Sessions", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2012/01/31/pro-forma-sessions-opinion_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The convening of periodic pro forma sessions in which no business is to be conducted does not have the legal effect of interrupting an intrasession recess otherwise long enough to qualify as a \"Recess of the Senate\" under the Recess Appointments Clause. In this context, the President therefore has discretion to conclude that the Senate is unavailable to perform its advise-and-consent function and to exercise his power to make recess appointments.", - "case_name_shorts": "" - }, - { - "case_dates": "2011-11-01", - "case_names": "Whether Postal Employees Are Entitled to Receive Service Credit, for Purposes of Their Retirement Annuity Under the Federal Employees' Retirement System, for Periods of Employment During Which the USPS Has Not Made Its Required Employer Contributions", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2011/11/31/postal-service-fers-opinion_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The Office of Personnel Management may not address the United States Postal Service's failure to make statutorily required retirement contributions by denying its employees accrued service credit under the Federal Employees' Retirement System during their periods of qualifying federal employment.", - "case_name_shorts": "" - }, - { - "case_dates": "2011-10-28", - "case_names": "Nonimmigrant Aliens and Firearms Disabilities Under the Gun Control Act", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2011/10/31/nonimmigrant-firearms-opinion_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The prohibition in 18 U.S.C. \u00a7 922(g)(5)(B) applies only to nonimmigrant aliens who must have visas to be admitted to the United States, not to all aliens with nonimmigrant status. The text of the statute forecloses the interpretation advanced by the Bureau of Alcohol, Tobacco, Firearms and Explosives in an interim final rule applying section 922(g)(5)(B) to all nonimmigrant aliens.", - "case_name_shorts": "" - }, - { - "case_dates": "2011-09-20", - "case_names": "Whether Proposals by Illinois and New York to Use the Internet and Out-of-State Transaction Processors to Sell Lottery Tickets to In-State Adults Violate the Wire Act", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2011/09/31/state-lotteries-opinion_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "Interstate transmissions of wire communications that do not relate to a \"sporting event or contest\" fall outside the reach of the Wire Act. Because the proposed New York and Illinois lottery proposals do not involve wagering on sporting events or contests, the Wire Act does not prohibit them.", - "case_name_shorts": "" - }, - { - "case_dates": "2011-09-19", - "case_names": "Unconstitutional Restrictions on Activities of the Office of Science and Technology Policy in Section 1340(a) of the Department of Defense and Full-Year Continuing Appropriations Act, 2011", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2011/09/31/conduct-diplomacy_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "Section 1340(a) of the Department of Defense and Full-Year Continuing Appropriations Act, 2011 is unconstitutional as applied to certain activities undertaken pursuant to the President's constitutional authority to conduct the foreign relations of the United States. Most, if not all, of the activities of the Office of Science and Technology Policy that we have been asked to consider fall within the President's exclusive power to conduct diplomacy, and OSTP's officers and employees therefore may engage in those activities as agents designated by the President for the conduct of diplomacy, notwithstanding section 1340(a). The plain terms of section 1340(a) do not apply to OSTP's use of funds to perform its functions as a member of the Committee on Foreign Investment in the United States.", - "case_name_shorts": "" - }, - { - "case_dates": "2011-08-23", - "case_names": "Whether the Department of Health and Human Services May Provide the Government Accountability Office Access to Information in the National Directory of New Hires", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/attachments/2016/03/18/2011-08-23-gao-access-ndnh.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "Title 42, section 653(l) of the U.S. Code prohibits the Department of Health and Human Services from providing the Government Accountability Office access to personally identifiable information from the National Directory of New Hires, notwithstanding GAO's general access provision, 31 U.S.C. \u00a7 716(a).", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-20", - "case_names": "Constitutionality of Legislation Extending the Term of the FBI Director", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2011/06/31/fbi-director-term_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "It would be constitutional for Congress to enact legislation extending the term of Robert S. Mueller, III, as Director of the Federal Bureau of Investigation.", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-03", - "case_names": "Applicability of the Foreign Intelligence Surveillance Act's Notification Provision to Security Clearance Adjudications by the Department of Justice Access Review Committee", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2011/06/31/security-clearance-provisions_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The notification requirement in section 106(c) of the Foreign Intelligence Surveillance Act generally applies when the Department of Justice intends to use information obtained from electronic surveillance against an aggrieved person in an adjudication before the Access Review Committee concerning the Department's revocation of an employee's security clearance. Compliance with the notification requirement in section 106(c) of the Foreign Intelligence Surveillance Act in particular Access Review Committee adjudications could raise as-applied constitutional questions if such notice would require disclosure of sensitive national security information protected by executive privilege.", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-03", - "case_names": "Whether Bills May Be Presented by Congress and Returned by the President by Electronic Means", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2011/05/31/bills-electronic-means_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The use of electronic means of presentment and return of bills is constitutionally permissible. The statutes governing the presentment process could be read as encompassing electronic transmission, but that is not necessarily the most natural reading. In light of the novelty of electronic presentment and return, and the need to ensure that the President and Congress, as well as the public, share a common understanding of the means by which these fundamental steps in the lawmaking process may be carried out, we recommend that, before electronic presentment and return might be used, 1 U.S.C. \u00a7\u00a7 106, 106a, and 107 be amended to provide expressly for the permissibility of electronic presentment and that the President and Congress reach an agreement, whether by statute or other means, concerning the permissibility of electronic return of bills.", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-08", - "case_names": "Authority to Employ White House Office Personnel Exempt From the Annual and Sick Leave Act Under 5 U.S.C. \u00a7 6301(2)(x) and (xi) During an Appropriations Lapse", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2011/04/31/wh-offrs-exempt-from-leave_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "White House officials who are exempt from the Annual and Sick Leave Act pursuant to 5 U.S.C. \u00a7 6301(2)(x) and (xi) may continue to work during a lapse in the appropriations for their salaries.", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-01", - "case_names": "Authority to Use Military Force in Libya", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2011/04/31/authority-military-use-in-libya_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The President had the constitutional authority to direct the use of military force in Libya because he could reasonably determine that such use of force was in the national interest. Prior congressional approval was not constitutionally required to use military force in the limited operations under consideration.", - "case_name_shorts": "" - }, - { - "case_dates": "2011-02-25", - "case_names": "Reimbursement or Payment Obligation of the Federal Government Under Section 313(c)(2)(b) of the Clean Water Act", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2011/02/31/stormwater-cardin-bill_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "Section 313(c)(2)(B) of the Clean Water Act does not impose a specific-appropriation requirement for the payment of stormwater assessments. Federal agencies may pay appropriate stormwater assessments from annual\u2014including current\u2014lump-sum appropriations.", - "case_name_shorts": "" - }, - { - "case_dates": "2010-12-17", - "case_names": "The Availability of Crime Victims' Rights Under the Crime Victims' Rights Act of 2004", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2010/12/31/availability-crime-victims-rights_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The rights provided by the Crime Victims Rights Act are guaranteed from the time that criminal proceedings are initiated (by complaint, information, or indictment) and cease to be available if all charges are dismissed either voluntarily or on the merits (or if the Government declines to bring formal charges after the filing of a complaint).", - "case_name_shorts": "" - }, - { - "case_dates": "2010-12-17", - "case_names": "Disposition of Proceeds From the Sale of Real Property Acquired With Money From the Social Security Trust Funds", - "download_urls": "https://www.justice.gov/sites/default/files/olc/opinions/2010/12/31/ssa-opinion_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The General Services Administration is authorized, under section 412 of the Consolidated Appropriations Act of 2005, to convey Social Security Administration buildings that were acquired with money derived from the Social Security Trust Funds and to retain the net proceeds in the Federal Buildings Fund.", + "summaries": "The Chairperson of the Federal Deposit Insurance Corporation does not have the authority to prevent a majority of the FDIC Board from presenting items to the Board for a vote and decision.", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ag_example.html b/tests/examples/opinions/united_states/ag_example.html index bb1130908..ef7effe16 100644 --- a/tests/examples/opinions/united_states/ag_example.html +++ b/tests/examples/opinions/united_states/ag_example.html @@ -1,725 +1,2810 @@ - - - - - - - - - Opinions | OLC | Department of Justice - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - + +
+
+ +
+ +
-
+
+ + + + + +
+ 1398 Results +
+ +
+
+ +
+
+ +

+ +Retaining Private Counsel to Represent the DHS Secretary in Impeachment Processes + +

-
-
-
-

You are here

+
Date of Issuance:
+
+
+
+
+
+
+

The Department of Homeland Security may retain private counsel to assist the Department in representing itself and the Secretary in impeachment proceedings aimed at decisions or actions within the scope of the Secretary’s official duties and unaccompanied by any allegations of personal misconduct.

+
+
-
- -

Opinions

+
+
+
+
+
+
-
-
- Displaying 1 - 40 of 1307
+

+ +Application of the Comstock Act to the Mailing of Prescription Drugs That Can Be Used for Abortions + +

-
-
-
-
-
-
-
- -
-
- +
+ +
+
+ +

+ +Federal Vacancies Reform Act’s Application to a Vacancy for Which Prior Presidents Submitted Multiple Nominations + +

+ +
Date of Issuance:
+
+
-
-
-
- -
-
- +
+
+ + +
+

Upon the inauguration of a new President, the Federal Vacancies Reform Act restarts the entire timing sequence for acting service in a position that was vacant on inauguration day, authorizing an acting official to serve for up to 300 days after inauguration day, during the pendency of the new President’s first and second nominations for the vacant position, and for 210 days following the rejection, withdrawal, or return of a first or second nomination submitted by the new President.

+
+
+ +
+
+
+
+ +
+
+ +

+ +Authority of the Department of Defense to Use Appropriations for Travel by Service Members and Dependents to Obtain Abortions + +

+ +
Date of Issuance:
+
+
+
+
+
+ + +
+

The Department of Defense may lawfully expend funds to pay for service members and their dependents to travel to obtain abortions that DoD cannot itself perform due to statutory restrictions. DoD may lawfully expend funds to pay for such travel pursuant to both its express statutory authorities and, independently, the necessary expense doctrine.

+
+
+ +
+
+
+
+ +
+
+ +

+ +Application of the Hyde Amendment to the Provision of Transportation for Women Seeking Abortions + +

+ +
Date of Issuance:
+
+
+
+
+
+ + +
+

The Hyde Amendment’s prohibition barring the Department of Health and Human Services from expending covered funds for any abortion does not bar HHS from expending covered funds to provide transportation for women seeking abortions in circumstances in which HHS has the requisite statutory authority and appropriations to provide such transportation.

+
+
+ +
+
+
+
+ +
+
+ +

+ +Intergovernmental Immunity for the Department of Veterans Affairs and Its Employees When Providing Certain Abortion Services + +

+ +
Date of Issuance:
+
+
+
+
+
+ + +
+

The rule issued by the Department of Veterans Affairs on Reproductive Health Services, 87 Fed. Reg. 55,287 (Sept. 9, 2022), is a lawful exercise of VA’s authority. States may not impose criminal or civil liability on VA employees—including doctors, nurses, and administrative staff—who provide or facilitate abortions or related services in a manner authorized by federal law, including VA’s rule. The Supremacy Clause bars state officials from penalizing VA employees for performing their federal functions, whether through criminal prosecution, license revocation proceedings, or civil litigation.

+
+
+ +
+
+
+
+ +
+
+ +

+ +Use of the HEROES Act of 2003 to Cancel the Principal Amounts of Student Loans + +

+ +
Date of Issuance:
+
+
+
+
+
+ + +
+

The Higher Education Relief Opportunities for Students Act of 2003, Pub. L. No. 108-76, 117 Stat. 904, grants the Secretary of Education authority to reduce or eliminate the obligation to repay the principal balance of federal student loan debt, including on a class-wide basis in response to the COVID-19 pandemic, provided all other requirements of the statute are satisfied.

+
+
+ +
+
+
+
+ + +
+
+ + +
+ +
+ + + + + + + +
-
-
-
-
- -
+
+ + + -
-
-
-
-
+
+
+
+ +
+
+ + + + + + + + +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/tests/examples/opinions/united_states/ala_example.compare.json b/tests/examples/opinions/united_states/ala_example.compare.json index 96b646cd5..aa2966588 100644 --- a/tests/examples/opinions/united_states/ala_example.compare.json +++ b/tests/examples/opinions/united_states/ala_example.compare.json @@ -1,24 +1,122 @@ [ { - "case_dates": "2023-01-04", - "case_names": "Sunitha Rani Madasu v. Shoals Radiology Associates P.C.", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127166&event=6I70KYVMF", + "case_dates": "2023-11-09", + "case_names": "Richard D. Hollar v. Carrie A. Hollar (Appeal from Chilton Circuit Court: DR-19-900201).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/68f021c4-6a44-4735-9a76-5360b2e8af13/cms/case/990A1541-5E9D-4F25-BBC4-30C7E92AA8E8/docketentrydocuments/1DA3F254-DBA4-4F5B-98C6-068AABD2B35C", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1210334", - "judges": "JUSTICE MITCHELL", - "case_name_shorts": "" + "docket_numbers": "CL-2022-1230", + "judges": "Fridy, J.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2023-01-04", - "case_names": "Gulf Shores City Board of Education and Kelly Walker v. Eric Mackey, in his official capacity as Superintendent of the Alabama State Board of Education Teddy J. Faust, Jr., in his official capacity as Revenue Commissioner of Baldwin County James E. Ball, Joe Davis III, Billie Jo Underwood, and Charles F. Gruber, in their official capacities as Commissioners of Baldwin County Baldwin County Board of Education Baldwin County Circuit Judge Carmen E. Bosch, in her official capacity as Presiding Judge of the Baldwin County Juvenile Court Robert Wilters, in his official capacity as Baldwin County District Attorney and Coastal Alabama Community College", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127167&event=6I70KYVP3", + "case_dates": "2023-11-09", + "case_names": "M.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-277.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/68f021c4-6a44-4735-9a76-5360b2e8af13/cms/case/A0AEAD62-73EA-48AA-B38F-069AF119647F/docketentrydocuments/697B3B6A-EB1F-4D45-9CE9-B1017469D7FE", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1210353", - "judges": "JUSTICE BOLIN", - "case_name_shorts": "" + "docket_numbers": "CL-2022-1284", + "judges": "", + "case_name_shorts": "M.G.", + "per_curiam": false + }, + { + "case_dates": "2023-11-09", + "case_names": "M.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-276.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/68f021c4-6a44-4735-9a76-5360b2e8af13/cms/case/8081617C-797F-442D-8D50-DB7407B19B46/docketentrydocuments/A9A76486-3540-4AB5-BD0C-40163700409A", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1283", + "judges": "", + "case_name_shorts": "M.G.", + "per_curiam": false + }, + { + "case_dates": "2023-11-09", + "case_names": "K.D.S. v. M.P. and F.P. (Appeal from Tallapoosa Circuit Court: JU-20-20.01).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/68f021c4-6a44-4735-9a76-5360b2e8af13/cms/case/242BA2E0-4474-4480-B98F-210627379C5F/docketentrydocuments/ED65723C-35E4-4DAA-99E5-05BB78FDFDEF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1177", + "judges": "", + "case_name_shorts": "K.D.S.", + "per_curiam": true + }, + { + "case_dates": "2023-11-09", + "case_names": "K.D.S. v. M.P. and F.P. (Appeal from Tallapoosa Circuit Court: JU-20-19.01).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/68f021c4-6a44-4735-9a76-5360b2e8af13/cms/case/55B39F8C-2E1A-49F4-B483-BA633B28A74C/docketentrydocuments/A8F66065-5F71-4E80-86F2-6D90E773589F", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1176", + "judges": "", + "case_name_shorts": "K.D.S.", + "per_curiam": true + }, + { + "case_dates": "2023-11-09", + "case_names": "John Paul Madrigal v. Courtney H. Madrigal (Appeal from Talladega Circuit Court: DR-20-900004.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/68f021c4-6a44-4735-9a76-5360b2e8af13/cms/case/36130E2C-4352-4A25-B7A8-7EA91781EF7F/docketentrydocuments/6796BB42-EB50-4B84-A8ED-8EB2B29F3DFB", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1265", + "judges": "Fridy, J.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-11-09", + "case_names": "D.H. v. Tuscaloosa County Department of Human Resources (Appeal from Tuscaloosa Juvenile Court: JU-19-513.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/68f021c4-6a44-4735-9a76-5360b2e8af13/cms/case/4AF983D1-7824-4913-B33B-1DD1849E8369/docketentrydocuments/8E86DE1D-2427-4503-8984-BEC704F768A2", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1095", + "judges": "", + "case_name_shorts": "D.H.", + "per_curiam": false + }, + { + "case_dates": "2023-11-09", + "case_names": "D.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-277.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/68f021c4-6a44-4735-9a76-5360b2e8af13/cms/case/B9C9D2E8-9DC0-4AF2-AAB9-32E3BA0DDC37/docketentrydocuments/5FAC0778-7A15-4AB3-AB3B-2D219466AB14", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1282", + "judges": "", + "case_name_shorts": "D.G.", + "per_curiam": false + }, + { + "case_dates": "2023-11-09", + "case_names": "D.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-276.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/68f021c4-6a44-4735-9a76-5360b2e8af13/cms/case/D3914036-3BC6-4C36-BAAF-E12E58FA71B2/docketentrydocuments/05F95A51-8CB0-4922-9843-17F260309AD0", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1281", + "judges": "", + "case_name_shorts": "D.G.", + "per_curiam": false + }, + { + "case_dates": "2023-11-09", + "case_names": "B.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-71.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/68f021c4-6a44-4735-9a76-5360b2e8af13/cms/case/83704147-7B2F-4C16-8FA5-72A142B65BFF/docketentrydocuments/072C46FA-7E51-4D9C-9CEE-10DD390E7E2B", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2023-0255", + "judges": "", + "case_name_shorts": "B.W.", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ala_example.html b/tests/examples/opinions/united_states/ala_example.html deleted file mode 100644 index fb0fe52d3..000000000 --- a/tests/examples/opinions/united_states/ala_example.html +++ /dev/null @@ -1,397 +0,0 @@ - - - - displaydocs2.cfm - - - - - - - - - - - - -
- -
-
-
-
- - - - -
-
- -
- -
-
-
-
- - - -
-
-
- -
- - - - - - - - -
-
-
-
- -
- -
- -
- -
- - of 1 -
-
- - - - - - - Current View - - -
- - - - - - - -
-
-
- -
- -
- - - -
-
- -
-
- -
-
SUPREME COURT OF ALABAMA
DECISIONS ANNOUNCED ON

THURSDAY, DECEMBER 22, 2022

JUSTICE BOLIN

1210353 Gulf Shores City Board of Education and Kelly Walker v. Eric
Mackey, in his official capacity as Superintendent of the
Alabama State Board of Education; Teddy J. Faust, Jr., in his
official capacity as Revenue Commissioner of Baldwin County;
James E. Ball, Joe Davis III, Billie Jo Underwood, and
Charles F. Gruber, in their official capacities as
Commissioners of Baldwin County; Baldwin County Board of
Education; Baldwin County Circuit Judge Carmen E. Bosch,
in her official capacity as Presiding Judge of the Baldwin
County Juvenile Court; Robert Wilters, in his official capacity
as Baldwin County District Attorney; and Coastal Alabama
Community College (Appeal from Montgomery Circuit Court:
CV-21-900953).

Affirmed.

JUSTICE MITCHELL

1210334 Sunitha Rani Madasu v. Shoals Radiology Associates P.C.
(Appeal from Lauderdale Circuit Court: CV-17-900333).

Affirmed.
-
- -
- -
- -
- -
-
- -
-
- - -
-
- -
- File name: -

-

-
-
- File size: -

-

-
-
-
- Title: -

-

-
-
- Author: -

-

-
-
- Subject: -

-

-
-
- Keywords: -

-

-
-
- Creation Date: -

-

-
-
- Modification Date: -

-

-
-
- Creator: -

-

-
-
-
- PDF Producer: -

-

-
-
- PDF Version: -

-

-
-
- Page Count: -

-

-
-
- Page Size: -

-

-
-
-
- Fast Web View: -

-

-
-
- -
-
-
- -
-
- - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ala_example.json b/tests/examples/opinions/united_states/ala_example.json new file mode 100644 index 000000000..0ce3794e9 --- /dev/null +++ b/tests/examples/opinions/united_states/ala_example.json @@ -0,0 +1,4739 @@ +{ + "_embedded": { + "results": [ + { + "publicationUUID": "a5044506-38cf-45e6-a0fa-b03e2923e6dd", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-11-09", + "publicationName": "Court of Civil Appeals Release List - November 9, 2023", + "publicationNote": "Decisions Announced on Thursday, November 9, 2023", + "groupFlag": true, + "scheduledDate": "2023-11-09T14:15:00.000+00:00", + "publicationDate": "2023-11-09T14:55:51.829+00:00", + "publicationItems": [ + { + "publicationItemUUID": "9AA6954D-C3B4-4E3E-888D-95920E3BB677", + "docketEntryUUID": "67155BE4-1E22-4851-BB8F-A47EAF3DF634", + "caseInstanceUUID": "1B1CA827-2759-4FEB-845A-D325380EA2E8", + "caseNumber": "CL-2023-0257", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "E.C. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-22-64.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "B0CA9E09-66E8-4117-BAC0-B0E9550BFD49", + "docketEntryUUID": "3B6C3500-B911-4801-999F-AC5FC8042A43", + "caseInstanceUUID": "990A1541-5E9D-4F25-BBC4-30C7E92AA8E8", + "caseNumber": "CL-2022-1230", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Richard D. Hollar v. Carrie A. Hollar (Appeal from Chilton Circuit Court: DR-19-900201).", + "decision": "Decision - Affirmed In Part; Reversed In Part; And Remanded With Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "1DA3F254-DBA4-4F5B-98C6-068AABD2B35C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "5E4CFB93-E714-4708-88A3-4CBAE0D88C6C", + "docketEntryUUID": "2807E578-FF3D-46A8-8E2B-EC8FFE72456A", + "caseInstanceUUID": "4AF983D1-7824-4913-B33B-1DD1849E8369", + "caseNumber": "CL-2022-1095", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "D.H. v. Tuscaloosa County Department of Human Resources (Appeal from Tuscaloosa Juvenile Court: JU-19-513.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "8E86DE1D-2427-4503-8984-BEC704F768A2", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "8B788B85-9BD7-42C1-ABC1-BE4F0C332D2E", + "docketEntryUUID": "4EE54D66-260B-495D-AD64-9DC3299446EC", + "caseInstanceUUID": "55B39F8C-2E1A-49F4-B483-BA633B28A74C", + "caseNumber": "CL-2022-1176", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "K.D.S. v. M.P. and F.P. (Appeal from Tallapoosa Circuit Court: JU-20-19.01).", + "decision": "Decision - Affirmed In Part; Reversed In Part; And Remanded With Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "A8F66065-5F71-4E80-86F2-6D90E773589F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2592AD6F-58E9-4462-BA65-7A6BEC109B00", + "docketEntryUUID": "32734871-266E-414B-BBF1-E2FC60A419B0", + "caseInstanceUUID": "36130E2C-4352-4A25-B7A8-7EA91781EF7F", + "caseNumber": "CL-2022-1265", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "John Paul Madrigal v. Courtney H. Madrigal (Appeal from Talladega Circuit Court: DR-20-900004.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "6796BB42-EB50-4B84-A8ED-8EB2B29F3DFB", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F474E34B-A9EB-42AA-AFD8-4163786ED944", + "docketEntryUUID": "55A67F97-50D8-43A5-A8BD-1E869A06141E", + "caseInstanceUUID": "242BA2E0-4474-4480-B98F-210627379C5F", + "caseNumber": "CL-2022-1177", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "K.D.S. v. M.P. and F.P. (Appeal from Tallapoosa Circuit Court: JU-20-20.01).", + "decision": "Decision - Affirmed In Part; Reversed In Part; And Remanded With Instructions.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "ED65723C-35E4-4DAA-99E5-05BB78FDFDEF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8F2B1C7A-D94B-4F36-B4A2-98D07030A8A4", + "docketEntryUUID": "97285C5C-0B67-45C6-B854-385175B89A5C", + "caseInstanceUUID": "D3914036-3BC6-4C36-BAAF-E12E58FA71B2", + "caseNumber": "CL-2022-1281", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "D.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-276.02).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "05F95A51-8CB0-4922-9843-17F260309AD0", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "18CB00C7-E8FD-41F7-B3A7-CC42977D149D", + "docketEntryUUID": "E9F6C460-476D-4F64-A48C-4892ECAD1878", + "caseInstanceUUID": "B9C9D2E8-9DC0-4AF2-AAB9-32E3BA0DDC37", + "caseNumber": "CL-2022-1282", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "D.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-277.02).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "5FAC0778-7A15-4AB3-AB3B-2D219466AB14", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "E83689AB-CCCC-483B-B3B3-6F0CC59D4656", + "docketEntryUUID": "01E5145A-FD1C-47B5-980F-78A4AD23CD3C", + "caseInstanceUUID": "8081617C-797F-442D-8D50-DB7407B19B46", + "caseNumber": "CL-2022-1283", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "M.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-276.02).", + "decision": "Rehearing - Overruled", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "A9A76486-3540-4AB5-BD0C-40163700409A", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "08C78B3F-0494-40DD-9B2F-DA89E3AF7169", + "docketEntryUUID": "E0ADD1B4-18C8-4EB3-A381-C9ABBE7C7A68", + "caseInstanceUUID": "07B023F2-DE54-4A84-B896-1B582354A431", + "caseNumber": "CL-2023-0207", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "B.P.W. v. Talladega County Department of Human Resources (Appeal from Talladega Juvenile Court: JU-21-100031.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 4 + }, + { + "publicationItemUUID": "BA4339B1-6CED-4E5C-B4DF-A7116C60B724", + "docketEntryUUID": "572B2C66-6676-4B7E-8145-EAED77FC59AA", + "caseInstanceUUID": "A0AEAD62-73EA-48AA-B38F-069AF119647F", + "caseNumber": "CL-2022-1284", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "M.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-277.02).", + "decision": "Rehearing - Overruled", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "697B3B6A-EB1F-4D45-9CE9-B1017469D7FE", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "EBD82AB6-ED2A-47B1-AA63-6DD5F1A4629C", + "docketEntryUUID": "C563769A-D58B-4758-93EA-A79B2524AAFC", + "caseInstanceUUID": "83704147-7B2F-4C16-8FA5-72A142B65BFF", + "caseNumber": "CL-2023-0255", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "B.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-71.02).", + "decision": "Rehearing - Overruled", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "072C46FA-7E51-4D9C-9CEE-10DD390E7E2B", + "documentName": "Order" + } + ] + } + ] + }, + { + "publicationUUID": "b3d36331-cf5c-42cc-840e-41071414bf1d", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-11-03", + "publicationName": "Court of Civil Appeals Release List - November 3, 2023", + "publicationNote": "Decisions Announced on Friday, November 3, 2023", + "groupFlag": true, + "scheduledDate": "2023-11-03T13:15:00.000+00:00", + "publicationDate": "2023-11-03T13:17:31.841+00:00", + "publicationItems": [ + { + "publicationItemUUID": "2251FF5E-20F4-4A5D-BB44-6224D82E3B63", + "docketEntryUUID": "874FBA3F-B566-4981-8284-5BF51398C4BA", + "caseInstanceUUID": "C1B4AC9C-3D18-4D60-8EDD-68DA847C458E", + "caseNumber": "CL-2023-0074", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "S.R. v. B.G. and K.G. (Appeal from Morgan Juvenile Court: JU-19-142.03).", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "7D688543-290E-4F8D-BEC2-40164CFF3C30", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F6D3B785-9E38-41AF-AEDF-206676369205", + "docketEntryUUID": "2BCDAEA2-52BD-489D-97E6-EA2FB290B0AB", + "caseInstanceUUID": "F992C62F-BEE0-4F95-A008-D1F5AA419D13", + "caseNumber": "CL-2023-0256", + "groupName": "Per Curiam", + "groupOrderBy": 3, + "title": "D.S. v. L.T. (Appeal from Tuscaloosa Juvenile Court: JU-22-882.01).", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "4A935333-BF56-4695-961E-110D002F84E8", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8BFBC6BB-C90C-48FF-8453-B4FCB67F9548", + "docketEntryUUID": "A4D34ACB-1B07-4CF9-8827-BF032551EFEC", + "caseInstanceUUID": "3C064155-67FC-47F8-B8A8-FFE8645DDDB1", + "caseNumber": "CL-2023-0232", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "J.E. v. Lawrence County Department of Human Resources (Appeal from Lawrence Juvenile Court: JU-20-158.01).", + "decision": "Decision - Affirmed in Part; Dismissed in Part", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "1B79818C-1559-49C2-BDED-A894174FA091", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9625450F-74F2-4576-B92B-8A2BAE121BD6", + "docketEntryUUID": "01CC5333-3999-48C1-9593-3F9A57F472B0", + "caseInstanceUUID": "AE2FE32A-F98B-4C48-AC6E-41CFAA3B6CBB", + "caseNumber": "CL-2023-0075", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "S.R. v. B.G. and K.G. (Appeal from Morgan Juvenile Court: JU-19-144.03).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "92763036-780A-4218-AE90-E329DC2378A8", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "7d732fec-4a76-4172-b29e-1e2a8dcbd960", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-10-27", + "publicationName": "Court of Civil Appeals Release List - October 27, 2023", + "publicationNote": "Decisions Announced on Friday, October 27, 2023", + "groupFlag": true, + "scheduledDate": "2023-10-27T13:15:00.000+00:00", + "publicationDate": "2023-10-27T13:13:27.833+00:00", + "publicationItems": [ + { + "publicationItemUUID": "18EACE6E-B9B4-4F21-B6E2-E5FD3A4A70B9", + "docketEntryUUID": "D32B482A-D314-43F3-A70B-2EE05D183CA6", + "caseInstanceUUID": "64FD18F0-15BF-4171-B764-9BE5388AF023", + "caseNumber": "CL-2023-0179", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.P. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-18-205.03).", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "9E7FA313-8650-4CC4-A28A-034064A4D764", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "BD72D566-4B9E-48A6-B8AD-3831D8D282C3", + "docketEntryUUID": "E439FF30-E2AD-4843-B862-50E10D7BEF0E", + "caseInstanceUUID": "80CAAA4B-C51C-4573-BDAE-6FD6A2AA34C7", + "caseNumber": "CL-2023-0248", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "A.S. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-21-45.03).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "F8912C0F-F7CD-4411-8E9C-6C09F7C6A44D", + "docketEntryUUID": "C60B3DFD-07FE-428B-972D-BD43C3E98E2B", + "caseInstanceUUID": "913556FB-F3EE-4474-941A-5B211DECB6F3", + "caseNumber": "CL-2023-0180", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.P. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-18-206.03).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "E6AF9BF1-2BC5-43EC-ACE6-7D5633A1A0D4", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "20303BF6-3E04-4A7C-B22B-8EEF860A3D36", + "docketEntryUUID": "0B0BDB53-0BA2-4662-B0D7-DD67D34260F1", + "caseInstanceUUID": "DEBB4C0E-1783-48A0-9143-0AA7F6B1A8FA", + "caseNumber": "CL-2023-0181", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.P. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-18-207.04).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "16BC0776-3D56-4FF9-9CDC-41057637B309", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "602EC3B5-C7F2-448D-9263-3EB200DB75A2", + "docketEntryUUID": "5349EFA3-CBCD-4909-A468-ABAADE2C9640", + "caseInstanceUUID": "B41C7D9E-2911-4273-A56C-3AE4D0764D66", + "caseNumber": "CL-2023-0182", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.P. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-20-281.02).", + "decision": "Decision - Affirmed.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "5602F587-7E90-4471-A1B9-69E5005F6E22", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "A80F94A5-2F0F-4640-A58A-A7CC2FF751EC", + "docketEntryUUID": "B0088AF1-2213-4922-B674-B582911B2E9A", + "caseInstanceUUID": "3F9DAB71-AB3C-4347-AF0B-A2A0F3BF406B", + "caseNumber": "CL-2023-0183", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.P. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-20-282.02).", + "decision": "Decision - Affirmed.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "8C7BF478-F10D-462A-90FA-7038343CDC56", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D3403326-5C8F-4101-A1AA-B4E66B9B6762", + "docketEntryUUID": "8845A06B-2931-4D96-8F76-3EF7431EC564", + "caseInstanceUUID": "CCEB2FBD-BDD9-4D68-9503-005CB33F655F", + "caseNumber": "CL-2023-0184", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.P. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-22-73.02).", + "decision": "Decision - Affirmed.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "BD293280-738D-43CA-A2B5-6004AAEDE8C5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2C7A17C5-8B85-4CA6-AA9C-D4CEEF788140", + "docketEntryUUID": "FF6AF786-53CF-421A-A61C-CC6917D0DAD0", + "caseInstanceUUID": "8FEC07A5-143A-4FD0-AF85-E57CEE06A17D", + "caseNumber": "CL-2023-0354", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "L.V. v. Cullman County Department of Human Resources (Appeal from Cullman Juvenile Court: JU-20-59.04).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 7 + }, + { + "publicationItemUUID": "CA0A73D8-B02E-4D8C-86FD-AB4E19CFEA7E", + "docketEntryUUID": "84FBFA1D-96F1-4B6E-9928-719A030E255B", + "caseInstanceUUID": "4991F28F-8057-4330-8F29-E85CD5B1695B", + "caseNumber": "CL-2023-0355", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "L.V. v. Cullman County Department of Human Resources (Appeal from Cullman Juvenile Court: JU-20-283.04).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 8 + }, + { + "publicationItemUUID": "A8821B8D-4144-42CA-AE85-C540583BAD5A", + "docketEntryUUID": "B1A305BA-53F7-4D12-A5C1-8E02500CB555", + "caseInstanceUUID": "D91097A9-2CC3-4C82-B273-43F173B84C0D", + "caseNumber": "CL-2023-0449", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "E.A.(B) v. Cullman County Department of Human Resources (Appeal from Cullman Juvenile Court: JU-21-582.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 9 + }, + { + "publicationItemUUID": "92B3BEAF-84CC-4459-9E24-40A44B6CB299", + "docketEntryUUID": "90C0FC66-2AF5-4EC1-BF84-3EE7C2798D0A", + "caseInstanceUUID": "9A7C3516-3CA1-4D89-A2D5-8852B4C9D2F8", + "caseNumber": "CL-2023-0523", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Ex parte C.H. PETITION FOR WRIT OF MANDAMUS: (In re: In the matter of S.A.) (Jefferson Juvenile Court, Bessemer Division: JU-18-293.03)", + "decision": "Decision - Petition Granted.", + "orderBy": 10, + "documents": [ + { + "documentLinkUUID": "AE3BE730-2522-4496-BE51-1F22BDB16FCC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9E9979A7-EDAA-4412-9BA6-6F80C59044B6", + "docketEntryUUID": "5FC0DE9E-9FC0-43C3-8B6D-C046DB65433E", + "caseInstanceUUID": "BB1AC884-E00C-493A-8960-0FBC8AD1D5EF", + "caseNumber": "CL-2023-0567", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Clifford Muldrow v. J. Drayton Smith, III and Southern Dental Cosmetic and Family Dentistry (Appeal from Shelby Circuit Court: CV-23-18).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 11 + } + ] + }, + { + "publicationUUID": "007d6613-e658-4445-9fa3-59acfb2f7c57", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-10-20", + "publicationName": "Court of Civil Appeals Release List - October 20, 2023", + "publicationNote": "Decisions Announced on Friday, October 20, 2023", + "groupFlag": true, + "scheduledDate": "2023-10-20T13:30:00.000+00:00", + "publicationDate": "2023-10-20T13:39:33.082+00:00", + "publicationItems": [ + { + "publicationItemUUID": "C04C9E32-76E3-4AA0-8323-95B9E7EFB8CC", + "docketEntryUUID": "45239B51-E3F4-495B-862F-A9C83BADF435", + "caseInstanceUUID": "5B56A4B8-EB3E-45E9-8682-A9D2FD9AEB14", + "caseNumber": "CL-2023-0076", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "A.W. v. Russell County Department of Human Resources (Appeal from Russell Juvenile Court: JU-21-47.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "F6DAEB20-79EB-4876-A252-F4F63A313A92", + "docketEntryUUID": "091D6482-D946-4CB4-A021-E3CF47E51CF7", + "caseInstanceUUID": "80F5228F-527B-49D2-9CA1-B526FD25A24D", + "caseNumber": "CL-2022-1147", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "B.L. v. Judge Zack Collins and M.D. (Appeal from Russell Juvenile Court: JU-14-136.09)", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "C49F37D9-25DF-426F-B5E3-E029679395F2", + "docketEntryUUID": "3B63C100-43BD-4CEF-8039-57F642754DCA", + "caseInstanceUUID": "78CA75AD-43DD-4895-8892-52B7C5679E59", + "caseNumber": "CL-2023-0223", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "M.S. and D.S. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-23-67.01).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "3BB4DC6A-FC04-4697-AF5A-FFA3926B2A19", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8285F8C1-C124-41FD-851C-F4B003CF8758", + "docketEntryUUID": "34E7A455-01DF-4C8D-8CB1-0F8F58B9B7A6", + "caseInstanceUUID": "4EA31DD0-1B3B-45F5-BF55-F74C468F0C63", + "caseNumber": "CL-2022-1041", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Jessica Lynn Francis Orr v. Skyler Demarcus Orr (Appeal from Lee Circuit Court: DR-19-120.01).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "61527DF7-7A45-4A29-8852-7909B00FA67C", + "docketEntryUUID": "1D658D26-4EC1-4D8B-BA39-F11B75CBE570", + "caseInstanceUUID": "5A95792C-F091-4E49-9D1D-BA61F619B1AC", + "caseNumber": "CL-2022-1042", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Jessica Lynn Francis Orr v. Skyler Demarcus Orr (Appeal from Lee Circuit Court: DR-19-120.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 2 + }, + { + "publicationItemUUID": "E2D1D203-A870-4D18-8028-1DEF6ED8F78F", + "docketEntryUUID": "386671BC-1DEB-43BE-9472-C27684BE35AE", + "caseInstanceUUID": "09714678-081F-461A-8509-367482EF76ED", + "caseNumber": "CL-2023-0259", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "A.R. v. C.R.M. (Appeal from Dale Probate Court: 21-263).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "1CE8ACE1-B9B9-41C7-AA76-04C70B31D0BF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "66CA7166-1A40-4A73-8E58-5D8D12DC8706", + "docketEntryUUID": "6503ED7F-1366-41DC-A9A2-71FA55D6F68F", + "caseInstanceUUID": "C5B155F4-9DAA-4E29-AFD0-3A0AA20E6556", + "caseNumber": "CL-2023-0077", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "A.W. v. Russell County Department of Human Resources (Appeal from Russell Juvenile Court: JU-21-48.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 2 + }, + { + "publicationItemUUID": "5211B4C5-BB80-499D-B86B-CA802CA446F0", + "docketEntryUUID": "2B802464-17B0-4896-A20B-A9D3552AA2C0", + "caseInstanceUUID": "3C7F1E11-FB4E-4369-8598-6016E699509E", + "caseNumber": "CL-2022-1151", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "M.D. v. Russell County Department of Human Resources (Appeal from Russell Juvenile Court: JU-14-136.09).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 2 + }, + { + "publicationItemUUID": "093A20D9-5FC4-442F-BD1B-49C79A44EAAE", + "docketEntryUUID": "E9AAF537-142A-419E-9999-96085D9AE59C", + "caseInstanceUUID": "05C8856E-F84F-4323-887A-1973CC560A76", + "caseNumber": "CL-2023-0078", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "A.W. v. Russell County Department of Human Resources (Appeal from Russell Juvenile Court: JU-21-51.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 3 + }, + { + "publicationItemUUID": "82AD5505-26A1-47BF-B854-7E6F69EAAB9C", + "docketEntryUUID": "E84FCD5F-99E3-46E7-9526-90E0472EC186", + "caseInstanceUUID": "A1436215-F3A5-43F0-855A-FF0916E7B781", + "caseNumber": "CL-2023-0049", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "S.B. v. Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-21-352.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 3 + }, + { + "publicationItemUUID": "36D76759-8A01-419F-BE63-7DD76BAAE7A2", + "docketEntryUUID": "2522E12A-4D88-4BE9-880E-65D61B3879BF", + "caseInstanceUUID": "0EEDEFF7-B76C-41E3-8E32-645CA7795796", + "caseNumber": "CL-2023-0052", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "D.J. v. D.D., C.D., and Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-19-134.04).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 4 + }, + { + "publicationItemUUID": "D67FA1AD-8C52-4477-96FE-16E1234B0ADC", + "docketEntryUUID": "AAAEE530-1AA6-420E-9A54-FD9596FFE070", + "caseInstanceUUID": "93B20F86-5935-4EF9-84BA-C16DD8451889", + "caseNumber": "CL-2023-0053", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "D.J. v. D.D., C.D., and Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-18-375.04).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 5 + }, + { + "publicationItemUUID": "E5F1CDB3-64BF-4832-A4A3-9F8852073DF2", + "docketEntryUUID": "1BBCD2BF-654C-4FF8-8864-65538CFF00C9", + "caseInstanceUUID": "A406C36A-5E8A-4DAB-8992-DACE772CA44F", + "caseNumber": "CL-2023-0059", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Scott Hill v. Deutsche Bank National Trust Company (Appeal from Madison Circuit Court: CV-22-900711).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 6 + } + ] + }, + { + "publicationUUID": "ab8a829f-5261-4614-b6d3-568a4a07ce1e", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-10-13", + "publicationName": "Court of Civil Appeals Release List - October 13, 2023", + "publicationNote": "Decisions Announced on Friday, October 13, 2023", + "groupFlag": true, + "scheduledDate": "2023-10-13T13:45:00.000+00:00", + "publicationDate": "2023-10-13T13:45:10.320+00:00", + "publicationItems": [ + { + "publicationItemUUID": "8609D52A-8259-4B6C-B463-EB36F9CCEADD", + "docketEntryUUID": "F1E90BC9-B1B9-4A9B-8790-4D523A3ED39A", + "caseInstanceUUID": "2C975AEE-4438-43FC-807A-9FF11A203DC4", + "caseNumber": "CL-2023-0192", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "A.J.E. v. B.S. and V.S. (Appeal from Limestone Juvenile Court: JU-21-308.01).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "C74699D6-EC1B-4FBF-9AAC-29758BB14A7B", + "docketEntryUUID": "E8462A92-49A4-49D8-ACEF-57857E2EDD9A", + "caseInstanceUUID": "C592B783-E4E9-4556-9D4F-94EF44EC525D", + "caseNumber": "CL-2023-0193", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "A.J.E. v. B.S. and V.S. (Appeal from Limestone Juvenile Court: JU-21-309.01).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 2 + } + ] + }, + { + "publicationUUID": "8459e0c8-c40b-4556-a61a-282300fab229", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-10-06", + "publicationName": "Court of Civil Appeals Release List - October 6, 2023", + "publicationNote": "Decisions Announced on Friday, October 6, 2023", + "groupFlag": true, + "scheduledDate": "2023-10-06T13:21:00.000+00:00", + "publicationDate": "2023-10-06T13:23:29.044+00:00", + "publicationItems": [ + { + "publicationItemUUID": "C59C18FE-EF30-432D-B9A1-B25B4399CD6E", + "docketEntryUUID": "09EEBBF6-9371-4F64-BC4E-B7F3F3BF8FE8", + "caseInstanceUUID": "25EFF376-0813-4EE0-B64B-07B8DACA896F", + "caseNumber": "CL-2023-0050", + "groupName": "Fridy, J.", + "groupOrderBy": 1, + "title": "Ex parte Cameron E. Whitlow (In re: Cameron E. Whitlow v. Madison County Board of Education, Allen Perkins, Sr., in his official capacity as superintendent of Madison County Schools; Nathan Curry, Brian Brooks, Dave Weis, Shere Rucker, and Angie Bates, in their official capacities as members of the Madison County Board of Education)(Madison Circuit Court: CV-22-900379)", + "decision": "Decision - Affirmed In Part; Reversed In Part; And Remanded.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "34D51F72-FD63-4FBD-9E96-C633428EBA3F", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "2b58fe1d-8ff8-4e4d-ac6d-e09e4e99802f", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-09-29", + "publicationName": "Court of Civil Appeals Release List - September 29, 2023", + "publicationNote": "Decisions Announced on Friday, September 29, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-29T14:00:00.000+00:00", + "publicationDate": "2023-09-29T13:57:24.422+00:00", + "publicationItems": [ + { + "publicationItemUUID": "02E193A2-62A7-4003-9E51-259F1C1FDA19", + "docketEntryUUID": "C57BD09C-6031-4222-8FE6-4D5DEA2ED669", + "caseInstanceUUID": "E11E37F8-2886-4B76-B85D-7A2E1B94650E", + "caseNumber": "CL-2023-0251", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "Karen Miller v. James L. Miller (Appeal from Butler Circuit Court: DR-20-900013).", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "D7471EE5-A7C5-4A34-AF71-BA8AA4829D7E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "AF810DAC-663C-42BF-9AC6-6BF2335FDFD5", + "docketEntryUUID": "FCC686CF-E0BC-457B-B287-066811EEB7BE", + "caseInstanceUUID": "16961A29-BF81-44D5-9158-A2D4FAB60288", + "caseNumber": "CL-2022-1155", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Kelly Rotta v. Daryl Rotta (Appeal from Lee Circuit Court: DR-21-900009).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "737B576F-276C-4193-BAD2-DFA935E64E7E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "79CC81CB-519C-4B66-B5A5-B20B83D27BE2", + "docketEntryUUID": "2C6565FC-20AA-45EE-9E06-89B794BBFB47", + "caseInstanceUUID": "3C6F1A22-DFB9-4208-A733-51EA8DC88C5B", + "caseNumber": "CL-2022-1021", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "R.A. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-20-545.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "DB536762-5C51-4593-9ECE-420223E591E6", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "9ABFDA37-A1A1-4C6B-9A47-CFE4C28986C1", + "docketEntryUUID": "DB31DBDA-516E-490B-9486-96C4B916EFAE", + "caseInstanceUUID": "661F7F42-7870-4A01-AC4D-7E660F74ACFF", + "caseNumber": "CL-2022-0847", + "groupName": "Per Curiam", + "groupOrderBy": 4, + "title": "Steven Mark Hayden v. William B. Cashion; Jim Pino & Associates, P.C.; James C. Pino; Jeffrey Brian Pino; Vicky Harkness; Deputy Steve Cotten; Magistrate Kelsey Finklea; and Judge John E. Rochester (Appeal from Elmore Circuit Court: CV-22-900001).", + "decision": "Decision - Affirmed in Part; Dismissed in Part with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "B6723680-89D6-483F-9145-B396C0E4A867", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7D33D6F4-D349-4567-8A45-423A409B1972", + "docketEntryUUID": "7BF1A4A4-26F2-4BAE-B474-8FBBBFC5FFB3", + "caseInstanceUUID": "206DE072-A324-4D89-A1E4-70AC95AC01FC", + "caseNumber": "CL-2023-0117", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "A.O. v. Mobile County Department of Human Resources (Appeal from Mobile Juvenile Court: JU-20-932.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "7239C729-ECCB-40CE-AAD8-958C4C6C0798", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D1624E16-3DED-4018-A658-52C73B04CA3C", + "docketEntryUUID": "EDC42F03-A7C0-46AF-8114-AD81283B9109", + "caseInstanceUUID": "1F3F1A3C-EE2E-449B-8EB6-B8BDC5D5588F", + "caseNumber": "CL-2023-0110", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Thomas Rhett McAdams, Sr. v. Thomas Rhett McAdams, Jr., and Olivia Grace Wilkinson (Appeal from Mobile Circuit Court: CV-22-901099).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "094466CC-4AB5-43BD-8FA6-772D5F3C57FC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "CFD7B5C6-E8A6-49DF-86BA-2A27BE2F89E1", + "docketEntryUUID": "EE45E99A-C825-4BD5-B4C4-FE073289213C", + "caseInstanceUUID": "A8F5E2B6-A98B-4C24-8CFC-35D9E62747B2", + "caseNumber": "CL-2023-0424", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Vickie Frantz v. Heidi A. DiLorenzo (Appeal from Montgomery Circuit Court: CV-20-900805).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "F1934585-8912-4F77-BED4-AF84BCB8840B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "A1B9CF09-562C-4975-BFBA-F7E2EAC5381B", + "docketEntryUUID": "B962B14D-4F40-4752-8428-4A1F6113DBE5", + "caseInstanceUUID": "ED52B6F2-9DC1-4BF7-AC64-49A2350F9A4F", + "caseNumber": "CL-2023-0006", + "groupName": "Per Curiam", + "groupOrderBy": 4, + "title": "Edward B. Jennings v. State of Alabama (Appeal from Tallapoosa Circuit Court: CV-19-900005).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "A28C8E38-AEF4-40DE-9374-DABD982053BC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "FFD5530F-E6EC-4C19-9799-E0889C0B389C", + "docketEntryUUID": "8ABE8E17-8A83-4029-AF0E-177F9D400B33", + "caseInstanceUUID": "CD00219E-CBF1-4895-90BC-024BEA55C16E", + "caseNumber": "CL-2022-1022", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "R.A. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-20-546.02).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "8A3B3E95-EFE7-4879-98F3-9A178CBA0BDD", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "1B7C132E-F0E5-461C-A315-533F9AF15A86", + "docketEntryUUID": "921913EF-220F-48F3-A4F5-FDE76099DC87", + "caseInstanceUUID": "AF6A16C1-7547-4FD6-8F07-0148B6DB4295", + "caseNumber": "CL-2022-1023", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "R.A. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-20-547.02).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "E855E8A6-1F20-4D75-9A79-DB6FC20B5D9F", + "documentName": "Order" + } + ] + } + ] + }, + { + "publicationUUID": "5052f064-8c3a-448e-aeea-03707f0fe6f1", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-09-22", + "publicationName": "Court of Civil Appeals Release List - September 22, 2023", + "publicationNote": "Decisions Announced on Friday, September 22, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-22T14:00:00.000+00:00", + "publicationDate": "2023-09-22T13:51:37.739+00:00", + "publicationItems": [ + { + "publicationItemUUID": "026E4C5B-9851-47CD-B990-E6275B6730CA", + "docketEntryUUID": "1C66D84E-1850-4B00-A7CB-D9333A97037E", + "caseInstanceUUID": "127FBE02-6FED-4D8C-9EAC-F5F61B4C6B82", + "caseNumber": "CL-2022-0975", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "Sherry Diane Hill v. Ricky Hill (Appeal from Winston Circuit Court: DR-20-900054).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "FA779C05-DCFE-4F6E-ABD6-7363E28BB01B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "580153D6-FE8C-48A1-B5C3-A017B4CD0FAE", + "docketEntryUUID": "C483339B-2973-4EB5-A336-A6F3C8643DBB", + "caseInstanceUUID": "1837E6C2-C909-4313-A880-437B4CA3EC20", + "caseNumber": "CL-2022-1026", + "groupName": "Hanson, J.", + "groupOrderBy": 4, + "title": "C.C.C. v. Mobile County Department of Human Resources (Appeal from Mobile Juvenile Court: JU-20-1118.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "8E8B2961-E89B-46DF-BC21-C313DD7FCD2A", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "20FE1DDB-18E8-4F13-BE79-3DF164E69911", + "docketEntryUUID": "EB167E9C-7618-4F5D-BD07-7C096BF5E94B", + "caseInstanceUUID": "4977E29D-0D7A-4221-9806-66EE485360BE", + "caseNumber": "CL-2023-0071", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "C.P. v. Cleburne County Department of Human Resources (Appeal from Cleburne Juvenile Court: JU-21-34.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "A574B7C0-E0AA-4258-A16D-03E809138E01", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "073556F9-B659-4A1A-95B7-FE40DACABE7F", + "docketEntryUUID": "473858B2-F6C5-49E1-9696-F38574F775DF", + "caseInstanceUUID": "60C98749-1788-4C64-B1DA-C535762F5162", + "caseNumber": "CL-2022-1107", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "A.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-20-6.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "C4FFE48D-92B4-49BF-A96B-0ED11BF10DEA", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "25C1FC9B-A01E-42C0-933A-10D6D4D2ABF9", + "docketEntryUUID": "BD663966-0EBD-48B1-900F-807D0017FE11", + "caseInstanceUUID": "83704147-7B2F-4C16-8FA5-72A142B65BFF", + "caseNumber": "CL-2023-0255", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "B.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-71.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "79D0BD2F-603C-4E2D-B58D-4C86DC6EA1BC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2C1AEA65-640B-4B21-BE0C-D9A9A3A7637D", + "docketEntryUUID": "4D65BF7D-384B-4A45-B516-BAACBA049425", + "caseInstanceUUID": "264E0B48-33C0-4645-AA5A-C08048CE63DF", + "caseNumber": "CL-2023-0072", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "S.C. v. Cleburne County Department of Human Resources (Appeal from Cleburne Juvenile Court: JU-21-34.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "40199B0E-1F23-4B36-9377-6196963A9CE6", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1EA427B5-8711-4F20-BC9C-8FB9FDFA2EB4", + "docketEntryUUID": "FF25B9AD-3562-4B72-AD55-BDBCD7109C6C", + "caseInstanceUUID": "605DD65A-BBC2-4F44-A435-7EEB3D0FAAA4", + "caseNumber": "CL-2022-1108", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "A.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-88.02).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "8868A09A-50E7-46A2-A310-59E48A16035F", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "57EA9A2E-023D-4854-9FDA-BDC811140278", + "docketEntryUUID": "F801CC4C-0903-4F9B-80BB-61AAD0AE5B94", + "caseInstanceUUID": "32021031-79D2-41FC-A3D8-B0001253A889", + "caseNumber": "CL-2022-1058", + "groupName": "Hanson, J.", + "groupOrderBy": 4, + "title": "D.P.L. v. Houston County Department of Human Resources (Appeal from Houston Juvenile Court: JU-17-299.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "09BBF9D5-2DB0-4516-B774-86626A50C4E9", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F4884CCC-B999-4DEA-B55F-1662CF3C1E59", + "docketEntryUUID": "A2BDBE90-8F42-4B2C-875C-3761D662BDB2", + "caseInstanceUUID": "79270D48-97D5-45A3-9F4E-35EB2823D728", + "caseNumber": "CL-2023-0068", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Matthew Sherman Phillips v. Delta Capital Resources, LLC (Appeal from St. Clair Circuit Court: CV-22-81).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "DE4DBCFE-0CA0-4210-A591-516871A86FA1", + "documentName": "Order" + } + ] + } + ] + }, + { + "publicationUUID": "17e5cd02-9f57-4435-8516-5debccdb035f", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-09-15", + "publicationName": "Court of Civil Appeals Release List - September 15, 2023", + "publicationNote": "Decisions Announced on Friday, September 15, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-15T14:00:00.000+00:00", + "publicationDate": "2023-09-15T14:30:19.226+00:00", + "publicationItems": [ + { + "publicationItemUUID": "4DAB9225-CFA1-4B93-B62B-F0026DCA5A50", + "docketEntryUUID": "430DC431-E6FF-4F9B-A899-3554AEF3F590", + "caseInstanceUUID": "0720ABDC-7B09-4B3F-AB19-8134DFB12A19", + "caseNumber": "CL-2022-0592", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Kenneth Charles Laurendine v. Joi A'Nell Laurendine (Appeal from Baldwin Circuit Court: DR-18-900224).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "C32ECD14-6350-419E-9AFF-EC10B5204281", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C8FFE6C9-CFD3-4B99-BF3B-9C74485852DD", + "docketEntryUUID": "3536AFF5-A956-415C-BBDF-22C56F5B0C7E", + "caseInstanceUUID": "EFB015C0-8037-4D39-A0ED-3D65AB38C911", + "caseNumber": "CL-2022-0573", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "S.M. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-18-1398.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "A134C440-94A5-474D-A008-990C3074BAF0", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "37A50A4F-0336-4799-AF21-40E98C09981A", + "docketEntryUUID": "D11475ED-1045-4FF9-ABF8-D8B44F820BBA", + "caseInstanceUUID": "91E06B98-CEC0-4449-9F20-63B376A7FB1D", + "caseNumber": "CL-2023-0325", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "Jessie Tompkins v. Wal-Mart Inc. (Appeal from Montgomery Circuit Court: CV-18-900375).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "81BC86EF-9FA1-493E-97E3-6F4B2DCA39B0", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F1491831-0739-42D2-83FC-07AEAFA4F612", + "docketEntryUUID": "945677D2-3998-4890-9269-8E3E64347796", + "caseInstanceUUID": "9DC23055-3436-47C9-8C16-CA399D9ED504", + "caseNumber": "CL-2022-1175", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "J.A.S. v. S.W.S. (Appeal from Jefferson Circuit Court: DR-18-900971.01).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "BC605E17-93B5-41CD-ADC6-77E2C260173C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "DDDFFED5-19D7-4FA0-9C1D-6485B7608AEE", + "docketEntryUUID": "44FBB63B-2526-4D52-A8FE-3699858600BB", + "caseInstanceUUID": "85380D48-1732-4B7C-88EF-EA5E10301DE0", + "caseNumber": "CL-2023-0067", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "M.W. v. K.D.C. (Appeal from Houston Juvenile Court: JU-22-115.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "FCA5609D-0E42-4A4A-A3DC-12BDBE22A403", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "13F8D10B-F683-47EA-A12A-C934564C7E86", + "docketEntryUUID": "D68C6356-275F-425A-86B3-90257A3988C8", + "caseInstanceUUID": "F1AD7925-0E2B-4293-AD52-951744251A34", + "caseNumber": "CL-2022-0624", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Joi A'Nell Laurendine v. Kenneth Charles Laurendine (Appeal from Baldwin Circuit Court: DR-18-900224).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "68040D68-202F-4A7F-BED8-431FE2A10411", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "265FCDAC-CE81-4F90-9CB7-8EB8B27440B4", + "docketEntryUUID": "48131C54-4454-4933-8B9C-491086361629", + "caseInstanceUUID": "EFABD4E0-A4E8-48C3-A2F4-810C5C783C91", + "caseNumber": "CL-2022-0574", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "S.M. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-18-1399.02).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "1CCEDADA-35E9-4C60-9CC7-29EE8FE63140", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "C342AB2A-12E4-4F2D-9FC3-C3821E7DBF2E", + "docketEntryUUID": "6D8B6083-B81F-4C31-B48F-65CB89FD2A4D", + "caseInstanceUUID": "D92B2CD5-AB4E-4ABB-836B-3E6E1BA3C625", + "caseNumber": "CL-2022-0575", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "S.M. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-18-1400.02).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "16F044C9-6C03-41E6-8ECB-7D0207BB2349", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "65150F5C-BECB-43E5-B325-0C23A7B6D006", + "docketEntryUUID": "DF59AB97-87AE-40C5-A3D1-E5B12C77B498", + "caseInstanceUUID": "D830E3AC-3A54-4198-9B1D-781D5411EBEC", + "caseNumber": "CL-2023-0023", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "Auto Funding Group Auto Sales v. Valiant Cross Academy (Appeal from Montgomery Circuit Court: CV-22-900290).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "DB37EB17-354C-4C3D-BC2A-C166412D16FA", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "97C1A0A2-15B4-419C-A45B-760BB33B64D0", + "docketEntryUUID": "7790B095-0705-4B12-918B-48B8BA7DFF5B", + "caseInstanceUUID": "DE3964EE-4C43-4E93-9CEE-012FDA70EE51", + "caseNumber": "CL-2022-1075", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Franklin Dewayne Williams v. Haley Cornelius (Appeal from Shelby Circuit Court: DR-16-900612.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "F7F12E64-74FE-40C4-AE6A-838E76772166", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "FE61A071-9D1E-423C-8169-3082A34E774A", + "docketEntryUUID": "59E00816-E444-4A4D-B315-CA0F9D5098C2", + "caseInstanceUUID": "28137E9F-BE25-4945-A8DC-CA7A6D222B4D", + "caseNumber": "CL-2022-1285", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "R.B. v. Lauderdale County Department of Human Resources (Appeal from Lauderdale Juvenile Court: JU-21-66.02).", + "decision": "Rehearing - Overruled", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "299B3717-B41F-4399-8120-9CC9B6B4820E", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "9B1F27CF-BB2A-451F-BD75-A49F8F036484", + "docketEntryUUID": "AB13F87B-05FF-4BB7-8867-94DBEF5AA747", + "caseInstanceUUID": "A2821E00-A002-438C-A6B0-AE6EBC4198CD", + "caseNumber": "CL-2022-1076", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Franklin Dewayne Williams v. Haley Cornelius (Appeal from Shelby Circuit Court: DR-16-900612.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "A889AD1B-AB04-4088-A6B7-6EDB273C153C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7FB6F23E-818B-47F9-A050-DA9A30939C6E", + "docketEntryUUID": "FCFF57A1-59A2-4515-A28D-C1B60E4ECF97", + "caseInstanceUUID": "2D5D42D3-3754-4D8A-921A-B9E1B8CA03BE", + "caseNumber": "CL-2022-1149", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Haley Cornelius v. Franklin Dewayne Williams (Appeal from Shelby Circuit Court: DR-16-900612.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "CB57668C-D373-4FA1-A008-A4468EA39689", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "5810DD98-5892-4D67-B5A1-E5D0DC6246C8", + "docketEntryUUID": "4D468D0D-65FD-49CB-B80C-AA58CF186522", + "caseInstanceUUID": "08810571-2538-4B50-9B18-3D9C278EFCE0", + "caseNumber": "CL-2022-1286", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "R.B. v. Lauderdale County Department of Human Resources (Appeal from Lauderdale Juvenile Court: JU-19-672.03).", + "decision": "Rehearing - Overruled", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "5CB6744C-7762-4A62-9F54-43FC3C8FEF31", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "F3657093-C91D-4A37-89E9-F7A0D9057C24", + "docketEntryUUID": "E64C73A6-30C1-4FFC-8BDF-09BB95DC58E8", + "caseInstanceUUID": "8A234440-EE27-4AE6-B3DF-D8D6594CA95C", + "caseNumber": "CL-2022-1152", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Haley Cornelius v. Franklin Dewayne Williams (Appeal from Shelby Circuit Court: DR-16-900612.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "9423B2FB-89F6-4CD5-B5BA-1A440EEEAE26", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "7df3c18c-b196-4f89-a5a5-5c0ce477dc43", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-09-08", + "publicationName": "Court of Civil Appeals Release List - September 8, 2023", + "publicationNote": "Decisions Announced on Friday, September 8, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-08T13:45:00.000+00:00", + "publicationDate": "2023-09-08T13:48:15.116+00:00", + "publicationItems": [ + { + "publicationItemUUID": "91F7F8DA-5D1A-4642-8648-6F3C9537965E", + "docketEntryUUID": "37A8AFA1-06DF-456B-BFE5-2314C55EDF6B", + "caseInstanceUUID": "792830FA-8E9C-4FAE-AF72-A2DEA2CFF06E", + "caseNumber": "CL-2023-0153", + "groupName": "Fridy, J.", + "groupOrderBy": 5, + "title": "William John Desmond v. Shawna Lynn Desmond (Appeal from Baldwin Circuit Court: DR-20-901410).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "17ECEAB9-36F6-40BA-9D14-C85A2A78A8DF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "36357F58-F2E4-414C-BD19-52498675DA5C", + "docketEntryUUID": "90C433B2-DE7A-4833-BCD0-8DF967D8B81F", + "caseInstanceUUID": "AEE3ABCC-CC34-47F2-B388-12AECF06C93F", + "caseNumber": "CL-2022-0897", + "groupName": "Hanson, J.", + "groupOrderBy": 4, + "title": "Brittney Lee Ziemba v. Daniel Lee Ziemba (Appeal from Lee Circuit Court: DR-17-900406.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "BF0608C9-2DA3-4B21-8793-5F0C75223F0E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C1EFAFB5-E5EF-4983-8E4B-D18E52BBECBD", + "docketEntryUUID": "D4ACF253-FAFB-458C-BB7B-C35CBAF64C0F", + "caseInstanceUUID": "C0DC542F-3B04-4C32-9A69-A372EFC76BF4", + "caseNumber": "CL-2023-0467", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Ex parte Jonathan David Brown PETITION FOR WRIT OF MANDAMUS (In re: J.G., a minor, by and through his father and next friend, Ronnie Gilbert v. Jonathan David Brown) (Shelby Circuit Court: CV-22-474)", + "decision": "Decision - Petition Granted", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "C7CEB5DE-8718-4B74-AEF3-E20356445554", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F03CD0B9-E889-4CAB-8B68-E0B0BE937E38", + "docketEntryUUID": "F1523292-ADBE-4A1C-84EE-1883BF296046", + "caseInstanceUUID": "2AA1B631-DFBF-4FED-888D-1DA2DE6429E1", + "caseNumber": "2200821", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Anthony Keith, Ronald C. Smith, William T. Gipson, and Latonya J. Gipson v. Lance R. LeFleur, in his official capacity as Director of the Alabama Department of Environmental Management; and Marilyn G. Elliott, in her official capacity as Deputy Director and the Nondiscrimination Coordinator of the Alabama Department of Environmental Management (Appeal from Montgomery Circuit Court: CV-19-900283).", + "decision": "Decision - Application Granted; Opinion Withdrawn; Opinion Substituted; Reversed and Remanded with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "135B90F9-574B-41E5-883C-64BF26EE2835", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F8F6F689-CF6D-43DE-8CFE-7DE2AE472AC2", + "docketEntryUUID": "D964C222-43B8-4F6B-AB12-D2A67A8CA480", + "caseInstanceUUID": "73E0D91E-6305-48E4-87DA-65EABE651FA0", + "caseNumber": "CL-2022-1290", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "Jennifer Lauren Robinson v. Christian Tyler Robinson (Appeal from Etowah Circuit Court: DR-16-900342.03).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "8339F489-B336-46EC-B074-908082607A50", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "5F78129C-9C9F-4045-A196-18E84F31F1C9", + "docketEntryUUID": "2D4A98AA-03B7-487A-AFB7-F8DD8FD730B2", + "caseInstanceUUID": "4AF983D1-7824-4913-B33B-1DD1849E8369", + "caseNumber": "CL-2022-1095", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "D.H. v. Tuscaloosa County Department of Human Resources (Appeal from Tuscaloosa Juvenile Court: JU-19-513.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "A385378C-77E0-45DB-A7EC-566F75C749DF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C097A567-AF00-4CAB-A131-E9CEA5109E73", + "docketEntryUUID": "443688DC-174C-42E0-A26F-B4562E9AADEB", + "caseInstanceUUID": "5518CE57-C8D9-47B7-9E77-B81BDAA489FD", + "caseNumber": "CL-2023-0046", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "D.B. v. Lauderdale County Department of Human Resources (Appeal from Lauderdale Juvenile Court: JU-21-435.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "93BC4FAC-4CD4-4B27-A540-49C6E6C8E7F0", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1E8C1E86-3931-412B-8B6A-0B9960A4E6E9", + "docketEntryUUID": "D54F3832-B9FA-41A0-BD91-012C7003311E", + "caseInstanceUUID": "3975DA77-1E70-4E44-BDF9-A93BF7D0DB9D", + "caseNumber": "CL-2023-0004", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "L.W. v. Tuscaloosa County Department of Human Resources (Appeal from Tuscaloosa Juvenile Court: JU-19-513.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "6179159B-0B9E-478F-B6C5-ED9CE2977062", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "79D8C6D4-3C6B-4574-AF51-5759DC1134A1", + "docketEntryUUID": "787355A5-DE44-4B76-8901-AD8E49D8E272", + "caseInstanceUUID": "66460EF1-2757-4E65-8A95-A1A0582B4728", + "caseNumber": "CL-2022-1143", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Christopher M. Fowler v. Christina M. Fowler (Appeal from Mobile Circuit Court: DR-21-900023).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "A95415DE-B10F-45AA-9030-D2CC61761226", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8E811B52-C190-4067-89CC-7F62FD53C5CD", + "docketEntryUUID": "5656FD58-C14C-48AF-B115-B974A7C21C30", + "caseInstanceUUID": "C86767C9-8408-4B7B-8C9F-57C04DF44631", + "caseNumber": "CL-2022-1207", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Kelley Deloney f/k/a Kelley Buford v. Perry Buford (Appeal from Morgan Circuit Court: DR-21-900219).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "C0B577D1-9218-47AD-A2C1-4ABB2F7F6DE4", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "5C55BF26-1DFB-4A2D-AFE5-D63A57A377BA", + "docketEntryUUID": "5ED8D1F1-2CE5-4316-9C6E-EA5F4136BE08", + "caseInstanceUUID": "D3914036-3BC6-4C36-BAAF-E12E58FA71B2", + "caseNumber": "CL-2022-1281", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "D.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-276.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "8C4EF83E-00CF-4855-9B0A-1383F62F07C8", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6AF7EC69-ECE5-4E5A-9CC2-3B7B3A07CFE3", + "docketEntryUUID": "C79F582F-82ED-4A5F-912E-55BC9AE80C7E", + "caseInstanceUUID": "B9C9D2E8-9DC0-4AF2-AAB9-32E3BA0DDC37", + "caseNumber": "CL-2022-1282", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "D.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-277.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "9C11BFEB-C2B1-4F9F-B3EA-961CC39BAD85", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "CF658B0D-1D9F-4FDD-BB5F-7279AE6A8737", + "docketEntryUUID": "8B970E40-F9CC-4013-83C6-5914CD57F558", + "caseInstanceUUID": "8081617C-797F-442D-8D50-DB7407B19B46", + "caseNumber": "CL-2022-1283", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "M.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-276.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "B875D2E5-0C6D-4AB1-AD64-D5ABC4380C68", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "DFBD8F72-CECA-454D-B07E-E2084DA83812", + "docketEntryUUID": "3B078B64-6EA2-4E4C-A264-54CE76DE86AB", + "caseInstanceUUID": "A0AEAD62-73EA-48AA-B38F-069AF119647F", + "caseNumber": "CL-2022-1284", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "M.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-277.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 8, + "documents": [ + { + "documentLinkUUID": "3C84F34F-4484-4E44-88D2-67AC910CC9FE", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F6F1DC58-EB03-4908-A76C-579863AC1F67", + "docketEntryUUID": "4C7A931A-5F6B-42FA-A25D-5A70A55FBDDD", + "caseInstanceUUID": "B81182AB-BF58-4B1A-AADD-032C58D564AA", + "caseNumber": "CL-2023-0245", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Gregory A. Pulliam et al. v. Vickie Pruitt et al. (Appeal from Tallapoosa Circuit Court: CV-18-900032.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 9, + "documents": [ + { + "documentLinkUUID": "CD524E79-4096-48DF-B476-7283B4313332", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "9558f9d0-e615-482f-a47e-2568ac535052", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-09-01", + "publicationName": "Court of Civil Appeals Release List - September 1, 2023", + "publicationNote": "Decisions Announced on Friday, September 1, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-01T13:43:00.000+00:00", + "publicationDate": "2023-09-01T13:55:59.699+00:00", + "publicationItems": [ + { + "publicationItemUUID": "9CACC1EC-E391-4EE4-9E27-B6FA791344C9", + "docketEntryUUID": "12F9170A-D19B-48DB-B1C7-B05D08D68E12", + "caseInstanceUUID": "24DF0ADD-2A5F-4500-A633-B08C2D8C4821", + "caseNumber": "CL-2022-0764", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "E.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-21-88.01).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "FE2A9B99-389F-4D11-B947-48B2A0617A65", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "ECA9B520-98F1-4130-9623-9DC2BCD1C2BA", + "docketEntryUUID": "C4390DE6-3C6F-428D-A0CF-91F5031791E0", + "caseInstanceUUID": "489CC5F4-E136-4827-9EB8-1FEB4A09E410", + "caseNumber": "CL-2023-0172", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Sonja Yates Upchurch v. Charles David Upchurch (Appeal from Clay Circuit Court: DR-17-900011).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "DAF4D8B1-9E0D-40B7-B74C-B99C971467CA", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "821B97EC-1659-4E66-AF88-8DC641CE3562", + "docketEntryUUID": "BACE0C94-5D44-4155-8B26-843769FC2875", + "caseInstanceUUID": "6041FEFE-0D39-428E-B30E-55E1A4ACDB00", + "caseNumber": "CL-2022-0997", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Danita Habick v. Ted N. Mosley (Appeal from Mobile Circuit Court: DR-19-900179).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "ED3995F5-EB19-427B-A5B7-20C32E53B55B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "24BFE609-C1F1-42C3-98F2-66096A3038D7", + "docketEntryUUID": "899A8D88-B406-4B40-B1B9-4E079895C423", + "caseInstanceUUID": "EBF43C29-F3BF-4EB6-BE6C-6FB47C820715", + "caseNumber": "CL-2022-1178", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "Nathaniel Brooks v. Carla J. Carter, Bertha Douglas, Andra Sledge, and Robert Smith (Appeal from Jefferson Circuit Court: CV-21-902164).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "11DC917A-CA85-493E-A484-11EBCBA2CC2D", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "114712B1-E35D-4A78-900B-0E90DFCD982B", + "docketEntryUUID": "385F9B4E-AC85-4492-896C-DCD823314443", + "caseInstanceUUID": "EE63D60C-B28A-4DED-BD40-7D2DE1FE8A7E", + "caseNumber": "CL-2023-0120", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Jerry K. McCullough v. Windyke Country Club, Inc., d/b/a LawnMan (Appeal from Limestone Circuit Court: CV-22-51).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "97FD18EB-328B-49A6-9E89-36935621A70B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F6CEADC1-70C1-448F-B5D9-F30D3FB219AD", + "docketEntryUUID": "3A65E629-BCE8-4247-A1F6-C97C3A32F061", + "caseInstanceUUID": "F77E6BEE-3B25-41FD-9E91-2447903B751B", + "caseNumber": "CL-2022-1260", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Hargis Jackson v. Sherry Jackson (Appeal from Talladega Circuit Court: DR-16-900184.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "7DCF7167-7232-40BC-9DE0-DBED4B75216E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6133E5FC-F584-4957-9DDB-AFBD89DA5A8C", + "docketEntryUUID": "248B05E2-140D-4DDA-B61B-9D4855E0DEB7", + "caseInstanceUUID": "CDC76930-9D6C-4369-AADE-73FCFD990750", + "caseNumber": "CL-2023-0015", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "J.B. and J.B. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-22-674.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "7D3A80DE-96DA-48C9-9415-758FF4477FC6", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "616F4B08-9729-4798-B9AA-F5CC5C644FE2", + "docketEntryUUID": "A95F1B15-7A71-480C-B2CD-04BA387B5A51", + "caseInstanceUUID": "50C2C364-55EF-4CAD-8258-033333D42B21", + "caseNumber": "CL-2023-0233", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "A.B. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-20-643.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "73469931-3387-49EF-9960-49DECE2ED3C4", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "efbbee36-1b09-4d22-accc-17ef718b4e39", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-08-25", + "publicationName": "Court of Civil Appeals Release List - August 25, 2023", + "publicationNote": "Decisions Announced on Friday, August 25, 2023", + "groupFlag": true, + "scheduledDate": "2023-08-25T14:29:00.000+00:00", + "publicationDate": "2023-08-25T14:44:14.791+00:00", + "publicationItems": [ + { + "publicationItemUUID": "2A718885-37D6-4F4A-946D-19D10BB6A379", + "docketEntryUUID": "09F623F7-D924-450F-A4EB-0407A3AB609D", + "caseInstanceUUID": "87D6FE72-DE0E-4B83-88E1-991390BFF2D2", + "caseNumber": "CL-2023-0002", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Black Warrior Riverkeeper, Inc., and Black Belt Citizens Fighting for Health and Justice v. State of Alabama ex rel. Steve Marshall, Alabama Department of Environmental Management, and Waterworks and Sewer Board of the City of Uniontown (Appeal from Perry Circuit Court: CV-22-900048).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "94E5D0F0-73C8-4BC3-8034-9DC01ACDBF7D", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C56167CD-94E0-4094-B573-97A487515B97", + "docketEntryUUID": "0542965F-772A-4B3E-B6EE-B53068C0ED03", + "caseInstanceUUID": "1C44EF7F-1166-40CF-9FB8-FC1F3DF968B2", + "caseNumber": "CL-2023-0346", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Ex parte Alabama Department of Labor PETITION FOR WRIT OF MANDAMUS (In re: Tahir Sultan v. Fitzgerald Washington, in his official capacity as Secretary of the Alabama Department of Labor) (Houston Circuit Court: CV-23-900094).", + "decision": "Decision - Petition Denied.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "EA2E4841-C2B9-4ED7-A302-CBD515F734F4", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D1099202-313C-4D44-9695-DC45620548C6", + "docketEntryUUID": "1B7A9422-BC68-4419-85A1-4487B28D48BC", + "caseInstanceUUID": "FDC68BCB-3A1F-42FD-A6C0-42BB077B9543", + "caseNumber": "CL-2022-1052", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "B.G. v. Tallapoosa County Department of Human Resources (Appeal from Tallapoosa Juvenile Court: JU-21-24.04).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "DBDA67D6-1F30-4AB3-949E-01671EA1B3C3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "DBDC3E1B-E0FC-4304-9CA7-B5770A6EF9FB", + "docketEntryUUID": "AF443E9A-E258-48B4-942B-FF4297CF3BFE", + "caseInstanceUUID": "CF81F116-7E21-412B-8297-DB3ADCBBCFB9", + "caseNumber": "2180695", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Orleans Place Apartments, LLC v. Cherika Jones (Appeal from Mobile Circuit Court: CV-17-322).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "2A5D1DCA-A072-477E-B404-FDD890161E54", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7A4F54DE-5F52-4D9A-B2D4-CEB2A507BB76", + "docketEntryUUID": "FDFFFB4F-EFFC-47AF-9047-291D7FA572E0", + "caseInstanceUUID": "ABAFF5FD-C92E-4B41-ADF8-B4DB3706BA19", + "caseNumber": "CL-2022-1291", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "R.N.P. v. S.W.W. (Appeal from Baldwin Juvenile Court: CS-19-900034).", + "decision": "Decision - Affirmed In Part; Reversed In Part; And Remanded With Instructions.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "AE082411-5295-4296-AEB1-4009E30AD409", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "DEFB039C-2599-4AE6-933C-C3DB34F9CC42", + "docketEntryUUID": "251D62C6-F0C8-4588-8198-4A87C6AC9910", + "caseInstanceUUID": "EA53F723-84B3-4171-B0CE-E2CD2FB5AA22", + "caseNumber": "CL-2022-1064", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "B.G. v. Tallapoosa County Department of Human Resources (Appeal from Tallapoosa Juvenile Court: JU-21-23.04).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B2A5FC95-A387-48DB-9764-BD7053C2568F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "66B6EFDB-5C57-42A9-921B-CE431CFDDF69", + "docketEntryUUID": "3CB9B587-3F7B-48D9-96D5-48E3CA6D51F4", + "caseInstanceUUID": "BE4C25D1-FD68-4EF5-A4D5-4BA6594AC14D", + "caseNumber": "CL-2023-0012", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Christopher Denton v. Lorie Denton (Appeal from Calhoun Circuit Court: DR-22-900137).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "A47CA7A7-33AA-445C-962E-585BD4AA777F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7B809317-BD18-4A18-911F-4C1BE793DD40", + "docketEntryUUID": "03E9E6E5-CE5C-4CCD-A519-93BADB680D7D", + "caseInstanceUUID": "2990FE2C-D8ED-4050-A0F7-DD30CC19C019", + "caseNumber": "CL-2023-0115", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "J.G. and A.G. v. Baldwin County Department of Human Resources (Appeal from Baldwin Juvenile Court: JU-18-452.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "65AD0A5D-3A7D-4F7D-816F-9EE61D27EA55", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "E59058C7-8915-4002-A17E-609F6C4D026B", + "docketEntryUUID": "F804D22D-1C23-4E6C-A889-9A6ECB87D4A5", + "caseInstanceUUID": "60C98749-1788-4C64-B1DA-C535762F5162", + "caseNumber": "CL-2022-1107", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "A.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-20-6.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "D52CFEFC-09D9-45D8-B5A2-ED2DFCEFBB14", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F1C378E9-07AC-451C-978F-A62C3C1BF26A", + "docketEntryUUID": "A333D52B-833F-4DB1-98BB-D40F2AA8E98D", + "caseInstanceUUID": "3798119E-F9DE-4C43-BA47-D8C0BD81E023", + "caseNumber": "CL-2023-0116", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "J.G. and A.G. v. Baldwin County Department of Human Resources (Appeal from Baldwin Juvenile Court: JU-18-453.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "32F23660-D459-44AA-AE3B-93B7090178C5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F3980159-F333-4645-805D-357F3025996C", + "docketEntryUUID": "92F07697-5F39-4029-9C8F-B8BA95CD7112", + "caseInstanceUUID": "605DD65A-BBC2-4F44-A435-7EEB3D0FAAA4", + "caseNumber": "CL-2022-1108", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "A.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-88.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "A6C6227C-9ED6-4DBF-A34C-C8C82143D8F9", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "3BDD5D29-787B-403C-AAFC-356E51564C02", + "docketEntryUUID": "A6F20ADA-C935-4CDB-B9F6-14781EE007C5", + "caseInstanceUUID": "C50EAE09-E5C2-4B86-8AAC-0DA4CF684F9E", + "caseNumber": "CL-2022-1137", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "J.T. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-20-6.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "53E06E8D-EE5B-4415-AA90-6DC510721438", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "737FBA3D-C6F6-4B01-AAA5-1E334502016C", + "docketEntryUUID": "E01050C1-C775-4660-A758-F518CD7097A6", + "caseInstanceUUID": "FED530A5-FA5C-4BC8-B363-BDA3EBDCBFE8", + "caseNumber": "CL-2022-1138", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "J.T. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-88.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "67F531F0-3625-4F55-8BA3-98FF072A74F6", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7B65F3A3-8083-4A35-8807-FEBE26AC7F5D", + "docketEntryUUID": "5BAEABCC-E442-4338-A304-FF2BDAE68C97", + "caseInstanceUUID": "D6B4E8AF-79CE-4F5F-A8BF-7C40E840CB3E", + "caseNumber": "CL-2023-0316", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "Ex parte E.B. PETITION FOR WRIT OF MANDAMUS (In re: A.B. v. E.B.) (Franklin Circuit Court: CV-21-47).", + "decision": "Decision - Petition Denied.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "36A27F44-B866-45A5-BE87-AC092BAB6C64", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "96de14d9-bd0e-4e31-85c4-30a48400c9a2", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-08-18", + "publicationName": "Court of Civil Appeals Release List - August 18, 2023", + "publicationNote": "Decisions Announced on Friday, August 18, 2023", + "groupFlag": true, + "scheduledDate": "2023-08-18T13:56:00.000+00:00", + "publicationDate": "2023-08-18T14:03:34.252+00:00", + "publicationItems": [ + { + "publicationItemUUID": "C40CBF1B-AC48-4CD1-ADD6-1C71EBCC1E75", + "docketEntryUUID": "9E0E57FD-2297-4A17-AC54-CD86BDBF0707", + "caseInstanceUUID": "8B87966E-2C60-4FC2-B7EF-03FD1C95D991", + "caseNumber": "CL-2022-1142", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "M.H. v. Talladega County Department of Human Resources (Appeal from Talladega Juvenile Court: JU-20-172.05).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5E9F0C2F-CDA6-4DC7-8197-108780E5888A", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "EE51E50D-F4F5-4171-A5BF-6D43939B3C70", + "docketEntryUUID": "768FB1F5-881D-43C8-A4BB-276FF04ED612", + "caseInstanceUUID": "9BE946F4-3C8C-4C29-BD19-716E04DB3108", + "caseNumber": "CL-2022-0906", + "groupName": "Hanson, J.", + "groupOrderBy": 2, + "title": "Shari L. Needham v. Michael S. Beckenstein, M.D., LLC (Appeal from Jefferson Circuit Court: CV-19-903785).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "3FAD675A-C97C-44F6-90F2-50190C1F01FC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "DD9729B2-31B8-43C0-A41F-E3341C8B7339", + "docketEntryUUID": "8AE03C01-078D-4485-863C-6B2A6FEB469A", + "caseInstanceUUID": "A52F392D-F60C-4DCA-B68D-9D63798D7EB9", + "caseNumber": "CL-2022-1125", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Ex parte C.R. and L.S. PETITION FOR WRIT OF MANDAMUS (In re: V.R. and J.R. v. C.R. and L.S.) (Madison Juvenile Court: JU-22-754.01).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5DF3509B-9AEA-495F-8DFC-9C9989EBF4A6", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "5488BDA3-D04F-4364-BB0A-107CB132A422", + "docketEntryUUID": "3775B232-9E3F-4206-8FD3-B6373EBE8C6E", + "caseInstanceUUID": "40FD7453-434C-4E77-92F9-95162DC2BE11", + "caseNumber": "CL-2022-1146", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "C.N.W. v. K.H.B. and D.B. (Appeal from Elmore Circuit Court: JU-20-108.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "8E2A88C6-1F43-4B66-97BC-06C1340FE827", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "ECF63D3B-DD00-4A0F-808E-3D500CDECD23", + "docketEntryUUID": "6001E4FA-AD3E-46F2-9FB1-CB978AE3458B", + "caseInstanceUUID": "D89215DF-422D-4E5C-99B2-A3D7819682AC", + "caseNumber": "CL-2023-0011", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Brandon Rainey v. Aimee Turner Rainey (Appeal from Jefferson Circuit Court: DR-22-900179).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "14FD748F-9836-4214-9E76-056A81D62837", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F34F03B3-632E-4C65-8353-447F9C9B9CE2", + "docketEntryUUID": "2E179EDA-E638-41EE-A4BD-199FAD09FBB4", + "caseInstanceUUID": "3D7DF17F-BEC4-4726-A5F7-2724E744211B", + "caseNumber": "CL-2022-1126", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Ex parte C.R. PETITION FOR WRIT OF MANDAMUS (In re: V.R. and J.R. v. C.R. and L.S.) (Madison Juvenile Court: JU-22-755.01).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "15BEC8F1-DF9C-496D-8BF7-D72BF4E23FAF", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "699823E8-2389-47AF-B80B-99F16EBED2E0", + "docketEntryUUID": "C1AE0523-0C91-4FBC-A1CD-DEFC036777C8", + "caseInstanceUUID": "C7D52D1E-DF87-42A5-9ACD-969D7275AF11", + "caseNumber": "CL-2022-1162", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "M.S. v. T.S. (Appeal from Baldwin Circuit Court: DR-20-900103.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "31BA3046-642C-4A65-BC08-B425CFFF443E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2F980E2C-C822-44DA-BA18-9E9EDB5F3267", + "docketEntryUUID": "A6801B6C-287D-4CB9-BE8D-1E462EA622E8", + "caseInstanceUUID": "1E8EA594-5840-4AF3-BF9C-88FD8F8221B4", + "caseNumber": "CL-2022-1163", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "M.S. v. N.B. and T.S. (Appeal from Baldwin Juvenile Court: JU-21-499.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "F6DF0B51-7D03-42F3-B42B-D98802033BE6", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F50E3C76-1D87-4B7C-82A3-E798CCFA238B", + "docketEntryUUID": "00B60AA8-BEC9-48A7-B280-D311FF643816", + "caseInstanceUUID": "5CAC49DB-557A-49E6-A5F0-4B7BE0C3EB46", + "caseNumber": "CL-2022-1127", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Ex parte C.R. and L.S. PETITION FOR WRIT OF MANDAMUS (In re: V.R. and J.R. v. C.R. and L.S.) (Madison Juvenile Court: JU-22-756.01).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "AB1C2C28-D827-4FF9-AA3F-0F4E482F8D04", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "B39E3778-62A3-4787-910B-C4556DD229AB", + "docketEntryUUID": "AD266859-08DA-47F9-8943-92778F99B358", + "caseInstanceUUID": "343C54AD-97A6-44D5-A8EE-63866FD60D5C", + "caseNumber": "CL-2023-0079", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Susan Thomas v. Eugene Manora (Appeal from Montgomery Circuit Court: DR-19-900526).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "30015516-02B8-43D5-B79D-76B187B8F384", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "21469220-A36E-4344-B80D-4BD3B9E304C1", + "docketEntryUUID": "42F25AFF-A17D-4B76-A2CC-D35DAE3A679D", + "caseInstanceUUID": "D628DDDD-B811-4AC9-8031-833988F31864", + "caseNumber": "CL-2022-1164", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "M.S. v. N.B. and T.S. (Appeal from Baldwin Juvenile Court: JU-21-500.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "3ED1533B-C419-476B-ACF5-1F76AB01E8BE", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "B2C946E6-38E2-4CEF-B085-62EA2E50B7EE", + "docketEntryUUID": "5C814263-E452-4785-BAA2-C4A16D408542", + "caseInstanceUUID": "67E23A81-CD6C-47BD-9900-CCF3D1FB5F5B", + "caseNumber": "CL-2022-1166", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "M.S. v. N.B. and T.S. (Appeal from Baldwin Juvenile Court: JU-21-501.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "E58733B8-53AA-4932-8BD1-93FF66F99704", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "27f3164d-02c7-4bbd-9947-613069019f41", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-08-11", + "publicationName": "Court of Civil Appeals Release List - August 11, 2023", + "publicationNote": "Decisions Announced on Friday, August 11, 2023", + "groupFlag": true, + "scheduledDate": "2023-08-11T14:12:00.000+00:00", + "publicationDate": "2023-08-11T14:26:29.364+00:00", + "publicationItems": [ + { + "publicationItemUUID": "5E5CA079-AB4A-44F9-93DA-A9F624385181", + "docketEntryUUID": "C25E46D8-B578-41B6-BA2F-E20609696B07", + "caseInstanceUUID": "DC6F4A97-7F85-4F4F-8EF6-9C38543918CB", + "caseNumber": "CL-2022-1070", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "D.M. and A.M. v. F.L.C. (Jefferson Juvenile Court: JU-18-1934.03).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "68CCEE65-FC36-49C6-80C8-D88CE754A417", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "212B22D0-19AF-4DAB-BA8D-F8255315D753", + "docketEntryUUID": "48E0A2C9-7A4E-42B9-BCFA-7EB69E9AA083", + "caseInstanceUUID": "ACBF22D4-0ACF-425D-AC4C-B4918AA8BC49", + "caseNumber": "CL-2022-1194", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "C.P. v. A.F. (Appeal from Fayette Juvenile Court: JU-21-54.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "864ED0E0-1791-488A-9472-9FF1CB71C96B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "BE6D5C86-CCFC-4A4E-B9E8-D34556A7E141", + "docketEntryUUID": "6613ECF1-DDFE-4E70-8F01-34052F98B7EA", + "caseInstanceUUID": "D6A86BE2-98CF-439B-8F0D-1ED564CD421B", + "caseNumber": "CL-2022-1030", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "M.F.H. v. Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-20-19.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "EDDF6857-C7E2-4407-A797-381AED93467F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D5E9FF8F-2E3F-4E77-BB39-8A85A4D06DA1", + "docketEntryUUID": "E3ECFCEA-8D8C-44F2-88FC-B1F00661A08B", + "caseInstanceUUID": "EEE7BFE3-EF51-4CF0-B828-5D7B5EE15A84", + "caseNumber": "CL-2022-1171", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "N.L. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-18.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "6F7E8A51-89D2-4995-8AF3-8CB849065184", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "DF0AED6C-50B2-4F98-8CA7-97B90975E536", + "docketEntryUUID": "D4213FFA-40BB-41EE-97AF-61A65256F783", + "caseInstanceUUID": "78F18E6A-6AA2-45B5-8F53-1CC4E66099DF", + "caseNumber": "CL-2022-0697", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "Teachers' Retirement System of Alabama and Employees' Retirement System of Alabama v. Baldwin County Planning and Zoning Department; Baldwin County Board of Adjustment No. 1; and Point Clear Property Owners Association, Inc. (Appeal from Baldwin Circuit Court: CV-21-900858)", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "DC76889D-D1C0-4FA8-8A35-15DAF00CB904", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "26E56980-09E3-4DB9-9CE2-0244DCF5D722", + "docketEntryUUID": "26F82ED1-9CB7-4561-9E94-EE250E0229A9", + "caseInstanceUUID": "D6FD46E5-2F12-431E-803B-DCCB542672CA", + "caseNumber": "CL-2023-0438", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Ex parte M.K.G. PETITION FOR WRIT OF MANDAMUS (In re: M.K.G. v. J.K.J.) (Lauderdale Juvenile Court: CS-18-900113.01).", + "decision": "Decision - Petition Granted", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "B281A8A0-3139-485D-B7E0-E9FCADB87F78", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1B098AD2-9ECF-4F91-B45B-DDC4C9DB3458", + "docketEntryUUID": "01F6EBEB-4453-4ED0-AACE-B0BAC4911660", + "caseInstanceUUID": "DF6AB837-DE17-4769-A000-75C164180498", + "caseNumber": "CL-2022-1031", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "M.F.H. v. Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-20-20.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "0B84A3DA-7CDC-4AC9-AC07-59CE16CE0664", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "09758BE1-4546-45AD-BD4D-99D766CD003D", + "docketEntryUUID": "6895139A-1457-4156-9CD3-642F78B06CB4", + "caseInstanceUUID": "6D3CA38B-7C0B-4568-9ADD-EBB7DDDC6664", + "caseNumber": "CL-2022-1195", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "C.P. v. A.F. (Appeal from Fayette Juvenile Court: JU-21-55.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "E04DFB83-3D38-44B3-BC43-BB73FD6A6CA3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "25133705-92A6-43B0-91EA-230D86D685EF", + "docketEntryUUID": "06F08E49-BED1-4354-84C2-A44CD9BCCBC5", + "caseInstanceUUID": "C367484C-63CD-4B3A-B45E-853025C0FBC8", + "caseNumber": "CL-2022-1244", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "B.B. v. J.P. (Appeal from DeKalb Juvenile Court: JU-20-255.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "8CE95E52-4F36-4F01-8064-2143988FDD48", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "38FBD92D-E633-4F36-9456-1FE5FCD71E2B", + "docketEntryUUID": "40F4BEDC-CE3F-409C-A48E-965FE2871601", + "caseInstanceUUID": "A7916A73-716D-419A-B93D-BC94C6313312", + "caseNumber": "CL-2022-1196", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "C.P. v. A.F. (Appeal from Fayette Juvenile Court: JU-21-56.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "5BA818FC-DD3E-4DA4-843F-B04A80E77F08", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6B99E8F0-D0B3-4404-8A55-C08BAFB16A6E", + "docketEntryUUID": "A9382F1C-4FB7-4C40-B6AA-BB2D3639E767", + "caseInstanceUUID": "9620146B-FC24-472C-9A4D-D82034FFFBC6", + "caseNumber": "CL-2022-1245", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "B.B. v. J.P. (Appeal from DeKalb Juvenile Court: JU-20-256.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "586D6280-4197-45D7-B79E-6DBE798AEDCB", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "0AC81AB4-BDDB-4543-903B-2E438DBEE694", + "docketEntryUUID": "85A4D130-0A63-424C-8311-5CA9D35D804B", + "caseInstanceUUID": "E3ED8803-ED07-4C49-BB00-9BAFF0071C3D", + "caseNumber": "CL-2022-1032", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "M.F.H. v. Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-20-21.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "8AD91481-A109-4506-B48F-D088B481A734", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "5764b1ce-f6d6-438a-8c98-9a229a8437c9", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-08-04", + "publicationName": "Court of Civil Appeals Release List - August 4, 2023", + "publicationNote": "Decisions Announced on Friday, August 4, 2023", + "groupFlag": true, + "scheduledDate": "2023-08-04T14:00:00.000+00:00", + "publicationDate": "2023-08-04T13:56:32.559+00:00", + "publicationItems": [ + { + "publicationItemUUID": "5BBC32CB-76E5-4289-9CA2-810D1C34A285", + "docketEntryUUID": "DE9E3D0C-DACB-4B4C-9722-84DF97CD5D34", + "caseInstanceUUID": "617093FD-8FF4-44B3-A377-FF6FEF3AB142", + "caseNumber": "CL-2022-0939", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "J.A., Sr. v. Escambia County Department of Human Resources (Appeal from Escambia Juvenile Court: JU-20-32.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "B06694C4-9D8C-4920-9309-FB9069AD2700", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D98C0F01-51D4-4DC8-A97F-10C105697FAB", + "docketEntryUUID": "68327611-FAA5-42B6-B2BB-1BBF8AC4C37C", + "caseInstanceUUID": "BC5C67B8-6464-4625-914C-8A4EE2D70EE6", + "caseNumber": "CL-2022-0628", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "Clint Jamison Novack v. Karen Leigh Novack (Appeal from Baldwin Circuit Court: DR-13-900960.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "E6BD6E4F-F1C9-497A-9451-521999C37085", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "171F8CE0-2AD3-402C-85D7-69DA69F49FC2", + "docketEntryUUID": "FA4BACB8-B894-414C-BB91-ECDCBDFD7A8F", + "caseInstanceUUID": "F20E0528-B52C-4898-9055-AAA35B1FF29B", + "caseNumber": "CL-2023-0144", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "U.S. Auto Purchasing Center, LLC v. Tashay S. Hives (Appeal from Mobile Circuit Court: CV-22-901983).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "8F5D0251-FF59-445D-9E22-EEECEC09F341", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "81D4AD74-3DF0-4DB5-AA6E-AF9BF734E3B0", + "docketEntryUUID": "5025DC40-E697-4F85-9300-A11505EA066D", + "caseInstanceUUID": "395CF049-C5DE-40F1-8F21-3D12DB4C84B1", + "caseNumber": "2210396", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "H.T. v. A.C. and Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-20-542.01).", + "decision": "Decision - Application Overruled; Opinion Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "50B2B11C-3980-48A6-BB4D-628A89D63D75", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "E2D6EC06-FB18-4A71-9E0D-DB5A791F8103", + "docketEntryUUID": "AFA7A3E1-77C6-44B5-955E-1608FB4AEFE9", + "caseInstanceUUID": "FB2E5FBB-4A08-4E72-8B57-D493CA064F83", + "caseNumber": "2210397", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "H.T. v. A.C. and Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-20-543.01).", + "decision": "Decision - Application Overruled; Opinion Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "5DB5C128-54E8-4852-BA25-D5BDDADD9CC5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "692FF0B5-4636-4F1E-BF2C-36FDD6C879A1", + "docketEntryUUID": "C2A6F305-A8A7-429D-B0A9-474E0D5983F0", + "caseInstanceUUID": "7D168353-8C65-453D-A5F4-4A5281855CE5", + "caseNumber": "CL-2023-0061", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "C.W. v. Elmore County Department of Human Resources and A.T. (Appeal from Elmore Juvenile Court: JU-21-93.07).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "AC8714DA-C954-4939-8EE6-9E6A0A5FCC5D", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "CA12978D-C904-41F8-A442-B52DD3ED73CF", + "docketEntryUUID": "FAEB6EE6-01CD-4013-95AA-5EDB2E2E0795", + "caseInstanceUUID": "605EF293-9A96-4315-A755-58D304DF1AE4", + "caseNumber": "CL-2022-1242", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Stacey Lynn Kitchens v. William Bradford Kitchens (Appeal from Montgomery Circuit Court: DR-09-260.06).", + "decision": "Decision - Appeal Dismissed", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "D906714D-6C31-4549-8099-BC18521485CA", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7ED5A232-ADCD-4989-8A8A-618F43838A8A", + "docketEntryUUID": "AA25A19F-4F75-4FB4-9963-7A6FA809874E", + "caseInstanceUUID": "F8ECB012-C5E9-4E1C-B22B-873A05F5E6DC", + "caseNumber": "2210398", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "H.T. v. G.T., J.T., and Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-20-546.01).", + "decision": "Decision - On Rehearing Ex Mero Motu: Opinion Withdrawn; Opinion Substituted; Affirmed.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "F87E2892-F30E-4BC7-9A69-9EA520AA09AB", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "AEB2BA71-3F6A-439D-A52D-B5F5522FD933", + "docketEntryUUID": "B18B4470-6633-4A39-83C9-281986348FF5", + "caseInstanceUUID": "81B809B9-C175-4612-946D-DE96D711DFE0", + "caseNumber": "CL-2023-0065", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Michael W. Gardner v. Marilyn U. Gardner (Appeal from Calhoun Circuit Court: DR-20-900036).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "550A56F5-E3F2-4BC0-BB84-ACA762FE6462", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8DA93137-2ED6-4D0D-853F-2AAA92ECCB05", + "docketEntryUUID": "64540558-8B5B-46F2-8317-86EC0A5B5A6F", + "caseInstanceUUID": "178DBA2B-51FA-4842-BAB2-40CA0E5AC228", + "caseNumber": "CL-2022-0831", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "S.J. v. Henry County Department of Human Resources (Appeal from Henry Juvenile Court: JU-19-81.02).", + "decision": "Rehearing - Overruled", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "60F9BBD2-29D4-4B01-A6EE-3BC4454F71E8", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "b4522a23-739c-431f-b9ed-4eaf7b46c7be", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-07-28", + "publicationName": "Court of Civil Appeals Release List - July 28, 2023", + "publicationNote": "Decisions Announced on Friday, July 28, 2023", + "groupFlag": true, + "scheduledDate": "2023-07-28T13:49:00.000+00:00", + "publicationDate": "2023-07-28T14:12:49.007+00:00", + "publicationItems": [ + { + "publicationItemUUID": "4842A149-7BF5-458E-A1C4-61F6AFD9E919", + "docketEntryUUID": "1C864832-A395-4C17-ABCF-B3D37DE8812A", + "caseInstanceUUID": "33F590A2-1BB7-4DD3-983B-B8AD79584CF8", + "caseNumber": "CL-2022-1130", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "Matthew Randall Cherry v. Brittany Michelle Cherry (Appeal from Jefferson Circuit Court: DR-21-900136).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "3BBE223E-142E-4505-BCC2-E7E0D6088A60", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "59AEE0D9-206F-499B-B7F3-A11C462E5D22", + "docketEntryUUID": "CE854CE3-43AC-4FB7-8EAF-78DE9BACE6F9", + "caseInstanceUUID": "A8513982-54E8-4291-8E02-8A2B0612BF74", + "caseNumber": "CL-2022-1235", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Mia Simone Curtis v. Barry G. Curtis (Appeal from Talladega Circuit Court: DR-11-202.03).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "084549C0-3FB2-464D-94D5-F3000DD6B8AD", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "E1A7CA6C-B1BC-4047-9066-30EBE91A6737", + "docketEntryUUID": "E29BB897-CF11-4266-85A3-12281A7CF228", + "caseInstanceUUID": "3266DC74-85EF-4EA3-B60F-CA918F5349DF", + "caseNumber": "CL-2022-1129", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Brandon Kelly Brown v. Jennifer Clark Brown (Appeal from Tuscaloosa Circuit Court: DR-21-900556).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "B656DA55-16AD-4824-9DE0-CCD725F50125", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8CD59171-02B1-4DA3-BDA5-6F787A228900", + "docketEntryUUID": "C25EFB5A-1F3F-4E0F-A061-699799D90AD9", + "caseInstanceUUID": "5FB52EE4-5FCB-4016-86F8-DEF2ED04FB6D", + "caseNumber": "CL-2022-0848", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Jim Barber et al. v. Jeffery K. Landrum (Appeal from Randolph Circuit Court: CV-17-900045).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "908BF1F8-017B-4740-B37B-163162901BD5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "90890ADB-FA31-41A0-805A-7CF7CACF954F", + "docketEntryUUID": "E9B9B031-026B-4685-B9CF-C16C7D2BFBBD", + "caseInstanceUUID": "EE8B32B0-E11F-4416-B649-E62852C17600", + "caseNumber": "CL-2022-1010", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "L.B. v. V.T.W. (Appeal from Lee Juvenile Court: CS-11-431.03).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5EEF3E8E-32C9-49FD-B9D3-4C5644BA0741", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "E674006E-3E61-4C77-B640-9B4DFE1D2D19", + "docketEntryUUID": "31A752A2-F51B-4157-B340-BA275DAF764F", + "caseInstanceUUID": "85BBD8EF-2FCA-4F1D-9827-9C14F22ABA1D", + "caseNumber": "CL-2022-1141", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Alonzo Romero Hewitt v. Marketha Murrell Hewitt (Appeal from Madison Circuit Court: DR-20-900303).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "F077B151-CADD-4031-B0B0-02C249319110", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C60CC1CC-BB8E-463F-A27B-74FEC32F8E42", + "docketEntryUUID": "A4FD2591-589C-45CC-B2CD-8FEF4A23D959", + "caseInstanceUUID": "BFE27544-A59C-4E12-BEB3-FE7F9D509688", + "caseNumber": "CL-2022-1161", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "N.L.C. v. Bibb County Department of Human Resources (Appeal from Bibb Juvenile Court: JU-21-100.02).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "9293BE62-B0B0-4C7A-A128-D2F29E142A12", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "4FCE43D9-36AA-4BEB-8F80-97DE781636E7", + "docketEntryUUID": "80F6FDA5-DEAA-4DF4-A260-A36F6E82A2E4", + "caseInstanceUUID": "8E8F3760-A5DA-4341-9B4F-DF4887298094", + "caseNumber": "CL-2022-1233", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "M.L.H. v. E.E.H. and G.H. (Appeal from DeKalb Juvenile Court: JU-22-251.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "0E7371CD-0F1E-403E-A7A5-64ECA1C7EF07", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C1CBE8E6-7151-463E-A093-2C4E59A3FD5D", + "docketEntryUUID": "6221B702-687C-4071-82F1-74F18963CC60", + "caseInstanceUUID": "F0BCCB44-DEAC-4161-8844-AAF246BDF382", + "caseNumber": "CL-2022-0854", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Randolph County Commission v. Jeffery K. Landrum (Appeal from Randolph Circuit Court: CV-17-900045).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B593E9F7-ED3E-4704-A065-60CC20E72560", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "FF6BDDED-C3A1-4CB6-A6B4-2AD068C2327A", + "docketEntryUUID": "9DA05ED3-C01C-4663-BD90-A385DA1AA59C", + "caseInstanceUUID": "F3087DDC-AC9E-4293-B641-11567EDFBBE2", + "caseNumber": "CL-2022-1267", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "Ina Faye Knight v. Jackson County et al. (Appeal from Jackson Circuit Court: CV-21-900103.).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "A998E61C-8C08-4DF7-8B87-61FAC116F927", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "EC0D2AFF-615E-4AE0-AF00-C86E4808621D", + "docketEntryUUID": "52632F7A-C606-4A69-94EB-A6383D35D67B", + "caseInstanceUUID": "DEE9E551-39FA-4D22-A3C1-3C4C6D8AA86E", + "caseNumber": "CL-2022-1199", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Stefanie H. Edwards v. Brian H. Edwards (Appeal from Mobile Circuit Court: DR-22-900467).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "B77605BE-3308-4F02-AACB-7FF00C5763EF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6A4BF8B8-8EAE-477A-91DF-1B3884BABDCF", + "docketEntryUUID": "9892DBFC-89D9-4AC7-81C5-3567CB7717D1", + "caseInstanceUUID": "C960DA48-536E-45DA-8EEC-676204F7E6AB", + "caseNumber": "CL-2022-1238", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "J.L.R. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-18-286.04).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "7815A1FF-4C2C-4CB2-9B0A-915790836400", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "68028E7A-5935-41EE-8C4D-F22D07E036C4", + "docketEntryUUID": "2CBFAB91-D9C5-4D87-9205-01E18CD8D1F1", + "caseInstanceUUID": "9749C36D-010E-4D86-A301-6FD438B561D3", + "caseNumber": "CL-2022-1271", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "A.D. v. Chambers County Department of Human Resources (Appeal from Chambers Juvenile Court: JU-20-72.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "666BF367-5FBC-416B-B537-5A06043CEB10", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "613E9BBB-94A1-4406-8B87-3CC7345F3697", + "docketEntryUUID": "6C29852C-BB86-4C16-9F59-055264D978AC", + "caseInstanceUUID": "28137E9F-BE25-4945-A8DC-CA7A6D222B4D", + "caseNumber": "CL-2022-1285", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "R.B. v. Lauderdale County Department of Human Resources (Appeal from Lauderdale Juvenile Court: JU-21-66.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "518BA53F-1799-4A7C-96CE-5274A20D104E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F5369466-AFD0-42B0-8AC6-1A994602C1B4", + "docketEntryUUID": "DF97B48D-95CE-4ED7-9151-CA3C776DE08F", + "caseInstanceUUID": "08810571-2538-4B50-9B18-3D9C278EFCE0", + "caseNumber": "CL-2022-1286", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "R.B. v. Lauderdale County Department of Human Resources (Appeal from Lauderdale Juvenile Court: JU-19-672.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "11A943BB-45F3-4165-9088-D87214BA98BE", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "3C57665E-5225-42EE-8A69-9A0202AE0522", + "docketEntryUUID": "DC00ED54-DD87-41B9-81BF-19DB08D04B99", + "caseInstanceUUID": "DC1FECEC-8D9F-434D-BFB8-A47AB23BDF76", + "caseNumber": "CL-2022-1272", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "A.D. v. Chambers County Department of Human Resources (Appeal from Chambers Juvenile Court: JU-20-73.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "9CDBB87B-92E5-48BC-BB9F-DC218E5A5AC4", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "783FA695-3CA8-4538-B99C-21D119078433", + "docketEntryUUID": "A91B8338-6A27-41DB-8C83-BDDB6A664D05", + "caseInstanceUUID": "79270D48-97D5-45A3-9F4E-35EB2823D728", + "caseNumber": "CL-2023-0068", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "Matthew Sherman Phillips v. Delta Capital Resources, LLC (Appeal from St. Clair Circuit Court: CV-22-81).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "1B55BF5E-1122-46D2-9F58-50C52F78ED08", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "45A65DA7-A8A3-4CD2-8DE0-CB3B776580FF", + "docketEntryUUID": "F0DF82D9-F783-4842-9387-0C2C5709B64F", + "caseInstanceUUID": "AD6C7E4B-C322-4FAC-B41B-BB6B73A2C57F", + "caseNumber": "CL-2022-1273", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "A.D. v. Chambers County Department of Human Resources (Appeal from Chambers Juvenile Court: JU-20-74.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "73B0891B-A248-4B9A-B8A0-AA0862385040", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2C0B9587-0219-43E7-BA48-E77AB8B18A57", + "docketEntryUUID": "95F5C47E-1FDE-48D3-BDB2-4862C530AAE7", + "caseInstanceUUID": "2588F450-2E3D-4E62-BB30-4E9B9A8BCDC0", + "caseNumber": "CL-2022-1274", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "A.D. v. Chambers County Department of Human Resources (Appeal from Chambers Juvenile Court: JU-20-75.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "A3172DAC-98EE-4EB5-A36D-A00AF6AAC047", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "A5B04EAD-8328-46E4-AE27-1C472A68DD50", + "docketEntryUUID": "2DBD936F-4AC7-447A-A648-CF4085FBCF71", + "caseInstanceUUID": "9AB6C2D6-55E3-4921-A6AD-83B0456049D2", + "caseNumber": "CL-2023-0083", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "R.W. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-21-710.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 8, + "documents": [ + { + "documentLinkUUID": "AD63BEF8-B99B-410F-A71D-95399FDC1DBA", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "CFEF1B88-F666-42F8-84D7-6C4712069A58", + "docketEntryUUID": "96B2D670-A7C9-4525-A204-B3E708A4A42B", + "caseInstanceUUID": "FB322480-F1CE-4989-86CE-88323F015A2B", + "caseNumber": "CL-2023-0084", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "R.W. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-21-434.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 9, + "documents": [ + { + "documentLinkUUID": "5944FC82-BAA8-4A3F-9374-04ABBED863B3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C72B6E1D-2F45-4007-973B-C17123101980", + "docketEntryUUID": "323C52C9-7365-4E8B-8B86-5CADAF29C8FA", + "caseInstanceUUID": "80122E66-1F7D-4FE8-8368-91C9B44E001A", + "caseNumber": "CL-2023-0085", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Christopher Holden v. Altrise Harris Holden (Appeal from Madison Circuit Court: DR-10-513.02).", + "decision": "Decision - Affirmed.", + "orderBy": 10, + "documents": [ + { + "documentLinkUUID": "955D936D-2468-430B-99F2-6F4EE5A40A48", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "207b8aa3-c853-4f8f-b980-1c5847474e89", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-07-21", + "publicationName": "Court of Civil Appeals Release List - July 21, 2023", + "publicationNote": "Decisions Announced on Friday, July 21, 2023", + "groupFlag": true, + "scheduledDate": "2023-07-21T14:00:00.000+00:00", + "publicationDate": "2023-07-21T13:49:08.387+00:00", + "publicationItems": [ + { + "publicationItemUUID": "0B879ED3-8833-43AE-9EEE-C85C32866648", + "docketEntryUUID": "08CA1248-4B67-4A1F-8AD6-F011182DF524", + "caseInstanceUUID": "9066D638-4CEF-411D-AA0D-BABC896F5200", + "caseNumber": "CL-2022-1051", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "J.L. v. S.L. and T.L. (Appeal from Cleburne Juvenile Court: JU-21-46.01).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "2D8E351C-BCFF-488E-9DD5-FE4AFFF2E08F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "0712B13F-1164-47BC-83C3-E6DDB2762A32", + "docketEntryUUID": "6D964AC0-DCBF-4CA1-B142-EF3555F9E5D1", + "caseInstanceUUID": "FB835A0E-5560-4EE8-B4C8-D51852460FCB", + "caseNumber": "CL-2022-1061", + "groupName": "Fridy, J.", + "groupOrderBy": 5, + "title": "Summer Lee Ann O'Connor v. Joey Lynn O'Connor (Appeal from DeKalb Circuit Court: DR-17-900216.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "2CA8870F-2738-472B-8A48-996EA5102AE3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "95D2ECA1-34F1-4427-8854-34AFAE6770A9", + "docketEntryUUID": "CA82DB38-9A65-49F4-89FA-697B7DC5DD08", + "caseInstanceUUID": "D2ADB803-F4E5-4B96-8000-A2060A5701A0", + "caseNumber": "CL-2022-0855", + "groupName": "Hanson, J.", + "groupOrderBy": 4, + "title": "Melanie Kym Chapman v. Gregory Keith Chapman (Appeal from Jackson Circuit Court: DR-20-900146).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "31FF23FA-5EF4-4894-AF36-139ACBEAF2EE", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "A4868C10-126D-4309-BA82-46DA3FBB3BCF", + "docketEntryUUID": "5B653384-BA2A-4B53-B4CB-4FEADC52D26C", + "caseInstanceUUID": "8BB45759-83E2-4695-9765-69E3A6E25E58", + "caseNumber": "CL-2022-1262", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "B.M. v. Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-21-122.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "7AFC36B2-A024-4455-8391-E1949FC65D70", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "B913E82A-007C-4739-9746-AA6D53A4890F", + "docketEntryUUID": "DC7550A1-35AF-431D-87E9-3EF44953BEE5", + "caseInstanceUUID": "D98826A7-DA3F-4BFF-97A9-3D89F295BB1A", + "caseNumber": "CL-2023-0087", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Brenda Hayes v. Southern Lease Management Group, LLC (Appeal from Mobile Circuit Court: CV-22-53).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "382833CF-C1BF-406D-9120-EE413E19E9C0", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1AD602DD-CA6F-4427-A898-DAE158895C79", + "docketEntryUUID": "F3FCAE4B-D554-4421-A74B-381213BBF873", + "caseInstanceUUID": "55F3A694-CE88-42FA-9BAD-75D1B416E4DE", + "caseNumber": "CL-2022-1100", + "groupName": "Fridy, J.", + "groupOrderBy": 5, + "title": "Summer Lee Ann O'Connor v. Joey Lynn O'Connor (Appeal from DeKalb Circuit Court: DR-17-900216.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "A129549B-D48B-4EF2-A00F-4105FCD66B65", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "49494BC4-C1A0-49FB-A956-EE0D8525A2BA", + "docketEntryUUID": "26CB5A50-BB20-46D5-BE26-7EBB8C8F57FE", + "caseInstanceUUID": "E836E3FC-EB05-46B2-8EBA-671E07E88BCF", + "caseNumber": "CL-2022-1263", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "B.M. v. Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-21-274.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "68CE18E5-7250-44EF-A606-A3357647A12C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "3B897364-184B-45BF-AD2C-80FB4699C89E", + "docketEntryUUID": "94547E64-37C3-47CB-B165-DAA547E72C81", + "caseInstanceUUID": "1A4E54BA-505A-4DE9-B2E2-3F8157BE55B4", + "caseNumber": "CL-2023-0094", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "C.G. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-70.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "443ED773-F074-4FB7-BCDC-4EE1158C3D5F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1D3461F3-7084-41DC-B4BA-7189309B0DED", + "docketEntryUUID": "0D1A2DAB-DDB1-4708-B1D3-000378F83BA3", + "caseInstanceUUID": "52E1D601-BBD1-4F41-8B23-2FFD074F35E0", + "caseNumber": "CL-2023-0154", + "groupName": "Fridy, J.", + "groupOrderBy": 5, + "title": "A.M.G.J. v. K.N.S. (Appeal from Jefferson Juvenile Court: JU-21-936.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "72BB1960-CF79-4462-B189-17986E4A25E8", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "6f84e497-4010-47ec-8e57-95a649bc772c", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-07-14", + "publicationName": "Court of Civil Appeals Release List - July 14, 2023", + "publicationNote": "Decisions Announced on Friday, July 14, 2023", + "groupFlag": true, + "scheduledDate": "2023-07-14T13:44:00.000+00:00", + "publicationDate": "2023-07-14T14:06:28.739+00:00", + "publicationItems": [ + { + "publicationItemUUID": "E2B32D48-D182-46DE-89AC-A0823C77F6D5", + "docketEntryUUID": "E202E4BF-CF18-44D8-908A-7A7E3CBB70F7", + "caseInstanceUUID": "3C6F1A22-DFB9-4208-A733-51EA8DC88C5B", + "caseNumber": "CL-2022-1021", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "R.A. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-20-545.02).", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "807F3280-924A-43F9-B140-AB4F879ADDD7", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "CE894921-2304-48DD-B915-2574E99407F9", + "docketEntryUUID": "D0906EF1-BB62-4880-BFB8-83DF43D88D28", + "caseInstanceUUID": "61F8AA02-7D6F-4AA0-A16A-106B465039FC", + "caseNumber": "CL-2022-0967", + "groupName": "Hanson, J.", + "groupOrderBy": 4, + "title": "A.H. v. L.R. (Appeal from Calhoun Juvenile Court: JU-19-900.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "871B1F66-811B-4EB5-B9C0-B8F9C1701F24", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "BF63ED55-6609-4D96-B9E1-E2225DD97F52", + "docketEntryUUID": "2A9D399C-1051-461A-A043-9F96486D68C5", + "caseInstanceUUID": "63B4C1DA-492F-48B1-9493-8B34828897E7", + "caseNumber": "CL-2022-0911", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "G.W.K. v. B.W.M. and G.M. (Appeal from Lawrence Juvenile Court: JU-21-224.01).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "34E93FEE-483D-4CE4-BFBF-D9AB6E1BD550", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8EF9D8BD-52CD-4259-BBE5-1E8F93C20C01", + "docketEntryUUID": "FB9BAFFE-455C-4F47-9DFA-F520A66EAE9A", + "caseInstanceUUID": "0C775643-25B1-426D-9F5B-3BE0CCB68776", + "caseNumber": "2210486", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Harold Wallace v. The Housing Authority of the City of Talladega (Appeal from Talladega Circuit Court: CV-18-900509).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "23224A80-6F42-4E55-916E-C4C48093E168", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "6C5D5657-07BA-407C-A8F7-9B816EF547C6", + "docketEntryUUID": "FFCF311B-6C41-4830-99FB-7C02532486AD", + "caseInstanceUUID": "A5567851-C80B-49A8-A9D1-98383AB3666F", + "caseNumber": "CL-2022-1118", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "V.R.W. v. M.M. (Appeal from Etowah Juvenile Court: CS-12-233.04).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "F83153D7-C801-426F-932C-672979681418", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "51A57642-6740-46DC-A801-C551AC1F54E6", + "docketEntryUUID": "31CC147C-924F-40AA-88AA-F52B48F48746", + "caseInstanceUUID": "5DDD5ECE-A8E9-4121-A417-93A06F962F5D", + "caseNumber": "CL-2023-0308", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Ex parte Gary Daniel Fraiser PETITION FOR WRIT OF MANDAMUS (In re: Angela N. Fraiser v. Gary Daniel Fraiser) (Elmore Circuit Court: DR-18-117).", + "decision": "Decision - Petition Granted in Part and Denied in Part; Writ Issued.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B46824B8-EE8E-4E8E-A73D-09EBDCBFC72F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "18A2AF1B-A543-4EB3-AE7F-2D8DDCB0FAF8", + "docketEntryUUID": "02671E4C-A715-4264-AC94-939ACF210993", + "caseInstanceUUID": "3FFED54C-2C2F-474E-B2BA-CDA7EF5912BD", + "caseNumber": "CL-2022-0912", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "G.W.K. v. B.W.M. and G.M. (Appeal from Lawrence Juvenile Court: JU-21-223.01).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B747164B-3D28-40F4-A382-01EC5FC1FCCC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1176829D-3BAB-4D25-90D0-556BFE60ED61", + "docketEntryUUID": "B65ECE76-22F6-46EE-A0D2-A7A1367F704D", + "caseInstanceUUID": "CD00219E-CBF1-4895-90BC-024BEA55C16E", + "caseNumber": "CL-2022-1022", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "R.A. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-20-546.02).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "A60EA9F3-8360-48AF-8660-09F4D4740961", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "263CE842-7342-4FD2-87E1-731B1C8EC788", + "docketEntryUUID": "E7F88FA8-970C-483D-8F70-3F8605F41CA0", + "caseInstanceUUID": "AF6A16C1-7547-4FD6-8F07-0148B6DB4295", + "caseNumber": "CL-2022-1023", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "R.A. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-20-547.02).", + "decision": "Decision - Affirmed.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "AD5857BB-9F34-4F59-AE9C-E3615FB13E35", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "6cda29b0-64dc-4a1e-921a-4ade79a511f3", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-07-07", + "publicationName": "Court of Civil Appeals Release List - July 7, 2023", + "publicationNote": "Decisions Announced on Friday, July 7, 2023", + "groupFlag": true, + "scheduledDate": "2023-07-07T14:20:00.000+00:00", + "publicationDate": "2023-07-07T15:01:58.567+00:00", + "publicationItems": [ + { + "publicationItemUUID": "16760DBA-8D65-42EB-9E13-A943BDE46CFF", + "docketEntryUUID": "D170C3EA-FB08-4182-92F2-6DED58B08FC2", + "caseInstanceUUID": "3B3058B7-3759-43EB-9525-A1AAB66DAFE4", + "caseNumber": "CL-2022-1059", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "The Water Works Board of the City of Birmingham v. Alabama Surface Mining Commission and Mays Mining, Inc. (Appeal from Walker Circuit Court: CV-21-900190).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "B9A7AC6C-86AD-4CAA-AE80-E6DB5651E69C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D4D64673-2D3D-4E70-A757-69084F6B9A89", + "docketEntryUUID": "FF87BF34-C188-4CE6-929C-ECDAF33B721D", + "caseInstanceUUID": "A3B526D9-FE35-4E2F-A3FD-A458DB1AED7F", + "caseNumber": "CL-2022-0649", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "Shawnesse W. Benton v. Jay Preston Benton (Appeal from Russell Circuit Court: DR-16-900220).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "332BBA47-2691-44AC-8DFA-E73337BF63E2", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "BD90E2EA-60E0-474E-8E05-589D693D4B8D", + "docketEntryUUID": "C241AAC6-B0C9-490B-B7DE-F061C84C32E4", + "caseInstanceUUID": "21032322-D401-465E-A1E0-9FB5EF44CB35", + "caseNumber": "2210339", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Scott Andrew Sabo v. Avery Caldwell Sabo, Harry Miller Caldwell, Jr., and Deborah D. Caldwell (Appeal from Jefferson Circuit Court: DR-16-901609.02).", + "decision": "Rehearing - Ex Mero Motu; No-Opinion Order of Affirmance of June 30, 2023, Withdrawn; Order Substituted; Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "D5172326-EF26-4B24-9008-DD6851649BCD", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "257B0A39-9C4A-461A-A8D8-B4314E4C1ACC", + "docketEntryUUID": "FE10689B-A527-4F2E-9FDD-94D5152564A3", + "caseInstanceUUID": "D8082B78-1EFC-49A5-8DDD-3290B47A0FCE", + "caseNumber": "CL-2022-1091", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "K.B. v. T.J. (Appeal from Escambia Juvenile Court: JU-22-58.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5533367A-6F14-4F90-BFE4-BD99548D24E5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F3473ED7-D112-4E18-801D-82D986AC2DF1", + "docketEntryUUID": "FF8A0BF1-A7CE-4BDC-B5C1-09FAC745B10C", + "caseInstanceUUID": "D1521A68-2EFC-491C-87E6-7A9F2609DB73", + "caseNumber": "CL-2022-1116", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "K.W. v. Lee County Department of Human Resources (Appeal from Lee Juvenile Court: JU-16-308.07).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "1946C0A2-099A-4D8B-80DD-B408DEE7321C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7BB50766-E3CC-4E0A-9F26-DE47BF0198D2", + "docketEntryUUID": "8E514534-4A2B-42CF-B89A-4DC91A4245D1", + "caseInstanceUUID": "3534C665-AFBF-4F96-B0E6-447DB9E69C32", + "caseNumber": "2210340", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Scott Andrew Sabo v. Avery Caldwell Sabo, Harry Miller Caldwell, Jr., and Deborah D. Caldwell (Appeal from Jefferson Circuit Court: DR-16-901609.03).", + "decision": "Rehearing - Ex Mero Motu; No-Opinion Order of Affirmance of June 30, 2023, Withdrawn; Order Substituted; Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B8F1CB89-C6DC-4845-A956-59B4D2B17B10", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "0E4B64E1-1099-406D-912A-57422B0EE067", + "docketEntryUUID": "3A93B661-3EF1-4EB4-B598-AC14904FEFD4", + "caseInstanceUUID": "ED87B8B7-C8EB-48CF-9730-502E5E03F8FA", + "caseNumber": "CL-2022-1180", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "K.R. v. Houston County Department of Human Resources (Appeal from Houston Juvenile Court: JU-18-337.06).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "846AD1EE-5119-4CE7-80F4-77F2C27A71A8", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "764DA5A3-65EF-4E6A-8AB2-51C8FBD9BFB2", + "docketEntryUUID": "17610B1C-E03B-40C8-9D3E-5E883DD623B0", + "caseInstanceUUID": "C3A62271-DCE4-4FD0-9E14-04B0B871CF94", + "caseNumber": "CL-2022-0736", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "S.R.E. v. Shelby County Department of Human Resources (Appeal from Shelby Juvenile Court: JU-17-529.06).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "997C4193-64F9-4256-85CB-9BB057EF37D5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C4BC09B4-CD7D-4501-A5E0-6BFCBBB067E7", + "docketEntryUUID": "AD1F847D-E874-4B38-B078-08A0EE5CD64B", + "caseInstanceUUID": "7E2137BB-87F4-4129-83C4-D5CF2B46DAFF", + "caseNumber": "CL-2022-0737", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "S.R.E. v. Shelby County Department of Human Resources (Appeal from Shelby Juvenile Court: JU-17-530.07).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "50884198-9971-4F2A-ABDA-12671ED09625", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7160FDC9-A2EC-425C-B30A-E665FC32C2F4", + "docketEntryUUID": "69DE4E46-A592-4225-9568-63E09978D504", + "caseInstanceUUID": "712C251B-50DC-42C8-89A9-0949BEA26AE3", + "caseNumber": "CL-2023-0261", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Ex parte T.E.B. and D.K.G. PETITION FOR WRIT OF MANDAMUS (In re: In the matter of the Adoption Petition\nof T.E.B. and D.K.G. for B.B.A.) (Montgomery Probate Court: 22-A0019)", + "decision": "Decision - Petition Dismissed with Instructions", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "3F7778D6-389C-493C-9A7F-0CF761DF236B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2042AC4D-AD21-47A8-AB1A-017F2A1FFDD3", + "docketEntryUUID": "F972317A-06B3-456F-8276-14446FC1027D", + "caseInstanceUUID": "FB5B2D19-B96A-41B8-8FE1-9F67289DD865", + "caseNumber": "CL-2022-1117", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "C.M. v. Lee County Department of Human Resources (Appeal from Lee Juvenile Court: JU-16-308.07).", + "decision": "Decision - Affirmed.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "6203FBDE-C86B-403B-95C5-E3F95D6DA529", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9382D96F-B888-440D-9B62-E75A14782BD3", + "docketEntryUUID": "944BFE31-51D0-4519-ADEA-67EAC470D27B", + "caseInstanceUUID": "9B93AE1F-E4DD-4174-9949-EEA96C3E6127", + "caseNumber": "CL-2023-0048", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "J.T.A. v. Mobile County Department of Human Resources (Appeal from Mobile Juvenile Court: JU-18-1366.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "6FCE7B99-8DFE-4622-9F31-77C741763B1A", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8E734647-ACD5-46D0-A657-28A490C46586", + "docketEntryUUID": "1B4022A0-9D1B-4D49-9DE7-20550011AFA3", + "caseInstanceUUID": "CCA74199-CDD1-4151-AAA2-8BC9F44745C7", + "caseNumber": "CL-2022-0622", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Avery Caldwell Sabo v. Scott Andrew Sabo (Appeal from Jefferson Circuit Court: DR-16-901609.03).", + "decision": "Rehearing - Ex Mero Motu; No-Opinion Order of Affirmance of June 30, 2023, Withdrawn; Order Substituted; Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "31232964-A75F-44AF-BA87-20D6CA04A6B9", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "E2409473-061A-4E6E-9BAB-EBF8CB715A60", + "docketEntryUUID": "820F02D3-DF51-4A55-8625-F156CB45D5B8", + "caseInstanceUUID": "FDDA8E64-4AAC-4B6B-A814-5F3E9AA8F3BF", + "caseNumber": "CL-2022-0738", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "S.R.E. v. Shelby County Department of Human Resources (Appeal from Shelby Juvenile Court: JU-17-531.06)", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "FE4A1F6B-896F-4D64-8B50-E54643E33442", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "14D8D888-6B14-4BC8-94CA-5ECE20F29FA0", + "docketEntryUUID": "3AF7C08A-54FA-4B32-9223-577B7A7F7C2B", + "caseInstanceUUID": "E68A0740-45A1-489B-A9E4-F6D7B1F4E2B5", + "caseNumber": "CL-2022-0630", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Avery Caldwell Sabo v. Scott Andrew Sabo (Appeal from Jefferson Circuit Court: DR-16-901609.02).", + "decision": "Rehearing - Ex Mero Motu; No-Opinion Order of Affirmance of June 30, 2023, Withdrawn; Order Substituted; Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "BEF80A58-0A2F-4D82-AA1B-428CD299E83A", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "53412B28-1094-49DF-BC76-B6A1F1762ED5", + "docketEntryUUID": "226E114B-AAB1-4689-85E8-35721370C690", + "caseInstanceUUID": "EF968449-3ED7-4AFF-B657-D228F8176BCF", + "caseNumber": "CL-2022-0739", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "S.R.E. v. Shelby County Department of Human Resources (Appeal from Shelby Juvenile Court: JU-17-532.06)", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "C3CB2403-2C28-489D-B812-423948EF43EC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "84CCFF84-3012-48F9-AC0A-CB86080A4C99", + "docketEntryUUID": "1568CDE4-34BA-4733-B361-94E99E61B09B", + "caseInstanceUUID": "7F3FDAE3-35A2-4B76-A78F-9C7A603F820D", + "caseNumber": "CL-2022-0740", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "S.R.E. v. Shelby County Department of Human Resources (Appeal from Shelby Juvenile Court: JU-18-596.04)", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "20757DA9-13CB-4788-B9EA-160A12299825", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "60c663ee-6edc-4f8d-baee-84a865529efa", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-06-30", + "publicationName": "Court of Civil Appeals Release List - June 30, 2023", + "publicationNote": "Decisions Announced on Friday, June 30, 2023", + "groupFlag": true, + "scheduledDate": "2023-06-30T14:30:00.000+00:00", + "publicationDate": "2023-06-30T14:35:54.660+00:00", + "publicationItems": [ + { + "publicationItemUUID": "5D2164A8-F5AD-4671-870A-FDC0AFBF4DAD", + "docketEntryUUID": "B8846648-7661-48F4-95B8-AC725F35393B", + "caseInstanceUUID": "21032322-D401-465E-A1E0-9FB5EF44CB35", + "caseNumber": "2210339", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Scott Andrew Sabo v. Avery Caldwell Sabo, Harry Miller Caldwell, Jr., and Deborah D. Caldwell (Appeal from Jefferson Circuit Court: DR-16-901609.02).", + "decision": "Decision - Affirmed. No Opinion. (Special Writing)", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "2EFDC754-DE17-4AE9-B0FF-26DF567856E0", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "CD4AA57B-FAFB-4554-A358-B59F660F3967", + "docketEntryUUID": "401E43FD-3AD1-4483-BC95-E43AAAE22E47", + "caseInstanceUUID": "6F5C8127-6D12-4093-AF79-36B029D87377", + "caseNumber": "CL-2022-1029", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "K.M.C. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-19.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "AFA1F545-85B0-4183-B508-53130AFCC23D", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "7CC8EB25-5F03-49F1-AD1E-0FA5CB73BE16", + "docketEntryUUID": "387D9611-2C89-444D-AE0C-C908C6D2656D", + "caseInstanceUUID": "42E8E6A0-888C-4C9C-9FC7-108A5D8D0216", + "caseNumber": "CL-2022-0943", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "A.L. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-12-33.04).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "7FD3A26F-76CF-48C7-BAE3-7538F561799F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "5107F910-DB1F-412A-9D35-433BD51F452F", + "docketEntryUUID": "45C7507B-90E6-4185-A5E6-E371FB103127", + "caseInstanceUUID": "DE31E023-A91F-400E-B381-375C53072DB5", + "caseNumber": "CL-2022-0944", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "A.L. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-19-1752.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "F21C586F-A7A4-4F7B-83F2-6E0F37D23540", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "86A659F4-2315-4E3B-9FDF-F812FCB3060A", + "docketEntryUUID": "E9C1118B-677F-42F5-8D54-F9B225637CFD", + "caseInstanceUUID": "3534C665-AFBF-4F96-B0E6-447DB9E69C32", + "caseNumber": "2210340", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Scott Andrew Sabo v. Avery Caldwell Sabo, Harry Miller Caldwell, Jr., and Deborah D. Caldwell (Appeal from Jefferson Circuit Court: DR-16-901609.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "F990EB4F-EEBC-4684-A2E2-7915F587C5C3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7B539963-CEF5-4EC8-BBEA-2280F51D447C", + "docketEntryUUID": "C7E0D5BD-14BA-4515-B1CB-8600C2534811", + "caseInstanceUUID": "CCA74199-CDD1-4151-AAA2-8BC9F44745C7", + "caseNumber": "CL-2022-0622", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Avery Caldwell Sabo v. Scott Andrew Sabo (Appeal from Jefferson Circuit Court: DR-16-901609.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "E30EA230-0E21-4104-8E19-62BD6D43538D", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7FE27789-794F-4B44-B259-FA97E7B0E947", + "docketEntryUUID": "6F8F46B3-E3F6-43F0-B3A8-D7DDE08A5B74", + "caseInstanceUUID": "BC2F62A7-F4B1-4F42-8C36-81CFAD6DC77B", + "caseNumber": "CL-2022-0945", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "A.L. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-19-1753.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "737EA97A-D0B5-4E89-8631-63F780E3297B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "482BA748-E3EC-44FA-8152-B812C6788FDF", + "docketEntryUUID": "F47EF9E7-A340-4480-9F42-34B972AB5140", + "caseInstanceUUID": "500FC3F5-375D-4C0A-B881-B15E79FA2247", + "caseNumber": "CL-2022-0946", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "A.L. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-19-1754.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "A61C147B-DDC0-4D83-B413-F69321885ECD", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "99D9AE9D-E419-42BA-9CF3-1D18DC600EC2", + "docketEntryUUID": "78F45CF7-7606-44E7-A38A-F357B582F08A", + "caseInstanceUUID": "E68A0740-45A1-489B-A9E4-F6D7B1F4E2B5", + "caseNumber": "CL-2022-0630", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Avery Caldwell Sabo v. Scott Andrew Sabo (Appeal from Jefferson Circuit Court: DR-16-901609.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "06D5FFB4-5BAA-4418-AAE8-8C70F7D1BA9C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "3E777D9F-F61D-4F58-830A-09C16B634F40", + "docketEntryUUID": "7F3D26BC-2AE1-4894-99F9-F3F5F406E0F9", + "caseInstanceUUID": "6041FEFE-0D39-428E-B30E-55E1A4ACDB00", + "caseNumber": "CL-2022-0997", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Danita Habick v. Ted N. Mosley (Appeal from Mobile Circuit Court: DR-19-900179).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "913D19E5-9C6E-474D-96CD-4B28494F4CAF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "FD976C1E-3ADF-4CD9-ABE5-FB9B71DD0EDF", + "docketEntryUUID": "30EE1B32-921B-431B-BFE0-2A75BD8F9A6C", + "caseInstanceUUID": "BBC9C603-60F4-4E08-8A99-3EFE9AFE1B39", + "caseNumber": "CL-2022-0970", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "K.B. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-19-1753.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "1A096F44-4A5D-4A0B-983D-A7F23BA0AE7B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "45DB76C3-69C4-485C-B7D4-6F6865013544", + "docketEntryUUID": "08241C54-B315-4DA3-B6FC-C5E0A6210508", + "caseInstanceUUID": "4FFCBF8C-E07C-49D1-ACFF-96333E523FFC", + "caseNumber": "CL-2022-1024", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Ted N. Mosley v. Danita Habick (Appeal from Mobile Circuit Court: DR-19-900179).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "7EEC4618-54B9-4C40-BBC4-C5FEAED3D38F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9471758D-505A-4575-AACC-D03823B96FF1", + "docketEntryUUID": "908B96F1-10A5-4A54-8EA0-9FC1FB6A87AB", + "caseInstanceUUID": "6C3073ED-F19C-4561-825E-860C7FCB49CA", + "caseNumber": "CL-2022-1065", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Mary Diane Smith v. Clinton Ellis Smith (Appeal from Madison Circuit Court: DR-12-900314.04).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "8E4B2A44-9C75-40C4-8D9F-F3836A3B8A96", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "60a2e66a-e7b0-4dfc-bfc4-a680dcfb5745", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-06-23", + "publicationName": "Court of Civil Appeals Release List - June 23, 2023", + "publicationNote": "Decisions Announced on Friday, June 23, 2023", + "groupFlag": true, + "scheduledDate": "2023-06-23T14:00:00.000+00:00", + "publicationDate": "2023-06-23T14:26:03.370+00:00", + "publicationItems": [ + { + "publicationItemUUID": "434226D4-809D-4318-9021-B1333E8EB2B4", + "docketEntryUUID": "2DBAFFAD-5C65-45F5-827D-26F72FFAFA32", + "caseInstanceUUID": "AB8CB7A4-ABFF-4B9A-B59B-89C947FDC0E1", + "caseNumber": "CL-2022-0909", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Tony Harris v. Stephanie Harris (Appeal from Russell Circuit Court: DR-09-345.05).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5AE28E6F-C264-44E2-9CCD-B69A78D8BFC1", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "FEE1BDE2-4B0F-4FAA-9B74-82AD4C606717", + "docketEntryUUID": "450552D8-B87F-4EB3-8F2C-010351227736", + "caseInstanceUUID": "B2CC4D69-A520-42E5-9C76-D4B089C3218E", + "caseNumber": "CL-2023-0062", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "A.P. v. J.P. (Appeal from Jefferson Juvenile Court: JU-22-755.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "71773DDF-E863-4DC3-B848-F8F0148BC36D", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "50C850C6-8D06-4164-89B3-E31E50B8D278", + "docketEntryUUID": "5910A8AD-89BE-4477-BC38-3C5C9C76836E", + "caseInstanceUUID": "C5429F8D-044E-408A-957C-0DC4B9A592FA", + "caseNumber": "CL-2022-1019", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "Gavin Woodruff v. Bonnie Glenn (Appeal from Baldwin Circuit Court: CV-21-901414).", + "decision": "Decision - Appeal Dismissed", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "ECFCD6C6-5D77-4E8F-8EF3-CFFCA6AC6970", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "174058A2-CCA3-4101-B27D-E7745A9DBE8C", + "docketEntryUUID": "10A2FBD8-988B-43FB-9724-C517D687A8F5", + "caseInstanceUUID": "2AA1B631-DFBF-4FED-888D-1DA2DE6429E1", + "caseNumber": "2200821", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "Anthony Keith, Ronald C. Smith, Esther Calhoun, William T. Gipson, and Latonya J. Gipson v. Lance R. LeFleur, in his official capacity as Director of the Alabama Department of Environmental Management; and Marilyn G. Elliott, in her official capacity as Deputy Director and the Nondiscrimination Coordinator of the Alabama Department of Environmental Management (Appeal from Montgomery Circuit Court: CV-19-900283).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "19ADA9A5-0580-47C4-9D62-04AE4D1D25BD", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7210F5E7-BF95-4865-B4B2-A72025F5BF74", + "docketEntryUUID": "05D90D5F-6D26-46E7-AC84-85028462C8D6", + "caseInstanceUUID": "3496F585-C47E-476C-BBEC-2F718C68D55D", + "caseNumber": "CL-2022-1014", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "T.C. v. M.C. (Appeal from Houston Juvenile Court: JU-19-871.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "FA09B6B7-E794-47B8-BCD7-3CED6B529BED", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "A6856DA1-9902-4DC5-9D62-90E1FC78F087", + "docketEntryUUID": "2365C7BB-7860-479F-8A1D-75D79C80BEF9", + "caseInstanceUUID": "A52F392D-F60C-4DCA-B68D-9D63798D7EB9", + "caseNumber": "CL-2022-1125", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "Ex parte C.R. and L.S. PETITION FOR WRIT OF MANDAMUS: (In re: V.R. and J.R. v. C.R. and L.S.) (Madison Juvenile Court: JU-22-754.01).", + "decision": "Decision - Petition Dismissed in Part and Denied in Part.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "03052272-1696-46FC-9812-0C0D76EF6C72", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6A729668-CF25-4FDC-ACD2-E6A1B03FC8D2", + "docketEntryUUID": "DE93535E-098C-4300-B01E-D4C581AA78C9", + "caseInstanceUUID": "40D50979-3894-453C-AFC4-AEA96ABF17B1", + "caseNumber": "CL-2022-0963", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "Matthew Bacik v. Deborah Beth Bacik (Appeal from Shelby Circuit Court: DR-18-900741).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "1C723836-E9AD-4C21-B906-287D07586BDF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "4F5D5434-D448-4A80-B525-C80DDAEF4201", + "docketEntryUUID": "BA740BB4-1B73-4B0F-8E9A-B442BBD9F71B", + "caseInstanceUUID": "3D7DF17F-BEC4-4726-A5F7-2724E744211B", + "caseNumber": "CL-2022-1126", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "Ex parte C.R. PETITION FOR WRIT OF MANDAMUS: (In re: V.R. and J.R. v. C.R. and L.S.) (Madison Juvenile Court: JU-22-755.01).", + "decision": "Decision - Petition Dismissed in Part and Denied in Part.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "36B26866-B0ED-4531-895A-97AB468C16CF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "65D70DBF-928F-405E-AAE1-77AC9E86F61B", + "docketEntryUUID": "338AF34A-A8EF-4EFB-89FE-FB258D0D8E48", + "caseInstanceUUID": "65DA6D7C-F9EC-4CD5-9B53-60305B96FCEE", + "caseNumber": "CL-2022-0949", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Pooh Bear Academy v. Alabama Department of Human Resources (Appeal from Montgomery Circuit Court: CV-22-900285).", + "decision": "Decision - Appeal Dismissed", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "02FB9A2F-C982-40ED-B916-5E640D3C8F72", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "3FC4C261-0935-48C0-9670-C6709178FB2C", + "docketEntryUUID": "F22751A2-4351-440D-9DBA-B78C91D69A9A", + "caseInstanceUUID": "2085A5A4-F646-4561-91CB-BAB5B364297B", + "caseNumber": "CL-2022-1015", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "T.C. v. M.C. (Appeal from Houston Juvenile Court: JU-19-872.02).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "84C06686-C6BC-4764-A1B9-D0A277A0A9A2", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "88F305B4-4465-4D32-8EF0-DA6CE5815DBF", + "docketEntryUUID": "2D61A251-ED37-468C-9F1C-07907F8316CD", + "caseInstanceUUID": "CC474308-B9B8-4C60-90D1-70DE0F01FDC6", + "caseNumber": "CL-2022-1016", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "T.C. v. M.C. (Appeal from Houston Juvenile Court: JU-19-873.02).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "30BC7A48-AE12-4EBC-94A0-4262F5BA4527", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "3041072F-839E-428A-8A53-7709004FA226", + "docketEntryUUID": "181784D7-F408-4FEF-AA09-62879E84950C", + "caseInstanceUUID": "FE7B49F8-7D54-41C5-9B3F-B888A11A351D", + "caseNumber": "CL-2023-0027", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Ex parte J.D.J. and J.L.H.J. PETITION FOR WRIT OF MANDAMUS: (In re: The Matter of the Adoption Petition of J.D.J. and J.L.H.J.) (Madison Probate Court: No. 76382).", + "decision": "Decision - Petition Dismissed in Part and Granted in Part; Writ Issued.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "DA44A728-2A84-4659-AEF1-B1B672D27E0A", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1698B9F3-0FA1-4017-8441-32F485A371D1", + "docketEntryUUID": "4283FB64-67F5-49C3-B4B6-63FF019D3D0D", + "caseInstanceUUID": "5CAC49DB-557A-49E6-A5F0-4B7BE0C3EB46", + "caseNumber": "CL-2022-1127", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "Ex parte C.R. and L.S. PETITION FOR WRIT OF MANDAMUS: (In re: V.R. and J.R. v. C.R. and L.S.) (Madison Juvenile Court: JU-22-756.01).", + "decision": "Decision - Petition Dismissed in Part and Denied in Part.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "F4754BF9-629A-45A9-B2CF-1EEAEF861971", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "46C49495-B4B9-44A7-BE77-478358CD04F6", + "docketEntryUUID": "4842B6A1-B44C-48B4-8F9F-B248D879EEA4", + "caseInstanceUUID": "7D894832-BBFD-4DB8-8073-390BFC81CAAC", + "caseNumber": "CL-2022-1013", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "Roy Junior Garner v. Lillie Mae Garner (Appeal from Calhoun Circuit Court: DR-21-900825).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "57162376-AE34-4307-9B33-04FB67671D96", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "02B7FAF1-8BDF-4BAE-91B1-9B3C2455DB7D", + "docketEntryUUID": "5BBF718C-406A-418C-929D-8F7695FAB937", + "caseInstanceUUID": "A24CB1E3-8BAD-4B8B-906D-F4266A19591E", + "caseNumber": "CL-2023-0309", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "Ex parte Zachariah Carl Sullivan PETITION FOR THE WRIT OF MANDAMUS: (In re: Kameron Golden Sullivan v. Zachariah Carl Sullivan) (Jefferson Circuit Court: DR-22-901567).", + "decision": "Decision - Petition Dismissed in Part and Granted in Part; Writ Issued.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "8269663F-2089-4213-8646-E740857326C7", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "76BA4EC8-6F8C-4677-9C9B-B4E236857A6D", + "docketEntryUUID": "27A583E1-A027-477B-83DC-9C799AF7C869", + "caseInstanceUUID": "CE09D8CB-20E8-4F7F-B8BC-E71064FAF783", + "caseNumber": "CL-2023-0093", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "J.D.J and J.L.H.J. v. M.J.B. (Appeal from Madison Probate Court: No. 76382).", + "decision": "Decision - Appeal Dismissed in Part; Reversed and Remanded with Instructions.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "B0F47DB2-A446-4B2C-9F05-A5D53864AB41", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "e82d2ef8-c70a-437a-87b5-c28e0e9d6932", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-06-16", + "publicationName": "Court of Civil Appeals Release List - June 16, 2023", + "publicationNote": "Decisions Announced on Friday, June 16, 2023", + "groupFlag": true, + "scheduledDate": "2023-06-16T14:30:00.000+00:00", + "publicationDate": "2023-06-16T15:13:34.603+00:00", + "publicationItems": [ + { + "publicationItemUUID": "B49E81EE-DF6D-4E4F-899E-AE89CD018900", + "docketEntryUUID": "5DC301C0-DFA9-4B85-B215-47EDACB5FA0E", + "caseInstanceUUID": "FA744503-FE4C-46F2-9F0C-ACE91E1A7AE1", + "caseNumber": "CL-2022-0741", + "groupName": "Edwards, J.", + "groupOrderBy": 1, + "title": "G.S.-H. v. Tuscaloosa County Department of Human Resources (Appeal from Tuscaloosa Juvenile Court: JU-18-881.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "2892AD23-478D-49C2-9E27-A497F443DA8E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "E45E0E1D-DF62-48B1-92CC-0CB5B6100EF2", + "docketEntryUUID": "BDD53166-63A8-4A59-9B16-2DD9DECBB8F3", + "caseInstanceUUID": "061739D3-22C4-4F55-AC32-50AF69127AA3", + "caseNumber": "CL-2022-1093", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "L.G. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-22-268.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "0B3D593F-77FD-4C58-BE9D-DB833771A319", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8FB0BEC5-14D7-4912-966B-17393FA6D46C", + "docketEntryUUID": "A63AEC8B-7774-4A7D-9F97-8E0FB6CC3647", + "caseInstanceUUID": "EC9AD1E5-9DFA-443E-9F74-57328F72AA78", + "caseNumber": "2210433", + "groupName": "Hanson, J.", + "groupOrderBy": 2, + "title": "A.D.R.-M v. J.L.M. (Appeal from Greene Juvenile Court: JU-21-100.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "47D9B857-FBD6-429B-A636-CACC66724173", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "01E221FF-3C02-4128-8722-23B352F1853F", + "docketEntryUUID": "FF4F4CC6-3DC5-4B65-A296-4E02E6772BAD", + "caseInstanceUUID": "EFB015C0-8037-4D39-A0ED-3D65AB38C911", + "caseNumber": "CL-2022-0573", + "groupName": "Hanson, J.", + "groupOrderBy": 2, + "title": "S.M. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-18-1398.02).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B08103FE-063D-4682-A5E0-24315535ABC5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2220FE78-8D5E-4A4C-B21E-9983D1B02836", + "docketEntryUUID": "9884B0E1-65FF-4005-893F-549F12689A33", + "caseInstanceUUID": "EFABD4E0-A4E8-48C3-A2F4-810C5C783C91", + "caseNumber": "CL-2022-0574", + "groupName": "Hanson, J.", + "groupOrderBy": 2, + "title": "S.M. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-18-1399.02)", + "decision": "Decision - Affirmed.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "E053589A-5674-4507-8DB3-DC06EBEDBAC3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9504D245-56DF-4035-9F4A-2B3D14BF977F", + "docketEntryUUID": "D084136E-063C-4951-979F-D11187FC83CB", + "caseInstanceUUID": "97E05E27-80EA-4352-814B-8DB865828ED4", + "caseNumber": "CL-2022-0742", + "groupName": "Edwards, J.", + "groupOrderBy": 1, + "title": "G.S.-H. v. Tuscaloosa County Department of Human Resources (Appeal from Tuscaloosa Juvenile Court: JU-18-882.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "8CECE66E-2573-4F2D-9BFE-A38C023B1DF2", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "65BBF999-E991-402C-B11E-6F3741414A42", + "docketEntryUUID": "E1F1A9CF-D76E-4E01-85D1-F7F49F35C25C", + "caseInstanceUUID": "D92B2CD5-AB4E-4ABB-836B-3E6E1BA3C625", + "caseNumber": "CL-2022-0575", + "groupName": "Hanson, J.", + "groupOrderBy": 2, + "title": "S.M. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-18-1400.02)", + "decision": "Decision - Affirmed.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "46B6B4A9-7A9F-40AB-9CD5-9BAC165E03E3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F676F5CA-270E-462A-B9EB-5D4447D5C179", + "docketEntryUUID": "9AD9FAB5-C5E2-4254-BCF0-62E58B94653E", + "caseInstanceUUID": "3F82CE86-71AE-4224-A307-F019856649AF", + "caseNumber": "CL-2022-0935", + "groupName": "Edwards, J.", + "groupOrderBy": 1, + "title": "The Health Care Authority for Baptist Health, an Affiliate of UAB Health System, d/b/a Baptist Medical Center South and d/b/a Baptist Medical Center East; Baptist Ventures, Inc., d/b/a Montgomery Surgical Center, LLC; Jackson Hospital & Clinic, Inc.; and Jackson Surgery Center, LLC, d/b/a Jackson Surgery Center v. State Health Planning and Development Agency and 2LR Healthcare Holdings, LLC, d/b/a Heart & Vascular Institute of Alabama (Appeal from the Certificate of Need Review Board of the State Health Planning and Development Agency: AL 2020-50).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "C4EE8678-1EA4-437B-A19A-49F3576854E4", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "0846C731-A07B-4F62-BA35-165668091F3B", + "docketEntryUUID": "C0DED004-D3F8-4AC6-AE49-0F126109DC05", + "caseInstanceUUID": "59AD62C6-44D3-4389-B1A9-16205CE462DA", + "caseNumber": "CL-2022-1140", + "groupName": "Edwards, J.", + "groupOrderBy": 1, + "title": "M.H. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-21-239.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "B85CC658-D8E7-437E-8BAD-0A8C0537519F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6BA9FB7E-77AD-40B7-BC2D-0CA67249FB20", + "docketEntryUUID": "9C710322-7DCE-41EB-B968-B24F02B3032D", + "caseInstanceUUID": "06E8871F-860E-417E-914D-AD5F93279F68", + "caseNumber": "CL-2023-0007", + "groupName": "Hanson, J.", + "groupOrderBy": 2, + "title": "Michael C. McCarthy v. Vicki H. McCarthy (Appeal from Shelby Circuit Court: DR-10-108.3).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "C6F6F213-8AF3-4FA8-9526-3E3B95F961C9", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "9baf9838-1123-4bf2-9786-474f5683f85e", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-06-09", + "publicationName": "Court of Civil Appeals Release List - June 9, 2023", + "publicationNote": "Decisions Announced on Friday, June 9, 2023", + "groupFlag": true, + "scheduledDate": "2023-06-09T14:15:00.000+00:00", + "publicationDate": "2023-06-09T14:43:25.571+00:00", + "publicationItems": [ + { + "publicationItemUUID": "CF8E4A58-B9C2-47BD-9FDA-DFCF42A07423", + "docketEntryUUID": "2D0CF6D0-577E-4A3F-9AFC-CF4428266BAC", + "caseInstanceUUID": "5D207001-8190-48A1-B56E-0551BD33C662", + "caseNumber": "CL-2022-0916", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Lasheena Crenshaw v. Donald Lee Crenshaw, Jr. (Appeal from Montgomery Circuit Court: DR-20-900412.01).", + "decision": "Decision - Affirmed In Part; Reversed In Part; And Remanded With Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "ABD1F49E-1B15-4292-811B-8AEB646E2699", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C01CF6B1-1BA3-44B6-BFDC-4B092C95B794", + "docketEntryUUID": "8FEC863D-9C03-4748-98A0-519AA7210BF4", + "caseInstanceUUID": "C47AE893-5A45-4719-9EA3-75E22F195E50", + "caseNumber": "CL-2022-0782", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "Keith George Barton, Jr. v. Jocelyn Rachelle Barton (Appeal from Mobile Circuit Court: DR-18-500094.03).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5F22633C-EDB1-497D-A1E9-6C8EF8DC7BD3", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "3694FF60-4770-4315-91D9-86A4AACD9BD8", + "docketEntryUUID": "EB2B75C1-1514-4761-A090-36676B85C491", + "caseInstanceUUID": "3DF4E70A-CAB3-4AD7-B932-A9453174B104", + "caseNumber": "CL-2022-0974", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Pilgrim's Pride Corporation v. Jimmy Dale Harper (Appeal from Marshall Circuit Court: CV-17-900287).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "E1538519-42E0-4CE8-8C1A-E2112B635FB6", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "290BF196-23F7-4BA3-8BF4-C580D1035DB3", + "docketEntryUUID": "36F056F1-BA20-41FC-9F59-CDE3FD99DE04", + "caseInstanceUUID": "CE918881-60CE-435C-9154-57880174FF65", + "caseNumber": "CL-2022-0996", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "V.K. v. K.S. (Appeal from Montgomery Juvenile Court: JU-19-625.01 and JU-19-625.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "355F129F-0DF1-4CBD-8AE8-A5B28EC6AFB0", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7A702CE9-B2F2-4ACD-A886-721F4BD4B6B5", + "docketEntryUUID": "9C7537E9-7CBB-4EAD-AE78-1EF03C41ECDD", + "caseInstanceUUID": "0ACBCD55-720F-4375-AF54-03C11D9FF6A9", + "caseNumber": "CL-2022-0783", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "Keith George Barton, Jr. v. Jocelyn Rachelle Barton (Appeal from Mobile Circuit Court: DR-18-500094.02).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "014C3D67-9FB6-48DA-9D2D-4FC5A04262B9", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "8E214A11-D1E7-49D8-9F5B-5D916A0D4A58", + "docketEntryUUID": "EC50D64D-58D8-4C30-80F8-258016255E3A", + "caseInstanceUUID": "91F7D246-CC62-4FA8-9025-2627D618CF27", + "caseNumber": "CL-2022-1182", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "J.P. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-19-931.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "C7ACA709-20E6-40EA-9F2C-B7CCEAD92EDD", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C6EBF075-91F2-4237-B149-078F25FE1EA2", + "docketEntryUUID": "CA492230-445D-4D8C-9786-C8FC2279812C", + "caseInstanceUUID": "239B7CB1-EAC7-4330-9DF7-0D730FED1564", + "caseNumber": "CL-2023-0080", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "K.G. v. M.L. (Appeal from Cullman Probate Court: AD-20-67).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "C16A2B37-36B0-4C3D-8411-8654D75A53AF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "5F258778-2C4A-4D0D-94DB-B3710F2A1815", + "docketEntryUUID": "5735B8A7-3B17-4AD6-ACF4-935EEDBFF307", + "caseInstanceUUID": "9747CC70-96BB-499E-836B-796063D8DB52", + "caseNumber": "CL-2022-0887", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "E.M. v. C.S. and P.S. (Appeal from Tuscaloosa Juvenile Court: JU-12-273.02).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "F46A5C9F-F82D-4467-B4B7-E40A18C8EEA9", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "2A914E02-4ABC-4636-9673-AA02C5892BE7", + "docketEntryUUID": "4F470098-2B9A-4272-84BC-E3BFD116B13C", + "caseInstanceUUID": "229D48B5-0743-43A3-A33C-DE5E4807C7CD", + "caseNumber": "CL-2022-1183", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.B. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-19-931.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "D77E3CB9-FD9D-4B3C-9B57-38F7CCD9D2C1", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "A8122932-0DC9-4F96-9F96-42C2A0DCE69F", + "docketEntryUUID": "21CBE7D9-E21F-4C7A-BF00-B00B1E34ABEF", + "caseInstanceUUID": "E22E141C-ED6A-4419-8188-3E1C3FB0CECB", + "caseNumber": "CL-2022-1184", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.B. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-19-932.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "2634DFF8-0A0C-4B78-805F-61C776DD5984", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F0D079D3-661E-4A24-9377-CD531F9A4F14", + "docketEntryUUID": "DC49563E-355C-4BB4-9B5D-ED9FBFE977F6", + "caseInstanceUUID": "E0FF1236-836C-4000-A0FE-2A3F6330881C", + "caseNumber": "CL-2022-1185", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.B. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-19-933.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "A85C6164-0685-4186-BB05-3E999599DAB2", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "95A9FBB6-0DD2-41F0-8F41-252B93A402DA", + "docketEntryUUID": "9199C026-DFE1-4FE6-A739-BD4F34935673", + "caseInstanceUUID": "5F037DE2-0B4F-4610-BBA6-7752F49C4553", + "caseNumber": "CL-2022-1239", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "J.P. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-19-932.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "26811054-0FA7-4D65-9015-CAA58A7F1297", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "82A16AA4-C936-42FC-A977-B95E77B4E049", + "docketEntryUUID": "B9FA88C0-C937-485F-A9D4-C7B1E7B525FF", + "caseInstanceUUID": "23D721C0-015D-466C-934A-05FCA44E3103", + "caseNumber": "CL-2022-1240", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "J.P. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-19-933.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 8, + "documents": [ + { + "documentLinkUUID": "C28F06C8-2636-4533-805B-85025CBF5402", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "B1B21D5B-EB07-4B3D-BBAA-96C9C92796B8", + "docketEntryUUID": "2C721F70-C56B-49E5-AC78-31957E725ED5", + "caseInstanceUUID": "045C2E20-AD74-49F3-B854-6D00C18C1E60", + "caseNumber": "CL-2022-1192", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "D.S. v. Pike County Department of Human Resources (Appeal from Pike Juvenile Court: JU-22-77.01).", + "decision": "Decision - Appeal Dismissed in Part; Affirmed.", + "orderBy": 9, + "documents": [ + { + "documentLinkUUID": "7C7D8A39-BC64-4BE6-AF37-18EA44E93A79", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "5e9bc8fa-4e3a-4cd7-bf0b-46f80e437a0d", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-06-02", + "publicationName": "Court of Civil Appeals Release List - June 2, 2023", + "publicationNote": "Decisions Announced on Friday, June 2, 2023", + "groupFlag": true, + "scheduledDate": "2023-06-02T13:59:00.000+00:00", + "publicationDate": "2023-06-02T14:15:28.227+00:00", + "publicationItems": [ + { + "publicationItemUUID": "59B201C8-5402-4164-B4D8-5C5DB7D655E1", + "docketEntryUUID": "E5CC4D27-6A7C-4133-B760-653A9A5939B3", + "caseInstanceUUID": "FD95B0DE-A1DB-4CAB-ADC2-070D6F40DC0B", + "caseNumber": "CL-2022-1202", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "A.I. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-18-1207.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5283DBE3-5771-40C1-B60E-E79694D784E6", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "18259BD0-4E9B-49AD-8FCB-DB6BE644073F", + "docketEntryUUID": "6B3388F5-A3CE-4742-BE6B-E0B378500314", + "caseInstanceUUID": "F2D1122E-F3EF-4749-90DF-F70D44E2C269", + "caseNumber": "CL-2022-0694", + "groupName": "Rehearing", + "groupOrderBy": 2, + "title": "T.W. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-19-972.02).", + "decision": "Applications Granted; Opinion of February 10, 2023, Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "AF44137B-0600-49F8-BD81-71AD00F0F354", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "245D745B-4C71-434A-9D01-3350F05795C2", + "docketEntryUUID": "AB99ADE1-67A4-41B1-9271-AAC694807DE8", + "caseInstanceUUID": "F6D09804-6385-432E-9E92-376054717860", + "caseNumber": "CL-2022-0695", + "groupName": "Rehearing", + "groupOrderBy": 2, + "title": "T.W. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-19-973.02).", + "decision": "Applications Granted; Opinion of February 10, 2023, Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "4D66F20C-A917-476E-A30E-6E1F1226730A", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D3D039EC-30AD-4CE6-B810-DFFEA419E91A", + "docketEntryUUID": "B7E19705-391D-403F-960E-260A75184B0A", + "caseInstanceUUID": "025AA02D-1880-4CAB-B819-4AC3543B87EE", + "caseNumber": "CL-2022-1203", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "A.I. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-18-1208.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "0F286841-333B-40FA-A77C-6363EBCEB991", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "62E223CA-42E3-4ED2-ABE5-D2CAD26411E8", + "docketEntryUUID": "B02B828A-A422-4ACB-8457-3C49B6675338", + "caseInstanceUUID": "B96D8A3C-793F-4374-8334-6DCDCC5D33D6", + "caseNumber": "CL-2022-1204", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "A.I. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-21-1222.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "DFA703D1-8E98-4A5E-9A64-99D1BA526F93", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9C796835-34FE-4F8E-90A4-F5D372E4FFA8", + "docketEntryUUID": "7C41F9E6-AFCE-4FB7-ABE8-A954A1DBD02B", + "caseInstanceUUID": "B6796DDA-9F75-46A3-A630-777A7968D33E", + "caseNumber": "CL-2022-1257", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "Demetrius Sullen v. Jack Ingram Motors, Inc. (Appeal from Montgomery Circuit Court: CV-21-234).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "A6DFE64B-3387-4F0E-885C-8593B531CEE4", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "9457e263-5ef1-470b-bd2c-a25309811e99", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-05-31", + "publicationName": "Court of Civil Appeals Release List - May 31, 2023", + "publicationNote": "Court of Civil Appeals Releases for May 31, 2023", + "groupFlag": true, + "scheduledDate": "2023-05-31T16:15:00.000+00:00", + "publicationDate": "2023-05-31T16:22:56.670+00:00", + "publicationItems": [ + { + "publicationItemUUID": "23DA7A0F-5BE7-4153-97A1-B602956F82E7", + "docketEntryUUID": "63375C05-10D4-4CA6-8626-678546F5D09C", + "caseInstanceUUID": "5F6D6217-39EE-42CA-BC73-577B6A43F197", + "caseNumber": "CL-2023-0368", + "groupName": "Edwards, J.", + "groupOrderBy": 1, + "title": "Ex parte C.C. PETITION FOR A WRIT OF MANDAMUS (In re: H.C. v. C.C.)(Madison Circuit Court DR-23-3229).", + "decision": "Decision - Petition Granted; Writ Issued.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "36A418F7-5DD9-4EED-8549-2915D21715A6", + "documentName": "Decision" + } + ] + } + ] + } + ] + }, + "page": { + "size": 25, + "totalElements": 28, + "totalPages": 2, + "number": 0 + } +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/alacivapp_example.compare.json b/tests/examples/opinions/united_states/alacivapp_example.compare.json index 80c2081ff..69058db98 100644 --- a/tests/examples/opinions/united_states/alacivapp_example.compare.json +++ b/tests/examples/opinions/united_states/alacivapp_example.compare.json @@ -1,24 +1,122 @@ [ { - "case_dates": "2023-01-04", - "case_names": "James L. Cason, III v. Stacy Leigh Cason", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127164&event=6I10J3AHQ", + "case_dates": "2023-11-09", + "case_names": "Richard D. Hollar v. Carrie A. Hollar (Appeal from Chilton Circuit Court: DR-19-900201).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/1da1a297-c391-4e4f-9480-1bc68b46f21a/cms/case/990A1541-5E9D-4F25-BBC4-30C7E92AA8E8/docketentrydocuments/1DA3F254-DBA4-4F5B-98C6-068AABD2B35C", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2210227", - "judges": "JUDGE FRIDY", - "case_name_shorts": "" + "docket_numbers": "CL-2022-1230", + "judges": "Fridy, J.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2023-01-04", - "case_names": "A.R.H.B. v. Madison County Department of Human Resources", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127165&event=6I10J3AKS", + "case_dates": "2023-11-09", + "case_names": "M.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-277.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/1da1a297-c391-4e4f-9480-1bc68b46f21a/cms/case/A0AEAD62-73EA-48AA-B38F-069AF119647F/docketentrydocuments/697B3B6A-EB1F-4D45-9CE9-B1017469D7FE", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CL-2022-0541", - "judges": "PRESIDING JUDGE THOMPSON", - "case_name_shorts": "A.R.H.B." + "docket_numbers": "CL-2022-1284", + "judges": "", + "case_name_shorts": "M.G.", + "per_curiam": false + }, + { + "case_dates": "2023-11-09", + "case_names": "M.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-276.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/1da1a297-c391-4e4f-9480-1bc68b46f21a/cms/case/8081617C-797F-442D-8D50-DB7407B19B46/docketentrydocuments/A9A76486-3540-4AB5-BD0C-40163700409A", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1283", + "judges": "", + "case_name_shorts": "M.G.", + "per_curiam": false + }, + { + "case_dates": "2023-11-09", + "case_names": "K.D.S. v. M.P. and F.P. (Appeal from Tallapoosa Circuit Court: JU-20-20.01).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/1da1a297-c391-4e4f-9480-1bc68b46f21a/cms/case/242BA2E0-4474-4480-B98F-210627379C5F/docketentrydocuments/ED65723C-35E4-4DAA-99E5-05BB78FDFDEF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1177", + "judges": "", + "case_name_shorts": "K.D.S.", + "per_curiam": true + }, + { + "case_dates": "2023-11-09", + "case_names": "K.D.S. v. M.P. and F.P. (Appeal from Tallapoosa Circuit Court: JU-20-19.01).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/1da1a297-c391-4e4f-9480-1bc68b46f21a/cms/case/55B39F8C-2E1A-49F4-B483-BA633B28A74C/docketentrydocuments/A8F66065-5F71-4E80-86F2-6D90E773589F", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1176", + "judges": "", + "case_name_shorts": "K.D.S.", + "per_curiam": true + }, + { + "case_dates": "2023-11-09", + "case_names": "John Paul Madrigal v. Courtney H. Madrigal (Appeal from Talladega Circuit Court: DR-20-900004.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/1da1a297-c391-4e4f-9480-1bc68b46f21a/cms/case/36130E2C-4352-4A25-B7A8-7EA91781EF7F/docketentrydocuments/6796BB42-EB50-4B84-A8ED-8EB2B29F3DFB", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1265", + "judges": "Fridy, J.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-11-09", + "case_names": "D.H. v. Tuscaloosa County Department of Human Resources (Appeal from Tuscaloosa Juvenile Court: JU-19-513.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/1da1a297-c391-4e4f-9480-1bc68b46f21a/cms/case/4AF983D1-7824-4913-B33B-1DD1849E8369/docketentrydocuments/8E86DE1D-2427-4503-8984-BEC704F768A2", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1095", + "judges": "", + "case_name_shorts": "D.H.", + "per_curiam": false + }, + { + "case_dates": "2023-11-09", + "case_names": "D.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-277.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/1da1a297-c391-4e4f-9480-1bc68b46f21a/cms/case/B9C9D2E8-9DC0-4AF2-AAB9-32E3BA0DDC37/docketentrydocuments/5FAC0778-7A15-4AB3-AB3B-2D219466AB14", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1282", + "judges": "", + "case_name_shorts": "D.G.", + "per_curiam": false + }, + { + "case_dates": "2023-11-09", + "case_names": "D.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-276.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/1da1a297-c391-4e4f-9480-1bc68b46f21a/cms/case/D3914036-3BC6-4C36-BAAF-E12E58FA71B2/docketentrydocuments/05F95A51-8CB0-4922-9843-17F260309AD0", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2022-1281", + "judges": "", + "case_name_shorts": "D.G.", + "per_curiam": false + }, + { + "case_dates": "2023-11-09", + "case_names": "B.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-71.02).", + "download_urls": "https://publicportal-api.alappeals.gov/courts/1da1a297-c391-4e4f-9480-1bc68b46f21a/cms/case/83704147-7B2F-4C16-8FA5-72A142B65BFF/docketentrydocuments/072C46FA-7E51-4D9C-9CEE-10DD390E7E2B", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CL-2023-0255", + "judges": "", + "case_name_shorts": "B.W.", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/alacivapp_example.html b/tests/examples/opinions/united_states/alacivapp_example.html deleted file mode 100644 index 6bebf3cad..000000000 --- a/tests/examples/opinions/united_states/alacivapp_example.html +++ /dev/null @@ -1,397 +0,0 @@ - - - - displaydocs2.cfm - - - - - - - - - - - - -
- -
-
-
-
- - - - -
-
- -
- -
-
-
-
- - - -
-
-
- -
- - - - - - - - -
-
-
-
- -
- -
- -
- -
- - of 3 -
-
- - - - - - - Current View - - -
- - - - - - - -
-
-
- -
- -
- - - -
-
- -
-
- -
-
ALABAMA COURT OF CIVIL APPEALS
DECISIONS ANNOUNCED ON

FRIDAY, DECEMBER 16, 2022

PRESIDING JUDGE THOMPSON

2210451 Jimmy Beavers and Beavers, Inc v. Darren Lee Norris (Appeal
from Covington Circuit Court: CV-20-900018).

Affirmed. No Opinion.

CL-2022-0541 A.R.H.B. v. Madison County Department of Human
Resources (Appeal from Madison Juvenile Court: JU-
20-412.02).

Reversed And Remanded.

JUDGE EDWARDS

CL-2022-0563 L.M. v. Houston County Department of Human
Resources (Appeal from Houston Juvenile Court: JU-17-
430.03).

(Consolidated with CL-2022-0564, CL-2022-0565, and CL-2022-0566)

Affirmed. No Opinion.

CL-2022-0564 L.M. v. Houston County Department of Human
Resources (Appeal from Houston Juvenile Court: JU-17-
431.03).

(Consolidated with CL-2022-0563, CL-2022-0565, and CL-2022-0566)

Affirmed. No Opinion.
2
CL-2022-0565 L.M. v. Houston County Department of Human
Resources (Appeal from Houston Juvenile Court: JU-17-
432.03).

(Consolidated with CL-2022-0563, CL-2022-0564, and CL-2022-0566)

Affirmed. No Opinion.

CL-2022-0566 L.M. v. Houston County Department of Human
Resources (Appeal from Houston Juvenile Court: JU-19-
657.02).

(Consolidated with CL-2022-0563, CL-2022-0564, and CL-2022-0565)

Affirmed. No Opinion.

JUDGE HANSON

CL-2022-0602 Matthew Sherman Phillips v. Governor Kay Ivey et al.
(Appeal from Montgomery Circuit Court: CV-20-480).

Affirmed. No Opinion.

CL-2022-0753 N.P. v. M.K. (Appeal from Cleburne Juvenile Court: JU-
21-47.01).

(Consolidated with CL-2022-00754)

Affirmed. No Opinion.

CL-2022-0754 N.P. v. M.K. (Appeal from Cleburne Juvenile Court: JU-
21-48.01).

(Consolidated with CL-2022-0753)

Affirmed. No Opinion.
3
JUDGE FRIDY

2210227 James L. Cason, III v. Stacy Leigh Cason (Appeal from Shelby
Circuit Court: DR-19-900224).

Appeal Dismissed In Part; Reversed In Part; And Remanded
With Instructions.

2210485 Lacey Blankenship v. Chris Blankenship (Appeal from
Randolph Circuit Court: DR-19-900108.02).

Affirmed. No Opinion.

CL-2022-0731 J.J. v. J.C. (Appeal from Calhoun Juvenile Court: JU-
22-115.01).

Affirmed. No Opinion.
-
- -
- -
- -
- -
-
- -
-
- - -
-
- -
- File name: -

-

-
-
- File size: -

-

-
-
-
- Title: -

-

-
-
- Author: -

-

-
-
- Subject: -

-

-
-
- Keywords: -

-

-
-
- Creation Date: -

-

-
-
- Modification Date: -

-

-
-
- Creator: -

-

-
-
-
- PDF Producer: -

-

-
-
- PDF Version: -

-

-
-
- Page Count: -

-

-
-
- Page Size: -

-

-
-
-
- Fast Web View: -

-

-
-
- -
-
-
- -
-
- - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/alacivapp_example.json b/tests/examples/opinions/united_states/alacivapp_example.json new file mode 100644 index 000000000..0ce3794e9 --- /dev/null +++ b/tests/examples/opinions/united_states/alacivapp_example.json @@ -0,0 +1,4739 @@ +{ + "_embedded": { + "results": [ + { + "publicationUUID": "a5044506-38cf-45e6-a0fa-b03e2923e6dd", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-11-09", + "publicationName": "Court of Civil Appeals Release List - November 9, 2023", + "publicationNote": "Decisions Announced on Thursday, November 9, 2023", + "groupFlag": true, + "scheduledDate": "2023-11-09T14:15:00.000+00:00", + "publicationDate": "2023-11-09T14:55:51.829+00:00", + "publicationItems": [ + { + "publicationItemUUID": "9AA6954D-C3B4-4E3E-888D-95920E3BB677", + "docketEntryUUID": "67155BE4-1E22-4851-BB8F-A47EAF3DF634", + "caseInstanceUUID": "1B1CA827-2759-4FEB-845A-D325380EA2E8", + "caseNumber": "CL-2023-0257", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "E.C. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-22-64.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "B0CA9E09-66E8-4117-BAC0-B0E9550BFD49", + "docketEntryUUID": "3B6C3500-B911-4801-999F-AC5FC8042A43", + "caseInstanceUUID": "990A1541-5E9D-4F25-BBC4-30C7E92AA8E8", + "caseNumber": "CL-2022-1230", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Richard D. Hollar v. Carrie A. Hollar (Appeal from Chilton Circuit Court: DR-19-900201).", + "decision": "Decision - Affirmed In Part; Reversed In Part; And Remanded With Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "1DA3F254-DBA4-4F5B-98C6-068AABD2B35C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "5E4CFB93-E714-4708-88A3-4CBAE0D88C6C", + "docketEntryUUID": "2807E578-FF3D-46A8-8E2B-EC8FFE72456A", + "caseInstanceUUID": "4AF983D1-7824-4913-B33B-1DD1849E8369", + "caseNumber": "CL-2022-1095", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "D.H. v. Tuscaloosa County Department of Human Resources (Appeal from Tuscaloosa Juvenile Court: JU-19-513.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "8E86DE1D-2427-4503-8984-BEC704F768A2", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "8B788B85-9BD7-42C1-ABC1-BE4F0C332D2E", + "docketEntryUUID": "4EE54D66-260B-495D-AD64-9DC3299446EC", + "caseInstanceUUID": "55B39F8C-2E1A-49F4-B483-BA633B28A74C", + "caseNumber": "CL-2022-1176", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "K.D.S. v. M.P. and F.P. (Appeal from Tallapoosa Circuit Court: JU-20-19.01).", + "decision": "Decision - Affirmed In Part; Reversed In Part; And Remanded With Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "A8F66065-5F71-4E80-86F2-6D90E773589F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2592AD6F-58E9-4462-BA65-7A6BEC109B00", + "docketEntryUUID": "32734871-266E-414B-BBF1-E2FC60A419B0", + "caseInstanceUUID": "36130E2C-4352-4A25-B7A8-7EA91781EF7F", + "caseNumber": "CL-2022-1265", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "John Paul Madrigal v. Courtney H. Madrigal (Appeal from Talladega Circuit Court: DR-20-900004.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "6796BB42-EB50-4B84-A8ED-8EB2B29F3DFB", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F474E34B-A9EB-42AA-AFD8-4163786ED944", + "docketEntryUUID": "55A67F97-50D8-43A5-A8BD-1E869A06141E", + "caseInstanceUUID": "242BA2E0-4474-4480-B98F-210627379C5F", + "caseNumber": "CL-2022-1177", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "K.D.S. v. M.P. and F.P. (Appeal from Tallapoosa Circuit Court: JU-20-20.01).", + "decision": "Decision - Affirmed In Part; Reversed In Part; And Remanded With Instructions.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "ED65723C-35E4-4DAA-99E5-05BB78FDFDEF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8F2B1C7A-D94B-4F36-B4A2-98D07030A8A4", + "docketEntryUUID": "97285C5C-0B67-45C6-B854-385175B89A5C", + "caseInstanceUUID": "D3914036-3BC6-4C36-BAAF-E12E58FA71B2", + "caseNumber": "CL-2022-1281", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "D.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-276.02).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "05F95A51-8CB0-4922-9843-17F260309AD0", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "18CB00C7-E8FD-41F7-B3A7-CC42977D149D", + "docketEntryUUID": "E9F6C460-476D-4F64-A48C-4892ECAD1878", + "caseInstanceUUID": "B9C9D2E8-9DC0-4AF2-AAB9-32E3BA0DDC37", + "caseNumber": "CL-2022-1282", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "D.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-277.02).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "5FAC0778-7A15-4AB3-AB3B-2D219466AB14", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "E83689AB-CCCC-483B-B3B3-6F0CC59D4656", + "docketEntryUUID": "01E5145A-FD1C-47B5-980F-78A4AD23CD3C", + "caseInstanceUUID": "8081617C-797F-442D-8D50-DB7407B19B46", + "caseNumber": "CL-2022-1283", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "M.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-276.02).", + "decision": "Rehearing - Overruled", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "A9A76486-3540-4AB5-BD0C-40163700409A", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "08C78B3F-0494-40DD-9B2F-DA89E3AF7169", + "docketEntryUUID": "E0ADD1B4-18C8-4EB3-A381-C9ABBE7C7A68", + "caseInstanceUUID": "07B023F2-DE54-4A84-B896-1B582354A431", + "caseNumber": "CL-2023-0207", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "B.P.W. v. Talladega County Department of Human Resources (Appeal from Talladega Juvenile Court: JU-21-100031.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 4 + }, + { + "publicationItemUUID": "BA4339B1-6CED-4E5C-B4DF-A7116C60B724", + "docketEntryUUID": "572B2C66-6676-4B7E-8145-EAED77FC59AA", + "caseInstanceUUID": "A0AEAD62-73EA-48AA-B38F-069AF119647F", + "caseNumber": "CL-2022-1284", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "M.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-277.02).", + "decision": "Rehearing - Overruled", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "697B3B6A-EB1F-4D45-9CE9-B1017469D7FE", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "EBD82AB6-ED2A-47B1-AA63-6DD5F1A4629C", + "docketEntryUUID": "C563769A-D58B-4758-93EA-A79B2524AAFC", + "caseInstanceUUID": "83704147-7B2F-4C16-8FA5-72A142B65BFF", + "caseNumber": "CL-2023-0255", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "B.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-71.02).", + "decision": "Rehearing - Overruled", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "072C46FA-7E51-4D9C-9CEE-10DD390E7E2B", + "documentName": "Order" + } + ] + } + ] + }, + { + "publicationUUID": "b3d36331-cf5c-42cc-840e-41071414bf1d", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-11-03", + "publicationName": "Court of Civil Appeals Release List - November 3, 2023", + "publicationNote": "Decisions Announced on Friday, November 3, 2023", + "groupFlag": true, + "scheduledDate": "2023-11-03T13:15:00.000+00:00", + "publicationDate": "2023-11-03T13:17:31.841+00:00", + "publicationItems": [ + { + "publicationItemUUID": "2251FF5E-20F4-4A5D-BB44-6224D82E3B63", + "docketEntryUUID": "874FBA3F-B566-4981-8284-5BF51398C4BA", + "caseInstanceUUID": "C1B4AC9C-3D18-4D60-8EDD-68DA847C458E", + "caseNumber": "CL-2023-0074", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "S.R. v. B.G. and K.G. (Appeal from Morgan Juvenile Court: JU-19-142.03).", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "7D688543-290E-4F8D-BEC2-40164CFF3C30", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F6D3B785-9E38-41AF-AEDF-206676369205", + "docketEntryUUID": "2BCDAEA2-52BD-489D-97E6-EA2FB290B0AB", + "caseInstanceUUID": "F992C62F-BEE0-4F95-A008-D1F5AA419D13", + "caseNumber": "CL-2023-0256", + "groupName": "Per Curiam", + "groupOrderBy": 3, + "title": "D.S. v. L.T. (Appeal from Tuscaloosa Juvenile Court: JU-22-882.01).", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "4A935333-BF56-4695-961E-110D002F84E8", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8BFBC6BB-C90C-48FF-8453-B4FCB67F9548", + "docketEntryUUID": "A4D34ACB-1B07-4CF9-8827-BF032551EFEC", + "caseInstanceUUID": "3C064155-67FC-47F8-B8A8-FFE8645DDDB1", + "caseNumber": "CL-2023-0232", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "J.E. v. Lawrence County Department of Human Resources (Appeal from Lawrence Juvenile Court: JU-20-158.01).", + "decision": "Decision - Affirmed in Part; Dismissed in Part", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "1B79818C-1559-49C2-BDED-A894174FA091", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9625450F-74F2-4576-B92B-8A2BAE121BD6", + "docketEntryUUID": "01CC5333-3999-48C1-9593-3F9A57F472B0", + "caseInstanceUUID": "AE2FE32A-F98B-4C48-AC6E-41CFAA3B6CBB", + "caseNumber": "CL-2023-0075", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "S.R. v. B.G. and K.G. (Appeal from Morgan Juvenile Court: JU-19-144.03).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "92763036-780A-4218-AE90-E329DC2378A8", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "7d732fec-4a76-4172-b29e-1e2a8dcbd960", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-10-27", + "publicationName": "Court of Civil Appeals Release List - October 27, 2023", + "publicationNote": "Decisions Announced on Friday, October 27, 2023", + "groupFlag": true, + "scheduledDate": "2023-10-27T13:15:00.000+00:00", + "publicationDate": "2023-10-27T13:13:27.833+00:00", + "publicationItems": [ + { + "publicationItemUUID": "18EACE6E-B9B4-4F21-B6E2-E5FD3A4A70B9", + "docketEntryUUID": "D32B482A-D314-43F3-A70B-2EE05D183CA6", + "caseInstanceUUID": "64FD18F0-15BF-4171-B764-9BE5388AF023", + "caseNumber": "CL-2023-0179", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.P. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-18-205.03).", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "9E7FA313-8650-4CC4-A28A-034064A4D764", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "BD72D566-4B9E-48A6-B8AD-3831D8D282C3", + "docketEntryUUID": "E439FF30-E2AD-4843-B862-50E10D7BEF0E", + "caseInstanceUUID": "80CAAA4B-C51C-4573-BDAE-6FD6A2AA34C7", + "caseNumber": "CL-2023-0248", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "A.S. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-21-45.03).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "F8912C0F-F7CD-4411-8E9C-6C09F7C6A44D", + "docketEntryUUID": "C60B3DFD-07FE-428B-972D-BD43C3E98E2B", + "caseInstanceUUID": "913556FB-F3EE-4474-941A-5B211DECB6F3", + "caseNumber": "CL-2023-0180", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.P. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-18-206.03).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "E6AF9BF1-2BC5-43EC-ACE6-7D5633A1A0D4", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "20303BF6-3E04-4A7C-B22B-8EEF860A3D36", + "docketEntryUUID": "0B0BDB53-0BA2-4662-B0D7-DD67D34260F1", + "caseInstanceUUID": "DEBB4C0E-1783-48A0-9143-0AA7F6B1A8FA", + "caseNumber": "CL-2023-0181", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.P. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-18-207.04).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "16BC0776-3D56-4FF9-9CDC-41057637B309", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "602EC3B5-C7F2-448D-9263-3EB200DB75A2", + "docketEntryUUID": "5349EFA3-CBCD-4909-A468-ABAADE2C9640", + "caseInstanceUUID": "B41C7D9E-2911-4273-A56C-3AE4D0764D66", + "caseNumber": "CL-2023-0182", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.P. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-20-281.02).", + "decision": "Decision - Affirmed.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "5602F587-7E90-4471-A1B9-69E5005F6E22", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "A80F94A5-2F0F-4640-A58A-A7CC2FF751EC", + "docketEntryUUID": "B0088AF1-2213-4922-B674-B582911B2E9A", + "caseInstanceUUID": "3F9DAB71-AB3C-4347-AF0B-A2A0F3BF406B", + "caseNumber": "CL-2023-0183", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.P. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-20-282.02).", + "decision": "Decision - Affirmed.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "8C7BF478-F10D-462A-90FA-7038343CDC56", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D3403326-5C8F-4101-A1AA-B4E66B9B6762", + "docketEntryUUID": "8845A06B-2931-4D96-8F76-3EF7431EC564", + "caseInstanceUUID": "CCEB2FBD-BDD9-4D68-9503-005CB33F655F", + "caseNumber": "CL-2023-0184", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.P. v. DeKalb County Department of Human Resources (Appeal from DeKalb Juvenile Court: JU-22-73.02).", + "decision": "Decision - Affirmed.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "BD293280-738D-43CA-A2B5-6004AAEDE8C5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2C7A17C5-8B85-4CA6-AA9C-D4CEEF788140", + "docketEntryUUID": "FF6AF786-53CF-421A-A61C-CC6917D0DAD0", + "caseInstanceUUID": "8FEC07A5-143A-4FD0-AF85-E57CEE06A17D", + "caseNumber": "CL-2023-0354", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "L.V. v. Cullman County Department of Human Resources (Appeal from Cullman Juvenile Court: JU-20-59.04).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 7 + }, + { + "publicationItemUUID": "CA0A73D8-B02E-4D8C-86FD-AB4E19CFEA7E", + "docketEntryUUID": "84FBFA1D-96F1-4B6E-9928-719A030E255B", + "caseInstanceUUID": "4991F28F-8057-4330-8F29-E85CD5B1695B", + "caseNumber": "CL-2023-0355", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "L.V. v. Cullman County Department of Human Resources (Appeal from Cullman Juvenile Court: JU-20-283.04).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 8 + }, + { + "publicationItemUUID": "A8821B8D-4144-42CA-AE85-C540583BAD5A", + "docketEntryUUID": "B1A305BA-53F7-4D12-A5C1-8E02500CB555", + "caseInstanceUUID": "D91097A9-2CC3-4C82-B273-43F173B84C0D", + "caseNumber": "CL-2023-0449", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "E.A.(B) v. Cullman County Department of Human Resources (Appeal from Cullman Juvenile Court: JU-21-582.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 9 + }, + { + "publicationItemUUID": "92B3BEAF-84CC-4459-9E24-40A44B6CB299", + "docketEntryUUID": "90C0FC66-2AF5-4EC1-BF84-3EE7C2798D0A", + "caseInstanceUUID": "9A7C3516-3CA1-4D89-A2D5-8852B4C9D2F8", + "caseNumber": "CL-2023-0523", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Ex parte C.H. PETITION FOR WRIT OF MANDAMUS: (In re: In the matter of S.A.) (Jefferson Juvenile Court, Bessemer Division: JU-18-293.03)", + "decision": "Decision - Petition Granted.", + "orderBy": 10, + "documents": [ + { + "documentLinkUUID": "AE3BE730-2522-4496-BE51-1F22BDB16FCC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9E9979A7-EDAA-4412-9BA6-6F80C59044B6", + "docketEntryUUID": "5FC0DE9E-9FC0-43C3-8B6D-C046DB65433E", + "caseInstanceUUID": "BB1AC884-E00C-493A-8960-0FBC8AD1D5EF", + "caseNumber": "CL-2023-0567", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Clifford Muldrow v. J. Drayton Smith, III and Southern Dental Cosmetic and Family Dentistry (Appeal from Shelby Circuit Court: CV-23-18).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 11 + } + ] + }, + { + "publicationUUID": "007d6613-e658-4445-9fa3-59acfb2f7c57", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-10-20", + "publicationName": "Court of Civil Appeals Release List - October 20, 2023", + "publicationNote": "Decisions Announced on Friday, October 20, 2023", + "groupFlag": true, + "scheduledDate": "2023-10-20T13:30:00.000+00:00", + "publicationDate": "2023-10-20T13:39:33.082+00:00", + "publicationItems": [ + { + "publicationItemUUID": "C04C9E32-76E3-4AA0-8323-95B9E7EFB8CC", + "docketEntryUUID": "45239B51-E3F4-495B-862F-A9C83BADF435", + "caseInstanceUUID": "5B56A4B8-EB3E-45E9-8682-A9D2FD9AEB14", + "caseNumber": "CL-2023-0076", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "A.W. v. Russell County Department of Human Resources (Appeal from Russell Juvenile Court: JU-21-47.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "F6DAEB20-79EB-4876-A252-F4F63A313A92", + "docketEntryUUID": "091D6482-D946-4CB4-A021-E3CF47E51CF7", + "caseInstanceUUID": "80F5228F-527B-49D2-9CA1-B526FD25A24D", + "caseNumber": "CL-2022-1147", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "B.L. v. Judge Zack Collins and M.D. (Appeal from Russell Juvenile Court: JU-14-136.09)", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "C49F37D9-25DF-426F-B5E3-E029679395F2", + "docketEntryUUID": "3B63C100-43BD-4CEF-8039-57F642754DCA", + "caseInstanceUUID": "78CA75AD-43DD-4895-8892-52B7C5679E59", + "caseNumber": "CL-2023-0223", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "M.S. and D.S. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-23-67.01).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "3BB4DC6A-FC04-4697-AF5A-FFA3926B2A19", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8285F8C1-C124-41FD-851C-F4B003CF8758", + "docketEntryUUID": "34E7A455-01DF-4C8D-8CB1-0F8F58B9B7A6", + "caseInstanceUUID": "4EA31DD0-1B3B-45F5-BF55-F74C468F0C63", + "caseNumber": "CL-2022-1041", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Jessica Lynn Francis Orr v. Skyler Demarcus Orr (Appeal from Lee Circuit Court: DR-19-120.01).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "61527DF7-7A45-4A29-8852-7909B00FA67C", + "docketEntryUUID": "1D658D26-4EC1-4D8B-BA39-F11B75CBE570", + "caseInstanceUUID": "5A95792C-F091-4E49-9D1D-BA61F619B1AC", + "caseNumber": "CL-2022-1042", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Jessica Lynn Francis Orr v. Skyler Demarcus Orr (Appeal from Lee Circuit Court: DR-19-120.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 2 + }, + { + "publicationItemUUID": "E2D1D203-A870-4D18-8028-1DEF6ED8F78F", + "docketEntryUUID": "386671BC-1DEB-43BE-9472-C27684BE35AE", + "caseInstanceUUID": "09714678-081F-461A-8509-367482EF76ED", + "caseNumber": "CL-2023-0259", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "A.R. v. C.R.M. (Appeal from Dale Probate Court: 21-263).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "1CE8ACE1-B9B9-41C7-AA76-04C70B31D0BF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "66CA7166-1A40-4A73-8E58-5D8D12DC8706", + "docketEntryUUID": "6503ED7F-1366-41DC-A9A2-71FA55D6F68F", + "caseInstanceUUID": "C5B155F4-9DAA-4E29-AFD0-3A0AA20E6556", + "caseNumber": "CL-2023-0077", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "A.W. v. Russell County Department of Human Resources (Appeal from Russell Juvenile Court: JU-21-48.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 2 + }, + { + "publicationItemUUID": "5211B4C5-BB80-499D-B86B-CA802CA446F0", + "docketEntryUUID": "2B802464-17B0-4896-A20B-A9D3552AA2C0", + "caseInstanceUUID": "3C7F1E11-FB4E-4369-8598-6016E699509E", + "caseNumber": "CL-2022-1151", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "M.D. v. Russell County Department of Human Resources (Appeal from Russell Juvenile Court: JU-14-136.09).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 2 + }, + { + "publicationItemUUID": "093A20D9-5FC4-442F-BD1B-49C79A44EAAE", + "docketEntryUUID": "E9AAF537-142A-419E-9999-96085D9AE59C", + "caseInstanceUUID": "05C8856E-F84F-4323-887A-1973CC560A76", + "caseNumber": "CL-2023-0078", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "A.W. v. Russell County Department of Human Resources (Appeal from Russell Juvenile Court: JU-21-51.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 3 + }, + { + "publicationItemUUID": "82AD5505-26A1-47BF-B854-7E6F69EAAB9C", + "docketEntryUUID": "E84FCD5F-99E3-46E7-9526-90E0472EC186", + "caseInstanceUUID": "A1436215-F3A5-43F0-855A-FF0916E7B781", + "caseNumber": "CL-2023-0049", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "S.B. v. Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-21-352.02).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 3 + }, + { + "publicationItemUUID": "36D76759-8A01-419F-BE63-7DD76BAAE7A2", + "docketEntryUUID": "2522E12A-4D88-4BE9-880E-65D61B3879BF", + "caseInstanceUUID": "0EEDEFF7-B76C-41E3-8E32-645CA7795796", + "caseNumber": "CL-2023-0052", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "D.J. v. D.D., C.D., and Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-19-134.04).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 4 + }, + { + "publicationItemUUID": "D67FA1AD-8C52-4477-96FE-16E1234B0ADC", + "docketEntryUUID": "AAAEE530-1AA6-420E-9A54-FD9596FFE070", + "caseInstanceUUID": "93B20F86-5935-4EF9-84BA-C16DD8451889", + "caseNumber": "CL-2023-0053", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "D.J. v. D.D., C.D., and Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-18-375.04).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 5 + }, + { + "publicationItemUUID": "E5F1CDB3-64BF-4832-A4A3-9F8852073DF2", + "docketEntryUUID": "1BBCD2BF-654C-4FF8-8864-65538CFF00C9", + "caseInstanceUUID": "A406C36A-5E8A-4DAB-8992-DACE772CA44F", + "caseNumber": "CL-2023-0059", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Scott Hill v. Deutsche Bank National Trust Company (Appeal from Madison Circuit Court: CV-22-900711).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 6 + } + ] + }, + { + "publicationUUID": "ab8a829f-5261-4614-b6d3-568a4a07ce1e", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-10-13", + "publicationName": "Court of Civil Appeals Release List - October 13, 2023", + "publicationNote": "Decisions Announced on Friday, October 13, 2023", + "groupFlag": true, + "scheduledDate": "2023-10-13T13:45:00.000+00:00", + "publicationDate": "2023-10-13T13:45:10.320+00:00", + "publicationItems": [ + { + "publicationItemUUID": "8609D52A-8259-4B6C-B463-EB36F9CCEADD", + "docketEntryUUID": "F1E90BC9-B1B9-4A9B-8790-4D523A3ED39A", + "caseInstanceUUID": "2C975AEE-4438-43FC-807A-9FF11A203DC4", + "caseNumber": "CL-2023-0192", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "A.J.E. v. B.S. and V.S. (Appeal from Limestone Juvenile Court: JU-21-308.01).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "C74699D6-EC1B-4FBF-9AAC-29758BB14A7B", + "docketEntryUUID": "E8462A92-49A4-49D8-ACEF-57857E2EDD9A", + "caseInstanceUUID": "C592B783-E4E9-4556-9D4F-94EF44EC525D", + "caseNumber": "CL-2023-0193", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "A.J.E. v. B.S. and V.S. (Appeal from Limestone Juvenile Court: JU-21-309.01).", + "decision": "Decision - Affirmed by Unpublished Memorandum.", + "orderBy": 2 + } + ] + }, + { + "publicationUUID": "8459e0c8-c40b-4556-a61a-282300fab229", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-10-06", + "publicationName": "Court of Civil Appeals Release List - October 6, 2023", + "publicationNote": "Decisions Announced on Friday, October 6, 2023", + "groupFlag": true, + "scheduledDate": "2023-10-06T13:21:00.000+00:00", + "publicationDate": "2023-10-06T13:23:29.044+00:00", + "publicationItems": [ + { + "publicationItemUUID": "C59C18FE-EF30-432D-B9A1-B25B4399CD6E", + "docketEntryUUID": "09EEBBF6-9371-4F64-BC4E-B7F3F3BF8FE8", + "caseInstanceUUID": "25EFF376-0813-4EE0-B64B-07B8DACA896F", + "caseNumber": "CL-2023-0050", + "groupName": "Fridy, J.", + "groupOrderBy": 1, + "title": "Ex parte Cameron E. Whitlow (In re: Cameron E. Whitlow v. Madison County Board of Education, Allen Perkins, Sr., in his official capacity as superintendent of Madison County Schools; Nathan Curry, Brian Brooks, Dave Weis, Shere Rucker, and Angie Bates, in their official capacities as members of the Madison County Board of Education)(Madison Circuit Court: CV-22-900379)", + "decision": "Decision - Affirmed In Part; Reversed In Part; And Remanded.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "34D51F72-FD63-4FBD-9E96-C633428EBA3F", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "2b58fe1d-8ff8-4e4d-ac6d-e09e4e99802f", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-09-29", + "publicationName": "Court of Civil Appeals Release List - September 29, 2023", + "publicationNote": "Decisions Announced on Friday, September 29, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-29T14:00:00.000+00:00", + "publicationDate": "2023-09-29T13:57:24.422+00:00", + "publicationItems": [ + { + "publicationItemUUID": "02E193A2-62A7-4003-9E51-259F1C1FDA19", + "docketEntryUUID": "C57BD09C-6031-4222-8FE6-4D5DEA2ED669", + "caseInstanceUUID": "E11E37F8-2886-4B76-B85D-7A2E1B94650E", + "caseNumber": "CL-2023-0251", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "Karen Miller v. James L. Miller (Appeal from Butler Circuit Court: DR-20-900013).", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "D7471EE5-A7C5-4A34-AF71-BA8AA4829D7E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "AF810DAC-663C-42BF-9AC6-6BF2335FDFD5", + "docketEntryUUID": "FCC686CF-E0BC-457B-B287-066811EEB7BE", + "caseInstanceUUID": "16961A29-BF81-44D5-9158-A2D4FAB60288", + "caseNumber": "CL-2022-1155", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Kelly Rotta v. Daryl Rotta (Appeal from Lee Circuit Court: DR-21-900009).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "737B576F-276C-4193-BAD2-DFA935E64E7E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "79CC81CB-519C-4B66-B5A5-B20B83D27BE2", + "docketEntryUUID": "2C6565FC-20AA-45EE-9E06-89B794BBFB47", + "caseInstanceUUID": "3C6F1A22-DFB9-4208-A733-51EA8DC88C5B", + "caseNumber": "CL-2022-1021", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "R.A. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-20-545.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "DB536762-5C51-4593-9ECE-420223E591E6", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "9ABFDA37-A1A1-4C6B-9A47-CFE4C28986C1", + "docketEntryUUID": "DB31DBDA-516E-490B-9486-96C4B916EFAE", + "caseInstanceUUID": "661F7F42-7870-4A01-AC4D-7E660F74ACFF", + "caseNumber": "CL-2022-0847", + "groupName": "Per Curiam", + "groupOrderBy": 4, + "title": "Steven Mark Hayden v. William B. Cashion; Jim Pino & Associates, P.C.; James C. Pino; Jeffrey Brian Pino; Vicky Harkness; Deputy Steve Cotten; Magistrate Kelsey Finklea; and Judge John E. Rochester (Appeal from Elmore Circuit Court: CV-22-900001).", + "decision": "Decision - Affirmed in Part; Dismissed in Part with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "B6723680-89D6-483F-9145-B396C0E4A867", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7D33D6F4-D349-4567-8A45-423A409B1972", + "docketEntryUUID": "7BF1A4A4-26F2-4BAE-B474-8FBBBFC5FFB3", + "caseInstanceUUID": "206DE072-A324-4D89-A1E4-70AC95AC01FC", + "caseNumber": "CL-2023-0117", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "A.O. v. Mobile County Department of Human Resources (Appeal from Mobile Juvenile Court: JU-20-932.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "7239C729-ECCB-40CE-AAD8-958C4C6C0798", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D1624E16-3DED-4018-A658-52C73B04CA3C", + "docketEntryUUID": "EDC42F03-A7C0-46AF-8114-AD81283B9109", + "caseInstanceUUID": "1F3F1A3C-EE2E-449B-8EB6-B8BDC5D5588F", + "caseNumber": "CL-2023-0110", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Thomas Rhett McAdams, Sr. v. Thomas Rhett McAdams, Jr., and Olivia Grace Wilkinson (Appeal from Mobile Circuit Court: CV-22-901099).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "094466CC-4AB5-43BD-8FA6-772D5F3C57FC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "CFD7B5C6-E8A6-49DF-86BA-2A27BE2F89E1", + "docketEntryUUID": "EE45E99A-C825-4BD5-B4C4-FE073289213C", + "caseInstanceUUID": "A8F5E2B6-A98B-4C24-8CFC-35D9E62747B2", + "caseNumber": "CL-2023-0424", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Vickie Frantz v. Heidi A. DiLorenzo (Appeal from Montgomery Circuit Court: CV-20-900805).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "F1934585-8912-4F77-BED4-AF84BCB8840B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "A1B9CF09-562C-4975-BFBA-F7E2EAC5381B", + "docketEntryUUID": "B962B14D-4F40-4752-8428-4A1F6113DBE5", + "caseInstanceUUID": "ED52B6F2-9DC1-4BF7-AC64-49A2350F9A4F", + "caseNumber": "CL-2023-0006", + "groupName": "Per Curiam", + "groupOrderBy": 4, + "title": "Edward B. Jennings v. State of Alabama (Appeal from Tallapoosa Circuit Court: CV-19-900005).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "A28C8E38-AEF4-40DE-9374-DABD982053BC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "FFD5530F-E6EC-4C19-9799-E0889C0B389C", + "docketEntryUUID": "8ABE8E17-8A83-4029-AF0E-177F9D400B33", + "caseInstanceUUID": "CD00219E-CBF1-4895-90BC-024BEA55C16E", + "caseNumber": "CL-2022-1022", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "R.A. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-20-546.02).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "8A3B3E95-EFE7-4879-98F3-9A178CBA0BDD", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "1B7C132E-F0E5-461C-A315-533F9AF15A86", + "docketEntryUUID": "921913EF-220F-48F3-A4F5-FDE76099DC87", + "caseInstanceUUID": "AF6A16C1-7547-4FD6-8F07-0148B6DB4295", + "caseNumber": "CL-2022-1023", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "R.A. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-20-547.02).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "E855E8A6-1F20-4D75-9A79-DB6FC20B5D9F", + "documentName": "Order" + } + ] + } + ] + }, + { + "publicationUUID": "5052f064-8c3a-448e-aeea-03707f0fe6f1", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-09-22", + "publicationName": "Court of Civil Appeals Release List - September 22, 2023", + "publicationNote": "Decisions Announced on Friday, September 22, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-22T14:00:00.000+00:00", + "publicationDate": "2023-09-22T13:51:37.739+00:00", + "publicationItems": [ + { + "publicationItemUUID": "026E4C5B-9851-47CD-B990-E6275B6730CA", + "docketEntryUUID": "1C66D84E-1850-4B00-A7CB-D9333A97037E", + "caseInstanceUUID": "127FBE02-6FED-4D8C-9EAC-F5F61B4C6B82", + "caseNumber": "CL-2022-0975", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "Sherry Diane Hill v. Ricky Hill (Appeal from Winston Circuit Court: DR-20-900054).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "FA779C05-DCFE-4F6E-ABD6-7363E28BB01B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "580153D6-FE8C-48A1-B5C3-A017B4CD0FAE", + "docketEntryUUID": "C483339B-2973-4EB5-A336-A6F3C8643DBB", + "caseInstanceUUID": "1837E6C2-C909-4313-A880-437B4CA3EC20", + "caseNumber": "CL-2022-1026", + "groupName": "Hanson, J.", + "groupOrderBy": 4, + "title": "C.C.C. v. Mobile County Department of Human Resources (Appeal from Mobile Juvenile Court: JU-20-1118.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "8E8B2961-E89B-46DF-BC21-C313DD7FCD2A", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "20FE1DDB-18E8-4F13-BE79-3DF164E69911", + "docketEntryUUID": "EB167E9C-7618-4F5D-BD07-7C096BF5E94B", + "caseInstanceUUID": "4977E29D-0D7A-4221-9806-66EE485360BE", + "caseNumber": "CL-2023-0071", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "C.P. v. Cleburne County Department of Human Resources (Appeal from Cleburne Juvenile Court: JU-21-34.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "A574B7C0-E0AA-4258-A16D-03E809138E01", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "073556F9-B659-4A1A-95B7-FE40DACABE7F", + "docketEntryUUID": "473858B2-F6C5-49E1-9696-F38574F775DF", + "caseInstanceUUID": "60C98749-1788-4C64-B1DA-C535762F5162", + "caseNumber": "CL-2022-1107", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "A.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-20-6.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "C4FFE48D-92B4-49BF-A96B-0ED11BF10DEA", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "25C1FC9B-A01E-42C0-933A-10D6D4D2ABF9", + "docketEntryUUID": "BD663966-0EBD-48B1-900F-807D0017FE11", + "caseInstanceUUID": "83704147-7B2F-4C16-8FA5-72A142B65BFF", + "caseNumber": "CL-2023-0255", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "B.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-71.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "79D0BD2F-603C-4E2D-B58D-4C86DC6EA1BC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2C1AEA65-640B-4B21-BE0C-D9A9A3A7637D", + "docketEntryUUID": "4D65BF7D-384B-4A45-B516-BAACBA049425", + "caseInstanceUUID": "264E0B48-33C0-4645-AA5A-C08048CE63DF", + "caseNumber": "CL-2023-0072", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "S.C. v. Cleburne County Department of Human Resources (Appeal from Cleburne Juvenile Court: JU-21-34.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "40199B0E-1F23-4B36-9377-6196963A9CE6", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1EA427B5-8711-4F20-BC9C-8FB9FDFA2EB4", + "docketEntryUUID": "FF25B9AD-3562-4B72-AD55-BDBCD7109C6C", + "caseInstanceUUID": "605DD65A-BBC2-4F44-A435-7EEB3D0FAAA4", + "caseNumber": "CL-2022-1108", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "A.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-88.02).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "8868A09A-50E7-46A2-A310-59E48A16035F", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "57EA9A2E-023D-4854-9FDA-BDC811140278", + "docketEntryUUID": "F801CC4C-0903-4F9B-80BB-61AAD0AE5B94", + "caseInstanceUUID": "32021031-79D2-41FC-A3D8-B0001253A889", + "caseNumber": "CL-2022-1058", + "groupName": "Hanson, J.", + "groupOrderBy": 4, + "title": "D.P.L. v. Houston County Department of Human Resources (Appeal from Houston Juvenile Court: JU-17-299.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "09BBF9D5-2DB0-4516-B774-86626A50C4E9", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F4884CCC-B999-4DEA-B55F-1662CF3C1E59", + "docketEntryUUID": "A2BDBE90-8F42-4B2C-875C-3761D662BDB2", + "caseInstanceUUID": "79270D48-97D5-45A3-9F4E-35EB2823D728", + "caseNumber": "CL-2023-0068", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Matthew Sherman Phillips v. Delta Capital Resources, LLC (Appeal from St. Clair Circuit Court: CV-22-81).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "DE4DBCFE-0CA0-4210-A591-516871A86FA1", + "documentName": "Order" + } + ] + } + ] + }, + { + "publicationUUID": "17e5cd02-9f57-4435-8516-5debccdb035f", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-09-15", + "publicationName": "Court of Civil Appeals Release List - September 15, 2023", + "publicationNote": "Decisions Announced on Friday, September 15, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-15T14:00:00.000+00:00", + "publicationDate": "2023-09-15T14:30:19.226+00:00", + "publicationItems": [ + { + "publicationItemUUID": "4DAB9225-CFA1-4B93-B62B-F0026DCA5A50", + "docketEntryUUID": "430DC431-E6FF-4F9B-A899-3554AEF3F590", + "caseInstanceUUID": "0720ABDC-7B09-4B3F-AB19-8134DFB12A19", + "caseNumber": "CL-2022-0592", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Kenneth Charles Laurendine v. Joi A'Nell Laurendine (Appeal from Baldwin Circuit Court: DR-18-900224).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "C32ECD14-6350-419E-9AFF-EC10B5204281", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C8FFE6C9-CFD3-4B99-BF3B-9C74485852DD", + "docketEntryUUID": "3536AFF5-A956-415C-BBDF-22C56F5B0C7E", + "caseInstanceUUID": "EFB015C0-8037-4D39-A0ED-3D65AB38C911", + "caseNumber": "CL-2022-0573", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "S.M. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-18-1398.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "A134C440-94A5-474D-A008-990C3074BAF0", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "37A50A4F-0336-4799-AF21-40E98C09981A", + "docketEntryUUID": "D11475ED-1045-4FF9-ABF8-D8B44F820BBA", + "caseInstanceUUID": "91E06B98-CEC0-4449-9F20-63B376A7FB1D", + "caseNumber": "CL-2023-0325", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "Jessie Tompkins v. Wal-Mart Inc. (Appeal from Montgomery Circuit Court: CV-18-900375).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "81BC86EF-9FA1-493E-97E3-6F4B2DCA39B0", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F1491831-0739-42D2-83FC-07AEAFA4F612", + "docketEntryUUID": "945677D2-3998-4890-9269-8E3E64347796", + "caseInstanceUUID": "9DC23055-3436-47C9-8C16-CA399D9ED504", + "caseNumber": "CL-2022-1175", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "J.A.S. v. S.W.S. (Appeal from Jefferson Circuit Court: DR-18-900971.01).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "BC605E17-93B5-41CD-ADC6-77E2C260173C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "DDDFFED5-19D7-4FA0-9C1D-6485B7608AEE", + "docketEntryUUID": "44FBB63B-2526-4D52-A8FE-3699858600BB", + "caseInstanceUUID": "85380D48-1732-4B7C-88EF-EA5E10301DE0", + "caseNumber": "CL-2023-0067", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "M.W. v. K.D.C. (Appeal from Houston Juvenile Court: JU-22-115.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "FCA5609D-0E42-4A4A-A3DC-12BDBE22A403", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "13F8D10B-F683-47EA-A12A-C934564C7E86", + "docketEntryUUID": "D68C6356-275F-425A-86B3-90257A3988C8", + "caseInstanceUUID": "F1AD7925-0E2B-4293-AD52-951744251A34", + "caseNumber": "CL-2022-0624", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Joi A'Nell Laurendine v. Kenneth Charles Laurendine (Appeal from Baldwin Circuit Court: DR-18-900224).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "68040D68-202F-4A7F-BED8-431FE2A10411", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "265FCDAC-CE81-4F90-9CB7-8EB8B27440B4", + "docketEntryUUID": "48131C54-4454-4933-8B9C-491086361629", + "caseInstanceUUID": "EFABD4E0-A4E8-48C3-A2F4-810C5C783C91", + "caseNumber": "CL-2022-0574", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "S.M. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-18-1399.02).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "1CCEDADA-35E9-4C60-9CC7-29EE8FE63140", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "C342AB2A-12E4-4F2D-9FC3-C3821E7DBF2E", + "docketEntryUUID": "6D8B6083-B81F-4C31-B48F-65CB89FD2A4D", + "caseInstanceUUID": "D92B2CD5-AB4E-4ABB-836B-3E6E1BA3C625", + "caseNumber": "CL-2022-0575", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "S.M. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-18-1400.02).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "16F044C9-6C03-41E6-8ECB-7D0207BB2349", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "65150F5C-BECB-43E5-B325-0C23A7B6D006", + "docketEntryUUID": "DF59AB97-87AE-40C5-A3D1-E5B12C77B498", + "caseInstanceUUID": "D830E3AC-3A54-4198-9B1D-781D5411EBEC", + "caseNumber": "CL-2023-0023", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "Auto Funding Group Auto Sales v. Valiant Cross Academy (Appeal from Montgomery Circuit Court: CV-22-900290).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "DB37EB17-354C-4C3D-BC2A-C166412D16FA", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "97C1A0A2-15B4-419C-A45B-760BB33B64D0", + "docketEntryUUID": "7790B095-0705-4B12-918B-48B8BA7DFF5B", + "caseInstanceUUID": "DE3964EE-4C43-4E93-9CEE-012FDA70EE51", + "caseNumber": "CL-2022-1075", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Franklin Dewayne Williams v. Haley Cornelius (Appeal from Shelby Circuit Court: DR-16-900612.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "F7F12E64-74FE-40C4-AE6A-838E76772166", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "FE61A071-9D1E-423C-8169-3082A34E774A", + "docketEntryUUID": "59E00816-E444-4A4D-B315-CA0F9D5098C2", + "caseInstanceUUID": "28137E9F-BE25-4945-A8DC-CA7A6D222B4D", + "caseNumber": "CL-2022-1285", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "R.B. v. Lauderdale County Department of Human Resources (Appeal from Lauderdale Juvenile Court: JU-21-66.02).", + "decision": "Rehearing - Overruled", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "299B3717-B41F-4399-8120-9CC9B6B4820E", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "9B1F27CF-BB2A-451F-BD75-A49F8F036484", + "docketEntryUUID": "AB13F87B-05FF-4BB7-8867-94DBEF5AA747", + "caseInstanceUUID": "A2821E00-A002-438C-A6B0-AE6EBC4198CD", + "caseNumber": "CL-2022-1076", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Franklin Dewayne Williams v. Haley Cornelius (Appeal from Shelby Circuit Court: DR-16-900612.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "A889AD1B-AB04-4088-A6B7-6EDB273C153C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7FB6F23E-818B-47F9-A050-DA9A30939C6E", + "docketEntryUUID": "FCFF57A1-59A2-4515-A28D-C1B60E4ECF97", + "caseInstanceUUID": "2D5D42D3-3754-4D8A-921A-B9E1B8CA03BE", + "caseNumber": "CL-2022-1149", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Haley Cornelius v. Franklin Dewayne Williams (Appeal from Shelby Circuit Court: DR-16-900612.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "CB57668C-D373-4FA1-A008-A4468EA39689", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "5810DD98-5892-4D67-B5A1-E5D0DC6246C8", + "docketEntryUUID": "4D468D0D-65FD-49CB-B80C-AA58CF186522", + "caseInstanceUUID": "08810571-2538-4B50-9B18-3D9C278EFCE0", + "caseNumber": "CL-2022-1286", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "R.B. v. Lauderdale County Department of Human Resources (Appeal from Lauderdale Juvenile Court: JU-19-672.03).", + "decision": "Rehearing - Overruled", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "5CB6744C-7762-4A62-9F54-43FC3C8FEF31", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "F3657093-C91D-4A37-89E9-F7A0D9057C24", + "docketEntryUUID": "E64C73A6-30C1-4FFC-8BDF-09BB95DC58E8", + "caseInstanceUUID": "8A234440-EE27-4AE6-B3DF-D8D6594CA95C", + "caseNumber": "CL-2022-1152", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Haley Cornelius v. Franklin Dewayne Williams (Appeal from Shelby Circuit Court: DR-16-900612.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "9423B2FB-89F6-4CD5-B5BA-1A440EEEAE26", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "7df3c18c-b196-4f89-a5a5-5c0ce477dc43", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-09-08", + "publicationName": "Court of Civil Appeals Release List - September 8, 2023", + "publicationNote": "Decisions Announced on Friday, September 8, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-08T13:45:00.000+00:00", + "publicationDate": "2023-09-08T13:48:15.116+00:00", + "publicationItems": [ + { + "publicationItemUUID": "91F7F8DA-5D1A-4642-8648-6F3C9537965E", + "docketEntryUUID": "37A8AFA1-06DF-456B-BFE5-2314C55EDF6B", + "caseInstanceUUID": "792830FA-8E9C-4FAE-AF72-A2DEA2CFF06E", + "caseNumber": "CL-2023-0153", + "groupName": "Fridy, J.", + "groupOrderBy": 5, + "title": "William John Desmond v. Shawna Lynn Desmond (Appeal from Baldwin Circuit Court: DR-20-901410).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "17ECEAB9-36F6-40BA-9D14-C85A2A78A8DF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "36357F58-F2E4-414C-BD19-52498675DA5C", + "docketEntryUUID": "90C433B2-DE7A-4833-BCD0-8DF967D8B81F", + "caseInstanceUUID": "AEE3ABCC-CC34-47F2-B388-12AECF06C93F", + "caseNumber": "CL-2022-0897", + "groupName": "Hanson, J.", + "groupOrderBy": 4, + "title": "Brittney Lee Ziemba v. Daniel Lee Ziemba (Appeal from Lee Circuit Court: DR-17-900406.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "BF0608C9-2DA3-4B21-8793-5F0C75223F0E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C1EFAFB5-E5EF-4983-8E4B-D18E52BBECBD", + "docketEntryUUID": "D4ACF253-FAFB-458C-BB7B-C35CBAF64C0F", + "caseInstanceUUID": "C0DC542F-3B04-4C32-9A69-A372EFC76BF4", + "caseNumber": "CL-2023-0467", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Ex parte Jonathan David Brown PETITION FOR WRIT OF MANDAMUS (In re: J.G., a minor, by and through his father and next friend, Ronnie Gilbert v. Jonathan David Brown) (Shelby Circuit Court: CV-22-474)", + "decision": "Decision - Petition Granted", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "C7CEB5DE-8718-4B74-AEF3-E20356445554", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F03CD0B9-E889-4CAB-8B68-E0B0BE937E38", + "docketEntryUUID": "F1523292-ADBE-4A1C-84EE-1883BF296046", + "caseInstanceUUID": "2AA1B631-DFBF-4FED-888D-1DA2DE6429E1", + "caseNumber": "2200821", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Anthony Keith, Ronald C. Smith, William T. Gipson, and Latonya J. Gipson v. Lance R. LeFleur, in his official capacity as Director of the Alabama Department of Environmental Management; and Marilyn G. Elliott, in her official capacity as Deputy Director and the Nondiscrimination Coordinator of the Alabama Department of Environmental Management (Appeal from Montgomery Circuit Court: CV-19-900283).", + "decision": "Decision - Application Granted; Opinion Withdrawn; Opinion Substituted; Reversed and Remanded with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "135B90F9-574B-41E5-883C-64BF26EE2835", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F8F6F689-CF6D-43DE-8CFE-7DE2AE472AC2", + "docketEntryUUID": "D964C222-43B8-4F6B-AB12-D2A67A8CA480", + "caseInstanceUUID": "73E0D91E-6305-48E4-87DA-65EABE651FA0", + "caseNumber": "CL-2022-1290", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "Jennifer Lauren Robinson v. Christian Tyler Robinson (Appeal from Etowah Circuit Court: DR-16-900342.03).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "8339F489-B336-46EC-B074-908082607A50", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "5F78129C-9C9F-4045-A196-18E84F31F1C9", + "docketEntryUUID": "2D4A98AA-03B7-487A-AFB7-F8DD8FD730B2", + "caseInstanceUUID": "4AF983D1-7824-4913-B33B-1DD1849E8369", + "caseNumber": "CL-2022-1095", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "D.H. v. Tuscaloosa County Department of Human Resources (Appeal from Tuscaloosa Juvenile Court: JU-19-513.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "A385378C-77E0-45DB-A7EC-566F75C749DF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C097A567-AF00-4CAB-A131-E9CEA5109E73", + "docketEntryUUID": "443688DC-174C-42E0-A26F-B4562E9AADEB", + "caseInstanceUUID": "5518CE57-C8D9-47B7-9E77-B81BDAA489FD", + "caseNumber": "CL-2023-0046", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "D.B. v. Lauderdale County Department of Human Resources (Appeal from Lauderdale Juvenile Court: JU-21-435.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "93BC4FAC-4CD4-4B27-A540-49C6E6C8E7F0", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1E8C1E86-3931-412B-8B6A-0B9960A4E6E9", + "docketEntryUUID": "D54F3832-B9FA-41A0-BD91-012C7003311E", + "caseInstanceUUID": "3975DA77-1E70-4E44-BDF9-A93BF7D0DB9D", + "caseNumber": "CL-2023-0004", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "L.W. v. Tuscaloosa County Department of Human Resources (Appeal from Tuscaloosa Juvenile Court: JU-19-513.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "6179159B-0B9E-478F-B6C5-ED9CE2977062", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "79D8C6D4-3C6B-4574-AF51-5759DC1134A1", + "docketEntryUUID": "787355A5-DE44-4B76-8901-AD8E49D8E272", + "caseInstanceUUID": "66460EF1-2757-4E65-8A95-A1A0582B4728", + "caseNumber": "CL-2022-1143", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Christopher M. Fowler v. Christina M. Fowler (Appeal from Mobile Circuit Court: DR-21-900023).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "A95415DE-B10F-45AA-9030-D2CC61761226", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8E811B52-C190-4067-89CC-7F62FD53C5CD", + "docketEntryUUID": "5656FD58-C14C-48AF-B115-B974A7C21C30", + "caseInstanceUUID": "C86767C9-8408-4B7B-8C9F-57C04DF44631", + "caseNumber": "CL-2022-1207", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Kelley Deloney f/k/a Kelley Buford v. Perry Buford (Appeal from Morgan Circuit Court: DR-21-900219).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "C0B577D1-9218-47AD-A2C1-4ABB2F7F6DE4", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "5C55BF26-1DFB-4A2D-AFE5-D63A57A377BA", + "docketEntryUUID": "5ED8D1F1-2CE5-4316-9C6E-EA5F4136BE08", + "caseInstanceUUID": "D3914036-3BC6-4C36-BAAF-E12E58FA71B2", + "caseNumber": "CL-2022-1281", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "D.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-276.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "8C4EF83E-00CF-4855-9B0A-1383F62F07C8", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6AF7EC69-ECE5-4E5A-9CC2-3B7B3A07CFE3", + "docketEntryUUID": "C79F582F-82ED-4A5F-912E-55BC9AE80C7E", + "caseInstanceUUID": "B9C9D2E8-9DC0-4AF2-AAB9-32E3BA0DDC37", + "caseNumber": "CL-2022-1282", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "D.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-277.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "9C11BFEB-C2B1-4F9F-B3EA-961CC39BAD85", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "CF658B0D-1D9F-4FDD-BB5F-7279AE6A8737", + "docketEntryUUID": "8B970E40-F9CC-4013-83C6-5914CD57F558", + "caseInstanceUUID": "8081617C-797F-442D-8D50-DB7407B19B46", + "caseNumber": "CL-2022-1283", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "M.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-276.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "B875D2E5-0C6D-4AB1-AD64-D5ABC4380C68", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "DFBD8F72-CECA-454D-B07E-E2084DA83812", + "docketEntryUUID": "3B078B64-6EA2-4E4C-A264-54CE76DE86AB", + "caseInstanceUUID": "A0AEAD62-73EA-48AA-B38F-069AF119647F", + "caseNumber": "CL-2022-1284", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "M.G. v. Marshall County Department of Human Resources (Appeal from Marshall Juvenile Court: JU-18-277.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 8, + "documents": [ + { + "documentLinkUUID": "3C84F34F-4484-4E44-88D2-67AC910CC9FE", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F6F1DC58-EB03-4908-A76C-579863AC1F67", + "docketEntryUUID": "4C7A931A-5F6B-42FA-A25D-5A70A55FBDDD", + "caseInstanceUUID": "B81182AB-BF58-4B1A-AADD-032C58D564AA", + "caseNumber": "CL-2023-0245", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Gregory A. Pulliam et al. v. Vickie Pruitt et al. (Appeal from Tallapoosa Circuit Court: CV-18-900032.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 9, + "documents": [ + { + "documentLinkUUID": "CD524E79-4096-48DF-B476-7283B4313332", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "9558f9d0-e615-482f-a47e-2568ac535052", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-09-01", + "publicationName": "Court of Civil Appeals Release List - September 1, 2023", + "publicationNote": "Decisions Announced on Friday, September 1, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-01T13:43:00.000+00:00", + "publicationDate": "2023-09-01T13:55:59.699+00:00", + "publicationItems": [ + { + "publicationItemUUID": "9CACC1EC-E391-4EE4-9E27-B6FA791344C9", + "docketEntryUUID": "12F9170A-D19B-48DB-B1C7-B05D08D68E12", + "caseInstanceUUID": "24DF0ADD-2A5F-4500-A633-B08C2D8C4821", + "caseNumber": "CL-2022-0764", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "E.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-21-88.01).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "FE2A9B99-389F-4D11-B947-48B2A0617A65", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "ECA9B520-98F1-4130-9623-9DC2BCD1C2BA", + "docketEntryUUID": "C4390DE6-3C6F-428D-A0CF-91F5031791E0", + "caseInstanceUUID": "489CC5F4-E136-4827-9EB8-1FEB4A09E410", + "caseNumber": "CL-2023-0172", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Sonja Yates Upchurch v. Charles David Upchurch (Appeal from Clay Circuit Court: DR-17-900011).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "DAF4D8B1-9E0D-40B7-B74C-B99C971467CA", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "821B97EC-1659-4E66-AF88-8DC641CE3562", + "docketEntryUUID": "BACE0C94-5D44-4155-8B26-843769FC2875", + "caseInstanceUUID": "6041FEFE-0D39-428E-B30E-55E1A4ACDB00", + "caseNumber": "CL-2022-0997", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Danita Habick v. Ted N. Mosley (Appeal from Mobile Circuit Court: DR-19-900179).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "ED3995F5-EB19-427B-A5B7-20C32E53B55B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "24BFE609-C1F1-42C3-98F2-66096A3038D7", + "docketEntryUUID": "899A8D88-B406-4B40-B1B9-4E079895C423", + "caseInstanceUUID": "EBF43C29-F3BF-4EB6-BE6C-6FB47C820715", + "caseNumber": "CL-2022-1178", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "Nathaniel Brooks v. Carla J. Carter, Bertha Douglas, Andra Sledge, and Robert Smith (Appeal from Jefferson Circuit Court: CV-21-902164).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "11DC917A-CA85-493E-A484-11EBCBA2CC2D", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "114712B1-E35D-4A78-900B-0E90DFCD982B", + "docketEntryUUID": "385F9B4E-AC85-4492-896C-DCD823314443", + "caseInstanceUUID": "EE63D60C-B28A-4DED-BD40-7D2DE1FE8A7E", + "caseNumber": "CL-2023-0120", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Jerry K. McCullough v. Windyke Country Club, Inc., d/b/a LawnMan (Appeal from Limestone Circuit Court: CV-22-51).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "97FD18EB-328B-49A6-9E89-36935621A70B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F6CEADC1-70C1-448F-B5D9-F30D3FB219AD", + "docketEntryUUID": "3A65E629-BCE8-4247-A1F6-C97C3A32F061", + "caseInstanceUUID": "F77E6BEE-3B25-41FD-9E91-2447903B751B", + "caseNumber": "CL-2022-1260", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Hargis Jackson v. Sherry Jackson (Appeal from Talladega Circuit Court: DR-16-900184.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "7DCF7167-7232-40BC-9DE0-DBED4B75216E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6133E5FC-F584-4957-9DDB-AFBD89DA5A8C", + "docketEntryUUID": "248B05E2-140D-4DDA-B61B-9D4855E0DEB7", + "caseInstanceUUID": "CDC76930-9D6C-4369-AADE-73FCFD990750", + "caseNumber": "CL-2023-0015", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "J.B. and J.B. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-22-674.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "7D3A80DE-96DA-48C9-9415-758FF4477FC6", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "616F4B08-9729-4798-B9AA-F5CC5C644FE2", + "docketEntryUUID": "A95F1B15-7A71-480C-B2CD-04BA387B5A51", + "caseInstanceUUID": "50C2C364-55EF-4CAD-8258-033333D42B21", + "caseNumber": "CL-2023-0233", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "A.B. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-20-643.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "73469931-3387-49EF-9960-49DECE2ED3C4", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "efbbee36-1b09-4d22-accc-17ef718b4e39", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-08-25", + "publicationName": "Court of Civil Appeals Release List - August 25, 2023", + "publicationNote": "Decisions Announced on Friday, August 25, 2023", + "groupFlag": true, + "scheduledDate": "2023-08-25T14:29:00.000+00:00", + "publicationDate": "2023-08-25T14:44:14.791+00:00", + "publicationItems": [ + { + "publicationItemUUID": "2A718885-37D6-4F4A-946D-19D10BB6A379", + "docketEntryUUID": "09F623F7-D924-450F-A4EB-0407A3AB609D", + "caseInstanceUUID": "87D6FE72-DE0E-4B83-88E1-991390BFF2D2", + "caseNumber": "CL-2023-0002", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Black Warrior Riverkeeper, Inc., and Black Belt Citizens Fighting for Health and Justice v. State of Alabama ex rel. Steve Marshall, Alabama Department of Environmental Management, and Waterworks and Sewer Board of the City of Uniontown (Appeal from Perry Circuit Court: CV-22-900048).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "94E5D0F0-73C8-4BC3-8034-9DC01ACDBF7D", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C56167CD-94E0-4094-B573-97A487515B97", + "docketEntryUUID": "0542965F-772A-4B3E-B6EE-B53068C0ED03", + "caseInstanceUUID": "1C44EF7F-1166-40CF-9FB8-FC1F3DF968B2", + "caseNumber": "CL-2023-0346", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Ex parte Alabama Department of Labor PETITION FOR WRIT OF MANDAMUS (In re: Tahir Sultan v. Fitzgerald Washington, in his official capacity as Secretary of the Alabama Department of Labor) (Houston Circuit Court: CV-23-900094).", + "decision": "Decision - Petition Denied.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "EA2E4841-C2B9-4ED7-A302-CBD515F734F4", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D1099202-313C-4D44-9695-DC45620548C6", + "docketEntryUUID": "1B7A9422-BC68-4419-85A1-4487B28D48BC", + "caseInstanceUUID": "FDC68BCB-3A1F-42FD-A6C0-42BB077B9543", + "caseNumber": "CL-2022-1052", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "B.G. v. Tallapoosa County Department of Human Resources (Appeal from Tallapoosa Juvenile Court: JU-21-24.04).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "DBDA67D6-1F30-4AB3-949E-01671EA1B3C3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "DBDC3E1B-E0FC-4304-9CA7-B5770A6EF9FB", + "docketEntryUUID": "AF443E9A-E258-48B4-942B-FF4297CF3BFE", + "caseInstanceUUID": "CF81F116-7E21-412B-8297-DB3ADCBBCFB9", + "caseNumber": "2180695", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Orleans Place Apartments, LLC v. Cherika Jones (Appeal from Mobile Circuit Court: CV-17-322).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "2A5D1DCA-A072-477E-B404-FDD890161E54", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7A4F54DE-5F52-4D9A-B2D4-CEB2A507BB76", + "docketEntryUUID": "FDFFFB4F-EFFC-47AF-9047-291D7FA572E0", + "caseInstanceUUID": "ABAFF5FD-C92E-4B41-ADF8-B4DB3706BA19", + "caseNumber": "CL-2022-1291", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "R.N.P. v. S.W.W. (Appeal from Baldwin Juvenile Court: CS-19-900034).", + "decision": "Decision - Affirmed In Part; Reversed In Part; And Remanded With Instructions.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "AE082411-5295-4296-AEB1-4009E30AD409", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "DEFB039C-2599-4AE6-933C-C3DB34F9CC42", + "docketEntryUUID": "251D62C6-F0C8-4588-8198-4A87C6AC9910", + "caseInstanceUUID": "EA53F723-84B3-4171-B0CE-E2CD2FB5AA22", + "caseNumber": "CL-2022-1064", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "B.G. v. Tallapoosa County Department of Human Resources (Appeal from Tallapoosa Juvenile Court: JU-21-23.04).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B2A5FC95-A387-48DB-9764-BD7053C2568F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "66B6EFDB-5C57-42A9-921B-CE431CFDDF69", + "docketEntryUUID": "3CB9B587-3F7B-48D9-96D5-48E3CA6D51F4", + "caseInstanceUUID": "BE4C25D1-FD68-4EF5-A4D5-4BA6594AC14D", + "caseNumber": "CL-2023-0012", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Christopher Denton v. Lorie Denton (Appeal from Calhoun Circuit Court: DR-22-900137).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "A47CA7A7-33AA-445C-962E-585BD4AA777F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7B809317-BD18-4A18-911F-4C1BE793DD40", + "docketEntryUUID": "03E9E6E5-CE5C-4CCD-A519-93BADB680D7D", + "caseInstanceUUID": "2990FE2C-D8ED-4050-A0F7-DD30CC19C019", + "caseNumber": "CL-2023-0115", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "J.G. and A.G. v. Baldwin County Department of Human Resources (Appeal from Baldwin Juvenile Court: JU-18-452.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "65AD0A5D-3A7D-4F7D-816F-9EE61D27EA55", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "E59058C7-8915-4002-A17E-609F6C4D026B", + "docketEntryUUID": "F804D22D-1C23-4E6C-A889-9A6ECB87D4A5", + "caseInstanceUUID": "60C98749-1788-4C64-B1DA-C535762F5162", + "caseNumber": "CL-2022-1107", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "A.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-20-6.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "D52CFEFC-09D9-45D8-B5A2-ED2DFCEFBB14", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F1C378E9-07AC-451C-978F-A62C3C1BF26A", + "docketEntryUUID": "A333D52B-833F-4DB1-98BB-D40F2AA8E98D", + "caseInstanceUUID": "3798119E-F9DE-4C43-BA47-D8C0BD81E023", + "caseNumber": "CL-2023-0116", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "J.G. and A.G. v. Baldwin County Department of Human Resources (Appeal from Baldwin Juvenile Court: JU-18-453.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "32F23660-D459-44AA-AE3B-93B7090178C5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F3980159-F333-4645-805D-357F3025996C", + "docketEntryUUID": "92F07697-5F39-4029-9C8F-B8BA95CD7112", + "caseInstanceUUID": "605DD65A-BBC2-4F44-A435-7EEB3D0FAAA4", + "caseNumber": "CL-2022-1108", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "A.W. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-88.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "A6C6227C-9ED6-4DBF-A34C-C8C82143D8F9", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "3BDD5D29-787B-403C-AAFC-356E51564C02", + "docketEntryUUID": "A6F20ADA-C935-4CDB-B9F6-14781EE007C5", + "caseInstanceUUID": "C50EAE09-E5C2-4B86-8AAC-0DA4CF684F9E", + "caseNumber": "CL-2022-1137", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "J.T. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-20-6.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "53E06E8D-EE5B-4415-AA90-6DC510721438", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "737FBA3D-C6F6-4B01-AAA5-1E334502016C", + "docketEntryUUID": "E01050C1-C775-4660-A758-F518CD7097A6", + "caseInstanceUUID": "FED530A5-FA5C-4BC8-B363-BDA3EBDCBFE8", + "caseNumber": "CL-2022-1138", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "J.T. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-88.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "67F531F0-3625-4F55-8BA3-98FF072A74F6", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7B65F3A3-8083-4A35-8807-FEBE26AC7F5D", + "docketEntryUUID": "5BAEABCC-E442-4338-A304-FF2BDAE68C97", + "caseInstanceUUID": "D6B4E8AF-79CE-4F5F-A8BF-7C40E840CB3E", + "caseNumber": "CL-2023-0316", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "Ex parte E.B. PETITION FOR WRIT OF MANDAMUS (In re: A.B. v. E.B.) (Franklin Circuit Court: CV-21-47).", + "decision": "Decision - Petition Denied.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "36A27F44-B866-45A5-BE87-AC092BAB6C64", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "96de14d9-bd0e-4e31-85c4-30a48400c9a2", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-08-18", + "publicationName": "Court of Civil Appeals Release List - August 18, 2023", + "publicationNote": "Decisions Announced on Friday, August 18, 2023", + "groupFlag": true, + "scheduledDate": "2023-08-18T13:56:00.000+00:00", + "publicationDate": "2023-08-18T14:03:34.252+00:00", + "publicationItems": [ + { + "publicationItemUUID": "C40CBF1B-AC48-4CD1-ADD6-1C71EBCC1E75", + "docketEntryUUID": "9E0E57FD-2297-4A17-AC54-CD86BDBF0707", + "caseInstanceUUID": "8B87966E-2C60-4FC2-B7EF-03FD1C95D991", + "caseNumber": "CL-2022-1142", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "M.H. v. Talladega County Department of Human Resources (Appeal from Talladega Juvenile Court: JU-20-172.05).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5E9F0C2F-CDA6-4DC7-8197-108780E5888A", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "EE51E50D-F4F5-4171-A5BF-6D43939B3C70", + "docketEntryUUID": "768FB1F5-881D-43C8-A4BB-276FF04ED612", + "caseInstanceUUID": "9BE946F4-3C8C-4C29-BD19-716E04DB3108", + "caseNumber": "CL-2022-0906", + "groupName": "Hanson, J.", + "groupOrderBy": 2, + "title": "Shari L. Needham v. Michael S. Beckenstein, M.D., LLC (Appeal from Jefferson Circuit Court: CV-19-903785).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "3FAD675A-C97C-44F6-90F2-50190C1F01FC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "DD9729B2-31B8-43C0-A41F-E3341C8B7339", + "docketEntryUUID": "8AE03C01-078D-4485-863C-6B2A6FEB469A", + "caseInstanceUUID": "A52F392D-F60C-4DCA-B68D-9D63798D7EB9", + "caseNumber": "CL-2022-1125", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Ex parte C.R. and L.S. PETITION FOR WRIT OF MANDAMUS (In re: V.R. and J.R. v. C.R. and L.S.) (Madison Juvenile Court: JU-22-754.01).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5DF3509B-9AEA-495F-8DFC-9C9989EBF4A6", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "5488BDA3-D04F-4364-BB0A-107CB132A422", + "docketEntryUUID": "3775B232-9E3F-4206-8FD3-B6373EBE8C6E", + "caseInstanceUUID": "40FD7453-434C-4E77-92F9-95162DC2BE11", + "caseNumber": "CL-2022-1146", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "C.N.W. v. K.H.B. and D.B. (Appeal from Elmore Circuit Court: JU-20-108.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "8E2A88C6-1F43-4B66-97BC-06C1340FE827", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "ECF63D3B-DD00-4A0F-808E-3D500CDECD23", + "docketEntryUUID": "6001E4FA-AD3E-46F2-9FB1-CB978AE3458B", + "caseInstanceUUID": "D89215DF-422D-4E5C-99B2-A3D7819682AC", + "caseNumber": "CL-2023-0011", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Brandon Rainey v. Aimee Turner Rainey (Appeal from Jefferson Circuit Court: DR-22-900179).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "14FD748F-9836-4214-9E76-056A81D62837", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F34F03B3-632E-4C65-8353-447F9C9B9CE2", + "docketEntryUUID": "2E179EDA-E638-41EE-A4BD-199FAD09FBB4", + "caseInstanceUUID": "3D7DF17F-BEC4-4726-A5F7-2724E744211B", + "caseNumber": "CL-2022-1126", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Ex parte C.R. PETITION FOR WRIT OF MANDAMUS (In re: V.R. and J.R. v. C.R. and L.S.) (Madison Juvenile Court: JU-22-755.01).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "15BEC8F1-DF9C-496D-8BF7-D72BF4E23FAF", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "699823E8-2389-47AF-B80B-99F16EBED2E0", + "docketEntryUUID": "C1AE0523-0C91-4FBC-A1CD-DEFC036777C8", + "caseInstanceUUID": "C7D52D1E-DF87-42A5-9ACD-969D7275AF11", + "caseNumber": "CL-2022-1162", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "M.S. v. T.S. (Appeal from Baldwin Circuit Court: DR-20-900103.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "31BA3046-642C-4A65-BC08-B425CFFF443E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2F980E2C-C822-44DA-BA18-9E9EDB5F3267", + "docketEntryUUID": "A6801B6C-287D-4CB9-BE8D-1E462EA622E8", + "caseInstanceUUID": "1E8EA594-5840-4AF3-BF9C-88FD8F8221B4", + "caseNumber": "CL-2022-1163", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "M.S. v. N.B. and T.S. (Appeal from Baldwin Juvenile Court: JU-21-499.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "F6DF0B51-7D03-42F3-B42B-D98802033BE6", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F50E3C76-1D87-4B7C-82A3-E798CCFA238B", + "docketEntryUUID": "00B60AA8-BEC9-48A7-B280-D311FF643816", + "caseInstanceUUID": "5CAC49DB-557A-49E6-A5F0-4B7BE0C3EB46", + "caseNumber": "CL-2022-1127", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Ex parte C.R. and L.S. PETITION FOR WRIT OF MANDAMUS (In re: V.R. and J.R. v. C.R. and L.S.) (Madison Juvenile Court: JU-22-756.01).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "AB1C2C28-D827-4FF9-AA3F-0F4E482F8D04", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "B39E3778-62A3-4787-910B-C4556DD229AB", + "docketEntryUUID": "AD266859-08DA-47F9-8943-92778F99B358", + "caseInstanceUUID": "343C54AD-97A6-44D5-A8EE-63866FD60D5C", + "caseNumber": "CL-2023-0079", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Susan Thomas v. Eugene Manora (Appeal from Montgomery Circuit Court: DR-19-900526).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "30015516-02B8-43D5-B79D-76B187B8F384", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "21469220-A36E-4344-B80D-4BD3B9E304C1", + "docketEntryUUID": "42F25AFF-A17D-4B76-A2CC-D35DAE3A679D", + "caseInstanceUUID": "D628DDDD-B811-4AC9-8031-833988F31864", + "caseNumber": "CL-2022-1164", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "M.S. v. N.B. and T.S. (Appeal from Baldwin Juvenile Court: JU-21-500.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "3ED1533B-C419-476B-ACF5-1F76AB01E8BE", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "B2C946E6-38E2-4CEF-B085-62EA2E50B7EE", + "docketEntryUUID": "5C814263-E452-4785-BAA2-C4A16D408542", + "caseInstanceUUID": "67E23A81-CD6C-47BD-9900-CCF3D1FB5F5B", + "caseNumber": "CL-2022-1166", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "M.S. v. N.B. and T.S. (Appeal from Baldwin Juvenile Court: JU-21-501.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "E58733B8-53AA-4932-8BD1-93FF66F99704", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "27f3164d-02c7-4bbd-9947-613069019f41", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-08-11", + "publicationName": "Court of Civil Appeals Release List - August 11, 2023", + "publicationNote": "Decisions Announced on Friday, August 11, 2023", + "groupFlag": true, + "scheduledDate": "2023-08-11T14:12:00.000+00:00", + "publicationDate": "2023-08-11T14:26:29.364+00:00", + "publicationItems": [ + { + "publicationItemUUID": "5E5CA079-AB4A-44F9-93DA-A9F624385181", + "docketEntryUUID": "C25E46D8-B578-41B6-BA2F-E20609696B07", + "caseInstanceUUID": "DC6F4A97-7F85-4F4F-8EF6-9C38543918CB", + "caseNumber": "CL-2022-1070", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "D.M. and A.M. v. F.L.C. (Jefferson Juvenile Court: JU-18-1934.03).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "68CCEE65-FC36-49C6-80C8-D88CE754A417", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "212B22D0-19AF-4DAB-BA8D-F8255315D753", + "docketEntryUUID": "48E0A2C9-7A4E-42B9-BCFA-7EB69E9AA083", + "caseInstanceUUID": "ACBF22D4-0ACF-425D-AC4C-B4918AA8BC49", + "caseNumber": "CL-2022-1194", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "C.P. v. A.F. (Appeal from Fayette Juvenile Court: JU-21-54.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "864ED0E0-1791-488A-9472-9FF1CB71C96B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "BE6D5C86-CCFC-4A4E-B9E8-D34556A7E141", + "docketEntryUUID": "6613ECF1-DDFE-4E70-8F01-34052F98B7EA", + "caseInstanceUUID": "D6A86BE2-98CF-439B-8F0D-1ED564CD421B", + "caseNumber": "CL-2022-1030", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "M.F.H. v. Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-20-19.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "EDDF6857-C7E2-4407-A797-381AED93467F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D5E9FF8F-2E3F-4E77-BB39-8A85A4D06DA1", + "docketEntryUUID": "E3ECFCEA-8D8C-44F2-88FC-B1F00661A08B", + "caseInstanceUUID": "EEE7BFE3-EF51-4CF0-B828-5D7B5EE15A84", + "caseNumber": "CL-2022-1171", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "N.L. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-18.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "6F7E8A51-89D2-4995-8AF3-8CB849065184", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "DF0AED6C-50B2-4F98-8CA7-97B90975E536", + "docketEntryUUID": "D4213FFA-40BB-41EE-97AF-61A65256F783", + "caseInstanceUUID": "78F18E6A-6AA2-45B5-8F53-1CC4E66099DF", + "caseNumber": "CL-2022-0697", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "Teachers' Retirement System of Alabama and Employees' Retirement System of Alabama v. Baldwin County Planning and Zoning Department; Baldwin County Board of Adjustment No. 1; and Point Clear Property Owners Association, Inc. (Appeal from Baldwin Circuit Court: CV-21-900858)", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "DC76889D-D1C0-4FA8-8A35-15DAF00CB904", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "26E56980-09E3-4DB9-9CE2-0244DCF5D722", + "docketEntryUUID": "26F82ED1-9CB7-4561-9E94-EE250E0229A9", + "caseInstanceUUID": "D6FD46E5-2F12-431E-803B-DCCB542672CA", + "caseNumber": "CL-2023-0438", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Ex parte M.K.G. PETITION FOR WRIT OF MANDAMUS (In re: M.K.G. v. J.K.J.) (Lauderdale Juvenile Court: CS-18-900113.01).", + "decision": "Decision - Petition Granted", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "B281A8A0-3139-485D-B7E0-E9FCADB87F78", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1B098AD2-9ECF-4F91-B45B-DDC4C9DB3458", + "docketEntryUUID": "01F6EBEB-4453-4ED0-AACE-B0BAC4911660", + "caseInstanceUUID": "DF6AB837-DE17-4769-A000-75C164180498", + "caseNumber": "CL-2022-1031", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "M.F.H. v. Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-20-20.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "0B84A3DA-7CDC-4AC9-AC07-59CE16CE0664", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "09758BE1-4546-45AD-BD4D-99D766CD003D", + "docketEntryUUID": "6895139A-1457-4156-9CD3-642F78B06CB4", + "caseInstanceUUID": "6D3CA38B-7C0B-4568-9ADD-EBB7DDDC6664", + "caseNumber": "CL-2022-1195", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "C.P. v. A.F. (Appeal from Fayette Juvenile Court: JU-21-55.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "E04DFB83-3D38-44B3-BC43-BB73FD6A6CA3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "25133705-92A6-43B0-91EA-230D86D685EF", + "docketEntryUUID": "06F08E49-BED1-4354-84C2-A44CD9BCCBC5", + "caseInstanceUUID": "C367484C-63CD-4B3A-B45E-853025C0FBC8", + "caseNumber": "CL-2022-1244", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "B.B. v. J.P. (Appeal from DeKalb Juvenile Court: JU-20-255.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "8CE95E52-4F36-4F01-8064-2143988FDD48", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "38FBD92D-E633-4F36-9456-1FE5FCD71E2B", + "docketEntryUUID": "40F4BEDC-CE3F-409C-A48E-965FE2871601", + "caseInstanceUUID": "A7916A73-716D-419A-B93D-BC94C6313312", + "caseNumber": "CL-2022-1196", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "C.P. v. A.F. (Appeal from Fayette Juvenile Court: JU-21-56.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "5BA818FC-DD3E-4DA4-843F-B04A80E77F08", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6B99E8F0-D0B3-4404-8A55-C08BAFB16A6E", + "docketEntryUUID": "A9382F1C-4FB7-4C40-B6AA-BB2D3639E767", + "caseInstanceUUID": "9620146B-FC24-472C-9A4D-D82034FFFBC6", + "caseNumber": "CL-2022-1245", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "B.B. v. J.P. (Appeal from DeKalb Juvenile Court: JU-20-256.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "586D6280-4197-45D7-B79E-6DBE798AEDCB", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "0AC81AB4-BDDB-4543-903B-2E438DBEE694", + "docketEntryUUID": "85A4D130-0A63-424C-8311-5CA9D35D804B", + "caseInstanceUUID": "E3ED8803-ED07-4C49-BB00-9BAFF0071C3D", + "caseNumber": "CL-2022-1032", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "M.F.H. v. Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-20-21.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "8AD91481-A109-4506-B48F-D088B481A734", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "5764b1ce-f6d6-438a-8c98-9a229a8437c9", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-08-04", + "publicationName": "Court of Civil Appeals Release List - August 4, 2023", + "publicationNote": "Decisions Announced on Friday, August 4, 2023", + "groupFlag": true, + "scheduledDate": "2023-08-04T14:00:00.000+00:00", + "publicationDate": "2023-08-04T13:56:32.559+00:00", + "publicationItems": [ + { + "publicationItemUUID": "5BBC32CB-76E5-4289-9CA2-810D1C34A285", + "docketEntryUUID": "DE9E3D0C-DACB-4B4C-9722-84DF97CD5D34", + "caseInstanceUUID": "617093FD-8FF4-44B3-A377-FF6FEF3AB142", + "caseNumber": "CL-2022-0939", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "J.A., Sr. v. Escambia County Department of Human Resources (Appeal from Escambia Juvenile Court: JU-20-32.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "B06694C4-9D8C-4920-9309-FB9069AD2700", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D98C0F01-51D4-4DC8-A97F-10C105697FAB", + "docketEntryUUID": "68327611-FAA5-42B6-B2BB-1BBF8AC4C37C", + "caseInstanceUUID": "BC5C67B8-6464-4625-914C-8A4EE2D70EE6", + "caseNumber": "CL-2022-0628", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "Clint Jamison Novack v. Karen Leigh Novack (Appeal from Baldwin Circuit Court: DR-13-900960.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "E6BD6E4F-F1C9-497A-9451-521999C37085", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "171F8CE0-2AD3-402C-85D7-69DA69F49FC2", + "docketEntryUUID": "FA4BACB8-B894-414C-BB91-ECDCBDFD7A8F", + "caseInstanceUUID": "F20E0528-B52C-4898-9055-AAA35B1FF29B", + "caseNumber": "CL-2023-0144", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "U.S. Auto Purchasing Center, LLC v. Tashay S. Hives (Appeal from Mobile Circuit Court: CV-22-901983).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "8F5D0251-FF59-445D-9E22-EEECEC09F341", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "81D4AD74-3DF0-4DB5-AA6E-AF9BF734E3B0", + "docketEntryUUID": "5025DC40-E697-4F85-9300-A11505EA066D", + "caseInstanceUUID": "395CF049-C5DE-40F1-8F21-3D12DB4C84B1", + "caseNumber": "2210396", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "H.T. v. A.C. and Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-20-542.01).", + "decision": "Decision - Application Overruled; Opinion Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "50B2B11C-3980-48A6-BB4D-628A89D63D75", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "E2D6EC06-FB18-4A71-9E0D-DB5A791F8103", + "docketEntryUUID": "AFA7A3E1-77C6-44B5-955E-1608FB4AEFE9", + "caseInstanceUUID": "FB2E5FBB-4A08-4E72-8B57-D493CA064F83", + "caseNumber": "2210397", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "H.T. v. A.C. and Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-20-543.01).", + "decision": "Decision - Application Overruled; Opinion Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "5DB5C128-54E8-4852-BA25-D5BDDADD9CC5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "692FF0B5-4636-4F1E-BF2C-36FDD6C879A1", + "docketEntryUUID": "C2A6F305-A8A7-429D-B0A9-474E0D5983F0", + "caseInstanceUUID": "7D168353-8C65-453D-A5F4-4A5281855CE5", + "caseNumber": "CL-2023-0061", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "C.W. v. Elmore County Department of Human Resources and A.T. (Appeal from Elmore Juvenile Court: JU-21-93.07).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "AC8714DA-C954-4939-8EE6-9E6A0A5FCC5D", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "CA12978D-C904-41F8-A442-B52DD3ED73CF", + "docketEntryUUID": "FAEB6EE6-01CD-4013-95AA-5EDB2E2E0795", + "caseInstanceUUID": "605EF293-9A96-4315-A755-58D304DF1AE4", + "caseNumber": "CL-2022-1242", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Stacey Lynn Kitchens v. William Bradford Kitchens (Appeal from Montgomery Circuit Court: DR-09-260.06).", + "decision": "Decision - Appeal Dismissed", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "D906714D-6C31-4549-8099-BC18521485CA", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7ED5A232-ADCD-4989-8A8A-618F43838A8A", + "docketEntryUUID": "AA25A19F-4F75-4FB4-9963-7A6FA809874E", + "caseInstanceUUID": "F8ECB012-C5E9-4E1C-B22B-873A05F5E6DC", + "caseNumber": "2210398", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "H.T. v. G.T., J.T., and Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-20-546.01).", + "decision": "Decision - On Rehearing Ex Mero Motu: Opinion Withdrawn; Opinion Substituted; Affirmed.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "F87E2892-F30E-4BC7-9A69-9EA520AA09AB", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "AEB2BA71-3F6A-439D-A52D-B5F5522FD933", + "docketEntryUUID": "B18B4470-6633-4A39-83C9-281986348FF5", + "caseInstanceUUID": "81B809B9-C175-4612-946D-DE96D711DFE0", + "caseNumber": "CL-2023-0065", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Michael W. Gardner v. Marilyn U. Gardner (Appeal from Calhoun Circuit Court: DR-20-900036).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "550A56F5-E3F2-4BC0-BB84-ACA762FE6462", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8DA93137-2ED6-4D0D-853F-2AAA92ECCB05", + "docketEntryUUID": "64540558-8B5B-46F2-8317-86EC0A5B5A6F", + "caseInstanceUUID": "178DBA2B-51FA-4842-BAB2-40CA0E5AC228", + "caseNumber": "CL-2022-0831", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "S.J. v. Henry County Department of Human Resources (Appeal from Henry Juvenile Court: JU-19-81.02).", + "decision": "Rehearing - Overruled", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "60F9BBD2-29D4-4B01-A6EE-3BC4454F71E8", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "b4522a23-739c-431f-b9ed-4eaf7b46c7be", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-07-28", + "publicationName": "Court of Civil Appeals Release List - July 28, 2023", + "publicationNote": "Decisions Announced on Friday, July 28, 2023", + "groupFlag": true, + "scheduledDate": "2023-07-28T13:49:00.000+00:00", + "publicationDate": "2023-07-28T14:12:49.007+00:00", + "publicationItems": [ + { + "publicationItemUUID": "4842A149-7BF5-458E-A1C4-61F6AFD9E919", + "docketEntryUUID": "1C864832-A395-4C17-ABCF-B3D37DE8812A", + "caseInstanceUUID": "33F590A2-1BB7-4DD3-983B-B8AD79584CF8", + "caseNumber": "CL-2022-1130", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "Matthew Randall Cherry v. Brittany Michelle Cherry (Appeal from Jefferson Circuit Court: DR-21-900136).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "3BBE223E-142E-4505-BCC2-E7E0D6088A60", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "59AEE0D9-206F-499B-B7F3-A11C462E5D22", + "docketEntryUUID": "CE854CE3-43AC-4FB7-8EAF-78DE9BACE6F9", + "caseInstanceUUID": "A8513982-54E8-4291-8E02-8A2B0612BF74", + "caseNumber": "CL-2022-1235", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "Mia Simone Curtis v. Barry G. Curtis (Appeal from Talladega Circuit Court: DR-11-202.03).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "084549C0-3FB2-464D-94D5-F3000DD6B8AD", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "E1A7CA6C-B1BC-4047-9066-30EBE91A6737", + "docketEntryUUID": "E29BB897-CF11-4266-85A3-12281A7CF228", + "caseInstanceUUID": "3266DC74-85EF-4EA3-B60F-CA918F5349DF", + "caseNumber": "CL-2022-1129", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Brandon Kelly Brown v. Jennifer Clark Brown (Appeal from Tuscaloosa Circuit Court: DR-21-900556).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "B656DA55-16AD-4824-9DE0-CCD725F50125", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8CD59171-02B1-4DA3-BDA5-6F787A228900", + "docketEntryUUID": "C25EFB5A-1F3F-4E0F-A061-699799D90AD9", + "caseInstanceUUID": "5FB52EE4-5FCB-4016-86F8-DEF2ED04FB6D", + "caseNumber": "CL-2022-0848", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Jim Barber et al. v. Jeffery K. Landrum (Appeal from Randolph Circuit Court: CV-17-900045).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "908BF1F8-017B-4740-B37B-163162901BD5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "90890ADB-FA31-41A0-805A-7CF7CACF954F", + "docketEntryUUID": "E9B9B031-026B-4685-B9CF-C16C7D2BFBBD", + "caseInstanceUUID": "EE8B32B0-E11F-4416-B649-E62852C17600", + "caseNumber": "CL-2022-1010", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "L.B. v. V.T.W. (Appeal from Lee Juvenile Court: CS-11-431.03).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5EEF3E8E-32C9-49FD-B9D3-4C5644BA0741", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "E674006E-3E61-4C77-B640-9B4DFE1D2D19", + "docketEntryUUID": "31A752A2-F51B-4157-B340-BA275DAF764F", + "caseInstanceUUID": "85BBD8EF-2FCA-4F1D-9827-9C14F22ABA1D", + "caseNumber": "CL-2022-1141", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Alonzo Romero Hewitt v. Marketha Murrell Hewitt (Appeal from Madison Circuit Court: DR-20-900303).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "F077B151-CADD-4031-B0B0-02C249319110", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C60CC1CC-BB8E-463F-A27B-74FEC32F8E42", + "docketEntryUUID": "A4FD2591-589C-45CC-B2CD-8FEF4A23D959", + "caseInstanceUUID": "BFE27544-A59C-4E12-BEB3-FE7F9D509688", + "caseNumber": "CL-2022-1161", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "N.L.C. v. Bibb County Department of Human Resources (Appeal from Bibb Juvenile Court: JU-21-100.02).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "9293BE62-B0B0-4C7A-A128-D2F29E142A12", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "4FCE43D9-36AA-4BEB-8F80-97DE781636E7", + "docketEntryUUID": "80F6FDA5-DEAA-4DF4-A260-A36F6E82A2E4", + "caseInstanceUUID": "8E8F3760-A5DA-4341-9B4F-DF4887298094", + "caseNumber": "CL-2022-1233", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "M.L.H. v. E.E.H. and G.H. (Appeal from DeKalb Juvenile Court: JU-22-251.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "0E7371CD-0F1E-403E-A7A5-64ECA1C7EF07", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C1CBE8E6-7151-463E-A093-2C4E59A3FD5D", + "docketEntryUUID": "6221B702-687C-4071-82F1-74F18963CC60", + "caseInstanceUUID": "F0BCCB44-DEAC-4161-8844-AAF246BDF382", + "caseNumber": "CL-2022-0854", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Randolph County Commission v. Jeffery K. Landrum (Appeal from Randolph Circuit Court: CV-17-900045).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B593E9F7-ED3E-4704-A065-60CC20E72560", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "FF6BDDED-C3A1-4CB6-A6B4-2AD068C2327A", + "docketEntryUUID": "9DA05ED3-C01C-4663-BD90-A385DA1AA59C", + "caseInstanceUUID": "F3087DDC-AC9E-4293-B641-11567EDFBBE2", + "caseNumber": "CL-2022-1267", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "Ina Faye Knight v. Jackson County et al. (Appeal from Jackson Circuit Court: CV-21-900103.).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "A998E61C-8C08-4DF7-8B87-61FAC116F927", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "EC0D2AFF-615E-4AE0-AF00-C86E4808621D", + "docketEntryUUID": "52632F7A-C606-4A69-94EB-A6383D35D67B", + "caseInstanceUUID": "DEE9E551-39FA-4D22-A3C1-3C4C6D8AA86E", + "caseNumber": "CL-2022-1199", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Stefanie H. Edwards v. Brian H. Edwards (Appeal from Mobile Circuit Court: DR-22-900467).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "B77605BE-3308-4F02-AACB-7FF00C5763EF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6A4BF8B8-8EAE-477A-91DF-1B3884BABDCF", + "docketEntryUUID": "9892DBFC-89D9-4AC7-81C5-3567CB7717D1", + "caseInstanceUUID": "C960DA48-536E-45DA-8EEC-676204F7E6AB", + "caseNumber": "CL-2022-1238", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "J.L.R. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-18-286.04).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "7815A1FF-4C2C-4CB2-9B0A-915790836400", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "68028E7A-5935-41EE-8C4D-F22D07E036C4", + "docketEntryUUID": "2CBFAB91-D9C5-4D87-9205-01E18CD8D1F1", + "caseInstanceUUID": "9749C36D-010E-4D86-A301-6FD438B561D3", + "caseNumber": "CL-2022-1271", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "A.D. v. Chambers County Department of Human Resources (Appeal from Chambers Juvenile Court: JU-20-72.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "666BF367-5FBC-416B-B537-5A06043CEB10", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "613E9BBB-94A1-4406-8B87-3CC7345F3697", + "docketEntryUUID": "6C29852C-BB86-4C16-9F59-055264D978AC", + "caseInstanceUUID": "28137E9F-BE25-4945-A8DC-CA7A6D222B4D", + "caseNumber": "CL-2022-1285", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "R.B. v. Lauderdale County Department of Human Resources (Appeal from Lauderdale Juvenile Court: JU-21-66.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "518BA53F-1799-4A7C-96CE-5274A20D104E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F5369466-AFD0-42B0-8AC6-1A994602C1B4", + "docketEntryUUID": "DF97B48D-95CE-4ED7-9151-CA3C776DE08F", + "caseInstanceUUID": "08810571-2538-4B50-9B18-3D9C278EFCE0", + "caseNumber": "CL-2022-1286", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "R.B. v. Lauderdale County Department of Human Resources (Appeal from Lauderdale Juvenile Court: JU-19-672.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "11A943BB-45F3-4165-9088-D87214BA98BE", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "3C57665E-5225-42EE-8A69-9A0202AE0522", + "docketEntryUUID": "DC00ED54-DD87-41B9-81BF-19DB08D04B99", + "caseInstanceUUID": "DC1FECEC-8D9F-434D-BFB8-A47AB23BDF76", + "caseNumber": "CL-2022-1272", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "A.D. v. Chambers County Department of Human Resources (Appeal from Chambers Juvenile Court: JU-20-73.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "9CDBB87B-92E5-48BC-BB9F-DC218E5A5AC4", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "783FA695-3CA8-4538-B99C-21D119078433", + "docketEntryUUID": "A91B8338-6A27-41DB-8C83-BDDB6A664D05", + "caseInstanceUUID": "79270D48-97D5-45A3-9F4E-35EB2823D728", + "caseNumber": "CL-2023-0068", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "Matthew Sherman Phillips v. Delta Capital Resources, LLC (Appeal from St. Clair Circuit Court: CV-22-81).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "1B55BF5E-1122-46D2-9F58-50C52F78ED08", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "45A65DA7-A8A3-4CD2-8DE0-CB3B776580FF", + "docketEntryUUID": "F0DF82D9-F783-4842-9387-0C2C5709B64F", + "caseInstanceUUID": "AD6C7E4B-C322-4FAC-B41B-BB6B73A2C57F", + "caseNumber": "CL-2022-1273", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "A.D. v. Chambers County Department of Human Resources (Appeal from Chambers Juvenile Court: JU-20-74.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "73B0891B-A248-4B9A-B8A0-AA0862385040", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2C0B9587-0219-43E7-BA48-E77AB8B18A57", + "docketEntryUUID": "95F5C47E-1FDE-48D3-BDB2-4862C530AAE7", + "caseInstanceUUID": "2588F450-2E3D-4E62-BB30-4E9B9A8BCDC0", + "caseNumber": "CL-2022-1274", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "A.D. v. Chambers County Department of Human Resources (Appeal from Chambers Juvenile Court: JU-20-75.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "A3172DAC-98EE-4EB5-A36D-A00AF6AAC047", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "A5B04EAD-8328-46E4-AE27-1C472A68DD50", + "docketEntryUUID": "2DBD936F-4AC7-447A-A648-CF4085FBCF71", + "caseInstanceUUID": "9AB6C2D6-55E3-4921-A6AD-83B0456049D2", + "caseNumber": "CL-2023-0083", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "R.W. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-21-710.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 8, + "documents": [ + { + "documentLinkUUID": "AD63BEF8-B99B-410F-A71D-95399FDC1DBA", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "CFEF1B88-F666-42F8-84D7-6C4712069A58", + "docketEntryUUID": "96B2D670-A7C9-4525-A204-B3E708A4A42B", + "caseInstanceUUID": "FB322480-F1CE-4989-86CE-88323F015A2B", + "caseNumber": "CL-2023-0084", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "R.W. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-21-434.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 9, + "documents": [ + { + "documentLinkUUID": "5944FC82-BAA8-4A3F-9374-04ABBED863B3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C72B6E1D-2F45-4007-973B-C17123101980", + "docketEntryUUID": "323C52C9-7365-4E8B-8B86-5CADAF29C8FA", + "caseInstanceUUID": "80122E66-1F7D-4FE8-8368-91C9B44E001A", + "caseNumber": "CL-2023-0085", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "Christopher Holden v. Altrise Harris Holden (Appeal from Madison Circuit Court: DR-10-513.02).", + "decision": "Decision - Affirmed.", + "orderBy": 10, + "documents": [ + { + "documentLinkUUID": "955D936D-2468-430B-99F2-6F4EE5A40A48", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "207b8aa3-c853-4f8f-b980-1c5847474e89", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-07-21", + "publicationName": "Court of Civil Appeals Release List - July 21, 2023", + "publicationNote": "Decisions Announced on Friday, July 21, 2023", + "groupFlag": true, + "scheduledDate": "2023-07-21T14:00:00.000+00:00", + "publicationDate": "2023-07-21T13:49:08.387+00:00", + "publicationItems": [ + { + "publicationItemUUID": "0B879ED3-8833-43AE-9EEE-C85C32866648", + "docketEntryUUID": "08CA1248-4B67-4A1F-8AD6-F011182DF524", + "caseInstanceUUID": "9066D638-4CEF-411D-AA0D-BABC896F5200", + "caseNumber": "CL-2022-1051", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "J.L. v. S.L. and T.L. (Appeal from Cleburne Juvenile Court: JU-21-46.01).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "2D8E351C-BCFF-488E-9DD5-FE4AFFF2E08F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "0712B13F-1164-47BC-83C3-E6DDB2762A32", + "docketEntryUUID": "6D964AC0-DCBF-4CA1-B142-EF3555F9E5D1", + "caseInstanceUUID": "FB835A0E-5560-4EE8-B4C8-D51852460FCB", + "caseNumber": "CL-2022-1061", + "groupName": "Fridy, J.", + "groupOrderBy": 5, + "title": "Summer Lee Ann O'Connor v. Joey Lynn O'Connor (Appeal from DeKalb Circuit Court: DR-17-900216.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "2CA8870F-2738-472B-8A48-996EA5102AE3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "95D2ECA1-34F1-4427-8854-34AFAE6770A9", + "docketEntryUUID": "CA82DB38-9A65-49F4-89FA-697B7DC5DD08", + "caseInstanceUUID": "D2ADB803-F4E5-4B96-8000-A2060A5701A0", + "caseNumber": "CL-2022-0855", + "groupName": "Hanson, J.", + "groupOrderBy": 4, + "title": "Melanie Kym Chapman v. Gregory Keith Chapman (Appeal from Jackson Circuit Court: DR-20-900146).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "31FF23FA-5EF4-4894-AF36-139ACBEAF2EE", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "A4868C10-126D-4309-BA82-46DA3FBB3BCF", + "docketEntryUUID": "5B653384-BA2A-4B53-B4CB-4FEADC52D26C", + "caseInstanceUUID": "8BB45759-83E2-4695-9765-69E3A6E25E58", + "caseNumber": "CL-2022-1262", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "B.M. v. Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-21-122.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "7AFC36B2-A024-4455-8391-E1949FC65D70", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "B913E82A-007C-4739-9746-AA6D53A4890F", + "docketEntryUUID": "DC7550A1-35AF-431D-87E9-3EF44953BEE5", + "caseInstanceUUID": "D98826A7-DA3F-4BFF-97A9-3D89F295BB1A", + "caseNumber": "CL-2023-0087", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Brenda Hayes v. Southern Lease Management Group, LLC (Appeal from Mobile Circuit Court: CV-22-53).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "382833CF-C1BF-406D-9120-EE413E19E9C0", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1AD602DD-CA6F-4427-A898-DAE158895C79", + "docketEntryUUID": "F3FCAE4B-D554-4421-A74B-381213BBF873", + "caseInstanceUUID": "55F3A694-CE88-42FA-9BAD-75D1B416E4DE", + "caseNumber": "CL-2022-1100", + "groupName": "Fridy, J.", + "groupOrderBy": 5, + "title": "Summer Lee Ann O'Connor v. Joey Lynn O'Connor (Appeal from DeKalb Circuit Court: DR-17-900216.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "A129549B-D48B-4EF2-A00F-4105FCD66B65", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "49494BC4-C1A0-49FB-A956-EE0D8525A2BA", + "docketEntryUUID": "26CB5A50-BB20-46D5-BE26-7EBB8C8F57FE", + "caseInstanceUUID": "E836E3FC-EB05-46B2-8EBA-671E07E88BCF", + "caseNumber": "CL-2022-1263", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "B.M. v. Etowah County Department of Human Resources (Appeal from Etowah Juvenile Court: JU-21-274.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "68CE18E5-7250-44EF-A606-A3357647A12C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "3B897364-184B-45BF-AD2C-80FB4699C89E", + "docketEntryUUID": "94547E64-37C3-47CB-B165-DAA547E72C81", + "caseInstanceUUID": "1A4E54BA-505A-4DE9-B2E2-3F8157BE55B4", + "caseNumber": "CL-2023-0094", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "C.G. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-70.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "443ED773-F074-4FB7-BCDC-4EE1158C3D5F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1D3461F3-7084-41DC-B4BA-7189309B0DED", + "docketEntryUUID": "0D1A2DAB-DDB1-4708-B1D3-000378F83BA3", + "caseInstanceUUID": "52E1D601-BBD1-4F41-8B23-2FFD074F35E0", + "caseNumber": "CL-2023-0154", + "groupName": "Fridy, J.", + "groupOrderBy": 5, + "title": "A.M.G.J. v. K.N.S. (Appeal from Jefferson Juvenile Court: JU-21-936.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "72BB1960-CF79-4462-B189-17986E4A25E8", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "6f84e497-4010-47ec-8e57-95a649bc772c", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-07-14", + "publicationName": "Court of Civil Appeals Release List - July 14, 2023", + "publicationNote": "Decisions Announced on Friday, July 14, 2023", + "groupFlag": true, + "scheduledDate": "2023-07-14T13:44:00.000+00:00", + "publicationDate": "2023-07-14T14:06:28.739+00:00", + "publicationItems": [ + { + "publicationItemUUID": "E2B32D48-D182-46DE-89AC-A0823C77F6D5", + "docketEntryUUID": "E202E4BF-CF18-44D8-908A-7A7E3CBB70F7", + "caseInstanceUUID": "3C6F1A22-DFB9-4208-A733-51EA8DC88C5B", + "caseNumber": "CL-2022-1021", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "R.A. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-20-545.02).", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "807F3280-924A-43F9-B140-AB4F879ADDD7", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "CE894921-2304-48DD-B915-2574E99407F9", + "docketEntryUUID": "D0906EF1-BB62-4880-BFB8-83DF43D88D28", + "caseInstanceUUID": "61F8AA02-7D6F-4AA0-A16A-106B465039FC", + "caseNumber": "CL-2022-0967", + "groupName": "Hanson, J.", + "groupOrderBy": 4, + "title": "A.H. v. L.R. (Appeal from Calhoun Juvenile Court: JU-19-900.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "871B1F66-811B-4EB5-B9C0-B8F9C1701F24", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "BF63ED55-6609-4D96-B9E1-E2225DD97F52", + "docketEntryUUID": "2A9D399C-1051-461A-A043-9F96486D68C5", + "caseInstanceUUID": "63B4C1DA-492F-48B1-9493-8B34828897E7", + "caseNumber": "CL-2022-0911", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "G.W.K. v. B.W.M. and G.M. (Appeal from Lawrence Juvenile Court: JU-21-224.01).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "34E93FEE-483D-4CE4-BFBF-D9AB6E1BD550", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8EF9D8BD-52CD-4259-BBE5-1E8F93C20C01", + "docketEntryUUID": "FB9BAFFE-455C-4F47-9DFA-F520A66EAE9A", + "caseInstanceUUID": "0C775643-25B1-426D-9F5B-3BE0CCB68776", + "caseNumber": "2210486", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Harold Wallace v. The Housing Authority of the City of Talladega (Appeal from Talladega Circuit Court: CV-18-900509).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "23224A80-6F42-4E55-916E-C4C48093E168", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "6C5D5657-07BA-407C-A8F7-9B816EF547C6", + "docketEntryUUID": "FFCF311B-6C41-4830-99FB-7C02532486AD", + "caseInstanceUUID": "A5567851-C80B-49A8-A9D1-98383AB3666F", + "caseNumber": "CL-2022-1118", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "V.R.W. v. M.M. (Appeal from Etowah Juvenile Court: CS-12-233.04).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "F83153D7-C801-426F-932C-672979681418", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "51A57642-6740-46DC-A801-C551AC1F54E6", + "docketEntryUUID": "31CC147C-924F-40AA-88AA-F52B48F48746", + "caseInstanceUUID": "5DDD5ECE-A8E9-4121-A417-93A06F962F5D", + "caseNumber": "CL-2023-0308", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Ex parte Gary Daniel Fraiser PETITION FOR WRIT OF MANDAMUS (In re: Angela N. Fraiser v. Gary Daniel Fraiser) (Elmore Circuit Court: DR-18-117).", + "decision": "Decision - Petition Granted in Part and Denied in Part; Writ Issued.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B46824B8-EE8E-4E8E-A73D-09EBDCBFC72F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "18A2AF1B-A543-4EB3-AE7F-2D8DDCB0FAF8", + "docketEntryUUID": "02671E4C-A715-4264-AC94-939ACF210993", + "caseInstanceUUID": "3FFED54C-2C2F-474E-B2BA-CDA7EF5912BD", + "caseNumber": "CL-2022-0912", + "groupName": "Moore, J.", + "groupOrderBy": 2, + "title": "G.W.K. v. B.W.M. and G.M. (Appeal from Lawrence Juvenile Court: JU-21-223.01).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B747164B-3D28-40F4-A382-01EC5FC1FCCC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1176829D-3BAB-4D25-90D0-556BFE60ED61", + "docketEntryUUID": "B65ECE76-22F6-46EE-A0D2-A7A1367F704D", + "caseInstanceUUID": "CD00219E-CBF1-4895-90BC-024BEA55C16E", + "caseNumber": "CL-2022-1022", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "R.A. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-20-546.02).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "A60EA9F3-8360-48AF-8660-09F4D4740961", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "263CE842-7342-4FD2-87E1-731B1C8EC788", + "docketEntryUUID": "E7F88FA8-970C-483D-8F70-3F8605F41CA0", + "caseInstanceUUID": "AF6A16C1-7547-4FD6-8F07-0148B6DB4295", + "caseNumber": "CL-2022-1023", + "groupName": "Edwards, J.", + "groupOrderBy": 3, + "title": "R.A. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-20-547.02).", + "decision": "Decision - Affirmed.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "AD5857BB-9F34-4F59-AE9C-E3615FB13E35", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "6cda29b0-64dc-4a1e-921a-4ade79a511f3", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-07-07", + "publicationName": "Court of Civil Appeals Release List - July 7, 2023", + "publicationNote": "Decisions Announced on Friday, July 7, 2023", + "groupFlag": true, + "scheduledDate": "2023-07-07T14:20:00.000+00:00", + "publicationDate": "2023-07-07T15:01:58.567+00:00", + "publicationItems": [ + { + "publicationItemUUID": "16760DBA-8D65-42EB-9E13-A943BDE46CFF", + "docketEntryUUID": "D170C3EA-FB08-4182-92F2-6DED58B08FC2", + "caseInstanceUUID": "3B3058B7-3759-43EB-9525-A1AAB66DAFE4", + "caseNumber": "CL-2022-1059", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "The Water Works Board of the City of Birmingham v. Alabama Surface Mining Commission and Mays Mining, Inc. (Appeal from Walker Circuit Court: CV-21-900190).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "B9A7AC6C-86AD-4CAA-AE80-E6DB5651E69C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D4D64673-2D3D-4E70-A757-69084F6B9A89", + "docketEntryUUID": "FF87BF34-C188-4CE6-929C-ECDAF33B721D", + "caseInstanceUUID": "A3B526D9-FE35-4E2F-A3FD-A458DB1AED7F", + "caseNumber": "CL-2022-0649", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "Shawnesse W. Benton v. Jay Preston Benton (Appeal from Russell Circuit Court: DR-16-900220).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "332BBA47-2691-44AC-8DFA-E73337BF63E2", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "BD90E2EA-60E0-474E-8E05-589D693D4B8D", + "docketEntryUUID": "C241AAC6-B0C9-490B-B7DE-F061C84C32E4", + "caseInstanceUUID": "21032322-D401-465E-A1E0-9FB5EF44CB35", + "caseNumber": "2210339", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Scott Andrew Sabo v. Avery Caldwell Sabo, Harry Miller Caldwell, Jr., and Deborah D. Caldwell (Appeal from Jefferson Circuit Court: DR-16-901609.02).", + "decision": "Rehearing - Ex Mero Motu; No-Opinion Order of Affirmance of June 30, 2023, Withdrawn; Order Substituted; Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "D5172326-EF26-4B24-9008-DD6851649BCD", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "257B0A39-9C4A-461A-A8D8-B4314E4C1ACC", + "docketEntryUUID": "FE10689B-A527-4F2E-9FDD-94D5152564A3", + "caseInstanceUUID": "D8082B78-1EFC-49A5-8DDD-3290B47A0FCE", + "caseNumber": "CL-2022-1091", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "K.B. v. T.J. (Appeal from Escambia Juvenile Court: JU-22-58.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5533367A-6F14-4F90-BFE4-BD99548D24E5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F3473ED7-D112-4E18-801D-82D986AC2DF1", + "docketEntryUUID": "FF8A0BF1-A7CE-4BDC-B5C1-09FAC745B10C", + "caseInstanceUUID": "D1521A68-2EFC-491C-87E6-7A9F2609DB73", + "caseNumber": "CL-2022-1116", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "K.W. v. Lee County Department of Human Resources (Appeal from Lee Juvenile Court: JU-16-308.07).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "1946C0A2-099A-4D8B-80DD-B408DEE7321C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7BB50766-E3CC-4E0A-9F26-DE47BF0198D2", + "docketEntryUUID": "8E514534-4A2B-42CF-B89A-4DC91A4245D1", + "caseInstanceUUID": "3534C665-AFBF-4F96-B0E6-447DB9E69C32", + "caseNumber": "2210340", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Scott Andrew Sabo v. Avery Caldwell Sabo, Harry Miller Caldwell, Jr., and Deborah D. Caldwell (Appeal from Jefferson Circuit Court: DR-16-901609.03).", + "decision": "Rehearing - Ex Mero Motu; No-Opinion Order of Affirmance of June 30, 2023, Withdrawn; Order Substituted; Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B8F1CB89-C6DC-4845-A956-59B4D2B17B10", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "0E4B64E1-1099-406D-912A-57422B0EE067", + "docketEntryUUID": "3A93B661-3EF1-4EB4-B598-AC14904FEFD4", + "caseInstanceUUID": "ED87B8B7-C8EB-48CF-9730-502E5E03F8FA", + "caseNumber": "CL-2022-1180", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "K.R. v. Houston County Department of Human Resources (Appeal from Houston Juvenile Court: JU-18-337.06).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "846AD1EE-5119-4CE7-80F4-77F2C27A71A8", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "764DA5A3-65EF-4E6A-8AB2-51C8FBD9BFB2", + "docketEntryUUID": "17610B1C-E03B-40C8-9D3E-5E883DD623B0", + "caseInstanceUUID": "C3A62271-DCE4-4FD0-9E14-04B0B871CF94", + "caseNumber": "CL-2022-0736", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "S.R.E. v. Shelby County Department of Human Resources (Appeal from Shelby Juvenile Court: JU-17-529.06).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "997C4193-64F9-4256-85CB-9BB057EF37D5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C4BC09B4-CD7D-4501-A5E0-6BFCBBB067E7", + "docketEntryUUID": "AD1F847D-E874-4B38-B078-08A0EE5CD64B", + "caseInstanceUUID": "7E2137BB-87F4-4129-83C4-D5CF2B46DAFF", + "caseNumber": "CL-2022-0737", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "S.R.E. v. Shelby County Department of Human Resources (Appeal from Shelby Juvenile Court: JU-17-530.07).", + "decision": "Decision - Appeal Dismissed with Instructions.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "50884198-9971-4F2A-ABDA-12671ED09625", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7160FDC9-A2EC-425C-B30A-E665FC32C2F4", + "docketEntryUUID": "69DE4E46-A592-4225-9568-63E09978D504", + "caseInstanceUUID": "712C251B-50DC-42C8-89A9-0949BEA26AE3", + "caseNumber": "CL-2023-0261", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Ex parte T.E.B. and D.K.G. PETITION FOR WRIT OF MANDAMUS (In re: In the matter of the Adoption Petition\nof T.E.B. and D.K.G. for B.B.A.) (Montgomery Probate Court: 22-A0019)", + "decision": "Decision - Petition Dismissed with Instructions", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "3F7778D6-389C-493C-9A7F-0CF761DF236B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2042AC4D-AD21-47A8-AB1A-017F2A1FFDD3", + "docketEntryUUID": "F972317A-06B3-456F-8276-14446FC1027D", + "caseInstanceUUID": "FB5B2D19-B96A-41B8-8FE1-9F67289DD865", + "caseNumber": "CL-2022-1117", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "C.M. v. Lee County Department of Human Resources (Appeal from Lee Juvenile Court: JU-16-308.07).", + "decision": "Decision - Affirmed.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "6203FBDE-C86B-403B-95C5-E3F95D6DA529", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9382D96F-B888-440D-9B62-E75A14782BD3", + "docketEntryUUID": "944BFE31-51D0-4519-ADEA-67EAC470D27B", + "caseInstanceUUID": "9B93AE1F-E4DD-4174-9949-EEA96C3E6127", + "caseNumber": "CL-2023-0048", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "J.T.A. v. Mobile County Department of Human Resources (Appeal from Mobile Juvenile Court: JU-18-1366.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "6FCE7B99-8DFE-4622-9F31-77C741763B1A", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8E734647-ACD5-46D0-A657-28A490C46586", + "docketEntryUUID": "1B4022A0-9D1B-4D49-9DE7-20550011AFA3", + "caseInstanceUUID": "CCA74199-CDD1-4151-AAA2-8BC9F44745C7", + "caseNumber": "CL-2022-0622", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Avery Caldwell Sabo v. Scott Andrew Sabo (Appeal from Jefferson Circuit Court: DR-16-901609.03).", + "decision": "Rehearing - Ex Mero Motu; No-Opinion Order of Affirmance of June 30, 2023, Withdrawn; Order Substituted; Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "31232964-A75F-44AF-BA87-20D6CA04A6B9", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "E2409473-061A-4E6E-9BAB-EBF8CB715A60", + "docketEntryUUID": "820F02D3-DF51-4A55-8625-F156CB45D5B8", + "caseInstanceUUID": "FDDA8E64-4AAC-4B6B-A814-5F3E9AA8F3BF", + "caseNumber": "CL-2022-0738", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "S.R.E. v. Shelby County Department of Human Resources (Appeal from Shelby Juvenile Court: JU-17-531.06)", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "FE4A1F6B-896F-4D64-8B50-E54643E33442", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "14D8D888-6B14-4BC8-94CA-5ECE20F29FA0", + "docketEntryUUID": "3AF7C08A-54FA-4B32-9223-577B7A7F7C2B", + "caseInstanceUUID": "E68A0740-45A1-489B-A9E4-F6D7B1F4E2B5", + "caseNumber": "CL-2022-0630", + "groupName": "On Rehearing", + "groupOrderBy": 4, + "title": "Avery Caldwell Sabo v. Scott Andrew Sabo (Appeal from Jefferson Circuit Court: DR-16-901609.02).", + "decision": "Rehearing - Ex Mero Motu; No-Opinion Order of Affirmance of June 30, 2023, Withdrawn; Order Substituted; Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "BEF80A58-0A2F-4D82-AA1B-428CD299E83A", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "53412B28-1094-49DF-BC76-B6A1F1762ED5", + "docketEntryUUID": "226E114B-AAB1-4689-85E8-35721370C690", + "caseInstanceUUID": "EF968449-3ED7-4AFF-B657-D228F8176BCF", + "caseNumber": "CL-2022-0739", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "S.R.E. v. Shelby County Department of Human Resources (Appeal from Shelby Juvenile Court: JU-17-532.06)", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "C3CB2403-2C28-489D-B812-423948EF43EC", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "84CCFF84-3012-48F9-AC0A-CB86080A4C99", + "docketEntryUUID": "1568CDE4-34BA-4733-B361-94E99E61B09B", + "caseInstanceUUID": "7F3FDAE3-35A2-4B76-A78F-9C7A603F820D", + "caseNumber": "CL-2022-0740", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "S.R.E. v. Shelby County Department of Human Resources (Appeal from Shelby Juvenile Court: JU-18-596.04)", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "20757DA9-13CB-4788-B9EA-160A12299825", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "60c663ee-6edc-4f8d-baee-84a865529efa", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-06-30", + "publicationName": "Court of Civil Appeals Release List - June 30, 2023", + "publicationNote": "Decisions Announced on Friday, June 30, 2023", + "groupFlag": true, + "scheduledDate": "2023-06-30T14:30:00.000+00:00", + "publicationDate": "2023-06-30T14:35:54.660+00:00", + "publicationItems": [ + { + "publicationItemUUID": "5D2164A8-F5AD-4671-870A-FDC0AFBF4DAD", + "docketEntryUUID": "B8846648-7661-48F4-95B8-AC725F35393B", + "caseInstanceUUID": "21032322-D401-465E-A1E0-9FB5EF44CB35", + "caseNumber": "2210339", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Scott Andrew Sabo v. Avery Caldwell Sabo, Harry Miller Caldwell, Jr., and Deborah D. Caldwell (Appeal from Jefferson Circuit Court: DR-16-901609.02).", + "decision": "Decision - Affirmed. No Opinion. (Special Writing)", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "2EFDC754-DE17-4AE9-B0FF-26DF567856E0", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "CD4AA57B-FAFB-4554-A358-B59F660F3967", + "docketEntryUUID": "401E43FD-3AD1-4483-BC95-E43AAAE22E47", + "caseInstanceUUID": "6F5C8127-6D12-4093-AF79-36B029D87377", + "caseNumber": "CL-2022-1029", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "K.M.C. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-22-19.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "AFA1F545-85B0-4183-B508-53130AFCC23D", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "7CC8EB25-5F03-49F1-AD1E-0FA5CB73BE16", + "docketEntryUUID": "387D9611-2C89-444D-AE0C-C908C6D2656D", + "caseInstanceUUID": "42E8E6A0-888C-4C9C-9FC7-108A5D8D0216", + "caseNumber": "CL-2022-0943", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "A.L. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-12-33.04).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "7FD3A26F-76CF-48C7-BAE3-7538F561799F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "5107F910-DB1F-412A-9D35-433BD51F452F", + "docketEntryUUID": "45C7507B-90E6-4185-A5E6-E371FB103127", + "caseInstanceUUID": "DE31E023-A91F-400E-B381-375C53072DB5", + "caseNumber": "CL-2022-0944", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "A.L. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-19-1752.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "F21C586F-A7A4-4F7B-83F2-6E0F37D23540", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "86A659F4-2315-4E3B-9FDF-F812FCB3060A", + "docketEntryUUID": "E9C1118B-677F-42F5-8D54-F9B225637CFD", + "caseInstanceUUID": "3534C665-AFBF-4F96-B0E6-447DB9E69C32", + "caseNumber": "2210340", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Scott Andrew Sabo v. Avery Caldwell Sabo, Harry Miller Caldwell, Jr., and Deborah D. Caldwell (Appeal from Jefferson Circuit Court: DR-16-901609.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "F990EB4F-EEBC-4684-A2E2-7915F587C5C3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7B539963-CEF5-4EC8-BBEA-2280F51D447C", + "docketEntryUUID": "C7E0D5BD-14BA-4515-B1CB-8600C2534811", + "caseInstanceUUID": "CCA74199-CDD1-4151-AAA2-8BC9F44745C7", + "caseNumber": "CL-2022-0622", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Avery Caldwell Sabo v. Scott Andrew Sabo (Appeal from Jefferson Circuit Court: DR-16-901609.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "E30EA230-0E21-4104-8E19-62BD6D43538D", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7FE27789-794F-4B44-B259-FA97E7B0E947", + "docketEntryUUID": "6F8F46B3-E3F6-43F0-B3A8-D7DDE08A5B74", + "caseInstanceUUID": "BC2F62A7-F4B1-4F42-8C36-81CFAD6DC77B", + "caseNumber": "CL-2022-0945", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "A.L. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-19-1753.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "737EA97A-D0B5-4E89-8631-63F780E3297B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "482BA748-E3EC-44FA-8152-B812C6788FDF", + "docketEntryUUID": "F47EF9E7-A340-4480-9F42-34B972AB5140", + "caseInstanceUUID": "500FC3F5-375D-4C0A-B881-B15E79FA2247", + "caseNumber": "CL-2022-0946", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "A.L. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-19-1754.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "A61C147B-DDC0-4D83-B413-F69321885ECD", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "99D9AE9D-E419-42BA-9CF3-1D18DC600EC2", + "docketEntryUUID": "78F45CF7-7606-44E7-A38A-F357B582F08A", + "caseInstanceUUID": "E68A0740-45A1-489B-A9E4-F6D7B1F4E2B5", + "caseNumber": "CL-2022-0630", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Avery Caldwell Sabo v. Scott Andrew Sabo (Appeal from Jefferson Circuit Court: DR-16-901609.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "06D5FFB4-5BAA-4418-AAE8-8C70F7D1BA9C", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "3E777D9F-F61D-4F58-830A-09C16B634F40", + "docketEntryUUID": "7F3D26BC-2AE1-4894-99F9-F3F5F406E0F9", + "caseInstanceUUID": "6041FEFE-0D39-428E-B30E-55E1A4ACDB00", + "caseNumber": "CL-2022-0997", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Danita Habick v. Ted N. Mosley (Appeal from Mobile Circuit Court: DR-19-900179).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "913D19E5-9C6E-474D-96CD-4B28494F4CAF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "FD976C1E-3ADF-4CD9-ABE5-FB9B71DD0EDF", + "docketEntryUUID": "30EE1B32-921B-431B-BFE0-2A75BD8F9A6C", + "caseInstanceUUID": "BBC9C603-60F4-4E08-8A99-3EFE9AFE1B39", + "caseNumber": "CL-2022-0970", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "K.B. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-19-1753.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "1A096F44-4A5D-4A0B-983D-A7F23BA0AE7B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "45DB76C3-69C4-485C-B7D4-6F6865013544", + "docketEntryUUID": "08241C54-B315-4DA3-B6FC-C5E0A6210508", + "caseInstanceUUID": "4FFCBF8C-E07C-49D1-ACFF-96333E523FFC", + "caseNumber": "CL-2022-1024", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Ted N. Mosley v. Danita Habick (Appeal from Mobile Circuit Court: DR-19-900179).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "7EEC4618-54B9-4C40-BBC4-C5FEAED3D38F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9471758D-505A-4575-AACC-D03823B96FF1", + "docketEntryUUID": "908B96F1-10A5-4A54-8EA0-9FC1FB6A87AB", + "caseInstanceUUID": "6C3073ED-F19C-4561-825E-860C7FCB49CA", + "caseNumber": "CL-2022-1065", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Mary Diane Smith v. Clinton Ellis Smith (Appeal from Madison Circuit Court: DR-12-900314.04).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "8E4B2A44-9C75-40C4-8D9F-F3836A3B8A96", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "60a2e66a-e7b0-4dfc-bfc4-a680dcfb5745", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-06-23", + "publicationName": "Court of Civil Appeals Release List - June 23, 2023", + "publicationNote": "Decisions Announced on Friday, June 23, 2023", + "groupFlag": true, + "scheduledDate": "2023-06-23T14:00:00.000+00:00", + "publicationDate": "2023-06-23T14:26:03.370+00:00", + "publicationItems": [ + { + "publicationItemUUID": "434226D4-809D-4318-9021-B1333E8EB2B4", + "docketEntryUUID": "2DBAFFAD-5C65-45F5-827D-26F72FFAFA32", + "caseInstanceUUID": "AB8CB7A4-ABFF-4B9A-B59B-89C947FDC0E1", + "caseNumber": "CL-2022-0909", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Tony Harris v. Stephanie Harris (Appeal from Russell Circuit Court: DR-09-345.05).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5AE28E6F-C264-44E2-9CCD-B69A78D8BFC1", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "FEE1BDE2-4B0F-4FAA-9B74-82AD4C606717", + "docketEntryUUID": "450552D8-B87F-4EB3-8F2C-010351227736", + "caseInstanceUUID": "B2CC4D69-A520-42E5-9C76-D4B089C3218E", + "caseNumber": "CL-2023-0062", + "groupName": "Fridy, J.", + "groupOrderBy": 4, + "title": "A.P. v. J.P. (Appeal from Jefferson Juvenile Court: JU-22-755.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "71773DDF-E863-4DC3-B848-F8F0148BC36D", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "50C850C6-8D06-4164-89B3-E31E50B8D278", + "docketEntryUUID": "5910A8AD-89BE-4477-BC38-3C5C9C76836E", + "caseInstanceUUID": "C5429F8D-044E-408A-957C-0DC4B9A592FA", + "caseNumber": "CL-2022-1019", + "groupName": "Hanson, J.", + "groupOrderBy": 3, + "title": "Gavin Woodruff v. Bonnie Glenn (Appeal from Baldwin Circuit Court: CV-21-901414).", + "decision": "Decision - Appeal Dismissed", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "ECFCD6C6-5D77-4E8F-8EF3-CFFCA6AC6970", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "174058A2-CCA3-4101-B27D-E7745A9DBE8C", + "docketEntryUUID": "10A2FBD8-988B-43FB-9724-C517D687A8F5", + "caseInstanceUUID": "2AA1B631-DFBF-4FED-888D-1DA2DE6429E1", + "caseNumber": "2200821", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "Anthony Keith, Ronald C. Smith, Esther Calhoun, William T. Gipson, and Latonya J. Gipson v. Lance R. LeFleur, in his official capacity as Director of the Alabama Department of Environmental Management; and Marilyn G. Elliott, in her official capacity as Deputy Director and the Nondiscrimination Coordinator of the Alabama Department of Environmental Management (Appeal from Montgomery Circuit Court: CV-19-900283).", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "19ADA9A5-0580-47C4-9D62-04AE4D1D25BD", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7210F5E7-BF95-4865-B4B2-A72025F5BF74", + "docketEntryUUID": "05D90D5F-6D26-46E7-AC84-85028462C8D6", + "caseInstanceUUID": "3496F585-C47E-476C-BBEC-2F718C68D55D", + "caseNumber": "CL-2022-1014", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "T.C. v. M.C. (Appeal from Houston Juvenile Court: JU-19-871.02).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "FA09B6B7-E794-47B8-BCD7-3CED6B529BED", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "A6856DA1-9902-4DC5-9D62-90E1FC78F087", + "docketEntryUUID": "2365C7BB-7860-479F-8A1D-75D79C80BEF9", + "caseInstanceUUID": "A52F392D-F60C-4DCA-B68D-9D63798D7EB9", + "caseNumber": "CL-2022-1125", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "Ex parte C.R. and L.S. PETITION FOR WRIT OF MANDAMUS: (In re: V.R. and J.R. v. C.R. and L.S.) (Madison Juvenile Court: JU-22-754.01).", + "decision": "Decision - Petition Dismissed in Part and Denied in Part.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "03052272-1696-46FC-9812-0C0D76EF6C72", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6A729668-CF25-4FDC-ACD2-E6A1B03FC8D2", + "docketEntryUUID": "DE93535E-098C-4300-B01E-D4C581AA78C9", + "caseInstanceUUID": "40D50979-3894-453C-AFC4-AEA96ABF17B1", + "caseNumber": "CL-2022-0963", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "Matthew Bacik v. Deborah Beth Bacik (Appeal from Shelby Circuit Court: DR-18-900741).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "1C723836-E9AD-4C21-B906-287D07586BDF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "4F5D5434-D448-4A80-B525-C80DDAEF4201", + "docketEntryUUID": "BA740BB4-1B73-4B0F-8E9A-B442BBD9F71B", + "caseInstanceUUID": "3D7DF17F-BEC4-4726-A5F7-2724E744211B", + "caseNumber": "CL-2022-1126", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "Ex parte C.R. PETITION FOR WRIT OF MANDAMUS: (In re: V.R. and J.R. v. C.R. and L.S.) (Madison Juvenile Court: JU-22-755.01).", + "decision": "Decision - Petition Dismissed in Part and Denied in Part.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "36B26866-B0ED-4531-895A-97AB468C16CF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "65D70DBF-928F-405E-AAE1-77AC9E86F61B", + "docketEntryUUID": "338AF34A-A8EF-4EFB-89FE-FB258D0D8E48", + "caseInstanceUUID": "65DA6D7C-F9EC-4CD5-9B53-60305B96FCEE", + "caseNumber": "CL-2022-0949", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Pooh Bear Academy v. Alabama Department of Human Resources (Appeal from Montgomery Circuit Court: CV-22-900285).", + "decision": "Decision - Appeal Dismissed", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "02FB9A2F-C982-40ED-B916-5E640D3C8F72", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "3FC4C261-0935-48C0-9670-C6709178FB2C", + "docketEntryUUID": "F22751A2-4351-440D-9DBA-B78C91D69A9A", + "caseInstanceUUID": "2085A5A4-F646-4561-91CB-BAB5B364297B", + "caseNumber": "CL-2022-1015", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "T.C. v. M.C. (Appeal from Houston Juvenile Court: JU-19-872.02).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "84C06686-C6BC-4764-A1B9-D0A277A0A9A2", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "88F305B4-4465-4D32-8EF0-DA6CE5815DBF", + "docketEntryUUID": "2D61A251-ED37-468C-9F1C-07907F8316CD", + "caseInstanceUUID": "CC474308-B9B8-4C60-90D1-70DE0F01FDC6", + "caseNumber": "CL-2022-1016", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "T.C. v. M.C. (Appeal from Houston Juvenile Court: JU-19-873.02).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "30BC7A48-AE12-4EBC-94A0-4262F5BA4527", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "3041072F-839E-428A-8A53-7709004FA226", + "docketEntryUUID": "181784D7-F408-4FEF-AA09-62879E84950C", + "caseInstanceUUID": "FE7B49F8-7D54-41C5-9B3F-B888A11A351D", + "caseNumber": "CL-2023-0027", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "Ex parte J.D.J. and J.L.H.J. PETITION FOR WRIT OF MANDAMUS: (In re: The Matter of the Adoption Petition of J.D.J. and J.L.H.J.) (Madison Probate Court: No. 76382).", + "decision": "Decision - Petition Dismissed in Part and Granted in Part; Writ Issued.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "DA44A728-2A84-4659-AEF1-B1B672D27E0A", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1698B9F3-0FA1-4017-8441-32F485A371D1", + "docketEntryUUID": "4283FB64-67F5-49C3-B4B6-63FF019D3D0D", + "caseInstanceUUID": "5CAC49DB-557A-49E6-A5F0-4B7BE0C3EB46", + "caseNumber": "CL-2022-1127", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "Ex parte C.R. and L.S. PETITION FOR WRIT OF MANDAMUS: (In re: V.R. and J.R. v. C.R. and L.S.) (Madison Juvenile Court: JU-22-756.01).", + "decision": "Decision - Petition Dismissed in Part and Denied in Part.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "F4754BF9-629A-45A9-B2CF-1EEAEF861971", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "46C49495-B4B9-44A7-BE77-478358CD04F6", + "docketEntryUUID": "4842B6A1-B44C-48B4-8F9F-B248D879EEA4", + "caseInstanceUUID": "7D894832-BBFD-4DB8-8073-390BFC81CAAC", + "caseNumber": "CL-2022-1013", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "Roy Junior Garner v. Lillie Mae Garner (Appeal from Calhoun Circuit Court: DR-21-900825).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "57162376-AE34-4307-9B33-04FB67671D96", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "02B7FAF1-8BDF-4BAE-91B1-9B3C2455DB7D", + "docketEntryUUID": "5BBF718C-406A-418C-929D-8F7695FAB937", + "caseInstanceUUID": "A24CB1E3-8BAD-4B8B-906D-F4266A19591E", + "caseNumber": "CL-2023-0309", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "Ex parte Zachariah Carl Sullivan PETITION FOR THE WRIT OF MANDAMUS: (In re: Kameron Golden Sullivan v. Zachariah Carl Sullivan) (Jefferson Circuit Court: DR-22-901567).", + "decision": "Decision - Petition Dismissed in Part and Granted in Part; Writ Issued.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "8269663F-2089-4213-8646-E740857326C7", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "76BA4EC8-6F8C-4677-9C9B-B4E236857A6D", + "docketEntryUUID": "27A583E1-A027-477B-83DC-9C799AF7C869", + "caseInstanceUUID": "CE09D8CB-20E8-4F7F-B8BC-E71064FAF783", + "caseNumber": "CL-2023-0093", + "groupName": "Edwards, J.", + "groupOrderBy": 2, + "title": "J.D.J and J.L.H.J. v. M.J.B. (Appeal from Madison Probate Court: No. 76382).", + "decision": "Decision - Appeal Dismissed in Part; Reversed and Remanded with Instructions.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "B0F47DB2-A446-4B2C-9F05-A5D53864AB41", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "e82d2ef8-c70a-437a-87b5-c28e0e9d6932", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-06-16", + "publicationName": "Court of Civil Appeals Release List - June 16, 2023", + "publicationNote": "Decisions Announced on Friday, June 16, 2023", + "groupFlag": true, + "scheduledDate": "2023-06-16T14:30:00.000+00:00", + "publicationDate": "2023-06-16T15:13:34.603+00:00", + "publicationItems": [ + { + "publicationItemUUID": "B49E81EE-DF6D-4E4F-899E-AE89CD018900", + "docketEntryUUID": "5DC301C0-DFA9-4B85-B215-47EDACB5FA0E", + "caseInstanceUUID": "FA744503-FE4C-46F2-9F0C-ACE91E1A7AE1", + "caseNumber": "CL-2022-0741", + "groupName": "Edwards, J.", + "groupOrderBy": 1, + "title": "G.S.-H. v. Tuscaloosa County Department of Human Resources (Appeal from Tuscaloosa Juvenile Court: JU-18-881.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "2892AD23-478D-49C2-9E27-A497F443DA8E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "E45E0E1D-DF62-48B1-92CC-0CB5B6100EF2", + "docketEntryUUID": "BDD53166-63A8-4A59-9B16-2DD9DECBB8F3", + "caseInstanceUUID": "061739D3-22C4-4F55-AC32-50AF69127AA3", + "caseNumber": "CL-2022-1093", + "groupName": "Fridy, J.", + "groupOrderBy": 3, + "title": "L.G. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-22-268.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "0B3D593F-77FD-4C58-BE9D-DB833771A319", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8FB0BEC5-14D7-4912-966B-17393FA6D46C", + "docketEntryUUID": "A63AEC8B-7774-4A7D-9F97-8E0FB6CC3647", + "caseInstanceUUID": "EC9AD1E5-9DFA-443E-9F74-57328F72AA78", + "caseNumber": "2210433", + "groupName": "Hanson, J.", + "groupOrderBy": 2, + "title": "A.D.R.-M v. J.L.M. (Appeal from Greene Juvenile Court: JU-21-100.01).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "47D9B857-FBD6-429B-A636-CACC66724173", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "01E221FF-3C02-4128-8722-23B352F1853F", + "docketEntryUUID": "FF4F4CC6-3DC5-4B65-A296-4E02E6772BAD", + "caseInstanceUUID": "EFB015C0-8037-4D39-A0ED-3D65AB38C911", + "caseNumber": "CL-2022-0573", + "groupName": "Hanson, J.", + "groupOrderBy": 2, + "title": "S.M. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-18-1398.02).", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B08103FE-063D-4682-A5E0-24315535ABC5", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2220FE78-8D5E-4A4C-B21E-9983D1B02836", + "docketEntryUUID": "9884B0E1-65FF-4005-893F-549F12689A33", + "caseInstanceUUID": "EFABD4E0-A4E8-48C3-A2F4-810C5C783C91", + "caseNumber": "CL-2022-0574", + "groupName": "Hanson, J.", + "groupOrderBy": 2, + "title": "S.M. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-18-1399.02)", + "decision": "Decision - Affirmed.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "E053589A-5674-4507-8DB3-DC06EBEDBAC3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9504D245-56DF-4035-9F4A-2B3D14BF977F", + "docketEntryUUID": "D084136E-063C-4951-979F-D11187FC83CB", + "caseInstanceUUID": "97E05E27-80EA-4352-814B-8DB865828ED4", + "caseNumber": "CL-2022-0742", + "groupName": "Edwards, J.", + "groupOrderBy": 1, + "title": "G.S.-H. v. Tuscaloosa County Department of Human Resources (Appeal from Tuscaloosa Juvenile Court: JU-18-882.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "8CECE66E-2573-4F2D-9BFE-A38C023B1DF2", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "65BBF999-E991-402C-B11E-6F3741414A42", + "docketEntryUUID": "E1F1A9CF-D76E-4E01-85D1-F7F49F35C25C", + "caseInstanceUUID": "D92B2CD5-AB4E-4ABB-836B-3E6E1BA3C625", + "caseNumber": "CL-2022-0575", + "groupName": "Hanson, J.", + "groupOrderBy": 2, + "title": "S.M. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-18-1400.02)", + "decision": "Decision - Affirmed.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "46B6B4A9-7A9F-40AB-9CD5-9BAC165E03E3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F676F5CA-270E-462A-B9EB-5D4447D5C179", + "docketEntryUUID": "9AD9FAB5-C5E2-4254-BCF0-62E58B94653E", + "caseInstanceUUID": "3F82CE86-71AE-4224-A307-F019856649AF", + "caseNumber": "CL-2022-0935", + "groupName": "Edwards, J.", + "groupOrderBy": 1, + "title": "The Health Care Authority for Baptist Health, an Affiliate of UAB Health System, d/b/a Baptist Medical Center South and d/b/a Baptist Medical Center East; Baptist Ventures, Inc., d/b/a Montgomery Surgical Center, LLC; Jackson Hospital & Clinic, Inc.; and Jackson Surgery Center, LLC, d/b/a Jackson Surgery Center v. State Health Planning and Development Agency and 2LR Healthcare Holdings, LLC, d/b/a Heart & Vascular Institute of Alabama (Appeal from the Certificate of Need Review Board of the State Health Planning and Development Agency: AL 2020-50).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "C4EE8678-1EA4-437B-A19A-49F3576854E4", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "0846C731-A07B-4F62-BA35-165668091F3B", + "docketEntryUUID": "C0DED004-D3F8-4AC6-AE49-0F126109DC05", + "caseInstanceUUID": "59AD62C6-44D3-4389-B1A9-16205CE462DA", + "caseNumber": "CL-2022-1140", + "groupName": "Edwards, J.", + "groupOrderBy": 1, + "title": "M.H. v. Limestone County Department of Human Resources (Appeal from Limestone Juvenile Court: JU-21-239.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "B85CC658-D8E7-437E-8BAD-0A8C0537519F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6BA9FB7E-77AD-40B7-BC2D-0CA67249FB20", + "docketEntryUUID": "9C710322-7DCE-41EB-B968-B24F02B3032D", + "caseInstanceUUID": "06E8871F-860E-417E-914D-AD5F93279F68", + "caseNumber": "CL-2023-0007", + "groupName": "Hanson, J.", + "groupOrderBy": 2, + "title": "Michael C. McCarthy v. Vicki H. McCarthy (Appeal from Shelby Circuit Court: DR-10-108.3).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "C6F6F213-8AF3-4FA8-9526-3E3B95F961C9", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "9baf9838-1123-4bf2-9786-474f5683f85e", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-06-09", + "publicationName": "Court of Civil Appeals Release List - June 9, 2023", + "publicationNote": "Decisions Announced on Friday, June 9, 2023", + "groupFlag": true, + "scheduledDate": "2023-06-09T14:15:00.000+00:00", + "publicationDate": "2023-06-09T14:43:25.571+00:00", + "publicationItems": [ + { + "publicationItemUUID": "CF8E4A58-B9C2-47BD-9FDA-DFCF42A07423", + "docketEntryUUID": "2D0CF6D0-577E-4A3F-9AFC-CF4428266BAC", + "caseInstanceUUID": "5D207001-8190-48A1-B56E-0551BD33C662", + "caseNumber": "CL-2022-0916", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "Lasheena Crenshaw v. Donald Lee Crenshaw, Jr. (Appeal from Montgomery Circuit Court: DR-20-900412.01).", + "decision": "Decision - Affirmed In Part; Reversed In Part; And Remanded With Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "ABD1F49E-1B15-4292-811B-8AEB646E2699", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C01CF6B1-1BA3-44B6-BFDC-4B092C95B794", + "docketEntryUUID": "8FEC863D-9C03-4748-98A0-519AA7210BF4", + "caseInstanceUUID": "C47AE893-5A45-4719-9EA3-75E22F195E50", + "caseNumber": "CL-2022-0782", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "Keith George Barton, Jr. v. Jocelyn Rachelle Barton (Appeal from Mobile Circuit Court: DR-18-500094.03).", + "decision": "Rehearing - Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5F22633C-EDB1-497D-A1E9-6C8EF8DC7BD3", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "3694FF60-4770-4315-91D9-86A4AACD9BD8", + "docketEntryUUID": "EB2B75C1-1514-4761-A090-36676B85C491", + "caseInstanceUUID": "3DF4E70A-CAB3-4AD7-B932-A9453174B104", + "caseNumber": "CL-2022-0974", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "Pilgrim's Pride Corporation v. Jimmy Dale Harper (Appeal from Marshall Circuit Court: CV-17-900287).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "E1538519-42E0-4CE8-8C1A-E2112B635FB6", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "290BF196-23F7-4BA3-8BF4-C580D1035DB3", + "docketEntryUUID": "36F056F1-BA20-41FC-9F59-CDE3FD99DE04", + "caseInstanceUUID": "CE918881-60CE-435C-9154-57880174FF65", + "caseNumber": "CL-2022-0996", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "V.K. v. K.S. (Appeal from Montgomery Juvenile Court: JU-19-625.01 and JU-19-625.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "355F129F-0DF1-4CBD-8AE8-A5B28EC6AFB0", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "7A702CE9-B2F2-4ACD-A886-721F4BD4B6B5", + "docketEntryUUID": "9C7537E9-7CBB-4EAD-AE78-1EF03C41ECDD", + "caseInstanceUUID": "0ACBCD55-720F-4375-AF54-03C11D9FF6A9", + "caseNumber": "CL-2022-0783", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "Keith George Barton, Jr. v. Jocelyn Rachelle Barton (Appeal from Mobile Circuit Court: DR-18-500094.02).", + "decision": "Rehearing - Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "014C3D67-9FB6-48DA-9D2D-4FC5A04262B9", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "8E214A11-D1E7-49D8-9F5B-5D916A0D4A58", + "docketEntryUUID": "EC50D64D-58D8-4C30-80F8-258016255E3A", + "caseInstanceUUID": "91F7D246-CC62-4FA8-9025-2627D618CF27", + "caseNumber": "CL-2022-1182", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "J.P. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-19-931.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "C7ACA709-20E6-40EA-9F2C-B7CCEAD92EDD", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C6EBF075-91F2-4237-B149-078F25FE1EA2", + "docketEntryUUID": "CA492230-445D-4D8C-9786-C8FC2279812C", + "caseInstanceUUID": "239B7CB1-EAC7-4330-9DF7-0D730FED1564", + "caseNumber": "CL-2023-0080", + "groupName": "Thompson, P.J.", + "groupOrderBy": 1, + "title": "K.G. v. M.L. (Appeal from Cullman Probate Court: AD-20-67).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "C16A2B37-36B0-4C3D-8411-8654D75A53AF", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "5F258778-2C4A-4D0D-94DB-B3710F2A1815", + "docketEntryUUID": "5735B8A7-3B17-4AD6-ACF4-935EEDBFF307", + "caseInstanceUUID": "9747CC70-96BB-499E-836B-796063D8DB52", + "caseNumber": "CL-2022-0887", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "E.M. v. C.S. and P.S. (Appeal from Tuscaloosa Juvenile Court: JU-12-273.02).", + "decision": "Rehearing - Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "F46A5C9F-F82D-4467-B4B7-E40A18C8EEA9", + "documentName": "Order" + } + ] + }, + { + "publicationItemUUID": "2A914E02-4ABC-4636-9673-AA02C5892BE7", + "docketEntryUUID": "4F470098-2B9A-4272-84BC-E3BFD116B13C", + "caseInstanceUUID": "229D48B5-0743-43A3-A33C-DE5E4807C7CD", + "caseNumber": "CL-2022-1183", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.B. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-19-931.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "D77E3CB9-FD9D-4B3C-9B57-38F7CCD9D2C1", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "A8122932-0DC9-4F96-9F96-42C2A0DCE69F", + "docketEntryUUID": "21CBE7D9-E21F-4C7A-BF00-B00B1E34ABEF", + "caseInstanceUUID": "E22E141C-ED6A-4419-8188-3E1C3FB0CECB", + "caseNumber": "CL-2022-1184", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.B. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-19-932.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "2634DFF8-0A0C-4B78-805F-61C776DD5984", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F0D079D3-661E-4A24-9377-CD531F9A4F14", + "docketEntryUUID": "DC49563E-355C-4BB4-9B5D-ED9FBFE977F6", + "caseInstanceUUID": "E0FF1236-836C-4000-A0FE-2A3F6330881C", + "caseNumber": "CL-2022-1185", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "M.B. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-19-933.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "A85C6164-0685-4186-BB05-3E999599DAB2", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "95A9FBB6-0DD2-41F0-8F41-252B93A402DA", + "docketEntryUUID": "9199C026-DFE1-4FE6-A739-BD4F34935673", + "caseInstanceUUID": "5F037DE2-0B4F-4610-BBA6-7752F49C4553", + "caseNumber": "CL-2022-1239", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "J.P. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-19-932.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "26811054-0FA7-4D65-9015-CAA58A7F1297", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "82A16AA4-C936-42FC-A977-B95E77B4E049", + "docketEntryUUID": "B9FA88C0-C937-485F-A9D4-C7B1E7B525FF", + "caseInstanceUUID": "23D721C0-015D-466C-934A-05FCA44E3103", + "caseNumber": "CL-2022-1240", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "J.P. v. Madison County Department of Human Resources (Appeal from Madison Juvenile Court: JU-19-933.02).", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 8, + "documents": [ + { + "documentLinkUUID": "C28F06C8-2636-4533-805B-85025CBF5402", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "B1B21D5B-EB07-4B3D-BBAA-96C9C92796B8", + "docketEntryUUID": "2C721F70-C56B-49E5-AC78-31957E725ED5", + "caseInstanceUUID": "045C2E20-AD74-49F3-B854-6D00C18C1E60", + "caseNumber": "CL-2022-1192", + "groupName": "Fridy, J.", + "groupOrderBy": 2, + "title": "D.S. v. Pike County Department of Human Resources (Appeal from Pike Juvenile Court: JU-22-77.01).", + "decision": "Decision - Appeal Dismissed in Part; Affirmed.", + "orderBy": 9, + "documents": [ + { + "documentLinkUUID": "7C7D8A39-BC64-4BE6-AF37-18EA44E93A79", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "5e9bc8fa-4e3a-4cd7-bf0b-46f80e437a0d", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-06-02", + "publicationName": "Court of Civil Appeals Release List - June 2, 2023", + "publicationNote": "Decisions Announced on Friday, June 2, 2023", + "groupFlag": true, + "scheduledDate": "2023-06-02T13:59:00.000+00:00", + "publicationDate": "2023-06-02T14:15:28.227+00:00", + "publicationItems": [ + { + "publicationItemUUID": "59B201C8-5402-4164-B4D8-5C5DB7D655E1", + "docketEntryUUID": "E5CC4D27-6A7C-4133-B760-653A9A5939B3", + "caseInstanceUUID": "FD95B0DE-A1DB-4CAB-ADC2-070D6F40DC0B", + "caseNumber": "CL-2022-1202", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "A.I. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-18-1207.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5283DBE3-5771-40C1-B60E-E79694D784E6", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "18259BD0-4E9B-49AD-8FCB-DB6BE644073F", + "docketEntryUUID": "6B3388F5-A3CE-4742-BE6B-E0B378500314", + "caseInstanceUUID": "F2D1122E-F3EF-4749-90DF-F70D44E2C269", + "caseNumber": "CL-2022-0694", + "groupName": "Rehearing", + "groupOrderBy": 2, + "title": "T.W. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-19-972.02).", + "decision": "Applications Granted; Opinion of February 10, 2023, Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "AF44137B-0600-49F8-BD81-71AD00F0F354", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "245D745B-4C71-434A-9D01-3350F05795C2", + "docketEntryUUID": "AB99ADE1-67A4-41B1-9271-AAC694807DE8", + "caseInstanceUUID": "F6D09804-6385-432E-9E92-376054717860", + "caseNumber": "CL-2022-0695", + "groupName": "Rehearing", + "groupOrderBy": 2, + "title": "T.W. v. Calhoun County Department of Human Resources (Appeal from Calhoun Juvenile Court: JU-19-973.02).", + "decision": "Applications Granted; Opinion of February 10, 2023, Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "4D66F20C-A917-476E-A30E-6E1F1226730A", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D3D039EC-30AD-4CE6-B810-DFFEA419E91A", + "docketEntryUUID": "B7E19705-391D-403F-960E-260A75184B0A", + "caseInstanceUUID": "025AA02D-1880-4CAB-B819-4AC3543B87EE", + "caseNumber": "CL-2022-1203", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "A.I. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-18-1208.03).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "0F286841-333B-40FA-A77C-6363EBCEB991", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "62E223CA-42E3-4ED2-ABE5-D2CAD26411E8", + "docketEntryUUID": "B02B828A-A422-4ACB-8457-3C49B6675338", + "caseInstanceUUID": "B96D8A3C-793F-4374-8334-6DCDCC5D33D6", + "caseNumber": "CL-2022-1204", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "A.I. v. Jefferson County Department of Human Resources (Appeal from Jefferson Juvenile Court: JU-21-1222.02).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "DFA703D1-8E98-4A5E-9A64-99D1BA526F93", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9C796835-34FE-4F8E-90A4-F5D372E4FFA8", + "docketEntryUUID": "7C41F9E6-AFCE-4FB7-ABE8-A954A1DBD02B", + "caseInstanceUUID": "B6796DDA-9F75-46A3-A630-777A7968D33E", + "caseNumber": "CL-2022-1257", + "groupName": "Moore, J.", + "groupOrderBy": 1, + "title": "Demetrius Sullen v. Jack Ingram Motors, Inc. (Appeal from Montgomery Circuit Court: CV-21-234).", + "decision": "Decision - Affirmed. No Opinion.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "A6DFE64B-3387-4F0E-885C-8593B531CEE4", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "9457e263-5ef1-470b-bd2c-a25309811e99", + "courtID": "3", + "courtAbbreviation": "Alabama Court of Civil Appeals", + "publicationNumber": "CL-RELEASE-2023-05-31", + "publicationName": "Court of Civil Appeals Release List - May 31, 2023", + "publicationNote": "Court of Civil Appeals Releases for May 31, 2023", + "groupFlag": true, + "scheduledDate": "2023-05-31T16:15:00.000+00:00", + "publicationDate": "2023-05-31T16:22:56.670+00:00", + "publicationItems": [ + { + "publicationItemUUID": "23DA7A0F-5BE7-4153-97A1-B602956F82E7", + "docketEntryUUID": "63375C05-10D4-4CA6-8626-678546F5D09C", + "caseInstanceUUID": "5F6D6217-39EE-42CA-BC73-577B6A43F197", + "caseNumber": "CL-2023-0368", + "groupName": "Edwards, J.", + "groupOrderBy": 1, + "title": "Ex parte C.C. PETITION FOR A WRIT OF MANDAMUS (In re: H.C. v. C.C.)(Madison Circuit Court DR-23-3229).", + "decision": "Decision - Petition Granted; Writ Issued.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "36A418F7-5DD9-4EED-8549-2915D21715A6", + "documentName": "Decision" + } + ] + } + ] + } + ] + }, + "page": { + "size": 25, + "totalElements": 28, + "totalPages": 2, + "number": 0 + } +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/alacrimapp_example.compare.json b/tests/examples/opinions/united_states/alacrimapp_example.compare.json index 3191c547d..a55258ba0 100644 --- a/tests/examples/opinions/united_states/alacrimapp_example.compare.json +++ b/tests/examples/opinions/united_states/alacrimapp_example.compare.json @@ -1,145 +1,26 @@ [ { - "case_dates": "2023-01-04", - "case_names": "Tracy Alonzo Gavin v. State of Alabama", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127161&event=6I00SAOTR", + "case_dates": "2023-11-09", + "case_names": "S.M. v. State of Alabama (Appeal from Lee Circuit Court: CC-07-606.67)", + "download_urls": "https://publicportal-api.alappeals.gov/courts/b82b30d5-bd3c-46d7-9451-1cb05e470873/cms/case/1A70DC59-B88E-4053-964A-B265AF23DA51/docketentrydocuments/7A6EF661-DD4D-416D-B9DA-7C11C14B66FE", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CR-2022-0618", - "judges": "JUDGE McCOOL", - "case_name_shorts": "" - }, - { - "case_dates": "2023-01-04", - "case_names": "Robert Lee Jones v. State of Alabama", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127162&event=6I00SAOU8", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CR-2022-0672", - "judges": "JUDGE KELLUM", - "case_name_shorts": "" - }, - { - "case_dates": "2023-01-04", - "case_names": "Raphiel Pier Quinnie v. State of Alabama", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127159&event=6I00SAOSX", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CR-21-0374", - "judges": "JUDGE McCOOL", - "case_name_shorts": "" - }, - { - "case_dates": "2023-01-04", - "case_names": "James Largin v. State of Alabama", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127151&event=6I00SAOMD", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CR-20-0228", - "judges": "JUDGE MINOR", - "case_name_shorts": "" - }, - { - "case_dates": "2023-01-04", - "case_names": "Ex parte John Grant", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127152&event=6I00SAONA", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CR-20-0804", - "judges": "PER CURIAM", - "case_name_shorts": "" - }, - { - "case_dates": "2023-01-04", - "case_names": "Devane Twon Reynolds v. State of Alabama", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127160&event=6I00SAOTB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CR-21-0478", - "judges": "JUDGE McCOOL", - "case_name_shorts": "" - }, - { - "case_dates": "2023-01-04", - "case_names": "Deborah R. Tisdale v. State of Alabama", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127155&event=6I00SAOQ9", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CR-21-0174", - "judges": "JUDGE MINOR", - "case_name_shorts": "" - }, - { - "case_dates": "2023-01-04", - "case_names": "Curtis Walon Caver v. State of Alabama", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127157&event=6I00SAORN", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CR-21-0333", - "judges": "JUDGE McCOOL", - "case_name_shorts": "" - }, - { - "case_dates": "2023-01-04", - "case_names": "Corey Allen Wimbley v. State of Alabama", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127150&event=6I00SAOLJ", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CR-20-0201", - "judges": "JUDGE COLE", - "case_name_shorts": "" - }, - { - "case_dates": "2023-01-04", - "case_names": "Charles David Merchant v. State of Alabama", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127156&event=6I00SAOQP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CR-21-0222", - "judges": "JUDGE COLE", - "case_name_shorts": "" - }, - { - "case_dates": "2023-01-04", - "case_names": "Brett Lee Williams v. State of Alabama", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127158&event=6I00SAOSH", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CR-21-0347", - "judges": "JUDGE McCOOL", - "case_name_shorts": "" - }, - { - "case_dates": "2023-01-04", - "case_names": "Amber Nicole Douglas v. City of Mobile", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127153&event=6I00SAOO4", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CR-20-1012", - "judges": "JUDGE McCOOL", - "case_name_shorts": "" + "docket_numbers": "CR-2023-0461", + "judges": "", + "case_name_shorts": "S.M.", + "per_curiam": false }, { - "case_dates": "2023-01-04", - "case_names": "A.P.S. v. State of Alabama", - "download_urls": "https://acis.alabama.gov/displaydocs.cfm?no=1127154&event=6I00SAOPF", + "case_dates": "2023-11-09", + "case_names": "Mondrell Kenee Ward v. State of Alabama (Appeal from Madison Circuit Court: CC-18-4946)", + "download_urls": "https://publicportal-api.alappeals.gov/courts/b82b30d5-bd3c-46d7-9451-1cb05e470873/cms/case/39312897-FABB-4F2A-A483-EBAC92D5AC2A/docketentrydocuments/A1F7D25E-DA7D-4F41-A69C-3168001F444A", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CR-21-0024", + "docket_numbers": "CR-2022-1020", "judges": "", - "case_name_shorts": "A.P.S." + "case_name_shorts": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/alacrimapp_example.html b/tests/examples/opinions/united_states/alacrimapp_example.html deleted file mode 100644 index 47f02f17a..000000000 --- a/tests/examples/opinions/united_states/alacrimapp_example.html +++ /dev/null @@ -1,398 +0,0 @@ - - - - displaydocs2.cfm - - - - - - - - - - - - -
- -
-
-
-
- - - - -
-
- -
- -
-
-
-
- - - -
-
-
- -
- - - - - - - - -
-
-
-
- -
- -
- -
- -
- - of 2 -
-
- - - - - - - Current View - - -
- - - - - - - -
-
-
- -
- -
- - - -
-
- -
-
- -
-
ALABAMA COURT OF CRIMINAL APPEALS
DECISIONS ANNOUNCED ON

FRIDAY, DECEMBER 16, 2022

JUDGE KELLUM
- -
CR-2022-0672 Robert Lee Jones v. State of Alabama (Appeal from Baldwin
Circuit Court: CC-21-1852, CC-21-1854, and CC-21-1855)

Affirmed by Memorandum.
(Special Writing) -
CR-2022-0682 Q.A.C. v. State of Alabama (Appeal from Lauderdale Juvenile
Court: JU-15-538.10)

Affirmed by Memorandum.

JUDGE McCOOL

CR-20-1012 Amber Nicole Douglas v. City of Mobile (Appeal from Mobile
Circuit Court: CC-21-685)

Affirmed.

CR-21-0333 Curtis Walon Caver v. State of Alabama (Appeal from Jefferson
Circuit Court: CC-19-2453)

Affirmed.

CR-21-0347 Brett Lee Williams v. State of Alabama (Appeal from Morgan
Circuit Court: CC-17-731)

Affirmed as to Conviction; Reversed as to Sentence; and
Remanded with Instructions.

CR-21-0374 Raphiel Pier Quinnie v. State of Alabama (Appeal from Mobile
Circuit Court: CC-17-1890)

Affirmed.

CR-21-0478 Devane Twon Reynolds v. State of Alabama (Appeal from Houston
Circuit Court: CC-09-318.62)

Remanded with Instructions.
2
CR-2022-0618 Tracy Alonzo Gavin v. State of Alabama (Appeal from Mobile
Circuit Court: CC-18-6524.70 and CC-18-1234.70)

Affirmed.

JUDGE COLE

CR-20-0201 Corey Allen Wimbley v. State of Alabama (Appeal from
Washington Circuit Court: CC-09-170.60)

Affirmed.

CR-21-0222 Charles David Merchant v. State of Alabama (Appeal from Lamar
Circuit Court: CC-03-111.60)

Affirmed by Memorandum.
(Special Writing)
JUDGE MINOR

CR-20-0228 James Largin v. State of Alabama (Appeal from Tuscaloosa
Circuit Court: CC-07-2129.60)

Affirmed.

CR-21-0174 Deborah R. Tisdale v. State of Alabama (Appeal from Covington
Circuit Court: CC-20-312)

Affirmed.

PER CURIAM

CR-20-0804 Ex parte John Grant (In re: State of Alabama v. John Grant)
(Appeal from Montgomery Circuit Court: CC-20-116)

Writ Quashed on Remand from the Alabama Supreme
Court.

ON REHEARING

CR-20-0957 Bart Wayne Johnson (Appeal from Shelby Circuit Court: CC-09-
1450.60 and CC-09-1451.60)

Application for Rehearing Overruled.

CR-21-0024 A.P.S. v. State of Alabama (Appeal from Blount Juvenile Court:
JU-18-7.01)

Application for Rehearing Overruled; Opinion of August
5, 2022, Withdrawn; Opinion Substituted; Reversed and
Remanded.
-
- -
- -
- -
- -
-
- -
-
- - -
-
- -
- File name: -

-

-
-
- File size: -

-

-
-
-
- Title: -

-

-
-
- Author: -

-

-
-
- Subject: -

-

-
-
- Keywords: -

-

-
-
- Creation Date: -

-

-
-
- Modification Date: -

-

-
-
- Creator: -

-

-
-
-
- PDF Producer: -

-

-
-
- PDF Version: -

-

-
-
- Page Count: -

-

-
-
- Page Size: -

-

-
-
-
- Fast Web View: -

-

-
-
- -
-
-
- -
-
- - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/alacrimapp_example.json b/tests/examples/opinions/united_states/alacrimapp_example.json new file mode 100644 index 000000000..4c3489573 --- /dev/null +++ b/tests/examples/opinions/united_states/alacrimapp_example.json @@ -0,0 +1,5541 @@ +{ + "_embedded": { + "results": [ + { + "publicationUUID": "5dade74e-4b1e-4747-b2a8-e52a101a72da", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-11-09", + "publicationName": "Court of Criminal Appeals Release List - November 9, 2023", + "publicationNote": "Decisions Announced on Thursday, November 9, 2023", + "groupFlag": true, + "scheduledDate": "2023-11-09T15:00:00.000+00:00", + "publicationDate": "2023-11-09T15:06:48.399+00:00", + "publicationItems": [ + { + "publicationItemUUID": "1B61C109-317A-4B94-95F8-D4A162F03B2E", + "docketEntryUUID": "EA17B9B3-D5F5-4400-A83B-DA785A61CCAC", + "caseInstanceUUID": "39312897-FABB-4F2A-A483-EBAC92D5AC2A", + "caseNumber": "CR-2022-1020", + "groupName": "On Rehearing", + "groupOrderBy": 2, + "title": "Mondrell Kenee Ward v. State of Alabama (Appeal from Madison Circuit Court: CC-18-4946)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "A1F7D25E-DA7D-4F41-A69C-3168001F444A", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "E5397E43-E3D8-42AA-8AE7-D47B7664D501", + "docketEntryUUID": "28467514-9277-4D4B-B7B7-3C6D92A04306", + "caseInstanceUUID": "458B00C6-1ADC-4D01-B819-A1DA7E353862", + "caseNumber": "CR-2022-1351", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Matthew K. Bouarassa v. State of Alabama (Appeal from Russell Circuit Court: CC-21-610 and CC-21-611)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 1 + }, + { + "publicationItemUUID": "B11417A5-8F20-4308-B44A-17E9C2916FA8", + "docketEntryUUID": "9136F2C3-969F-4895-A88F-1DDE64C5CDD5", + "caseInstanceUUID": "1A70DC59-B88E-4053-964A-B265AF23DA51", + "caseNumber": "CR-2023-0461", + "groupName": "On Rehearing", + "groupOrderBy": 2, + "title": "S.M. v. State of Alabama (Appeal from Lee Circuit Court: CC-07-606.67)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "7A6EF661-DD4D-416D-B9DA-7C11C14B66FE", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "0cfddf67-59fa-49f8-985f-027c0e800dad", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-11-03", + "publicationName": "Court of Criminal Appeals Release List - November 3, 2023", + "publicationNote": "Decisions Announced on Friday, November 3, 2023", + "groupFlag": true, + "scheduledDate": "2023-11-03T14:00:00.000+00:00", + "publicationDate": "2023-11-03T14:16:49.899+00:00", + "publicationItems": [ + { + "publicationItemUUID": "FEC975CB-785C-4BBB-88CE-CA80C3493F68", + "docketEntryUUID": "F83842CC-F2D9-40E5-9A37-AF025F78D1D4", + "caseInstanceUUID": "5DC4B9D2-5D48-4A53-B515-BF1E032F5536", + "caseNumber": "CR-2022-1273", + "groupName": "Judge McCool", + "groupOrderBy": 1, + "title": "Christopher B. Barksdale v. State of Alabama (Appeal from Talladega Circuit Court: CC-20-156)", + "decision": "Decision - Remanded with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "30E75675-D7AE-44EB-AC28-6240097E74E3", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "F24C420F-3D62-4C91-A640-71504DC3D0FF", + "docketEntryUUID": "99043B54-3375-4D8C-B0AE-F7922164C0E2", + "caseInstanceUUID": "804685BE-D905-4C73-AB37-B5512F50DF42", + "caseNumber": "CR-210143", + "groupName": "Judge Minor", + "groupOrderBy": 2, + "title": "Earl Fitzgerald Webb v. State of Alabama. (Appeal from Lee Circuit Court: CC-18-717)", + "decision": "Decision - Affirmed in Part; Remanded with Instructions.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "AB8192A5-69F7-42D4-8ABF-FD2B7CAC09A9", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6450C41B-7BA4-4042-B432-8E42211B16CC", + "docketEntryUUID": "108277EB-124B-4048-9F60-38379625E4C7", + "caseInstanceUUID": "9E1EBA51-FB61-4E35-AE2F-9BF3B3926710", + "caseNumber": "CR-210461", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "Terry Nunley v. State of Alabama (Appeal from Jackson Circuit Court: CC-21-230)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "67E0F0AF-EB38-4F5E-9F74-1F7CE4C456E1", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "ACD3B8F7-473D-4060-A88F-ED9CEE2B43CF", + "docketEntryUUID": "4D44E25E-8256-41EB-A0F8-DC3240D4CF72", + "caseInstanceUUID": "7D399501-E603-4D6A-A2D4-7390788DF126", + "caseNumber": "CR-2022-1377", + "groupName": "Judge McCool", + "groupOrderBy": 1, + "title": "Chelsea Yvette Walker v. State of Alabama (Appeal from Jefferson Circuit Court: CC-17-3013 and CC-17-3014)", + "decision": "Decision - Affirmed as to Convictions; Reversed as to Sentences; and Remanded with Instructions.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "6AE66807-56B9-468A-9FF0-B13D970CE0BE", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "43B8F881-8D36-4CB1-9DFA-3F670EB5B96D", + "docketEntryUUID": "F05EA247-4681-4FB1-9DE5-FFA4D8269940", + "caseInstanceUUID": "921A59EC-4DF2-4355-A6BB-A208A0E2971D", + "caseNumber": "CR-2022-0505", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "Town of Brookside v. Michael Christopher Rowser (Appeal from Jefferson Circuit Court: CC-21-2246, CC-21-2248, CC-21-2249, CC-21-2250)", + "decision": "On Rehearing Ex Mero Motu; Opinion of March 24, 2023, Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "68BD8E44-2D3F-4C66-BB6B-B6C9437C08A1", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "80E64059-6DDF-4F80-A047-81A4725F3827", + "docketEntryUUID": "DC2B608E-9D72-4942-97FC-7742512BA564", + "caseInstanceUUID": "11167782-A0AE-471C-93FF-2E2BC56B8586", + "caseNumber": "CR-2022-0506", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "Town of Brookside v. Nathaniel Neny (Appeal from Jefferson Circuit Court: CC-21-2251, CC-21-2252, CC-21-2253, CC-21-2254, CC-21-2255, and CC-21-2256)", + "decision": "On Rehearing Ex Mero Motu; Opinion of March 24, 2023, Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "A046EF27-DBC9-4407-8910-C2577B95B2C7", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "51E893E8-C99F-407E-AC15-B57832F9B41E", + "docketEntryUUID": "AD3329D8-DCE3-4037-8BDD-31252ABEB6C0", + "caseInstanceUUID": "5AE1DA7B-7F10-4608-A209-39FE62AACA57", + "caseNumber": "CR-2022-0507", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "Town of Brookside v. Alexus Young (Appeal from Jefferson Circuit Court: CC-21-2779, CC-21-2780, and CC-21-2781)", + "decision": "On Rehearing Ex Mero Motu; Opinion of March 24, 2023, Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "ED48FE0B-1D0E-4BE3-80E3-8F4CEE5D0D7F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "DF683F1F-41C9-4619-AF9E-B1CE7FA66521", + "docketEntryUUID": "B40295AE-BDFA-4691-BAEB-29711BC57D89", + "caseInstanceUUID": "06F9351A-D2EF-4839-B642-8C04432FCD96", + "caseNumber": "CR-2022-0508", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "Town of Brookside v. Melissa Jo Leith (Appeal from Jefferson Circuit Court: CC-21-680)", + "decision": "On Rehearing Ex Mero Motu; Opinion of March 24, 2023, Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "0B284464-78D0-47B0-974D-5C42BA4A4203", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "89C11896-EEAA-4700-B1E8-EB6B9705850E", + "docketEntryUUID": "E67F0386-E57F-4D1F-AF61-C1B4EB459601", + "caseInstanceUUID": "5CACE472-5807-4296-BF03-7DC7200AE0A6", + "caseNumber": "CR-2022-0509", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "Town of Brookside v. Sandra Crawford Martin (Appeal from Jefferson Circuit Court: CC-21-2788, CC-21-2789, CC-21-2790, and CC-21-2791)", + "decision": "Application Overruled; Opinion of March 24, 2023, Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "10F932E2-6FF1-4320-930E-575FD0D79AF6", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "331D99E1-D73C-4B3A-A41F-B3736A5AB1D7", + "docketEntryUUID": "75D27BFC-30E0-440F-B0C9-4604E336ED38", + "caseInstanceUUID": "A44CB8EF-7C40-4A53-8A4B-9DA0DF6AC4DF", + "caseNumber": "CR-2022-0824", + "groupName": "On Rehearing", + "groupOrderBy": 3, + "title": "Town of Brookside v. Gregory Bernard Jones (Appeal from Jefferson Circuit Court: CC-22-1165, CC-22-1166, CC-22-1167, CC-22-1168, CC-22-1169, and CC-22-1170)", + "decision": "On Rehearing Ex Mero Motu; Opinion of March 24, 2023, Withdrawn; Opinion Substituted; Reversed and Remanded.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "060B10B1-38CB-4D87-91F3-23F6658D496E", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "b2c4e25d-8f50-4fcc-9909-f5c1e7af2c59", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-10-27", + "publicationName": "Court of Criminal Appeals Release List - October 27, 2023", + "publicationNote": "Decisions Announced on Friday, October 27, 2023", + "groupFlag": true, + "scheduledDate": "2023-10-27T14:00:00.000+00:00", + "publicationDate": "2023-10-27T15:20:20.866+00:00", + "publicationItems": [ + { + "publicationItemUUID": "74A8464B-3C7F-4021-BD09-BDCABE889CF6", + "docketEntryUUID": "C95720EC-E69D-4642-9995-67F57A37BBAC", + "caseInstanceUUID": "73F31179-AD03-4C7C-965A-0B6A0F2F5A17", + "caseNumber": "CR-200566", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Louis Stinson, Jr. v. State of Alabama (Appeal from Elmore Circuit Court: CC-19-351)", + "decision": "Decision - Affirmed by Memorandum on Return to Second Remand", + "orderBy": 1 + }, + { + "publicationItemUUID": "6FF88F57-1565-4E2D-8C7B-A528559BBA15", + "docketEntryUUID": "74C4105C-E798-4320-A486-19652176B0C6", + "caseInstanceUUID": "4B194916-9DA6-4888-8556-6CE9DA4519AD", + "caseNumber": "CR-2023-0038", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Tyler Michael Frame v. State of Alabama (Appeal from Baldwin Circuit Court: CC-21-2095)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 1 + }, + { + "publicationItemUUID": "0CEF2C23-AFF5-4408-B09E-49E6BA37C65A", + "docketEntryUUID": "B01B74BB-418C-4E8C-B42C-7351C1B664B1", + "caseInstanceUUID": "003B02EE-D3BC-4E33-9FC8-A2CBE1CBDB06", + "caseNumber": "CR-2022-1370", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Jesse James Maness v. State of Alabama (Appeal from Barbour Circuit Court: CC-19-50)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 1 + }, + { + "publicationItemUUID": "A41C63E0-9EB3-49F0-AE82-104334EF38D5", + "docketEntryUUID": "5BE14A28-9005-4FD4-BAD9-46D2B1DC9011", + "caseInstanceUUID": "DB9FB41B-9676-435C-B693-13AE130A7F5B", + "caseNumber": "CR-210291", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Curtis Lee Johnson v. State of Alabama. (Appeal from Cherokee Circuit Court: CC-20-900036).", + "decision": "Decision - Affirmed by Memorandum on Return to Remand", + "orderBy": 1 + }, + { + "publicationItemUUID": "431512D5-0167-47AF-AEC6-BA2AD66FDAFE", + "docketEntryUUID": "B4DE1F20-EA80-4E31-A2AE-C2701F26C96C", + "caseInstanceUUID": "4F2CAB2C-4FD8-4CD6-838C-8CCF54BC4A56", + "caseNumber": "CR-2022-0681", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Dacedric Deshun Ward v. State of Alabama (Appeal from Limestone Circuit Court: CC-17-142)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 1 + }, + { + "publicationItemUUID": "DE3E53C0-9073-40D4-8B59-196A5A4A5277", + "docketEntryUUID": "C0D20CD6-A7D0-4DE9-B100-24C9BFA771F5", + "caseInstanceUUID": "A101CEA8-DA70-4589-A2C3-689429AA0BE9", + "caseNumber": "CR-200654", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Evan Miller v. State of Alabama (Appeal from Lawrence Circuit Court: CC-06-68)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "A3962074-5226-48E7-B98A-B5C535C2E930", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "8C98A06A-3929-4F95-B33C-D94C420BFA6E", + "docketEntryUUID": "EA8D467F-C457-4D2E-9E75-65520597FFEE", + "caseInstanceUUID": "87AEF3F0-D8A7-496A-BDEE-30F42AFCF4D5", + "caseNumber": "CR-210148", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Jerry Dwayne Bohannon v. State of Alabama (Appeal from Mobile Circuit Court: CC-11-2989.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "8287D417-57F1-4D12-A82F-7B7E4D1BD1A2", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "E2F6ABEF-BEB0-4010-998D-6BA83F695C48", + "docketEntryUUID": "EAA9DED6-1EC9-4CF3-9047-BAF343AAC09C", + "caseInstanceUUID": "68C05700-985D-4879-B5C0-F6402B5D0A90", + "caseNumber": "CR-2022-1172", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Jimmy Lee Thomas v. State of Alabama (Appeal from Calhoun Circuit Court: CC-19-2324)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 2 + }, + { + "publicationItemUUID": "ECE04FE4-7F12-434F-9008-BD2B30C05072", + "docketEntryUUID": "B5896217-544E-4E74-B55D-A01C5B7AA861", + "caseInstanceUUID": "B48B9E0D-EF4D-4831-8B49-320967679453", + "caseNumber": "CR-2022-0527", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Cody Lamar Waller v. State of Alabama (Appeal from Lee Circuit Court: CC-17-482).", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 2 + }, + { + "publicationItemUUID": "30845D60-F11E-4DF2-B35F-5A6F18224581", + "docketEntryUUID": "0A74D43A-E3B0-46E5-8504-D0F95602F9AE", + "caseInstanceUUID": "DE1CDE4E-8183-437C-8FA4-B30206A3DD55", + "caseNumber": "CR-2023-0180", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Tarick Renardo Moore v. State of Alabama (Appeal from Montgomery Circuit Court: CC-18-101)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 2 + }, + { + "publicationItemUUID": "D56D7357-2DCD-4C56-A3A2-7E3B5DE12D8A", + "docketEntryUUID": "6D1B5DAE-C9CA-420F-8FAE-5A94DF6C3554", + "caseInstanceUUID": "C93521C0-C14F-46DF-B185-3EA3A079E24E", + "caseNumber": "CR-2023-0070", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Jessie Frank Nelson v. State of Alabama (Appeal from Mobile Circuit Court: CC-22-1289)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 2 + }, + { + "publicationItemUUID": "7DA8BDC0-3D06-43A6-BE67-4DD84AD49EBD", + "docketEntryUUID": "73A9F46F-BBB1-4762-A027-A6A15DA23B0A", + "caseInstanceUUID": "269B6664-09E6-475F-A264-8B7CB5412DDC", + "caseNumber": "CR-210290", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Kennedy Ray Wilson v. State of Alabama (Appeal from Montgomery Circuit Court: CC-19-1038)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 2 + }, + { + "publicationItemUUID": "040031EB-0261-4978-8492-7F4230D8482A", + "docketEntryUUID": "6ECC0FAA-6756-4F92-93C2-5C3FB46ACD13", + "caseInstanceUUID": "DA3E6BEB-1273-4797-BEF4-15A963B3B1DB", + "caseNumber": "CR-2022-0512", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Jerry Lee Pruitt v. State of Alabama (Appeal from Jefferson Circuit Court: CC-20-1678)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 3 + }, + { + "publicationItemUUID": "7F3A00A8-746B-43F3-8620-21E70DCC0B39", + "docketEntryUUID": "E4FEC04E-0ADF-4838-B433-BB08503AAB10", + "caseInstanceUUID": "E5A942D0-66B2-477A-A9A2-28951D03CA6D", + "caseNumber": "CR-2023-0083", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Darrion Devaughn Perry v. State of Alabama (Appeal from Jefferson Circuit Court: CC-22-133, CC-22-134, and CC-22-135)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 3 + }, + { + "publicationItemUUID": "1F89F01D-3E34-44BC-B7E1-53A15802BD7A", + "docketEntryUUID": "BA5EB8C5-0792-49C4-99B4-50D8FC494E62", + "caseInstanceUUID": "32AAD2AC-2456-4634-BBB8-7FC020239284", + "caseNumber": "CR-2023-0281", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Jason Dewayne Crawford v. State of Alabama (Appeal from Cullman Circuit Court: CC-18-413)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 3 + }, + { + "publicationItemUUID": "20E8629F-32D7-4BCC-9065-1F03B3B088E4", + "docketEntryUUID": "842C5A4B-87EF-42EE-A4CF-F73547BDE25C", + "caseInstanceUUID": "3A26933E-F823-46C1-854E-851DE7AD96F7", + "caseNumber": "CR-2022-1306", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Alonzo Hale v. State of Alabama (Appeal from Baldwin Circuit Court: CC-21-461)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 3 + }, + { + "publicationItemUUID": "6E58F276-B85C-4FB1-AC4A-3A9F10D78CCD", + "docketEntryUUID": "268B9ABF-191A-460B-A185-3A38EDE54D0C", + "caseInstanceUUID": "BA6A81BC-B465-4AD5-8EE4-9A3D7328B648", + "caseNumber": "CR-2022-0556", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Sylvester Jones III v. State of Alabama (Appeal from Lee Circuit Court: CC-18-682)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 3 + }, + { + "publicationItemUUID": "5BA2EDA7-2935-4C9D-8B8A-371CAC4A64F3", + "docketEntryUUID": "393C4950-7C97-4047-96B6-BB8FB857D86E", + "caseInstanceUUID": "22860F30-56D7-45E5-BC00-165C3A64443A", + "caseNumber": "CR-210283", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Michael Dale Iervolino v. State of Alabama (Appeal from St. Clair Circuit Court: CC-20-426)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "8971098F-CB17-4AD6-BF82-8A10062B0378", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "BE0C386A-8773-4511-9ABD-66012B5C23F6", + "docketEntryUUID": "BA911B90-857A-4C28-8C55-DDD465211B35", + "caseInstanceUUID": "00953134-102A-41B7-A981-711BE90BDAFD", + "caseNumber": "CR-210423", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Eric Lamont Harrison v. State of Alabama (Appeal from Jefferson Circuit Court: CC-19-471)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "F3FDC2B0-8979-47C5-A564-46E908BE5FEF", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "11B491C6-8EBD-4201-81E4-A379C1A72B06", + "docketEntryUUID": "D5BE6AF4-DAA2-4662-89FF-D81D2E22B808", + "caseInstanceUUID": "06C3A1FB-C177-4E2C-B277-85116F5D3A95", + "caseNumber": "CR-2023-0367", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Eugene Edward Pritchard III v. Alabama Department of Corrections (Appeal from Montgomery Circuit Court: CV-23-900407)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 4 + }, + { + "publicationItemUUID": "0F98ECA4-80F5-4683-8D40-5DD1B1016665", + "docketEntryUUID": "A0CDC264-33D2-4C39-8058-30B1936C06F1", + "caseInstanceUUID": "481ABF8C-09F6-4CB4-A9C1-3AB716ECB0D2", + "caseNumber": "CR-2022-0767", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "E.K.M. v. State of Alabama (Appeal from Tuscaloosa District Court: DC-16-2705)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 4 + }, + { + "publicationItemUUID": "3460D142-DF08-46CA-AACE-F4350124599C", + "docketEntryUUID": "E88AB119-70D0-4D97-85E6-4C3DFC52897A", + "caseInstanceUUID": "56C0CB28-14E3-452F-ADE1-4959F07CFCA8", + "caseNumber": "CR-2023-0123", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Michael Steven Painter v. State of Alabama (Appeal from Fayette Circuit Court: CC-21-273 and CC-21-274)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 4 + }, + { + "publicationItemUUID": "DF190BFD-CE0A-4732-948C-B3018213CD1E", + "docketEntryUUID": "FA52B3FF-188D-4D1E-A330-F3FC3B413204", + "caseInstanceUUID": "C50A3556-9C38-4599-9AFF-96A8B032A4F5", + "caseNumber": "CR-2022-0721", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Charles Edward Colburn v. State of Alabama (Appeal from Montgomery Circuit Court: CC-19-154)", + "decision": "Decision - Affirmed by Memorandum on Return to Remand", + "orderBy": 4 + }, + { + "publicationItemUUID": "63B46924-C34B-4C4E-AB45-73362EC6712E", + "docketEntryUUID": "AE43A3D9-496A-4BF1-B265-2C17BF21F659", + "caseInstanceUUID": "E7F79318-4B97-4B53-829A-6A6CA97FCC58", + "caseNumber": "CR-2022-1326", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Sylvester Jackson Jr. v. State of Alabama (Appeal from Escambia Circuit Court: CC-86-115.66)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 4 + }, + { + "publicationItemUUID": "0578A554-DE7A-45CA-A56E-FC1870FA247D", + "docketEntryUUID": "DEB66ADD-827E-4D7D-8332-B974AD5C03E6", + "caseInstanceUUID": "04F9EAFD-44C6-409A-957E-B22B2E6B172D", + "caseNumber": "CR-2023-0166", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Julian Brett Watson v. State of Alabama (Appeal from Autauga Circuit Court: CC-08-247.60)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 5 + }, + { + "publicationItemUUID": "82F7A5BE-6B3C-4893-BC69-AAD0DF4ECE94", + "docketEntryUUID": "78F6F000-B1A2-49C0-94C0-750D807DE30A", + "caseInstanceUUID": "41594D38-D8FC-45ED-B08B-AF959439DCF3", + "caseNumber": "CR-2023-0377", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Jamal Rashad Glover v. State of Alabama (Appeal from Madison Circuit Court: CC-17-3900.70)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 5 + }, + { + "publicationItemUUID": "B7142B1D-C3FD-4E2D-A253-D292EAC65257", + "docketEntryUUID": "9D3EAE94-6296-4903-BB07-C7252E5C6E4C", + "caseInstanceUUID": "5D3757B8-E13E-4E54-BA8B-71BB6DC5B625", + "caseNumber": "CR-2022-1074", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Robert Ferrell v. State of Alabama (Appeal from Macon Circuit Court: CC-18-37).", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 5 + }, + { + "publicationItemUUID": "F1C9F281-E7C9-4DFB-AD98-A062B38617D2", + "docketEntryUUID": "AED6EAD2-E72E-4028-B7F1-0D5C3985DF7E", + "caseInstanceUUID": "FDD975FC-F8C1-4AB2-B2A9-731DAB3C45F9", + "caseNumber": "CR-2023-0009", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "K.D.B. v. State of Alabama (Appeal from Chambers Circuit Court: CC-17-172)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 5 + }, + { + "publicationItemUUID": "9230565D-C516-4E41-BC49-5CE90628B0FA", + "docketEntryUUID": "FC2D98DB-B9E9-49F9-AB96-30FE835DE7DB", + "caseInstanceUUID": "4027FEA8-AA06-4EF7-8DA0-B7D160077FA1", + "caseNumber": "CR-2022-0754", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "John Christopher Shea Hunter v. State of Alabama (Appeal from DeKalb Circuit Court: CC-21-1350 and CC-21-1351).", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 5 + }, + { + "publicationItemUUID": "EBB5EDF0-5FE9-4501-90CD-3C9F24A4080E", + "docketEntryUUID": "B190D118-BDCC-4D06-B81B-FA9690A620BD", + "caseInstanceUUID": "4587B18F-C61E-4545-B8D5-92641A988F96", + "caseNumber": "CR-2022-0587", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Robert Sydrious Thornton v. State of Alabama (Appeal from Etowah Circuit Court: CC-16-386 and CC-21-1234)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "C979424D-3231-4DD1-8BE3-9209F0F750BF", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "51F6C321-5227-4513-A008-3A42D6697E93", + "docketEntryUUID": "793FC0C2-8026-4E51-AA53-834BAD7FDC30", + "caseInstanceUUID": "BA585BEE-DC69-41E0-9420-0D7B056DF663", + "caseNumber": "CR-2022-0789", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Nathan Dwayne Thomas v. State of Alabama (Appeal from Montgomery Circuit Court: CC-18-1330)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "23749BA2-3CFA-4C74-A6A9-FAAE7FF43233", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "A1B32126-6EA7-40FD-8ECC-67A7A3335AF1", + "docketEntryUUID": "DC5EE0C7-979C-4947-9A46-E501AAECCE48", + "caseInstanceUUID": "237AA778-D4E7-4A49-8E91-14BD45C9DF4D", + "caseNumber": "CR-2022-0848", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Galen Collins Wilson v. State of Alabama (Appeal from St. Clair Circuit Court: CC-21-201)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 6 + }, + { + "publicationItemUUID": "3F0B6B0F-7C80-44A6-B395-74F14F575937", + "docketEntryUUID": "F5559EAE-C9B5-4117-8525-6C02DE4005AC", + "caseInstanceUUID": "87EC737B-A0C9-4089-B416-1833E838AFEC", + "caseNumber": "CR-2023-0168", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "James McConico, Jr. v. State of Alabama (Appeal from Jefferson Circuit Court: CC-83-3284.69)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 6 + }, + { + "publicationItemUUID": "88338E3E-A31D-4E77-8B18-8DDE86CCD914", + "docketEntryUUID": "0E772ADD-3324-4DD4-BE7E-26CC4C1BE8A4", + "caseInstanceUUID": "5A96619F-839B-49C5-8A0D-84729732F4EB", + "caseNumber": "CR-2022-1336", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Zachary Taylor Phillips v. State of Alabama (Appeal from Jefferson Circuit Court: CC-19-2154, CC-19-2155, and CC-19-2156)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 6 + }, + { + "publicationItemUUID": "678E292A-A1BE-490D-826B-56B64D85E924", + "docketEntryUUID": "6B10F059-D76C-49E8-9023-22D33C73686D", + "caseInstanceUUID": "23C8AE29-E292-4F84-A5B5-1582C1C34052", + "caseNumber": "CR-2023-0398", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Javoris D'Andre Borden v. City of Attalla (Appeal from Etowah Circuit Court: CC-22-173)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 6 + }, + { + "publicationItemUUID": "AC1307D1-E2A6-47F8-BFFB-F3886403A3DB", + "docketEntryUUID": "91D9929A-1745-42FE-9A18-8AE1865B0F81", + "caseInstanceUUID": "460AEF59-E548-4568-8357-A3C1C938C911", + "caseNumber": "CR-2023-0029", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Gary Lavon Davis v. State of Alabama (Appeal from Limestone Circuit Court: CC-16-928.63)", + "decision": "Decision - Affirmed by Memorandum on Return to Remand", + "orderBy": 6 + }, + { + "publicationItemUUID": "B556309A-6C87-4CA7-BA17-7142BC8F7AEC", + "docketEntryUUID": "BDED6665-87C9-41AC-AF61-D2F1E2B0C560", + "caseInstanceUUID": "317EC289-4235-43CA-82AC-7643F5312387", + "caseNumber": "CR-2023-0037", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Billy Russell Norwood, Jr. v. State of Alabama (Appeal from Mobile Circuit Court: CC-10-5659.71 and CC-11-716.71)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 7 + }, + { + "publicationItemUUID": "90563A22-1D8B-4F7D-9E92-F31BAE5612B2", + "docketEntryUUID": "3195FD68-DDE5-464C-9FB4-BD5679B781A0", + "caseInstanceUUID": "9EACCDAE-F0D5-4916-A31B-9BC5931BBE98", + "caseNumber": "CR-2023-0441", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Elmer Chavis v State of Alabama (Appeal from Houston Circuit Court: CC-04-738, CC-04-739, and CC-04-740)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 7 + }, + { + "publicationItemUUID": "EFE7693B-4996-4118-89EE-8E243019FE27", + "docketEntryUUID": "A95AA0D2-847E-4A22-9D35-BF591B2BDC79", + "caseInstanceUUID": "B220CFA1-6DF4-4D1D-9E77-FF374C54AA42", + "caseNumber": "CR-2022-1344", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Lathedrick L. Miles v. State of Alabama (Appeal from Jefferson Circuit Court: CC-20-2156)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 7 + }, + { + "publicationItemUUID": "2C982F27-7E9A-4497-93D8-6CF1767024AB", + "docketEntryUUID": "1280F747-DACC-4778-90DB-738401341E9B", + "caseInstanceUUID": "8AFD4987-751C-4B97-B41A-B7983B57AADC", + "caseNumber": "CR-2023-0331", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "David Lee Moore v. State of Alabama (Appeal from Cullman Circuit Court: CC-19-292)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 7 + }, + { + "publicationItemUUID": "74A2BC7A-0C30-4898-9CDB-EADD4DF3F248", + "docketEntryUUID": "28776565-B801-452B-A6C7-D826EB3FD31B", + "caseInstanceUUID": "0A9BA29E-C0BD-4867-A923-44867E57F7D2", + "caseNumber": "CR-2022-0916", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Latransezon Tremane Malloy v. State of Alabama (Appeal from Madison Circuit Court: CC-16-2152.60)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 7 + }, + { + "publicationItemUUID": "41A85687-4485-4396-9027-B80A9D491A9D", + "docketEntryUUID": "11905A8E-BDBD-44D6-8A66-C898CB40795B", + "caseInstanceUUID": "BDFF8B72-502B-48BE-9FE0-6F29F9345794", + "caseNumber": "CR-2022-0914", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Terrance Rashaun Moore v. State of Alabama (Appeal from Lamar Circuit Court: CC-21-64)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "C072D12A-BE23-4291-A604-B12BD0451A8B", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "094B5A14-94F0-4638-8374-D47583A92D43", + "docketEntryUUID": "C1BC3E42-CE20-4972-8735-E57380A854A8", + "caseInstanceUUID": "161051EF-5403-4978-9184-C189DC0164AD", + "caseNumber": "CR-2022-0965", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Christopher Jarquis Guice v. State of Alabama (Appeal from Pike Circuit Court: CC-19-493, CC-19-494, CC-19-495, and CC-19-496)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 8, + "documents": [ + { + "documentLinkUUID": "CEAF07E7-F76F-4FC7-8896-424647E1C227", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "D027BFB9-320E-475E-8113-B62A071845F5", + "docketEntryUUID": "F423A106-9FBA-487C-B728-178D42D71298", + "caseInstanceUUID": "637C21A3-7F67-408E-8B1D-AA8C543978E9", + "caseNumber": "CR-2022-0955", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Roger Tavares Malone, Jr. v. State of Alabama (Appeal from Jefferson Circuit Court: CC-20-1583 and CC-20-1584)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 8 + }, + { + "publicationItemUUID": "EE2F8138-7209-41C7-AC23-1C6344172E26", + "docketEntryUUID": "876C2D55-676A-4DD0-828C-0F1905968F44", + "caseInstanceUUID": "55B1E429-8E8E-43A5-A277-8B43C5DD450E", + "caseNumber": "CR-2023-0110", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Christopher Jerome Thomas v. State of Alabama (Appeal from Tallapoosa Circuit Court: CC-21-244.70 and CC-21-352.70)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 8 + }, + { + "publicationItemUUID": "557BC082-0DE0-45FF-94A3-67AC348ADB64", + "docketEntryUUID": "BE18FD36-37E1-408D-8D49-94BE748F31E3", + "caseInstanceUUID": "68A72A7F-34D4-467B-B06D-0E71501135DB", + "caseNumber": "CR-2023-0373", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Tony Lee Smith v. Alabama Department of Corrections (Appeal from St. Clair Circuit Court: CV-23-1)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 8 + }, + { + "publicationItemUUID": "870061C2-E195-47BD-8839-44FA85C56E89", + "docketEntryUUID": "7B069C03-A7B5-4C81-A8EF-12D13D821A9B", + "caseInstanceUUID": "1A70DC59-B88E-4053-964A-B265AF23DA51", + "caseNumber": "CR-2023-0461", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "S.M. v. State of Alabama (Appeal from Lee Circuit Court: CC-07-606.67)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 8 + }, + { + "publicationItemUUID": "BB1066CD-B140-4F12-8F39-449223A95CC0", + "docketEntryUUID": "EB362350-B06A-4CF8-9E9E-B23A35201BED", + "caseInstanceUUID": "A0CA6587-4541-445D-8F28-A2B849E3E859", + "caseNumber": "CR-2023-0208", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Beunkus Shanequa Collins v. State of Alabama (Appeal from Lee Circuit Court: CC-22-343.70)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 8 + }, + { + "publicationItemUUID": "EE6098F9-5F38-4D15-A87E-6B0EBA4802DC", + "docketEntryUUID": "7BFF3A99-05AA-49A5-8DC2-171569668429", + "caseInstanceUUID": "D3EDF5F7-A8C6-4F56-9206-BA21E85A73BE", + "caseNumber": "CR-2023-0516", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Marion Eugene Snowden v. State of Alabama (Appeal from Baldwin Circuit Court: CC-20-352.71)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 9 + }, + { + "publicationItemUUID": "B6376938-A18A-45F4-BB0D-BDAC40F5125E", + "docketEntryUUID": "DEF1C3FD-ED9C-4ECB-A154-E3053D5369FA", + "caseInstanceUUID": "0C701E97-530B-4889-9929-940B2350D532", + "caseNumber": "CR-2023-0259", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Breon Dwayne Humphrey-Sallings v. State of Alabama ( Appeal from Madison Circuit Court: CC-21-2601)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 9 + }, + { + "publicationItemUUID": "8CDEE646-9BF5-4C8C-947A-DE2AB0A5FC3E", + "docketEntryUUID": "00BD9142-8D5B-4F91-8598-036961D39827", + "caseInstanceUUID": "4B0C414A-30E9-4D75-B7CD-795F34949962", + "caseNumber": "CR-2023-0400", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Jeffery Lynn Fair v. State of Alabama (Appeal from Etowah Circuit Court: CC-09-65.63)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 9 + }, + { + "publicationItemUUID": "0BA2FD1A-3996-48CD-8285-ED5C610AE475", + "docketEntryUUID": "1E122B5D-B8FF-4C2B-922D-79D5D08B3CFC", + "caseInstanceUUID": "A49633F8-0F7A-4E81-9763-66A28ED6E02C", + "caseNumber": "CR-2023-0217", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "John Michael Turner v. State of Alabama (Appeal from Mobile Circuit Court: CC-22-2346)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 9 + }, + { + "publicationItemUUID": "09AC2907-ACA4-4BAA-9323-A44C4A752D7A", + "docketEntryUUID": "9676EEE0-2849-491F-A3B1-24637FD06B78", + "caseInstanceUUID": "3DA8754C-BAB0-476B-87E8-9AD9DAEFB171", + "caseNumber": "CR-2022-1262", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Marquell Kimbrough v. State of Alabama (Appeal from Wilcox Circuit Court: CC-16-37)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 9 + }, + { + "publicationItemUUID": "1232A6F7-83D1-4952-A998-FD763DE7C2BE", + "docketEntryUUID": "B72D0B2E-DD20-4794-86A8-26276799AA74", + "caseInstanceUUID": "C013DDEC-DE75-4944-9276-35F819FFC4D0", + "caseNumber": "CR-2022-1057", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Jarmaine Wright v. State of Alabama (Appeal from Mobile Circuit Court: CC-19-4958.70)", + "decision": "Application Overruled; Memorandum of March 17, 2023, Withdrawn; Memorandum Substituted; Affirmed.", + "orderBy": 9, + "documents": [ + { + "documentLinkUUID": "E5A97733-C457-4CC2-9E40-88A31BAABDAF", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "9E58ECDF-C259-443F-A256-FDCB3A805975", + "docketEntryUUID": "104A89D8-0F38-4654-9ED4-40631746B152", + "caseInstanceUUID": "A31A3051-C3A9-4F3C-8C1C-F7A8D976F7D9", + "caseNumber": "CR-2023-0062", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "David Eugene Files v. State of Alabama (Appeal from Walker Circuit Court: CC-02-289.63)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 10, + "documents": [ + { + "documentLinkUUID": "71B6CAF1-6E99-4D70-82E5-204185F8DA5F", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "34DE6D5A-2955-4C16-A0F4-54D20A0C51BF", + "docketEntryUUID": "85CFAAFB-414A-4D32-BA9E-E4A7A49DEEE9", + "caseInstanceUUID": "4E01CD4D-519E-477F-BEF0-D08B42BE353C", + "caseNumber": "CR-2023-0001", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Nagasi Shabazz Ziyad v. State of Alabama (Appeal from Mobile Circuit Court: CC-19-4593 )", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 10 + }, + { + "publicationItemUUID": "0D6EE291-045A-4831-BFE4-2AAB30AE2722", + "docketEntryUUID": "B2B3F973-A42A-42F4-8FCC-2CD172635FCB", + "caseInstanceUUID": "EE2707E0-78E3-48C0-9016-FD83D4125A4D", + "caseNumber": "CR-2023-0298", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Cornellius Darell Pride v. State of Alabama (Appeal from Madison Circuit Court: CC-19-4641.70 and CC-19-4643.70)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 10 + }, + { + "publicationItemUUID": "653561C2-36CF-45AA-8E26-4B80EE6B182F", + "docketEntryUUID": "82A4BC73-E025-4DCB-835E-8D6E0C430AE4", + "caseInstanceUUID": "0EC0830D-B553-4810-AC5C-47FDE09FE1F3", + "caseNumber": "CR-2023-0478", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Larry Edward Nesbitt v. State of Alabama (Appeal from Montgomery Circuit Court: CC-17-162)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 10 + }, + { + "publicationItemUUID": "1844D0DD-FFFC-496D-80D2-6A7E415C3144", + "docketEntryUUID": "42335B0A-F0EC-4C36-BF8D-6EFC031A98A8", + "caseInstanceUUID": "8E7B420F-7EC0-4DE3-B5C5-B99E3B0BAD52", + "caseNumber": "CR-2023-0533", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Roderick Lee Williams v. State of Alabama (Appeal from Mobile Circuit Court: CC-18-1411.60)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 11 + }, + { + "publicationItemUUID": "BC028D79-8678-4901-9826-73DA50986F10", + "docketEntryUUID": "4CC5BA68-9514-4650-838A-61E795231F71", + "caseInstanceUUID": "13C0373E-63F1-430E-9D58-056ABEBEB4FE", + "caseNumber": "CR-2023-0054", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Ezekiel Ellis, Jr. v. State of Alabama (Appeal from Lee Circuit Court: CC-20-819.70, CC-21-121.70, and CC-21-249.70)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 11 + }, + { + "publicationItemUUID": "41358254-87D5-4630-9AC4-4F78EB92BFAD", + "docketEntryUUID": "59C01883-4D1F-4EC7-9377-1E024A69B0EE", + "caseInstanceUUID": "BCCA9764-452B-4FAA-9770-7C9FB8546409", + "caseNumber": "CR-2023-0226", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "James Gregory Sears v. State of Alabama (Appeal from Macon Circuit Court: CC-05-31.62)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 11, + "documents": [ + { + "documentLinkUUID": "90BF5EB1-FFDD-4DFA-BC9F-CB409A1549FF", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "FD4AFDAC-6B8D-4C51-A496-9FFC1E26AC5D", + "docketEntryUUID": "FC303F54-A7A4-4B8F-ACA7-71EB81EAA50E", + "caseInstanceUUID": "F3D56F1C-C183-4312-9259-5C1279BD7DC5", + "caseNumber": "CR-2023-0159", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Leo Jackson, Jr. v. State of Alabama (Appeal from Houston Circuit Court: CC-98-1544.64)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 12 + }, + { + "publicationItemUUID": "0788A495-2F17-4747-A9B1-F6BE49AD9B70", + "docketEntryUUID": "B70AD1A6-A2E1-43DC-9C2D-441C839B88EC", + "caseInstanceUUID": "B1B818A8-FB17-4868-9E1B-ED76D7D1CBE8", + "caseNumber": "CR-2023-0295", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Lorenzo Reese v. State of Alabama (Appeal from Jefferson Circuit Court: CC-03-317.64 and CC-03-3396.67)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 13 + }, + { + "publicationItemUUID": "DFF023D9-5EC4-4995-AB0C-40B97B583A4A", + "docketEntryUUID": "6E8160DB-B4F2-4A3C-BC87-C736C13A22FF", + "caseInstanceUUID": "0F1DE15D-7007-4A02-BE63-A22E06790FFE", + "caseNumber": "CR-2023-0326", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Andrew Lyons III v. State of Alabama (Appeal from Tuscaloosa Circuit Court: CC-06-3671.60)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 14 + }, + { + "publicationItemUUID": "536F4AD2-0143-499B-87E6-E87F0B597726", + "docketEntryUUID": "C6352A7D-8CDE-403C-8470-9794D74409B1", + "caseInstanceUUID": "DABBD3F3-731C-42DB-AF95-6C801624921A", + "caseNumber": "CR-2023-0531", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Susan Rochelle Lett v. State of Alabama (Appeal from Etowah Circuit Court: CC-21-160.70, CC-21-314.70, and CC-22-479.70)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 15 + } + ] + }, + { + "publicationUUID": "3477967a-4d3d-4aa1-9c15-17afcc103a25", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-10-20", + "publicationName": "Court of Criminal Appeals Release List - October 20, 2023", + "publicationNote": "Decisions Announced on Friday, October 20, 2023", + "groupFlag": true, + "scheduledDate": "2023-10-20T14:00:00.000+00:00", + "publicationDate": "2023-10-20T13:37:42.038+00:00", + "publicationItems": [ + { + "publicationItemUUID": "4FE33CBD-ED99-4D07-B342-AEA89960289B", + "docketEntryUUID": "054F2882-B586-460A-B45D-01CBA03343DA", + "caseInstanceUUID": "A9B6CE0D-5E62-4C6F-9BA1-73DBD1EB842B", + "caseNumber": "CR-2023-0082", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Damion Joseph Bruno v. State of Alabama (Appeal from Elmore Circuit Court: CC-19-941.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "4674B095-BF54-4AD6-933D-AD1988CC60CF", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "2C220CDA-A401-4E18-9FC9-2A634433052A", + "docketEntryUUID": "750DBA36-205F-427E-ADFA-0BEB943A4A5C", + "caseInstanceUUID": "8ACA1635-F02A-4E1B-8468-F5C01F173D67", + "caseNumber": "CR-2023-0148", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "James William Bailey IV v. State of Alabama (Appeal from Henry Circuit Court: CC-05-378.63)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "6D56E39A-79A2-44FC-936D-F78A1992364C", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "AAF10590-9610-499B-BF87-8BAEA8916FD6", + "docketEntryUUID": "13862652-C610-4538-B2C9-FBE3AA8642DD", + "caseInstanceUUID": "9EF015F2-6C7A-46F6-B09A-1223DB660537", + "caseNumber": "CR-2023-0241", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Paris Markee Jennings v. State of Alabama (Appeal from Madison Circuit Court: CC-22-2599)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "8AB89F24-3B1C-4F9E-A551-124CE93AFBF6", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "4215B5DC-349C-4A69-86AC-034E466D5EE1", + "docketEntryUUID": "AB63BB05-5A6A-4979-9DBF-36225C3ACDF7", + "caseInstanceUUID": "9938FB4F-413B-4B60-8E00-B410CEDD6ED3", + "caseNumber": "CR-2023-0265", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Micah Wesley Jenkins v. State of Alabama (Appeal from Jefferson Circuit Court, Bessemer Division: CC-19-758, CC-19-759, and CC-19-760)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "14857A33-73C0-4150-A167-5612725F4F91", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "F4C4A3FD-2388-43C9-B140-1254AAA5235B", + "docketEntryUUID": "9AE37137-49D3-41E0-858B-5352BE339BFB", + "caseInstanceUUID": "E88902FB-A67A-4679-B338-A93EA9F5D4BB", + "caseNumber": "CR-2023-0344", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Markel Jason McDaniel v. Alabama Board of Pardons & Paroles and Alabama Department of Corrections (Appeal from Montgomery Circuit Court: CV-2022-901140)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "F8FC862B-94C7-4BE6-B55E-7C96D94E8416", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "bc342d91-3476-40df-8539-15c2216bcefc", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-10-13", + "publicationName": "Court of Criminal Appeals Release List - October 13, 2023", + "publicationNote": "Decisions Announced on Friday, October 13, 2023", + "groupFlag": true, + "scheduledDate": "2023-10-13T14:00:00.000+00:00", + "publicationDate": "2023-10-13T14:20:09.398+00:00", + "publicationItems": [ + { + "publicationItemUUID": "C084D244-22AB-420F-A6FB-93F6D7BBE9A0", + "docketEntryUUID": "03641A06-6EF9-40DF-AA39-A488E627309E", + "caseInstanceUUID": "1FA9E62C-2E7B-49C8-8242-9230AF0AFE58", + "caseNumber": "CR-2022-0588", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Derrill Richard Ennis v. State of Alabama (Appeal from Lee Circuit Court: CC-18-726)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "BC019437-24D8-4E0B-830B-D8941E22D20D", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "03B1C2F9-5E4E-499E-8444-272D3C223B50", + "docketEntryUUID": "4747795F-5BB1-4D65-8903-E7E58A68038B", + "caseInstanceUUID": "95C2FBAE-D251-43CC-AA36-561ED3D2CC43", + "caseNumber": "CR-2022-0661", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Charles Jacob Jordan v. State of Alabama (Appeal from Lauderdale Circuit Court: CC-18-731)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "9982F7D4-553C-48DE-9A24-F0BC5D505D12", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "C917C369-A7CB-4FA1-8A1F-C027DF9182BA", + "docketEntryUUID": "5633FB81-5A1C-437D-A3AB-5E7D873D6199", + "caseInstanceUUID": "15A124CD-68E6-477C-A521-15C311DC9AB2", + "caseNumber": "CR-2022-0679", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "T.R.C. v. State of Alabama (Appeal from Mobile Circuit Court: CC-19-2584 and CC-21-2409)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "4A4D891B-38FB-470E-A132-09C531660AD8", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "CAF42C20-F759-49B1-A8EB-89726A3E1913", + "docketEntryUUID": "608330DD-D4F9-4E4F-97CD-2F12A31DE6C7", + "caseInstanceUUID": "DEF1A3F2-BE6B-41D0-8F98-10462F3AEBCC", + "caseNumber": "CR-2022-0807", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Michael Shane Fletcher v. State of Alabama (Appeal from Mobile Circuit Court: CC-19-4306).", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "81A0ED22-8AF7-4C16-A197-3ADE5C67F6C8", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "8B6759B6-7880-4211-A362-5C5B91D090DB", + "docketEntryUUID": "4ECD8C39-EA41-43F3-9536-BE5C91F1D2B7", + "caseInstanceUUID": "71B84755-2404-4469-8D13-65E5D1F4EBD1", + "caseNumber": "CR-2022-0890", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Gerald Dewayne Brewster v. State of Alabama (Appeal from Etowah Circuit Court: CC-04-878.64)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "7C8E1973-95DD-4004-8466-FDF77F718C8D", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "7DCF7381-581E-4A5D-BAEF-168F61ADF95C", + "docketEntryUUID": "AAA0D9DF-B62F-4A5D-9E00-C1271E0F6C06", + "caseInstanceUUID": "2C9DF634-CB70-4AA3-8584-7A7D573BF1CF", + "caseNumber": "CR-2022-0924", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Kijuan Cortez Flowers v. State of Alabama (Appeal from Montgomery Circuit Court: CC-18-2000)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "39E989FA-1357-40FA-9E40-AB1226865778", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "1342B051-0E0B-4E86-889C-EC6931869ADA", + "docketEntryUUID": "6394C65F-C27A-46A6-A383-BABFAA06DF85", + "caseInstanceUUID": "F688B2A1-6C0D-49EE-88C9-66A958641D13", + "caseNumber": "CR-2022-1195", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Tony Tyrone Sheppard v. State of Alabama (Appeal from Jefferson Circuit Court: CC-22-1119).", + "decision": "Application for Rehearing Overruled.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "EF116E66-8A5F-4C23-90F1-185B0FDF41E9", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "5C4360CD-E979-4539-8F20-3917CDB302F1", + "docketEntryUUID": "018F4AA0-BE83-4A88-93C7-434F59998034", + "caseInstanceUUID": "DBB99E3F-7C88-4B2B-9E25-63EF2C82608B", + "caseNumber": "CR-2023-0007", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Carlos Antonio Catlin v. State of Alabama (Appeal from Mobile Circuit Court: CC-18-428.70)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 8, + "documents": [ + { + "documentLinkUUID": "C91EE60F-ABB6-4586-9EFD-86518E6FDC7F", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "0CB7CBF7-94B0-48C2-9E9A-AD9AAC13C54E", + "docketEntryUUID": "188E8D58-5C91-4A3D-BB5D-AA622979506E", + "caseInstanceUUID": "9BA95E11-F0AE-4F44-80F3-3030174580BE", + "caseNumber": "CR-2023-0164", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Quan Xu v. State of Alabama (Appeal from St. Clair Circuit Court: CC-22-111)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 9, + "documents": [ + { + "documentLinkUUID": "E281300F-D802-4443-9FA4-58DC307C4522", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "80ad69b3-e414-49fa-a2be-872ef740c5f5", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-10-06", + "publicationName": "Court of Criminal Appeals Release List - October 6, 2023", + "publicationNote": "Decisions Announced on Friday, October 6, 2023", + "groupFlag": true, + "scheduledDate": "2023-10-06T14:00:00.000+00:00", + "publicationDate": "2023-10-06T13:24:57.926+00:00", + "publicationItems": [ + { + "publicationItemUUID": "0DE47782-EA7A-4CB6-912F-DBA728E71B45", + "docketEntryUUID": "609766B3-83FA-4630-B662-9F3BD25723A9", + "caseInstanceUUID": "097A3F29-50EE-4D8B-BAF4-D6F0AA708CF0", + "caseNumber": "CR-210390", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Clifford Stutson v. State of Alabama. (Appeal from Jefferson Circuit Court: CC-19-651, CC-19-652, and CC-19-653).", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "051D2A68-0E5F-43FC-A1F2-4BF1721356AB", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "E035B261-F4AD-4FC4-B226-08935EBF6F54", + "docketEntryUUID": "2F0C102B-504C-4D72-914A-1F334CDF7855", + "caseInstanceUUID": "39162A5F-5E1C-4B73-899E-7B924BDD9095", + "caseNumber": "CR-210398", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Carnel Jackson v. State of Alabama (Appeal from Jefferson Circuit Court: CC-81-887)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "920733FD-6518-4874-9754-CEB34F0A11B2", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "F570EF07-8AF4-4D3A-848B-D37F478AD73D", + "docketEntryUUID": "147D41BF-3775-4FF1-B999-28EB95FD4145", + "caseInstanceUUID": "1FA72E13-3F6B-4181-9955-D29847A8EF2E", + "caseNumber": "CR-2022-0819", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Todd Wayne Fye v. State of Alabama (Appeal from Houston Circuit Court: CC-17-1131 through CC-17-1309)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "07E61D23-A48A-4E1A-B023-BA0F1D8D618D", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "F4112E44-326B-49F7-89E4-A11FEB76BA45", + "docketEntryUUID": "6F037FBF-E39C-4B8E-8254-6B89D2B778A9", + "caseInstanceUUID": "26A69CA6-16F5-44B6-B661-181DEC90A242", + "caseNumber": "CR-2023-0140", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Thomas Michael Watson v. State of Alabama (Appeal from Madison Circuit Court: CC-19-3427.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "79DF21EE-3885-4B14-BBE1-F53E0B331343", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "64e4a3a0-4493-47e7-a758-5c5758a00c24", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-09-29", + "publicationName": "Court of Criminal Appeals Release List - September 29, 2023", + "publicationNote": "Decisions Announced on Friday, September 29, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-29T14:00:00.000+00:00", + "publicationDate": "2023-09-29T14:30:05.952+00:00", + "publicationItems": [ + { + "publicationItemUUID": "AE02D72B-08F8-470C-B023-A0CE62801D70", + "docketEntryUUID": "5F99C08D-FE54-48B6-AE58-88D7B2821D81", + "caseInstanceUUID": "16621410-1AC8-4739-AC77-43585D1E33F0", + "caseNumber": "CR-2022-1118", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Carl Evans Davis v. State of Alabama (Appeal from Green Circuit Court: CC-18-23.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "A2D29743-384D-4FC2-A412-FF8FF7BFE98F", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "B04C7317-19DD-4BB7-B627-EE454198A4B1", + "docketEntryUUID": "FDB8B711-6ADB-4A77-A56B-6D05FBCC9A14", + "caseInstanceUUID": "E4AE49B6-22B1-4EB8-8AD0-E5D9FEC13330", + "caseNumber": "CR-2023-0248", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Henry Clay Smith, Jr. v. State of Alabama (Appeal from Morgan Circuit Court: (CC-95-310.69)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B042A362-5436-440F-80F0-75C37A027762", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "d6e69733-700a-41b2-aab4-5907d8eeab5d", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-09-22", + "publicationName": "Court of Criminal Appeals Release List - September 22, 2023", + "publicationNote": "Decisions Announced on Friday, September 22, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-22T14:00:00.000+00:00", + "publicationDate": "2023-09-22T14:13:06.688+00:00", + "publicationItems": [ + { + "publicationItemUUID": "B4FFC6CB-6F58-4E06-AB21-0FF6BD4A1F47", + "docketEntryUUID": "8317E9C4-4B25-48EA-A934-CD619B306AA8", + "caseInstanceUUID": "B139F8C3-579E-4E6F-A4B1-77D2D5933052", + "caseNumber": "CR-2022-0919", + "groupName": "Judge Cole", + "groupOrderBy": 3, + "title": "Cody Lee Zink v. State of Alabama (Appeal from Morgan Circuit Court: CC-19-78)", + "decision": "Decision - Affirmed in Part; Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "300BE1FC-A589-4D28-A5DA-2A0156E7A0D8", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "62911332-A0D8-43C3-AB3E-9DBE7C38E2B6", + "docketEntryUUID": "00F69CCE-8CFC-49DA-BE40-CEF534C611B1", + "caseInstanceUUID": "72EF4C8D-C05B-4774-9CCF-F7BC1C21C104", + "caseNumber": "CR-2022-0738", + "groupName": "Judge McCool", + "groupOrderBy": 2, + "title": "C. B. R. v. State of Alabama (Appeal from Shelby Circuit Court: CC-17-501 and CC-17-502)", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "AF365AC7-1895-4160-B787-4E064D36D3BE", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "1993043E-9050-4464-90BA-5BB53D6BB29D", + "docketEntryUUID": "CDAF2052-6F6B-4573-AE1D-F7E51F76E865", + "caseInstanceUUID": "7117A23F-91C9-48E4-BBC1-EB01AF65093C", + "caseNumber": "CR-200686", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "A.J.C. v. State of Alabama. (Appeal from Madison Circuit Court: CC-19-1977)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "91E5840B-FFE3-4C31-BE65-9E37B2EB0718", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "34117292-7B47-45E9-80AB-036350448ACF", + "docketEntryUUID": "1A9AA2A9-A7F3-453D-805C-C919905D3699", + "caseInstanceUUID": "9A580036-7065-4868-A789-4BBC81167E1D", + "caseNumber": "CR-2022-0966", + "groupName": "Per Curiam", + "groupOrderBy": 4, + "title": "Ex parte State of Alabama and Clifton Marshall Ridgeway (In re: State of Alabama v. Clifton Marshall Ridgeway) (Blount Circuit Court: CC-15-210)", + "decision": "Decision - Petition Denied", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5C1D4BA8-BE7D-4758-A50C-CF0EFAC1B935", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "B28B2001-F409-4525-8B00-8D201ADAC267", + "docketEntryUUID": "5AADBCB4-274D-406E-9F91-405FAE1BEA68", + "caseInstanceUUID": "39312897-FABB-4F2A-A483-EBAC92D5AC2A", + "caseNumber": "CR-2022-1020", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Mondrell Kenee Ward v. State of Alabama (Appeal from Madison Circuit Court: CC-18-4946)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 1 + }, + { + "publicationItemUUID": "0BC7F6EA-DA72-4FB5-848E-2DA9381A17FD", + "docketEntryUUID": "8D0222BB-7EA0-42C7-B49C-F5FF2B94A96A", + "caseInstanceUUID": "D9A0CCA8-E426-48BB-B894-897332E461B5", + "caseNumber": "CR-2022-0967", + "groupName": "Per Curiam", + "groupOrderBy": 4, + "title": "Ex parte State of Alabama (In re: State of Alabama v. Clifton Marshall Ridgeway) (Blount Circuit Court: CC-15-210)", + "decision": "Decision - Petition Denied", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "3977D6E5-001B-4E73-90BB-3C552EC5ED71", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "BC5C3108-8E42-4242-AA1B-D4039C1EB9D7", + "docketEntryUUID": "8780479D-60F5-4966-8521-7A871A6CE6E0", + "caseInstanceUUID": "60CDA856-9075-469B-BDBE-F90EAF2B7FA8", + "caseNumber": "CR-210388", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Zachary Stephen Nichols v. State of Alabama (Appeal from Lee Circuit Court: CC-19-502)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "0A8FA77E-A780-4B36-BA73-8009C98B4E8E", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "2A02F9CD-4F85-4EDA-A021-2264620EB62C", + "docketEntryUUID": "ADCB693B-FCA2-4641-9ECD-06E04C6B6256", + "caseInstanceUUID": "7E8C93AF-C7B1-465C-95A8-BF329BACE100", + "caseNumber": "CR-2022-0968", + "groupName": "Per Curiam", + "groupOrderBy": 4, + "title": "Ex parte State of Alabama and Clifton Marshall Ridgeway (In re: State of Alabama v. Clifton Marshall Ridgeway) (Blount Circuit Court: CC-15-210)", + "decision": "Decision - Petition Denied", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "71AB57E1-E56B-4AE4-925C-9B8C6D23E8AB", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "FB6FD95D-5A55-46BB-B0BB-F6E771E80EE6", + "docketEntryUUID": "0512F2D6-B43E-41B2-8B1A-2AF0F016759D", + "caseInstanceUUID": "8433327B-150F-49E6-92A3-FD90512E612E", + "caseNumber": "CR-210435", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Jacob Ryan Davenport v. State of Alabama (Appeal from Shelby Circuit Court: CC-18-540)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "922FD98E-5A37-4E1F-9F9F-00C7E651CD95", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "8420248B-FAA3-40FF-85DE-43830E2D0E67", + "docketEntryUUID": "7EDD0968-D970-4CE1-9F8B-1ED236EF75E2", + "caseInstanceUUID": "E8846B59-ABDF-4E0A-B8FF-968691E36C18", + "caseNumber": "CR-2023-0325", + "groupName": "Per Curiam", + "groupOrderBy": 4, + "title": "Ex parte Jacobye Bryan Green (In re: State of Alabama v. Jacobye Bryan Green) (Jefferson Circuit Court: CC-23-826.60)", + "decision": "Decision - Petition Granted", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "8A75A6F4-C663-42A1-A2A6-C47E9F92BF2B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9F51E609-590D-481C-85EC-71F66C31517F", + "docketEntryUUID": "80EB6D21-F9AA-4B75-A0CF-8D0483775098", + "caseInstanceUUID": "622DDE49-7C94-462C-ABFA-A17F19BD073F", + "caseNumber": "CR-210485", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Cardalle Bruce Osby v. State of Alabama (Appeal from Jefferson Circuit Court: CC-18-1701, CC-18-1702, and CC-18-1703)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "C2BCDAF8-D8C3-48CA-9124-F93E081FB4CA", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "5E1FCFAD-144C-4D24-99D6-16E0894465C0", + "docketEntryUUID": "ABB3BFD7-1F5A-46EE-B910-2B5AAED5507B", + "caseInstanceUUID": "ECC0DDFE-13BC-43B6-81BE-6B681B1A3C52", + "caseNumber": "CR-2022-0585", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Anthony Dale Johnson v. State of Alabama (Appeal from Coffee Circuit Court: CC-19-55)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "0CF7D61D-1923-43C2-A7D4-55D09111FADE", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "C3A0F38F-FD64-43FA-AA2E-4D3C56A5AEDF", + "docketEntryUUID": "CD496BF1-901F-433A-A688-F625C22A0DDD", + "caseInstanceUUID": "7FFEED93-2C1E-49B2-B552-AFDD6DB6DD11", + "caseNumber": "CR-2022-0621", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Branden Levi Johns v. State of Alabama (Appeal from Coffee Circuit Court: CC-21-59)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "1ABC25AC-82F4-4385-B151-95B530F71F85", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "81CC7292-1AB8-4414-8B9C-C650447EC239", + "docketEntryUUID": "F32CFF16-1B06-44A6-A424-3AA537B1DCEE", + "caseInstanceUUID": "56EDF7D9-533B-4909-8E9A-9580CB0FF208", + "caseNumber": "CR-2022-0677", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Yinessa Cantrell Banks v. Alabama Department of Corrections (Appeal from Limestone Circuit Court: CV-22-12.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "EBE4685C-4206-481B-BF0E-391E84F527F6", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "A62BD5D4-9960-4614-BC00-CA963FDF5FB5", + "docketEntryUUID": "66483380-93DF-4978-BA1C-0D8FBDD1C610", + "caseInstanceUUID": "B63F98E1-3F5D-4D5A-845F-79C05C5DD184", + "caseNumber": "CR-2022-0792", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "James Lavondria Tunstall v. State of Alabama (Appeal from Mobile Circuit Court: CC-19-2458)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 8, + "documents": [ + { + "documentLinkUUID": "43F189D6-3A52-49AD-9B10-EF27B4A026E7", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "731947DE-6260-45B6-BD13-CB122C63F03D", + "docketEntryUUID": "706B5B17-84F9-407E-9460-14EAE168113E", + "caseInstanceUUID": "2ACA8CEF-0D6E-409F-9068-2DF445B47644", + "caseNumber": "CR-2022-1007", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Anthony Tyrone Jackson v. State of Alabama (Appeal from Calhoun Circuit Court: CC-15-729)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 9, + "documents": [ + { + "documentLinkUUID": "58F1ABE3-CECF-487B-B0AF-7CAD247F3431", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "75FB4CE3-C2F0-42F9-81CC-1E0EB6A76194", + "docketEntryUUID": "89B671D8-7572-409A-BD2B-EEA3FD7A58FF", + "caseInstanceUUID": "CBB81C2D-8C16-4278-9215-B15A6C9CC766", + "caseNumber": "CR-2022-1093", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Ronald Gholston v. Alabama Board of Pardons and Paroles (Appeal from Montgomery Circuit Court: CV-22-73)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 10, + "documents": [ + { + "documentLinkUUID": "8DAC2770-96ED-408A-943D-D7C9D5918B4C", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "9533F7B8-FCF2-42E7-A41E-0C48D37B906B", + "docketEntryUUID": "700A35A6-6D01-4155-BEAD-74FE3752D110", + "caseInstanceUUID": "19569FDD-C005-4447-8BCE-6957F3870C71", + "caseNumber": "CR-2022-1223", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Roy Lee Burns v. State of Alabama (Appeal from Mobile Circuit Court: CC-19-943.70, CC-19-944.70, CC-19-945.70, CC-19-946.70, CC-19-947.70, CC-19-948.70, CC-19-949.70, and CC-20-212.70)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 11, + "documents": [ + { + "documentLinkUUID": "ACBF0CF8-170C-4AFA-8FC4-3C826297466B", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "7C6FFD20-F04F-4F8C-86C3-9D760F2D3482", + "docketEntryUUID": "273688A8-C9E9-48FB-8DB8-A4A95158AC24", + "caseInstanceUUID": "A578322A-6578-4818-801E-28BE8E6666B6", + "caseNumber": "CR-2022-1254", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Antonio O'Bryan Scott v. State of Alabama (Appeal from Lee Circuit Court: CC-22-312)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 12, + "documents": [ + { + "documentLinkUUID": "BA703FBC-22FF-4E0A-AE63-5D3DBF4166B3", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "5893F774-338F-4351-8D83-5D853B56F521", + "docketEntryUUID": "0B12904A-0C0C-4C85-A62C-1CC63F0A5872", + "caseInstanceUUID": "7343E9A5-19D8-45CF-9AFF-A0603B588A50", + "caseNumber": "CR-2022-1295", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Mary Wiggins v. State of Alabama (Appeal from Conecuh Circuit Court: CC-09-77.61)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 13, + "documents": [ + { + "documentLinkUUID": "BB3A5759-011B-4309-89A0-E56F1DE15BA7", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "097C6EAB-59DB-45D9-A8B5-B9871B046041", + "docketEntryUUID": "7D866E34-4C28-4BCA-AFB5-796B6B8FC779", + "caseInstanceUUID": "31844514-569D-4904-9295-B2914087416B", + "caseNumber": "CR-2022-1350", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Courtney Reshard Twilley v. State of Alabama (Appeal from Jefferson Circuit Court: CC-19-1917, CC-19-1918, and CC-19-1919)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 14, + "documents": [ + { + "documentLinkUUID": "2207AFCA-DD08-4B89-9F2A-D8410C0B421F", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "b0912dca-afb1-4e0b-9d81-012904b5182d", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-09-15", + "publicationName": "Court of Criminal Appeals Release List - September 15, 2023", + "publicationNote": "Decisions Announced on Friday, September 15, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-15T14:00:00.000+00:00", + "publicationDate": "2023-09-15T15:15:03.343+00:00", + "publicationItems": [ + { + "publicationItemUUID": "6CA3470F-7799-4ECD-BC2A-EE4CEB7E7B18", + "docketEntryUUID": "2EA742B8-5D6D-425A-9CFC-76B842245FFF", + "caseInstanceUUID": "5096B39B-0B52-4B6D-A279-B9F3879A2AA2", + "caseNumber": "CR-210422", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Stephanie Nicole Keller v. State of Alabama (Appeal from Jefferson Circuit Court: CC-19-3684)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 1 + }, + { + "publicationItemUUID": "AF2D724E-88F0-4BC2-8940-F5597B4A832A", + "docketEntryUUID": "CAAB56D1-C720-474A-B6E7-BB14A4454FA1", + "caseInstanceUUID": "6F24689F-48AA-43BC-B172-BE43CE671477", + "caseNumber": "CR-2022-1107", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Robert Noel Potts v. State of Alabama (Appeal from Colbert Circuit Court: CC-19-136)", + "decision": "Decision - Dismissed by Memorandum on Return to Remand", + "orderBy": 1 + }, + { + "publicationItemUUID": "D2E4AA91-6351-4CC0-9B30-FBA0982D5B2E", + "docketEntryUUID": "C9DB0F2A-047C-4C20-A35A-B497B3AB7A67", + "caseInstanceUUID": "A73E904F-1D8B-481F-ADAF-C32D54DE2BB2", + "caseNumber": "CR-210347", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Brett Lee Williams v. State of Alabama (Appeal from Morgan Circuit Court: CC-17-531)", + "decision": "Decision - Affirmed by Memorandum on Return to Second Remand", + "orderBy": 1 + }, + { + "publicationItemUUID": "6FA16A8F-F75E-4557-9853-E5E716AC612B", + "docketEntryUUID": "B716AB33-F107-47DD-B83D-062151C047D0", + "caseInstanceUUID": "4E09171C-E9F3-4466-881E-D780233B8E4F", + "caseNumber": "CR-2022-1386", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Sherman Travaris Lucas v. State of Alabama (Appeal from Lowndes Circuit Court: CC-21-25 and CC-21-26)", + "decision": "Decision - Affirmed by Memorandum on Return to Remand", + "orderBy": 1 + }, + { + "publicationItemUUID": "F4A7FFC6-C79E-4D8B-A947-B1A3A87872CC", + "docketEntryUUID": "A01EF865-06D5-4D30-A9C3-71E87C567464", + "caseInstanceUUID": "097A3F29-50EE-4D8B-BAF4-D6F0AA708CF0", + "caseNumber": "CR-210390", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Clifford Stutson v. State of Alabama. (Appeal from Jefferson Circuit Court: CC-19-651, CC-19-652, and CC-19-653).", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 1 + }, + { + "publicationItemUUID": "F73C6C05-D0D1-4853-9309-2B4F0E99DF9F", + "docketEntryUUID": "1D4B98D8-B4D4-4F03-A279-79A06FCC4989", + "caseInstanceUUID": "1162A401-AC60-4185-92EC-95C910353BA5", + "caseNumber": "CR-180060", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Derrick Dearman v. State of Alabama. (Appeal from Mobile Circuit Court: CC-17-1628, CC-17-1629, CC-17-1630, CC-17-1631, and CC-17-1632).", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "0ACBE9EC-81EA-4EB6-B9DD-1E14666AFCAD", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "58798862-19D7-433B-9802-B222D36ECAF4", + "docketEntryUUID": "94C8BF11-01EF-40D8-B3C4-AE95DE914458", + "caseInstanceUUID": "661B33C1-7984-4C0B-B263-34A316FF8BAB", + "caseNumber": "CR-200676", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Davarius Vanquez McGee v. State of Alabama. (Appeal from Jefferson Circuit Court: CC-15-2883).", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "5B1ED3A4-0DA1-4D86-8E9A-8CE14C6D130F", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "6C138A84-9023-4E73-930C-7CC469532535", + "docketEntryUUID": "C3B06BCD-3B1B-45EB-A6FA-3CE49E371BA6", + "caseInstanceUUID": "A9B6CE0D-5E62-4C6F-9BA1-73DBD1EB842B", + "caseNumber": "CR-2023-0082", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Damion Joseph Bruno v. State of Alabama (Appeal from Elmore Circuit Court: CC-19-941.60)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 2 + }, + { + "publicationItemUUID": "4E5BBE4C-F635-4767-A7BF-11CD76EAE4EB", + "docketEntryUUID": "959B72DC-30B4-4951-80A6-B80575AF2ADD", + "caseInstanceUUID": "DEF1A3F2-BE6B-41D0-8F98-10462F3AEBCC", + "caseNumber": "CR-2022-0807", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Mr. Michael Shane Fletcher v. State of Alabama (Appeal from Mobile Circuit Court: CC-19-4306).", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 2 + }, + { + "publicationItemUUID": "333550E3-5639-4715-A1A6-E7BE0F490ECC", + "docketEntryUUID": "C38F7A32-DB5B-40A9-A30C-D6FB591502E4", + "caseInstanceUUID": "9E1EBA51-FB61-4E35-AE2F-9BF3B3926710", + "caseNumber": "CR-210461", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Terry Nunley v. State of Alabama (Appeal from Jackson Circuit Court: CC-21-230)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 2 + }, + { + "publicationItemUUID": "1701ED69-2EBA-401D-A28D-A85DE00E54F2", + "docketEntryUUID": "29A8E602-6C40-4FF4-9E33-B623367A1932", + "caseInstanceUUID": "4587B18F-C61E-4545-B8D5-92641A988F96", + "caseNumber": "CR-2022-0587", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Robert Sydrious Thornton v. State of Alabama (Appeal from Etowah Circuit Court: CC-16-386 and CC-21-1234)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 2 + }, + { + "publicationItemUUID": "8638DEA4-51C2-4A8C-9E0E-E56FBD41FED1", + "docketEntryUUID": "4F960F71-3555-4FEC-8967-D276A08B8C2E", + "caseInstanceUUID": "A31A3051-C3A9-4F3C-8C1C-F7A8D976F7D9", + "caseNumber": "CR-2023-0062", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "David Eugene Files v. State of Alabama (Appeal from Walker Circuit Court: CC-02-289.63)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 2 + }, + { + "publicationItemUUID": "D4CFFB0D-B6AD-4A6A-97E0-76B0560B78C7", + "docketEntryUUID": "6AFDA0E6-AA09-4D59-A773-86D3AECBBB53", + "caseInstanceUUID": "B00EAA1E-1CDA-4C50-B7D5-74F73073B46A", + "caseNumber": "CR-2023-0065", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Rodney Finklea v. State of Alabama (Appeal from Mobile Circuit Court: CC-21-659)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 3 + }, + { + "publicationItemUUID": "423ADD14-BE47-48E7-91C0-D9110B3D96E3", + "docketEntryUUID": "AB66947C-35BF-4617-9CD3-FAD99B6A2856", + "caseInstanceUUID": "ED6FFFA0-40A3-4638-B8E6-A4C7A202358E", + "caseNumber": "CR-2022-1204", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Matthew Sherman Phillips v. Governor Kay Ivey and Alabama Department of Corrections (Appeal from Morgan Circuit Court: CV-21-28)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 3 + }, + { + "publicationItemUUID": "DB909A42-90E1-40A4-B2E9-914E7FCD1D59", + "docketEntryUUID": "FF1FD8D5-041E-4FF9-B64A-DA6FF7F8B352", + "caseInstanceUUID": "E55AEF9E-6819-4AEE-84A8-417AA29CD9FD", + "caseNumber": "CR-210478", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Devane Twon Reynolds v. State of Alabama (Appeal from Houston Circuit Court: CC-09-318.62)", + "decision": "Decision - Affirmed by Memorandum on Return to Second Remand", + "orderBy": 3 + }, + { + "publicationItemUUID": "5289BEF0-A991-46F2-90AB-B5B980FD2DB5", + "docketEntryUUID": "00B31B2B-E817-463E-B818-99307C97A063", + "caseInstanceUUID": "E5462C95-7E33-4888-8ACB-528DDF2FCD89", + "caseNumber": "CR-2023-0121", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Jamarcus Marquis Mahone v. State of Alabama (Appeal from Mobile Circuit Court: CC-16-6810.60)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 3 + }, + { + "publicationItemUUID": "4D7999BF-06B4-4E95-B300-ED04323E8AC6", + "docketEntryUUID": "2D4BB753-AE1E-4CA3-9EDA-CAE4141A50D1", + "caseInstanceUUID": "2C9DF634-CB70-4AA3-8584-7A7D573BF1CF", + "caseNumber": "CR-2022-0924", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Kijuan Cortez Flowers v. State of Alabama (Appeal from Montgomery Circuit Court: CC-18-2000)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 3 + }, + { + "publicationItemUUID": "28D9F6DB-0C60-4B5B-8478-500545E34B31", + "docketEntryUUID": "F70EBBE6-3AB8-4BDE-B064-9448316F35FC", + "caseInstanceUUID": "D033D7BC-19E0-4D05-9EBF-EC9E06EA2B55", + "caseNumber": "CR-210314", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Andrae Quavion Norvel, Jr. v. State of Alabama (Appeal from Madison Circuit Court: CC-18-5139)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "4F41431E-DB50-40A1-93F5-396304634E8C", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "99C2B800-9DDF-47DB-908A-94CF4F8CED9D", + "docketEntryUUID": "B41EADDC-1224-4441-AAC2-4044CCE22951", + "caseInstanceUUID": "8F8A2CCB-82AE-427E-B654-9AD2E8AAFB84", + "caseNumber": "CR-2023-0144", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "J.E.W. v. State of Alabama (Appeal from Baldwin Circuit Court: CC-15-65.61)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 4 + }, + { + "publicationItemUUID": "5DA3B7FB-EBAF-4A0B-A1F9-CE2D40DF0C7B", + "docketEntryUUID": "70E44A94-AC1D-47E9-AFCA-E44F666849AB", + "caseInstanceUUID": "60948BD9-5FD4-4312-B595-F90C470B3ABA", + "caseNumber": "CR-2022-0614", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Steven Russell Caldwell, Jr. v. State of Alabama (Appeal from Barbour Circuit Court: CC-18-61)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "B08F3F39-4DA4-4485-B187-8A42D9CFEFBB", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "CC40BD3A-4477-4E6A-AD32-7C05FAE92653", + "docketEntryUUID": "6973B8E8-C173-4E03-A9FF-8B53C37337DE", + "caseInstanceUUID": "C7B0423A-2FEF-496C-8BB0-56BDE0717AEE", + "caseNumber": "CR-2022-0579", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Robert Cook III v. State of Alabama (Appeal from Russell Circuit Court: CC-19-1058 and CC-19-1059)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 4 + }, + { + "publicationItemUUID": "8D3143DA-1AC5-410B-A92E-B3646AF505E3", + "docketEntryUUID": "ACA7BD5F-0AFB-495F-97F2-2805B492A501", + "caseInstanceUUID": "018257E0-8B51-4069-A82F-98EE8248AF1B", + "caseNumber": "CR-2022-1151", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "John Howard McLemore v. State of Alabama (Appeal from Madison Circuit Court: CC-20-2164)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 4 + }, + { + "publicationItemUUID": "8F14C208-3AA5-4150-AA61-A16ECBF1CC5C", + "docketEntryUUID": "3EEC1B52-14EC-441B-9C06-66B1C9A8A982", + "caseInstanceUUID": "8183BBC0-9085-4480-A1FE-01D55C886610", + "caseNumber": "CR-2023-0145", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Jonathan Craig Thomas v. State of Alabama (Appeal from Morgan Circuit Court: CC-17-753.60).", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 4 + }, + { + "publicationItemUUID": "B5ACA632-F4A7-49C0-84F6-B8B12D12E3C3", + "docketEntryUUID": "68EA1409-A2CB-4B04-BCEA-E30DAEDE75E6", + "caseInstanceUUID": "2DFABCAD-704F-4FBA-9AF8-5AFC5423C3EA", + "caseNumber": "CR-2023-0090", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Daniel Kenneth Stella v. City of Summerdale (Appeal from Baldwin Circuit Court: CC-22-744)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 4 + }, + { + "publicationItemUUID": "9A8A9577-25FD-4C49-A3FA-C97A5D313E44", + "docketEntryUUID": "FAB36D9E-B224-490F-97A0-CD6D5A520D06", + "caseInstanceUUID": "8ACA1635-F02A-4E1B-8468-F5C01F173D67", + "caseNumber": "CR-2023-0148", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "James William Bailey IV v. State of Alabama (Appeal from Henry Circuit Court: CC-05-378.63)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 5 + }, + { + "publicationItemUUID": "FBB61150-5304-435C-9C56-4A619C70587F", + "docketEntryUUID": "79911182-2DD1-4769-A627-6D81C48B2CC9", + "caseInstanceUUID": "CE0FDFCA-FDE4-4762-91CF-1270E3576C9B", + "caseNumber": "CR-2023-0216", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "George Clifford Oliver v. State of Alabama (Appeal from Lee Circuit Court: CC-22-1063)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 5 + }, + { + "publicationItemUUID": "19D52EE5-EB9A-4203-91E8-80898559B5E3", + "docketEntryUUID": "512AA542-1750-4270-92CE-EE80C8567EDA", + "caseInstanceUUID": "946CF1B8-F92B-496B-A92F-A9065F69C9E9", + "caseNumber": "CR-2022-1355", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Jessie James Sharp v. State of Alabama (Appeal from Montgomery Circuit Court: CC-07-938.63)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 5 + }, + { + "publicationItemUUID": "AE923D61-8B21-4606-BB3D-8388F5DEC7A4", + "docketEntryUUID": "4CA35D07-3C10-4C24-A7DF-9D0777DB5943", + "caseInstanceUUID": "1FA9E62C-2E7B-49C8-8242-9230AF0AFE58", + "caseNumber": "CR-2022-0588", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Derrill Richard Ennis v. State of Alabama (Appeal from Lee Circuit Court: CC-18-726)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 5 + }, + { + "publicationItemUUID": "290230A4-2592-448C-B7AD-6EC5E8CFF66C", + "docketEntryUUID": "B348D8F3-0A0E-4E42-9C4F-DC1C0C9DBC78", + "caseInstanceUUID": "82FA5280-864D-499C-9A58-16877B45CB12", + "caseNumber": "CR-2022-0719", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Charles Bryant Hughes, Jr. v. State of Alabama (Appeal from Elmore Circuit Court: CC-17-5.61)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "9307F715-6637-4E90-9F8C-54D2561EEA73", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "3E1A6083-78B4-464B-BAC3-F3B6574B064A", + "docketEntryUUID": "6075B3E3-065C-4E29-9A29-38887044E560", + "caseInstanceUUID": "9C87CD57-0152-483F-B859-254D5DE7DE58", + "caseNumber": "CR-2022-0791", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Jon Braden Still v. State of Alabama (Appeal from Escambia Circuit Court: CC-14-258.74)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "EB842BB8-7BB9-492A-AA0D-F92E1FBC2B52", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "0EAF1A39-5386-4DFF-A19C-CCFF6EAAEC66", + "docketEntryUUID": "1070B9F1-55C1-4D68-901D-5760D0B360C9", + "caseInstanceUUID": "9EF015F2-6C7A-46F6-B09A-1223DB660537", + "caseNumber": "CR-2023-0241", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Paris Markee Jennings v. State of Alabama (Appeal from Madison Circuit Court: CC-22-2599)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 6 + }, + { + "publicationItemUUID": "57A01382-6146-4567-85C6-A35BE86F7A53", + "docketEntryUUID": "0F7CCA45-76AF-4B44-A9B6-E102F56E80FF", + "caseInstanceUUID": "DBB99E3F-7C88-4B2B-9E25-63EF2C82608B", + "caseNumber": "CR-2023-0007", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Carlos Antonio Catlin v. State of Alabama (Appeal from Mobile Circuit Court: CC-18-428.70)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 6 + }, + { + "publicationItemUUID": "F04A73EE-FD2C-47AC-88FE-C727780F940F", + "docketEntryUUID": "90F38905-5360-4DDB-B4FC-773FDC5308AA", + "caseInstanceUUID": "95C2FBAE-D251-43CC-AA36-561ED3D2CC43", + "caseNumber": "CR-2022-0661", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Charles Jacob Jordan v. State of Alabama (Appeal from Lauderdale Circuit Court: CC-18-731)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 6 + }, + { + "publicationItemUUID": "1E35AE96-0F70-423E-A92A-9966ED0DC316", + "docketEntryUUID": "3FBDA0D3-6E04-4252-9AC7-9FE40D0E5405", + "caseInstanceUUID": "9BA95E11-F0AE-4F44-80F3-3030174580BE", + "caseNumber": "CR-2023-0164", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Quan Xu v. State of Alabama (Appeal from St. Clair Circuit Court; CC-22-111)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 6 + }, + { + "publicationItemUUID": "68F4D786-71C6-434A-BD13-E6416E04E152", + "docketEntryUUID": "60CEB71D-BF3A-497C-B4F7-F119595A437E", + "caseInstanceUUID": "BCCA9764-452B-4FAA-9770-7C9FB8546409", + "caseNumber": "CR-2023-0226", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "James Gregory Sears v. State of Alabama (Appeal from Macon Circuit Court: CC-05-31.62)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 7 + }, + { + "publicationItemUUID": "363816BD-31E4-49CE-9FB3-3E95F17ECF0F", + "docketEntryUUID": "448E3FA2-EBC9-4A47-87C2-CF8979829770", + "caseInstanceUUID": "15A124CD-68E6-477C-A521-15C311DC9AB2", + "caseNumber": "CR-2022-0679", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "T.R.C. v. State of Alabama (Appeal from Mobile Circuit Court: CC-19-2584 and CC-21-2409)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 7 + }, + { + "publicationItemUUID": "1186FEA1-45EB-4B6E-9CF3-F3C9328B381D", + "docketEntryUUID": "DC193600-CBF7-4E8B-8C09-697E1B5AA0F6", + "caseInstanceUUID": "B31F625D-D9AB-48AC-8321-05156E65B239", + "caseNumber": "CR-2023-0057", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Daron Mikle v. State of Alabama (Appeal from Madison Circuit Court: CV-2022-901311)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 7 + }, + { + "publicationItemUUID": "50AA470A-0221-4FFC-8E92-2CC24476A758", + "docketEntryUUID": "B4759154-CDF2-4783-8837-5DBBF7BE4C2E", + "caseInstanceUUID": "9938FB4F-413B-4B60-8E00-B410CEDD6ED3", + "caseNumber": "CR-2023-0265", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Micah Wesley Jenkins v. State of Alabama (Appeal from Jefferson Circuit Court, Bessemer Division: CC-19-758, CC-19-759, and CC-19-760)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 7 + }, + { + "publicationItemUUID": "10570005-C964-479A-BF14-C8B1EF8CEF3A", + "docketEntryUUID": "836476D9-1D97-4F5C-96E6-5921BDC258C3", + "caseInstanceUUID": "EF89CAEB-EFAC-40BF-A3F8-7BE81E306F64", + "caseNumber": "CR-2022-1081", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Raheem Janair Carswell v. State of Alabama (Appeal from Covington Circuit Court: CC-22-29.70)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "428DDF77-4966-4689-B5A9-64F52CD6B9A6", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "6D052165-5AE9-427E-9524-034E72269794", + "docketEntryUUID": "00B37438-7980-4256-B89D-9E6C4430B1A4", + "caseInstanceUUID": "953B3EF8-2A12-498B-AC7F-7444FA55774A", + "caseNumber": "CR-2023-0093", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Nyesha Renee Brownlee v. State of Alabama (Appeal from Lee Circuit Court: CC-21-696)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 8 + }, + { + "publicationItemUUID": "4AE603BB-F418-4405-B12E-52FB041D00B7", + "docketEntryUUID": "4C190289-480A-44F3-B7E1-5C7D65AD1B5F", + "caseInstanceUUID": "E88902FB-A67A-4679-B338-A93EA9F5D4BB", + "caseNumber": "CR-2023-0344", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Markel Jason McDaniel v. Alabama Board of Pardons & Paroles and Alabama Department of Corrections (Appeal from Montgomery Circuit Court: CV-2022-901140)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 8 + }, + { + "publicationItemUUID": "8BA80C76-3356-4713-80B5-112E32AE4C44", + "docketEntryUUID": "51CC6147-EC15-4897-A300-E0A30C3E6E7B", + "caseInstanceUUID": "C8064251-6E62-46D8-A6AE-8F545B03C8C7", + "caseNumber": "CR-2023-0269", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Kimberly Renee Madden v. State of Alabama (Appeal from Escambia Circuit Court: CC-13-300.71, CC-13-301.71, and CC-13-167.71)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 8 + }, + { + "publicationItemUUID": "A8E72F2F-B327-4EBD-953A-285BDAC5DD18", + "docketEntryUUID": "55D13002-BC2A-415B-A38F-EAFBA399B59E", + "caseInstanceUUID": "9BEBBFF1-7388-46C6-A094-D56E41738F4E", + "caseNumber": "CR-2022-1068", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Forrest Neil White v. State of Alabama (Appeal from Baldwin District Court: TR-22-122)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 8 + }, + { + "publicationItemUUID": "D9DE395E-30D5-4D85-9743-E3C7CC2AF1A0", + "docketEntryUUID": "79D9B77F-D000-4011-B76B-FE5E4C873440", + "caseInstanceUUID": "F7057CE3-F681-4370-8AB4-2581EADE95FF", + "caseNumber": "CR-2023-0300", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Kristopher Justin Kirk v. City of Anniston (Appeal from Calhoun Circuit Court: CC-11-1140 and CC-11-1141)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 9 + }, + { + "publicationItemUUID": "F016E1CF-BF84-40FE-89A2-E9CB92B609B2", + "docketEntryUUID": "14E4152D-F636-4A9D-AD7A-5D71DD7DE275", + "caseInstanceUUID": "A9F6A96B-B7CD-421F-91FA-8CEA1AF070D0", + "caseNumber": "CR-2023-0131", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Gregory Dewayne Woodson v. Alabama Department of Corrections (Appeal from Montgomery Circuit Court: CV-22-900849)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 9 + }, + { + "publicationItemUUID": "54911093-DDA2-4F2A-8E5F-46B17AF1D23E", + "docketEntryUUID": "62AA977A-5A12-4551-9C76-765E4E7E566A", + "caseInstanceUUID": "16621410-1AC8-4739-AC77-43585D1E33F0", + "caseNumber": "CR-2022-1118", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Carl Evans Davis v. State of Alabama (Appeal from Green Circuit Court: CC-18-23.60)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 9 + }, + { + "publicationItemUUID": "79ECB607-63A1-417F-9398-74752CC36C8A", + "docketEntryUUID": "F03388F5-93FA-4BFC-9CDF-882389686063", + "caseInstanceUUID": "26A69CA6-16F5-44B6-B661-181DEC90A242", + "caseNumber": "CR-2023-0140", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Thomas Michael Watson v. State of Alabama (Appeal from Madison Circuit Court: CC-19-3427.60)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 10 + }, + { + "publicationItemUUID": "260581BC-492D-4A42-8906-609E85D236EE", + "docketEntryUUID": "A3B3E584-F5F7-4E03-AD46-131AE3D8A042", + "caseInstanceUUID": "5E103E52-AA71-4A39-A6B4-4863BD3A0CC9", + "caseNumber": "CR-2022-1158", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Vaughn Alexander Cropper v. State of Alabama (Appeal from Shelby District Court: DC-08-3747)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 10 + }, + { + "publicationItemUUID": "3BB8D6A6-6C19-44E8-88DA-1BAABE428FC0", + "docketEntryUUID": "592F1889-8A0E-4A06-9A89-7BAEACC167FA", + "caseInstanceUUID": "9484AF3B-6576-426F-8025-526E8FB46FAB", + "caseNumber": "CR-2022-1177", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Donald Ray Harvey v. Alabama Board of Pardons and Paroles (Appeal from Montgomery Circuit Court: CV-22-900733)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 11 + }, + { + "publicationItemUUID": "6251969D-D4FB-4338-B1E1-A705E9085484", + "docketEntryUUID": "9B74E262-7B47-4BF5-83AF-E500E3D950E0", + "caseInstanceUUID": "0F7C6602-6A00-45C0-B293-26912EDD2583", + "caseNumber": "CR-2023-0147", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "DeAngelo Terrell Smith v. State of Alabama (Appeal from Mobile Circuit Court: CC-14-1368.61 and CC-14-3770.61)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 11 + }, + { + "publicationItemUUID": "4FFB1023-797B-4BC9-89C3-18B95C24F85C", + "docketEntryUUID": "F2823709-FE98-43CB-B0DA-7A224F78EFE7", + "caseInstanceUUID": "DABB4841-035E-4085-AE04-2742E885A728", + "caseNumber": "CR-2023-0223", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Willie Kevin Williams v. Alabama Board of Pardons & Paroles (Appeal from Montgomery Circuit Court CV-2022-901101.00)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 12 + }, + { + "publicationItemUUID": "6955EBA7-9B0C-4ACA-B8B7-CEB2883F905C", + "docketEntryUUID": "300D53A8-DEAC-4335-B19E-2BF9B76C120F", + "caseInstanceUUID": "F688B2A1-6C0D-49EE-88C9-66A958641D13", + "caseNumber": "CR-2022-1195", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Tony Tyrone Sheppard v. State of Alabama (Appeal from Jefferson Circuit Court: CC-22-1119).", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 12 + }, + { + "publicationItemUUID": "D1BF9C62-D849-4CE2-A9BD-5A840C3941BC", + "docketEntryUUID": "9E9A89CC-7B90-4765-A602-6D6520EDAF47", + "caseInstanceUUID": "ADA94D5C-1821-4A98-A611-24FA9C8C7648", + "caseNumber": "CR-2023-0020", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Quishawn Jerry Coleman v. State of Alabama (Appeal from Houston Circuit Court: CC-21-2055, CC-21-2056, CC-21-2057, CC-21-2058, CC-21-2059, CC-21-2060, CC-21-2061, CC-21-2062, CC-21-2063, CC-21-2064, CC-21-2065, CC-21-2066, and CC-21-2067)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 13 + }, + { + "publicationItemUUID": "F9B3CED5-EDB8-4F23-B7F8-C8462989282B", + "docketEntryUUID": "EF2501D7-B947-4BA1-889B-CC9E34E028C4", + "caseInstanceUUID": "A4584C81-3858-43AA-BA7E-22733F9791F5", + "caseNumber": "CR-2023-0258", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Rushing Roy Hutchinson v. State of Alabama (Appeal from Covington Circuit Court: CC-2021-105.71, CC-2021-107.71, and CC-2022-100.70)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 13 + }, + { + "publicationItemUUID": "12FCB3B1-2C52-4F6F-962A-02AFE9D5DC7E", + "docketEntryUUID": "5D5CF32C-4F92-49C4-9368-4A901A3600B6", + "caseInstanceUUID": "8AE07497-9172-4978-AD1D-69E087C533B8", + "caseNumber": "CR-2023-0317", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Tawantae Omonz Walker v. State of Alabama (Appeal from Lee Circuit Court: CC-18-619.70)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 14 + } + ] + }, + { + "publicationUUID": "482375a6-b0ea-4c3c-8e47-27d4e605e87b", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-09-08", + "publicationName": "Court of Criminal Appeals Release List - September 8, 2023", + "publicationNote": "Decisions Announced on Friday, September 8, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-08T14:00:00.000+00:00", + "publicationDate": "2023-09-08T14:10:45.424+00:00", + "publicationItems": [ + { + "publicationItemUUID": "6DC75C56-A82C-40FD-AE52-D2CE9E04A907", + "docketEntryUUID": "69CD418F-F349-4DF9-BEBC-B4E3CF722923", + "caseInstanceUUID": "E1F14A0B-6C79-412B-A38D-0C23C05210F0", + "caseNumber": "CR-2022-0969", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Clavon Williams v. Alabama Board of Pardons and Paroles (Appeal from Montgomery Circuit Court: CV-22-49)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "36C58583-C806-4753-BFA0-E7760662B75D", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "BD586F5A-B7B1-4735-A4B6-D9B4C5ECAA7C", + "docketEntryUUID": "220D863F-2A7C-47B3-844B-3802DFF436B4", + "caseInstanceUUID": "9D7F3C21-2A29-4CA4-A1D1-02A5DC1A20D9", + "caseNumber": "CR-2022-1161", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Eduardo Alexander Cuz-Hor v. State of Alabama (Appeal from Houston Circuit Court: CC-21-1599 and CC-21-1600)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "728B086F-7E0E-4131-816B-3E092B748DFC", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "67C36E07-5E7D-4F10-B164-30F2701774AE", + "docketEntryUUID": "830DF5B9-0DA0-4A78-9F18-02F6DE72F35C", + "caseInstanceUUID": "55305228-D232-4254-8206-D8CEA7AE1DC8", + "caseNumber": "CR-2022-1312", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "William Richard Williams v. State of Alabama (Appeal from Mobile Circuit Court: CC-21-2219, CC-21-3092, and CC-21-3093)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "2DC61782-E201-4273-9A03-75FCD2FAEAB8", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "DFC5F528-0F45-40AC-9E41-FACB0797785D", + "docketEntryUUID": "62F2D846-61F1-4B6B-A630-9C3A72AAC5F0", + "caseInstanceUUID": "751CBA22-F331-4296-8FC3-2FFD6BF8F3E8", + "caseNumber": "CR-2022-1354", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Joshua Dwayne Ammons v. State of Alabama (Appeal from Tallapoosa Circuit Court: CC-19-77)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "33981CAB-2307-4072-B459-3CFFF95DCFA8", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "799E3A5D-7B54-4B41-A08D-6F3A5028F836", + "docketEntryUUID": "EA9B7631-F5C2-4413-B752-F8B36ED9B54B", + "caseInstanceUUID": "06733DC3-AAC3-478A-9E52-CA03235F40AE", + "caseNumber": "CR-2023-0092", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Timothy Bryan Standfield v. State of Alabama (Appeal from Lauderdale Circuit Court: CC-15-535.62)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "24E3F346-F057-48E5-B1FF-05EACFC27297", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "1D06C888-B0DD-4F97-A698-070618F3346E", + "docketEntryUUID": "4964F4DF-D1C0-4DB1-895A-105775BEA2CB", + "caseInstanceUUID": "55B7407E-0F32-4FDF-959E-2D31AE32968D", + "caseNumber": "CR-2023-0215", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Mitchell Bernard Johnson v. State of Alabama (Appeal from Pike Circuit Court: CC-11-174.62 and CC-11-175.62)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "1E85718B-20C7-4270-8EFB-0B217971D7F0", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "763cd128-609b-4205-b0c4-6cac1b70bd49", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-09-01", + "publicationName": "Court of Criminal Appeals Release List - September 1, 2023", + "publicationNote": "Decisions Announced on Friday, September 1, 2023", + "groupFlag": true, + "scheduledDate": "2023-09-01T14:00:00.000+00:00", + "publicationDate": "2023-09-01T14:42:49.540+00:00", + "publicationItems": [ + { + "publicationItemUUID": "27B4DC82-7759-4451-853E-A683F0FD7F7D", + "docketEntryUUID": "3A698B53-3D9A-41E2-AAE4-883BE9C91235", + "caseInstanceUUID": "38C8B398-C3B2-419D-8499-4A42365592DE", + "caseNumber": "CR-210433", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Lonnie Harold Newsome v. State of Alabama (Appeal from Cherokee Circuit Court: CC-21-135 and CC-21-136).", + "decision": "Application for Rehearing Overruled", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "7D9ADF14-2445-4170-AB12-4362C62E2E99", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "6E9214C1-4964-4A4C-8291-117269E0BB6F", + "docketEntryUUID": "2C6C67BC-35DD-41B3-A06B-089E429E7B08", + "caseInstanceUUID": "779214B4-DDFD-499B-8B51-661453C54FDA", + "caseNumber": "CR-2022-0528", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Alvontae Devecio Morgan v. State of Alabama (Appeal from Madison Circuit Court: CC-18-3827.70).", + "decision": "Application for Rehearing Overruled", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "711721B1-FEDA-4AF2-8BE9-C44E494F15D0", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "BAB122EB-4425-4F16-BDA6-090C5BBFB078", + "docketEntryUUID": "0E6E153E-40C3-4DA7-843C-7E43DA5B730D", + "caseInstanceUUID": "5338318B-CA37-4FFD-8C2D-0CD81DC20C22", + "caseNumber": "CR-2022-0753", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Rodrecius Kenyon Ford v. State of Alabama (Appeal from Lee Circuit Court: CC-19-926)", + "decision": "Application for Rehearing Overruled", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "70FBA75F-9F41-4DD0-8739-D0CFFC322117", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "F445953F-B4CF-4BA0-ACA3-AE39860BB8CD", + "docketEntryUUID": "BD7E421F-A0AE-4DB7-A15C-CC7B0A804647", + "caseInstanceUUID": "C278E3D5-A9F5-48C4-A010-4E6571488905", + "caseNumber": "CR-2022-0830", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Trenton Davis Thornton v. State of Alabama (Appeal from Mobile Circuit Court: CC-20-2603)", + "decision": "Application for Rehearing Overruled", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "98F14620-EACA-420B-9A72-7D3D06062EA7", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "CAA6FC2C-EE60-453E-9BB4-F54B5098D473", + "docketEntryUUID": "CAD032E9-9E0B-4C41-8A4B-7CA2BFC8D79F", + "caseInstanceUUID": "93637861-6AD4-4F25-A43E-EAE61F8C336D", + "caseNumber": "CR-2022-0962", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Jermaine Curtis Boswell v. State of Alabama (Appeal from Bessemer Division, Jefferson Circuit Court: CC-18-657 and CC-18-658)", + "decision": "Application for Rehearing Overruled", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "34AD0FC5-88CF-488E-9731-974081DE449B", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "ACCBE5CF-9575-46D7-96A8-4634711C6C94", + "docketEntryUUID": "71EBA341-3902-4FA8-8E99-A2DD0BFC3531", + "caseInstanceUUID": "885B8EA4-F5FB-47D1-98ED-A201DEA3839E", + "caseNumber": "CR-2022-1009", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Gregory Dwayne Sanders v. State of Alabama (Appeal from Madison Circuit Court: CC-14-5301.71)", + "decision": "Application for Rehearing Overruled", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "B0AD0624-508C-4A40-BD49-60DACF685406", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "F093768A-CBB7-48A7-86DE-AC500C0D34C8", + "docketEntryUUID": "C0AB5F76-EDBF-4E6C-B8AC-8C5288DB780E", + "caseInstanceUUID": "57F2D419-9E99-4ED3-A84D-B5B3D6618681", + "caseNumber": "CR-2022-1024", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Delvin Bernard Primm v. State of Alabama (Appeal from Mobile Circuit Court: CC-21-2629.71)", + "decision": "Application for Rehearing Overruled", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "4C16A1A9-F424-4EBE-A07C-BE942C0B4A3F", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "FE92C168-CA6F-44D5-AE35-911A56B11257", + "docketEntryUUID": "AF5A5919-EE6D-4943-ABF0-35F0AF20AE49", + "caseInstanceUUID": "2CA8E56E-F822-4AD3-A747-43BACB1B86C6", + "caseNumber": "CR-2022-1066", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "D.R.H. v. State of Alabama (Appeal from Lee Circuit Court: CC-21-868)", + "decision": "Application for Rehearing Overruled", + "orderBy": 8, + "documents": [ + { + "documentLinkUUID": "C57A6A4F-938B-458E-A84B-87491E7D79EB", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "7A64DD9F-26E7-435E-98ED-D7F21165C565", + "docketEntryUUID": "8473BCEA-D38B-4A05-872F-F67EBCE2B17F", + "caseInstanceUUID": "97D9B1E8-2E3B-4BC7-A809-C73285FCA4D6", + "caseNumber": "CR-2022-1147", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Shanon Facin v. State of Alabama (Appeal from Mobile Circuit Court: CC-19-4497.70 and CC-19-4498.70)", + "decision": "Application for Rehearing Overruled", + "orderBy": 9, + "documents": [ + { + "documentLinkUUID": "5A7E9A95-310D-4749-B772-B708D3E9CCEC", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "4C3B11B3-02B0-4FE8-A852-F9E35A17EC8D", + "docketEntryUUID": "7EB4F3F5-7E58-419D-9FB7-A085539DEA64", + "caseInstanceUUID": "87F0309A-DCCB-4BD1-B782-942DD6E52579", + "caseNumber": "CR-2022-1199", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Alexander Carnado Sanders v. State of Alabama (Appeal from Montgomery Circuit Court: CC-19-1118).", + "decision": "Application for Rehearing Overruled", + "orderBy": 10, + "documents": [ + { + "documentLinkUUID": "851B665C-CBF5-4E8D-BE20-44E2D59EA602", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "48D0AE92-AC8C-4D8B-AFAA-3584B2C9EAD6", + "docketEntryUUID": "7B1E25A5-665B-411D-8C67-99CE89ED1778", + "caseInstanceUUID": "6441E8F8-AC65-42C3-AECA-B25C084F2132", + "caseNumber": "CR-2022-1321", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Domanek Jackson v. State of Alabama (Appeal from Madison Circuit Court: CC-19-4169)", + "decision": "Application for Rehearing Overruled", + "orderBy": 11, + "documents": [ + { + "documentLinkUUID": "E7803C18-5A10-4483-86E1-CE768112047B", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "1A1BDB62-D282-478E-A804-941C3154A769", + "docketEntryUUID": "745C56BA-D665-4F0A-95D2-6600766A3407", + "caseInstanceUUID": "68C7FD40-CCC1-46DD-8A51-568070F74C78", + "caseNumber": "CR-2022-1361", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Veronica Wiggerfall v. State of Alabama (Appeal from Mobile Circuit Court: CC-18-5095)", + "decision": "Application for Rehearing Overruled", + "orderBy": 12, + "documents": [ + { + "documentLinkUUID": "E7B50088-5672-45C0-AF38-B5C97B9412CA", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "93E0D8E7-1F95-470D-92AB-B4E18CD04DD5", + "docketEntryUUID": "5D58A8FE-FBC1-4159-98B6-1A6907153E40", + "caseInstanceUUID": "9828508C-B12E-498B-8783-666699089924", + "caseNumber": "CR-2023-0230", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Jossie Cheyenne Bowen v. State of Alabama (Appeal from Marshall Circuit Court: CC-20-239.70)", + "decision": "Application for Rehearing Overruled", + "orderBy": 13, + "documents": [ + { + "documentLinkUUID": "7A42D218-BF44-4798-BF58-9196321F8E4C", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "5c23c3e7-d2ce-441e-a00b-ed9a0d5513de", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-08-25", + "publicationName": "Court of Criminal Appeals Release List - August 25, 2023", + "publicationNote": "Decisions Announced on Friday, August 25, 2023", + "groupFlag": true, + "scheduledDate": "2023-08-25T14:00:00.000+00:00", + "publicationDate": "2023-08-25T14:08:49.998+00:00", + "publicationItems": [ + { + "publicationItemUUID": "167D5B3C-9BAC-49F6-8813-C0C86634E3FC", + "docketEntryUUID": "F7D4F500-F038-4CE6-A065-30A4DE125744", + "caseInstanceUUID": "E86E352B-DF36-49A4-B4F7-1D1F17F4B48D", + "caseNumber": "CR-210400", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "LaForest Carmichael v. State of Alabama (Appeal from Calhoun Circuit Court: CC-16-2162.60, CC-16-2163.60, CC-16-2164.60, and CC-16-2165.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "3B33755D-D790-427F-AC3E-A7592B611A0C", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "2CAB19D8-5AE9-4FA5-A8E0-8833878D9ACE", + "docketEntryUUID": "257609E5-6D6B-489B-B1F9-92059D3748C0", + "caseInstanceUUID": "CD79B8CA-2367-4D15-9193-F1D25D6AE24A", + "caseNumber": "CR-2022-1268", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Xavier Tavaris Young v. State of Alabama (Appeal from Limestone Circuit Court: CC-19-136)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "354C4459-96F0-49D6-AF62-CC205326BEE5", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "6327E46F-2ACE-4684-9081-7AC933B40D0B", + "docketEntryUUID": "974D8604-18D8-45C7-8FD9-428DC110C536", + "caseInstanceUUID": "D7916D40-7219-4276-9B7D-27E86C7F716D", + "caseNumber": "CR-2023-0192", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Jesus Ceja v. State of Alabama (Appeal from Limestone Circuit Court: CC-18-534)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "B5B2E411-0915-4ECE-86CD-09B415AA9C3D", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "41fa0f14-d4c7-4c46-b13a-2b2be70094e5", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-08-18", + "publicationName": "Court of Criminal Appeals Release List - August 18, 2023", + "publicationNote": "Decisions Announced on Friday, August 18, 2023", + "groupFlag": true, + "scheduledDate": "2023-08-18T14:00:00.000+00:00", + "publicationDate": "2023-08-18T14:46:39.862+00:00", + "publicationItems": [ + { + "publicationItemUUID": "D8AF82C3-2822-43FF-8C4D-FAEF59A3A9C5", + "docketEntryUUID": "CB644B58-4876-416F-B559-4C3490596EE1", + "caseInstanceUUID": "22860F30-56D7-45E5-BC00-165C3A64443A", + "caseNumber": "CR-210283", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Michael Dale Iervolino v. State of Alabama (Appeal from St. Clair Circuit Court: CC-20-426)", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "E6756073-EC16-4AB2-AECA-5DF3A57256FB", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "E653F764-0CAB-443D-BEC5-777AE9AF413E", + "docketEntryUUID": "F0019619-1587-4D06-B6C8-CA6B904291A5", + "caseInstanceUUID": "87AEF3F0-D8A7-496A-BDEE-30F42AFCF4D5", + "caseNumber": "CR-210148", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Jerry Dwayne Bohannon v. State of Alabama (Appeal from Mobile Circuit Court: CC-11-2989.60)", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "E01932FF-20DB-4DE3-A12F-0A108CD81D2A", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "B1968080-418A-4FDE-9E5C-7BC4D9828ED1", + "docketEntryUUID": "A627B70D-27EB-459B-94CD-77F3A4DCA589", + "caseInstanceUUID": "A101CEA8-DA70-4589-A2C3-689429AA0BE9", + "caseNumber": "CR-200654", + "groupName": "Judge Minor", + "groupOrderBy": 4, + "title": "Evan Miller v. State of Alabama (Appeal from Lawrence Circuit Court: CC-06-68)", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "4B951E51-491F-495E-81F5-5E0FA567435E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "6812FFA6-407E-46BD-9552-AA89B87C0102", + "docketEntryUUID": "28AF5353-98C4-440F-A1FD-63F0D9CFA802", + "caseInstanceUUID": "530173F0-9402-44E0-9A55-0EA6E9847A26", + "caseNumber": "CR-200537", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Peter Capote v. State of Alabama (Appeal from Colbert Circuit Court: CC-16-340.60)", + "decision": "Application for Rehearing Overruled; Opinion of May 5, 2023, Withdrawn; Opinion Substituted; Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "7DA0CDEB-00DA-49FA-A036-BDF35978BB21", + "documentName": "Substituted Decision" + } + ] + }, + { + "publicationItemUUID": "B21FECE2-97BE-449D-9452-8BD50CAA0DBA", + "docketEntryUUID": "07DC407D-A0D6-432D-9B71-4E059EE33694", + "caseInstanceUUID": "E515793A-66F1-443D-82E8-BAA1ACDAAE4F", + "caseNumber": "CR-2023-0059", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Town of Brookside v. Brandon Stephen Newton (Appeal from Jefferson Circuit Court: CC-22-1839, CC-22-1840, and CC-22-1841)", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "D797EE7F-B6AF-439C-AC9E-7A0CF3492F96", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "210EC422-9470-43A3-BD4E-4851BCB38EBB", + "docketEntryUUID": "8CF73F33-5C75-45DE-84E5-56A4DAD5B16D", + "caseInstanceUUID": "00953134-102A-41B7-A981-711BE90BDAFD", + "caseNumber": "CR-210423", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Eric Lamont Harrison v. State of Alabama (Appeal from Jefferson Circuit Court: CC-19-471)", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "962569A5-9670-40D1-9A15-3531A831C148", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "D5B2928C-FB39-46F4-BD83-4EF7E248C9C8", + "docketEntryUUID": "D6543CF1-8CFD-4F68-BAA0-50221A0D78C3", + "caseInstanceUUID": "564EDEDB-ED07-4D26-B0B3-05449C7AB79F", + "caseNumber": "CR-210061", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Gordon Douglas Lawrence v. State of Alabama (Appeal from Covington Circuit Court: CC-19-113.73)", + "decision": "Application for Rehearing Overruled; Opinion of February 10, 2023, Withdrawn; Opinion Substituted; Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "7C9C04E6-6217-4F7C-9F50-1EE412EF9ED8", + "documentName": "Substituted Decision" + } + ] + }, + { + "publicationItemUUID": "04A7207B-ED58-4CE3-9E0F-B36019BF50B5", + "docketEntryUUID": "0CA1BF6E-B486-43BE-80AB-4D4AC8D3612F", + "caseInstanceUUID": "68B8FA3A-440A-47B9-90D6-DB95A42D97EB", + "caseNumber": "CR-2022-1121", + "groupName": "Judge Minor", + "groupOrderBy": 4, + "title": "State of Alabama v. Prentice D. Tanniehill (Appeal from Jefferson Circuit Court: CC-12-3126.60)", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "2BDD46BA-2F0C-48E2-A86E-4FA7EDF821C8", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "0C2BD2ED-B809-4E5C-ADA0-213E60A43EF2", + "docketEntryUUID": "072FF4C3-0D06-4E0B-9228-794DFC817961", + "caseInstanceUUID": "BA585BEE-DC69-41E0-9420-0D7B056DF663", + "caseNumber": "CR-2022-0789", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Nathan Dwayne Thomas v. State of Alabama (Appeal from Montgomery Circuit Court: CC-18-1330)", + "decision": "Decision - Affirmed.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "F0644F6A-18EF-4F5A-A2CD-A179597F7A3B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "16030224-951E-441F-8AF1-95087CFEB357", + "docketEntryUUID": "3698719B-2EAC-406B-A097-770F2AF2F255", + "caseInstanceUUID": "8DC10D06-1722-48B8-AE5C-FC20B4555637", + "caseNumber": "CR-2022-1003", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "State of Alabama v. Terrence Shaw (Appeal from Perry Circuit Court: CC-17-900013)", + "decision": "Decision - Dismissed in Part; Affirmed.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "1F552C37-81ED-4D90-B325-0A006FE9E28D", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "BA1324FB-B2D3-451E-8EE2-7FC8A847D049", + "docketEntryUUID": "CC5E3262-238B-4D02-98DE-BD4274645EFB", + "caseInstanceUUID": "7EE04B4D-18FF-4484-8472-F5C545A3406A", + "caseNumber": "CR-2023-0061", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Town of Brookside v. Leah Nicole Gengler (Appeal from Jefferson Circuit Court: CC-22-1842 and CC-22-1843)", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "22062512-59E3-48A0-BEB1-E25068F93162", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "44F28780-88A4-4044-8C12-AEA6FCFB8D9C", + "docketEntryUUID": "80FDC4A3-A3A5-4C5B-9A58-CF8C3BCAE8B7", + "caseInstanceUUID": "52ADC997-4E86-43DD-8948-7A1D2C67E497", + "caseNumber": "CR-2023-0287", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Antuan Deteiro Johnson v. State of Alabama (Appeal from Montgomery Circuit Court: CC-19-502.61)", + "decision": "Decision - Remanded with Instructions.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "83AE7DC8-E26B-4771-BB1B-D9D313D13148", + "documentName": "Decision" + } + ] + } + ] + }, + { + "publicationUUID": "5d5be999-106c-431c-86dd-6a4c6ca5c6ac", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-08-11", + "publicationName": "Court of Criminal Appeals Release List - August 11, 2023", + "publicationNote": "Decisions Announced on Friday, August 11, 2023", + "groupFlag": true, + "scheduledDate": "2023-08-11T14:00:00.000+00:00", + "publicationDate": "2023-08-11T17:24:15.589+00:00", + "publicationItems": [ + { + "publicationItemUUID": "FFCA43BE-9EC1-4D7C-A542-7515D791333B", + "docketEntryUUID": "4C7DE6C7-1EED-4784-88B6-D9CF41FB1AF9", + "caseInstanceUUID": "A7A6DA45-F570-4EF1-B901-5B9AC214685A", + "caseNumber": "CR-200359", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Terrance Devonte Cobb v. State of Alabama (Appeal from Elmore Circuit Court: CC-19-560)", + "decision": "Decision - Dismissed by Memorandum on Return to Second Remand.", + "orderBy": 1 + }, + { + "publicationItemUUID": "EA93023C-AC00-4BA4-A0AF-43662B0C4C56", + "docketEntryUUID": "63B2330E-C35F-4779-A258-895158A9394B", + "caseInstanceUUID": "BDFF8B72-502B-48BE-9FE0-6F29F9345794", + "caseNumber": "CR-2022-0914", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Terrance Rashaun Moore v. State of Alabama (Appeal from Lamar Circuit Court: CC-21-64)", + "decision": "Decision - Affirmed by Memorandum on Return to Remand.", + "orderBy": 1 + }, + { + "publicationItemUUID": "CCBD57F0-C4CD-44D2-9A16-216E2E007475", + "docketEntryUUID": "B5E95AEA-C9F6-4B19-9F6F-34C37D1D19DA", + "caseInstanceUUID": "D301CE6F-EA78-45ED-8EB3-B840D422A007", + "caseNumber": "CR-2022-0571", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Kenneth Alan Vandusen v. State of Alabama (Appeal from Randolph Circuit Court: CC-21-84)", + "decision": "Decision - Affirmed by Memorandum on Return to Remand.", + "orderBy": 1 + }, + { + "publicationItemUUID": "23AB64AC-E043-450B-B966-94210731FFEB", + "docketEntryUUID": "F68B8C7F-1A7A-461B-A4B5-C888E7F5B0B7", + "caseInstanceUUID": "8165274B-A988-4B45-A8EB-6F0BC1A53D31", + "caseNumber": "CR-2022-1185", + "groupName": "Per Curiam", + "groupOrderBy": 6, + "title": "Randy Wayne Edwards v. State of Alabama (Appeal from Madison Circuit Court: CC-18-1047.70 and CC-18-3781.70)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "85075374-684B-40AF-9FDC-8E4C67F51542", + "docketEntryUUID": "7A5BF93E-0272-46CC-BD1D-E4337357060F", + "caseInstanceUUID": "15B39AAC-FACE-4E90-BDAC-EF64BF38CFCA", + "caseNumber": "CR-200844", + "groupName": "On Rehearing", + "groupOrderBy": 7, + "title": "State of Alabama v. Kenyata Demetris Burton (Appeal from Calhoun Circuit Court: CC-15-1494)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "25C1DB36-C5E7-4E19-B28D-6D45507206AD", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "D37303FD-D543-4AAE-91F2-8CD6CC3EEEA8", + "docketEntryUUID": "F5A7968A-6F6A-4BA7-B898-8FF1357E6C1D", + "caseInstanceUUID": "5338318B-CA37-4FFD-8C2D-0CD81DC20C22", + "caseNumber": "CR-2022-0753", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Rodrecius Kenyon Ford v. State of Alabama (Appeal from Lee Circuit Court: CC-19-926)", + "decision": "Decision - Affirmed by Memorandum on Return to Remand.", + "orderBy": 1 + }, + { + "publicationItemUUID": "650016A3-7D65-4491-A43B-B67236B1540F", + "docketEntryUUID": "676D525B-3416-4D8C-B514-9FE1A853D458", + "caseInstanceUUID": "9DF11CD9-CC25-4012-9ACD-B32C98B5C2C6", + "caseNumber": "CR-210150", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Hollis Jerry Lang v. State of Alabama (Appeal from Shelby Circuit Court: CC-17-839)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "5AA486B7-1CE3-423E-9D58-01F7900F117E", + "docketEntryUUID": "182EFE8A-85A3-4917-BA65-E228CDD538AA", + "caseInstanceUUID": "93637861-6AD4-4F25-A43E-EAE61F8C336D", + "caseNumber": "CR-2022-0962", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Jermaine Curtis Boswell v. State of Alabama (Appeal from Bessemer Division, Jefferson Circuit Court: CC-18-657 and CC-18-658)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 2 + }, + { + "publicationItemUUID": "B6601BFF-7666-40AF-8B8A-D5E4AC4970EA", + "docketEntryUUID": "343E2E1B-88AD-4516-B51A-30050E3FAEBE", + "caseInstanceUUID": "38C8B398-C3B2-419D-8499-4A42365592DE", + "caseNumber": "CR-210433", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Lonnie Harold Newsome v. State of Alabama (Appeal from Cherokee Circuit Court: CC-21-135 and CC-21-136).", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 2 + }, + { + "publicationItemUUID": "344CFAF5-59BD-471F-A749-B2BAD53DE780", + "docketEntryUUID": "5999FDA7-6236-49C9-9F23-CBB7A534B3DC", + "caseInstanceUUID": "91E1633B-B33C-4643-A9FB-29598EFC4F7C", + "caseNumber": "CR-2022-0746", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Dennis Long v. State of Alabama (Appeal from Elmore Circuit Court: CC-18-663.60)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 2 + }, + { + "publicationItemUUID": "27A53A99-6302-4C47-ABE3-29D9629BCFF6", + "docketEntryUUID": "8E9499F0-1C3C-4119-B35E-90842AD1E0F8", + "caseInstanceUUID": "2ACA8CEF-0D6E-409F-9068-2DF445B47644", + "caseNumber": "CR-2022-1007", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Anthony Tyrone Jackson v. State of Alabama (Appeal from Calhoun County Circuit Court: CC-15-729)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 2 + }, + { + "publicationItemUUID": "EBC88818-75BF-4A5D-984D-4F2B8ED969FA", + "docketEntryUUID": "DED5FDCC-C931-44E3-8FFA-11768FBA02CC", + "caseInstanceUUID": "7117A23F-91C9-48E4-BBC1-EB01AF65093C", + "caseNumber": "CR-200686", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "A.J.C. v. State of Alabama. (Appeal from Madison Circuit Court: CC-19-1977)", + "decision": "Decision - Affirmed by Memorandum on Return to Second Remand.", + "orderBy": 2 + }, + { + "publicationItemUUID": "85F28B41-F237-4D01-A21D-602CF3FDE214", + "docketEntryUUID": "97098DC5-70C5-4DC0-A367-856A4E20C518", + "caseInstanceUUID": "18E8BEE3-8262-47BA-893F-3E75FA4C5EE5", + "caseNumber": "CR-210222", + "groupName": "On Rehearing", + "groupOrderBy": 7, + "title": "Charles David Merchant v. State of Alabama (Appeal from Lamar Circuit Court: CC-03-111.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "A405D683-16ED-4DCC-99C8-96839C131D84", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "46B65D04-4B37-4D51-B878-37913C03AD42", + "docketEntryUUID": "EF847FFD-F12E-4D71-8E0F-793F5E8E48E6", + "caseInstanceUUID": "F216EDEA-A978-48DB-A173-4FEEEE3A66D4", + "caseNumber": "CR-210323", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Randy Earl Britford v. State of Alabama (Appeal from Tuscaloosa Circuit Court: CC-18-1411)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 3 + }, + { + "publicationItemUUID": "206C4B13-C0D7-416C-B511-E269CF0D3B6D", + "docketEntryUUID": "6DCD3454-67F4-4161-A7AB-F51C77164CBE", + "caseInstanceUUID": "3EA44895-63C9-4264-8153-AD33984641C4", + "caseNumber": "CR-2022-1026", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "George L. Sanders v. State of Alabama (Appeal from Autauga Circuit Court: CC-20-118)", + "decision": "Decision - Affirmed by Memorandum on Return to Remand.", + "orderBy": 3 + }, + { + "publicationItemUUID": "5CF6F596-B8CC-40AE-9971-42131885FFB0", + "docketEntryUUID": "DFEC7EA9-832B-4BD6-8204-82101321531C", + "caseInstanceUUID": "161051EF-5403-4978-9184-C189DC0164AD", + "caseNumber": "CR-2022-0965", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Christopher Jarquis Guice v. State of Alabama (Appeal from Pike Circuit Court: CC-19-493, CC-19-494, CC-19-495, and CC-19-496)", + "decision": "Decision - Affirmed by Memorandum on Return to Remand.", + "orderBy": 3 + }, + { + "publicationItemUUID": "69AA1166-3588-4415-9F91-5AC94806163C", + "docketEntryUUID": "07D10EC0-92C8-4395-B8FC-F0D5AB2F0DE9", + "caseInstanceUUID": "779214B4-DDFD-499B-8B51-661453C54FDA", + "caseNumber": "CR-2022-0528", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Alvontae Devecio Morgan v. State of Alabama (Appeal from Madison Circuit Court: CC-18-3827.70).", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 3 + }, + { + "publicationItemUUID": "7C749335-82E7-46E0-A9AF-42E2BD51DCEC", + "docketEntryUUID": "97800444-C931-4E84-AA46-EE6BAF9F41AD", + "caseInstanceUUID": "1FA72E13-3F6B-4181-9955-D29847A8EF2E", + "caseNumber": "CR-2022-0819", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Todd Wayne Fye v. State of Alabama (Appeal from Houston Circuit Court: CC-17-1131 through CC-17-1309)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 3 + }, + { + "publicationItemUUID": "B80B9404-B4E0-433F-8E99-7757A4FEE621", + "docketEntryUUID": "6B8FA8A0-0CDF-465E-8809-CACE0B299D92", + "caseInstanceUUID": "9D11D423-67A4-486A-A3CF-AB65139586E4", + "caseNumber": "CR-2022-0683", + "groupName": "On Rehearing", + "groupOrderBy": 7, + "title": "Amir G. James v. State of Alabama (Appeal from Autauga Circuit Court: CC-20-113)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "A72FB241-F919-4677-8632-F7D89F3BA2C8", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "54C88E58-A8D5-4BA2-B642-45D478B39C20", + "docketEntryUUID": "5B5EDF17-F379-4263-BB29-A895FEA67D5A", + "caseInstanceUUID": "2CA8E56E-F822-4AD3-A747-43BACB1B86C6", + "caseNumber": "CR-2022-1066", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "D.R.H. v. State of Alabama (Appeal from Lee Circuit Court: CC-21-868)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 4 + }, + { + "publicationItemUUID": "027294B1-99C1-42A4-8F3E-F5BA9075A19A", + "docketEntryUUID": "CA5F2418-F69B-4B58-9DAD-107CF6EF7096", + "caseInstanceUUID": "E1F14A0B-6C79-412B-A38D-0C23C05210F0", + "caseNumber": "CR-2022-0969", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Clavon Williams v. Alabama Board of Pardons and Paroles (Appeal from Montgomery Circuit Court: CV-22-49)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 4 + }, + { + "publicationItemUUID": "B46E2599-BDE7-4B87-8B61-F94658B73824", + "docketEntryUUID": "4B5EE174-1908-47E7-9275-21C4385B2431", + "caseInstanceUUID": "BAAED360-289D-4EED-8F55-C3B70B5012E8", + "caseNumber": "CR-2022-0766", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Willie Lee Addison, III v. State of Alabama (Appeal from Montgomery Circuit Court: CC-18-471)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 4 + }, + { + "publicationItemUUID": "DBDCE65B-7618-4584-BA58-F86788545811", + "docketEntryUUID": "0A8BE0F7-8DE5-41D7-BD67-6FD5ED1F45CE", + "caseInstanceUUID": "0A3F197C-B0D1-4B58-9476-F8B1607C0F36", + "caseNumber": "CR-2022-1100", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "T.S.S. v. State of Alabama (Appeal from St. Clair Circuit Court: CC-18-192)", + "decision": "Decision - Affirmed by Memorandum on Return to Remand.", + "orderBy": 4 + }, + { + "publicationItemUUID": "0BD9162B-5488-4C9A-907F-3CCEC7D78339", + "docketEntryUUID": "3587D6AC-5EC4-475D-A63B-0BF02DED88C1", + "caseInstanceUUID": "6CA343E1-4612-4079-8FC9-6CE574763926", + "caseNumber": "CR-210330", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Jessie Lynn Simmons v. State of Alabama (Appeal from Lee Circuit Court: CC19-387)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 4 + }, + { + "publicationItemUUID": "B480778C-0ECD-4CBC-BABC-C8600FCA8E3B", + "docketEntryUUID": "9CA4472F-F774-41CC-94D3-7285358665D7", + "caseInstanceUUID": "1E601381-77E7-443A-9783-5F08D7416998", + "caseNumber": "CR-2022-1055", + "groupName": "On Rehearing", + "groupOrderBy": 7, + "title": "Barry L. Robinson v. State of Alabama (Appeal from Madison Circuit Court: CC-91-1828.62)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "F8323F41-E85B-4428-8AE0-22322A4BCD8D", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "93CA0DCB-9482-4880-A2F0-CE93213D93E7", + "docketEntryUUID": "61A0D4A1-49AF-4249-9E92-9DE49E441DC7", + "caseInstanceUUID": "60CDA856-9075-469B-BDBE-F90EAF2B7FA8", + "caseNumber": "CR-210388", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Zachary Stephen Nichols v. State of Alabama (Appeal from Lee Circuit Court: CC-19-502)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 5 + }, + { + "publicationItemUUID": "7CB8B134-420F-4F72-B8B2-75EFACC745FD", + "docketEntryUUID": "9C323146-94FB-4DFF-8104-9509FFF1FB9E", + "caseInstanceUUID": "DD4ED465-9A92-4270-AD73-A22CC113C31C", + "caseNumber": "CR-2022-1173", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Justin Latrell Upshaw v. State of Alabama (Appeal from Lee Circuit Court: CC-21-664)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 5 + }, + { + "publicationItemUUID": "C3D0588B-43F3-47C5-B52E-2BC95F52B4C8", + "docketEntryUUID": "6E6A6E91-90DE-45E8-84BF-49ADAFFEF5AD", + "caseInstanceUUID": "C278E3D5-A9F5-48C4-A010-4E6571488905", + "caseNumber": "CR-2022-0830", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Trenton Davis Thornton v. State of Alabama (Appeal from Mobile Circuit Court: CC-20-2603)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 5 + }, + { + "publicationItemUUID": "1DFAD569-B98E-4C30-B2D1-C049A81E6EAC", + "docketEntryUUID": "1A60CE75-2AF2-404C-94FC-95520FF1B867", + "caseInstanceUUID": "9FE6777B-ECDD-47C9-B41E-C8E1CC258E8A", + "caseNumber": "CR-2022-1246", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "E.W.G. v. State of Alabama (Appeal from Russell Circuit Court: CC-18-225, CC-18-226, and CC-18-227)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 5 + }, + { + "publicationItemUUID": "C1265588-C31D-4D80-BA33-BCBE2E11F253", + "docketEntryUUID": "D78183B4-79F2-45AD-B99D-77EC591A6E7A", + "caseInstanceUUID": "37F0752A-B557-4EDF-B9B3-1BAB3D4641F4", + "caseNumber": "CR-2022-1148", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Reginald Thadeous Blevins v. State of Alabama (Appeal from Mobile Circuit Court: CC-20-1246)", + "decision": "Decision - Affirmed by Memorandum on Return to Remand.", + "orderBy": 5 + }, + { + "publicationItemUUID": "FDC9F0B9-81F4-4B8B-BED1-E5A20728B0FF", + "docketEntryUUID": "CAFC8CD3-4205-4A1C-A0F4-25201C06F7D1", + "caseInstanceUUID": "39162A5F-5E1C-4B73-899E-7B924BDD9095", + "caseNumber": "CR-210398", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Carnel Jackson v. State of Alabama (Appeal from Jefferson Circuit Court: CC-81-887)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 6 + }, + { + "publicationItemUUID": "36CA5808-E499-4EAC-A9F9-B7FF0A97ECD0", + "docketEntryUUID": "E575D756-49C5-465A-B5D2-D64FAABF2C45", + "caseInstanceUUID": "A12E8774-0F8F-4F83-A04F-9DBF3D54AB3F", + "caseNumber": "CR-2022-1242", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Johann Vidal McCree v. State of Alabama (Appeal from Mobile Circuit Court: CC-20-2645.70, CC-21-02.70, CC-21-2104.70, and CC-21-2105.70)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 6 + }, + { + "publicationItemUUID": "8F3F84E7-9773-4A77-9DBB-9BFA5118F0C3", + "docketEntryUUID": "AABC226D-0E28-4680-A9AB-620C151D6719", + "caseInstanceUUID": "A578322A-6578-4818-801E-28BE8E6666B6", + "caseNumber": "CR-2022-1254", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Antonio O'Bryan Scott v. State of Alabama (Appeal from Lee Circuit Court: CC-22-312)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 6 + }, + { + "publicationItemUUID": "DF62E4FD-7E92-4269-ACEB-B7D9CFF9DCE1", + "docketEntryUUID": "0D1DB992-A991-4CE6-8D7B-82AD8D4DA1C8", + "caseInstanceUUID": "9D7F3C21-2A29-4CA4-A1D1-02A5DC1A20D9", + "caseNumber": "CR-2022-1161", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Eduardo Alexander Cuz-Hor v. State of Alabama (Appeal from Houston County: CC-21-1599 and CC-21-1600)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 6 + }, + { + "publicationItemUUID": "520422E5-1EB7-4500-946C-13B76C2567CE", + "docketEntryUUID": "1C4AA3CE-9646-449A-9DBB-DC26AEC0A66B", + "caseInstanceUUID": "85E1287A-71FF-44CC-9A0B-F3933A29890E", + "caseNumber": "CR-2022-0926", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Robert Lee Spires v. State of Alabama (Appeal from Etowah Circuit Court: CC-17-322.71)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 6 + }, + { + "publicationItemUUID": "3CD4C575-2A21-4E0E-9E43-D2F650BEC8AF", + "docketEntryUUID": "CA8C78AA-C00D-4255-86C9-701C77782C3C", + "caseInstanceUUID": "6721F7ED-59AA-4BA7-BAF6-CF925FB80C35", + "caseNumber": "CR-2023-0066", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "Ontario Darnell Stewart v. State of Alabama (Appeal from Mobile Circuit Court: CC-18-1701.73)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 7 + }, + { + "publicationItemUUID": "27795B43-500A-4746-AF99-67811E82F86B", + "docketEntryUUID": "44BDB059-2F04-407E-BAD5-CE95C1BED901", + "caseInstanceUUID": "31844514-569D-4904-9295-B2914087416B", + "caseNumber": "CR-2022-1350", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Courtney Reshard Twilley v. State of Alabama (Appeal from Jefferson Circuit Court: CC-19-1917, CC-19-1918, and CC-19-1919)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 7 + }, + { + "publicationItemUUID": "E2DEBF88-E82E-4B03-A6F2-37608DC97863", + "docketEntryUUID": "0140F904-8F24-4D8D-A717-B80A7639E3C3", + "caseInstanceUUID": "97D9B1E8-2E3B-4BC7-A809-C73285FCA4D6", + "caseNumber": "CR-2022-1147", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Shanon Facin v. State of Alabama (Appeal from Mobile Circuit Court: CC-19-4497.70 and CC-19-4498.70)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 7 + }, + { + "publicationItemUUID": "9CA474EA-EFD3-4C95-B0B6-3A766F6A4C3A", + "docketEntryUUID": "A143BBE3-1837-455D-A9B8-8991477BBD57", + "caseInstanceUUID": "622DDE49-7C94-462C-ABFA-A17F19BD073F", + "caseNumber": "CR-210485", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Cardalle Bruce Osby v. State of Alabama (Appeal from Jefferson Circuit Court: CC-18-1701, CC-18-1702, and CC-18-1703)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 7 + }, + { + "publicationItemUUID": "AC59D62F-C643-4FC5-865E-6FCDB07631B9", + "docketEntryUUID": "AF3F5DF1-7CEB-4729-BB22-699A1D93F838", + "caseInstanceUUID": "87F0309A-DCCB-4BD1-B782-942DD6E52579", + "caseNumber": "CR-2022-1199", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Alexander Carnado Sanders v. State of Alabama (Appeal from Montgomery Circuit Court: CC-19-1118).", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 7 + }, + { + "publicationItemUUID": "1E5ACD00-C414-4279-9EE4-392881360105", + "docketEntryUUID": "B35F6A3E-8EEE-4CD8-9ADF-BD44021E3BBD", + "caseInstanceUUID": "ECC0DDFE-13BC-43B6-81BE-6B681B1A3C52", + "caseNumber": "CR-2022-0585", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Anthony Dale Johnson v. State of Alabama (Appeal from Coffee Circuit Court: CC19-55)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 8 + }, + { + "publicationItemUUID": "CCAAAA43-AB3E-4B11-A7D4-D31E1034B8F4", + "docketEntryUUID": "3B9FCBF4-EF07-42D9-9116-20CB6DABD7A0", + "caseInstanceUUID": "5A7E92DD-188E-46AD-AB29-0B3BD8CCA3E9", + "caseNumber": "CR-2022-1248", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Dustin Grant Ward v. State of Alabama (Appeal from Morgan Circuit Court: CC-22-380)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 8 + }, + { + "publicationItemUUID": "E10E0E43-5CB0-4CD2-8BA5-246D3CEB44B7", + "docketEntryUUID": "B1B00520-4EB7-48E1-9965-E5756A0F256B", + "caseInstanceUUID": "A7CFB852-F729-4A8A-A588-5BE5979B2F19", + "caseNumber": "CR-2022-1381", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Michael David Jackson v. State of Alabama (Appeal from Escambia Circuit Court: CC-20-170)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 8 + }, + { + "publicationItemUUID": "EE724D75-7274-4305-BEDF-5BE280F77FB2", + "docketEntryUUID": "C27F0578-72FB-43BE-AA0E-F8F2909495EE", + "caseInstanceUUID": "55305228-D232-4254-8206-D8CEA7AE1DC8", + "caseNumber": "CR-2022-1312", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "William Richard Williams v. State of Alabama (Appeal from Mobile Circuit Court: CC-21-2219, CC-21-3092, and CC-21-3093)", + "decision": "Decision - Affirmed as to Case No. CC-21-3093 and Dismissed as to Case No. CC-21-2219 and Case No. 21-3092 by Memorandum.", + "orderBy": 8 + }, + { + "publicationItemUUID": "57B50C5E-2DF5-46FE-9DAE-DD327F60FE28", + "docketEntryUUID": "503B0E0D-21C6-4441-A80D-019E26A4966F", + "caseInstanceUUID": "9DFE88A2-8B6B-4F66-8361-4CF61872FFCD", + "caseNumber": "CR-2023-0075", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Joe Lewis Williams v. State of Alabama (Appeal from Tuscaloosa Circuit Court: CC-18-1513)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 9 + }, + { + "publicationItemUUID": "09449371-706C-4857-9770-589A3DA5CAA6", + "docketEntryUUID": "6C47738E-1339-4B2C-8A74-9E4AA31B2E0D", + "caseInstanceUUID": "6441E8F8-AC65-42C3-AECA-B25C084F2132", + "caseNumber": "CR-2022-1321", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Domanek Jackson v. State of Alabama (Appeal from Madison Circuit Court: CC-19-4169)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 9 + }, + { + "publicationItemUUID": "64565987-ECAE-45F7-AE3E-F4A4BB7C3797", + "docketEntryUUID": "D95E95B6-E0D7-431D-98F2-51B7AB988D87", + "caseInstanceUUID": "CD79B8CA-2367-4D15-9193-F1D25D6AE24A", + "caseNumber": "CR-2022-1268", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Xavier Tavaris Young v. State of Alabama (Appeal from Limestone Circuit Court: CC-19-136)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 9 + }, + { + "publicationItemUUID": "9BD3AC53-74C7-4F3A-84BF-39AAE718BB64", + "docketEntryUUID": "DBF2F1DC-3141-4996-A688-E9B83121CB11", + "caseInstanceUUID": "6D9F1B8B-8470-4816-A91F-763D9DFF845C", + "caseNumber": "CR-2022-0606", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "D.A.C. v. State of Alabama (Appeal from Shelby Juvenile Court: JU-21-477.01)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 9 + }, + { + "publicationItemUUID": "08CF3C01-1D1A-436D-A43A-9CAEF2ADB382", + "docketEntryUUID": "568AD502-8C38-4497-899C-F3BE3084EFF3", + "caseInstanceUUID": "60948BD9-5FD4-4312-B595-F90C470B3ABA", + "caseNumber": "CR-2022-0614", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Steven Russell Caldwell, Jr. v. State of Alabama (Appeal from Barbour Circuit Court: CC-18-61)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 10 + }, + { + "publicationItemUUID": "68AB95B4-52EB-4089-AB8E-4F45C292DF63", + "docketEntryUUID": "AC7AEB91-0D39-441A-AF22-B0482ED9865B", + "caseInstanceUUID": "D6896D96-85DF-49A3-A17B-5C395E8970A2", + "caseNumber": "CR-2023-0124", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Lee Andrew Ephraim v. State of Alabama (Appeal from Autauga Circuit Court: CC-20-116)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 10 + }, + { + "publicationItemUUID": "240119CA-8738-45D8-9531-93FE3E9601B3", + "docketEntryUUID": "93655D47-A08F-4684-9464-D298CC618647", + "caseInstanceUUID": "751CBA22-F331-4296-8FC3-2FFD6BF8F3E8", + "caseNumber": "CR-2022-1354", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Joshua Dwayne Ammons v. State of Alabama (Appeal from Tallapoosa Circuit Court: CC-19-77)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 10 + }, + { + "publicationItemUUID": "0AA80F84-D5AC-4082-95F4-97854CF0003C", + "docketEntryUUID": "B7002799-D6F2-4CE4-BFEE-2B60AA018AC3", + "caseInstanceUUID": "92975E07-AF30-47B0-AAAC-98F0CB322A56", + "caseNumber": "CR-2023-0160", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Ex parte William Eric Wooden (In re: State of Alabama v. William Eric Wooden) (Madison Circuit Court: CC-19-3035)", + "decision": "Decision - Petition Denied by Memorandum.", + "orderBy": 10 + }, + { + "publicationItemUUID": "2CF52E0A-5402-43C4-A263-AA7A4D8F4C14", + "docketEntryUUID": "F9C27B32-83C0-47EB-9E45-183774C43D89", + "caseInstanceUUID": "EACC0642-17DC-493B-A831-00B954856AD9", + "caseNumber": "CR-2023-0260", + "groupName": "Judge Minor", + "groupOrderBy": 5, + "title": "Joshua Ray Lawson v. State of Alabama (Appeal from Covington Circuit Court: CC-17-80.70)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 11 + }, + { + "publicationItemUUID": "0837FD84-BDA6-4AEA-BC34-DCD460D7E861", + "docketEntryUUID": "04761768-1E4F-4AB9-990F-96BD373016D2", + "caseInstanceUUID": "D7916D40-7219-4276-9B7D-27E86C7F716D", + "caseNumber": "CR-2023-0192", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Jesus Ceja v. State of Alabama (Appeal from Limestone Circuit Court: CC-18-534)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 11 + }, + { + "publicationItemUUID": "AA139E2F-6190-4C65-B8F9-369E6984237B", + "docketEntryUUID": "129A79FF-751A-489C-9829-32065C1A70A5", + "caseInstanceUUID": "68C7FD40-CCC1-46DD-8A51-568070F74C78", + "caseNumber": "CR-2022-1361", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Veronica Wiggerfall v. State of Alabama (Appeal from Mobile Circuit Court: CC-18-5095)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 11 + }, + { + "publicationItemUUID": "2568BC20-F9A3-4CF3-8686-2F92CA775712", + "docketEntryUUID": "C7011D53-E11E-418C-BA81-037824CE34A4", + "caseInstanceUUID": "5F090CCC-66DA-4F16-B17C-453C0AAB8AB7", + "caseNumber": "CR-2022-0862", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Cameron Devante Broxton v. State of Alabama (Appeal from Madison Circuit Court: CC-17-2312.71)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 11 + }, + { + "publicationItemUUID": "65BEBE1D-365A-47C9-ABBA-C552B658C8FD", + "docketEntryUUID": "274B8D04-0A3E-4182-85A3-B531723231E6", + "caseInstanceUUID": "F1945BA2-4B0F-4C0E-A62B-5293FCFEB7CE", + "caseNumber": "CR-2022-0956", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "William Rodeshia Stoutamire v. State of Alabama (Appeal from Covington Circuit Court: CC-21-83)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 12 + }, + { + "publicationItemUUID": "7B7D0D28-2AC5-4DDC-844C-44D706BBFF9A", + "docketEntryUUID": "84366ED0-4493-4038-BCB2-89D4609339A3", + "caseInstanceUUID": "AB964AD8-BFEA-4E0B-B609-080C3A3FE2D1", + "caseNumber": "CR-2023-0193", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "David Leon Jackson v. State of Alabama (Appeal from Madison Circuit Court: CC-22-1227.70)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 12 + }, + { + "publicationItemUUID": "45EF65AA-B1DE-40B1-AF77-3423E9C98702", + "docketEntryUUID": "A2242DF4-8455-4FD7-BA13-DB7DC840AFB5", + "caseInstanceUUID": "C4248C37-C49D-4559-AF60-ABC289EBDADC", + "caseNumber": "CR-2023-0069", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Reginald Jermaine Byrd v. State of Alabama (Appeal from Lee Circuit Court: CC-21-838.70)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 12 + }, + { + "publicationItemUUID": "3043FA0F-0822-40D0-8FCC-F24378F2EC24", + "docketEntryUUID": "09B07700-149E-4A8E-860A-4408233FE65D", + "caseInstanceUUID": "7F8F7A43-4A62-49FF-828E-7F6F4F497397", + "caseNumber": "CR-2023-0212", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Shannon Marie McConnell v. State of Alabama (Appeal from Lee Circuit Court: CC-20-557.70)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 13 + }, + { + "publicationItemUUID": "3A828B9A-C450-4C68-9D3A-DD4A81F9488B", + "docketEntryUUID": "5CE5EDF0-D1FD-4794-A891-33B9124F8780", + "caseInstanceUUID": "EE0435C7-4B8D-4E35-945F-338C064C8D73", + "caseNumber": "CR-2023-0085", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Leon Terrell Flowers v. State of Alabama (Appeal from Pike Circuit Court: CC-20-204)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 13 + }, + { + "publicationItemUUID": "FC22BF1F-AC3E-4149-B609-57F5E8CCAEFD", + "docketEntryUUID": "F52981D5-3A23-4282-9627-D8716F6CA8B9", + "caseInstanceUUID": "B3937CFE-7746-404B-8AA1-EDB624AF0D40", + "caseNumber": "CR-2022-0985", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Anthony Blake Sheppard v. State of Alabama Pike Circuit Court: CC-22-5.70 and CC-22-6.70)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 13 + }, + { + "publicationItemUUID": "2AFC82C5-BA31-4BFD-AFBC-6FB38F351839", + "docketEntryUUID": "C8B14CA4-C404-4455-9A44-74DE4DC7BC8A", + "caseInstanceUUID": "CBB81C2D-8C16-4278-9215-B15A6C9CC766", + "caseNumber": "CR-2022-1093", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Ronald Gholston v. Alabama Board of Pardons and Paroles (Appeal from Montgomery Circuit Court: CV-22-73)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 14 + }, + { + "publicationItemUUID": "A3E5333A-B37F-4686-B16C-6D7FE13448ED", + "docketEntryUUID": "3ED4366E-D7BD-4603-BB11-02F02E323742", + "caseInstanceUUID": "69706B18-F619-4512-95F3-3023309E1D95", + "caseNumber": "CR-2023-0236", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Sebastian Dyer Haddaway v. State of Alabama: (Appeal from Marion Circuit Court: CC-18-287.71)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 14 + }, + { + "publicationItemUUID": "174C5618-FA72-4F6C-9410-82DA3BAD7FE8", + "docketEntryUUID": "64DE0603-7A1C-4E2F-AABE-007D8B0E9FEB", + "caseInstanceUUID": "2325FD40-F18B-4468-A5C9-A232495C8B51", + "caseNumber": "CR-2023-0088", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Christopher Michael Chaviers v. State of Alabama (Appeal from DeKalb Circuit Court: CC-22-505)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 14 + }, + { + "publicationItemUUID": "6409A63E-A25E-416F-811C-7BE1F37085DA", + "docketEntryUUID": "0F3A80A1-A9FD-43DC-8733-E9CACB840A5A", + "caseInstanceUUID": "06733DC3-AAC3-478A-9E52-CA03235F40AE", + "caseNumber": "CR-2023-0092", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Timothy Bryan Standfield v. State of Alabama (Appeal from Lauderdale Circuit Court: CC-15-535.62)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 15 + }, + { + "publicationItemUUID": "AAED944E-51E8-4B43-B313-78971ED9E4EC", + "docketEntryUUID": "147D6226-50FB-415F-BF85-F0D5EE87FE97", + "caseInstanceUUID": "34195CDA-4ADF-4D37-89EA-F48E6B458592", + "caseNumber": "CR-2023-0365", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Willie Kevin Williams v. State of Alabama (Appeal from Mobile Circuit Court: CC-11-2705.64, CC-11-2706.64, and CC-11-2707.64)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 15 + }, + { + "publicationItemUUID": "67AFB413-7AB9-40CE-B76E-1D06D2A9163A", + "docketEntryUUID": "D399BA84-509D-47B0-8801-069F1D3AE72F", + "caseInstanceUUID": "F5C4B04D-5899-47B0-B571-B7AB458B6B8A", + "caseNumber": "CR-2022-1143", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Jonathan Marquette Williams v. State of Alabama Tuscaloosa Circuit Court: CC-15-1129.71)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 15 + }, + { + "publicationItemUUID": "BCF36D44-77D7-4CDD-B22D-C6F1E0C96767", + "docketEntryUUID": "D856AEE5-F1C4-4812-8CD5-5AA19233915E", + "caseInstanceUUID": "B4A4B44B-768B-4A31-AE4C-67A20E35AA5E", + "caseNumber": "CR-2022-1334", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Grayson Ellington Letlow v. City of Auburn (Appeal from Lee Circuit Court: CC-22-585, CC-22-586, CC-22-587, and CC-22-588)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 16 + }, + { + "publicationItemUUID": "072EFD6C-0ED3-49C6-9963-5AD518B45C58", + "docketEntryUUID": "789ADE92-4E38-424D-9F8E-CB9EBFBBEC7F", + "caseInstanceUUID": "55B7407E-0F32-4FDF-959E-2D31AE32968D", + "caseNumber": "CR-2023-0215", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Mitchell Bernard Johnson v. State of Alabama (Appeal from Pike Circuit Court: CC-11-174.62; CC-11-175.62)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 16 + }, + { + "publicationItemUUID": "73AF0CF2-1644-4D72-9154-C23DF30ECF71", + "docketEntryUUID": "590F71CC-F857-4BB5-8BC3-7303344B3EEE", + "caseInstanceUUID": "9828508C-B12E-498B-8783-666699089924", + "caseNumber": "CR-2023-0230", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Jossie Cheyenne Bowen v. State of Alabama (Appeal from Marshall Circuit Court: CC-20-239.70)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 17 + }, + { + "publicationItemUUID": "C3C017BE-3B55-4899-A973-EBB2E0A6A7C8", + "docketEntryUUID": "404FAAB4-B4DD-452A-AF08-E1F6F49B1EB6", + "caseInstanceUUID": "B33723C7-88CE-4E58-977C-86CD671073C5", + "caseNumber": "CR-2023-0095", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Anthony Jerome Starks v. State of Alabama (Appeal from Pike Circuit Court: CC-17-145.71)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 17 + }, + { + "publicationItemUUID": "A33B8EF1-C63F-4630-BC84-A8E07A9CD40C", + "docketEntryUUID": "03C5F839-F3A4-46D5-BCF0-B81DE8349AD4", + "caseInstanceUUID": "2F64AC7D-CA86-4312-AAD1-4A73360B2657", + "caseNumber": "CR-2023-0101", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Danny Foster, Sr. v. Alabama Department of Corrections (Appeal from Barbour Circuit Court: CV-22-20)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 18 + }, + { + "publicationItemUUID": "0A577F02-CB6D-466E-B03C-0F7BE927F96F", + "docketEntryUUID": "BD4CB83D-DEE8-497D-A1FF-B01281BDE6C4", + "caseInstanceUUID": "24682166-7272-4C94-AD8E-4F32BDE588EE", + "caseNumber": "CR-2023-0161", + "groupName": "Judge Cole", + "groupOrderBy": 4, + "title": "Antonio Smith v. Alabama Board of Pardons and Paroles (Appeal from Montgomery Circuit Court: CV22-901198)", + "decision": "Decision - Affirmed by Memorandum.", + "orderBy": 19 + } + ] + }, + { + "publicationUUID": "3a5dad19-7e24-4978-881f-e3047865ae64", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-07-28", + "publicationName": "Court of Criminal Appeals Release List - July 28, 2023", + "publicationNote": "Decisions Announced on Friday, July 28, 2023", + "groupFlag": true, + "scheduledDate": "2023-07-28T15:15:00.000+00:00", + "publicationDate": "2023-07-28T15:13:30.955+00:00", + "publicationItems": [ + { + "publicationItemUUID": "62A8ECE5-0E15-460F-848E-8AF952E6F7D8", + "docketEntryUUID": "37037603-68C9-4F14-A44A-5DE4E75EDFC5", + "caseInstanceUUID": "0B293D87-4005-49E8-866E-DF7291D78722", + "caseNumber": "CR-210313", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Lekoray Jamal Buford v. State of Alabama. (Appeal from Bessemer Division, Jefferson Circuit Court: CC-16-834, CC-16-835, and CC-16-836)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "1E2A5980-85BB-4695-91C9-CEC8CC069EB6", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "70836C84-2037-4C05-B660-B56C1116D3DF", + "docketEntryUUID": "EA083785-9104-4A9D-A38C-ED9E3B592037", + "caseInstanceUUID": "903EA3AC-DDE1-4209-92B0-562B9383EF6A", + "caseNumber": "CR-2022-0727", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Tavarius Eugene Wade v. State of Alabama (Appeal from Tuscaloosa Circuit Court: CC-22-1)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "08F0DACA-30F0-4116-8675-EC1BFEC6C40E", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "2333D42E-45A2-48B2-9471-98C9DCB91C5F", + "docketEntryUUID": "C15C3CE3-A8D2-4E6B-8A50-4B505F1A420B", + "caseInstanceUUID": "8A384A2B-1091-41D7-ACB4-D1A49268FCA4", + "caseNumber": "CR-2022-1163", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Tyrone Snell v. State of Alabama (Appeal from Houston Circuit Court: CC-20-1117, CC-20-1118, and CC-20-1119)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "108A8BAC-B8BA-4516-BA98-8DB1C40AEB29", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "984F48C0-1A42-4FB0-A89A-E0C18768AEF9", + "docketEntryUUID": "4561CB5F-C5E3-4FEB-9226-06AFD59D9EDE", + "caseInstanceUUID": "A824638E-29BE-4EDC-B4F4-5D2DD223BCFE", + "caseNumber": "CR-2022-1196", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Marcellous Nathaniel Stewart v. State of Alabama (Appeal from Lee Circuit Court: CC-21-705)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "734EA1BC-693B-4F1D-B0D3-328393A5B148", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "E66EE72D-6E53-48A1-AE56-A15C83F3E358", + "docketEntryUUID": "6C75F293-CB54-4DF8-921D-2826B34CB652", + "caseInstanceUUID": "9B60991B-D226-4CDE-8370-B6BCEFFF66E3", + "caseNumber": "CR-2022-1329", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Anthony Antwon Harris v. State of Alabama (Appeal from Escambia Circuit Court: CC-21-13.60 and CC-20-380.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "9CD3E0D1-50C5-47EE-AB55-0C52EF014DF4", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "4252b40e-1edb-4c86-80a7-3c858ee2a944", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-07-21", + "publicationName": "Court of Criminal Appeals Release List - July 21, 2023", + "publicationNote": "Decisions Announced on Friday, July 21, 2023", + "groupFlag": true, + "scheduledDate": "2023-07-21T14:00:00.000+00:00", + "publicationDate": "2023-07-21T14:13:37.017+00:00", + "publicationItems": [ + { + "publicationItemUUID": "546F4B1D-A3E8-469E-A2A6-F11EFD5DA0DA", + "docketEntryUUID": "032882F5-623C-4782-832A-8C5931D43304", + "caseInstanceUUID": "FE64BCA7-2749-42B3-BC3C-73DA51938AF9", + "caseNumber": "CR-2022-0499", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Linda Doyle v. State of Alabama (Appeal from Baldwin Circuit Court: CC-20-2001).", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "FA945067-23B6-4714-880E-0E22411FA8C6", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "C701AFB7-ECCB-4FF6-A0F0-FC52127A11E4", + "docketEntryUUID": "91B64C82-FD04-4BB4-B79D-A4A3A6E07EE5", + "caseInstanceUUID": "20E53E08-A437-4FEA-8137-DC2F740DA2A6", + "caseNumber": "CR-2022-0617", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "James McConico, Jr. v. State of Alabama (Appeal from Conecuh Circuit Court: CC-95-34.91)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "7870742B-3F92-41E3-A698-4E7E08A16438", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "46449783-F942-47F3-812B-93C425D63828", + "docketEntryUUID": "367C0BD2-B223-46E6-A75C-799B375E7CEC", + "caseInstanceUUID": "E766649A-E1D2-46AB-9D53-582578B78CB3", + "caseNumber": "CR-2022-0843", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Raymond Keith Swink v. State of Alabama (Appeal from Jefferson Circuit Court: CC-19-58.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "34EEE41D-0E40-4826-B73D-DB63D5239AFF", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "4E460E8E-1A41-4A0C-9E03-FB825E46CCED", + "docketEntryUUID": "D02BB3B0-BC9A-4187-928F-A26B1465A880", + "caseInstanceUUID": "6818292B-D3AB-47DD-A368-B78F32C463FD", + "caseNumber": "CR-2022-0879", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Terrance Jermaine Holder v. State of Alabama (Appeal from Jefferson Circuit Court: CC-19-3944)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "29CAB716-622E-4BFD-83F2-DEAB06ADD838", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "B29AFEE0-463E-4E22-B207-272853C32300", + "docketEntryUUID": "46AC553B-779D-4DFD-92B0-DB28350D2FC8", + "caseInstanceUUID": "03B62399-F658-4015-9629-972F36C1ACBD", + "caseNumber": "CR-2022-1305", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Ernest Wayne McCrary v. Alabama Board of Pardons and Paroles (Appeal from Montgomery Circuit Court: CV-22-87)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "72AE56EE-8F7C-4556-87BC-D2852C431F49", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "20C965C8-E84E-476E-9AC7-B2C6BD2C3D08", + "docketEntryUUID": "0399CDDE-64B9-4A5F-90F8-4E9F394DB1FF", + "caseInstanceUUID": "FB65ACE8-208B-425E-A172-C8E975FFFF65", + "caseNumber": "CR-2022-1363", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Billy H. Jones v. State of Alabama (Appeal from Tuscaloosa Circuit Court: CC-21-883)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "9F64F61F-1E9F-4F2A-BB9E-0995D4C2407C", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "1C9158E8-04A4-43F1-AED0-5E6526FE96C2", + "docketEntryUUID": "B230F421-0CF9-49DC-9EB5-8919A76C1BBC", + "caseInstanceUUID": "36DCA92D-24C9-4961-BF2A-A454115DB167", + "caseNumber": "CR-2023-0028", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Nikequis Lachristopher Green v. State of Alabama (Appeal from Mobile Circuit Court: CC-21-2545.70 and CC-21-2546.70)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "D07D0401-2732-4221-9131-319EDC26968F", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "6774A93C-76E1-4224-BAFD-59F1F197DC49", + "docketEntryUUID": "24DA8C1E-DBF8-4935-BD86-5129101AE3FC", + "caseInstanceUUID": "1509E5D4-3D0F-4B5C-A271-8D3AAFA94461", + "caseNumber": "CR-2023-0086", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Jermaine Snow v. State of Alabama (Appeal from Jefferson Circuit Court: CC-98-5016.66 and CC-98-5535.68)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 8, + "documents": [ + { + "documentLinkUUID": "22772B7B-1AC2-4718-9E12-A736115658FF", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "4d114bc7-f735-463c-92cb-b29f0b140336", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-07-14", + "publicationName": "Court of Criminal Appeals Release List - July 14, 2023", + "publicationNote": "Decisions Announced on Friday, July 14, 2023", + "groupFlag": true, + "scheduledDate": "2023-07-14T14:00:00.000+00:00", + "publicationDate": "2023-07-14T14:02:25.295+00:00", + "publicationItems": [ + { + "publicationItemUUID": "D2C4E25D-791A-44D6-AEB9-79E54A0FC961", + "docketEntryUUID": "E3762EAF-6405-4360-9A8D-70D7944D2CB3", + "caseInstanceUUID": "1BD95A9F-295B-4BDC-ABAE-9AE62C484C55", + "caseNumber": "CR-2022-0613", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Christopher Lee Richards v. State of Alabama (Appeal from Montgomery Circuit Court: CC-21-1094)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "D2DFED97-F80A-412A-A71D-2FA2DF637042", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "F8073423-A0B1-4B3E-8B59-1229F82D70AD", + "docketEntryUUID": "FA4DD67B-4EE0-47C4-99DE-6F352D929155", + "caseInstanceUUID": "5B062169-96E5-4BC9-A3A4-0ACA3ED5EDB9", + "caseNumber": "CR-2022-0631", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Joe Mitchell Dorsey v. State of Alabama (Appeal from Covington Circuit Court: CC-20-295).", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "FF2D26D6-CB20-4901-B187-079127EE5AB8", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "14399C76-A606-47CE-A641-31CD4A7424B3", + "docketEntryUUID": "04A4C0EE-49CE-4B8C-B7A5-961DD4D430D0", + "caseInstanceUUID": "F804FA8D-ECFD-49C9-81A9-FEB75CA53FB5", + "caseNumber": "CR-2022-0636", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Jeremy Scott Mitchem v. State of Alabama (Appeal from Madison Circuit Court: CC-19-3408)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "54774582-FDF6-4189-87A2-661A1ADFE4CC", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "DA3F1629-A44F-4884-AA65-730B13980AE8", + "docketEntryUUID": "C4422A6D-036B-4F47-A388-88F39D28958D", + "caseInstanceUUID": "4D6F9473-653F-4EA8-9173-E54987DAF8EF", + "caseNumber": "CR-2022-0827", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Latransezon Malloy v. State of Alabama (Appeal from Madison Circuit Court: CC-15-2581.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "F17DB944-3749-4715-AF1A-AB475B1A1A64", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "98F70945-C3F9-48A6-90F4-2FB9FDDD474D", + "docketEntryUUID": "8898DCA3-7528-4C6A-9B45-F590ABC34418", + "caseInstanceUUID": "7A7E1BED-BAF2-444A-AE7E-93F3A4EA1E6A", + "caseNumber": "CR-2022-0998", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Shaniah Woods v. State of Alabama (Appeal from Mobile Circuit Court: CC-14-828.62)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "D13F5C94-68B9-4304-B882-60EB31E8E991", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "F0FDC84E-AC29-4564-BACC-1B31DFE32354", + "docketEntryUUID": "89CC4BDE-CAF7-473E-9377-1937F1FC8F3D", + "caseInstanceUUID": "C0BBF036-78BB-4140-8199-CCB46FC90EC0", + "caseNumber": "CR-2022-1115", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Corey Glenn Wilburn v. State of Alabama (Appeal from Madison Circuit Court: CC-18-2880.70).", + "decision": "Application for Rehearing Overruled.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "C06A7DDA-346F-48A5-9162-AB3ADE9D7DCC", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "B26443C4-1274-4A25-A566-BD2B14D0FD7B", + "docketEntryUUID": "1F1ABE60-84C9-4D6B-8BEE-632D6A927498", + "caseInstanceUUID": "C68F0311-8CFD-47B5-A92A-7D7525DC0749", + "caseNumber": "CR-2023-0011", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Demetrius Deangelo Sanders v. State of Alabama (Appeal from Jefferson Circuit Court: CC-17-2200 and CC-17-2200.70)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "77CE21FA-499D-4BF3-A4DB-CD822B52C404", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "a41d90c5-b494-48ab-93a9-db7a62d925f8", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-07-07", + "publicationName": "Court of Criminal Appeals Release List - July 7, 2023", + "publicationNote": "Decisions Announced on Friday, July 7, 2023", + "groupFlag": true, + "scheduledDate": "2023-07-07T14:00:00.000+00:00", + "publicationDate": "2023-07-07T14:21:01.661+00:00", + "publicationItems": [ + { + "publicationItemUUID": "1C55CE86-DE1B-42CF-BC8F-79535E5EC606", + "docketEntryUUID": "317E837F-790B-45A1-9528-C70EA85A8B0B", + "caseInstanceUUID": "2C031758-0C82-47D8-A3F3-265606E50DCA", + "caseNumber": "CR-2022-0849", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Darrell Kenard Law v. State of Alabama (Appeal from Mobile Circuit Court: CC-22-363.70)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "35DB62F6-0E05-45DA-BC8B-0F96D4C9E3F5", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "68E0F915-CAE9-4BAF-88AB-80B0FD9EBB8B", + "docketEntryUUID": "1940B8E6-CA3B-4CA1-879A-743296A4B94C", + "caseInstanceUUID": "15FD8C7A-4B70-45D8-9F79-A6C732A5DFC0", + "caseNumber": "CR-2022-1105", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Zorro Vontonnyae Sanders v. State of Alabama (Appeal from Jefferson Circuit Court: CC-20-2192)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "826B865A-76E1-44EF-842B-02B050FE92C0", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "3555de0f-f62d-4113-9141-838b9542b784", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-06-23", + "publicationName": "Court of Criminal Appeals Release List - June 23, 2023", + "publicationNote": "Decisions Announced on Friday, June 23, 2023", + "groupFlag": true, + "scheduledDate": "2023-06-23T14:00:00.000+00:00", + "publicationDate": "2023-06-23T15:30:58.653+00:00", + "publicationItems": [ + { + "publicationItemUUID": "8F783180-C123-48B2-9B53-59120058A5C4", + "docketEntryUUID": "11299C9B-2EFA-46C2-92F6-022C5048E663", + "caseInstanceUUID": "F1FADFA7-116A-4ADA-9161-07595027D75A", + "caseNumber": "CR-2022-1125", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Antonio Richardson v. State of Alabama (Appeal from Russell Circuit Court: CC-21-423, CC-21-424, and CC-21-425)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 1 + }, + { + "publicationItemUUID": "243BF5EC-F9A7-4FD5-898E-0DC075FF395B", + "docketEntryUUID": "59B89BAA-D1B5-40DB-B2CF-BA5DEDFA14F4", + "caseInstanceUUID": "15D351A6-36B3-46B7-A321-F4BA26ED860F", + "caseNumber": "CR-2022-0651", + "groupName": "Judge McCool", + "groupOrderBy": 3, + "title": "C.L.A. v. State of Alabama (Appeal from Elmore Circuit Court: CC-20-55)", + "decision": "Decision - Reversed and Remanded with Instructions", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "121D6482-EC65-46DE-A27B-4262E07BAD2F", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "C89E1249-A6B5-4228-8CB5-64C51081D58C", + "docketEntryUUID": "CB2BB9AF-3B35-4AED-9ECB-90F3AC03E3FC", + "caseInstanceUUID": "B3DE65C5-7598-44CE-946B-E04AB7CFB6B6", + "caseNumber": "CR-191040", + "groupName": "Judge Minor", + "groupOrderBy": 4, + "title": "Willie R. Burgess, Jr. v. State of Alabama (Appeal from Morgan Circuit Court: CC93-421.60)", + "decision": "Decision - Affirmed.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "85B7142C-5A1D-4349-B7E8-BA1EFF96693E", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "9D58F9F1-2BD2-4F12-864D-966BFF93DBA4", + "docketEntryUUID": "F045412B-393E-40AD-A3CD-7729F4DDA0BB", + "caseInstanceUUID": "A556A02F-DDFC-4710-B471-46F560DEC241", + "caseNumber": "CR-210069", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Walter Terrance Miles v. State of Alabama (Appeal from Montgomery Circuit Court: CC-14-1202.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "D23E9818-53FD-4A07-856B-C7F80628F960", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "824FDA7A-D52E-4410-8D6C-7FF1CDACE01D", + "docketEntryUUID": "82A47BBF-84C6-4EBB-A16F-6133BED5E36A", + "caseInstanceUUID": "333B1A40-87B3-498A-909D-B0B0BC9A881F", + "caseNumber": "CR-2023-0229", + "groupName": "Per Curiam", + "groupOrderBy": 5, + "title": "Ex parte Zamir Princeton Jones (In re: State of Alabama v. Zamir Princeton Jones) (Jefferson Circuit Court: CC-21-867)", + "decision": "Decision - Petition Dismissed", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "38D26D8D-A923-40F1-B3EB-E212B1F7D382", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "2B5F6D0B-8B3C-4F7A-9FB8-DDBA2B052E8C", + "docketEntryUUID": "B648FA06-F84E-4E8C-9581-757944BD8FA2", + "caseInstanceUUID": "19787748-BF6D-437B-94C7-AE1E24C06E98", + "caseNumber": "CR-2023-0079", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "State of Alabama v. Sonya Nicole Cross (Appeal from Jefferson Circuit Court: CC-10-2678.60)", + "decision": "Decision - Reversed and Remanded.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "228E8993-6708-41A8-8B81-B64DCF83F312", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "8CE8C236-1C9C-47DF-B7E7-01A802B5499D", + "docketEntryUUID": "5C0C8219-B832-4241-8F9A-1C0A00F870E6", + "caseInstanceUUID": "D2F37C0B-4F78-4862-BCE1-8536BB7AA4EB", + "caseNumber": "CR-2022-0659", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Anthony C. Wu v. State of Alabama (Appeal from Madison Circuit Court: CC-19-3532)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "B9AC4869-E1AE-44CD-8E0B-B99779CABCF8", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "679B9020-D893-4D0E-A65D-E1F58BCD78A3", + "docketEntryUUID": "3DB9ED91-4FE8-4F2D-906C-93B0D6968826", + "caseInstanceUUID": "A824638E-29BE-4EDC-B4F4-5D2DD223BCFE", + "caseNumber": "CR-2022-1196", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Marcellous Nathaniel Stewart v. State of Alabama (Appeal from Lee Circuit Court: CC-21-705)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 2 + }, + { + "publicationItemUUID": "A9D61E49-454B-4D82-92AF-87173F0EF563", + "docketEntryUUID": "371B6B87-8EEC-4823-9631-EB11D9BD7286", + "caseInstanceUUID": "317047CA-207F-4659-AEB0-0EB0204BB06C", + "caseNumber": "CR-2022-1285", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "T.C.S. v. State of Alabama (Appeal from Pickens Circuit Court: CC-15-396.61)", + "decision": "Decision - Affirmed.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "6C787CEB-B59F-4B8E-BE8B-3E46D34DAA4B", + "documentName": "Decision" + } + ] + }, + { + "publicationItemUUID": "77F73F40-F323-4DB0-BF87-FBE76FB035F2", + "docketEntryUUID": "1C13066F-95AC-41A1-A948-302C2BAAE569", + "caseInstanceUUID": "B3C6DFA8-94AF-48CA-AF80-7A84536E15B6", + "caseNumber": "CR-2022-0922", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Jerrod Tramell Thompson v. State of Alabama (Appeal from Madison Circuit Court: CC-15-741.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "40D2FAF7-F529-47F7-B02E-EFB72B3D5D25", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "0D2D26A9-7C73-42BC-AA72-A043DC01AD9B", + "docketEntryUUID": "BAB9CAAD-FC8E-4821-972C-6F0B1D6E1702", + "caseInstanceUUID": "1EECBE63-418E-4511-A18C-3CD02BE0B8A7", + "caseNumber": "CR-2022-1023", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Ryon O'Neal Russell, Jr. v. State of Alabama (Appeal from Madison Circuit Court: CC-15-5374.63)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "C7DA0662-FD92-49CB-8DA9-EEDE897728E8", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "279CABC7-31D4-49D0-AAB1-3194E717C422", + "docketEntryUUID": "8060D3A4-F3B4-481C-BFE4-C4B78EE88737", + "caseInstanceUUID": "7CB184B7-8866-46CD-AACC-AAB6CA995439", + "caseNumber": "CR-2022-1335", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "B.M.M. v. State of Alabama (Appeal from Morgan Circuit Court: CC-19-991)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 4 + }, + { + "publicationItemUUID": "3A0D606E-9A0C-422B-A1E6-A834CC7B4B4F", + "docketEntryUUID": "AD199F42-C334-4A48-9063-ADCF1FCB62D1", + "caseInstanceUUID": "FB65ACE8-208B-425E-A172-C8E975FFFF65", + "caseNumber": "CR-2022-1363", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Billy H. Jones v. State of Alabama (Appeal from Tuscaloosa Circuit Court: CC-21-883)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 5 + }, + { + "publicationItemUUID": "9108FBF9-477F-4651-B85B-BC34C1610661", + "docketEntryUUID": "35EF2D63-C646-4BEA-9651-CC5664045B9B", + "caseInstanceUUID": "1DA00191-D3F9-4FE5-ABE1-3241240045D3", + "caseNumber": "CR-2022-1179", + "groupName": "On Rehearing", + "groupOrderBy": 6, + "title": "Marc Wayne Holliday v. State of Alabama (Appeal from Chilton Circuit Court: CC-07-166.65)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "337D15CD-4ECB-4726-8C61-3CA8C3D94597", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "5E445D61-EE97-453E-87BD-EEEAA2F0015B", + "docketEntryUUID": "F80F7A52-4855-4D16-B0FA-458C410FDDDB", + "caseInstanceUUID": "C68F0311-8CFD-47B5-A92A-7D7525DC0749", + "caseNumber": "CR-2023-0011", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Demetrius Deangelo Sanders v. State of Alabama (Appeal from Jefferson Circuit Court: CC-17-2200 and CC-17-2200.70)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 6 + }, + { + "publicationItemUUID": "C067719F-7707-4921-A035-85F8319673FB", + "docketEntryUUID": "5E815CDB-850E-4A7E-BBD6-C5B9902BF00A", + "caseInstanceUUID": "26972AB6-9816-4F39-BF05-D118BBE38EAE", + "caseNumber": "CR-2023-0064", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "William Barrett Slade II v. Alabama Department of Corrections (Appeal from Montgomery Circuit Court: CV-2022-900406)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 7 + }, + { + "publicationItemUUID": "D015391A-1B5E-4D7D-ABAE-3DF3274D8A38", + "docketEntryUUID": "7035294D-D244-4AF8-AA61-996182B4C9F1", + "caseInstanceUUID": "1509E5D4-3D0F-4B5C-A271-8D3AAFA94461", + "caseNumber": "CR-2023-0086", + "groupName": "Judge Kellum", + "groupOrderBy": 2, + "title": "Jermaine Snow v. State of Alabama (Appeal from Jefferson Circuit Court: CC-98-5016.66 and CC-98-5535.68)", + "decision": "Decision - Affirmed by Memorandum", + "orderBy": 8 + } + ] + }, + { + "publicationUUID": "210bfc0b-4b8d-4509-9dff-9b20e6f36560", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-06-16", + "publicationName": "Court of Criminal Appeals Release List - June 16, 2023", + "publicationNote": "Decisions Announced on Friday, June 16, 2023", + "groupFlag": true, + "scheduledDate": "2023-06-16T15:00:00.000+00:00", + "publicationDate": "2023-06-16T15:10:16.217+00:00", + "publicationItems": [ + { + "publicationItemUUID": "ECB6B4B3-BD5E-4C9E-BA31-6DB6F92D1DE3", + "docketEntryUUID": "18EAB2DF-6BB3-4234-A675-3596BD339AC4", + "caseInstanceUUID": "D033D7BC-19E0-4D05-9EBF-EC9E06EA2B55", + "caseNumber": "CR-210314", + "groupName": "Judge Cole", + "groupOrderBy": 3, + "title": "Andrae Quavion Norvel, Jr v. State of Alabama (Appeal from Madison Circuit Court: CC-18-5139)", + "decision": "Affirmed by Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "361ADD9A-9BB5-40A4-BF1D-FC2C6E38D8B1", + "docketEntryUUID": "ECD47792-9E98-400E-B3BB-21572143BE38", + "caseInstanceUUID": "1DF9DCD8-04B0-4FC0-A45E-90641749D3E8", + "caseNumber": "CR-2022-0513", + "groupName": "Judge McCool", + "groupOrderBy": 2, + "title": "Sanchez Demarcus Russell v. State of Alabama (Appeal from Mobile Circuit Court: CC-20-1129)", + "decision": "Affirmed by Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "202CE9F7-ED9B-45A1-A39D-E7585E98774D", + "docketEntryUUID": "6D815A2E-98D7-44F4-922C-3D39009915F3", + "caseInstanceUUID": "0B293D87-4005-49E8-866E-DF7291D78722", + "caseNumber": "CR-210313", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Lekoray Jamal Buford v. State of Alabama. (Appeal from Bessemer Division, Jefferson Circuit Court: CC-16-834, CC-16-835, and CC-16-836)", + "decision": "Affirmed by Memorandum on Return to Remand.", + "orderBy": 1 + }, + { + "publicationItemUUID": "C419A77E-DACD-4052-92C4-EF97DAA1AB6C", + "docketEntryUUID": "D7F0F168-4EB4-4A8E-91EB-9B93696CD3E0", + "caseInstanceUUID": "5B062169-96E5-4BC9-A3A4-0ACA3ED5EDB9", + "caseNumber": "CR-2022-0631", + "groupName": "Judge Minor", + "groupOrderBy": 4, + "title": "Joe Mitchell Dorsey v. State of Alabama (Appeal from Covington Circuit Court: CC-20-295)", + "decision": "Affirmed by Memorandum.", + "orderBy": 1 + }, + { + "publicationItemUUID": "71F32941-E3B2-41CC-B8B9-4187A03A7C73", + "docketEntryUUID": "5625A39F-2392-4A95-AD26-EA09B527C9D7", + "caseInstanceUUID": "393C14E9-E4AB-439B-92BF-744F4CAB396D", + "caseNumber": "CR-201006", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Tyreese Nikita Crayton v. State of Alabama (Appeal from Jefferson Circuit Court: CC-19-3305 and CC-19-3306)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "605E8220-4E11-48F4-8041-544503A931F0", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "7C9E54B5-A5A8-488C-8A78-74A476269C6E", + "docketEntryUUID": "804FA10F-2A35-4FCA-802A-D017C448E009", + "caseInstanceUUID": "4B58A6FB-0D0E-4107-AB60-09CAA89DBC1F", + "caseNumber": "CR-210080", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Patrick Jack Bailey v. City of Vestavia Hills (Appeal from Jefferson Circuit Court: CC-18-4095)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "AD7F63BA-1751-4BBF-8E33-9B6BB4045514", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "C57454B2-C55E-4655-84CB-21114CE1CCA1", + "docketEntryUUID": "5C80ACA9-9382-41FA-A95E-A63538F740AD", + "caseInstanceUUID": "F804FA8D-ECFD-49C9-81A9-FEB75CA53FB5", + "caseNumber": "CR-2022-0636", + "groupName": "Judge Minor", + "groupOrderBy": 4, + "title": "Jeremy Scott Mitchem v. State of Alabama (Appeal from Madison Circuit Court: CC-19-3408)", + "decision": "Affirmed by Memorandum.", + "orderBy": 2 + }, + { + "publicationItemUUID": "EB9098E5-B951-48DC-93E7-904B0BC89967", + "docketEntryUUID": "CAD07A5A-BEDC-4D29-AE9D-15B4803ADA99", + "caseInstanceUUID": "3E76399E-3B96-446C-9BC6-00514B31362D", + "caseNumber": "CR-210412", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Mary Amanda Mae Busby v. State of Alabama. (Appeal from Jefferson Circuit Court: CC-18-3612).", + "decision": "Affirmed by Memorandum.", + "orderBy": 2 + }, + { + "publicationItemUUID": "E17D3E07-8CC6-4405-B352-A3757781793B", + "docketEntryUUID": "93EBEC56-BB7F-4E80-BD73-9729CB542CBC", + "caseInstanceUUID": "E86E352B-DF36-49A4-B4F7-1D1F17F4B48D", + "caseNumber": "CR-210400", + "groupName": "Judge Cole", + "groupOrderBy": 3, + "title": "LaForest Carmichael v. State of Alabama (Appeal from Calhoun Circuit Court: CC-16-2162.60, CC-16-2163.60, CC-16-2164.60, and CC-16-2165.60)", + "decision": "Affirmed by Memorandum.", + "orderBy": 2 + }, + { + "publicationItemUUID": "C7423561-981B-4957-987D-0C6D48C1124F", + "docketEntryUUID": "1D653E78-FDC2-4496-AF69-1D198093908B", + "caseInstanceUUID": "2C3957D7-9992-47AF-892A-D3DF593F8909", + "caseNumber": "CR-2022-0515", + "groupName": "Judge McCool", + "groupOrderBy": 2, + "title": "Brian Pierson v. State of Alabama (Appeal from Mobile Circuit Court: CC-20-2689)", + "decision": "Affirmed by Memorandum on Return to Remand.", + "orderBy": 2 + }, + { + "publicationItemUUID": "BD1F5567-23C3-443B-9E8A-AE5626B75279", + "docketEntryUUID": "5C6577FA-FC97-4612-8046-3A2419B32E0F", + "caseInstanceUUID": "27289903-A409-4D74-9610-9FAA5C4D2F30", + "caseNumber": "CR-2022-0635", + "groupName": "Judge Cole", + "groupOrderBy": 3, + "title": "Joseph Whitworth v. City of Huntsville (Appeal from Madison Circuit Court: CC-21-3663 and CC-21-3664)", + "decision": "Affirmed by Memorandum.", + "orderBy": 3 + }, + { + "publicationItemUUID": "6A256BFB-66EF-4E5B-8D4C-FB20A7A258D1", + "docketEntryUUID": "9D64F88B-33F0-4B3B-BFF6-3DABC88EA9A9", + "caseInstanceUUID": "FE64BCA7-2749-42B3-BC3C-73DA51938AF9", + "caseNumber": "CR-2022-0499", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Linda Doyle v. State of Alabama (Appeal from Baldwin Circuit Court: CC-20-2001).", + "decision": "Affirmed by Memorandum.", + "orderBy": 3 + }, + { + "publicationItemUUID": "8D97AA46-26D4-4A32-9E98-9B2608CEFCC0", + "docketEntryUUID": "3248DD84-5572-4384-A3EB-8973CBDFAA2A", + "caseInstanceUUID": "1BD95A9F-295B-4BDC-ABAE-9AE62C484C55", + "caseNumber": "CR-2022-0613", + "groupName": "Judge McCool", + "groupOrderBy": 2, + "title": "Christopher Lee Richards v. State of Alabama (Appeal from Montgomery Circuit Court: CC-21-1094)", + "decision": "Affirmed by Memorandum.", + "orderBy": 3 + }, + { + "publicationItemUUID": "259E8C5B-434D-417C-9960-4E24E6604442", + "docketEntryUUID": "F7658F32-F480-4CB0-B994-E30209519EBB", + "caseInstanceUUID": "62B7C05C-4CA1-4EBB-B5AB-21F3AE6CE513", + "caseNumber": "CR-2022-0992", + "groupName": "Judge Minor", + "groupOrderBy": 4, + "title": "Alfred Coats v. Alabama Board of Pardons and Paroles (Montgomery Circuit Court: CV-22-900576)", + "decision": "Affirmed by Memorandum.", + "orderBy": 3 + }, + { + "publicationItemUUID": "09512508-51AA-4A96-A20E-DD169E7DF971", + "docketEntryUUID": "A7A3A7F6-C7C4-452B-A784-BAB1B5C62E3D", + "caseInstanceUUID": "42BE712F-EC13-457F-8D54-191D8C788D4F", + "caseNumber": "CR-210361", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Cody Bragg v. State of Alabama (Appeal from Sumter Circuit Court: CC-17-57)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "9DC563E7-04EA-4C2E-88F6-380560B8110D", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "4FC9CA57-7FEC-41CB-8E26-716DB19D95DE", + "docketEntryUUID": "BE6BD27E-FA41-47C6-A671-2E48DA3FD346", + "caseInstanceUUID": "96C5C1F4-99F6-49F2-8BD0-89F536CBEC28", + "caseNumber": "CR-210393", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Benjamin Young v. State of Alabama (Appeal from Colbert Circuit Court: CC-16-339.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "668F469F-0527-4620-AFE8-E823397CF41B", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "CB747569-AA82-417E-887E-9628AD887D44", + "docketEntryUUID": "209A2C07-436D-4FF9-9920-BF688D7C6337", + "caseInstanceUUID": "771596D0-E599-4FE2-A3C4-6C78479FB0CB", + "caseNumber": "CR-2022-1069", + "groupName": "Judge Minor", + "groupOrderBy": 4, + "title": "Darren Jamahl Smith v. State of Alabama (Appeal from Morgan Circuit Court: CC-21-633)", + "decision": "Affirmed by Memorandum", + "orderBy": 4 + }, + { + "publicationItemUUID": "9485D377-ADB3-4ECB-A035-41BEF4ADC45C", + "docketEntryUUID": "15E720AC-8521-4CDF-808A-4C9B49F59F27", + "caseInstanceUUID": "903EA3AC-DDE1-4209-92B0-562B9383EF6A", + "caseNumber": "CR-2022-0727", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Tavarius Eugene Wade v. State of Alabama (Appeal from Tuscaloosa Circuit Court: CC-22-1)", + "decision": "Affirmed by Memorandum.", + "orderBy": 4 + }, + { + "publicationItemUUID": "EBE48AE3-2A6F-47D3-BD57-80E7EF7FC6D9", + "docketEntryUUID": "908FDA2D-43BF-43B7-9C53-6DCB14218352", + "caseInstanceUUID": "5E82A1E4-D88D-464D-B19D-D55A06F56400", + "caseNumber": "CR-2022-0706", + "groupName": "Judge Cole", + "groupOrderBy": 3, + "title": "Rex Duard Tidmore v. State of Alabama (Appeal from DeKalb Circuit Court: CC-19-391, CC-20-502, CC-20-503, CC-20-504, and CC-20-505)", + "decision": "Affirmed by Memorandum.", + "orderBy": 4 + }, + { + "publicationItemUUID": "6F441A66-870D-4F9E-8BAA-76E0D58D0931", + "docketEntryUUID": "B2C7DD6B-E766-47E7-9427-DE286F35BC1A", + "caseInstanceUUID": "20E53E08-A437-4FEA-8137-DC2F740DA2A6", + "caseNumber": "CR-2022-0617", + "groupName": "Judge McCool", + "groupOrderBy": 2, + "title": "James McConico, Jr. v. State of Alabama (Appeal from Conecuh Circuit Court: CC-95-34.91)", + "decision": "Affirmed by Memorandum.", + "orderBy": 4 + }, + { + "publicationItemUUID": "462A5B76-53CC-4A7A-B4F5-16C8E5DF8252", + "docketEntryUUID": "A7985A90-9C95-4D2E-94E9-55F1DBC512C3", + "caseInstanceUUID": "82FA5280-864D-499C-9A58-16877B45CB12", + "caseNumber": "CR-2022-0719", + "groupName": "Judge Cole", + "groupOrderBy": 3, + "title": "Charles Bryant Hughes, Jr. v. State of Alabama (Appeal from Elmore Circuit Court: CC-17-5.61)", + "decision": "Affirmed by Memorandum.", + "orderBy": 5 + }, + { + "publicationItemUUID": "535B4DB3-0048-4F8B-9944-0A4AB54F5995", + "docketEntryUUID": "BA171DE0-CAD1-4AAC-9A64-0DE67FD56303", + "caseInstanceUUID": "00496EED-5B07-44EB-9F47-10626FADE0DF", + "caseNumber": "CR-2022-0867", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Zachary Hugh Dollar v. State of Alabama (Appeal from Houston Circuit Court: CC-20-1144, CC-20-1145, CC-20-1146, and CC-20-1147)", + "decision": "Affirmed by Memorandum on Return to Remand.", + "orderBy": 5 + }, + { + "publicationItemUUID": "13FE717C-B58F-4476-B635-97EAD68365D7", + "docketEntryUUID": "B168657A-F7D5-4E08-8AF8-480039C90876", + "caseInstanceUUID": "9D11D423-67A4-486A-A3CF-AB65139586E4", + "caseNumber": "CR-2022-0683", + "groupName": "Judge McCool", + "groupOrderBy": 2, + "title": "Amir G. James v. State of Alabama (Appeal from Autauga Circuit Court: CC-20-113)", + "decision": "Affirmed by Memorandum.", + "orderBy": 5 + }, + { + "publicationItemUUID": "2C796184-A602-4F8E-ACE1-09013D99D317", + "docketEntryUUID": "8ABA7A8C-1780-46FB-8BEB-BB319BAB19D7", + "caseInstanceUUID": "846D6677-C03B-445F-9DC6-A1364BB415EB", + "caseNumber": "CR-2022-1200", + "groupName": "Judge Minor", + "groupOrderBy": 4, + "title": "Joshua Gerald Lott v. State of Alabama (Appeal from Cullman Circuit Court: CC-19-334.70)", + "decision": "Affirmed by Memorandum.", + "orderBy": 5 + }, + { + "publicationItemUUID": "4C427AB4-0603-48AC-931D-A049AD2D53E7", + "docketEntryUUID": "2057552D-9B96-41F3-A3DC-F2579217AF89", + "caseInstanceUUID": "B48B8404-518F-4B61-90D4-20AF0BD531D2", + "caseNumber": "CR-2022-0642", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Derrick D. Peterson v. State of Alabama (Appeal from Jefferson Circuit Court: CC-20-673, CC-20-674, and CC-20-675)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "16C81A95-1B8B-42AE-B55B-8D8CF71065AD", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "2F00AB19-549B-441F-804F-F7A7D4D669D1", + "docketEntryUUID": "4276CBEA-38CF-446A-A740-37489B5CF7A1", + "caseInstanceUUID": "6818292B-D3AB-47DD-A368-B78F32C463FD", + "caseNumber": "CR-2022-0879", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Terrance Jermaine Holder v. State of Alabama (Appeal from Jefferson Circuit Court: CC-19-3944)", + "decision": "Affirmed by Memorandum.", + "orderBy": 6 + }, + { + "publicationItemUUID": "BA7E8D25-B4B1-4613-8BB0-05CB82229DBE", + "docketEntryUUID": "A7CA48F6-10CB-47E7-A226-FB05F7306F32", + "caseInstanceUUID": "12073A3B-AA68-40AC-953D-7C5FC9950594", + "caseNumber": "CR-2022-0991", + "groupName": "On Rehearing", + "groupOrderBy": 5, + "title": "Roger Dale Frazier v. State of Alabama (Appeal from Jefferson Circuit Court: CC-95-5542)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "CA2E5054-5E9D-4A83-9151-B8E843F90C0E", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "C5727966-1C8A-4DCC-B60D-CF60A8D95E74", + "docketEntryUUID": "63813EAC-547A-4A14-91C9-9DB08CA06254", + "caseInstanceUUID": "86E6BF3A-9834-4046-8A6B-3F2B526D4E3E", + "caseNumber": "CR-2022-1283", + "groupName": "Judge Minor", + "groupOrderBy": 4, + "title": "David Shannon Wright v. State of Alabama (Appeal from Calhoun Circuit Court: CC-19-1501.71 and CC-21-2161.70)", + "decision": "Affirmed by Memorandum.", + "orderBy": 6 + }, + { + "publicationItemUUID": "438F051A-3838-4CAB-9186-DDE1EC4687C3", + "docketEntryUUID": "A96DFA77-1E1F-4C41-9C79-F61E7ECE0DFA", + "caseInstanceUUID": "4D6F9473-653F-4EA8-9173-E54987DAF8EF", + "caseNumber": "CR-2022-0827", + "groupName": "Judge McCool", + "groupOrderBy": 2, + "title": "Latransezon Malloy v. State of Alabama (Appeal from Madison Circuit Court: CC-15-2581.60)", + "decision": "Affirmed by Memorandum.", + "orderBy": 6 + }, + { + "publicationItemUUID": "131035F3-9112-4FD0-BEA4-E72811568A7A", + "docketEntryUUID": "306DAAB5-0235-448D-923A-8268DB683185", + "caseInstanceUUID": "9C87CD57-0152-483F-B859-254D5DE7DE58", + "caseNumber": "CR-2022-0791", + "groupName": "Judge Cole", + "groupOrderBy": 3, + "title": "Jon Braden Still v. State of Alabama (Appeal from Escambia Circuit Court: CC-14-258.74)", + "decision": "Affirmed by Memorandum.", + "orderBy": 6 + }, + { + "publicationItemUUID": "14210103-FC6A-450B-AB7E-EDB31F7EFCA2", + "docketEntryUUID": "C8793150-840D-49A9-8D42-CBE44A25A3C5", + "caseInstanceUUID": "E766649A-E1D2-46AB-9D53-582578B78CB3", + "caseNumber": "CR-2022-0843", + "groupName": "Judge McCool", + "groupOrderBy": 2, + "title": "Raymond Keith Swink v. State of Alabama (Appeal from Jefferson Circuit Court: CC-19-58.60)", + "decision": "Affirmed by Memorandum.", + "orderBy": 7 + }, + { + "publicationItemUUID": "86205D17-A4FB-4349-BD82-6F699B5EDFF6", + "docketEntryUUID": "13695824-9A99-4E64-BB3C-A0F4DF34030E", + "caseInstanceUUID": "B63F98E1-3F5D-4D5A-845F-79C05C5DD184", + "caseNumber": "CR-2022-0792", + "groupName": "Judge Cole", + "groupOrderBy": 3, + "title": "James Lavondria Tunstall v. State of Alabama (Appeal from Mobile Circuit Court: CC-19-2458)", + "decision": "Affirmed by Memorandum.", + "orderBy": 7 + }, + { + "publicationItemUUID": "4938CCAC-3954-4B6D-A0CC-D416720BB441", + "docketEntryUUID": "E09A4D6B-3CA9-4263-82B3-7BBA0903E91E", + "caseInstanceUUID": "1F02E4D7-0A49-45A7-8667-E32BA4FA7041", + "caseNumber": "CR-2022-1129", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Layne Heath Gerbig v. State of Alabama (Appeal from Jackson Circuit Court: CC-19-1237)", + "decision": "Affirmed by Memorandum.", + "orderBy": 7 + }, + { + "publicationItemUUID": "A6A3765F-1800-4376-8D3E-8BB1E6E07ECE", + "docketEntryUUID": "440F8142-9B1F-4852-B683-6E00624FF348", + "caseInstanceUUID": "59BF8693-384B-4A62-991A-421FF4BD4275", + "caseNumber": "CR-2022-1296", + "groupName": "Judge Minor", + "groupOrderBy": 4, + "title": "James Carlson Belk v. State of Alabama (Appeal from Marion Circuit Court: CC-21-183.70)", + "decision": "Affirmed by Memorandum.", + "orderBy": 7 + }, + { + "publicationItemUUID": "D490BBA1-9195-4B12-81CF-9560CFEBECA8", + "docketEntryUUID": "3FDBF727-0A66-47D7-AA45-CD346C194DB9", + "caseInstanceUUID": "03B62399-F658-4015-9629-972F36C1ACBD", + "caseNumber": "CR-2022-1305", + "groupName": "Judge Minor", + "groupOrderBy": 4, + "title": "Ernest Wayne McCrary v. Alabama Board of Pardons and Paroles (Appeal from Montgomery Circuit Court: CV-22-87)", + "decision": "Affirmed by Memorandum.", + "orderBy": 8 + }, + { + "publicationItemUUID": "97230870-6746-4B9F-8303-E2240AC6F561", + "docketEntryUUID": "7AEB1ED4-4082-4D95-9CC1-960E9D0E960E", + "caseInstanceUUID": "8A384A2B-1091-41D7-ACB4-D1A49268FCA4", + "caseNumber": "CR-2022-1163", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Tyrone Snell v. State of Alabama (Appeal from Houston Circuit Court: CC-20-1117, CC-20-1118, and CC-20-1119)", + "decision": "Affirmed by Memorandum.", + "orderBy": 8 + }, + { + "publicationItemUUID": "B0621CE2-1570-458F-AEE3-191E6600BF18", + "docketEntryUUID": "2ED396D5-ACC3-49FF-9FA3-AA14299E43CD", + "caseInstanceUUID": "5A2B7961-A444-4D52-AD78-EB527B9746B9", + "caseNumber": "CR-2022-0928", + "groupName": "Judge McCool", + "groupOrderBy": 2, + "title": "Brandon Wayne Flynn v. State of Alabama (Appeal from Etowah Circuit Court: CC-18-1052.70)", + "decision": "Affirmed by Memorandum.", + "orderBy": 8 + }, + { + "publicationItemUUID": "2AD68261-B54E-4CC1-A96D-2B58367C62C6", + "docketEntryUUID": "B51F5335-2177-43EA-8B20-1E9EF53ADD01", + "caseInstanceUUID": "E5572819-9399-4796-A638-DDB9B04C2320", + "caseNumber": "CR-2022-0817", + "groupName": "Judge Cole", + "groupOrderBy": 3, + "title": "Steven Jerome Fike v. State of Alabama (Appeal from Elmore District Court: DC-21-1661)", + "decision": "Affirmed by Memorandum.", + "orderBy": 8 + }, + { + "publicationItemUUID": "D7A8E0DD-A666-4997-B8B5-57D26C43085C", + "docketEntryUUID": "B9D87795-EF52-4404-986B-4563893DA502", + "caseInstanceUUID": "80B9FEA9-DD2F-426F-B863-D69C349F79DB", + "caseNumber": "CR-2022-0975", + "groupName": "Judge Cole", + "groupOrderBy": 3, + "title": "Zachary Scott Cassady v. State of Alabama (Appeal from Covington Circuit Court: CC-21-252.71)", + "decision": "Affirmed by Memorandum.", + "orderBy": 9 + }, + { + "publicationItemUUID": "155A499C-FF6A-4DA3-A464-DFD2A54952FF", + "docketEntryUUID": "564083DC-50CC-4C1F-94D2-6D7A6A84FF32", + "caseInstanceUUID": "7A7E1BED-BAF2-444A-AE7E-93F3A4EA1E6A", + "caseNumber": "CR-2022-0998", + "groupName": "Judge McCool", + "groupOrderBy": 2, + "title": "Shaniah Woods v. State of Alabama (Appeal from Mobile Circuit Court: CC-14-828.62)", + "decision": "Affirmed by Memorandum.", + "orderBy": 9 + }, + { + "publicationItemUUID": "C25F8882-7EA4-4F07-84F8-3AD0C4FEB09E", + "docketEntryUUID": "135222FC-2AC1-4AD0-B76E-0EE98186FC71", + "caseInstanceUUID": "1D301085-561C-4E00-A4FB-3E1B5E05F0C8", + "caseNumber": "CR-2023-0084", + "groupName": "Judge Minor", + "groupOrderBy": 4, + "title": "Hollis Ray Cox v. State of Alabama (Appeal from Marion Circuit Court: CC-14-365.70)", + "decision": "Affirmed by Memorandum.", + "orderBy": 9 + }, + { + "publicationItemUUID": "84E90BE4-8771-43AD-80C6-98292B09EC92", + "docketEntryUUID": "A6E6DAB6-6D84-494D-A6B0-CBA43887AE66", + "caseInstanceUUID": "CEC2AF08-0E94-4E2D-8DB6-8D165AA20E6E", + "caseNumber": "CR-2022-1207", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Anthony Burdette Taylor v. State of Alabama (Appeal from Jefferson Circuit Court: CC-19-3784)", + "decision": "Affirmed by Memorandum.", + "orderBy": 9 + }, + { + "publicationItemUUID": "41DDCAC1-B488-491D-B493-E678F19A5E72", + "docketEntryUUID": "24B6324E-170E-4A57-BE56-85A309328F74", + "caseInstanceUUID": "F9F14399-491B-43D4-8500-B243EC87E4E1", + "caseNumber": "CR-2022-1253", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Amber Jolleen Kuta v. State of Alabama (Appeal from Mobile Circuit Court: CC-20-794)", + "decision": "Affirmed by Memorandum.", + "orderBy": 10 + }, + { + "publicationItemUUID": "53337F2E-AE8F-47AA-95C8-F5FDCF0C08A4", + "docketEntryUUID": "C9ADA6BA-0D96-41DB-AA79-DB63933FCBFB", + "caseInstanceUUID": "EF89CAEB-EFAC-40BF-A3F8-7BE81E306F64", + "caseNumber": "CR-2022-1081", + "groupName": "Judge Cole", + "groupOrderBy": 3, + "title": "Raheem Janair Carswell v. State of Alabama (Appeal from Covington Circuit Court: CC-22-29.70)", + "decision": "Affirmed by Memorandum.", + "orderBy": 10 + }, + { + "publicationItemUUID": "D48CE875-FEE9-4A69-B3C4-0E44A795D3A0", + "docketEntryUUID": "96B18FE3-FAF9-43FB-93E8-D697EEC8CA89", + "caseInstanceUUID": "5650DA4A-B847-43AC-819C-3744FAF93673", + "caseNumber": "CR-2022-1113", + "groupName": "Judge McCool", + "groupOrderBy": 2, + "title": "Delantrey Marquez Bates v. State of Alabama (Appeal from Morgan Circuit Court: CC-18-1454)", + "decision": "Affirmed by Memorandum.", + "orderBy": 10 + }, + { + "publicationItemUUID": "05B66309-3687-4B6E-99C6-0057A67D00FC", + "docketEntryUUID": "55BC4E07-53D2-4217-94CC-C1C6E6BF92E1", + "caseInstanceUUID": "C0BBF036-78BB-4140-8199-CCB46FC90EC0", + "caseNumber": "CR-2022-1115", + "groupName": "Judge McCool", + "groupOrderBy": 2, + "title": "Corey Glenn Wilburn v. State of Alabama (Appeal from Madison Circuit Court: CC-18-2880.70).", + "decision": "Affirmed by Memorandum.", + "orderBy": 11 + }, + { + "publicationItemUUID": "2538B8FD-F946-404F-9FA6-2DB782383632", + "docketEntryUUID": "5E730962-BA21-4C36-9863-314BAC88AE97", + "caseInstanceUUID": "CD01C2AE-3A56-4F60-BB9A-90B691051822", + "caseNumber": "CR-2022-1092", + "groupName": "Judge Cole", + "groupOrderBy": 3, + "title": "Jimmy Lee Webb v. Alabama Department of Corrections (Appeal from St. Clair Circuit Court: CV-21-8)", + "decision": "Affirmed by Memorandum.", + "orderBy": 11 + }, + { + "publicationItemUUID": "3F4C00C5-39A6-45CD-A1E7-E78604F41915", + "docketEntryUUID": "02D5DF86-2170-4751-889C-E272773C5A61", + "caseInstanceUUID": "9B60991B-D226-4CDE-8370-B6BCEFFF66E3", + "caseNumber": "CR-2022-1329", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Anthony Antwon Harris v. State of Alabama (Appeal from Escambia Circuit Court: CC-21-13.60 and CC-20-380.60)", + "decision": "Affirmed by Memorandum.", + "orderBy": 11 + }, + { + "publicationItemUUID": "FEA727D9-FAFD-44B6-8DB8-7AE6EEBC4C85", + "docketEntryUUID": "C780EBF4-A781-4A7C-9E09-A69252AC9706", + "caseInstanceUUID": "36DCA92D-24C9-4961-BF2A-A454115DB167", + "caseNumber": "CR-2023-0028", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Nikequis Lachristopher Green v. State of Alabama (Appeal from Mobile Circuit Court: CC-21-2545.70 and CC-21-2546.70)", + "decision": "Affirmed by Memorandum.", + "orderBy": 12 + }, + { + "publicationItemUUID": "0207442E-E950-4022-8650-EF946EAD9F88", + "docketEntryUUID": "85E9AA7D-62B3-497E-9B11-EB597294C5D5", + "caseInstanceUUID": "19569FDD-C005-4447-8BCE-6957F3870C71", + "caseNumber": "CR-2022-1223", + "groupName": "Judge Cole", + "groupOrderBy": 3, + "title": "Roy Lee Burns v. State of Alabama (Appeal from Mobile Circuit Court: CC-19-943.70, CC-19-944.70,CC-19-945.70,CC-19-946.70, CC-19-947.70,CC-19-948.70,CC-19-949.70, and CC-20-212.70)", + "decision": "Affirmed by Memorandum.", + "orderBy": 12 + }, + { + "publicationItemUUID": "05AB3052-2F66-43B2-A7BB-07018FF1E1C9", + "docketEntryUUID": "8F5CA58A-61C2-4916-8DBC-2EC6451BB5FE", + "caseInstanceUUID": "4B684438-D0CE-4D8B-9496-72D7C0DD6B0E", + "caseNumber": "CR-2023-0032", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Samuel Lee Giles III v. Alabama Department of Corrections (Appeal from Montgomery Circuit Court: CV-22-901110)", + "decision": "Affirmed by Memorandum.", + "orderBy": 13 + } + ] + }, + { + "publicationUUID": "1f618cc8-9b3d-4c1e-9a53-fd6e7be2adcd", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-06-02", + "publicationName": "Court of Criminal Appeals Release List - June 2, 2023", + "publicationNote": "Decisions Announced on Friday, June 2, 2023", + "groupFlag": true, + "scheduledDate": "2023-06-02T14:00:00.000+00:00", + "publicationDate": "2023-06-02T14:31:11.884+00:00", + "publicationItems": [ + { + "publicationItemUUID": "73330862-0294-41CC-A684-DBFC07F2A039", + "docketEntryUUID": "F6EA6BD8-893D-401D-991B-A734FC2BC0F4", + "caseInstanceUUID": "BE09583B-2C8B-4878-8D08-9A0FFD940C4B", + "caseNumber": "CR-210273", + "groupName": "On Rehearing", + "groupOrderBy": 2, + "title": "Courtney E. Williams v. State of Alabama. (Appeal from Dallas Circuit Court: CC18-327)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "DA692583-F1B7-45DE-B5F8-91D855106F43", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "EDBEC74E-9C50-4D24-BDD9-4A295B796671", + "docketEntryUUID": "030F8C91-EA85-4C6B-8A7D-5AA780BB380E", + "caseInstanceUUID": "5581E092-2D1D-45F9-BC3D-5318E6AE65E4", + "caseNumber": "CR-210355", + "groupName": "Presiding Judge Windom", + "groupOrderBy": 1, + "title": "Demario Pack v. State of Alabama. (Appeal from Sumter Circuit Court: CC-17-24)", + "decision": "Affirmed by Memorandum on Return to Remand.", + "orderBy": 1 + } + ] + }, + { + "publicationUUID": "de1e6a35-13ce-4da4-95c2-e116c154100c", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-05-26", + "publicationName": "Court of Criminal Appeals Release List - May 26, 2023", + "publicationNote": "Decisions Announced on Friday, May 26, 2023", + "groupFlag": true, + "scheduledDate": "2023-05-26T15:30:00.000+00:00", + "publicationDate": "2023-05-26T15:31:30.267+00:00", + "publicationItems": [ + { + "publicationItemUUID": "3470AE7C-F449-4246-9542-8D1E21118CBD", + "docketEntryUUID": "2EAAFA21-8E82-460C-A93E-BB9C59F083F7", + "caseInstanceUUID": "1AA7435A-34C8-4DF2-A172-D5485F475F8E", + "caseNumber": "CR-2022-0662", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Stephon Lindsay v. State of Alabama (Appeal from Etowah Circuit Court: CC-13-652.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "FB37E3DA-1FE1-464B-ACF4-B62D86D00A3E", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "8EFFED68-2DDF-472B-8F4E-8A429773290B", + "docketEntryUUID": "98331B49-EF62-4ACE-BFC5-A1424234B647", + "caseInstanceUUID": "0FC366F4-9961-4548-93C8-260BDE1AE25C", + "caseNumber": "CR-2022-0768", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "D. C. R. v. State of Alabama (Appeal from Houston Circuit Court: CC-20-887, CC-20-888, CC-20-897, and CC-20-898)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "A485B3FF-2599-4DBB-BD79-4C486F5EDCC9", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "E116430D-F59F-492F-BD74-FB78980D9EF2", + "docketEntryUUID": "DE9E115B-E97C-4126-AF3C-4993AA003EF3", + "caseInstanceUUID": "7CE56734-4DE3-4627-8DB4-6E3BC9E3DB1B", + "caseNumber": "CR-2022-0811", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "E. L. K. v. State of Alabama (Appeal from Madison Circuit Court: CC-18-2858.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "BFC17F88-2BD7-4B44-B5A4-23B27AA66381", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "1D51CAE7-0127-42E7-BA12-AF5A1DF38C31", + "docketEntryUUID": "EAF48DE9-1588-457D-BE52-C64979A387BE", + "caseInstanceUUID": "9EFF1E93-4B6E-4DF8-BADA-24A443820A3A", + "caseNumber": "CR-2022-0823", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Courtney Rayshun Elston v. State of Alabama (Appeal from Calhoun Circuit Court: CC-08-1025.62)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 4, + "documents": [ + { + "documentLinkUUID": "024C48D0-8D73-420C-AB82-857DE1369140", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "6D413E23-D76D-4F16-B49E-A24398984316", + "docketEntryUUID": "6D08F949-F60B-4C3B-A7D3-23AE975BD7AB", + "caseInstanceUUID": "008EDEBD-E735-4644-9974-15A0C7633B55", + "caseNumber": "CR-2022-1096", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Darron Devon Woods v. State of Alabama (Appeal from Lamar Circuit Court: CC-19-152.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 5, + "documents": [ + { + "documentLinkUUID": "91574F4F-4920-4E75-A3C5-8F6C135E6A33", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "0C9A6B76-AA42-412D-8211-993EC16AE103", + "docketEntryUUID": "FE2CDFD3-1F04-46C3-863C-BFF75C6596B5", + "caseInstanceUUID": "79A5188B-A64A-45F3-8AB6-F0AD31384439", + "caseNumber": "CR-2022-1157", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "David LeCroy Cox, Jr. v. State of Alabama (Appeal from Marshall Circuit Court: CC-2020-656)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 6, + "documents": [ + { + "documentLinkUUID": "BB9E1FF8-09B0-4B13-B183-129548CD5DBF", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "1D283E6D-F5C6-4CDC-8204-6CAE13A5A36E", + "docketEntryUUID": "0DB43FD2-2AC8-42BE-A168-6C0A8D0285EF", + "caseInstanceUUID": "5D4BA0CA-9142-40EC-9D19-D53807304888", + "caseNumber": "CR-2022-1240", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Jamorris Cage v. State of Alabama (Appeal from Mobile Circuit Court: CC-21-3514)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 7, + "documents": [ + { + "documentLinkUUID": "57F7ED4B-2F6B-4BF7-948F-BCDFCAA1F366", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "42DC35C4-B1F1-4B8C-B267-3DDDB052C9B4", + "docketEntryUUID": "04856C9A-6754-46DC-BE33-144DCC9752DA", + "caseInstanceUUID": "70203897-97DD-4E40-97C2-DA0F690F328F", + "caseNumber": "CR-2022-1260", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Adrian James v. State of Alabama (Appeal from Mobile Circuit Court: CC-09-846.61)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 8, + "documents": [ + { + "documentLinkUUID": "6A89BC14-331F-4DC8-B6E8-E1A6827B3CD8", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "4f3836c7-f815-4d60-893d-4588b73fc558", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-05-19", + "publicationName": "Court of Criminal Appeals Release - May 19, 2023", + "publicationNote": "Decisions Announced on Friday, May 19, 2023", + "groupFlag": true, + "scheduledDate": "2023-05-19T17:00:00.000+00:00", + "publicationDate": "2023-05-19T18:59:33.670+00:00", + "publicationItems": [ + { + "publicationItemUUID": "1D7D0847-5616-46D3-9848-90A8ABD88652", + "docketEntryUUID": "D5D72968-A592-4135-9E9B-282A45E4A9A8", + "caseInstanceUUID": "98CFD703-37EE-4A12-9C7E-987387C25C7F", + "caseNumber": "CR-210046", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Charles Anthony Mosby v. State of Alabama. (Appeal from Madison Circuit Court: CC18-5155)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "77BE547C-5D49-4031-A379-0F30C861499B", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "64F05BF7-F93B-449C-A676-275B182CEBE3", + "docketEntryUUID": "7E3533F9-8302-458F-84E7-0E0F41487F58", + "caseInstanceUUID": "5DE383A4-2C2E-4BCE-BC3E-03DAAA69B94A", + "caseNumber": "CR-210372", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Walter Richard Rives v. State of Alabama. (Appeal from Marshall Circuit Court: CC-15-267.60)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "70B47741-E3A4-448C-AC32-182170333213", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "0335A940-6D7C-473D-B129-1372D02D6026", + "docketEntryUUID": "1F768B33-897E-4EBC-A449-BEDC51DF47F7", + "caseInstanceUUID": "2FA604F5-3329-4B12-A5A6-1C54C72EE85F", + "caseNumber": "CR-2022-1384", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Zernell Judarious Mills v. State of Alabama (Appeal from Montgomery Circuit Court: CC-21-1572)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 3, + "documents": [ + { + "documentLinkUUID": "14DFE443-E006-458B-B6EC-BD94316661DB", + "documentName": "Rehearing Notice" + } + ] + } + ] + }, + { + "publicationUUID": "c8e6135b-c6dc-41a4-a7f7-c11b5d393695", + "courtID": "2", + "courtAbbreviation": "Alabama Court of Criminal Appeals", + "publicationNumber": "CR-RELEASE-2023-05-12", + "publicationName": "Court of Criminal Appeals Release List - May 12, 2023", + "publicationNote": "Decisions Announced on Friday, May 12, 2023", + "groupFlag": true, + "scheduledDate": "2023-05-12T14:00:00.000+00:00", + "publicationDate": "2023-05-12T14:24:20.110+00:00", + "publicationItems": [ + { + "publicationItemUUID": "21D20533-B4BA-43F5-AEDD-63B0DC407E19", + "docketEntryUUID": "E8F6CDD7-EB6A-4284-A29B-49128621FED1", + "caseInstanceUUID": "FB47C311-C698-4596-A16E-EBF331C025BA", + "caseNumber": "CR-2022-1134", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "John Michael Woodruff v. State of Alabama (Appeal from Shelby Circuit Court: CC-18-354.71; CC-18-355.70 and CC-18-418.70)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 1, + "documents": [ + { + "documentLinkUUID": "5AC25BF9-421A-4F93-B097-E1000DC26F0E", + "documentName": "Rehearing Notice" + } + ] + }, + { + "publicationItemUUID": "EFFC933C-7180-4D92-B962-93B91B34F1E1", + "docketEntryUUID": "2CF4E5D4-D51D-4512-AEF1-93CE48F28DE1", + "caseInstanceUUID": "EF070B8E-4042-4F86-B4D2-EF296A6E0F8C", + "caseNumber": "CR-2022-1149", + "groupName": "On Rehearing", + "groupOrderBy": 1, + "title": "Steven Taylor Cobb v. State of Alabama (Appeal from Calhoun Circuit Court: CC-16-666)", + "decision": "Application for Rehearing Overruled.", + "orderBy": 2, + "documents": [ + { + "documentLinkUUID": "01CC4238-453B-4405-9847-8A28E9E60F90", + "documentName": "Rehearing Notice" + } + ] + } + ] + } + ] + }, + "page": { + "size": 25, + "totalElements": 24, + "totalPages": 1, + "number": 0 + } +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/alaska_example.compare.json b/tests/examples/opinions/united_states/alaska_example.compare.json index 6a1c8a9fc..fbef7cc13 100644 --- a/tests/examples/opinions/united_states/alaska_example.compare.json +++ b/tests/examples/opinions/united_states/alaska_example.compare.json @@ -7,7 +7,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16685", - "citations": "7416", + "citations": "", "case_name_shorts": "" }, { @@ -18,7 +18,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16916", - "citations": "7418", + "citations": "", "case_name_shorts": "" }, { @@ -29,7 +29,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S17129", - "citations": "7417", + "citations": "", "case_name_shorts": "" }, { @@ -40,7 +40,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16654", - "citations": "7415", + "citations": "", "case_name_shorts": "" }, { @@ -51,7 +51,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S17290", - "citations": "7414", + "citations": "", "case_name_shorts": "" }, { @@ -62,7 +62,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16983", - "citations": "7413", + "citations": "", "case_name_shorts": "" }, { @@ -73,7 +73,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16854", - "citations": "7411", + "citations": "", "case_name_shorts": "" }, { @@ -84,7 +84,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16795", - "citations": "7410", + "citations": "", "case_name_shorts": "" }, { @@ -95,7 +95,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S17184", - "citations": "7409", + "citations": "", "case_name_shorts": "" }, { @@ -106,7 +106,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16928", - "citations": "7412", + "citations": "", "case_name_shorts": "" }, { @@ -117,7 +117,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16697", - "citations": "7407", + "citations": "", "case_name_shorts": "" }, { @@ -128,7 +128,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S17144", - "citations": "7408", + "citations": "", "case_name_shorts": "" }, { @@ -139,7 +139,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16903", - "citations": "7406", + "citations": "", "case_name_shorts": "" }, { @@ -150,7 +150,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S17027", - "citations": "7402", + "citations": "", "case_name_shorts": "" }, { @@ -161,7 +161,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16961", - "citations": "7405", + "citations": "", "case_name_shorts": "" }, { @@ -172,7 +172,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16711", - "citations": "7404", + "citations": "", "case_name_shorts": "" }, { @@ -183,7 +183,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16866", - "citations": "7399", + "citations": "", "case_name_shorts": "" }, { @@ -194,7 +194,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16715", - "citations": "7398", + "citations": "", "case_name_shorts": "" }, { @@ -205,7 +205,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16308, S16417", - "citations": "7283", + "citations": "", "case_name_shorts": "" }, { @@ -216,7 +216,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16862", - "citations": "7274", + "citations": "", "case_name_shorts": "" }, { @@ -227,7 +227,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16594, S16574", - "citations": "7221", + "citations": "", "case_name_shorts": "" }, { @@ -238,7 +238,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16285", - "citations": "7203", + "citations": "", "case_name_shorts": "" }, { @@ -249,7 +249,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16143, S16127", - "citations": "7192", + "citations": "", "case_name_shorts": "" }, { @@ -260,7 +260,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S16075, S16056", - "citations": "7189", + "citations": "", "case_name_shorts": "" }, { @@ -271,7 +271,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S15819, S15799", - "citations": "7179", + "citations": "", "case_name_shorts": "" }, { @@ -282,7 +282,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S15913", - "citations": "7086", + "citations": "", "case_name_shorts": "" }, { @@ -293,7 +293,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S15841, S15811", - "citations": "7075", + "citations": "", "case_name_shorts": "" }, { @@ -304,7 +304,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S15253, S15014", - "citations": "7049", + "citations": "", "case_name_shorts": "" }, { @@ -315,7 +315,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S15070, S15067", - "citations": "6982", + "citations": "", "case_name_shorts": "" }, { @@ -326,7 +326,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S15130, S15219", - "citations": "6976", + "citations": "", "case_name_shorts": "" }, { @@ -337,7 +337,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14883, S14864", - "citations": "6966", + "citations": "", "case_name_shorts": "" }, { @@ -348,7 +348,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S15346", - "citations": "6957", + "citations": "", "case_name_shorts": "" }, { @@ -359,7 +359,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14524, S14503", - "citations": "6948", + "citations": "", "case_name_shorts": "" }, { @@ -370,7 +370,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14893, S14874", - "citations": "6938", + "citations": "", "case_name_shorts": "" }, { @@ -381,7 +381,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S15055, S14945", - "citations": "6923", + "citations": "", "case_name_shorts": "" }, { @@ -392,7 +392,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S15037, S14588", - "citations": "6921", + "citations": "", "case_name_shorts": "" }, { @@ -403,7 +403,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14534", - "citations": "6911", + "citations": "", "case_name_shorts": "" }, { @@ -414,7 +414,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14213, S14194", - "citations": "6910", + "citations": "", "case_name_shorts": "" }, { @@ -425,7 +425,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14796, S14686, S14775", - "citations": "6887", + "citations": "", "case_name_shorts": "" }, { @@ -436,7 +436,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14863, S14823, S14873", - "citations": "6879", + "citations": "", "case_name_shorts": "" }, { @@ -447,7 +447,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14674, S14654, S14953", - "citations": "6874", + "citations": "", "case_name_shorts": "" }, { @@ -458,7 +458,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14262, S14254", - "citations": "6876", + "citations": "", "case_name_shorts": "" }, { @@ -469,7 +469,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14116, S14095, S14125", - "citations": "6867", + "citations": "", "case_name_shorts": "" }, { @@ -480,7 +480,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14994, S14810", - "citations": "6853", + "citations": "", "case_name_shorts": "" }, { @@ -491,7 +491,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14504", - "citations": "6850", + "citations": "", "case_name_shorts": "" }, { @@ -502,7 +502,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14600, S14580", - "citations": "6810", + "citations": "", "case_name_shorts": "" }, { @@ -513,7 +513,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S13643, S13613", - "citations": "6811", + "citations": "", "case_name_shorts": "" }, { @@ -524,7 +524,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S13745, S13675", - "citations": "6804", + "citations": "", "case_name_shorts": "" }, { @@ -535,7 +535,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14132, S14122", - "citations": "6802", + "citations": "", "case_name_shorts": "" }, { @@ -546,7 +546,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14180", - "citations": "6757", + "citations": "", "case_name_shorts": "" }, { @@ -557,7 +557,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14089", - "citations": "6746", + "citations": "", "case_name_shorts": "" }, { @@ -568,7 +568,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "S14318", - "citations": "6744", + "citations": "", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/alaskactapp_example.compare.json b/tests/examples/opinions/united_states/alaskactapp_example.compare.json index b57d5632a..e1051efcc 100644 --- a/tests/examples/opinions/united_states/alaskactapp_example.compare.json +++ b/tests/examples/opinions/united_states/alaskactapp_example.compare.json @@ -7,7 +7,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12442", - "citations": "2661", + "citations": "", "case_name_shorts": "" }, { @@ -18,7 +18,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12135", - "citations": "2660", + "citations": "", "case_name_shorts": "" }, { @@ -29,7 +29,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12614", - "citations": "2658", + "citations": "", "case_name_shorts": "" }, { @@ -40,7 +40,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12557", - "citations": "2659", + "citations": "", "case_name_shorts": "" }, { @@ -51,7 +51,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12645", - "citations": "2657", + "citations": "", "case_name_shorts": "" }, { @@ -62,7 +62,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12301, A12282", - "citations": "2656", + "citations": "", "case_name_shorts": "" }, { @@ -73,7 +73,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12904", - "citations": "2655", + "citations": "", "case_name_shorts": "" }, { @@ -84,7 +84,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12097", - "citations": "2654", + "citations": "", "case_name_shorts": "" }, { @@ -95,7 +95,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12620", - "citations": "2652", + "citations": "", "case_name_shorts": "" }, { @@ -106,7 +106,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12494", - "citations": "2653", + "citations": "", "case_name_shorts": "" }, { @@ -117,7 +117,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12382", - "citations": "2651", + "citations": "", "case_name_shorts": "" }, { @@ -128,7 +128,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11966", - "citations": "2650", + "citations": "", "case_name_shorts": "" }, { @@ -139,7 +139,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12719", - "citations": "2649", + "citations": "", "case_name_shorts": "" }, { @@ -150,7 +150,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12091", - "citations": "2648", + "citations": "", "case_name_shorts": "" }, { @@ -161,7 +161,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A13416", - "citations": "2647", + "citations": "", "case_name_shorts": "" }, { @@ -172,7 +172,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12294", - "citations": "2646", + "citations": "", "case_name_shorts": "" }, { @@ -183,7 +183,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12328", - "citations": "2645", + "citations": "", "case_name_shorts": "" }, { @@ -194,7 +194,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12338", - "citations": "2644", + "citations": "", "case_name_shorts": "" }, { @@ -205,7 +205,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12534", - "citations": "2643", + "citations": "", "case_name_shorts": "" }, { @@ -216,7 +216,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12244", - "citations": "2642", + "citations": "", "case_name_shorts": "" }, { @@ -227,7 +227,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11636", - "citations": "2641", + "citations": "", "case_name_shorts": "" }, { @@ -238,7 +238,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12309", - "citations": "2640", + "citations": "", "case_name_shorts": "" }, { @@ -249,7 +249,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12067", - "citations": "2638", + "citations": "", "case_name_shorts": "" }, { @@ -260,7 +260,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11450", - "citations": "2639", + "citations": "", "case_name_shorts": "" }, { @@ -271,7 +271,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12105", - "citations": "2636", + "citations": "", "case_name_shorts": "" }, { @@ -282,7 +282,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12222", - "citations": "2637", + "citations": "", "case_name_shorts": "" }, { @@ -293,7 +293,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12810", - "citations": "2635", + "citations": "", "case_name_shorts": "" }, { @@ -304,7 +304,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A13315", - "citations": "2634", + "citations": "", "case_name_shorts": "" }, { @@ -315,7 +315,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12640", - "citations": "2633", + "citations": "", "case_name_shorts": "" }, { @@ -326,7 +326,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12443", - "citations": "2632", + "citations": "", "case_name_shorts": "" }, { @@ -337,7 +337,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12804", - "citations": "2631", + "citations": "", "case_name_shorts": "" }, { @@ -348,7 +348,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12119", - "citations": "2630", + "citations": "", "case_name_shorts": "" }, { @@ -359,7 +359,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12600", - "citations": "2629", + "citations": "", "case_name_shorts": "" }, { @@ -370,7 +370,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12617", - "citations": "2628", + "citations": "", "case_name_shorts": "" }, { @@ -381,7 +381,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12131", - "citations": "2627", + "citations": "", "case_name_shorts": "" }, { @@ -392,7 +392,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11949", - "citations": "2626", + "citations": "", "case_name_shorts": "" }, { @@ -403,7 +403,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12323", - "citations": "2625", + "citations": "", "case_name_shorts": "" }, { @@ -414,7 +414,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11699", - "citations": "2623", + "citations": "", "case_name_shorts": "" }, { @@ -425,7 +425,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12271", - "citations": "2622", + "citations": "", "case_name_shorts": "" }, { @@ -436,7 +436,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12470", - "citations": "2621", + "citations": "", "case_name_shorts": "" }, { @@ -447,7 +447,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A13191", - "citations": "2620", + "citations": "", "case_name_shorts": "" }, { @@ -458,7 +458,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12342", - "citations": "2619", + "citations": "", "case_name_shorts": "" }, { @@ -469,7 +469,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11540", - "citations": "2615", + "citations": "", "case_name_shorts": "" }, { @@ -480,7 +480,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12850", - "citations": "2614", + "citations": "", "case_name_shorts": "" }, { @@ -491,7 +491,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12147", - "citations": "2613", + "citations": "", "case_name_shorts": "" }, { @@ -502,7 +502,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12061", - "citations": "2606", + "citations": "", "case_name_shorts": "" }, { @@ -513,7 +513,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11666", - "citations": "2605", + "citations": "", "case_name_shorts": "" }, { @@ -524,7 +524,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11999", - "citations": "2601", + "citations": "", "case_name_shorts": "" }, { @@ -535,7 +535,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11268", - "citations": "2603", + "citations": "", "case_name_shorts": "" }, { @@ -546,7 +546,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12783", - "citations": "2599", + "citations": "", "case_name_shorts": "" }, { @@ -557,7 +557,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12019", - "citations": "2600", + "citations": "", "case_name_shorts": "" }, { @@ -568,7 +568,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12205", - "citations": "2597", + "citations": "", "case_name_shorts": "" }, { @@ -579,7 +579,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11878", - "citations": "2598", + "citations": "", "case_name_shorts": "" }, { @@ -590,7 +590,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12764", - "citations": "2595", + "citations": "", "case_name_shorts": "" }, { @@ -601,7 +601,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12180", - "citations": "2596", + "citations": "", "case_name_shorts": "" }, { @@ -612,7 +612,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12693", - "citations": "2592", + "citations": "", "case_name_shorts": "" }, { @@ -623,7 +623,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12183", - "citations": "2594", + "citations": "", "case_name_shorts": "" }, { @@ -634,7 +634,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11929", - "citations": "2589", + "citations": "", "case_name_shorts": "" }, { @@ -645,7 +645,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12520, A12529", - "citations": "2590", + "citations": "", "case_name_shorts": "" }, { @@ -656,7 +656,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11976", - "citations": "2588", + "citations": "", "case_name_shorts": "" }, { @@ -667,7 +667,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12943", - "citations": "2587", + "citations": "", "case_name_shorts": "" }, { @@ -678,7 +678,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11918", - "citations": "2585", + "citations": "", "case_name_shorts": "" }, { @@ -689,7 +689,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A13015", - "citations": "2583", + "citations": "", "case_name_shorts": "" }, { @@ -700,7 +700,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11716, A11574, A11599, A11600, A11697", - "citations": "2580", + "citations": "", "case_name_shorts": "" }, { @@ -711,7 +711,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12814", - "citations": "2582", + "citations": "", "case_name_shorts": "" }, { @@ -722,7 +722,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11380", - "citations": "2581", + "citations": "", "case_name_shorts": "" }, { @@ -733,7 +733,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12853", - "citations": "2579", + "citations": "", "case_name_shorts": "" }, { @@ -744,7 +744,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12045", - "citations": "2577", + "citations": "", "case_name_shorts": "" }, { @@ -755,7 +755,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12542", - "citations": "2575", + "citations": "", "case_name_shorts": "" }, { @@ -766,7 +766,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12092", - "citations": "2576", + "citations": "", "case_name_shorts": "" }, { @@ -777,7 +777,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12725", - "citations": "2574", + "citations": "", "case_name_shorts": "" }, { @@ -788,7 +788,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12866, A12875, A12886", - "citations": "2573", + "citations": "", "case_name_shorts": "" }, { @@ -799,7 +799,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12188", - "citations": "2572", + "citations": "", "case_name_shorts": "" }, { @@ -810,7 +810,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11909", - "citations": "2571", + "citations": "", "case_name_shorts": "" }, { @@ -821,7 +821,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12004", - "citations": "2570", + "citations": "", "case_name_shorts": "" }, { @@ -832,7 +832,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12024", - "citations": "2569", + "citations": "", "case_name_shorts": "" }, { @@ -843,7 +843,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11300", - "citations": "2568", + "citations": "", "case_name_shorts": "" }, { @@ -854,7 +854,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11820, A11821", - "citations": "2567", + "citations": "", "case_name_shorts": "" }, { @@ -865,7 +865,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10855", - "citations": "2566", + "citations": "", "case_name_shorts": "" }, { @@ -876,7 +876,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12184", - "citations": "2565", + "citations": "", "case_name_shorts": "" }, { @@ -887,7 +887,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11916", - "citations": "2564", + "citations": "", "case_name_shorts": "" }, { @@ -898,7 +898,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12068", - "citations": "2562", + "citations": "", "case_name_shorts": "" }, { @@ -909,7 +909,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12179", - "citations": "2563", + "citations": "", "case_name_shorts": "" }, { @@ -920,7 +920,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11825", - "citations": "2561", + "citations": "", "case_name_shorts": "" }, { @@ -931,7 +931,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11988", - "citations": "2560", + "citations": "", "case_name_shorts": "" }, { @@ -942,7 +942,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12374", - "citations": "2559", + "citations": "", "case_name_shorts": "" }, { @@ -953,7 +953,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12766", - "citations": "2558", + "citations": "", "case_name_shorts": "" }, { @@ -964,7 +964,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12289", - "citations": "2557", + "citations": "", "case_name_shorts": "" }, { @@ -975,7 +975,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11786", - "citations": "2556", + "citations": "", "case_name_shorts": "" }, { @@ -986,7 +986,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11379", - "citations": "2554", + "citations": "", "case_name_shorts": "" }, { @@ -997,7 +997,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11719", - "citations": "2555", + "citations": "", "case_name_shorts": "" }, { @@ -1008,7 +1008,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11592", - "citations": "2553", + "citations": "", "case_name_shorts": "" }, { @@ -1019,7 +1019,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11819, A11829, A11830", - "citations": "2551", + "citations": "", "case_name_shorts": "" }, { @@ -1030,7 +1030,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11608", - "citations": "2552", + "citations": "", "case_name_shorts": "" }, { @@ -1041,7 +1041,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11407", - "citations": "2550", + "citations": "", "case_name_shorts": "" }, { @@ -1052,7 +1052,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12772", - "citations": "2547", + "citations": "", "case_name_shorts": "" }, { @@ -1063,7 +1063,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12077", - "citations": "2548", + "citations": "", "case_name_shorts": "" }, { @@ -1074,7 +1074,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11626", - "citations": "2546", + "citations": "", "case_name_shorts": "" }, { @@ -1085,7 +1085,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11473", - "citations": "2545", + "citations": "", "case_name_shorts": "" }, { @@ -1096,7 +1096,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11484", - "citations": "2542", + "citations": "", "case_name_shorts": "" }, { @@ -1107,7 +1107,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11866", - "citations": "2543", + "citations": "", "case_name_shorts": "" }, { @@ -1118,7 +1118,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11494", - "citations": "2544", + "citations": "", "case_name_shorts": "" }, { @@ -1129,7 +1129,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10791", - "citations": "2538", + "citations": "", "case_name_shorts": "" }, { @@ -1140,7 +1140,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10549", - "citations": "2540", + "citations": "", "case_name_shorts": "" }, { @@ -1151,7 +1151,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11872", - "citations": "2539", + "citations": "", "case_name_shorts": "" }, { @@ -1162,7 +1162,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11892", - "citations": "2541", + "citations": "", "case_name_shorts": "" }, { @@ -1173,7 +1173,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10982", - "citations": "2537", + "citations": "", "case_name_shorts": "" }, { @@ -1184,7 +1184,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11722", - "citations": "2536", + "citations": "", "case_name_shorts": "" }, { @@ -1195,7 +1195,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12166", - "citations": "2534", + "citations": "", "case_name_shorts": "" }, { @@ -1206,7 +1206,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11682", - "citations": "2533", + "citations": "", "case_name_shorts": "" }, { @@ -1217,7 +1217,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11871", - "citations": "2535", + "citations": "", "case_name_shorts": "" }, { @@ -1228,7 +1228,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12392", - "citations": "2532", + "citations": "", "case_name_shorts": "" }, { @@ -1239,7 +1239,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11534", - "citations": "2531", + "citations": "", "case_name_shorts": "" }, { @@ -1250,7 +1250,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12677", - "citations": "2530", + "citations": "", "case_name_shorts": "" }, { @@ -1261,7 +1261,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12009", - "citations": "2529", + "citations": "", "case_name_shorts": "" }, { @@ -1272,7 +1272,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11401", - "citations": "2528", + "citations": "", "case_name_shorts": "" }, { @@ -1283,7 +1283,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11536", - "citations": "2527", + "citations": "", "case_name_shorts": "" }, { @@ -1294,7 +1294,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11514", - "citations": "2526", + "citations": "", "case_name_shorts": "" }, { @@ -1305,7 +1305,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12332", - "citations": "2525", + "citations": "", "case_name_shorts": "" }, { @@ -1316,7 +1316,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12141", - "citations": "2521", + "citations": "", "case_name_shorts": "" }, { @@ -1327,7 +1327,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12032", - "citations": "2524", + "citations": "", "case_name_shorts": "" }, { @@ -1338,7 +1338,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11755", - "citations": "2523", + "citations": "", "case_name_shorts": "" }, { @@ -1349,7 +1349,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11408", - "citations": "2522", + "citations": "", "case_name_shorts": "" }, { @@ -1360,7 +1360,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11320", - "citations": "2520", + "citations": "", "case_name_shorts": "" }, { @@ -1371,7 +1371,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11019", - "citations": "2519", + "citations": "", "case_name_shorts": "" }, { @@ -1382,7 +1382,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11865", - "citations": "2515", + "citations": "", "case_name_shorts": "" }, { @@ -1393,7 +1393,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11425", - "citations": "2513", + "citations": "", "case_name_shorts": "" }, { @@ -1404,7 +1404,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11299", - "citations": "2517", + "citations": "", "case_name_shorts": "" }, { @@ -1415,7 +1415,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12014", - "citations": "2518", + "citations": "", "case_name_shorts": "" }, { @@ -1426,7 +1426,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12619", - "citations": "2512", + "citations": "", "case_name_shorts": "" }, { @@ -1437,7 +1437,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11742", - "citations": "2511", + "citations": "", "case_name_shorts": "" }, { @@ -1448,7 +1448,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11688", - "citations": "2510", + "citations": "", "case_name_shorts": "" }, { @@ -1459,7 +1459,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12549", - "citations": "2509", + "citations": "", "case_name_shorts": "" }, { @@ -1470,7 +1470,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10972", - "citations": "2507", + "citations": "", "case_name_shorts": "" }, { @@ -1481,7 +1481,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11839", - "citations": "2508", + "citations": "", "case_name_shorts": "" }, { @@ -1492,7 +1492,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11826", - "citations": "2506", + "citations": "", "case_name_shorts": "" }, { @@ -1503,7 +1503,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11365", - "citations": "2504", + "citations": "", "case_name_shorts": "" }, { @@ -1514,7 +1514,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11054", - "citations": "2505", + "citations": "", "case_name_shorts": "" }, { @@ -1525,7 +1525,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12537", - "citations": "2503", + "citations": "", "case_name_shorts": "" }, { @@ -1536,7 +1536,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11122", - "citations": "2502", + "citations": "", "case_name_shorts": "" }, { @@ -1547,7 +1547,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11397", - "citations": "2501", + "citations": "", "case_name_shorts": "" }, { @@ -1558,7 +1558,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11321", - "citations": "2500", + "citations": "", "case_name_shorts": "" }, { @@ -1569,7 +1569,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11405", - "citations": "2498", + "citations": "", "case_name_shorts": "" }, { @@ -1580,7 +1580,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11632", - "citations": "2499", + "citations": "", "case_name_shorts": "" }, { @@ -1591,7 +1591,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11252", - "citations": "2497", + "citations": "", "case_name_shorts": "" }, { @@ -1602,7 +1602,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11768", - "citations": "2496", + "citations": "", "case_name_shorts": "" }, { @@ -1613,7 +1613,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11955", - "citations": "2495", + "citations": "", "case_name_shorts": "" }, { @@ -1624,7 +1624,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11895", - "citations": "2494", + "citations": "", "case_name_shorts": "" }, { @@ -1635,7 +1635,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11208", - "citations": "2492", + "citations": "", "case_name_shorts": "" }, { @@ -1646,7 +1646,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12101", - "citations": "2493", + "citations": "", "case_name_shorts": "" }, { @@ -1657,7 +1657,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11166", - "citations": "2489", + "citations": "", "case_name_shorts": "" }, { @@ -1668,7 +1668,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11986", - "citations": "2491", + "citations": "", "case_name_shorts": "" }, { @@ -1679,7 +1679,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11080", - "citations": "2490", + "citations": "", "case_name_shorts": "" }, { @@ -1690,7 +1690,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11652", - "citations": "2488", + "citations": "", "case_name_shorts": "" }, { @@ -1701,7 +1701,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12089", - "citations": "2487", + "citations": "", "case_name_shorts": "" }, { @@ -1712,7 +1712,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11343", - "citations": "2486", + "citations": "", "case_name_shorts": "" }, { @@ -1723,7 +1723,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11477", - "citations": "2485", + "citations": "", "case_name_shorts": "" }, { @@ -1734,7 +1734,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11465", - "citations": "2484", + "citations": "", "case_name_shorts": "" }, { @@ -1745,7 +1745,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11271, A11048", - "citations": "2483", + "citations": "", "case_name_shorts": "" }, { @@ -1756,7 +1756,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11698", - "citations": "2482", + "citations": "", "case_name_shorts": "" }, { @@ -1767,7 +1767,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11433, A11423", - "citations": "2481", + "citations": "", "case_name_shorts": "" }, { @@ -1778,7 +1778,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11393", - "citations": "2480", + "citations": "", "case_name_shorts": "" }, { @@ -1789,7 +1789,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11627", - "citations": "2479", + "citations": "", "case_name_shorts": "" }, { @@ -1800,7 +1800,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11112", - "citations": "2478", + "citations": "", "case_name_shorts": "" }, { @@ -1811,7 +1811,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11781", - "citations": "2476", + "citations": "", "case_name_shorts": "" }, { @@ -1822,7 +1822,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10769", - "citations": "2477", + "citations": "", "case_name_shorts": "" }, { @@ -1833,7 +1833,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11430", - "citations": "2475", + "citations": "", "case_name_shorts": "" }, { @@ -1844,7 +1844,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11137", - "citations": "2474", + "citations": "", "case_name_shorts": "" }, { @@ -1855,7 +1855,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11041", - "citations": "2473", + "citations": "", "case_name_shorts": "" }, { @@ -1866,7 +1866,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11100", - "citations": "2471", + "citations": "", "case_name_shorts": "" }, { @@ -1877,7 +1877,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11121", - "citations": "2472", + "citations": "", "case_name_shorts": "" }, { @@ -1888,7 +1888,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11701", - "citations": "2470", + "citations": "", "case_name_shorts": "" }, { @@ -1899,7 +1899,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11270", - "citations": "2469", + "citations": "", "case_name_shorts": "" }, { @@ -1910,7 +1910,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11189", - "citations": "2468", + "citations": "", "case_name_shorts": "" }, { @@ -1921,7 +1921,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11170", - "citations": "2467", + "citations": "", "case_name_shorts": "" }, { @@ -1932,7 +1932,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11631", - "citations": "2466", + "citations": "", "case_name_shorts": "" }, { @@ -1943,7 +1943,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11071", - "citations": "2465", + "citations": "", "case_name_shorts": "" }, { @@ -1954,7 +1954,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11614", - "citations": "2464", + "citations": "", "case_name_shorts": "" }, { @@ -1965,7 +1965,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11356", - "citations": "2461", + "citations": "", "case_name_shorts": "" }, { @@ -1976,7 +1976,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11545", - "citations": "2460", + "citations": "", "case_name_shorts": "" }, { @@ -1987,7 +1987,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11133, A11123", - "citations": "2458", + "citations": "", "case_name_shorts": "" }, { @@ -1998,7 +1998,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10971", - "citations": "2456", + "citations": "", "case_name_shorts": "" }, { @@ -2009,7 +2009,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11390", - "citations": "2455", + "citations": "", "case_name_shorts": "" }, { @@ -2020,7 +2020,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11746", - "citations": "2542", + "citations": "", "case_name_shorts": "" }, { @@ -2031,7 +2031,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11002", - "citations": "2453", + "citations": "", "case_name_shorts": "" }, { @@ -2042,7 +2042,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11739", - "citations": "2450", + "citations": "", "case_name_shorts": "" }, { @@ -2053,7 +2053,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11329", - "citations": "2451", + "citations": "", "case_name_shorts": "" }, { @@ -2064,7 +2064,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10882", - "citations": "2449", + "citations": "", "case_name_shorts": "" }, { @@ -2075,7 +2075,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11094", - "citations": "2448", + "citations": "", "case_name_shorts": "" }, { @@ -2086,7 +2086,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11619, A11580, A11581, A11582, A11583, A11584, A11585, A11586, A11588, A11594, A11595, A11596, A11604, A11605, A11620, A11629, A11630, A11639, A11640, A11649, A11650, A11659, A11660, A11669, A11670, A11679", - "citations": "2446", + "citations": "", "case_name_shorts": "" }, { @@ -2097,7 +2097,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10587", - "citations": "2447", + "citations": "", "case_name_shorts": "" }, { @@ -2108,7 +2108,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11191", - "citations": "2445", + "citations": "", "case_name_shorts": "" }, { @@ -2119,7 +2119,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A12053", - "citations": "2444", + "citations": "", "case_name_shorts": "" }, { @@ -2130,7 +2130,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11052", - "citations": "2441", + "citations": "", "case_name_shorts": "" }, { @@ -2141,7 +2141,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11093", - "citations": "2440", + "citations": "", "case_name_shorts": "" }, { @@ -2152,7 +2152,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10835", - "citations": "2439", + "citations": "", "case_name_shorts": "" }, { @@ -2163,7 +2163,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11424", - "citations": "2438", + "citations": "", "case_name_shorts": "" }, { @@ -2174,7 +2174,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11198", - "citations": "2437", + "citations": "", "case_name_shorts": "" }, { @@ -2185,7 +2185,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11274", - "citations": "2436", + "citations": "", "case_name_shorts": "" }, { @@ -2196,7 +2196,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11492", - "citations": "2435", + "citations": "", "case_name_shorts": "" }, { @@ -2207,7 +2207,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11552", - "citations": "2433", + "citations": "", "case_name_shorts": "" }, { @@ -2218,7 +2218,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10776", - "citations": "2434", + "citations": "", "case_name_shorts": "" }, { @@ -2229,7 +2229,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11389", - "citations": "2431", + "citations": "", "case_name_shorts": "" }, { @@ -2240,7 +2240,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11178", - "citations": "2429", + "citations": "", "case_name_shorts": "" }, { @@ -2251,7 +2251,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11881", - "citations": "2430", + "citations": "", "case_name_shorts": "" }, { @@ -2262,7 +2262,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11043", - "citations": "2427", + "citations": "", "case_name_shorts": "" }, { @@ -2273,7 +2273,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11042", - "citations": "2428", + "citations": "", "case_name_shorts": "" }, { @@ -2284,7 +2284,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11068", - "citations": "2426", + "citations": "", "case_name_shorts": "" }, { @@ -2295,7 +2295,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11058", - "citations": "2425", + "citations": "", "case_name_shorts": "" }, { @@ -2306,7 +2306,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11085", - "citations": "2424", + "citations": "", "case_name_shorts": "" }, { @@ -2317,7 +2317,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11654", - "citations": "2423", + "citations": "", "case_name_shorts": "" }, { @@ -2328,7 +2328,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11015, A11006", - "citations": "2422", + "citations": "", "case_name_shorts": "" }, { @@ -2339,7 +2339,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10821", - "citations": "2421", + "citations": "", "case_name_shorts": "" }, { @@ -2350,7 +2350,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11173", - "citations": "2420", + "citations": "", "case_name_shorts": "" }, { @@ -2361,7 +2361,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11404", - "citations": "2419", + "citations": "", "case_name_shorts": "" }, { @@ -2372,7 +2372,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11088", - "citations": "2417", + "citations": "", "case_name_shorts": "" }, { @@ -2383,7 +2383,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11159", - "citations": "2418", + "citations": "", "case_name_shorts": "" }, { @@ -2394,7 +2394,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11561", - "citations": "2416", + "citations": "", "case_name_shorts": "" }, { @@ -2405,7 +2405,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11501", - "citations": "2414", + "citations": "", "case_name_shorts": "" }, { @@ -2416,7 +2416,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11549", - "citations": "2415", + "citations": "", "case_name_shorts": "" }, { @@ -2427,7 +2427,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10800", - "citations": "2413", + "citations": "", "case_name_shorts": "" }, { @@ -2438,7 +2438,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10946", - "citations": "2412", + "citations": "", "case_name_shorts": "" }, { @@ -2449,7 +2449,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11136", - "citations": "2411", + "citations": "", "case_name_shorts": "" }, { @@ -2460,7 +2460,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10893", - "citations": "2408", + "citations": "", "case_name_shorts": "" }, { @@ -2471,7 +2471,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10941", - "citations": "2409", + "citations": "", "case_name_shorts": "" }, { @@ -2482,7 +2482,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11292", - "citations": "2406", + "citations": "", "case_name_shorts": "" }, { @@ -2493,7 +2493,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11376", - "citations": "2407", + "citations": "", "case_name_shorts": "" }, { @@ -2504,7 +2504,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10945", - "citations": "2404", + "citations": "", "case_name_shorts": "" }, { @@ -2515,7 +2515,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11197", - "citations": "2405", + "citations": "", "case_name_shorts": "" }, { @@ -2526,7 +2526,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10948", - "citations": "2403", + "citations": "", "case_name_shorts": "" }, { @@ -2537,7 +2537,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10891", - "citations": "2402", + "citations": "", "case_name_shorts": "" }, { @@ -2548,7 +2548,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10957", - "citations": "2401", + "citations": "", "case_name_shorts": "" }, { @@ -2559,7 +2559,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11195, A11174, A11193", - "citations": "2400", + "citations": "", "case_name_shorts": "" }, { @@ -2570,7 +2570,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10519", - "citations": "2399", + "citations": "", "case_name_shorts": "" }, { @@ -2581,7 +2581,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10657", - "citations": "2398", + "citations": "", "case_name_shorts": "" }, { @@ -2592,7 +2592,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10864, A11050", - "citations": "2397", + "citations": "", "case_name_shorts": "" }, { @@ -2603,7 +2603,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10836", - "citations": "2395", + "citations": "", "case_name_shorts": "" }, { @@ -2614,7 +2614,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10228", - "citations": "2396", + "citations": "", "case_name_shorts": "" }, { @@ -2625,7 +2625,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10886", - "citations": "2394", + "citations": "", "case_name_shorts": "" }, { @@ -2636,7 +2636,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10383", - "citations": "2383", + "citations": "", "case_name_shorts": "" }, { @@ -2647,7 +2647,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11103", - "citations": "2392", + "citations": "", "case_name_shorts": "" }, { @@ -2658,7 +2658,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10668", - "citations": "2391", + "citations": "", "case_name_shorts": "" }, { @@ -2669,7 +2669,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10661", - "citations": "2390", + "citations": "", "case_name_shorts": "" }, { @@ -2680,7 +2680,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10902", - "citations": "2389", + "citations": "", "case_name_shorts": "" }, { @@ -2691,7 +2691,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10592", - "citations": "2388", + "citations": "", "case_name_shorts": "" }, { @@ -2702,7 +2702,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10763", - "citations": "2387", + "citations": "", "case_name_shorts": "" }, { @@ -2713,7 +2713,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11018", - "citations": "2386", + "citations": "", "case_name_shorts": "" }, { @@ -2724,7 +2724,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10679", - "citations": "2385", + "citations": "", "case_name_shorts": "" }, { @@ -2735,7 +2735,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A11049", - "citations": "2384", + "citations": "", "case_name_shorts": "N.G." }, { @@ -2746,7 +2746,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "A10795", - "citations": "2383", + "citations": "", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/arizctapp_div_2_example.compare.json b/tests/examples/opinions/united_states/arizctapp_div_2_example.compare.json index da999767c..720a27872 100644 --- a/tests/examples/opinions/united_states/arizctapp_div_2_example.compare.json +++ b/tests/examples/opinions/united_states/arizctapp_div_2_example.compare.json @@ -117,12 +117,12 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2 CA-SA 2005-0001", - "summaries": "Does a trial court's imposition of \"cash-only\" bail as a condition of a defendant's pretrial release violate Arizona's pertinent criminal rules or statute, Rules 7.1 and 7.3, Ariz. R. Crim. P. A.R.S. \u00a7 13-3967 or the constitutional right to bail \"by sufficient sureties,\" Ariz. Const. art. II, \u00a7 22(A)?", + "summaries": "Does a trial court's imposition of \"cash-only\" bail as a condition of a defendant's pretrial release violate Arizona's pertinent criminal rules or statute, Rules 7.1 and 7.3, Ariz. R. Crim. P.; A.R.S. \u00a7 13-3967; or the constitutional right to bail \"by sufficient sureties,\" Ariz. Const. art. II, \u00a7 22(A)?", "case_name_shorts": "" }, { "case_dates": "2004-09-23", - "case_names": "State of Arizona v. Hon. Howard Fell Edward John Sanders", + "case_names": "State of Arizona v. Hon. Howard Fell; Edward John Sanders", "download_urls": "https://www.appeals2.az.gov/Decisions/sa20040057crx-opn.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -144,7 +144,7 @@ }, { "case_dates": "2004-02-06", - "case_names": "Chartone, Inc. v. Mercaldo, Ltd. Webb, Pc. Durazzo & Eckel Smart Professional", + "case_names": "Chartone, Inc. v. Mercaldo, Ltd.; Webb, Pc.; Durazzo & Eckel; Smart Professional", "download_urls": "https://www.appeals2.az.gov/Decisions/sa20030107opn.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -188,7 +188,7 @@ }, { "case_dates": "2003-04-01", - "case_names": "State v. Hantman Riedel", + "case_names": "State v. Hantman; Riedel", "download_urls": "https://www.appeals2.az.gov/Decisions/sa20030026opn.pdf", "precedential_statuses": "Published", "blocked_statuses": false, diff --git a/tests/examples/opinions/united_states/ark_example.compare.json b/tests/examples/opinions/united_states/ark_example.compare.json index 67dd194f6..84ceebfcb 100644 --- a/tests/examples/opinions/united_states/ark_example.compare.json +++ b/tests/examples/opinions/united_states/ark_example.compare.json @@ -1,101 +1,50 @@ [ { - "case_dates": "2022-02-03", - "case_names": "Wendell Rogers v. Arkansas Department of Correction", - "download_urls": "https://opinions.arcourts.gov/ark/supremecourt/en/520675/1/document.do", + "case_dates": "2024-04-04", + "case_names": "Kenneth D. Stuart; James Greenhaw; Elizabeth Jessup; Amber Wooldridge; Kevin Lightburn; Kalvin Henderson; Cbc Vision, LLC; Timothy Tyler Gardner; JAMSHID MIRTALIPOV; AND GARRETT TAYLOR v. LARRY WALTHER, in His Official Capacity as Secretary of ARKANSAS DEPARTMENT OF FINANCE And Administration", + "download_urls": "https://opinions.arcourts.gov/ark/supremecourt/en/522671/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. 19", - "case_name_shorts": "" + "citations": "2024 Ark. 41", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2022-02-03", - "case_names": "In Re Arkansas Supreme Court Committee on Security and Emergency Preparedness", - "download_urls": "https://opinions.arcourts.gov/ark/supremecourt/en/520670/1/document.do", + "case_dates": "2024-04-04", + "case_names": "In Re Access to Justice Commission and Arkansas Access to Justice Foundation", + "download_urls": "https://opinions.arcourts.gov/ark/supremecourt/en/522675/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. 20", - "case_name_shorts": "" + "citations": "2024 Ark. 47", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2022-02-03", - "case_names": "Drakease Hall v. State of Arkansas", - "download_urls": "https://opinions.arcourts.gov/ark/supremecourt/en/520666/1/document.do", + "case_dates": "2024-04-04", + "case_names": "Chris Corbett, Esq. v. Arkansas State University; Trustees Christy Clark, Price Gardner, Niel Crowson, Jerry Morgan, Steve Eddington, Bishop Robert G. Rudolph, Jr., Paul Rowton, in Their Official Capacities As Trustees of Arkansas State University", + "download_urls": "https://opinions.arcourts.gov/ark/supremecourt/en/522673/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. 16", - "case_name_shorts": "" + "citations": "2024 Ark. 44", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2022-02-03", - "case_names": "DOYLE JONES v. sTATE OF ARKANSAS", - "download_urls": "https://opinions.arcourts.gov/ark/supremecourt/en/520674/1/document.do", + "case_dates": "2024-04-04", + "case_names": "Arkansas Voter Integrity Initiative, Inc., and Conrad Reynolds v. John Thurston, in His Official Capacity as Arkansas Secretary of State; the Arkansas State Board of Election Commissioners, in Its Official Capacity; And Election Systems and Software, LLC", + "download_urls": "https://opinions.arcourts.gov/ark/supremecourt/en/522672/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. 18", - "case_name_shorts": "" - }, - { - "case_dates": "2022-02-03", - "case_names": "Arkansas State Police Bill Bryant, in His Official Capacity as Director, and as an Individual And Kelli Laporte, in Her Official Capacity as Attorney for the Arkansas Department of Public Safety / Arkansas State Police, and as an Individual v. Russell R. Racop", - "download_urls": "https://opinions.arcourts.gov/ark/supremecourt/en/520672/1/document.do", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "2022 Ark. 17", - "case_name_shorts": "" - }, - { - "case_dates": "2022-01-27", - "case_names": "Sammie L. Thomas, Jr. v. State of Arkansas", - "download_urls": "https://opinions.arcourts.gov/ark/supremecourt/en/520113/1/document.do", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "2022 Ark. 12", - "case_name_shorts": "" - }, - { - "case_dates": "2022-01-27", - "case_names": "In Re Virtual and Blended Court Proceedings, Revised Rule 43, and Proposed Rule 88 of the Arkansas Rules of Civil Procedure", - "download_urls": "https://opinions.arcourts.gov/ark/supremecourt/en/520114/1/document.do", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "2022 Ark. 13", - "case_name_shorts": "" - }, - { - "case_dates": "2022-01-27", - "case_names": "In Re Arkansas Supreme Court Committee on Civil Practice-Recommendations to Revise Rule 4-6 of the Rules of the Supreme Court and Court of Appeals of the State of Arkansas and Rule 28 of the Rules of Civil Procedure and Board Certified Court Reporter Examiners-Recommendation to Revise Section 22 of the Regulations of the Board of Certified Court Reporter Examiners", - "download_urls": "https://opinions.arcourts.gov/ark/supremecourt/en/520115/1/document.do", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "2022 Ark. 14", - "case_name_shorts": "" - }, - { - "case_dates": "2022-01-27", - "case_names": "In Re Administrative Plans for Circuit Courts", - "download_urls": "https://opinions.arcourts.gov/ark/supremecourt/en/520116/1/document.do", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "2022 Ark. 15", - "case_name_shorts": "" + "citations": "2024 Ark. 43", + "case_name_shorts": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ark_example.html b/tests/examples/opinions/united_states/ark_example.html index 4caf2324f..dee025efb 100644 --- a/tests/examples/opinions/united_states/ark_example.html +++ b/tests/examples/opinions/united_states/ark_example.html @@ -1,1616 +1,1276 @@ - - - - - Supreme Court - https://opinions.arcourts.gov/ark/supremecourt/en/rss.do - Recently published and updated (translated, amended or corrected) documents - en - - - ARKANSAS STATE POLICE; BILL BRYANT, IN HIS OFFICIAL CAPACITY AS DIRECTOR, AND AS AN INDIVIDUAL; AND KELLI LAPORTE, IN HER OFFICIAL CAPACITY AS ATTORNEY FOR THE ARKANSAS DEPARTMENT OF PUBLIC SAFETY / ARKANSAS STATE POLICE, AND AS AN INDIVIDUAL v. RUSSELL R. RACOP - - 2022 Ark. 17 - - 02/03/2022 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/520672/index.do - - - 2022 Spring Term
- New document published on 02/03/2022 - ]]> -
- 02/03/2022 -
- - - DRAKEASE HALL v. STATE OF ARKANSAS - - 2022 Ark. 16 - - 02/03/2022 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/520666/index.do - - - 2022 Spring Term
- New document published on 02/03/2022 - ]]> -
- 02/03/2022 -
- - - IN RE ARKANSAS SUPREME COURT COMMITTEE ON SECURITY AND EMERGENCY PREPAREDNESS - - 2022 Ark. 20 - - 02/03/2022 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/520670/index.do - - - 2022 Spring Term
- New document published on 02/03/2022 - ]]> -
- 02/03/2022 -
- - - DOYLE JONES v. sTATE OF ARKANSAS - - 2022 Ark. 18 - - 02/03/2022 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/520674/index.do - - - 2022 Spring Term
- New document published on 02/03/2022 - ]]> -
- 02/03/2022 -
- - - WENDELL ROGERS v. ARKANSAS DEPARTMENT OF CORRECTION - - 2022 Ark. 19 - - 02/03/2022 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/520675/index.do - - - 2022 Spring Term
- New document published on 02/03/2022 - ]]> -
- 02/03/2022 -
- - - 2022-02-03.SYLLABUS - - 02/03/2022 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/520676/index.do - - - New document published on 02/03/2022 - ]]> - - 02/03/2022 - - - - APPENDIX 260 - - 06/14/1976 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/520549/index.do - - - - 06/14/1976 - - - - IN RE ADMINISTRATIVE PLANS FOR CIRCUIT COURTS - - 2022 Ark. 15 - - 01/27/2022 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/520116/index.do - - - 2022 Spring Term
- New document published on 01/27/2022 - ]]> -
- 01/27/2022 -
- - - SAMMIE L. THOMAS, JR. v. STATE OF ARKANSAS - - 2022 Ark. 12 - - 01/27/2022 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/520113/index.do - - - 2022 Spring Term
- New document published on 01/27/2022 - ]]> -
- 01/27/2022 -
- - - IN RE VIRTUAL AND BLENDED COURT PROCEEDINGS, REVISED RULE 43, AND PROPOSED RULE 88 OF THE ARKANSAS RULES OF CIVIL PROCEDURE - - 2022 Ark. 13 - - 01/27/2022 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/520114/index.do - - - 2022 Spring Term
- New document published on 01/27/2022 - ]]> -
- 01/27/2022 -
- - - IN RE ARKANSAS SUPREME COURT COMMITTEE ON CIVIL PRACTICE-RECOMMENDATIONS TO REVISE RULE 4-6 OF THE RULES OF THE SUPREME COURT AND COURT OF APPEALS OF THE STATE OF ARKANSAS AND RULE 28 OF THE RULES OF CIVIL PROCEDURE AND BOARD CERTIFIED COURT REPORTER EXAMINERS-RECOMMENDATION TO REVISE SECTION 22 OF THE REGULATIONS OF THE BOARD OF CERTIFIED COURT REPORTER EXAMINERS - - 2022 Ark. 14 - - 01/27/2022 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/520115/index.do - - - 2022 Spring Term
- New document published on 01/27/2022 - ]]> -
- 01/27/2022 -
- - - 2022-01-27.SYLLABUS - - 01/27/2022 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/520117/index.do - - - New document published on 01/27/2022 - ]]> - - 01/27/2022 - - - - WORTH JAMES CONST. CO. V. FULK - - 241 ARK. 444 - - 11/21/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258635/index.do - - - Document updated on 01/25/2022 - ]]> - - 11/21/1966 - - - - WORTH INS. CO. V. PATCHING ET AL. - - 241 ARK. 620 - - 12/12/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258655/index.do - - - Document updated on 01/25/2022 - ]]> - - 12/12/1966 - - - - WOOD V. BURRIS - - 241 ARK. 118 - - 10/03/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258567/index.do - - - Document updated on 01/25/2022 - ]]> - - 10/03/1966 - - - - WILLIAMS V. DAVIDSON - - 241 ARK. 699 - - 12/19/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258673/index.do - - - Document updated on 01/25/2022 - ]]> - - 12/19/1966 - - - - WILLIAM FARRAR V. STATE OF ARKANSAS - - 241 ARK. 259 - - 10/24/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258602/index.do - - - Document updated on 01/25/2022 - ]]> - - 10/24/1966 - - - - WHITE V. MUNRO - - 241 ARK. 496 - - 11/28/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258647/index.do - - - Document updated on 01/25/2022 - ]]> - - 11/28/1966 - - - - WHITE COUNTY S&L V. SEARCY FED. S & L - - 241 ARK. 878 - - 01/30/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258737/index.do - - - Document updated on 01/25/2022 - ]]> - - 01/30/1967 - - - - WHETSTONE V. ATLAS DRILLING - - 241 ARK. 487 - - 11/28/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258646/index.do - - - Document updated on 01/25/2022 - ]]> - - 11/28/1966 - - - - WESTINGHOUSE V. FIRST NAT'L BANK - - 241 ARK. 287 - - 10/31/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258617/index.do - - - Document updated on 01/25/2022 - ]]> - - 10/31/1966 - - - - WELLS V. STATE - - 241 ARK. 1067 - - 02/20/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258747/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/20/1967 - - - - WEBB V. STATE FARM MUT. INS. CO - - 241 ARK. 363 - - 11/07/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258628/index.do - - - Document updated on 01/24/2022 - ]]> - - 11/07/1966 - - - - WARNER BROWN HOSP. V. ROBERTSON - - 241 ARK. 967 - - 02/06/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258704/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/06/1967 - - - - WALKER V. WITTENBERG ET AL. - - 241 ARK. 525 - - 12/05/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258661/index.do - - - Document updated on 01/24/2022 - ]]> - - 12/05/1966 - - - - WALKER V. STATE OF ARKANSAS - - 241 ARK. 300 - - 10/31/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258629/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/31/1966 - - - - WALKER V. STATE OF ARK - - 241 ARK. 396 - - 11/14/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258631/index.do - - - Document updated on 01/24/2022 - ]]> - - 11/14/1966 - - - - WALKER V. STATE OF ARK - - 241 ARK. 663 - - 10/31/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258687/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/31/1966 - - - - WALKER V. DIBBLE - - 241 ARK. 692 - - 12/19/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258666/index.do - - - Document updated on 01/24/2022 - ]]> - - 12/19/1966 - - - - VELDA ROSE MOTLE V. EASON - - 241 ARK. 1041 - - 02/20/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258736/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/20/1967 - - - - UPI V. HERNREICH, D/B/A STATION KZNG - - 241 ARK. 36 - - 09/19/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258554/index.do - - - Document updated on 01/24/2022 - ]]> - - 09/19/1966 - - - - UPI V. HERNREICH, D/B/A STATION KFPW - - 241 ARK. 33 - - 09/19/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258552/index.do - - - Document updated on 01/24/2022 - ]]> - - 09/19/1966 - - - - UNION MOTORS, INC. V. PHILLIPS - - 241 ARK. 857 - - 01/30/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258724/index.do - - - Document updated on 01/24/2022 - ]]> - - 01/30/1967 - - - - UNION BK. INS. V. NATL. BK. OF COM - - 241 ARK. 554 - - 12/05/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258651/index.do - - - Document updated on 01/24/2022 - ]]> - - 12/05/1966 - - - - TYLER V. TYLER - - 241 ARK. 98 - - 09/26/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258566/index.do - - - Document updated on 01/24/2022 - ]]> - - 09/26/1966 - - - - TREVATHAN V. RINGGOLD-NOLAND - - 241 ARK. 758 - - 01/09/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258696/index.do - - - Document updated on 01/24/2022 - ]]> - - 01/09/1967 - - - - TITSWORTH V. MAYFIELD, JUDGE - - 241 ARK. 641 - - 12/12/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258671/index.do - - - Document updated on 01/24/2022 - ]]> - - 12/12/1966 - - - - TECH-NEEKS, INC. V. FRANCIS, ET AL. - - 241 ARK. 390 - - 11/14/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258627/index.do - - - Document updated on 01/24/2022 - ]]> - - 11/14/1966 - - - - TATUM V. RESTER - - 241 ARK. 1059 - - 02/20/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258746/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/20/1967 - - - - T. I. M. E. FREIGHT V. MCNEW - - 241 ARK. 1048 - - 02/20/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258739/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/20/1967 - - - - SWINDLE V. BRADLEY, CHANCELLOR - - 241 ARK. 65 - - 05/23/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258553/index.do - - - Document updated on 01/24/2022 - ]]> - - 05/23/1966 - - - - SUMMERS V. SUMMERS - - 241 ARK. 542 - - 12/05/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258672/index.do - - - Document updated on 01/24/2022 - ]]> - - 12/05/1966 - - - - STYERS ET AL V. NORTHERN ET AL. - - 241 ARK. 1023 - - 02/13/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258723/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/13/1967 - - - - STUTTGART SHOE V. CITY OF STUTTGART - - 241 ARK. 252 - - 10/24/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258599/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/24/1966 - - - - STONE V. HALLIBURTON - - 241 ARK. 710 - - 12/19/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258681/index.do - - - Document updated on 01/24/2022 - ]]> - - 12/19/1966 - - - - STEWART V. STATE - - 241 ARK. 4 - - 09/12/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258546/index.do - - - Document updated on 01/24/2022 - ]]> - - 09/12/1966 - - - - STEVENSON V. MARQUES - - 241 ARK. 321 - - 10/31/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258601/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/31/1966 - - - - STATE HIGHWAY COMM'N V. LOVEGROVE - - 241 ARK. 429 - - 11/14/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258624/index.do - - - Document updated on 01/24/2022 - ]]> - - 11/14/1966 - - - - STATE FARM FIRE & CASUALTY V. RICE - - 241 ARK. 201 - - 10/17/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258592/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/17/1966 - - - - STATE COMM'R OF LABOR V. U. OF ARK - - 241 ARK. 399 - - 11/14/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258634/index.do - - - Document updated on 01/24/2022 - ]]> - - 11/14/1966 - - - - ST. LOUIS SW RY. V. FARRELL - - 241 ARK. 707 - - 12/19/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258678/index.do - - - Document updated on 01/24/2022 - ]]> - - 12/19/1966 - - - - ST. LOUIS S W. RY. V. HARRIST & ENDSLEY - - 241 ARK. 173 - - 10/10/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258578/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/10/1966 - - - - SPRUILL V. SPRUILL - - 241 ARK. 808 - - 01/23/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258711/index.do - - - Document updated on 01/24/2022 - ]]> - - 01/23/1967 - - - - SPEARS V. RICH - - 241 ARK. 15 - - 09/12/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258549/index.do - - - Document updated on 01/24/2022 - ]]> - - 09/12/1966 - - - - SPA KENNEL CLUB V. DUNAWAY - - 241 ARK. 51 - - 09/19/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258561/index.do - - - Document updated on 01/24/2022 - ]]> - - 09/19/1966 - - - - SNUGGS V. STATE EMP. RETIREMENT SYS - - 241 ARK. 402 - - 11/14/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258636/index.do - - - Document updated on 01/24/2022 - ]]> - - 11/14/1966 - - - - SMITH V. UNION NAT. BANK OF L. R - - 241 ARK. 821 - - 01/23/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258717/index.do - - - Document updated on 01/24/2022 - ]]> - - 01/23/1967 - - - - SMITH V. STATE - - 241 ARK. 958 - - 02/06/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258745/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/06/1967 - - - - SMITH V. SMITH - - 241 ARK. 465 - - 11/21/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258642/index.do - - - Document updated on 01/24/2022 - ]]> - - 11/21/1966 - - - - SHOOK V. KELLAR - - 241 ARK. 616 - - 12/12/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258652/index.do - - - Document updated on 01/24/2022 - ]]> - - 12/12/1966 - - - - SHIPP V. STATE - - 241 ARK. 120 - - 10/03/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258571/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/03/1966 - - - - SHARUM V. TERBIETEN - - 241 ARK. 57 - - 09/19/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258563/index.do - - - Document updated on 01/24/2022 - ]]> - - 09/19/1966 - - - - SCOTT V. STATE - - 241 ARK. 791 - - 01/16/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258701/index.do - - - Document updated on 01/24/2022 - ]]> - - 01/16/1967 - - - - SAMMONS-PENNINGTON CO. V. NORTON - - 241 ARK. 341 - - 11/07/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258607/index.do - - - Document updated on 01/24/2022 - ]]> - - 11/07/1966 - - - - S AND S CONSTR. CO. V. STACKS - - 241 ARK. 1096 - - 02/20/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258751/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/20/1967 - - - - RUSSELL V. SOUTH ARK. OIL CO - - 241 ARK. 827 - - 01/23/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258725/index.do - - - Document updated on 01/24/2022 - ]]> - - 01/23/1967 - - - - ROGERS V. CRISP, EX'X - - 241 ARK. 68 - - 09/26/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258555/index.do - - - Document updated on 01/24/2022 - ]]> - - 09/26/1966 - - - - ROBINETTE V. BROOKS - - 241 ARK. 470 - - 11/21/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258643/index.do - - - Document updated on 01/24/2022 - ]]> - - 11/21/1966 - - - - RICE V. STATE OF ARKANSAS - - 241 ARK. 570 - - 12/05/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258660/index.do - - - Document updated on 01/24/2022 - ]]> - - 12/05/1966 - - - - RENO AND STARK V. STATE - - 241 ARK. 127 - - 10/03/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258572/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/03/1966 - - - - REED V. STATE - - 241 ARK. 836 - - 01/30/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258708/index.do - - - Document updated on 01/24/2022 - ]]> - - 01/30/1967 - - - - RAYMOND ALEXANDER V. MARY ALEXANDER - - 241 ARK. 741 - - 01/09/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258693/index.do - - - Document updated on 01/24/2022 - ]]> - - 01/09/1967 - - - - PYRAMID LIFE INS. CO. V. GARRISON - - 241 ARK. 101 - - 09/26/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258570/index.do - - - Document updated on 01/24/2022 - ]]> - - 09/26/1966 - - - - PLANTERS LUMBER COMPANY, INC. V. THE WILSON COMPANY, INC - - 241 ARK. 1100 - - 02/13/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258753/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/13/1967 - - - - PLANTERS LUMBER CO. V. WILSON CO - - 241 ARK. 1005 - - 02/13/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258735/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/13/1967 - - - - PHILLIPS V. STATE OF ARKANSAS - - 241 ARK. 601 - - 12/12/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258684/index.do - - - Document updated on 01/24/2022 - ]]> - - 12/12/1966 - - - - PHILLIPS V. PHILLIPS - - 241 ARK. 90 - - 09/26/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258562/index.do - - - Document updated on 01/24/2022 - ]]> - - 09/26/1966 - - - - PHELPS-POWELL V. SILVER DOLLAR HOMES - - 241 ARK. 425 - - 11/14/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258621/index.do - - - Document updated on 01/24/2022 - ]]> - - 11/14/1966 - - - - PETTY, MYRICK AND DODSON V. STATE - - 241 ARK. 911 - - 02/06/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258720/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/06/1967 - - - - PARKER V. PRICE - - 241 ARK. 940 - - 02/06/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258740/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/06/1967 - - - - PARKER V. HENDRICKS - - 241 ARK. 279 - - 10/31/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258610/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/31/1966 - - - - PANICH V. MCLENDON - - 241 ARK. 576 - - 12/12/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258664/index.do - - - Document updated on 01/24/2022 - ]]> - - 12/12/1966 - - - - OLSEN V. CITY OF LITTLE ROCK - - 241 ARK. 155 - - 10/10/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258591/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/10/1966 - - - - OLD EQUITY LIFE INS. CO. V. CRUMBY - - 241 ARK. 982 - - 02/13/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258715/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/13/1967 - - - - OLD AMERICAN LIFE INS. CO. V. WILLIAMS - - 241 ARK. 250 - - 10/24/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258598/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/24/1966 - - - - O.K. PROCESSORS V. DYE - - 241 ARK. 1002 - - 02/13/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258730/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/13/1967 - - - - O. D. PENDERGRASS V. VADA SHEID - - 241 ARK. 908 - - 02/06/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258714/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/06/1967 - - - - NOWAK V. ETCHIESON - - 241 ARK. 328 - - 10/31/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258603/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/31/1966 - - - - NOLAN LUMBER CO. V. MANNING - - 241 ARK. 422 - - 11/14/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258616/index.do - - - Document updated on 01/24/2022 - ]]> - - 11/14/1966 - - - - NEW EMPIRE LIFE V. BOWLING - - 241 ARK. 1051 - - 02/20/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258742/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/20/1967 - - - - NELSON V. STATE - - 241 ARK. 136 - - 10/03/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258577/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/03/1966 - - - - N.Y. FIRE & MAR. UNDERWRITERS V. COLVIN - - 241 ARK. 1019 - - 02/13/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258741/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/13/1967 - - - - MOORE V. STATE - - 421 ARK. 335 - - 11/07/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258605/index.do - - - Document updated on 01/24/2022 - ]]> - - 11/07/1966 - - - - MOORE V. MOORE - - 241 ARK. 675 - - 12/19/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258656/index.do - - - Document updated on 01/24/2022 - ]]> - - 12/19/1966 - - - - MINKOWITZ ET AL V. CITY OF WEST MEMPHIS - - 241 ARK. 207 - - 10/17/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258584/index.do - - - Document updated on 01/24/2022 - ]]> - - 10/17/1966 - - - - MILLER V. GARNER - - 241 ARK. 715 - - 12/19/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258688/index.do - - - Document updated on 01/24/2022 - ]]> - - 12/19/1966 - - - - MID-SO. INS. CO. V. 1ST. NAT. BK., FT.SMITH - - 241 ARK. 935 - - 02/06/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258734/index.do - - - Document updated on 01/24/2022 - ]]> - - 02/06/1967 - - - - METROPOLITAN LIFE INS. CO. V. ROBERTS - - 241 ARK. 994 - - 01/01/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258722/index.do - - - Document updated on 01/24/2022 - ]]> - - 01/01/1966 - - - - MEISTER V. REDDMANN - - 241 ARK. 854 - - 01/30/1967 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258719/index.do - - - Document updated on 01/24/2022 - ]]> - - 01/30/1967 - - - - MCNEELY V. CLEM MILL & GIN - - 241 ARK. 498 - - 11/28/1966 - - https://opinions.arcourts.gov/ark/supremecourt/en/item/258648/index.do - - - Document updated on 01/24/2022 - ]]> - - 11/28/1966 - -
-
- + + + + + + + Advanced Search - Arkansas Courts + + + + + + + + + + + + + + + + + + +
+
+ + + + +
+

+ + Advanced Search +

+ +
+
+ + + + +
+
+
+ +
+ +
+
+ Sort by: + Relevance + Date +
+
+ +
+
+

5 result(s)

+
+
+ +
+
+
+ +
+
+ + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/arkctapp_example.compare.json b/tests/examples/opinions/united_states/arkctapp_example.compare.json index 4c5bf348f..e93ce7812 100644 --- a/tests/examples/opinions/united_states/arkctapp_example.compare.json +++ b/tests/examples/opinions/united_states/arkctapp_example.compare.json @@ -1,112 +1,170 @@ [ { - "case_dates": "2022-02-02", - "case_names": "Willie Lockett, Jr. v. State of Arkansas", - "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/520509/1/document.do", + "case_dates": "2024-04-03", + "case_names": "Tracey Scott and Lorrenzo Hampton, Individually and on Behalf of All Others Similarly Situated v. Revclaims, LLC", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522667/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. App. 41", - "case_name_shorts": "" + "citations": "2024 Ark. App. 231", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2022-02-02", - "case_names": "Tabitha and Ken Lancaster v. Rogers Construction, Inc.", - "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/520524/1/document.do", + "case_dates": "2024-04-03", + "case_names": "Sherri Reggans v. Scott Schlesinger, Md; And Freeway Surgery Center, LLC", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522663/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. App. 54", - "case_name_shorts": "" + "citations": "2024 Ark. App. 227", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2022-02-02", - "case_names": "Midland Funding, LLC And Midland Credit Management, Inc. v. Jennifer Briesmeister, on Behalf of Herself and All Others Similarly Situated", - "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/520522/1/document.do", + "case_dates": "2024-04-03", + "case_names": "Roberto Rodriguez v. Mangaraju Chakka; Kanth Dasari; John Doe I; John Doe II; And John Doe III", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522660/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. App. 52", - "case_name_shorts": "" + "citations": "2024 Ark. App. 224", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2022-02-02", - "case_names": "James R. Humphrey and Shirley Ann Humphrey, Individually Patrick Humphrey, James R. Humphrey, and Shirley A. Humphrey, as Trustees of the Humphrey 2009 Living Trust, Dated July 13, 2009 And the Humphrey 2009 Living Trust, Dated July 13, 2009 v. Carla Tuttle Bailey", - "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/520528/1/document.do", + "case_dates": "2024-04-03", + "case_names": "Porter's Commercial Refrigeration, Inc. v. Danny A. Brewer, Jason Spears, And Natural State Supermarket Refrigeration, LLC", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522668/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. App. 42", - "case_name_shorts": "" + "citations": "2024 Ark. App. 232", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2022-02-02", - "case_names": "Gerald T. (Jerry) Silzell v. Sammy Ann Silzell", - "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/520520/1/document.do", + "case_dates": "2024-04-03", + "case_names": "Nicolas Lelieur v. State of Arkansas", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522661/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. App. 50", - "case_name_shorts": "" + "citations": "2024 Ark. App. 225", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2022-02-02", - "case_names": "Gaynell Baker v. State of Arkansas", - "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/520523/1/document.do", + "case_dates": "2024-04-03", + "case_names": "Kris Hanson v. State of Arkansas", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522658/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. App. 53", - "case_name_shorts": "" + "citations": "2024 Ark. App. 222", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2022-02-02", - "case_names": "Fred-Allen Self v. Jennifer Dittmer", - "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/520517/1/document.do", + "case_dates": "2024-04-03", + "case_names": "Jerry Baggett v. Director, Division of Workforce Services", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522662/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. App. 48", - "case_name_shorts": "" + "citations": "2024 Ark. App. 226", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2022-02-02", - "case_names": "Fred Jackson v. Director, Department of Workforce Services", - "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/520510/1/document.do", + "case_dates": "2024-04-03", + "case_names": "Jason Reynolds v. Mary \"Katie\" Reynolds", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522665/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. App. 43", - "case_name_shorts": "" + "citations": "2024 Ark. App. 229", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2022-02-02", - "case_names": "David Kinder v. Wendy Kinder", - "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/520507/1/document.do", + "case_dates": "2024-04-03", + "case_names": "Eugene Hare v. State of Arkansas", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522659/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. App. 39", - "case_name_shorts": "" + "citations": "2024 Ark. App. 223", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2022-02-02", - "case_names": "Addam Maxwell v. Lori Maxwell", - "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/520521/1/document.do", + "case_dates": "2024-04-03", + "case_names": "Erica Moore v. David Moore, Jr.", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522666/1/document.do", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "2022 Ark. App. 51", - "case_name_shorts": "" + "citations": "2024 Ark. App. 230", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-04-03", + "case_names": "Donnie Raymond Partain v. State of Arkansas", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522656/1/document.do", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2024 Ark. App. 220", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-04-03", + "case_names": "Corey Thomas v. State of Arkansas", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522669/1/document.do", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2024 Ark. App. 233", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-04-03", + "case_names": "Arkansas Local Police and Fire Retirement System v. Michael Payne", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522657/1/document.do", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2024 Ark. App. 221", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-04-03", + "case_names": "Altice USA, Inc., D/B/A Suddenlink Communications v. City of Gurdon, Arkansas", + "download_urls": "https://opinions.arcourts.gov/ark/courtofappeals/en/522664/1/document.do", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2024 Ark. App. 228", + "case_name_shorts": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/arkctapp_example.html b/tests/examples/opinions/united_states/arkctapp_example.html index 59f03b005..215405342 100644 --- a/tests/examples/opinions/united_states/arkctapp_example.html +++ b/tests/examples/opinions/united_states/arkctapp_example.html @@ -1,1707 +1,1611 @@ - - - - - Court of Appeals - https://opinions.arcourts.gov/ark/courtofappeals/en/rss.do - Recently published and updated (translated, amended or corrected) documents - en - - - FRED-ALLEN SELF v. JENNIFER DITTMER - - 2022 Ark. App. 48 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520517/index.do - - - 2022 Spring Term
- New document published on 02/03/2022 - ]]> -
- 02/02/2022 -
- - - TABITHA AND KEN LANCASTER v. ROGERS CONSTRUCTION, INC. - - 2022 Ark. App. 54 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520524/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - DAVID KINDER v. WENDY KINDER - - 2022 Ark. App. 39 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520507/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - WILLIE LOCKETT, JR. v. STATE OF ARKANSAS - - 2022 Ark. App. 41 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520509/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - FRED JACKSON v. DIRECTOR, DEPARTMENT OF WORKFORCE SERVICES - - 2022 Ark. App. 43 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520510/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - JAMES R. HUMPHREY AND SHIRLEY ANN HUMPHREY, INDIVIDUALLY; PATRICK HUMPHREY, JAMES R. HUMPHREY, AND SHIRLEY A. HUMPHREY, AS TRUSTEES OF THE HUMPHREY 2009 LIVING TRUST, DATED JULY 13, 2009; AND THE HUMPHREY 2009 LIVING TRUST, DATED JULY 13, 2009 v. CARLA TUTTLE BAILEY - - 2022 Ark. App. 42 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520528/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - GERALD T. (JERRY) SILZELL v. SAMMY ANN SILZELL - - 2022 Ark. App. 50 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520520/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - ADDAM MAXWELL v. LORI MAXWELL - - 2022 Ark. App. 51 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520521/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - MIDLAND FUNDING, LLC; AND MIDLAND CREDIT MANAGEMENT, INC. v. JENNIFER BRIESMEISTER, ON BEHALF OF HERSELF AND ALL OTHERS SIMILARLY SITUATED - - 2022 Ark. App. 52 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520522/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - GAYNELL BAKER v. STATE OF ARKANSAS - - 2022 Ark. App. 53 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520523/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - 02-02-2022 SYLLABUS - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520556/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - THOMAS BLANTON v. STATE OF ARKANSAS - - 2022 Ark. App. 44 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520512/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - W.O. (A JUVENILE) v. STATE OF ARKANSAS - - 2022 Ark. App. 45 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520513/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - CITY OF FORT SMITH, ARKANSAS v. GARY OSBORNE AND DONNA OSBORNE - - 2022 Ark. App. 46 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520514/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - BOBBY PIXLEY, JR. v. STATE OF ARKANSAS - - 2022 Ark. App. 47 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520515/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - JANET NICHOLAS v. MIKE JONES - - 2022 Ark. App. 55 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520551/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - RICHARD HASKINS v. SABRENA HOWE - - 2022 Ark. App. 49 - - 02/02/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520519/index.do - - - 2022 Spring Term
- New document published on 02/02/2022 - ]]> -
- 02/02/2022 -
- - - JAMES WEST v. SHELTER MUTUAL INSURANCE COMPANY - - 2022 Ark. App. 38 - - 01/26/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520024/index.do - - - 2022 Spring Term
- New document published on 01/26/2022 - ]]> -
- 01/26/2022 -
- - - STEVEN FOLSOM v. ARKANSAS DEPARTMENT OF HUMAN SERVICES AND MINOR CHILDREN - - 2022 Ark. App. 29 - - 01/26/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520015/index.do - - - 2022 Spring Term
- New document published on 01/26/2022 - ]]> -
- 01/26/2022 -
- - - DANA BREHM v. DIRECTOR, DEPARTMENT OF WORKFORCE SERVICES - - 2022 Ark. App. 30 - - 01/26/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520016/index.do - - - 2022 Spring Term
- New document published on 01/26/2022 - ]]> -
- 01/26/2022 -
- - - ALEJANDRO YEPEZ v. BEVERLY C. YEPEZ - - 2022 Ark. App. 31 - - 01/26/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520017/index.do - - - 2022 Spring Term
- New document published on 01/26/2022 - ]]> -
- 01/26/2022 -
- - - CHRISTOPHER RICE v. STATE OF ARKANSAS - - 2022 Ark. App. 32 - - 01/26/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520018/index.do - - - 2022 Spring Term
- New document published on 01/26/2022 - ]]> -
- 01/26/2022 -
- - - ELIZABETH GARNER v. ARKANSAS DEPARTMENT OF HUMAN SERVICES AND MINOR CHILD - - 2022 Ark. App. 33 - - 01/26/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520019/index.do - - - 2022 Spring Term
- New document published on 01/26/2022 - ]]> -
- 01/26/2022 -
- - - JOHN CULLUM v. ARKANSAS DEPARTMENT OF HUMAN SERVICES AND MINOR CHILD - - 2022 Ark. App. 34 - - 01/26/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520020/index.do - - - 2022 Spring Term
- New document published on 01/26/2022 - ]]> -
- 01/26/2022 -
- - - 01-26-22 SYLLABUS - - 01/26/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520053/index.do - - - 2022 Spring Term
- New document published on 01/26/2022 - ]]> -
- 01/26/2022 -
- - - AMANDA YANCY v. ARKANSAS DEPARTMENT OF HUMAN SERVICES AND MINOR CHILDREN - - 2022 Ark. App. 35 - - 01/26/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520021/index.do - - - 2022 Spring Term
- New document published on 01/26/2022 - ]]> -
- 01/26/2022 -
- - - HALEY MCPHERSON v. DIRECTOR, DIVISION OF WORKFORCE SERVICES; AND SCHLOTZKY'S DELI - - 2022 Ark. App. 36 - - 01/26/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520022/index.do - - - 2022 Spring Term
- New document published on 01/26/2022 - ]]> -
- 01/26/2022 -
- - - MARTHA SOLER v. DIRECTOR, DEPARTMENT OF WORKFORCE SERVICES - - 2022 Ark. App. 37 - - 01/26/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/520023/index.do - - - 2022 Spring Term
- New document published on 01/26/2022 - ]]> -
- 01/26/2022 -
- - - SHERRY LASHAY WOODS v. STATE OF ARKANSAS - - 2018 Ark. App. 256 - - 04/18/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308808/index.do - - - 2018 Spring Term
- Document updated on 01/25/2022 - ]]> -
- 04/18/2018 -
- - - Roger D. Pleasant, et al. v. DUSTIN MCDANIEL, ATTORNEY GENERAL OF THE STATE OF ARKANSAS - - 2018 Ark. App. 254 - - 04/18/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308805/index.do - - - 2018 Spring Term
- Document updated on 01/25/2022 - ]]> -
- 04/18/2018 -
- - - MICHAEL MITCHELL v. STATE OF ARKANSAS - - 2018 Ark. App. 253 - - 04/18/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308806/index.do - - - 2018 Spring Term
- Document updated on 01/25/2022 - ]]> -
- 04/18/2018 -
- - - KENNETH STUART v. STATE OF ARKANSAS - - 2018 Ark. App. 257 - - 04/18/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308809/index.do - - - 2018 Spring Term
- Document updated on 01/25/2022 - ]]> -
- 04/18/2018 -
- - - JONATHAN JACOB BUCK V. ARKANSAS DEPARTMENT OF HUMAN SERVICES AND MINOR CHILDREN - - 2018 Ark. App. 258 - - 04/18/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308810/index.do - - - 2018 Spring Term
- Document updated on 01/25/2022 - ]]> -
- 04/18/2018 -
- - - John V. Glenn v. Mike Bubbus - - 2018 Ark. App. 252 - - 04/18/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308803/index.do - - - 2018 Spring Term
- Document updated on 01/25/2022 - ]]> -
- 04/18/2018 -
- - - JAMES LARAIL SHARP, JR. v. STATE OF ARKANSAS - - 2018 Ark. App. 255 - - 04/18/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308807/index.do - - - 2018 Spring Term
- Document updated on 01/25/2022 - ]]> -
- 04/18/2018 -
- - - ENTERGY ARKANSAS, INC., ET AL., v. RONNIE FRANCIS, ET AL., - - 2018 Ark. App. 250 - - 04/18/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308801/index.do - - - 2018 Spring Term
- Document updated on 01/25/2022 - ]]> -
- 04/18/2018 -
- - - DENAN CAGLE v. VAN BUREN SCHOOL DISTRICT - - 2018 Ark. App. 259 - - 04/18/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308812/index.do - - - 2018 Spring Term
- Document updated on 01/25/2022 - ]]> -
- 04/18/2018 -
- - - DAVID L. MCKIM v. JACK B. SULLIVAN - - 2018 Ark. App. 260 - - 04/18/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308815/index.do - - - 2018 Spring Term
- Document updated on 01/25/2022 - ]]> -
- 04/18/2018 -
- - - BRIAN ANTONIO SMITH v. STATE OF ARKANSAS - - 2018 Ark. App. 249 - - 04/18/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308798/index.do - - - 2018 Spring Term
- Document updated on 01/25/2022 - ]]> -
- 04/18/2018 -
- - - ARKANSAS DEPARTMENT OF HUMAN SERVICES and ARKANSAS INSURANCE DEPARTMENT, PUBLIC EMPLOYEE CLAIMS DIVISION v. CINDY SHIELDS - - 2018 Ark. App. 247 - - 04/11/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308475/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/11/2018 -
- - - KIRK DAVID HALCOMB v. STATE OF ARKANSAS - - 2018 Ark. App. 248 - - 04/11/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308476/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/11/2018 -
- - - MARCUS LASHUN TOWNSEND v. DORIAN TYA TOWNSEND - - 2018 Ark. App. 246 - - 04/11/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308474/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/11/2018 -
- - - DAVID ATHERTON v. CYNTHIA ATHERTON - - 2018 Ark. App. 245 - - 04/11/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308473/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/11/2018 -
- - - DAVIN TERELL ALLEN v. STATE OF ARKANSAS - - 2018 Ark. App. 244 - - 04/11/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308472/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/11/2018 -
- - - Kenneth James Clark v. Arkansas Departmenf of Human Services and Minor Children - - 2018 Ark. App. 243 - - 04/11/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308471/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/11/2018 -
- - - RONALD CLARK SHAVER v. STATE OF ARKANSAS - - 2018 Ark. App. 242 - - 04/11/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308470/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/11/2018 -
- - - GERMAN VASQUEZ v. STATE OF ARKANSAS - - 2018 Ark. App. 241 - - 04/11/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308469/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/11/2018 -
- - - ANDERSON-TULLY COMPANY v. PATRICIA SCALES VADEN and James M. Moncrief - - 2018 Ark. App. 240 - - 04/11/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308468/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/11/2018 -
- - - Sonny A. Byrum v. State of Arkansas - - 2018 Ark. App. 228 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308082/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - Nat'l Transit Staffing, Inc. v. Mark Joseph Norris - - 2018 Ark. App. 229 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308085/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - Misty Lawrence v. Arkansas Department of Human Services and minor child - - 2018 Ark. App. 223 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308076/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - LEA CANDACE BRADLEY v. ARKANSAS DEPARMENT OF HUMAN SERVICES AND MINOR CHILD, - - 2018 Ark. App. 233 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308089/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - Kevin Dunhoo v. State of Arkansas - - 2018 Ark. App. 232 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308088/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - KENNETH J. CLARK, AS TRUSTEE OF THE CLARK REVOCABLE TRUST v. MELVA JEAN SUMMERS - - 2018 Ark. App. 225 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308079/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - Jason Hargis v. Jim Lovett - - 2018 Ark. App. 227 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308081/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - In re Estate of Edens - - 2018 Ark. App. 226 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308080/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - Farm Credit Midsouth, PCA v. Fred Bollinger, Jr. - - 2018 Ark. App. 224 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308078/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - ELVIS MIDDLETON AND BRITTNEY MIDDLETON v. JENNIFER MIDDLETON, ADMINISTRATRIX OF THE, ESTATE OF JOSHUA, MIDDLETON, DECEASED - - 2018 Ark. App. 237 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308096/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - Connie Burke v. Arkansas Department of Correction - - 2018 Ark. App. 231 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308086/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - Brian Skender v. Union Pacific Railroad Company - - 2018 Ark. App. 234 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308090/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - BRADY WILLIAMSON v. JOHN J. WILLIAMSON - - 2018 Ark. App. 236 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308094/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - ANGELA HEWETT v. KELLY HEWETT - - 2018 Ark. App. 235 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308092/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - Andrew Lee Jackson v. State of Arkansas - - 2018 Ark. App. 222 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308075/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - ALICE MCCUTCHEN v. HUMAN DEVELOPMENT CENTER AND PUBLIC EMPLOYEE CLAIMS DIVISION - - 2018 Ark. App. 239 - - 04/04/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/308098/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 04/04/2018 -
- - - DUAN HARRIS v. STATE OF ARKANSAS - - 2018 Ark. App. 219 - - 03/28/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307802/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 03/28/2018 -
- - - DON JOHNSON v. ARKANSAS DEPARTMENT OF HUMAN SERVICES AND MINOR CHILD - - 2018 Ark. App. 221 - - 03/28/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307807/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 03/28/2018 -
- - - DEVON LAMAR WARD v. STATE OF ARKANSAS - - 2018 Ark. App. 210 - - 03/28/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307793/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 03/28/2018 -
- - - DANNY L. BURROW V. J.T. WHITE HARDWARD & LUMBER COMPANY - - 2018 Ark. App. 212 - - 03/28/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307795/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 03/28/2018 -
- - - DANIEL LYNN HONEY V. STATE OF ARKANSAS - - 2018 Ark. App. 217 - - 03/28/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307800/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 03/28/2018 -
- - - BOBBY BOLDEN v. ARKANSAS DEPARTMENT OF HUMAN SERVICES AND MINOR CHILDREN - - 2018 Ark. App. 218 - - 03/28/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307801/index.do - - - 2018 Spring Term
- Document updated on 01/24/2022 - ]]> -
- 03/28/2018 -
- - - LEODIS SLEDGE, INDIVIDUALLY AND AS ADMINISTRATOR OF THE ESTATE OF TANESHA LEACH, DECEASED, AND ON BEHALF OF ALL WRONGFUL DEATH BENEFICIARIES AND HEIRS AT LAW v. CITY OF PINE BLUFF, ARKANSAS, BY AND THROUGH ITS MAYOR, SHIRLEY WASHINGTON, IN HER OFFICIAL CAPACITY AS MAYOR OF THE CITY OF PINE BLUFF, ARKANSAS; PINE BLUFF CITY COUNCIL, BY AND THROUGH ITS EX-OFFICIO PRESIDENT, SHIRLEY WASHINGTON, IN HER OFFICIAL CAPACITY; RICK RHODEN, IN HIS OFFICIAL CAPACITY AS DIRECTOR OF PINE BLUFF STREET DEPARTMENT; AND KELVIN SARGENT, IN HIS OFFICIAL CAPACITY AS CHIEF OF POLICE OF THE CITY OF PINE BLUFF - - 2022 Ark. App. 23 - - 01/19/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519649/index.do - - - 2022 Spring Term
- New document published on 01/20/2022 - ]]> -
- 01/19/2022 -
- - - ALB INVESTMENTS, LLC v. CARL ECHOLS - - 2022 Ark. App. 20 - - 01/19/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519646/index.do - - - 2022 Spring Term
- New document published on 01/20/2022 - ]]> -
- 01/19/2022 -
- - - MELISSA PERRIN-REED v. WILLIAM REED - - 2022 Ark. App. 24 - - 01/19/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519650/index.do - - - 2022 Fall Term
- New document published on 01/19/2022 - ]]> -
- 01/19/2022 -
- - - DIANA WILCOX v. RUBE "DUBBY" WILCOX - - 2022 Ark. App. 18 - - 01/19/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519644/index.do - - - 2022 Spring Term
- New document published on 01/19/2022 - ]]> -
- 01/19/2022 -
- - - J.R. v. STATE OF ARKANSAS - - 2022 Ark. App. 19 - - 01/19/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519645/index.do - - - 2022 Spring Term
- New document published on 01/19/2022 - ]]> -
- 01/19/2022 -
- - - AMANDA WALKER AND RANDALLE SANDERS v. ARKANSAS DEPARTMENT OF HUMAN SERVICES AND MINOR CHILDREN - - 2022 Ark. App. 21 - - 01/19/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519647/index.do - - - 2022 Spring Term
- New document published on 01/19/2022 - ]]> -
- 01/19/2022 -
- - - ALEXA SHIPLEY v. CHARLES F. GARDNER, ADMINISTRATOR OF THE ESTATE, OF NICHOLAS H. MCGUIRE - - 2022 Ark. App. 22 - - 01/19/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519648/index.do - - - 2022 Spring Term
- New document published on 01/19/2022 - ]]> -
- 01/19/2022 -
- - - MIKETERRIO COOPER v. STATE OF ARKANSAS - - 2022 Ark. App. 25 - - 01/19/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519651/index.do - - - 2022 Spring Term
- New document published on 01/19/2022 - ]]> -
- 01/19/2022 -
- - - ELLA COX v. ARKANSAS DEPARTMENT OF HUMAN SERVICES AND MINOR CHILD - - 2022 Ark. App. 26 - - 01/19/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519652/index.do - - - 2022 Spring Term
- New document published on 01/19/2022 - ]]> -
- 01/19/2022 -
- - - ANITA DEFELL v. ARKANSAS DEPARTMENT OF HUMAN SERVICES AND MINOR CHILDREN - - 2022 Ark. App. 27 - - 01/19/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519653/index.do - - - 2022 Spring Term
- New document published on 01/19/2022 - ]]> -
- 01/19/2022 -
- - - SAMANTHA JONES v. ARKANSAS DEPARTMENT OF HUMAN SERVICES AND MINOR CHILD - - 2022 Ark. App. 28 - - 01/19/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519654/index.do - - - 2022 Spring Term
- New document published on 01/19/2022 - ]]> -
- 01/19/2022 -
- - - 01-19-2022 SYLLABUS - - 01/19/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519671/index.do - - - 2022 Fall Term
- New document published on 01/19/2022 - ]]> -
- 01/19/2022 -
- - - Rodney Antonio Willis v. State of Arkansas - - 2018 Ark. App. 199 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307257/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - Roddrick Larnell Smith v. State of Arkansas - - 2018 Ark. App. 205 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307259/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - ROBERT C. GOLDTRAP, D.D.S., AND ROBERT C. GOLDTRAP, D.D.S. P.A., AN ARKANSAS DENTAL CORPORATION v. BOLD DENTAL MANAGEMENT, LLC, A DELAWARE LIMITED LIABILITY COMPANY AND BOLD DENTAL PARTNERS, PLLC, AN ARKAnsas professional limited liability company - - 2018 Ark. App. 209 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307266/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - Rex L. Houston, Jr.; Kelton R. Brown, Jr.; John G. Homatas; and Jim West, Individually and on behalf of themselves and all others similarly situated; collectively known as Opponents of Ordinance 6121, v. City of Hot Springs, Arkansas, - - 2018 Ark. App. 196 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307268/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - LEWIS M. YANCY, JR. v. EUGENE HUNT - - 2018 Ark. App. 195 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307270/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - KRISTIN CHELSTROM v. BRANDY CHELSTROM AND RANDALL CHELSTROM - - 2018 Ark. App. 208 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307265/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - Kristal L. Thompson v. Luke B. Brunck and Amber M. Brunck - - 2018 Ark. App. 198 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307256/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - KATHY FRAZIER MAYS V. JACQUELINE MULLINS - - 2018 Ark. App. 200 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307254/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - HERBERT AYERS v. TYSON POULTRY, INC., AND SECOND INJURY FUND - - 2018 Ark. App. 206 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307262/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - DONNA SWANGEL V. ARKANSAS DEPARTMENT OF HUMAN SERVICES AND MINOR CHILDREN - - 2018 Ark. App. 197 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307286/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - CURTIS MOTLEY, JR., AS SPECIAL ADMINISTRATOR OF THE ESTATE OF LAURA MOTLEY, DECEASED, v. MICHAEL SIFFORD, M.D., - - 2018 Ark. App. 203 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307276/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - BROOKEWOOD, LIMITED PARTNERSHIP V. DEQUEEN PHYSICAL THERAPY AND OCCUPATIONAL THERAPY, INC. - - 2018 Ark. App. 204 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307264/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - AT&T Corp. v. Clark County, Ark. - - 2018 Ark. App. 207 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307260/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - Anne O'Hare Bynum v. State of Arkansas - - 2018 Ark. App. 201 - - 03/14/2018 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/307253/index.do - - - 2018 Spring Term
- Document updated on 01/14/2022 - ]]> -
- 03/14/2018 -
- - - PHILLIP J. JACKSON v. EARL ROSS DOWNS AND RAYMOND ABRAMSON - - 2022 Ark. App. 17 - - 01/12/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519166/index.do - - - 2022 Spring Term
- New document published on 01/12/2022 - ]]> -
- 01/12/2022 -
- - - NICK ALLEN v. DAVID SARGENT - - 2022 Ark. App. 14 - - 01/12/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519173/index.do - - - 2022 Spring Term
- New document published on 01/12/2022 - ]]> -
- 01/12/2022 -
- - - ALVIN AIKENS v. STATE OF ARKANSAS - - 2021 Ark. App. 487 - - 12/08/2021 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/517291/index.do - - - 2021 Fall Term
- Document updated on 01/12/2022 - ]]> -
- 12/08/2021 -
- - - 01-12-22 SYLLABUS - - 01/12/2022 - - https://opinions.arcourts.gov/ark/courtofappeals/en/item/519186/index.do - - - 2022 Spring Term
- New document published on 01/12/2022 - ]]> -
- 01/12/2022 -
-
-
+ + + + + + Advanced Search - Arkansas Courts + + + + + + + + + + + + + + + + + + +
+
+ + + + +
+

+ + Advanced Search +

+ +
+
+ + + + +
+
+
+ +
+ +
+
+ Sort by: + Relevance + Date +
+
+ +
+
+

15 result(s)

+
+
+ +
+
+
+ +
+
+ + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/armfor_example.compare.json b/tests/examples/opinions/united_states/armfor_example.compare.json index 26fca694c..7caf56459 100644 --- a/tests/examples/opinions/united_states/armfor_example.compare.json +++ b/tests/examples/opinions/united_states/armfor_example.compare.json @@ -1,292 +1,277 @@ [ { - "case_dates": "2016-08-10", - "case_names": "United States v. Sterling", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150510And160223.pdf", + "case_dates": "2023-09-29", + "case_names": "United States v. Warda", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220282.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0510 and 16-0223/MC", - "case_name_shorts": "Sterling" + "docket_numbers": "22-0282/AR", + "citations": "", + "case_name_shorts": "Warda" }, { - "case_dates": "2016-07-19", - "case_names": "United States v. Witt", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150260.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-0260/AF", - "case_name_shorts": "Witt" - }, - { - "case_dates": "2016-07-19", - "case_names": "Howell v. United States", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/160289And160367.pdf", + "case_dates": "2023-09-25", + "case_names": "United States v. Jeter", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220065.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-0289 and 16-0367/MC", - "case_name_shorts": "Howell" + "docket_numbers": "22-0065/NA", + "citations": "", + "case_name_shorts": "Jeter" }, { - "case_dates": "2016-06-28", - "case_names": "United States v. Harrell", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/160007.pdf", + "case_dates": "2023-09-06", + "case_names": "United States v. Hasan", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/210193.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-0007/AF", - "case_name_shorts": "Harrell" + "docket_numbers": "21-0193/AR", + "citations": "", + "case_name_shorts": "Hasan" }, { - "case_dates": "2016-06-27", - "case_names": "United States v. Hills", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150767.pdf", + "case_dates": "2023-08-10", + "case_names": "United States v. Harrington", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220100.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0767/AR", - "case_name_shorts": "Hills" + "docket_numbers": "22-0100/AF", + "citations": "83 MJ 408", + "case_name_shorts": "Harrington" }, { - "case_dates": "2016-06-21", - "case_names": "EV v. Martinez", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/160398.pdf", + "case_dates": "2023-08-03", + "case_names": "United States v. Gilmet", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/230010.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-0398/MC", - "case_name_shorts": "EV" + "docket_numbers": "23-0010/NA", + "citations": "83 MJ 398", + "case_name_shorts": "Gilmet" }, { - "case_dates": "2016-06-17", - "case_names": "United States v. Martin", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150754And160122.pdf", + "case_dates": "2023-07-21", + "case_names": "United States v. Cunningham", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/230027.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0754 and 16-0122/MC", - "case_name_shorts": "Martin" + "docket_numbers": "23-0027/AF", + "citations": "83 MJ 367", + "case_name_shorts": "Cunningham" }, { - "case_dates": "2016-06-06", - "case_names": "United States v. Evans", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/160019.pdf", + "case_dates": "2023-07-13", + "case_names": "M.W. v. United States", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/230104.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-0019/AR", - "case_name_shorts": "Evans" + "docket_numbers": "23-0104/AF", + "citations": "83 MJ 361", + "case_name_shorts": "M.W." }, { - "case_dates": "2016-05-17", - "case_names": "United States v. Clark", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/160068.pdf", + "case_dates": "2023-07-12", + "case_names": "United States v. Smith", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220237.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-0068/NA", + "docket_numbers": "22-0237/AF", + "citations": "83 MJ 350", "case_name_shorts": "" }, { - "case_dates": "2016-05-16", - "case_names": "United States v. Rogers", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/160006.pdf", + "case_dates": "2023-06-29", + "case_names": "United States v. Anderson", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220193.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-0006/CG", - "case_name_shorts": "" + "docket_numbers": "22-0193/AF", + "citations": "83 MJ 291", + "case_name_shorts": "Anderson" }, { - "case_dates": "2016-05-16", - "case_names": "United States v. Caldwell", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/160091.pdf", + "case_dates": "2023-06-05", + "case_names": "United States v. Witt", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220090.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-0091/AR", - "case_name_shorts": "Caldwell" + "docket_numbers": "22-0090/AF", + "citations": "83 MJ 282", + "case_name_shorts": "Witt" }, { - "case_dates": "2016-05-11", - "case_names": "United States v. Gay", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150742And150750.pdf", + "case_dates": "2023-05-18", + "case_names": "United States v. Mays", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/230001.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0742 and 15-0750/AF", - "case_name_shorts": "Gay" + "docket_numbers": "23-0001/AR", + "citations": "83 MJ 277", + "case_name_shorts": "Mays" }, { - "case_dates": "2016-05-06", - "case_names": "United States v. Cooley", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150384And150387.pdf", + "case_dates": "2023-05-05", + "case_names": "United States v. Kim", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220234.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0384 and 15-0387/CG", - "case_name_shorts": "Cooley" + "docket_numbers": "22-0234/AR", + "citations": "83 MJ 235", + "case_name_shorts": "Kim" }, { - "case_dates": "2016-05-03", - "case_names": "United States v. Williams", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/160053.pdf", + "case_dates": "2023-04-28", + "case_names": "United States v. Shields", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220279.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-0053/AF", - "case_name_shorts": "" + "docket_numbers": "22-0279/MC", + "citations": "83 MJ 226", + "case_name_shorts": "Shields" }, { - "case_dates": "2016-04-26", - "case_names": "United States v. Chin", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150749.pdf", + "case_dates": "2023-04-20", + "case_names": "Fink v. Y.B. and U.S.", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/230061.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0749/AF", - "case_name_shorts": "Chin" + "docket_numbers": "23-0061/CG", + "citations": "83 MJ 222", + "case_name_shorts": "Fink" }, { - "case_dates": "2016-04-19", - "case_names": "United States v. Killion", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150425.pdf", + "case_dates": "2023-04-14", + "case_names": "United States v. Pullings", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220123.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0425/AF", - "case_name_shorts": "Killion" + "docket_numbers": "22-0123/AF", + "citations": "83 MJ 205", + "case_name_shorts": "Pullings" }, { - "case_dates": "2016-04-12", - "case_names": "United States v. Atchak", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/160054.pdf", + "case_dates": "2023-03-31", + "case_names": "United States v. Lattin", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220211.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-0054/AF", - "case_name_shorts": "Atchak" + "docket_numbers": "22-0211/AF", + "citations": "83 MJ 192", + "case_name_shorts": "Lattin" }, { - "case_dates": "2016-03-21", - "case_names": "United States v. Henning", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/160026.pdf", + "case_dates": "2023-03-30", + "case_names": "United States v. Steele", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220254.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-0026/AR", - "case_name_shorts": "Henning" + "docket_numbers": "22-0254/AR", + "citations": "83 MJ 188", + "case_name_shorts": "Steele" }, { - "case_dates": "2016-03-18", - "case_names": "United States v. Rapert", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150476.pdf", + "case_dates": "2023-03-24", + "case_names": "United States v. McAlhaney", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220170.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0476/AR", - "case_name_shorts": "Rapert" + "docket_numbers": "22-0170/AF", + "citations": "83 MJ 164", + "case_name_shorts": "McAlhaney" }, { - "case_dates": "2016-03-17", - "case_names": "United States v. Pease", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/160014.pdf", + "case_dates": "2023-03-21", + "case_names": "United States v. Behunin", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220276.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-0014/NA", - "case_name_shorts": "Pease" + "docket_numbers": "22-0276/AF", + "citations": "83 MJ 158", + "case_name_shorts": "Behunin" }, { - "case_dates": "2016-03-08", - "case_names": "United States v. Gifford", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150426.pdf", + "case_dates": "2023-03-14", + "case_names": "United States v. Vargas", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220259.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0426/AR", - "case_name_shorts": "Gifford" + "docket_numbers": "22-0259/AR", + "citations": "83 MJ 150", + "case_name_shorts": "Vargas" }, { - "case_dates": "2016-03-07", - "case_names": "United States v. Wilder", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150087.pdf", + "case_dates": "2023-02-23", + "case_names": "United States v. King", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220008.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0087/MC", - "case_name_shorts": "Wilder" + "docket_numbers": "22-0008/AF", + "citations": "83 MJ 115", + "case_name_shorts": "King" }, { - "case_dates": "2016-02-23", - "case_names": "United States v. Williams", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150140.pdf", + "case_dates": "2023-01-30", + "case_names": "United States v. St. Jean", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220129.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0140/AR", + "docket_numbers": "22-0129/AR", + "citations": "83 MJ 109", "case_name_shorts": "" }, { - "case_dates": "2016-02-18", - "case_names": "United States v. Hoffmann", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150361.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-0361/MC", - "case_name_shorts": "Hoffmann" - }, - { - "case_dates": "2016-02-04", - "case_names": "United States v. Captain", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150172.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-0172/MC", - "case_name_shorts": "Captain" - }, - { - "case_dates": "2016-01-29", - "case_names": "United States v. Busch", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150477.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-0477/AF", - "case_name_shorts": "Busch" - }, - { - "case_dates": "2016-01-07", - "case_names": "United States v. Riggins", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150334.pdf", + "case_dates": "2023-01-17", + "case_names": "United States v. Pyron", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220277.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0334/MC", - "case_name_shorts": "Riggins" + "docket_numbers": "22-0277/NA", + "citations": "83 MJ 59", + "case_name_shorts": "Pyron" }, { - "case_dates": "2016-01-06", - "case_names": "United States v. Bess", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150372.pdf", + "case_dates": "2022-12-13", + "case_names": "United States v. Day", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220122.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0372/NA", - "case_name_shorts": "Bess" + "docket_numbers": "22-0122/AF", + "citations": "83 MJ 53", + "case_name_shorts": "Day" }, { - "case_dates": "2015-12-11", - "case_names": "United States v. LaBella", - "download_urls": "http://www.armfor.uscourts.gov/newcaaf/opinions/2015SepTerm/150413.pdf", + "case_dates": "2022-11-21", + "case_names": "United States v. Thompson", + "download_urls": "tests/examples/opinions/united_states/2022OctTerm/220098.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-0413/AF", - "case_name_shorts": "LaBella" + "docket_numbers": "22-0098/AF", + "citations": "83 MJ 1", + "case_name_shorts": "Thompson" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/armfor_example.html b/tests/examples/opinions/united_states/armfor_example.html index b8569e0ed..0f5887502 100644 --- a/tests/examples/opinions/united_states/armfor_example.html +++ b/tests/examples/opinions/united_states/armfor_example.html @@ -1,6 +1,6 @@ -Opinions for 2015 Term of Court +Opinions for October 2022 Term of Court diff --git a/tests/examples/opinions/united_states/asbca_example.compare.json b/tests/examples/opinions/united_states/asbca_example.compare.json index 91f36a1ec..72139f150 100644 --- a/tests/examples/opinions/united_states/asbca_example.compare.json +++ b/tests/examples/opinions/united_states/asbca_example.compare.json @@ -1,2612 +1,1421 @@ [ { - "case_dates": "2014-08-28", - "case_names": "Suffolk Construction Company", - "download_urls": "tests/examples/opinions/united_states/2014/59079,%2059080%20Suffolk%20Construction%20Company%208.28.14.pdf", + "case_dates": "2024-06-18", + "case_names": "Missouri Department of Social Services", + "download_urls": "/Portals/143/Decisions/2024/63410-ADR et al. Missouri Department of Social Services 6.18.24 Dismissal.pdf?ver=GKhvJOAWTO-nrat7rNSS1w%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59079, 59080", - "judges": "Newsom" + "docket_numbers": "63410-ADR, 63434-ADR, 63533-ADR", + "judges": "Melnick", + "case_name_shorts": "" }, { - "case_dates": "2014-08-28", - "case_names": "Direct Project, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59021%20et%20al.%20Direct%20Project,%20Inc.%208.28.14.pdf", + "case_dates": "2024-06-18", + "case_names": "Belt Built Contracting, LLC", + "download_urls": "/LinkClick.aspx?fileticket=Ah2K7W4EE8I%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59021, 59022, 59023, 59024, 59192, 59264", - "judges": "Delman" + "docket_numbers": "63849", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-08-26", - "case_names": "Quimba Software, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59197%20Quimba%20Software,%20Inc.%208.26.14.pdf", + "case_dates": "2024-06-13", + "case_names": "Case Healthcare Solutions, Inc. d/b/a Case HCS of Reston, Virginia", + "download_urls": "/LinkClick.aspx?fileticket=QAbcT5-3M7g%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59197", - "judges": "Stempler" + "docket_numbers": "63051", + "judges": "Wilson", + "case_name_shorts": "" }, { - "case_dates": "2014-08-26", - "case_names": "Quimba Software, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59196%20Quimba%20Software,%20Inc.%208.26.14.pdf", + "case_dates": "2024-06-12", + "case_names": "Allard Nazarian Group, Inc. dba Granite State Manufacturing", + "download_urls": "/LinkClick.aspx?fileticket=aojDaaHk4TE%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59196", - "judges": "Stempler" + "docket_numbers": "62413, 62414", + "judges": "Stinson", + "case_name_shorts": "" }, { - "case_dates": "2014-08-26", - "case_names": "ARINC Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58610%20ARINC%20Inc.%208.26.14.pdf", + "case_dates": "2024-06-11", + "case_names": "Red Bobtail Transportation", + "download_urls": "/Portals/143/Decisions/2024/63789 Red Bobtail Transportation 6.11.24 Decision.pdf?ver=0QgWndepiEUUq0neGd2K-A%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58610", - "judges": "Stempler" + "docket_numbers": "63789", + "judges": "Melnick", + "case_name_shorts": "Red Bobtail Transportation" }, { - "case_dates": "2014-08-22", - "case_names": "TransWest Manufacturing, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58586%20TransWest%20Manufacturing,%20LLC%208.22.14.pdf", + "case_dates": "2024-06-11", + "case_names": "Red Bobtail Transportation", + "download_urls": "/Portals/143/Decisions/2024/63788 Red Bobtail Transportation 6.11.24 Decision.pdf?ver=3ZEPfH2_BUNzAVogdLmQTg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58586", - "judges": "Page" + "docket_numbers": "63788", + "judges": "Melnick", + "case_name_shorts": "Red Bobtail Transportation" }, { - "case_dates": "2014-08-21", - "case_names": "Nodak Electric Power Cooperative, Inc. and Cavalier Rural Electric Cooperative, Inc., JV", - "download_urls": "tests/examples/opinions/united_states/2014/59109%20Nodak%20Electric%20Power%20Coop,%20Inc.%20and%20Cavalier%20Rural%20Electric%20Coop,%20Inc.,%20JV%208.21.14.pdf", + "case_dates": "2024-06-06", + "case_names": "Shoreline Foundation, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=J6ofWRZAD8o%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59109", - "judges": "Stempler" + "docket_numbers": "62876, 63616", + "judges": "O'Connell", + "case_name_shorts": "Shoreline Foundation, Inc." }, { - "case_dates": "2014-08-21", - "case_names": "Grunley/Goel JV, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59356%20Grunley%20Goel%20JV,%20LLC%208.21.14.pdf", + "case_dates": "2024-06-05", + "case_names": "Shayes, LLC", + "download_urls": "/LinkClick.aspx?fileticket=y_9GuVoHtZY%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59356", - "judges": "Stempler" + "docket_numbers": "63357-ADR", + "judges": "Arnett", + "case_name_shorts": "Shayes, LLC" }, { - "case_dates": "2014-08-21", - "case_names": "Binghamton Simulator Company", - "download_urls": "tests/examples/opinions/united_states/2014/59117%20Binghamton%20Simulator%20Company%208.21.14.pdf", + "case_dates": "2024-06-04", + "case_names": "VSE Corporation", + "download_urls": "/Portals/143/Decisions/2024/63617 VSE Corporation 6.4.24 Dismissal.pdf?ver=AGRMgmvt_q60_7jU_Sk9Eg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59117", - "judges": "Melnick" + "docket_numbers": "63617", + "judges": "Thrasher", + "case_name_shorts": "VSE Corporation" }, { - "case_dates": "2014-08-19", - "case_names": "SERDI, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58507%20SERDI,%20LLC%208.19.14.pdf", + "case_dates": "2024-06-04", + "case_names": "Lacy Mechanical, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=8e5n-IMXiIw%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58507", - "judges": "Tunks" + "docket_numbers": "63153", + "judges": "Eyester", + "case_name_shorts": "Lacy Mechanical, Inc." }, { - "case_dates": "2014-08-19", - "case_names": "QuarterLine Consulting Services, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59319%20QuarterLine%20Consulting%20Services,%20LLC%208.19.14.pdf", + "case_dates": "2024-06-03", + "case_names": "Red Bobtail Transportation", + "download_urls": "/LinkClick.aspx?fileticket=bNYUUuqbhQ8%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59319", - "judges": "Tunks" + "docket_numbers": "63783, 63784", + "judges": "Melnick", + "case_name_shorts": "Red Bobtail Transportation" }, { - "case_dates": "2014-08-19", - "case_names": "Family Entertainment Services, Inc. D/B/A/ IMC", - "download_urls": "tests/examples/opinions/united_states/2014/56839%20Family%20Entermainment%20Services,%20Inc.%20DBA%20IMC%208.19.14.pdf", + "case_dates": "2024-06-03", + "case_names": "GSI Construction Corp.", + "download_urls": "/Portals/143/Decisions/2024/63828 GSI Construction Corp. 6.3.24 Decision.pdf?ver=AGRMgmvt_q60_7jU_Sk9Eg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 56839", - "judges": "Page" + "docket_numbers": "63828", + "judges": "Melnick", + "case_name_shorts": "GSI Construction Corp." }, { - "case_dates": "2014-08-18", - "case_names": "Macro-Z Technology", - "download_urls": "tests/examples/opinions/united_states/2014/56711%20Macro-Z%20Technology%208.18.14.pdf", + "case_dates": "2024-05-29", + "case_names": "McCarthy HITT - Next NGA West JV", + "download_urls": "/Portals/143/Decisions/2024/63571 McCarthy HITT-Next NGA West JV 5.29.24 Dismissal.pdf?ver=f-dnVLaBkfIwQl1TcHNpoA%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 56711", - "judges": "James" + "docket_numbers": "63571, 63572, 63573", + "judges": "McLish", + "case_name_shorts": "" }, { - "case_dates": "2014-08-18", - "case_names": "Kellogg Brown & Root Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58492%20Kellogg%20Brown%20&%20Root%20Services,%20Inc.%208.18.14.pdf", + "case_dates": "2024-05-24", + "case_names": "AVMAC LLC", + "download_urls": "/Portals/143/Decisions/2024/63747 AVMAC LLC 5.24.24 Decision.pdf?ver=ykAG1n7jEu-quJfUHOrDTQ%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58492", - "judges": "Younger" + "docket_numbers": "63747-ADR", + "judges": "Page", + "case_name_shorts": "AVMAC LLC" }, { - "case_dates": "2014-08-18", - "case_names": "Jaynes Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/59454-948%20Jaynes%20Corporation%208.18.14.pdf", + "case_dates": "2024-05-23", + "case_names": "Red Bobtail Transportation", + "download_urls": "/Portals/143/Decisions/2024/63771 Red Bobtail Transportation 5.23.24 Decision.pdf?ver=W3ouAabFvHLdn50Km5ER5g%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59454-948", - "judges": "Stempler" + "docket_numbers": "63771", + "judges": "Eyester", + "case_name_shorts": "Red Bobtail Transportation" }, { - "case_dates": "2014-08-18", - "case_names": "Grounds Maintenance, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58577%20Grounds%20Maintenance,%20Inc.%208.18.14.pdf", + "case_dates": "2024-05-22", + "case_names": "Vectrus Systems Corporation", + "download_urls": "/Portals/143/Decisions/2024/63465 Vectrus Systems Corporation 5.22.24 Consent Judgment.pdf?ver=W3ouAabFvHLdn50Km5ER5g%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58577", - "judges": "Dickinson" + "docket_numbers": "63465", + "judges": "Young", + "case_name_shorts": "Vectrus Systems Corporation" }, { - "case_dates": "2014-08-18", - "case_names": "GSC Construction, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58747%20GSC%20Construction,%20Inc.%208.18.14.pdf", + "case_dates": "2024-05-22", + "case_names": "Supreme Foodservice GmbH", + "download_urls": "/Portals/143/Decisions/2024/59419 et al. Supreme Foodservice GmbH 5.22.24 Dismissal.pdf?ver=W3ouAabFvHLdn50Km5ER5g%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58747", - "judges": "Peacock" + "docket_numbers": "59419, 59420, 59615, 59618, 59619, 59675, 59676, 59683, 59830, 59863, 59867, 59872, 59879, 60024, 60250, 60309, 60365, 60832, 61069, 61294, 61319", + "judges": "O'Connell", + "case_name_shorts": "Supreme Foodservice GmbH" }, { - "case_dates": "2014-08-13", - "case_names": "McGoldrick Construction Services Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/59253%20McGoldrick%20Construction%20Services%20Corporation%208.13.14.pdf", + "case_dates": "2024-05-16", + "case_names": "Viasat, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=h4cg3zKuAkY%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59253", - "judges": "Dickinson" + "docket_numbers": "63745", + "judges": "Thrasher", + "case_name_shorts": "Viasat, Inc." }, { - "case_dates": "2014-08-13", - "case_names": "Gilbane Building Company", - "download_urls": "tests/examples/opinions/united_states/2014/57206%20Gilbane%20Building%20Company%208.13.14.pdf", + "case_dates": "2024-05-15", + "case_names": "L3Harris Technologies Integrated Systems L.P.", + "download_urls": "/Portals/143/Decisions/2024/63664-ADR L3Harris Technologies Integrated Systems L.P. 5.15.24 Decision-Consent Judgment.pdf?ver=WLRz4zxd8ILKq2izGTJlaw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57206", - "judges": "James" + "docket_numbers": "63664-ADR", + "judges": "Arnett", + "case_name_shorts": "" }, { - "case_dates": "2014-08-13", - "case_names": "Environmental Safety Consultants, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58343%20Environmental%20Safety%20Consultants,%20Inc.%208.13.14.pdf", + "case_dates": "2024-05-14", + "case_names": "Alithos Anesti, LLC", + "download_urls": "/LinkClick.aspx?fileticket=OTzTzLJYLiI%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58343", - "judges": "Freeman" + "docket_numbers": "63882", + "judges": "Thrasher", + "case_name_shorts": "Alithos Anesti, LLC" }, { - "case_dates": "2014-08-13", - "case_names": "Bizhan Niazi Logistic Services Company", - "download_urls": "tests/examples/opinions/united_states/2014/59205%20Bizhan%20Niazi%20Logistic%20Services%20Company%208.13.14.pdf", + "case_dates": "2024-05-13", + "case_names": "US Pan American Solutions, LLC", + "download_urls": "/LinkClick.aspx?fileticket=RnoQ1vx5PqU%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59205", - "judges": "O'Sullivan" + "docket_numbers": "63743", + "judges": "Wilson", + "case_name_shorts": "" }, { - "case_dates": "2014-08-12", - "case_names": "Hanley Industries, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/56584%20Hanley%20Industries,%20Inc.%208.12.14.pdf", + "case_dates": "2024-05-10", + "case_names": "The RAND Corporation", + "download_urls": "/Portals/143/Decisions/2024/63232 The RAND Corporation 5.10.24 Dismissal.pdf?ver=2Q2n8xzCm-M9ntNgii5Ugg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 56584", - "judges": "Paul" + "docket_numbers": "63232", + "judges": "Melnick", + "case_name_shorts": "The RAND Corporation" }, { - "case_dates": "2014-08-12", - "case_names": "CCIE & Co.", - "download_urls": "tests/examples/opinions/united_states/2014/58355,%2059008%20CCIE%20&%20Co.8.12.14.pdf", + "case_dates": "2024-05-09", + "case_names": "Herman JCG Co. JV\u00b9", + "download_urls": "/Portals/143/Decisions/2024/63235 Herman JCG Co. JV 5.9.24 Decision.pdf?ver=rK6KsGn7WBVVRt9HkI69Qw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58355, 59008", - "judges": "Melnick" + "docket_numbers": "63235", + "judges": "Arnett", + "case_name_shorts": "" }, { - "case_dates": "2014-08-11", - "case_names": "Santa Barbara Infrared, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58605,%2058615%20Santa%20Barbara%20Infrared,%20Inc.%208.11.14.pdf", + "case_dates": "2024-05-08", + "case_names": "Product Data Integration Technologies, Inc. d/b/a Modulant", + "download_urls": "/LinkClick.aspx?fileticket=j5crdr3_rpo%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58605, 58615", - "judges": "Stempler" + "docket_numbers": "63683, 63692, 63693, 63694", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-08-11", - "case_names": "M&H Enterprises, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59339%20M&H%20Enterprises,%20Inc.%208.11.14.pdf", + "case_dates": "2024-05-08", + "case_names": "Novielli Boat Builders Inc.", + "download_urls": "/Portals/143/Decisions/2024/63795 Novielli Boat Builders Inc. 5.8.24 Dismissal.pdf?ver=pDuLGe7rrmVCOoV4NHS3Rw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59339", - "judges": "Stempler" + "docket_numbers": "63795", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-08-11", - "case_names": "L-3 Communications Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58357%20L-3%20Communications%20Corporation%208.11.14.pdf", + "case_dates": "2024-05-07", + "case_names": "Konecranes Nuclear Equipment & Services, LLC", + "download_urls": "/LinkClick.aspx?fileticket=bI0HU55e4eY%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58357", - "judges": "Stempler" + "docket_numbers": "62797, 62827", + "judges": "Herzfeld", + "case_name_shorts": "" }, { - "case_dates": "2014-08-11", - "case_names": "James W. Ancel, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58698%20et%20al.%20James%20W.%20Ancel,%20Inc.%208.11.14.pdf", + "case_dates": "2024-05-07", + "case_names": "Jude and L Construction, LLC", + "download_urls": "/LinkClick.aspx?fileticket=ritIzRcJhvU%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58698, 58699, 58700, 58701, 58702, 58703, 58704, 58705, 58706, 58707, 58708, 58709, 58710, 58711, 58712, 58713, 58714, 58715, 58716, 58717, 58718, 58719, 58720, 58721, 58722, 58723, 58724", - "judges": "Stempler" + "docket_numbers": "63336, 63337, 63338, 63339, 63340, 63341, 63342, 63343, 63344, 63345, 63551", + "judges": "McIlmail", + "case_name_shorts": "" }, { - "case_dates": "2014-08-07", - "case_names": "Synkera Technologies, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58584%20Synkera%20Technologies,%20Inc.%208.7.14.pdf", + "case_dates": "2024-05-07", + "case_names": "GLJ, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=OzEZroIHv7Y%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58584", - "judges": "Ting" + "docket_numbers": "62964", + "judges": "Stinson", + "case_name_shorts": "GLJ, Inc." }, { - "case_dates": "2014-08-07", - "case_names": "Commissioning Solutions Global, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59254%20Commissioning%20Solutions%20Global,%20LLC%208.7.14.pdf", + "case_dates": "2024-05-06", + "case_names": "Korte Construction Company", + "download_urls": "/Portals/143/Decisions/2024/63148 Korte Construction Company 5.6.24 Decision.pdf?ver=K_aGrejAaPstHXVYGcHHqw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59254", - "judges": "Lopes" + "docket_numbers": "63148", + "judges": "Stinson", + "case_name_shorts": "Korte Construction Company" }, { - "case_dates": "2014-08-07", - "case_names": "Abdul Ahad Khadim Construction Company", - "download_urls": "tests/examples/opinions/united_states/2014/59206%20Abdul%20Khadim%20Construciton%20Company%208.7.14.pdf", + "case_dates": "2024-05-03", + "case_names": "Wildflower International, Ltd.", + "download_urls": "/LinkClick.aspx?fileticket=WCdYpENAo7c%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59206", - "judges": "Lopes" + "docket_numbers": "63369-ADR", + "judges": "Sweet", + "case_name_shorts": "Wildflower International, Ltd." }, { - "case_dates": "2014-08-06", - "case_names": "Pros Cleaners", - "download_urls": "tests/examples/opinions/united_states/2014/59067%20Pros%20Cleaners%208.6.14.pdf", + "case_dates": "2024-05-02", + "case_names": "SBH Services & CORE Construction J/V II, LLC", + "download_urls": "/LinkClick.aspx?fileticket=c96X1WOZ6mE%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59067", - "judges": "Lopes" + "docket_numbers": "63442", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-08-06", - "case_names": "Alpine Diversified, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58386%20Alphine%20Diversified,%20Inc.%208.6.14.pdf", + "case_dates": "2024-05-02", + "case_names": "Coppertop Enterprises, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=PG2knuyC6h0%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58386", - "judges": "Peacock" + "docket_numbers": "63388, 63389, 63390, 63391", + "judges": "Smith", + "case_name_shorts": "Coppertop Enterprises, Inc." }, { - "case_dates": "2014-08-06", - "case_names": "AEON Group, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/56142,%2056251%20AEON%20Group,%20LLC%208.6.14.pdf", + "case_dates": "2024-05-01", + "case_names": "Goodloe Marine, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=Pj70qJSrFX8%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 56142, 56251", - "judges": "Dickinson" + "docket_numbers": "61960", + "judges": "Prouty", + "case_name_shorts": "Goodloe Marine, Inc." }, { - "case_dates": "2014-08-05", - "case_names": "Northrop Grumman Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/59077%20Northrop%20Grumman%20Corporation%208.5.14.pdf", + "case_dates": "2024-04-29", + "case_names": "DLT Solutions, LLC", + "download_urls": "/LinkClick.aspx?fileticket=g_Y2uvEOYVk%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59077", - "judges": "Stempler" + "docket_numbers": "63069", + "judges": "Sweet", + "case_name_shorts": "DLT Solutions, LLC" }, { - "case_dates": "2014-08-04", - "case_names": "Distributed Solutions, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57266%20Distributed%20Solutions%20Inc.%208.4.14.pdf", + "case_dates": "2024-04-29", + "case_names": "Biscayne Contractors, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=5anKlE4qSWw%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57266", - "judges": "Clarke" + "docket_numbers": "63865", + "judges": "Thrasher", + "case_name_shorts": "Biscayne Contractors, Inc." }, { - "case_dates": "2014-08-04", - "case_names": "Al Bahar Company", - "download_urls": "tests/examples/opinions/united_states/2014/58416%20Al%20Bahar%20Company%208.4.14.pdf", + "case_dates": "2024-04-29", + "case_names": "A4 Construction Company, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=lbTtueh4u3Y%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58416", - "judges": "Mcilmail" + "docket_numbers": "63252, 63456, 63626", + "judges": "Taylor", + "case_name_shorts": "" }, { - "case_dates": "2014-08-01", - "case_names": "W.J. Electric, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59295%20W.J.Electric,%20LLC%208.1.14.pdf", + "case_dates": "2024-04-26", + "case_names": "Enfield Enterprises, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=M0e1pEU4a3s%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59295", - "judges": "Stempler" + "docket_numbers": "63631", + "judges": "McNulty", + "case_name_shorts": "Enfield Enterprises, Inc." }, { - "case_dates": "2014-08-01", - "case_names": "PHA-JMR JV", - "download_urls": "tests/examples/opinions/united_states/2014/59032%20PHA-JMR%20JV%208.1.14.pdf", + "case_dates": "2024-04-26", + "case_names": "Ecology Mir Group, LLC", + "download_urls": "/LinkClick.aspx?fileticket=3XWpHOTzEjU%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59032", - "judges": "James" + "docket_numbers": "63768", + "judges": "Eyester", + "case_name_shorts": "" }, { - "case_dates": "2014-08-01", - "case_names": "Integrity Management Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58214%20Integrity%20Management%20Services,%20Inc.%208.1.14.pdf", + "case_dates": "2024-04-22", + "case_names": "Omran, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=JbvWA7te18s%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58214, 58215, 58216, 59231", - "judges": "Younger" + "docket_numbers": "63414", + "judges": "Stinson", + "case_name_shorts": "Omran, Inc." }, { - "case_dates": "2014-07-29", - "case_names": "Polu Kai Services, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58726,%2058795%20Polu%20Kai%20Services,%20LLC%207.29.14.pdf", + "case_dates": "2024-04-22", + "case_names": "Lockheed Martin Aeronautics Company", + "download_urls": "/Portals/143/Decisions/2024/ASBCA No. 62209 Lockheed Martin Aeronautics Company Redacted April 23 2024 Board Decision.pdf?ver=B1Jz1PpXwzXQCfifQe6yjw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58726, 58795", - "judges": "Paul" + "docket_numbers": "62209", + "judges": "Page", + "case_name_shorts": "" }, { - "case_dates": "2014-07-29", - "case_names": "Lockheed Martin Maritime Systems & Sensors", - "download_urls": "tests/examples/opinions/united_states/2014/57521,%2057522%20Lockheed%20Martin%20Maritime%20Systems%20&%20Sensors%207.29.14.pdf", + "case_dates": "2024-04-17", + "case_names": "Anderson Contracting, LLC", + "download_urls": "/LinkClick.aspx?fileticket=wBZjC9pSuAw%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57521, 57522", - "judges": "Stempler" + "docket_numbers": "63632", + "judges": "McLish", + "case_name_shorts": "Anderson Contracting, LLC" }, { - "case_dates": "2014-07-29", - "case_names": "Linc Government Services, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58561%20et%20al.%20Linc%20Government%20Services,%20LLC%207.29.14.pdf", + "case_dates": "2024-04-16", + "case_names": "Research Analysis & Maintenance, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=JBbkQ139XbQ%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58561, 58562, 58563, 58566, 58567", - "judges": "James" + "docket_numbers": "63259", + "judges": "D'Alessandris", + "case_name_shorts": "" }, { - "case_dates": "2014-07-29", - "case_names": "Fluor Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/59292%20Fluor%20Corporation%207.29.14.pdf", + "case_dates": "2024-04-16", + "case_names": "Penna Group, LLC", + "download_urls": "/LinkClick.aspx?fileticket=AwKgum1SLMY%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59292", - "judges": "Stempler" + "docket_numbers": "61641-ADR, 61642-ADR, 61708-ADR", + "judges": "Woodrow", + "case_name_shorts": "Penna Group, LLC" }, { - "case_dates": "2014-07-29", - "case_names": "Delta Engineering, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58063%20Delta%20Engineering,%20Inc.%207.29.14.pdf", + "case_dates": "2024-04-16", + "case_names": "Marine Hydraulics International, LLC", + "download_urls": "/LinkClick.aspx?fileticket=m_B-pSx8McI%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58063", - "judges": "Peacock" + "docket_numbers": "62817", + "judges": "Sweet", + "case_name_shorts": "" }, { - "case_dates": "2014-07-29", - "case_names": "American Ordnance LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58340%20American%20Ordnance%20LLC%207.29.14.pdf", + "case_dates": "2024-04-16", + "case_names": "JE Dunn Construction Company", + "download_urls": "/Portals/143/Decisions/2024/63184 JE Dunn Construction Company 4.17.24 Dismissal.pdf?ver=BkWzm-W67dRG1qeXM2mgyQ%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58340", - "judges": "Dickinson" + "docket_numbers": "63184, 63185, 63186, 63187, 63256", + "judges": "McIlmail", + "case_name_shorts": "" }, { - "case_dates": "2014-07-29", - "case_names": "Al-Muntakaa Company", - "download_urls": "tests/examples/opinions/united_states/2014/58447,%2059010%20Al-Muntakaa%20Company%207.29.14.pdf", + "case_dates": "2024-04-16", + "case_names": "Gibraltar-Caddell, a Joint Venture", + "download_urls": "/LinkClick.aspx?fileticket=nZUuRL98W68%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58447, 59010", - "judges": "Tunks" + "docket_numbers": "63455-ADR, 63557-ADR", + "judges": "Woodrow", + "case_name_shorts": "" }, { - "case_dates": "2014-07-25", - "case_names": "PBS&J Constructors, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57814,%2057964%20PBS&J%20Constructors,%20Inc.%207.25.14.pdf", + "case_dates": "2024-04-12", + "case_names": "Supreme Foodservice GmbH", + "download_urls": "/Portals/143/Decisions/2024/ASBCA No. 60309 Appeal of Supreme Foodservice GmbH 4.12.24 Published PO Decision.pdf?ver=bsNE3ZhdQwB95GRQyh3OmA%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57814, 57964", - "judges": "Scott" + "docket_numbers": "60309", + "judges": "O'Connell", + "case_name_shorts": "Supreme Foodservice GmbH" }, { - "case_dates": "2014-07-25", - "case_names": "Environmental Safety Consultants, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58343%20Environmental%20Safety%20Consultants,%20Inc.%207.25.14.pdf", + "case_dates": "2024-04-12", + "case_names": "STG Pacific, LLC", + "download_urls": "/LinkClick.aspx?fileticket=qQS7LLJRRlk%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58343", - "judges": "Freeman" + "docket_numbers": "63063-ADR", + "judges": "Prouty", + "case_name_shorts": "STG Pacific, LLC" }, { - "case_dates": "2014-07-24", - "case_names": "Trident Security Devices, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57812%20Trident%20Security%20Devices,%20Inc.%207.24.14.pdf", + "case_dates": "2024-04-11", + "case_names": "First Street Contractors, LLC", + "download_urls": "/LinkClick.aspx?fileticket=oKoE0ZUEWLU%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57812", - "judges": "O'Connell" + "docket_numbers": "63861", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-07-23", - "case_names": "Raytheon Technical Services Company, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58873%20Raytheon%20Technical%20Services%20Company,%20LLC%207.23.14.pdf", + "case_dates": "2024-04-11", + "case_names": "First Street Contractors, LLC", + "download_urls": "/LinkClick.aspx?fileticket=XifAf6XFZ-4%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58873", - "judges": "Melnick" + "docket_numbers": "63386", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-07-23", - "case_names": "Lee's Ford Dock, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59041%20Lee's%20Ford%20Dock,%20Inc.%207.23.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59041", - "judges": "Clarke" - }, - { - "case_dates": "2014-07-22", - "case_names": "MIC/CCS, Joint Venture", - "download_urls": "tests/examples/opinions/united_states/2014/58023%20MIC-CCS,%20Joint%20Venture%207.22.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58023", - "judges": "Scott" - }, - { - "case_dates": "2014-07-22", - "case_names": "DODS, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57746,%2058252%20DODS,%20Inc.%207.22.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57746, 58252", - "judges": "Peacock" - }, - { - "case_dates": "2014-07-21", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2014/58587%20The%20Boeing%20Company%207.21.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58587", - "judges": "Wilson" - }, - { - "case_dates": "2014-07-21", - "case_names": "ECC-RMA, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58315%20et%20al.%20ECC-RMA,%20LLC%207.21.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58315, 58316, 58317, 58318, 58319, 58320, 58549", - "judges": "Delman" - }, - { - "case_dates": "2014-07-18", - "case_names": "Metag Insaat Ticaret, A.S.", - "download_urls": "tests/examples/opinions/united_states/2014/58347,%2058348,%2058445,%2058618%20Metag%20Insaat%20Ticaret,%20A.S.%207.18.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58347, 58348, 58445, 58618", - "judges": "Hartman" - }, - { - "case_dates": "2014-07-18", - "case_names": "Kellogg Brown & Root Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58578%20Kellogg%20Brown%20&%20Root%20Services,%20Inc.%207.18.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58578", - "judges": "Younger" - }, - { - "case_dates": "2014-07-17", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2014/58914%20The%20Boeing%20Company%207.17.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58914", - "judges": "Stempler" - }, - { - "case_dates": "2014-07-17", - "case_names": "Lockheed Martin Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58758%20Lockheed%20Martin%20Services,%20Inc.%207.17.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58758", - "judges": "Stempler" - }, - { - "case_dates": "2014-07-17", - "case_names": "Allison Transmission, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59204%20Allison%20Transmission,%20Inc.%207.17.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59204", - "judges": "Delman" - }, - { - "case_dates": "2014-07-15", - "case_names": "SSI Technology, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59379%20SSI%20Technology,%20Inc.%207.15.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59379", - "judges": "Stempler" - }, - { - "case_dates": "2014-07-15", - "case_names": "Dominion Virginia Power", - "download_urls": "tests/examples/opinions/united_states/2014/59346%20Dominion%20Virginia%20Power%207.15.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59346", - "judges": "Williams" - }, - { - "case_dates": "2014-07-15", - "case_names": "BAE Systems San Francisco Ship Repair", - "download_urls": "tests/examples/opinions/united_states/2014/58810%20BAE%20Systems%20San%20Francisco%20Ship%20Repair%20Order%207.15.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58810", - "judges": "Ting" - }, - { - "case_dates": "2014-07-11", - "case_names": "SoCo-Piedmont J.V., LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59318-946%20SoCo-Piedmont%20J.V.,%20LLC%207.11.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59318-946", - "judges": "Stempler" - }, - { - "case_dates": "2014-07-10", - "case_names": "Zalzar FZE", - "download_urls": "tests/examples/opinions/united_states/2014/59342%20Zalzar%20FZE%207.10.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59342", - "judges": "Stempler" - }, - { - "case_dates": "2014-07-10", - "case_names": "Zalzar FZE", - "download_urls": "tests/examples/opinions/united_states/2014/59341%20Zalzer%20FZE%207.10.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59341", - "judges": "Stempler" - }, - { - "case_dates": "2014-07-10", - "case_names": "Zalzar FZE", - "download_urls": "tests/examples/opinions/united_states/2014/59340%20Zalzar%20FZE%207.10.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59340", - "judges": "Stempler" - }, - { - "case_dates": "2014-07-10", - "case_names": "Classic Site Solutions, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58375,%2058572%20Classic%20Site%20Solutions,%20Inc.%207.10.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58375,58572", - "judges": "Clarke" - }, - { - "case_dates": "2014-07-09", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2014/58858,%2058859,%2058860%20The%20Boeing%20Company%207.9.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58858,58859,58860", - "judges": "Stempler" - }, - { - "case_dates": "2014-07-09", - "case_names": "Lockheed Martin Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58909%20Lockheed%20Martin%20Corporation%207.9.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58909", - "judges": "Stempler" - }, - { - "case_dates": "2014-07-09", - "case_names": "Iron Bow Technologies, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59181%20Iron%20Bow%20Technologies,%20LLC%207.9.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59181", - "judges": "Mcilmail" - }, - { - "case_dates": "2014-07-08", - "case_names": "Certified Construction Company of Kentucky, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58782%20Certified%20Construciton%20Company%20of%20Kentucky,%20LLC%207.8.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58782", - "judges": "Ting" - }, - { - "case_dates": "2014-07-07", - "case_names": "Al Barih for General Contracting Ltd.", - "download_urls": "tests/examples/opinions/united_states/2014/57148,%2057149,%2057599%20Al%20Barih%20General%20Contracting%20Ltd.%207.7.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57148,57149,57599", - "judges": "Paul" - }, - { - "case_dates": "2014-07-03", - "case_names": "Progressive Construction Company, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59143,%2059279%20Progressive%20Construction%20Company,%20LLC%207.3.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59143, 59279", - "judges": "Thrasher" - }, - { - "case_dates": "2014-07-03", - "case_names": "POZ Engineering and Environmental Consulting", - "download_urls": "tests/examples/opinions/united_states/2014/59004%20POZ%20Engineering%20and%20Environmental%20Consulting%207.3.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59004", - "judges": "Tunks" - }, - { - "case_dates": "2014-07-02", - "case_names": "Restaurants Hawaii, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59321%20Restaurants%20Hawaii,%20LLC%207.2.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59321", - "judges": "Stempler" - }, - { - "case_dates": "2014-07-02", - "case_names": "CB&I Federal Services LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59163%20CB&I%20Federal%20Services%20LLC%207.2.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59163", - "judges": "Stempler" - }, - { - "case_dates": "2014-07-01", - "case_names": "Family Entertainment Services, Inc. D/B/A IMC", - "download_urls": "tests/examples/opinions/united_states/2014/59161%20Family%20Entertainment%20Services,%20Inc.%20D-B-A%20IMC%207.1.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59161", - "judges": "Freeman" - }, - { - "case_dates": "2014-07-01", - "case_names": "Creek Services, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59127%20%20Creek%20Services,%20LLC%207.1.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59127", - "judges": "Tunks" - }, - { - "case_dates": "2014-07-01", - "case_names": "Axxon International, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59271%20Axxon%20International,%20LLC%207.1.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59271", - "judges": "Scott" - }, - { - "case_dates": "2014-06-27", - "case_names": "Forrester Construction Company", - "download_urls": "tests/examples/opinions/united_states/2014/58983%20Forrester%20Construction%20Company%206.27.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58983", - "judges": "Hartman" - }, - { - "case_dates": "2014-06-27", - "case_names": "Forrester Construction Company", - "download_urls": "tests/examples/opinions/united_states/2014/58232%20Forrester%20Construction%20Company%206.27.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58232", - "judges": "Hartman" - }, - { - "case_dates": "2014-06-26", - "case_names": "Day & Zimmermann Hawthorne Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/59033%20Day%20&%20Zimmermann%20Hawthorne%20Corporation%206.26.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59033", - "judges": "Stempler" - }, - { - "case_dates": "2014-06-26", - "case_names": "Classic Site Solutions, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58376,%2058573%20Classic%20Site%20Solutions,%20Inc.%206.26.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58376, 58573", - "judges": "Clarke" - }, - { - "case_dates": "2014-06-26", - "case_names": "Automotive Management Services", - "download_urls": "tests/examples/opinions/united_states/2014/58352%20Automotive%20Management%20Services%206.26.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58352", - "judges": "Delman" - }, - { - "case_dates": "2014-06-25", - "case_names": "Benetech, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59012%20Benetech,%20LLC%206.25.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59012", - "judges": "Stempler" - }, - { - "case_dates": "2014-06-24", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2014/59217%20The%20Boeing%20Company%206.24.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59217", - "judges": "Stempler" - }, - { - "case_dates": "2014-06-23", - "case_names": "Exelis Systems Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58919,%2058920%20Exelis%20Systems%20Corporation%206.23.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58919, 58920", - "judges": "Stempler" - }, - { - "case_dates": "2014-06-19", - "case_names": "Tzell Airtrak Travel Group Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/57313%20Tzell%20Airtrak%20Travel%20Group%20Corporation%206.19.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57313", - "judges": "Tunks" - }, - { - "case_dates": "2014-06-19", - "case_names": "TMS Envirocon, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57286%20TMS%20Envirocon,%20Inc.%206.19.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57286", - "judges": "James" - }, - { - "case_dates": "2014-06-19", - "case_names": "Caddell Construction Co., Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57831%20Caddell%20Construction%20Co.,%20Inc.%206.19.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57831", - "judges": "Page" - }, - { - "case_dates": "2014-06-19", - "case_names": "BAE Systems San Francisco Ship Repair", - "download_urls": "tests/examples/opinions/united_states/2014/58809%20BAE%20Systems%20San%20Francisco%20Ship%20Repair%206.19.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58809", - "judges": "Ting" - }, - { - "case_dates": "2014-06-17", - "case_names": "Kellogg Brown & Root Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/56358,%2057151,%2057327,%2058559%20Kellogg%20Brown%20&%20Root%20Services,%20Inc.%206.17.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 56358, 57151, 57327, 58559", - "judges": "Freeman" - }, - { - "case_dates": "2014-06-17", - "case_names": "Fluor Intercontinental, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59062%20Fluor%20Intercontinental,%20Inc.%206.17.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59062", - "judges": "Peacock" - }, - { - "case_dates": "2014-06-17", - "case_names": "Dynamics Research Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58815%20Dynamics%20Research%20Corporation%206.17.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58815", - "judges": "Peacock" - }, - { - "case_dates": "2014-06-17", - "case_names": "DSE, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58596,%2058597%20DSE,%20Inc.%206.17.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58596, 58597", - "judges": "Stempler" - }, - { - "case_dates": "2014-06-13", - "case_names": "Sigma Group International", - "download_urls": "tests/examples/opinions/united_states/2014/57513,%2057514%20Sigma%20Group%20International%206.13.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57513, 57514", - "judges": "Scott" - }, - { - "case_dates": "2014-06-12", - "case_names": "New Iraq Ahd Company", - "download_urls": "tests/examples/opinions/united_states/2014/58778%20New%20Iraq%20Ahd%20Company%206.12.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58778", - "judges": "Dickinson" - }, - { - "case_dates": "2014-06-12", - "case_names": "Landmark Skate and Fun LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59174%20Landmark%20Skate%20and%20Fun%20LLC%206.12.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59174", - "judges": "Clarke" - }, - { - "case_dates": "2014-06-11", - "case_names": "The Timken Company", - "download_urls": "tests/examples/opinions/united_states/2014/58928%20The%20Timken%20Company%206.11.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58928", - "judges": "Stempler" - }, - { - "case_dates": "2014-06-11", - "case_names": "Bruce E. Zoeller", - "download_urls": "tests/examples/opinions/united_states/2014/56578%20Bruce%20E.%20Zoeller%206.11.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 56578", - "judges": "Delman" - }, - { - "case_dates": "2014-06-10", - "case_names": "Zomord Company", - "download_urls": "tests/examples/opinions/united_states/2014/59065%20Zomord%20Company%206.10.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59065", - "judges": "James" - }, - { - "case_dates": "2014-06-10", - "case_names": "Facility Site Contractors, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58656,%2058657%20Facility%20Site%20Contractors,%20Inc.%206.10.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58656, 58657", - "judges": "Clarke" - }, - { - "case_dates": "2014-06-09", - "case_names": "Tele-Consultants, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58129%20Tele-Consultants,%20Inc.%206.9.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58129", - "judges": "Melnick" - }, - { - "case_dates": "2014-06-09", - "case_names": "Tasty Snow LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59072%20Tasty%20Snow%20LLC%206.9.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59072", - "judges": "Stempler" - }, - { - "case_dates": "2014-06-09", - "case_names": "Superior Maritime Services, Inc. and Pacific Maritime Freight, Inc. (d/b/a Pacific Tugboat Service) Co-Venture", - "download_urls": "tests/examples/opinions/united_states/2014/58580,%2058691%20Superior%20Maritime%20Services,%20Inc.%20and%20Pacific%20Maritime%20Freight,%20Inc.%20(d-b-a%20Pacific%20Tugboat%20Service)%20Co-Venture%206.9.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58580, 58691", - "judges": "Peacock" - }, - { - "case_dates": "2014-06-09", - "case_names": "Patriot Pride Jewelry, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58953%20Patriot%20Pride%20Jewerly,%20LLC%206.9.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58953", - "judges": "Peacock" - }, - { - "case_dates": "2014-06-09", - "case_names": "Glad's Original BBQ Express, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58969%20Glad's%20Original%20BBQ%20Express,%20LLC%206.9.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58969", - "judges": "Stempler" - }, - { - "case_dates": "2014-06-09", - "case_names": "AL Wahej Al Lamea Company", - "download_urls": "tests/examples/opinions/united_states/2014/59125%20AL%20Wahej%20Al%20Lamea%20Company%206.9.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59125", - "judges": "Stempler" - }, - { - "case_dates": "2014-06-06", - "case_names": "Leidos, Inc., f/k/a Science Applications International Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/59076%20Leidos,%20Inc.,%20f-k-a%20Science%20Applications%20Int'l%20Corp.%206.6.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59076", - "judges": "Melnick" - }, - { - "case_dates": "2014-06-06", - "case_names": "L-3 Communications Link Simulation & Training", - "download_urls": "tests/examples/opinions/united_states/2014/59198%20L-3%20Communication%20Link%20Simulation%20&%20Training%206.6.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59198", - "judges": "Stempler" - }, - { - "case_dates": "2014-06-06", - "case_names": "ERSM (Afghanistan) Limited, d/b/a Edinburgh International", - "download_urls": "tests/examples/opinions/united_states/2014/58997%20ERSM%20(Afghanistan)%20Limited%20d-b-a%20Endinburgh%20International%206.6.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58997", - "judges": "Paul" - }, - { - "case_dates": "2014-06-03", - "case_names": "International Promotional Ideas Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59179%20International%20Promotional%20Ideas%20Inc.%206.3.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59179", - "judges": "Stempler" - }, - { - "case_dates": "2014-05-29", - "case_names": "Laguna Construction Company, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58569%20Laguna%20Construction%20Company,%20Inc.%205.29.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58569", - "judges": "Delman" - }, - { - "case_dates": "2014-05-28", - "case_names": "Triton Systems, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59112%20Triton%20Systems,%20Inc.%205.28.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59112", - "judges": "Stempler" - }, - { - "case_dates": "2014-05-28", - "case_names": "DayDanyon Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/57611%20DayDanyon%20Corporation%205.28.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57611", - "judges": "James" - }, - { - "case_dates": "2014-05-23", - "case_names": "Troy Eagle Group", - "download_urls": "tests/examples/opinions/united_states/2014/56447,%2057719%20Troy%20Eagle%20Group%205.23.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 56447, 57719", - "judges": "Wilson" - }, - { - "case_dates": "2014-05-21", - "case_names": "Jaynes Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58985%20Jaynes%20Corporation%205.21.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58985", - "judges": "Tunks" - }, - { - "case_dates": "2014-05-14", - "case_names": "MIC/CCS, Joint Venture", - "download_urls": "tests/examples/opinions/united_states/2014/58242%20MIC-CCS,%20Joint%20Venture%205.14.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58242", - "judges": "Scott" - }, - { - "case_dates": "2014-05-13", - "case_names": "POZ Engineering and Environmental Consulting", - "download_urls": "tests/examples/opinions/united_states/2014/58853,%2059004%20POZ%20Engineering%20and%20Environmental%20Consulting%205.13.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58853, 59004", - "judges": "Tunks" - }, - { - "case_dates": "2014-05-13", - "case_names": "Guzar Mirbachakot Transportation", - "download_urls": "tests/examples/opinions/united_states/2014/58541,%2058542,%2058544,%2058545%20Guzar%20Mirbachakot%20Transportation%205.13.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58541, 58542, 58544, 58545", - "judges": "Stempler" - }, - { - "case_dates": "2014-05-13", - "case_names": "C.R. Pittman Construction Company, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58457%20C.R.%20Pittman%20Construction%20Company,%20Inc.%205.13.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58457", - "judges": "Peacock" - }, - { - "case_dates": "2014-05-12", - "case_names": "The R.R. Gregory Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58517%20The%20R.R.%20Gregory%20Corporation%205.12.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58517", - "judges": "James" - }, - { - "case_dates": "2014-05-08", - "case_names": "Tresco, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58200,%2058201,%2058202,%2058203%20Tresco,%20Inc.%205.8.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58200, 58201, 58202, 58203", - "judges": "Ting" - }, - { - "case_dates": "2014-05-08", - "case_names": "RLB Contracting, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57638%20RLB%20Contracting,%20Inc.%205.8.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57638", - "judges": "Thrasher" - }, - { - "case_dates": "2014-05-07", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2014/58956%20The%20Boeing%20Company%205.7.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58956", - "judges": "Stempler" - }, - { - "case_dates": "2014-05-07", - "case_names": "Teddy's Cool Treats", - "download_urls": "tests/examples/opinions/united_states/2014/58384%20Teddy's%20Cool%20Treats%205.7.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58384", - "judges": "Tunks" - }, - { - "case_dates": "2014-05-07", - "case_names": "Sacramento Weed & Growth Regulators, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57378%20Sacramento%20Weed%20&%20Growth%20Regulators,%20Inc.%205.7.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57378", - "judges": "Delman" - }, - { - "case_dates": "2014-05-07", - "case_names": "Lockheed Martin Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58987%20Lockheed%20Martin%20Corporation%205.7.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58987", - "judges": "Stempler" - }, - { - "case_dates": "2014-05-07", - "case_names": "Didlake, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58589%20Didlake,%20Inc.%205.7.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58589", - "judges": "Hartman" - }, - { - "case_dates": "2014-05-06", - "case_names": "ATK Space Systems, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59006%20ATK%20Space%20Systems,%20Inc..pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59006", - "judges": "Stempler" - }, - { - "case_dates": "2014-05-05", - "case_names": "Ensign-Bickford Aerospace & Defense Company", - "download_urls": "tests/examples/opinions/united_states/2014/58671%20Ensign-Bickford%20Aerospace%20&%20Defense%20Company%205.5.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58671", - "judges": "Thrasher" - }, - { - "case_dates": "2014-05-02", - "case_names": "Environmental Tectonics Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58278%20Environmental%20Tectonics%20Corporation%205.2.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58278", - "judges": "Williams" - }, - { - "case_dates": "2014-05-01", - "case_names": "Touchstone Research Laboratory, Ltd.", - "download_urls": "tests/examples/opinions/united_states/2014/58970%20Touchstone%20Researach%20Laboratory,%20Ltd.%205.1.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58970", - "judges": "Stempler" - }, - { - "case_dates": "2014-04-30", - "case_names": "University of Louisville Research Foundation, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58898%20University%20of%20Louisville%20Research%204.30.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58898", - "judges": "Stempler" - }, - { - "case_dates": "2014-04-29", - "case_names": "New Iraq Ahd Company", - "download_urls": "tests/examples/opinions/united_states/2014/58800%20New%20Iraq%20Ahd%20Company%204.29.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58800", - "judges": "Stempler" - }, - { - "case_dates": "2014-04-29", - "case_names": "Hewlett-Packard Company", - "download_urls": "tests/examples/opinions/united_states/2014/57940,%2057941%20Hewlett-Packard%20Company%204.29.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57940, 57941", - "judges": "Thrasher" - }, - { - "case_dates": "2014-04-29", - "case_names": "EMTA Insaat A.S.", - "download_urls": "tests/examples/opinions/united_states/2014/59056%20EMTA%20Insaat%20A.S.%204.29.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59056", - "judges": "James" - }, - { - "case_dates": "2014-04-28", - "case_names": "Suh'dutsing Technologies, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58760%20Suh'dutsing%20Technologies,%20LLC%204.28.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58760", - "judges": "Delman" - }, - { - "case_dates": "2014-04-25", - "case_names": "International Oil Trading Company", - "download_urls": "tests/examples/opinions/united_states/2014/57491,%2057492%20International%20Oil%20Trading%20Company%204.25.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57491, 57492", - "judges": "Freeman" - }, - { - "case_dates": "2014-04-25", - "case_names": "Delta Industries, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58667,%2058695,%2058839%20Delta%20Industries,%20Inc.%204.25.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58667, 58695, 58839", - "judges": "Clarke" - }, - { - "case_dates": "2014-04-25", - "case_names": "Balfour Beatty/McCarthy, Joint Venture", - "download_urls": "tests/examples/opinions/united_states/2014/58857%20Balfour%20Beatty-McCarthy,%20Joint%20Venture%204.25.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58857", - "judges": "Stempler" - }, - { - "case_dates": "2014-04-24", - "case_names": "S&L Enterprise, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58792,%2058793%20S&L%20Enterprise,%20Inc.%204.24.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58792, 58793", - "judges": "Melnick" - }, - { - "case_dates": "2014-04-24", - "case_names": "Beechcraft Defense Company", - "download_urls": "tests/examples/opinions/united_states/2014/59173%20Beechcraft%20Defense%20Company%204.24.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59173", - "judges": "Stempler" - }, - { - "case_dates": "2014-04-23", - "case_names": "Zara Company", - "download_urls": "tests/examples/opinions/united_states/2014/58632%20Zara%20Company%204.23.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58632", - "judges": "Melnick" - }, - { - "case_dates": "2014-04-23", - "case_names": "Tokyo Company", - "download_urls": "tests/examples/opinions/united_states/2014/59059%20Tokyo%20Company%204.23.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59059", - "judges": "Ting" - }, - { - "case_dates": "2014-04-23", - "case_names": "Three Bullets, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58251,%2058305%20Three%20Bullets,%20Inc.%204.23.14.pdf", + "case_dates": "2024-04-09", + "case_names": "Mayflower Communications Company, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=USSrOZcyi40%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58251, 58305", - "judges": "Melnick" + "docket_numbers": "63859", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-04-23", - "case_names": "TJC Engineering, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58941%20TJC%20Engineering,%20Inc.%204.23.14.pdf", + "case_dates": "2024-04-04", + "case_names": "Sky Blue Builders, LLC", + "download_urls": "/LinkClick.aspx?fileticket=q0LiSBdmVyI%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58941", - "judges": "Stempler" + "docket_numbers": "63536-ADR", + "judges": "Woodrow", + "case_name_shorts": "" }, { - "case_dates": "2014-04-23", - "case_names": "Maersk Line Limited, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58779%20Maersk%20Line%20Limited,%20Inc.%204.23.14.pdf", + "case_dates": "2024-04-04", + "case_names": "Ecompex, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=WP260M2E80U%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58779", - "judges": "Peacock" + "docket_numbers": "63584", + "judges": "Thrasher", + "case_name_shorts": "Ecompex, Inc." }, { - "case_dates": "2014-04-23", - "case_names": "American General Trading & Contracting, WLL", - "download_urls": "tests/examples/opinions/united_states/2014/56758%20American%20General%20Trading%20&%20Contracting,%20WLL%204.23.14.pdf", + "case_dates": "2024-04-03", + "case_names": "The Sithe Group, LLC, dba TSG Industries", + "download_urls": "/LinkClick.aspx?fileticket=y8wtppTBIrc%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 56758", - "judges": "Melnick" + "docket_numbers": "63605", + "judges": "Wilson", + "case_name_shorts": "" }, { - "case_dates": "2014-04-21", - "case_names": "Joe Phillips", - "download_urls": "tests/examples/opinions/united_states/2014/57280%20Joe%20Phillips%204.21.14.pdf", + "case_dates": "2024-04-03", + "case_names": "Straub Driver, a Joint Venture", + "download_urls": "/LinkClick.aspx?fileticket=IGfCvHFwMO4%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57280", - "judges": "Scott" + "docket_numbers": "61014", + "judges": "McNulty", + "case_name_shorts": "" }, { - "case_dates": "2014-04-18", - "case_names": "Lobar, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59178%20Lobar,%20Inc.%204.18.14.pdf", + "case_dates": "2024-04-03", + "case_names": "North Wind Construction Services, LLC", + "download_urls": "/LinkClick.aspx?fileticket=dCCX1nQVpO4%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59178", - "judges": "Stempler" + "docket_numbers": "63641, 63642, 63733, 63750, 63751, 63759, 63760, 63761, 63762", + "judges": "Melnick", + "case_name_shorts": "" }, { - "case_dates": "2014-04-17", - "case_names": "Puget Sound Environmental Corp.", - "download_urls": "tests/examples/opinions/united_states/2014/58827,%2058828%20Puget%20Sound%20Environmental%20Corp.%204.17.14.pdf", + "case_dates": "2024-03-27", + "case_names": "Lockheed Martin Aeronautics Company", + "download_urls": "/LinkClick.aspx?fileticket=WG6FUuNqUMo%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58827, 58828", - "judges": "James" + "docket_numbers": "62249, 62727", + "judges": "McLish", + "case_name_shorts": "" }, { - "case_dates": "2014-04-17", - "case_names": "Lucius A. Gilliam", - "download_urls": "tests/examples/opinions/united_states/2014/59152%20Lucius%20A.%20Gilliam%204.17.14.pdf", + "case_dates": "2024-03-27", + "case_names": "Inmarsat Government, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=2OBFi3_4jyk%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59152", - "judges": "Stempler" + "docket_numbers": "63708", + "judges": "Thrasher", + "case_name_shorts": "Inmarsat Government, Inc." }, { - "case_dates": "2014-04-15", - "case_names": "Duncan Aviation, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58733%20Duncan%20Aviation,%20Inc.%204.15.14.pdf", + "case_dates": "2024-03-27", + "case_names": "Gilbane Federal", + "download_urls": "/Portals/143/Decisions/2024/62763 et al. Gilbane Federal 3.28.24 Dismissal.pdf?ver=dVlKcrnfxRJTv523cRRgbg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58733", - "judges": "Tunks" + "docket_numbers": "62833, 62857, 62880, 62915, 62911, 62860, 62885, 62879, 62878, 62914, 62922, 62910, 62918, 62884, 62863, 62923, 62864, 62865, 62912, 62881", + "judges": "Stinson", + "case_name_shorts": "Gilbane Federal" }, { - "case_dates": "2014-04-15", - "case_names": "Defense Support Services LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59185%20Defense%20Support%20Services%20LLC%204.15.14.pdf", + "case_dates": "2024-03-26", + "case_names": "Polaris Alpha, LLC", + "download_urls": "/LinkClick.aspx?fileticket=n6e93OizIt0%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59185", - "judges": "Stempler" + "docket_numbers": "63645", + "judges": "Melnick", + "case_name_shorts": "Polaris Alpha, LLC" }, { - "case_dates": "2014-04-11", - "case_names": "LinQuest Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58879%20LinQuest%20Corporation%204.11.14.pdf", + "case_dates": "2024-03-26", + "case_names": "Polaris Alpha, LLC", + "download_urls": "/LinkClick.aspx?fileticket=3NoT8oJJXSA%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58879", - "judges": "Stempler" + "docket_numbers": "63315", + "judges": "Melnick", + "case_name_shorts": "Polaris Alpha, LLC" }, { - "case_dates": "2014-04-11", - "case_names": "Dyno Group, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59074%20Dyno%20Group,%20Inc.%204.11.14.pdf", + "case_dates": "2024-03-26", + "case_names": "Dublin Crossing, LLC", + "download_urls": "/Portals/143/Decisions/2024/63659 Dublin Crossing LLC 3.26.24 Dismissal.pdf?ver=oOc_DAPWXxsqnYIFPx4SJQ%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59074", - "judges": "Melnick" + "docket_numbers": "63659", + "judges": "Eyester", + "case_name_shorts": "Dublin Crossing, LLC" }, { - "case_dates": "2014-04-10", - "case_names": "Public Warehousing Company K.S.C.", - "download_urls": "tests/examples/opinions/united_states/2014/58078%20Public%20Warehousing%20Company%20K.S.C.%204.10.14.pdf", + "case_dates": "2024-03-26", + "case_names": "Burgos Group, LLC", + "download_urls": "/Portals/143/Decisions/2024/63793 Burgos Group LLC 3.26.24 Dismissal.pdf?ver=S5PkUrLeyzt8sGzziX9rSw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58078", - "judges": "Ting" + "docket_numbers": "63793", + "judges": "Thrasher", + "case_name_shorts": "Burgos Group, LLC" }, { - "case_dates": "2014-04-08", - "case_names": "Technologists Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59011%20Technologists%20Inc.%204.8.14.pdf", + "case_dates": "2024-03-25", + "case_names": "Supreme Foodservice GmbH", + "download_urls": "/Portals/143/Decisions/2024/61370 Supreme Foodservice GmbH 3.25.24 Decision Published PO Decision.pdf?ver=8JjA9TDhNYUwRx6MJAoLvA%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59011", - "judges": "Stempler" + "docket_numbers": "61370", + "judges": "O'Connell", + "case_name_shorts": "Supreme Foodservice GmbH" }, { - "case_dates": "2014-04-08", - "case_names": "Notation Supply Services", - "download_urls": "tests/examples/opinions/united_states/2014/59068%20Notation%20Supply%20Services%204.8.14.pdf", + "case_dates": "2024-03-22", + "case_names": "David Boland, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=O79ErhenCSo%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59068", - "judges": "Stempler" + "docket_numbers": "63007, 63008", + "judges": "Sweet", + "case_name_shorts": "David Boland, Inc." }, { - "case_dates": "2014-04-08", - "case_names": "Moore's Cafeteria Services, Ltd.", - "download_urls": "tests/examples/opinions/united_states/2014/58196%20Moore's%20Cafeteria%20Services,%20Ltd.%204.8.14.pdf", + "case_dates": "2024-03-20", + "case_names": "Delta Industries, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=4t8uRuUpL08%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58196", - "judges": "Stempler" + "docket_numbers": "62981-ADR, 63298-ADR", + "judges": "Eyester", + "case_name_shorts": "Delta Industries, Inc." }, { - "case_dates": "2014-04-04", - "case_names": "Thefaf Al-Rafidain Contracting Co.", - "download_urls": "tests/examples/opinions/united_states/2014/59014%20Thefaf%20Al-Rafidain%20Contracting%20Co.%204.4.14.pdf", + "case_dates": "2024-03-19", + "case_names": "Pave-Tech Inc.", + "download_urls": "/Portals/143/Decisions/2024/61879 Pave-Tech Inc. 3.19.24 Dismissal.pdf?ver=PdmSha9jhZ8yfpzfSSTYWA%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59014", - "judges": "James" + "docket_numbers": "61879", + "judges": "Wilson", + "case_name_shorts": "Pave-Tech Inc." }, { - "case_dates": "2014-04-04", - "case_names": "Fluor Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/57852%20Fluor%20Corporation%204.4.14.pdf", + "case_dates": "2024-03-19", + "case_names": "CAE USA, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=qQrhQ8PnT9E%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57852", - "judges": "Peacock" + "docket_numbers": "63248-ADR", + "judges": "Herzfeld", + "case_name_shorts": "CAE USA, Inc." }, { - "case_dates": "2014-04-04", - "case_names": "Esood Al Blad Company", - "download_urls": "tests/examples/opinions/united_states/2014/58425%20Esood%20al%20Blad%20Company%204.4.14.pdf", + "case_dates": "2024-03-18", + "case_names": "Alpha Alps Construction Inc.", + "download_urls": "/Portals/143/Decisions/2024/63226 Alpha Aps Construction Inc. 3.18.24 Dismissal.pdf?ver=4qj9lfyyTQIWawO4fF1gJw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58425", - "judges": "Tunks" + "docket_numbers": "63226, 63227", + "judges": "McNulty", + "case_name_shorts": "" }, { - "case_dates": "2014-04-04", - "case_names": "A-1 Horton's Moving Service, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57750%20A-1%20Horton's%20Moving%20Service,%20Inc.%204.4.14.pdf", + "case_dates": "2024-03-15", + "case_names": "Wolverine Tube, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=JMLUjuasFtA%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57750", - "judges": "Tunks" + "docket_numbers": "63769", + "judges": "Wilson", + "case_name_shorts": "Wolverine Tube, Inc." }, { - "case_dates": "2014-04-01", - "case_names": "G. A. Richards & Co., Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59140%20G.%20A.%20Richards%20&%20Co.,%20Inc.%204.1.14.pdf", + "case_dates": "2024-03-13", + "case_names": "Vectrus Systems Corporation", + "download_urls": "/Portals/143/Decisions/2024/63629-ADR Vectrus Systems Corporation 3.13.24 Consent Judgment.pdf?ver=2YTZGz334Vp9vKFt_m6IOw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59140", - "judges": "Stempler" + "docket_numbers": "63629-ADR", + "judges": "Arnett", + "case_name_shorts": "Vectrus Systems Corporation" }, { - "case_dates": "2014-04-01", - "case_names": "Eyak Technology, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58552%20et%20al.%20Eyak%20Technology,%20LLC%204.1.14.pdf", + "case_dates": "2024-03-12", + "case_names": "SDC Contracting, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=Syr1a09HQNc%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58552, 58553, 58554, 58555", - "judges": "Melnick" + "docket_numbers": "63469", + "judges": "Smith", + "case_name_shorts": "SDC Contracting, Inc." }, { - "case_dates": "2014-04-01", - "case_names": "Eyak Services, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58556,%2058557%20Eyak%20Services,%20LLC%204.1.14.pdf", + "case_dates": "2024-03-07", + "case_names": "Woolpert, Inc.", + "download_urls": "/Portals/143/Decisions/2024/63515 Woolpert Inc. 3.7.24 Dismisal Order.pdf?ver=xXzgwbPR_8gMS_KPIV4yXw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58556, 58557", - "judges": "Melnick" + "docket_numbers": "63515", + "judges": "Wilson", + "case_name_shorts": "Woolpert, Inc." }, { - "case_dates": "2014-04-01", - "case_names": "Coast/ACM", - "download_urls": "tests/examples/opinions/united_states/2014/58759%20Coast-ACM%204.1.14.pdf", + "case_dates": "2024-03-07", + "case_names": "ServeFed, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=ZF5lyOxUa1Y%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58759", - "judges": "Stempler" + "docket_numbers": "63290", + "judges": "Sweet", + "case_name_shorts": "ServeFed, Inc." }, { - "case_dates": "2014-03-27", - "case_names": "World Rose Company", - "download_urls": "tests/examples/opinions/united_states/2014/58026,%2058750%20World%20Rose%20Company%203.27.14.pdf", + "case_dates": "2024-03-07", + "case_names": "JML Logistics LLC", + "download_urls": "/Portals/143/Decisions/2024/63840 JML Logistics LLC 3.7.24 Dismissal.pdf?ver=VXjHVTg3XaA-v9ShaYO6JA%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58026, 58750", - "judges": "Thrasher" + "docket_numbers": "63840", + "judges": "Thrasher", + "case_name_shorts": "JML Logistics LLC" }, { - "case_dates": "2014-03-27", - "case_names": "HTA Aviation, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/57891%20et%20al.%20HTA%20Aviation,%20LLC%203.27.14.pdf", + "case_dates": "2024-03-07", + "case_names": "Golden Manufacturing Co., Inc.", + "download_urls": "/LinkClick.aspx?fileticket=Zrx53er7Uqc%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57891, 57892, 57893, 57894, 58189, 58193", - "judges": "Page" + "docket_numbers": "63805", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-03-26", - "case_names": "Taj Al Rajaa Company", - "download_urls": "tests/examples/opinions/united_states/2014/58801%20Taj%20Al%20Rajaa%20Company%203.26.14.pdf", + "case_dates": "2024-03-07", + "case_names": "California Department of Rehabilitation", + "download_urls": "/Portals/143/Decisions/2024/63817-PET California Department of Rehabilitation 3.7.24 Order.pdf?ver=jzEoQ8ATYI_EMR9VI-o-1A%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58801", - "judges": "James" + "docket_numbers": "63817-PET", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-03-26", - "case_names": "Linc Government Services, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58560%20Linc%20Government%20Services,%20LLC%203.26.14.pdf", + "case_dates": "2024-03-06", + "case_names": "Aviate Enterprises, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=inVmxE4Bz7M%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58560", - "judges": "James" + "docket_numbers": "63681, 63682, 63706", + "judges": "Thrasher", + "case_name_shorts": "Aviate Enterprises, Inc." }, { - "case_dates": "2014-03-25", - "case_names": "Solpac Construction Inc., dba Soltek Pacific Construction Company", - "download_urls": "tests/examples/opinions/united_states/2014/59130%20Solpac%20Construction%20Inc.,%20dba%20Soltek%20Pacific%20Construction%20Company%203.25.14.pdf", + "case_dates": "2024-03-04", + "case_names": "Gilbane Federal", + "download_urls": "/Portals/143/Decisions/2024/63674 Gilbane Federal 3.4.24 Decision.pdf?ver=JWb-k5ChtE1qzYRcv1dbdg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59130", - "judges": "Stempler" + "docket_numbers": "63674, 63702, 63717", + "judges": "Wilson", + "case_name_shorts": "Gilbane Federal" }, { - "case_dates": "2014-03-25", - "case_names": "Rentfrow Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58751%20Rentfrow%20Inc.%203.25.14.pdf", + "case_dates": "2024-03-04", + "case_names": "Aviation Training Consulting, LLC", + "download_urls": "/LinkClick.aspx?fileticket=JUHoHL4pZE8%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58751", - "judges": "Stempler" + "docket_numbers": "63279", + "judges": "McIlmail", + "case_name_shorts": "" }, { - "case_dates": "2014-03-25", - "case_names": "IPICOM, Inc., dba IPITEK", - "download_urls": "tests/examples/opinions/united_states/2014/58246,%2058247,%2058248%20IPICOM,%20Inc.,%20dba%20IPITEK%203.25.14.pdf", + "case_dates": "2024-02-28", + "case_names": "North American Specialty Insurance Company", + "download_urls": "/Portals/143/Decisions/2024/63270 North American Specialty Insurance Company 2.28.24 Dismissal.pdf?ver=N5CetMprCgyFKHbVQut_Nw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58246, 58247, 58248", - "judges": "Stempler" + "docket_numbers": "63270", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-03-25", - "case_names": "Environmental Chemical Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58631%20Environmental%20Chemical%20Corporation%203.25.14.pdf", + "case_dates": "2024-02-27", + "case_names": "Trident E&P, LLC", + "download_urls": "/LinkClick.aspx?fileticket=NU7sEuqlcac%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58631", - "judges": "Stempler" + "docket_numbers": "63189-ADR", + "judges": "Page", + "case_name_shorts": "Trident E&P, LLC" }, { - "case_dates": "2014-03-24", - "case_names": "Singleton Enterprises", - "download_urls": "tests/examples/opinions/united_states/2014/58235%20Singleton%20Enterprises%203.24.14.pdf", + "case_dates": "2024-02-22", + "case_names": "The Haskell Company", + "download_urls": "/Portals/143/Decisions/2024/63291 The Haskell Company 2.22.24 Decision.pdf?ver=MFpAdxqvHZqbzz120KABaw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58235", - "judges": "Clarke" + "docket_numbers": "63291", + "judges": "Taylor", + "case_name_shorts": "The Haskell Company" }, { - "case_dates": "2014-03-24", - "case_names": "Magwood Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58968%20Magwood%20Services,%20Inc.%203.24.14.pdf", + "case_dates": "2024-02-21", + "case_names": "Vectrus Systems Corporation", + "download_urls": "/Portals/143/Decisions/2024/63472-ADR Vectrus Systems Corporation 2.21.24 Dismissal Consent Judgment.pdf?ver=JLfbIRUdkOug3OWankAJQw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58968", - "judges": "Scott" + "docket_numbers": "63472-ADR, 63523-ADR", + "judges": "Arnett", + "case_name_shorts": "Vectrus Systems Corporation" }, { - "case_dates": "2014-03-19", + "case_dates": "2024-02-21", "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2014/58693%20The%20Boeing%20Company%203.19.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58693", - "judges": "Stempler" - }, - { - "case_dates": "2014-03-19", - "case_names": "PKD, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58019%20PKD,%20Inc.%203.19.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58019, 58021, 58470, 58471, 58472, 58473, 58878", - "judges": "Ting" - }, - { - "case_dates": "2014-03-18", - "case_names": "Mylene Will Company LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58332%20Mylene%20Will%20Company%20LLC%203.18.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58332", - "judges": "Younger" - }, - { - "case_dates": "2014-03-18", - "case_names": "Delta Engineering, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58063%20Delta%20Engineering,%20Inc.%203.18.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58063", - "judges": "Peacock" - }, - { - "case_dates": "2014-03-14", - "case_names": "CCI, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57316%20CCI,%20Inc.%203.14.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57316", - "judges": "Scott" - }, - { - "case_dates": "2014-03-13", - "case_names": "Ohana Industries, Ltd.", - "download_urls": "tests/examples/opinions/united_states/2014/59124%20Ohana%20Industries,%20Ltd.%203.13.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59124", - "judges": "Page" - }, - { - "case_dates": "2014-03-13", - "case_names": "Kellogg Brown & Root Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58984%20Kellogg%20Brown%20&%20Root%20Services,%20Inc.%203.13.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58984", - "judges": "Stempler" - }, - { - "case_dates": "2014-03-13", - "case_names": "Kellogg Brown & Root Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58926%20Kellogg%20Brown%20&%20Root%20Services,%20Inc.%203.13.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58926", - "judges": "Stempler" - }, - { - "case_dates": "2014-03-13", - "case_names": "Kellogg Brown & Root Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58661%20Kellogg%20Brown%20&%20Root%20Services,%20Inc.%203.13.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58661", - "judges": "Stempler" - }, - { - "case_dates": "2014-03-13", - "case_names": "Angel Menendez Environmental Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58655%20Angel%20Menendez%20Environmental%20Services,%20Inc.%203.13.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58655", - "judges": "Scott" - }, - { - "case_dates": "2014-03-12", - "case_names": "Sadaf Petroleum Kabul, Ltd.", - "download_urls": "tests/examples/opinions/united_states/2014/58353%20Sadaf%20Petroleum%20Kabul,%20Ltd.%203.12.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58353", - "judges": "Tunks" - }, - { - "case_dates": "2014-03-11", - "case_names": "United Terex", - "download_urls": "tests/examples/opinions/united_states/2014/59015%20United%20Terex%203.11.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59015", - "judges": "Stempler" - }, - { - "case_dates": "2014-03-11", - "case_names": "Stanley Associates, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58802,%2058803%20Stanley%20Associates,%20Inc.%203.11.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58802, 58803", - "judges": "Stempler" - }, - { - "case_dates": "2014-03-11", - "case_names": "Mayflower Communications Company, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58797,%2058798,%2059083,%2059084%20Mayflower%20Communications%20Company,%20Inc.%203.11.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58797, 58798, 59083, 59084", - "judges": "Stempler" - }, - { - "case_dates": "2014-03-11", - "case_names": "Advanced Technology Logistics, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58665%20Advanced%20Technology%20Logistics,%20Inc.%203.11.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58665", - "judges": "Stempler" - }, - { - "case_dates": "2014-03-11", - "case_names": "Abkarr Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/57735%20Abkarr%20Corporation%203.11.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57735", - "judges": "Page" - }, - { - "case_dates": "2014-03-06", - "case_names": "Applied Technical Systems, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58072%20Applied%20Technical%20Systems,%20Inc.%203.6.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58072", - "judges": "Grant" - }, - { - "case_dates": "2014-03-06", - "case_names": "Analex Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58419%20Analex%20Corporation%203.6.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58419", - "judges": "Scott" - }, - { - "case_dates": "2014-03-05", - "case_names": "Green Jacket Contractors, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58624%20Green%20Jacket%20Contractors,%20LLC%203.5.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58624", - "judges": "Stempler" - }, - { - "case_dates": "2014-03-05", - "case_names": "Fluor Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58804%20Fluor%20Corporation%203.5.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58804", - "judges": "Stempler" - }, - { - "case_dates": "2014-03-05", - "case_names": "CI\u00b2, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/56257,%2056337%20CI2,%20Inc.%203.8.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 56257, 56337", - "judges": "Delman" - }, - { - "case_dates": "2014-03-04", - "case_names": "Gerald R. Rouillard III dba International Gear Technologies", - "download_urls": "tests/examples/opinions/united_states/2014/58692%20Gerald%20R.%20Rouillard%20III%20dba%20International%20Gear%20Technologies%203.4.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58692", - "judges": "Thrasher" - }, - { - "case_dates": "2014-03-04", - "case_names": "Exelis Inc., Information Systems Division", - "download_urls": "tests/examples/opinions/united_states/2014/58869%20Exelis%20Inc.,%20Information%20Systems%20Division%203.4.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58869", - "judges": "Stempler" - }, - { - "case_dates": "2014-02-27", - "case_names": "Thorpe Seeop Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58961%20Thorpe%20Seeop%20Corporation%202.27.14%20PUBLISHED.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58961", - "judges": "Stempler" - }, - { - "case_dates": "2014-02-26", - "case_names": "Reagan Construction Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58846%20Reagan%20Construction%20Company%202.26.14%20PUBLISHED.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58846", - "judges": "Stempler" - }, - { - "case_dates": "2014-02-25", - "case_names": "Skanska USA Building, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58295%20et%20al.%20Skanska%20USA%20Building,%20Inc.%202.25.14%20PUBLISHED.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58295, 58296, 58297, 58298, 58299, 58387, 58388, 58389, 58390", - "judges": "Ting" - }, - { - "case_dates": "2014-02-25", - "case_names": "Naher Al-Jabil Company", - "download_urls": "tests/examples/opinions/united_states/2014/59061%20Naher%20Al-Jabil%20Company%202.25.14%20PUBLISHED.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59061", - "judges": "Stempler" - }, - { - "case_dates": "2014-02-20", - "case_names": "Exelis Inc., Information Systems Division", - "download_urls": "tests/examples/opinions/united_states/2014/58937,%2058938%20Exelis%20Inc.,%20Information%20Systems%20Division%202.20.14%20%20PUBLISHED.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58937, 58938", - "judges": "Stempler" - }, - { - "case_dates": "2014-02-19", - "case_names": "West Point Apparel Group, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57811%20West%20Point%20Apparel%20Group,%20Inc.%202.19.14%20PUBLISHED.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57811", - "judges": "Stempler" - }, - { - "case_dates": "2014-02-19", - "case_names": "Towers Hawks Iraq Company For General Contracting Ltd.", - "download_urls": "tests/examples/opinions/united_states/2014/59018%20Towers%20Hawks%20Iraq%20Company%20For%20General%20Contracting%20Ltd.%202.19.14%20PUBLISHED.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59018", - "judges": "Stempler" - }, - { - "case_dates": "2014-02-12", - "case_names": "Leidos, Inc., f/k/a Science Applications International Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/59137%20Leidos,%20Inc.,%20f-k-a%20Science%20Application%20International%202.12.14%20PUBLISHED.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59137", - "judges": "Stempler" - }, - { - "case_dates": "2014-02-12", - "case_names": "Jayco International, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58461%20Jayco%20International,%20LLC%202.12.14%20PUBLISHED.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58461", - "judges": "Clarke" - }, - { - "case_dates": "2014-02-12", - "case_names": "Guam Industrial Services, Inc., d/b/a Guam Shipyard", - "download_urls": "tests/examples/opinions/united_states/2014/59075%20Guam%20Industrial%20Services,%20Inc.,%20d-b-a%20Guam%20Shipyard%202.12.14%20PUBLISHED.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59075", - "judges": "Stempler" - }, - { - "case_dates": "2014-02-12", - "case_names": "Golden Bay Construction Company", - "download_urls": "tests/examples/opinions/united_states/2014/58362%20Golden%20Bay%20Construction%20Company%202.12.14%20PUBLISHED.pdf", + "download_urls": "/Portals/143/Decisions/2024/61575 The Boeing Company 2.21.24 Dismissal.pdf?ver=rQ6oJeL04UHZL03A_45Idg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58362", - "judges": "Stempler" + "docket_numbers": "61575", + "judges": "O'Connell", + "case_name_shorts": "The Boeing Company" }, { - "case_dates": "2014-02-12", - "case_names": "Geosan Gae Jun Co., Ltd.", - "download_urls": "tests/examples/opinions/united_states/2014/58449%20Geosan%20Gae%20Jun%20Co.,%20Ltd.%202.12.14%20PUBLISHED.pdf", + "case_dates": "2024-02-21", + "case_names": "Koontz Electric Company, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=uX1PqoWjdA8%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58449", - "judges": "Stempler" + "docket_numbers": "62366", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-02-11", - "case_names": "Washington Security Group, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58120,%2058219%20Washington%20Security%20Group,%20Inc.%202.11.14%20PUBLISHED.pdf", + "case_dates": "2024-02-20", + "case_names": "Meggitt Safety Systems Inc.", + "download_urls": "/Portals/143/Decisions/2024/63732 Meggitt Safety Systems Inc. 2.20.24 Dismissal.pdf?ver=fNK4TpAGnYr7CEVRq6Ynmw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58120, 58219", - "judges": "Shackleford" + "docket_numbers": "63732", + "judges": "Stinson", + "case_name_shorts": "" }, { - "case_dates": "2014-02-11", - "case_names": "Washington Group/Alberici Joint Venture", - "download_urls": "tests/examples/opinions/united_states/2014/57047,%2057278,%2057399%20Washington%20Group-Alberici%20Joint%20Venture%202.11.14%20PUBLISHED.pdf", + "case_dates": "2024-02-20", + "case_names": "Desbuild, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=MYiEvKQyxXQ%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57047, 57278, 57399", - "judges": "Paul" + "docket_numbers": "63412", + "judges": "McIlmail", + "case_name_shorts": "Desbuild, Inc." }, { - "case_dates": "2014-02-11", - "case_names": "Siemens Goverment Technologies, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58826%20Siemens%20Government%20Technologies,%20Inc.%202.11.14%20PUBLISHED.pdf", + "case_dates": "2024-02-15", + "case_names": "MTS General Trading & Construction\u00b9", + "download_urls": "/LinkClick.aspx?fileticket=m69F2t_QeNM%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58826", - "judges": "Stempler" + "docket_numbers": "63522", + "judges": "Arnett", + "case_name_shorts": "" }, { - "case_dates": "2014-02-10", - "case_names": "FRASSON LODOVICO S.r.l.", - "download_urls": "tests/examples/opinions/united_states/2014/58645%20FRASSON%20LODOVICO%20S.r.l.%202.10.14%20PUBLISHED.pdf", + "case_dates": "2024-02-13", + "case_names": "Patricia I. Romero, Inc. dba Pacific West Builders", + "download_urls": "/LinkClick.aspx?fileticket=iUh7ejUbTTg%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58645", - "judges": "Shackleford" + "docket_numbers": "62627", + "judges": "Eyester", + "case_name_shorts": "" }, { - "case_dates": "2014-02-07", - "case_names": "Looks Great Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59086%20Looks%20Great%20Services,%20Inc.%202.7.14%20PUBLISHED.pdf", + "case_dates": "2024-02-13", + "case_names": "North Wind Construction Services, LLC", + "download_urls": "/LinkClick.aspx?fileticket=a00H_jMI-8M%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59086", - "judges": "Stempler" + "docket_numbers": "63548, 63549, 63641, 63642, 63733, 63750, 63751, 63759, 63760, 63761, 63762", + "judges": "Melnick", + "case_name_shorts": "" }, { - "case_dates": "2014-02-06", - "case_names": "The R.R. Gregory Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58517%20R.R.%20Gregory%20Corporation%202.6.14%20PUBLISHED.pdf", + "case_dates": "2024-02-13", + "case_names": "Kandahar Mahali Transit & Forwarding LTD.", + "download_urls": "/LinkClick.aspx?fileticket=PikrlDIldCw%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58517", - "judges": "James" + "docket_numbers": "62319", + "judges": "O'Connell", + "case_name_shorts": "" }, { - "case_dates": "2014-02-06", - "case_names": "Mongiovi & Son", - "download_urls": "tests/examples/opinions/united_states/2014/59013%20Mongiovi%20&%20Son%202.6.14%20PUBLISHED.pdf", + "case_dates": "2024-02-13", + "case_names": "Heffler Contracting Group", + "download_urls": "/Portals/143/Decisions/2024/63565 Heffler Contracting Group 2.13.24 Decision.pdf?ver=fYf17X23YpQJbWLTdjX4tg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59013", - "judges": "Stempler" + "docket_numbers": "63565", + "judges": "Melnick", + "case_name_shorts": "Heffler Contracting Group" }, { - "case_dates": "2014-02-05", - "case_names": "Taj Al Rajaa Company", - "download_urls": "tests/examples/opinions/united_states/2014/58801%20Taj%20Al%20Rajaa%20Company%202.5.14%20PUBLISHED.pdf", + "case_dates": "2024-02-12", + "case_names": "Wolf Creek Federal Services, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=T1rBEt8SGZ4%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58801", - "judges": "James" + "docket_numbers": "63758", + "judges": "Prouty", + "case_name_shorts": "" }, { - "case_dates": "2014-02-05", - "case_names": "QSS Group, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58764%20QSS%20Group,%20Inc.%202.5.14%20PUBLISHED.pdf", + "case_dates": "2024-02-09", + "case_names": "Tootle Construction, LLC", + "download_urls": "/LinkClick.aspx?fileticket=JnghWj6Es-4%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58764", - "judges": "Stempler" + "docket_numbers": "63581", + "judges": "Herzfeld", + "case_name_shorts": "Tootle Construction, LLC" }, { - "case_dates": "2014-02-05", - "case_names": "Pulliam Construction Company, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58523%20et%20al.%20Pulliam%20Construction%20Company,%20Inc.%202.5.14%20PUBLISHED.pdf", + "case_dates": "2024-02-08", + "case_names": "Gideon Contracting, LLC", + "download_urls": "/LinkClick.aspx?fileticket=6BP1JsBCDLA%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58523, 58524, 58525, 58526, 58527, 58528, 58529, 58530", - "judges": "Stempler" + "docket_numbers": "63560", + "judges": "Herzfeld", + "case_name_shorts": "Gideon Contracting, LLC" }, { - "case_dates": "2014-02-05", - "case_names": "Commissioning Solutions Global, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/59007-945%20Commissioning%20Solutions%20Global,%20LLC%202.5.14%20PUBLISHED.pdf", + "case_dates": "2024-02-06", + "case_names": "Obera LLC", + "download_urls": "/Portals/143/Decisions/2024/63699-ADR Obera LLC 2.6.24 Dismissal.pdf?ver=zZsLF4at4Ikl218hkbe1Vg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59007-945", - "judges": "Stempler" + "docket_numbers": "63699-ADR, 63700-ADR", + "judges": "Sweet", + "case_name_shorts": "Obera LLC" }, { - "case_dates": "2014-02-04", - "case_names": "Jaynes Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58675%20Jaynes%20Corporation%202.4.14%20PUBLISHED.pdf", + "case_dates": "2024-02-06", + "case_names": "Kawasaki Rail Car, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=5HjxdzUTE4U%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58675", - "judges": "Clarke" + "docket_numbers": "63806", + "judges": "Prouty", + "case_name_shorts": "" }, { - "case_dates": "2014-01-30", - "case_names": "EJB Facilities Services", - "download_urls": "tests/examples/opinions/united_states/2014/58314%20EJB%20Facilities%20Services%201.30.14%20PUBLISHED.pdf", + "case_dates": "2024-02-05", + "case_names": "MDJ Contracting Inc.", + "download_urls": "/Portals/143/Decisions/2024/63210 MDJ Contractingf Inc. 2.6.24 Dismissal.pdf?ver=nbd8UJfOjJolAtyM1oOEKg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58314", - "judges": "Younger" + "docket_numbers": "63210", + "judges": "Herzfeld", + "case_name_shorts": "MDJ Contracting Inc." }, { - "case_dates": "2014-01-29", - "case_names": "Tower One Construction Co.", - "download_urls": "tests/examples/opinions/united_states/2014/57853%20Tower%20One%20Construction%20Co.%201.29.14.pdf", + "case_dates": "2024-02-05", + "case_names": "BCI Construction USA, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=rlPbOIrbGGo%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57853", - "judges": "Scott" + "docket_numbers": "62657, 62975, 63200", + "judges": "Stinson", + "case_name_shorts": "" }, { - "case_dates": "2014-01-29", - "case_names": "Pathfinder Systems, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58851%20Pathfinder%20Systems,%20Inc.%201.29.14.pdf", + "case_dates": "2024-02-05", + "case_names": "Amentum Services, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=DI6HA4SElAQ%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58851", - "judges": "Stempler" + "docket_numbers": "63250, 63251, 63350", + "judges": "McIlmail", + "case_name_shorts": "Amentum Services, Inc." }, { - "case_dates": "2014-01-29", - "case_names": "CP of Bozeman, Inc., dba Maintenance Patrol", - "download_urls": "tests/examples/opinions/united_states/2014/58533%20CP%20of%20Bozeman,%20Inc.,%20dba%20Maintenance%20Patrol%201.29.14.pdf", + "case_dates": "2024-02-02", + "case_names": "Hamp's Construction LLC", + "download_urls": "/Portals/143/Decisions/2024/62257 Hamp's Construction LLC 2.2.24 Decision.pdf?ver=0AehHJhqFuTpFdRNzUQyEg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58533", - "judges": "Clarke" + "docket_numbers": "62257", + "judges": "Prouty", + "case_name_shorts": "Hamp's Construction LLC" }, { - "case_dates": "2014-01-29", - "case_names": "Autonomous Solutions, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/59131%20Autonomous%20Solutions,%20Inc.%201.29.14.pdf", + "case_dates": "2024-02-01", + "case_names": "Walsh Federal Alberici Joint Venture", + "download_urls": "/Portals/143/Decisions/2024/63191 et al. Walsh Federal Alberici Joint Venture 2.1.24 Dismissal.pdf?ver=DUuzMY311yPAw1bTHmV2pg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59131", - "judges": "Stempler" + "docket_numbers": "63191, 63346, 63347, 63348, 63502, 63503, 63504, 63505, 63506", + "judges": "McLish", + "case_name_shorts": "" }, { - "case_dates": "2014-01-28", - "case_names": "Violet Dock Port, Inc., LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58746%20Violet%20Dock%20Port,%20Inc.,%20LLC%201.28.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58746", - "judges": "Stempler" - }, - { - "case_dates": "2014-01-28", - "case_names": "Environmental Safety Consultants, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/51722%20Environmental%20Safety%20Consultants,%20Inc.%201.28.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 51722", - "judges": "Freeman" - }, - { - "case_dates": "2014-01-28", - "case_names": "Bulova Technologies Ordnance Systems LLC", - "download_urls": "tests/examples/opinions/united_states/2014/57406%20Bulova%20Technologies%20Ordnance%20Systems%20LLC%201.28.14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57406", - "judges": "Grant" - }, - { - "case_dates": "2014-01-27", - "case_names": "CAE USA, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58006%20CAE%20USA,%20Inc.%201.27.14.pdf", + "case_dates": "2024-02-01", + "case_names": "Tantara Corporation", + "download_urls": "/Portals/143/Decisions/2024/62484 Tantara Corporation 2.1.24 Dismissal.pdf?ver=LvZufvfnnRCeWKTP0lF1pg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58006", - "judges": "Clarke" + "docket_numbers": "62484", + "judges": "McNulty", + "case_name_shorts": "Tantara Corporation" }, { - "case_dates": "2014-01-24", - "case_names": "Hensel Phelps Construction Company", - "download_urls": "tests/examples/opinions/united_states/2014/58393%20Hensel%20Phelps%20Construction%20Company%201.24.14.pdf", + "case_dates": "2024-01-31", + "case_names": "Allard Nazarian Group, Inc. dba Granite State Manufacturing", + "download_urls": "/LinkClick.aspx?fileticket=0SkXr0WtU48%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58393", - "judges": "Younger" + "docket_numbers": "62413, 62414", + "judges": "Stinson", + "case_name_shorts": "" }, { - "case_dates": "2014-01-23", - "case_names": "Safety Training Systems, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57095,57166%20Safety%20Training%20Systems,%20Inc.%201.23.14.pdf", + "case_dates": "2024-01-30", + "case_names": "Shipping Consultants Associated, Ltd.", + "download_urls": "/LinkClick.aspx?fileticket=_uT9xtHKBx0%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57095, 57166", - "judges": "Shackleford" + "docket_numbers": "63583", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-01-23", - "case_names": "G & C Enterprises, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/56572%20G%20&%20C%20Enterprises,%20Inc.%201.23.14.pdf", + "case_dates": "2024-01-30", + "case_names": "Accura-SoCo I JV, LLC", + "download_urls": "/LinkClick.aspx?fileticket=DexAqXTd55o%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 56572", - "judges": "Lane" + "docket_numbers": "63625-ADR", + "judges": "Arnett", + "case_name_shorts": "" }, { - "case_dates": "2014-01-23", - "case_names": "Environmental Safety Consultants, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58847%20Environmental%20Safety%20Consultants,%20Inc.%201.23.14.pdf", + "case_dates": "2024-01-29", + "case_names": "Dashti Sanat Logistics and General Contracting", + "download_urls": "/Portals/143/Decisions/2024/63525 Dashti Sanat Logistics and General Contracting 1.30.24 Dismissal.pdf?ver=ZnXJscujC171jKgoRHP3vw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58847", - "judges": "Freeman" + "docket_numbers": "63525, 63643", + "judges": "Wilson", + "case_name_shorts": "" }, { - "case_dates": "2014-01-23", - "case_names": "ADT Construction Group, Inc. by Timothy S. Cory, Chapter 7 Trustee", - "download_urls": "tests/examples/opinions/united_states/2014/55358%20ADT%20Construction%20Group,%20Inc.%20by%20Timothy%20S.%20Cory%201.23.14.pdf", + "case_dates": "2024-01-25", + "case_names": "Yul Lim Construction Co., Ltd.", + "download_urls": "/LinkClick.aspx?fileticket=H3PKscWljOQ%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 55358", - "judges": "Shackleford" + "docket_numbers": "63483", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-01-22", - "case_names": "Kellogg Brown & Root Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58513%20Kellogg%20Brown%20&%20Root%20Services,%20Inc.%201.22.14.pdf", + "case_dates": "2024-01-25", + "case_names": "Restoration Specialists, LLC", + "download_urls": "/LinkClick.aspx?fileticket=iuwxVwCyLOU%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58513", - "judges": "Stempler" + "docket_numbers": "63284", + "judges": "McLish", + "case_name_shorts": "Restoration Specialists, LLC" }, { - "case_dates": "2014-01-22", - "case_names": "DayDanyon Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/57611,%2057681,%2057717%20DayDanyon%20Corporation%201.22.14.pdf", + "case_dates": "2024-01-25", + "case_names": "Novielli Boat Builders Inc.", + "download_urls": "/Portals/143/Decisions/2024/63795-PET Novielli Boat Builders Inc. 1.25.24 Dismissal.pdf?ver=f_yqS_ESZe7u2txKDWHQ4g%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57611, 57681, 57717", - "judges": "James" + "docket_numbers": "63795-PET", + "judges": "Wilson", + "case_name_shorts": "" }, { - "case_dates": "2014-01-17", - "case_names": "Dawson-Alamol JV, LLC", - "download_urls": "tests/examples/opinions/united_states/2014/58950%20Dawson-Alamo%20I%20JV,%20LLC%201.17.14%20PUBLISHED.pdf", + "case_dates": "2024-01-25", + "case_names": "KUNJ Construction Corporation", + "download_urls": "/Portals/143/Decisions/2024/63240 KUNJ Construction Corporation 1.25.24 Decision.pdf?ver=4h4mjZ3FKnCeugWrxHOmPg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58950", - "judges": "Stempler" + "docket_numbers": "63240", + "judges": "McLish", + "case_name_shorts": "KUNJ Construction Corporation" }, { - "case_dates": "2014-01-16", - "case_names": "Northrop Grumman Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/57625%20Northrop%20Grumman%20Corporation%201.16.14%20PUBLISHED.pdf", + "case_dates": "2024-01-24", + "case_names": "TAE Aerospace, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=CIht_Q3aGAw%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57625", - "judges": "Delman" + "docket_numbers": "63574", + "judges": "Thrasher", + "case_name_shorts": "TAE Aerospace, Inc." }, { - "case_dates": "2014-01-15", - "case_names": "Hanley Industries, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58198%20Hanley%20Industries,%20Inc.%201.15.14%20PUBLISHED.pdf", + "case_dates": "2024-01-22", + "case_names": "MTS General Trading & Construction", + "download_urls": "/Portals/143/Decisions/2024/63521 MTS General Contracting 1.22.24 Decision.pdf?ver=UeJVNl09GfC3vhOUSi1iaQ%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58198", - "judges": "Melnick" + "docket_numbers": "63521", + "judges": "Arnett", + "case_name_shorts": "" }, { - "case_dates": "2014-01-15", - "case_names": "DooleyMack Constructors", - "download_urls": "tests/examples/opinions/united_states/2014/58595%20DooleyMack%20Constructors%201.15.14%20PUBLISHED.pdf", + "case_dates": "2024-01-22", + "case_names": "JE Dunn Construction Company", + "download_urls": "/Portals/143/Decisions/2024/63183 JE Dunn Construction Company 1.23.24 Decision.pdf?ver=4dS8B5Ghpq8UdC3njKdiPQ%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58595", - "judges": "Stempler" + "docket_numbers": "63183", + "judges": "McIlmail", + "case_name_shorts": "" }, { - "case_dates": "2014-01-15", - "case_names": "Daniel S. Sinclair, Callan E. Sinclair & Cayman C. Sinclair", - "download_urls": "tests/examples/opinions/united_states/2014/58308%20Daniel%20S.%20Sinclair,%20Callan%20E.%20Sinclair%20&%20Cayman%20C.%20Sinclair%201.15.14%20PUBLISHED.pdf", + "case_dates": "2024-01-16", + "case_names": "Honeywell International, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=fVjVRNWoRgo%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58308", - "judges": "Peacock" + "docket_numbers": "63636", + "judges": "Thrasher", + "case_name_shorts": "Honeywell International, Inc." }, { - "case_dates": "2014-01-14", - "case_names": "Garco Construction, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57796_57888%20Garco%20Construction,%20Inc.%201.14.14%20PUBLISHED.pdf", + "case_dates": "2024-01-16", + "case_names": "Conweb Mfg. Corp.", + "download_urls": "/Portals/143/Decisions/2024/63704 Conweb Mfg. Corp 1.16.24 Dismissal.pdf?ver=evvVEDeILwRYFwjQSCg3Yw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57796, 57888", - "judges": "Clarke" + "docket_numbers": "63704", + "judges": "Thrasher", + "case_name_shorts": "Conweb Mfg. Corp." }, { - "case_dates": "2014-01-13", - "case_names": "Pratt & Whitney Rocketdyne, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58307_58805%20Pratt%20&%20Whitney%20Rocketdyne,%20Inc.%201.13.14%20PUBLISHED.pdf", + "case_dates": "2024-01-16", + "case_names": "Chemring Sensors and Electronic Systems", + "download_urls": "/Portals/143/Decisions/2024/63460 Chmring Sensors and Electronic Systems 1.16.24 Dismissal.pdf?ver=wcNvj69p2s9a7wffLh5plA%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58307, 58805", - "judges": "Scott" + "docket_numbers": "63460", + "judges": "Arnett", + "case_name_shorts": "" }, { - "case_dates": "2014-01-09", - "case_names": "Shaw Environmental & Infrastructure, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58499%20et%20al.%20Shaw%20Environmental%20&%20Infrastructure,%20Inc.%201.9.14%20PUBLISHED.pdf", + "case_dates": "2024-01-12", + "case_names": "Orbis Sibro, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=_ZwJ_CejtZ0%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58499, 58500, 58501, 58502, 58503, 58504, 58505, 58506", - "judges": "Ting" + "docket_numbers": "63164, 63624", + "judges": "McNulty", + "case_name_shorts": "Orbis Sibro, Inc." }, { - "case_dates": "2014-01-09", - "case_names": "D. L. Withers Construction, LC", - "download_urls": "tests/examples/opinions/united_states/2014/58368%20D.L.%20Withers%20Construction,%20LC%201.9.14%20PUBLISHED.pdf", + "case_dates": "2024-01-11", + "case_names": "Derian, Inc.", + "download_urls": "/LinkClick.aspx?fileticket=KOSRM24UMBQ%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58368", - "judges": "Stempler" + "docket_numbers": "62957", + "judges": "Taylor", + "case_name_shorts": "Derian, Inc." }, { - "case_dates": "2014-01-09", - "case_names": "Baco Epik Metis, JV", - "download_urls": "tests/examples/opinions/united_states/2014/58540%20Baco%20Epik%20Metis,%20JV%201.9.14%20PUBLISHED.pdf", + "case_dates": "2024-01-11", + "case_names": "Aviation Training Consulting, LLC", + "download_urls": "/LinkClick.aspx?fileticket=5GTVPDtt1z0%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58540", - "judges": "Melnick" + "docket_numbers": "63634", + "judges": "McIlmail", + "case_name_shorts": "" }, { - "case_dates": "2014-01-08", - "case_names": "NOVA Technology Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/57783,%2057909%20NOVA%20Technology%20Corporation%201.8.14%20PUBLISHED.pdf", + "case_dates": "2024-01-10", + "case_names": "Bun-D", + "download_urls": "/Portals/143/Decisions/2024/63764 Bun-D 1.11.24 Dismissal.pdf?ver=aOalyo-CueszMus5i7VWzA%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57783, 57909", - "judges": "James" + "docket_numbers": "63764", + "judges": "McIlmail", + "case_name_shorts": "Bun-D" }, { - "case_dates": "2014-01-07", - "case_names": "Balad Alshemal Earth Company", - "download_urls": "tests/examples/opinions/united_states/2014/58590%20Balad%20Alshemal%20Earth%20Company%201.7.14%20PUBLISHED.pdf", + "case_dates": "2024-01-09", + "case_names": "Maruf Sharif Construction Company", + "download_urls": "/Portals/143/Decisions/2024/63650 Maruf Sharif Construction Company 1.9.24 Decision (Consent Judgment).pdf?ver=H1Tcxh7wDBDMJrvRBQT7YQ%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58590", - "judges": "Stempler" + "docket_numbers": "63650", + "judges": "Thrasher", + "case_name_shorts": "" }, { - "case_dates": "2014-01-07", - "case_names": "All Star Technical Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58668,%2058772%20All%20Star%20Technical%20Services,%20Inc.%201.7.14%20PUBLISHED.pdf", + "case_dates": "2024-01-08", + "case_names": "Red Star Enterprises Limited FZCO", + "download_urls": "/Portals/143/Decisions/2024/63253-ADR et al. Red Star Enterprises Limted FZCO 1.8.24 Dismissal.pdf?ver=uRmOFw-eLEUcMnD4S2uGJw%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58668, 58772", - "judges": "Thrasher" + "docket_numbers": "63253-ADR, 63260-ADR, 63308-ADR, 63368-ADR, 63609-ADR, 63610-ADR", + "judges": "McLish", + "case_name_shorts": "" }, { - "case_dates": "2014-01-06", - "case_names": "Teledyne Brown Engineering, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58636%20Teledyne%20Brown%20Engineering,%20Inc.%201.6.14%20PUBLISHED.pdf", + "case_dates": "2024-01-04", + "case_names": "Vectrus Systems Corporation", + "download_urls": "/Portals/143/Decisions/2024/63239 Vectrus Systems Corporation 1.4.24 Non-Disp Decision.pdf?ver=DH4a9mgBlE7Hz7azMDkMxg%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58636", - "judges": "Younger" + "docket_numbers": "63239", + "judges": "Eyester", + "case_name_shorts": "Vectrus Systems Corporation" }, { - "case_dates": "2014-01-03", - "case_names": "RLB Contracting, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/57638%20RLB%20Contracting,%20Inc.%201.3.14%20PUBLISHED.pdf", + "case_dates": "2024-01-03", + "case_names": "Sand Point Services, LLC", + "download_urls": "/LinkClick.aspx?fileticket=oQlkqyBzTwQ%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57638", - "judges": "Thrasher" + "docket_numbers": "61819, 61820", + "judges": "McIlmail", + "case_name_shorts": "" }, { - "case_dates": "2014-01-02", - "case_names": "Stephens Construction and Concrete, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58670%20Stephens%20Construction%20and%20Concrete,%20Inc.%201.2.14%20PUBLISHED.pdf", + "case_dates": "2024-01-03", + "case_names": "Government Training LLC", + "download_urls": "/Portals/143/Decisions/2024/63752 Government Training LLC 1.3.24 Dismissal.pdf?ver=g3N68pZjqMlcxLwNY3Nd8A%3d%3d", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58670", - "judges": "Grant" + "docket_numbers": "63752", + "judges": "Thrasher", + "case_name_shorts": "Government Training LLC" }, { - "case_dates": "2014-01-02", - "case_names": "Lockheed Martin Corporation", - "download_urls": "tests/examples/opinions/united_states/2014/58757%20Lockheed%20Martin%20Corporation%201.2.14%20PUBLISHED.pdf", + "case_dates": "2024-01-02", + "case_names": "ECC International Constructors, LLC", + "download_urls": "/LinkClick.aspx?fileticket=9wqTyyzqsBM%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58757", - "judges": "Stempler" + "docket_numbers": "59643", + "judges": "McIlmail", + "case_name_shorts": "" }, { - "case_dates": "2014-01-02", - "case_names": "Compusearch Software Systems, Inc.", - "download_urls": "tests/examples/opinions/united_states/2014/58769,%2058897%20Compusearch%20Software%20Systems,%20Inc.%201.2.14%20PUBLIHSED.pdf", + "case_dates": "2024-01-02", + "case_names": "ECC International Constructors, LLC", + "download_urls": "/LinkClick.aspx?fileticket=1XILgOSds4o%3d&portalid=143", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58769, 58897", - "judges": "Stempler" + "docket_numbers": "59586", + "judges": "McIlmail", + "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/asbca_example.html b/tests/examples/opinions/united_states/asbca_example.html index 062a676f4..7c4b3cb80 100644 --- a/tests/examples/opinions/united_states/asbca_example.html +++ b/tests/examples/opinions/united_states/asbca_example.html @@ -1,2975 +1,834 @@ - - - - -Armed Services Board of Contract Appeals +
+ - - - - - +
+ + + +
- - - - - - - - - - - - - - - - -
- - - - -
- -
-
-
-

Published Decisions - 2014

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Decision Date - ASBCA Number - Appellant/PetitionerJudge
- August -   -   
- August 28, 2014 - 59021, 59022, 59023, 59024, 59192, 59264 - - Direct Project, Inc. - Delman
- August 28, 2014 - 59079, 59080 - - Suffolk Construction Company - Newsom
- August 26, 2014 - 58610 - - ARINC Inc. - Stempler
- August 26, 2014 - 59197 - - Quimba Software, Inc. - Stempler
- August 26, 2014 - 59196 - - Quimba Software, Inc. - Stempler
- August 22, 2014 - 58586 - - TransWest Manufacturing, LLC - Page
- August 21, 2014 - 59109 - - Nodak Electric Power Cooperative, Inc. and Cavalier - Rural Electric Cooperative, Inc., JV - Stempler
- August 21, 2014 - 59117 - - Binghamton Simulator Company - Melnick
- August 21, 2014 - 59356 - - Grunley/Goel JV, LLC - Stempler
- August 19, 2014 - 56839 - - Family Entertainment Services, Inc. D/B/A/ IMC - Page
- August 19, 2014 - 58507 - - SERDI, LLC - Tunks
- August 19, 2014 - 59319 - - QuarterLine Consulting Services, LLC - Tunks
- August 18, 2014 - 58492 - - Kellogg Brown & Root Services, Inc. - Younger
- August 18, 2014 - 58577 - - Grounds Maintenance, Inc. - Dickinson
- August 18, 2014 - 58747 - - GSC Construction, Inc. - Peacock
- August 18, 2014 - 56711 - - Macro-Z Technology - James
- August 18, 2014 - 59454-948 - - Jaynes Corporation - Stempler
- August 13, 2014 - 58343 - - Environmental Safety Consultants, Inc. - Freeman
- August 13, 2014 - 59253 - - McGoldrick Construction Services Corporation - Dickinson
- August 13, 2014 - 59205 - - Bizhan Niazi Logistic Services Company - O'Sullivan
- August 12, 2014 - 58355, 59008 - - CCIE & Co. - Melnick
- August 12, 2014 - 56584 - - Hanley Industries, Inc. - Paul
- August 13, 2014 - 57206 - - Gilbane Building Company - James
- August 11, 2014 - 59339 - - M&H Enterprises, Inc. - Stempler
- August 11, 2014 - 58698, 58699, 58700, 58701, 58702, 58703, 58704, - 58705, 58706, 58707, 58708, 58709, 58710, 58711, - 58712, 58713, 58714, 58715, 58716, 58717, 58718, - 58719, 58720, 58721, 58722, 58723, 58724 - - James W. Ancel, Inc. - Stempler
- August 11, 2014 - 58605, 58615 - - Santa Barbara Infrared, Inc. - Stempler
- August 11, 2014 - 58357 - - L-3 Communications Corporation - Stempler
- August 7, 2014 - 59254 - - Commissioning Solutions Global, LLC - Lopes
- August 7, 2014 - 59206 - - Abdul Ahad Khadim Construction Company - Lopes
- August 7, 2014 - 58584 - - Synkera Technologies, Inc. - Ting
- August 6, 2014 - 56142, 56251 - - AEON Group, LLC - Dickinson
- August 6 ,2014 - 59067 - - Pros Cleaners - Lopes
- August 6, 2014 - 58386 - - Alpine Diversified, Inc. - Peacock
- August 5, 2014 - 59077 - - Northrop Grumman Corporation - Stempler
- August 4, 2014 - 57266 - - Distributed Solutions, Inc. - Clarke
- August 4, 2014 - 58416 - - Al Bahar Company - Mcilmail
- August 1, 2014 - 58214, 58215, 58216, 59231 - - Integrity Management Services, Inc. - Younger
- August 1, 2014 - 59032 - - PHA-JMR JVJames
- August 1, 2014 - 59295 - - W.J. Electric, LLCStempler
- July -   -   
- July 29, 2014 - 57521, 57522 - - Lockheed Martin Maritime Systems & Sensors - Stempler
- July 29, 2014 - 58063 - - Delta Engineering, Inc. - Peacock
- July 29, 2014 - 58340 - - American Ordnance LLC - Dickinson
- July 29, 2014 - 58447, 59010 - - Al-Muntakaa Company - Tunks
- July 29, 2014 - 58561, 58562, 58563, 58566, 58567 - - Linc Government Services, LLC - James
- July 29, 2014 - 58726, 58795 - - Polu Kai Services, LLC - Paul
- July 29, 2014 - 59292 - - Fluor Corporation - Stempler
- July 25, 2014 - 58343 - - Environmental Safety Consultants, Inc. - Freeman
- July 25, 2014 - 57814, 57964 - - PBS&J Constructors, Inc. - Scott
- July 24, 2014 - 57812 - - Trident Security Devices, Inc. - O'Connell
- July 23, 2014 - 58873 - - Raytheon Technical Services Company, LLC - Melnick
- July 23, 2014 - 59041 - - Lee's Ford Dock, Inc. - Clarke
- July 22, 2014 - 58023 - - MIC/CCS, Joint Venture - Scott
- July 22, 2014 - 57746, 58252 - - DODS, Inc. - Peacock
- July 21, 2014 - 58587 - - The Boeing Company - Wilson
- July 21, 2014 - 58315, 58316, 58317, 58318, 58319, 58320, 58549 - - ECC-RMA, LLC - Delman
- July 18, 2014 - 58578 - - Kellogg Brown & Root Services, Inc. - Younger
- July 18, 2014 - 58347, 58348, 58445, 58618 - - Metag Insaat Ticaret, A.S. - Hartman
- July 17, 2014 - 59204 - - Allison Transmission, Inc.Delman
- July 17, 2014 - 58914 - - The Boeing CompanyStempler
- July 17, 2014 - 58758 - - Lockheed Martin Services, Inc.Stempler
- July 15, 2014 - 58810 - - BAE Systems San Francisco Ship RepairTing
- July 15, 2014 - 59379 - - SSI Technology, Inc.Stempler
- July 15, 2014 - 59346 - - Dominion Virginia PowerWilliams
- July 11, 2014 - 59318-946 - - SoCo-Piedmont J.V., LLCStempler
- July 10, 2014 - 59342 - - Zalzar FZEStempler
- July 10, 2014 - 59341 - - Zalzar FZEStempler
- July 10, 2014 - 59340 - - Zalzar FZEStempler
- July 10, 2014 - 58375,58572 - - Classic Site Solutions, Inc. Clarke
- July 9, 2014 - 58858,58859,58860 - - The Boeing CompanyStempler
- July 9, 2014 - 59181 - - Iron Bow Technologies, LLCMcilmail
- July 9, 2014 - 58909 - - Lockheed Martin CorporationStempler
- July 8, 2014 - 58782 - - Certified Construction Company of Kentucky, LLC - Ting
- July 7, 2014 - 57148,57149,57599 - - Al Barih for General Contracting Ltd.Paul
- July 3, 2014 - 59143, 59279 - - Progressive Construction Company, LLCThrasher
- July 3, 2014 - 59004 - - POZ Engineering and Environmental Consulting - Tunks
- July 2, 2014 - 59321 - - Restaurants Hawaii, LLCStempler
- July 2, 2014 - 59163 - - CB&I Federal Services LLCStempler
- July 1, 2014 - 59161 - - Family Entertainment Services, Inc. D/B/A IMC - Freeman
- July 1, 2014 - 59271 - - Axxon International, LLCScott
- July 1, 2014 - 59127 - - Creek Services, LLCTunks
- June -   -   
- June 27, 2014 - 58232 - - Forrester Construction Company - Hartman
- June 27, 2014 - 58983 - - Forrester Construction Company - Hartman
- June 26, 2014 - 58376, 58573 - - Classic Site Solutions, Inc. - Clarke
- June 26, 2014 - 59033 - - Day & Zimmermann Hawthorne Corporation - Stempler
- June 26, 2014 - 58352 - - Automotive Management Services - Delman
- June 25, 2014 - 59012 - - Benetech, LLC - Stempler
- June 24, 2014 - 59217 - - The Boeing Company - Stempler
- June 23, 2014 - 58919, 58920 - - Exelis Systems Corporation - Stempler
- June 19, 2014 - 58809 - - BAE Systems San Francisco Ship Repair - Ting
- June 19, 2014 - 57831 - - Caddell Construction Co., Inc. - Page
- June 19, 2014 - 57313 - - Tzell Airtrak Travel Group Corporation - Tunks
- June 19, 2014 - 57286 - - TMS Envirocon, Inc. - James
- June 17, 2014 - 59062 - - Fluor Intercontinental, Inc. - Peacock
- June 17, 2014 - 58815 - - Dynamics Research Corporation - Peacock
- June 17, 2014 - 58596, 58597 - - DSE, Inc. - Stempler
- June 17, 2014 - 56358, 57151, 57327, 58559 - - Kellogg Brown & Root Services, Inc. - Freeman
- June 13, 2014 - 57513, 57514 - - Sigma Group International - Scott
- June 12, 2014 - 58778 - - New Iraq Ahd Company - Dickinson
- June 12, 2014 - 59174 - - Landmark Skate and Fun LLC - Clarke
- June 11, 2014 - 58928 - - The Timken Company - Stempler
- June 11, 2014 - 56578 - - Bruce E. Zoeller - Delman
- June 10, 2014 - 59065 - - Zomord Company - James
- June 10, 2014 - 58656, 58657 - - Facility Site Contractors, Inc. - Clarke
- June 9, 2014 - 59125 - - AL Wahej Al Lamea Company - Stempler
- June 9, 2014 - 59072 - - Tasty Snow LLC - Stempler
- June 9, 2014 - 58969 - - Glad's Original BBQ Express, LLC - Stempler
- June 9, 2014 - 58953 - - Patriot Pride Jewelry, LLC - Peacock
- June 9, 2014 - 58580, 58691 - - Superior Maritime Services, Inc. and Pacific - Maritime Freight, Inc. (d/b/a Pacific Tugboat - Service) Co-Venture - Peacock
- June 9, 2014 - 58129 - - Tele-Consultants, Inc. - Melnick
- June 6, 2014 - 59076 - - Leidos, Inc., f/k/a Science Applications - International Corporation - Melnick
- June 6, 2014 - 58997 - - ERSM (Afghanistan) Limited, d/b/a Edinburgh - International - Paul
- June 6, 2014 - 59198 - - L-3 Communications Link Simulation & Training - Stempler
- June 3, 2014 - 59179 - - International Promotional Ideas Inc.Stempler
- May - -
- May 29, 2014 - 58569 - - Laguna Construction Company, Inc.Delman
- May 28, 2014 - 59112 - - Triton Systems, Inc.Stempler
- May 28, 2014 - 57611 - - DayDanyon CorporationJames
- May 23, 2014 - 56447, 57719 - - Troy Eagle GroupWilson
- May 21, 2014 - 58985 - - Jaynes CorporationTunks
- May 14, 2014 - 58242 - - MIC/CCS, Joint VentureScott
- May 13, 2014 - 58853, 59004 - - POZ Engineering and Environmental Consulting - Tunks
- May 13, 2014 - 58457 - - C.R. Pittman Construction Company, Inc.Peacock
- May 13, 2014 - 58541, 58542, 58544, 58545 - - Guzar Mirbachakot Transportation - Stempler
- May 12, 2014 - 58517 - - The R.R. Gregory CorporationJames
- May 8, 2014 - 57638 - - RLB Contracting, Inc.Thrasher
- May 8, 2014 - 58200, 58201, 58202, 58203 - - Tresco, Inc. - Ting
- May 7, 2014 - 58589 - - Didlake, Inc.Hartman
- May 7, 2014 - 58956 - - The Boeing CompanyStempler
- May 7, 2014 - 58987 - - Lockheed Martin CorporationStempler
- May 7, 2014 - 58384 - - Teddy's Cool TreatsTunks
- May 7, 2014 - 57378 - - Sacramento Weed & Growth Regulators, Inc. - Delman
- May 6, 2014 - 59006 - - ATK Space Systems, Inc.Stempler
- May 5, 2014 - 58671 - - Ensign-Bickford Aerospace & Defense Company - Thrasher
- May 2, 2014 - 58278 - - Environmental Tectonics CorporationWilliams
- May 1, 2014 - 58970 - - Touchstone Research Laboratory, Ltd.Stempler
- April - -
- April 30, 2014 - 58898 - University of Louisville Research Foundation, Inc. - - Stempler
- April 29, 2014 - 59056 - EMTA Insaat A.S. - James
- April 29, 2014 - 57940, 57941 - - Hewlett-Packard Company - Thrasher
- April 29, 2104 - 58800 - New Iraq Ahd Company - Stempler
- April 28, 2014 - 58760 - Suh'dutsing Technologies, LLC - Delman
- April 25, 2014 - 58857 - - Balfour Beatty/McCarthy, Joint Venture - Stempler
- April 25, 2014 - 58667, 58695, 58839 - - Delta Industries, Inc. - Clarke
- April 25, 2014 - 57491, 57492 - - International Oil Trading CompanyFreeman
- April 24, 2014 - 59173 - - Beechcraft Defense CompanyStempler
- April 24, 2014 - 58792, 58793 - - S&L Enterprise, Inc. Melnick
- April 23, 2014 - 59059 - - Tokyo CompanyTing
- April 23, 2014 - 58941 - - TJC Engineering, Inc. Stempler
- April 23, 2014 - 58779 - - Maersk Line Limited, Inc. Peacock
- April 23, 2014 - 58632 - - Zara CompanyMelnick
- April 23, 2014 - 58251, 58305 - - Three Bullets, Inc. Melnick
- April 23, 2014 - 56758 - - American General Trading & Contracting, WLL - Melnick
- April 21, 2014 - 57280 - - Joe PhillipsScott
- April 18, 2014 - 59178 - - Lobar, Inc.Stempler
- April 17, 2014 - 58827, 58828 - - Puget Sound Environmental Corp.James
- April 17, 2014 - 59152 - - Lucius A. GilliamStempler
- April 15, 2014 - 59185 - - Defense Support Services LLCStempler
- April 15, 2014 - 58733 - - Duncan Aviation, Inc.Tunks
- April 11, 2014 - 59074 - - Dyno Group, Inc. Melnick
- April 11, 2014 - 58879 - - LinQuest CorporationStempler
- April 10, 2014 - 58078 - - Public Warehousing Company K.S.C.Ting
- April 8, 2014 - 59011 - - Technologists Inc.Stempler
- April 8, 2014 - 59068 - - Notation Supply ServicesStempler
- April 8, 2014 - 58196 - - Moore's Cafeteria Services, Ltd.Stempler
- April 4, 2014 - 59014 - - Thefaf Al-Rafidain Contracting Co.James
- April 4, 2014 - 58425 - - Esood Al Blad CompanyTunks
- April 4, 2014 - 57852 - - Fluor CorporationPeacock
- April 4, 2014 - 57750 - - A-1 Horton's Moving Service, Inc.Tunks
- April 1, 2014 - 58759 - - Coast/ACMStempler
- April 1, 2014 - 58556, 58557 - - Eyak Services, LLCMelnick
- April 1, 2014 - 58552, 58553, 58554, 58555 - - Eyak Technology, LLC - Melnick
- April 1, 2014 - 59140 - - G. A. Richards & Co., Inc.Stempler
- March -   -   
- March 27, 2014 - 57891, 57892, 57893, 57894, 58189, 58193 - - HTA Aviation, LLC - Page
- March 27, 2014 - 58026, 58750 - - World Rose CompanyThrasher
- March 26, 2014 - 58801 - - Taj Al Rajaa CompanyJames
- March 26, 2014 - 58560 - - Linc Government Services, LLCJames
- March 25, 2014 - 59130 - - Solpac Construction Inc., dba Soltek Pacific - Construction Company - Stempler
- March 25, 2014 - 58751 - - Rentfrow Inc.Stempler
- March 25, 2014 - 58631 - - Environmental Chemical CorporationStempler
- March 25, 2014 - 58246, 58247, 58248 - - IPICOM, Inc., dba IPITEK - Stempler
- March 24, 2014 - 58235 - - Singleton EnterprisesClarke
- March 24, 2014 - 58968 - - Magwood Services, Inc.Scott
- March 19, 2014 - 58693 - - The Boeing CompanyStempler
- March 19, 2014 - 58019, 58021, 58470, 58471, 58472, 58473, 58878 - - PKD, Inc. - Ting
- March 18, 2014 - 58063 - - Delta Engineering, Inc.Peacock
- March 18, 2014 - 58332 - - Mylene Will Company LLCYounger
- March 14, 2014 - 57316 - - CCI, Inc.Scott
- March 13, 2014 - 59124 - - Ohana Industries, Ltd.Page
- March 13, 2014 - 58984 - - Kellogg Brown & Root Services, Inc. Stempler
- March 13, 2014 - 58926 - - Kellogg Brown & Root Services, Inc.Stempler
- March 13, 2014 - 58661 - - Kellogg Brown & Root Services, Inc.Stempler
- March 13, 2014 - 58655 - - Angel Menendez Environmental Services, Inc. - Scott
- March 12, 2014 - 58353 - - Sadaf Petroleum Kabul, Ltd.Tunks
- March 11, 2014 - 59015 - - United TerexStempler
- March 11, 2014 - 58802, 58803 - - Stanley Associates, Inc.Stempler
- March 11, 2014 - 58797, 58798, 59083, 59084 - - Mayflower Communications Company, Inc. - Stempler
- March 11, 2014 - 58665 - - Advanced Technology Logistics, Inc.Stempler
- March 11, 2014 - 57735 - - Abkarr CorporationPage
- March 6, 2014 - 58419 - - Analex CorporationScott
- March 6, 2014 - 58072 - - Applied Technical Systems, Inc. Grant
- March 5, 2014 - 56257, 56337 - - CI², Inc.Delman
- March 5, 2014 - 58804 - - Fluor CorporationStempler
- March 5, 2014 - 58624 - - Green Jacket Contractors, LLCStempler
- March 4, 2014 - 58692 - - Gerald R. Rouillard III dba International Gear - Technologies - Thrasher
- March 4, 2014 - 58869 - - Exelis Inc., Information Systems DivisionStempler
- February - -
- February 27, 2014 - 58961 - - Thorpe Seeop Corporation - Stempler
- February 26, 2014 - 58846 - - Reagan Construction Corporation - Stempler
- February 25, 2014 - 58295, 58296, 58297, 58298, 58299, 58387, 58388, - 58389, 58390 - - Skanska USA Building, Inc. - Ting
- February 25, 2014 - 59061 - - Naher Al-Jabil Company - Stempler
- February 20, 2014 - 58937, 58938 - - Exelis Inc., Information Systems Division - Stempler
- February 19, 2014 - 57811 - - West Point Apparel Group, Inc. - Stempler
- February 19, 2014 - 59018 - - Towers Hawks Iraq Company For General Contracting - Ltd. - Stempler
- February 12, 2014 - 59075 - - Guam Industrial Services, Inc., d/b/a Guam Shipyard - Stempler
- February 12, 2014 - 58362 - - Golden Bay Construction CompanyStempler
- February 12, 2014 - 58449 - - Geosan Gae Jun Co., Ltd.Stempler
- February 12, 2014 - 58461 - - Jayco International, LLCClarke
- February 12, 2014 - 59137 - - Leidos, Inc., f/k/a Science Applications - International Corporation - Stempler
- February 11, 2014 - 57047, 57278, 57399 - - Washington Group/Alberici Joint Venture - Paul
- February 11, 2014 - 58826 - - Siemens Goverment Technologies, Inc.Stempler
- February 11, 2014 - 58120, 58219 - - Washington Security Group, Inc.Shackleford
- February 10, 2014 - 58645 - - FRASSON LODOVICO S.r.l.Shackleford
- February 7, 2014 - 59086 - - Looks Great Services, Inc.Stempler
- February 6, 2014 - 58517 - - The R.R. Gregory CorporationJames
- February 6, 2014 - 59013 - - Mongiovi & SonStempler
- February 5, 2014 - 58801 - - Taj Al Rajaa CompanyJames
- February 5, 2014 - 58764 - - QSS Group, Inc.Stempler
- February 5, 2014 - 59007-945 - - Commissioning Solutions Global, LLCStempler
- February 5, 2014 - 58523, 58524, 58525, 58526, 58527, 58528, 58529, - 58530 - - Pulliam Construction Company, Inc. - Stempler
- February 4, 2014 - 58675 - - Jaynes CorporationClarke
- January -   
- January 30, 2014 - 58314 - - EJB Facilities ServicesYounger
- January 29, 2014 - 59131 - - Autonomous Solutions, Inc.Stempler
- January 29, 2014 - 58851 - - Pathfinder Systems, Inc.Stempler
- January 29, 2014 - 58533 - - CP of Bozeman, Inc., dba Maintenance Patrol - Clarke
- January 29, 2014 - 57853 - - Tower One Construction Co.Scott
- January 28, 2014 - 51722 - - Environmental Safety Consultants, Inc.Freeman
- January 28, 2014 - 57406 - - Bulova Technologies Ordnance Systems LLC - Grant
- January 28, 2014 - 58746 - - Violet Dock Port, Inc., LLCStempler
- January 27, 2014 - 58006 - - CAE USA, Inc.Clarke
- January 24, 2014 - 58393 - - Hensel Phelps Construction CompanyYounger
- January 23, 2014 - 56572 - - G & C Enterprises, Inc.Lane
- January 23, 2014 - 55358 - - ADT Construction Group, Inc. by Timothy S. Cory, - Chapter 7 TrusteeShackleford
- January 23, 2014 - 57095, 57166 - - Safety Training Systems, Inc.Shackleford
- January 23, 2014 - 58847 - - Environmental Safety Consultants, Inc.Freeman
- January 22, 2014 - 58513 - - Kellogg Brown & Root Services, Inc.Stempler
- January 22, 2014 - 57611, 57681, 57717 - - DayDanyon CorporationJames
- January 17, 2014 - 58950 - - Dawson-Alamol JV, LLCStempler
- January 16, 2014 - 57625 - - Northrop Grumman CorporationDelman
- January 15, 2014 - 58595 - - DooleyMack ConstructorsStempler
- January 15, 2014 - 58308 - - Daniel S. Sinclair, Callan E. Sinclair & Cayman C. - SinclairPeacock
- January 15, 2014 - 58198 - - Hanley Industries, Inc. Melnick
- January 14, 2014 - 57796, 57888 - - Garco Construction, Inc.Clarke
- January 13, 2014 - 58307, 58805 - - Pratt & Whitney Rocketdyne, Inc.Scott
- January 9, 2014 - 58499, 58500, 58501, 58502, 58503, 58504, 58505, - 58506 - - Shaw Environmental & Infrastructure, Inc.Ting
- January 9, 2014 - 58540 - - Baco Epik Metis, JVMelnick
- January 9, 2014 - 58368 - - D. L. Withers Construction, LCStempler
- January 8, 2014 - 57783, 57909 - - NOVA Technology CorporationJames
- January 7, 2014 - 58590 - - Balad Alshemal Earth CompanyStempler
- January 7, 2014 - 58668, 58772 - - All Star Technical Services, Inc.Thrasher
- January 6, 2014 - 58636 - - Teledyne Brown Engineering, Inc.Younger
- January 3, 2014 - 57638 - - RLB Contracting, Inc. Thrasher
- January 2, 2014 - 58769, 58897 - - Compusearch Software Systems, Inc.Stempler
- January 2, 2014 - 58757 - - Lockheed Martin CorporationStempler
- January 2, 2014 - 58670 - - Stephens Construction and Concrete, Inc.Grant
-   -  
- - -
-
- -
- -
-
-

Additional Information

- -

 

-

Decisions

- -
-
-
 
- -
- - - - -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Decision DateASBCA NumberAppellant/PetitionerJudge
June   
June 18, 202463410-ADR, 63434-ADR, 63533-ADRMissouri Department of Social ServicesMelnick
June 18, 202463849Belt Built Contracting, LLCThrasher
June 13, 202463051Case Healthcare Solutions, Inc. d/b/a Case HCS of Reston, VirginiaWilson
June 12, 202462413, 62414Allard Nazarian Group, Inc. dba Granite State ManufacturingStinson
June 11, 202463788Red Bobtail TransportationMelnick
June 11, 202463789Red Bobtail TransportationMelnick
June 6, 202462876, 63616Shoreline Foundation, Inc.O'Connell
June 5, 202463357-ADRShayes, LLCArnett
June 4, 202463153Lacy Mechanical, Inc.Eyester
June 4, 202463617VSE CorporationThrasher
June 3, 202463783, 63784Red Bobtail TransportationMelnick
June 3, 202463828GSI Construction Corp.Melnick
May   
May 29, 202463571, 63572, 63573McCarthy HITT - Next NGA West JVMcLish
May 24, 202463747-ADRAVMAC LLCPage
May 23, 202463771Red Bobtail TransportationEyester
May 22, 202463465Vectrus Systems CorporationYoung
May 22, 202459419, 59420, 59615, 59618, 59619, 59675, 59676, 59683, 59830, 59863, 59867, 59872, 59879, 60024, 60250, 60309, 60365, 60832, 61069, 61294, 61319Supreme Foodservice GmbHO'Connell
May 16, 202463745Viasat, Inc.Thrasher
May 15, 202463664-ADRL3Harris Technologies Integrated Systems L.P.Arnett
May 14, 202463882Alithos Anesti, LLCThrasher
May 13, 202463743US Pan American Solutions, LLCWilson
May 10, 202463232The RAND CorporationMelnick
May 9, 202463235Herman JCG Co. JV¹Arnett
May 8, 202463795Novielli Boat Builders Inc.Thrasher
May 8, 202463683, 63692, 63693, 63694Product Data Integration Technologies, Inc. d/b/a ModulantThrasher
May 7, 202463336, 63337, 63338, 63339, 63340, 63341, 63342, 63343, 63344, 63345, 63551Jude and L Construction, LLCMcIlmail
May 7, 202462964GLJ, Inc.Stinson
May 7, 202462797, 62827Konecranes Nuclear Equipment & Services, LLCHerzfeld
May 6, 202463148Korte Construction CompanyStinson
May 3, 202463369-ADRWildflower International, Ltd.Sweet
May 2, 202463388, 63389, 63390, 63391Coppertop Enterprises, Inc.Smith
May 2, 202463442SBH Services & CORE Construction J/V II, LLCThrasher
May 1, 202461960Goodloe Marine, Inc.Prouty
April   
April 29, 202463069DLT Solutions, LLCSweet
April 29, 202463252, 63456, 63626A4 Construction Company, Inc.Taylor
April 29, 202463865Biscayne Contractors, Inc.Thrasher
April 26, 202463631Enfield Enterprises, Inc.McNulty
April 26, 202463768Ecology Mir Group, LLCEyester
April 22, 202463414Omran, Inc.Stinson
April 22, 202462209Lockheed Martin Aeronautics CompanyPage
April 17, 202463632Anderson Contracting, LLCMcLish
April 16, 202462817Marine Hydraulics International, LLCSweet
April 16, 202463184, 63185, 63186, 63187, 63256JE Dunn Construction CompanyMcIlmail
April 16, 202463455-ADR, 63557-ADRGibraltar-Caddell, a Joint VentureWoodrow
April 16, 202463259Research Analysis & Maintenance, Inc.D'Alessandris
April 16, 202461641-ADR, 61642-ADR, 61708-ADRPenna Group, LLCWoodrow
April 12, 202460309Supreme Foodservice GmbHO'Connell
April 12, 202463063-ADRSTG Pacific, LLCProuty
April 11, 202463386First Street Contractors, LLCThrasher
April 11, 202463861First Street Contractors, LLCThrasher
April 9, 202463859Mayflower Communications Company, Inc.Thrasher
April 4, 202463584Ecompex, Inc.Thrasher
April 4, 202463536-ADRSky Blue Builders, LLCWoodrow
April 3, 202463641, 63642, 63733, 63750, 63751, 63759, 63760, 63761, 63762North Wind Construction Services, LLCMelnick
April 3, 202463605The Sithe Group, LLC, dba TSG IndustriesWilson
April 3, 202461014Straub Driver, a Joint VentureMcNulty
March   
March 27, 202462833, 62857, 62880, 62915, 62911, 62860, 62885, 62879, 62878, 62914, 62922, 62910, 62918, 62884, 62863, 62923, 62864, 62865, 62912, 62881Gilbane FederalStinson
March 27, 202463708Inmarsat Government, Inc. Thrasher
March 27, 202462249, 62727Lockheed Martin Aeronautics CompanyMcLish
March 26, 202463793Burgos Group, LLCThrasher
March 26, 202463659Dublin Crossing, LLCEyester
March 26, 202463645Polaris Alpha, LLCMelnick
March 26, 202463315Polaris Alpha, LLCMelnick
March 25, 202461370Supreme Foodservice GmbHO'Connell
March 22, 202463007, 63008David Boland, Inc.Sweet
March 20, 202462981-ADR, 63298-ADRDelta Industries, Inc.Eyester
March 19, 202461879Pave-Tech Inc.Wilson
March 19, 202463248-ADRCAE USA, Inc.Herzfeld
March 18, 202463226, 63227Alpha Alps Construction Inc.McNulty
March 15, 202463769Wolverine Tube, Inc.Wilson
March 13, 202463629-ADRVectrus Systems CorporationArnett
March 12, 202463469SDC Contracting, Inc.Smith
March 7, 202463290ServeFed, Inc.Sweet
March 7, 202463515Woolpert, Inc.Wilson
March 7, 202463840JML Logistics LLCThrasher
March 7, 202463817-PETCalifornia Department of RehabilitationThrasher
March 7, 202463805Golden Manufacturing Co., Inc.Thrasher
March 6, 202463681, 63682, 63706Aviate Enterprises, Inc.Thrasher
March 4, 202463674, 63702, 63717Gilbane FederalWilson
March 4, 202463279Aviation Training Consulting, LLCMcIlmail
February   
February 28, 202463270North American Specialty Insurance CompanyThrasher
February 27, 202463189-ADRTrident E&P, LLCPage
February 22, 202463291The Haskell CompanyTaylor
February 21, 202463472-ADR, 63523-ADRVectrus Systems CorporationArnett
February 21, 202462366Koontz Electric Company, Inc.Thrasher
February 21, 202461575The Boeing CompanyO'Connell
February 20, 202463412Desbuild, Inc.McIlmail
February 20, 202463732Meggitt Safety Systems Inc.Stinson
February 15, 202463522MTS General Trading & Construction¹Arnett
February 13, 202462319Kandahar Mahali Transit & Forwarding LTD.O'Connell
February 13, 202462627Patricia I. Romero, Inc. dba Pacific West BuildersEyester
February 13, 202463565Heffler Contracting GroupMelnick
February 13, 202463548, 63549, 63641, 63642, 63733, 63750, 63751, 63759, 63760, 63761, 63762North Wind Construction Services, LLCMelnick
February 12, 202463758Wolf Creek Federal Services, Inc.Prouty
February 9, 202463581Tootle Construction, LLCHerzfeld
February 8, 202463560Gideon Contracting, LLCHerzfeld
February 6, 202463699-ADR, 63700-ADRObera LLCSweet
February 6, 202463806Kawasaki Rail Car, Inc.Prouty
February 5, 202463250, 63251, 63350Amentum Services, Inc.McIlmail
February 5, 202463210MDJ Contracting Inc.Herzfeld
February 5, 202462657, 62975, 63200BCI Construction USA, Inc.Stinson
February 2, 202462257Hamp's Construction LLCProuty
February 1, 202463191, 63346, 63347, 63348, 63502, 63503, 63504, 63505, 63506Walsh Federal Alberici Joint VentureMcLish
February 1, 202462484Tantara CorporationMcNulty
January   
January 31, 202462413, 62414Allard Nazarian Group, Inc. dba Granite State ManufacturingStinson
January 30, 202463625-ADRAccura-SoCo I JV, LLCArnett
January 30, 202463583Shipping Consultants Associated, Ltd.Thrasher
January 29, 202463525, 63643Dashti Sanat Logistics and General ContractingWilson
January 25, 202463240KUNJ Construction CorporationMcLish
January 25, 202463284Restoration Specialists, LLCMcLish
January 25, 202463483Yul Lim Construction Co., Ltd.Thrasher
January 25, 202463795-PETNovielli Boat Builders Inc.Wilson
January 24, 202463574TAE Aerospace, Inc.Thrasher
January 22, 202463183JE Dunn Construction CompanyMcIlmail
January 22, 202463521MTS General Trading & ConstructionArnett
January 16, 202463704Conweb Mfg. Corp.Thrasher
January 16, 202463636Honeywell International, Inc.Thrasher
January 16, 202463460Chemring Sensors and Electronic SystemsArnett
January 12, 202463164, 63624Orbis Sibro, Inc.McNulty
January 11, 202462957Derian, Inc.Taylor
January 11, 202463634Aviation Training Consulting, LLCMcIlmail
January 10, 202463764Bun-DMcIlmail
January 9, 202463650Maruf Sharif Construction CompanyThrasher
January 8, 202463253-ADR, 63260-ADR, 63308-ADR, 63368-ADR, 63609-ADR, 63610-ADRRed Star Enterprises Limited FZCOMcLish
January 4, 202463239Vectrus Systems CorporationEyester
January 3, 202461819, 61820Sand Point Services, LLCMcIlmail
January 3, 202463752Government Training LLCThrasher
January 2, 202459643ECC International Constructors, LLCMcIlmail
January 2, 202459586ECC International Constructors, LLCMcIlmail
- - \ No newline at end of file + +
\ No newline at end of file diff --git a/tests/examples/opinions/united_states/asbca_example_2.compare.json b/tests/examples/opinions/united_states/asbca_example_2.compare.json deleted file mode 100644 index b960a9131..000000000 --- a/tests/examples/opinions/united_states/asbca_example_2.compare.json +++ /dev/null @@ -1,1662 +0,0 @@ -[ - { - "case_dates": "2016-04-22", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2016/60184%20The%20Boeing%20Company%204.22.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60184", - "judges": "Stempler" - }, - { - "case_dates": "2016-04-22", - "case_names": "Manson Construction Company", - "download_urls": "tests/examples/opinions/united_states/2016/60157%20Manson%20Construction%20Company%204.22.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60157", - "judges": "Stempler" - }, - { - "case_dates": "2016-04-22", - "case_names": "L-3 Communications Integrated Systems, L.P.", - "download_urls": "tests/examples/opinions/united_states/2016/60407,%2060408%20L-3%20Communications%20Integrated%20Systems,%20L.P.%204.22.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60407, 60408", - "judges": "Stempler" - }, - { - "case_dates": "2016-04-22", - "case_names": "Jaynes Corporation", - "download_urls": "tests/examples/opinions/united_states/2016/59662%20Jaynes%20Corporation%204.22.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59662", - "judges": "Prouty" - }, - { - "case_dates": "2016-04-22", - "case_names": "Bushra Company", - "download_urls": "tests/examples/opinions/united_states/2016/59918%20Bushra%20Company%204.22.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59918", - "judges": "Prouty" - }, - { - "case_dates": "2016-04-21", - "case_names": "Safeco Insurance Company of America", - "download_urls": "tests/examples/opinions/united_states/2016/60103%20Safeco%20Insurance%20Company%20of%20Americal%204.21.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60103", - "judges": "Stempler" - }, - { - "case_dates": "2016-04-21", - "case_names": "MicroTechnologies, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/59911,%2059912%20MicroTechnologies,%20LLC%204.21.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59911, 59912", - "judges": "Melnick" - }, - { - "case_dates": "2016-04-21", - "case_names": "M.E.S., Inc. and Hirani Engineering & Land Surveying, P.C., d/b/a Hirani-MES, JV", - "download_urls": "tests/examples/opinions/united_states/2016/56474%20et%20al.%20M.E.S.,%20Inc.%20and%20Hirani%20Engineering%20&%20Land%20Surveying%20P.C.%20d-b-a%20Hirani-MES,%20JV%204.21.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 56474, 56475, 56477, 56729, 56756, 56918, 56919, 56920", - "judges": "Stempler" - }, - { - "case_dates": "2016-04-21", - "case_names": "General Dynamics C4 Systems", - "download_urls": "tests/examples/opinions/united_states/2016/60200%20General%20Dynamics%20%20C4%20Systems%204.21.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60200", - "judges": "Stempler" - }, - { - "case_dates": "2016-04-19", - "case_names": "Jim Black Construction Company", - "download_urls": "tests/examples/opinions/united_states/2016/59757%20Jim%20Black%20Construction%20Company%204.19.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59757", - "judges": "Hartman" - }, - { - "case_dates": "2016-04-19", - "case_names": "ACI-SCC JV", - "download_urls": "tests/examples/opinions/united_states/2016/58222%20et%20al.%20ACI-SCC%20JV%204.19.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58222, 58282, 58283, 58367, 58370, 58581", - "judges": "Hartman" - }, - { - "case_dates": "2016-04-18", - "case_names": "Torion Technologies, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59762%20Torion%20Technologies,%20Inc.%204.18.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59762", - "judges": "Prouty" - }, - { - "case_dates": "2016-04-15", - "case_names": "Rex Systems Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59624%20Rex%20Systems%20Inc.%204.15.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59624", - "judges": "Prouty" - }, - { - "case_dates": "2016-04-14", - "case_names": "Watts Webcor Obayashi, a Joint Venture", - "download_urls": "tests/examples/opinions/united_states/2016/59262%20Watts%20Webcor%20Obayashi,%20a%20Joint%20Venture%204.14.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59262", - "judges": "Stempler" - }, - { - "case_dates": "2016-04-14", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2016/59580%20The%20Boeing%20Company%204.14.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59580", - "judges": "Stempler" - }, - { - "case_dates": "2016-04-14", - "case_names": "Shneez Veritas LLC", - "download_urls": "tests/examples/opinions/united_states/2016/59844%20et%20al.%20Shneez%20Veritas%20LLC%204.14.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59844, 59845, 59846, 59847, 59848, 59849, 59850", - "judges": "Stempler" - }, - { - "case_dates": "2016-04-14", - "case_names": "Afghan Active Group (AAG)", - "download_urls": "tests/examples/opinions/united_states/2016/60387%20Afghan%20Active%20Group%20(AAG)%204.14.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60387", - "judges": "Prouty" - }, - { - "case_dates": "2016-04-12", - "case_names": "Vetco Contracting Services, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/60274,%2060417%20Vetco%20Contracting%20Services,%20LLC%204.12.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60274, 60417", - "judges": "Stempler" - }, - { - "case_dates": "2016-04-12", - "case_names": "RockCrest Investments, LLC d.b.a NewTech", - "download_urls": "tests/examples/opinions/united_states/2016/59285%20RockCrest%20Investments,%20LLC%20d.b.a%20NewTech%204.12.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59285", - "judges": "Newsom" - }, - { - "case_dates": "2016-04-06", - "case_names": "Third Coast Fresh Distribution, L.L.C.", - "download_urls": "tests/examples/opinions/united_states/2016/59696%20Third%20Coast%20Fresh%20Distribution,%20L.L.C..pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59696", - "judges": "Melnick" - }, - { - "case_dates": "2016-04-06", - "case_names": "Human Technologies Corp.", - "download_urls": "tests/examples/opinions/united_states/2016/59113%20Human%20Technologies%20Corp.%204.6.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59113", - "judges": "Stempler" - }, - { - "case_dates": "2016-04-06", - "case_names": "Great America Construction Company", - "download_urls": "tests/examples/opinions/united_states/2016/60325%20Great%20America%20Construction%20Company%204.6.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60325", - "judges": "Stempler" - }, - { - "case_dates": "2016-04-06", - "case_names": "554 Bloomfield LLC", - "download_urls": "tests/examples/opinions/united_states/2016/554%20Bloomfield%20LLC%204.6.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58819", - "judges": "Stempler" - }, - { - "case_dates": "2016-04-04", - "case_names": "THR Enterprises, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/58781%20THR%20Enterprises,%20Inc.%204.4.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58781", - "judges": "Scott" - }, - { - "case_dates": "2016-04-04", - "case_names": "Kiewit Building Group, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59789%20Kiewit%20Building%20Group%20Inc.%204.4.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59789", - "judges": "Scott" - }, - { - "case_dates": "2016-04-04", - "case_names": "Dellew Corporation", - "download_urls": "tests/examples/opinions/united_states/2016/58538%20Dellew%20Corporation%204.4.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58538", - "judges": "Page" - }, - { - "case_dates": "2016-04-01", - "case_names": "Global Engineering & Construction, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/60072%20et%20al.%20Global%20Engineering%20&%20Construction,%20LLC%204.1.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60072, 60073, 60074, 60075, 60076, 60077", - "judges": "Delman" - }, - { - "case_dates": "2016-03-30", - "case_names": "Highland Al Hujaz Co., Ltd.", - "download_urls": "tests/examples/opinions/united_states/2016/58243%20Highland%20Al%20Hujaz%20Co.,%20Ltd.%203.30.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58243", - "judges": "Thrasher" - }, - { - "case_dates": "2016-03-30", - "case_names": "Dawson-Alamo1 JV, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/60177%20Dawson-Alamo%201%20JV,%20LLC%203.30.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60177", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-30", - "case_names": "AeroVironment, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/58598,%2058599%20AeroVironment,%20Inc.%203.30.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58598, 58599", - "judges": "Peacock" - }, - { - "case_dates": "2016-03-29", - "case_names": "Raytheon Company", - "download_urls": "tests/examples/opinions/united_states/2016/57743,%2057798,%2058280%20Raytheon%20Company%203.29.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57743, 57798, 58280", - "judges": "Scott" - }, - { - "case_dates": "2016-03-29", - "case_names": "Patriot Construction, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/60078%20Patriot%20Construction,%20Inc.%203.29.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60078", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-29", - "case_names": "Kevin Diaz", - "download_urls": "tests/examples/opinions/united_states/2016/60369%20Kevin%20Diaz%203.29.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60369", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-25", - "case_names": "HK&S Construction Holding Corp.", - "download_urls": "tests/examples/opinions/united_states/2016/60164%20HK&S%20Construction%20Holding%20Corp.%203.25.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60164", - "judges": "McIlmail" - }, - { - "case_dates": "2016-03-25", - "case_names": "Contrack Watts, Inc., f/k/a Contrak International, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/60175%20Contrack%20Watts,%20Inc.,%20f-k-a%20Contrack%20International,%20Inc.%203.25.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60175", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-24", - "case_names": "Joseph Sottolano", - "download_urls": "tests/examples/opinions/united_states/2016/59081,%2060043%20Joseph%20Sottolano%203.24.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59081, 60043", - "judges": "McIlmail" - }, - { - "case_dates": "2016-03-24", - "case_names": "DynPort Vaccine Company, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/59298,%2060119%20DynPort%20Vaccine%20Company,%20LLC%203.24.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59298, 60119", - "judges": "Hartman" - }, - { - "case_dates": "2016-03-24", - "case_names": "Ahjar Shat Alarab Albidhaa Co.", - "download_urls": "tests/examples/opinions/united_states/2016/59868%20Ahjar%20Shat%20Alarab%20Albidhaa%20Co.%203.24.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59868", - "judges": "Delman" - }, - { - "case_dates": "2016-03-23", - "case_names": "Gulf Group, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/60333%20Gulf%20Group,%20Inc.%203.23.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60333", - "judges": "Hartman" - }, - { - "case_dates": "2016-03-23", - "case_names": "Goodwill Easter Seals of Miami Valley", - "download_urls": "tests/examples/opinions/united_states/2016/60329%20Goodwill%20Easter%20Seals%20of%20Miami%20Valley%203.23.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60329", - "judges": "Thrasher" - }, - { - "case_dates": "2016-03-23", - "case_names": "Atlantic Wire & Rigging, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/60033%20Atlantic%20Wire%20&%20Rigging,%20Inc.%203.23.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60033", - "judges": "Hartman" - }, - { - "case_dates": "2016-03-23", - "case_names": "American Technical Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/60295%20American%20Technical%20Services,%20Inc.%203.23.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60295", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-22", - "case_names": "River Ridge Development Authority", - "download_urls": "tests/examples/opinions/united_states/2016/58981%20River%20Ridge%20Development%20Authority%203.22.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58981", - "judges": "Clarke" - }, - { - "case_dates": "2016-03-22", - "case_names": "Engineering Solutions & Products, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/58633%20Engineering%20Solutions%20&%20Products,%20LLC%203.22.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58633", - "judges": "Paul" - }, - { - "case_dates": "2016-03-21", - "case_names": "Suodor Al-Khair Co - SAKCO for General Trading", - "download_urls": "tests/examples/opinions/united_states/2016/59036,%2059037%20Suodor%20Al-Khair%20Co%20-%20SAKCO%20for%20General%20Trading%203.21.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59036, 59037", - "judges": "Melnick" - }, - { - "case_dates": "2016-03-18", - "case_names": "Excellims Corporation", - "download_urls": "tests/examples/opinions/united_states/2016/60225%20Execellims%20Corporation%203.18.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60225", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-17", - "case_names": "Air Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59843%20Air%20Services,%20Inc.%203.17.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59843", - "judges": "Melnick" - }, - { - "case_dates": "2016-03-16", - "case_names": "Signature Elevator Company, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/60313%20Signatre%20Elevator%20Company,%20Inc.%203.16.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60313", - "judges": "Younger" - }, - { - "case_dates": "2016-03-16", - "case_names": "INDUS Corporation", - "download_urls": "tests/examples/opinions/united_states/2016/60166%20INDUS%20Corporation%203.16.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60166", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-16", - "case_names": "ECC-RMA, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/59990%20et%20al.%20ECC-RMA,%20LCC%203.16.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59990, 59993, 59995, 59997, 60151", - "judges": "Peacock" - }, - { - "case_dates": "2016-03-16", - "case_names": "Caddell/Whitesell-Green, A Joint Venture", - "download_urls": "tests/examples/opinions/united_states/2016/60206%20Caddle-Whitesell-Green,%20A%20Joint%20Venture%203.16.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60206", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-15", - "case_names": "Botach Tactical", - "download_urls": "tests/examples/opinions/united_states/2016/60234%20Botach%20Tactical%203.15.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60234", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-11", - "case_names": "Tepa EC, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/60489%20Tepa%20EC,%20LLC%203.11.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60489", - "judges": "Peacock" - }, - { - "case_dates": "2016-03-11", - "case_names": "Tepa EC, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/60458%20Tepa%20EC,%20LLC%203.11.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60458", - "judges": "Peacock" - }, - { - "case_dates": "2016-03-11", - "case_names": "SIA Construction, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/57693%20SIA%20Construction,%20Inc.%203.11.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57693", - "judges": "Wilson" - }, - { - "case_dates": "2016-03-11", - "case_names": "EDO Communications & Countermeasures Systems Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59223%20EDO%20Communications%20&%20Countermeasures%20System%20Inc.%203.11.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59223", - "judges": "Peacock" - }, - { - "case_dates": "2016-03-09", - "case_names": "RLM Communications, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/60324%20RLM%20Communications,%20Inc.%203.9.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60324", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-09", - "case_names": "Northrop Grumman Corporation", - "download_urls": "tests/examples/opinions/united_states/2016/59552%20Northrop%20Grumman%20Corporation%203.9.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59552", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-09", - "case_names": "ERKA Construction Co., Ltd.", - "download_urls": "tests/examples/opinions/united_states/2016/57618,%2058515%20ERKA%20Construction%20Co.,%20Ltd.%203.9.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57618, 58515", - "judges": "O'Connell" - }, - { - "case_dates": "2016-03-08", - "case_names": "VLOX, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/59305%20et%20al.%20VLOX,%20LLC%203.8.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59305, 59306, 59307, 59308, 59309, 59310", - "judges": "McIlmail" - }, - { - "case_dates": "2016-03-07", - "case_names": "Tessada & Associates, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59446%20Tessada%20&%20Associates,%20Inc.%203.7.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59446", - "judges": "Delman" - }, - { - "case_dates": "2016-03-07", - "case_names": "Marshall's Electric, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59749%20Marshall's%20Electric,%20Inc.%203.7.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59749", - "judges": "Delman" - }, - { - "case_dates": "2016-03-07", - "case_names": "Lee's Ford Dock, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59041%20Lee's%20Ford%20Dock,%20Inc.%203.7.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59041", - "judges": "Clarke" - }, - { - "case_dates": "2016-03-04", - "case_names": "Tech Projects, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/58789%20Tech%20Projects,%20LLC%203.4.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58789", - "judges": "Younger" - }, - { - "case_dates": "2016-03-04", - "case_names": "Monroe Infrared Technology", - "download_urls": "tests/examples/opinions/united_states/2016/60356%20Monroe%20Infrared%20Technology%203.4.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60356", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-03", - "case_names": "Omran Holding Group", - "download_urls": "tests/examples/opinions/united_states/2016/60004%20Omran%20Holding%20Group%203.3.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60004", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-03", - "case_names": "KBJ, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/58512%20KBJ,%20Inc.%203.3.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58512", - "judges": "Scott" - }, - { - "case_dates": "2016-03-03", - "case_names": "Dick Pacific Construction Company, Ltd.", - "download_urls": "tests/examples/opinions/united_states/2016/59064,%2059332,%2059334%20Dick%20Pacific%20Construction%20Company,%20Ltd.%203.3.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59064, 59332, 59334", - "judges": "Clarke" - }, - { - "case_dates": "2016-03-03", - "case_names": "Dick Pacific Construction Company, Ltd.", - "download_urls": "tests/examples/opinions/united_states/2016/57675%20et%20al.%20Dick%20Pacific%20Construction%20Company,%20Ltd.%203.3.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57675, 57806, 58149, 58150, 58151, 58174, 60474", - "judges": "Clarke" - }, - { - "case_dates": "2016-03-02", - "case_names": "Suffolk Construction Company, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59882%20Suffolk%20Construction%20Company,%20Inc.%203.2.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59882", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-02", - "case_names": "Framaco-Epik-Metis, JV", - "download_urls": "tests/examples/opinions/united_states/2016/60359-962%20et%20al.%20Framaco-Epik-Metis,%20JV%203.2.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60359-962, 60360-963, 60361-964, 60362-965, 60363-966", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-02", - "case_names": "Combat Support Associates", - "download_urls": "tests/examples/opinions/united_states/2016/58945,%2058946%20Combat%20Support%20Associates%203.2.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58945, 58946", - "judges": "McIlmail" - }, - { - "case_dates": "2016-03-01", - "case_names": "Sacred Power Corporation", - "download_urls": "tests/examples/opinions/united_states/2016/60083%20Sacred%20Power%20Corporation%203.1.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60083", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-01", - "case_names": "Northrop Grumman Corporation", - "download_urls": "tests/examples/opinions/united_states/2016/60390%20Northrop%20Grumman%20Corporation%203.1.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60390", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-01", - "case_names": "MicroTechnologies, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/60353%20MicroTechnologies,%20LLC%203.1.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60353", - "judges": "Paul" - }, - { - "case_dates": "2016-03-01", - "case_names": "George Hicks Construction, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59486%20George%20Hicks%20Construction,%20Inc.%203.1.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59486", - "judges": "Thrasher" - }, - { - "case_dates": "2016-03-01", - "case_names": "Defense Holdings, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/60116%20Defense%20Holdings,%20Inc.%203.1.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60116", - "judges": "Stempler" - }, - { - "case_dates": "2016-03-01", - "case_names": "Clean by Lucy, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/58432,%2058441,%2058442%20Clean%20by%20Lucy%203.1.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58432, 58441, 58442", - "judges": "Thrasher" - }, - { - "case_dates": "2016-02-24", - "case_names": "Military Aircraft Parts", - "download_urls": "tests/examples/opinions/united_states/2016/60290%20Military%20Aircraft%20Parts%202.24.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60290", - "judges": "O'Sullivan" - }, - { - "case_dates": "2016-02-24", - "case_names": "Kuryapi Insaat Taahhut Ve Ticaret Ltd St", - "download_urls": "tests/examples/opinions/united_states/2016/60405%20Kuryapi%20Insaat%20Taahhut%20Ve%20Ticaret%20Ltd%20St%202.24.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60405", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-24", - "case_names": "Kuryapi Insaat Taahhut Ve Ticaret Ltd St", - "download_urls": "tests/examples/opinions/united_states/2016/60404Kuryapi%20Insaat%20Taahhut%20Ve%20Ticaret%20Ltd%20St%202.24.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60404", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-23", - "case_names": "CACI International, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59799,%2059800%20CACI%20International%20Inc.%202.23.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59799, 59800", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-19", - "case_names": "Symetrics Industries, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/58001%20Symetrics%20Industries,%20LLC%202.19.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58001", - "judges": "Hartman" - }, - { - "case_dates": "2016-02-19", - "case_names": "Rawaat Algaidaa Co.", - "download_urls": "tests/examples/opinions/united_states/2016/59735%20Rawaat%20Algaidaa%20Co.%202.19.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59735", - "judges": "Younger" - }, - { - "case_dates": "2016-02-18", - "case_names": "Military Aircraft Parts", - "download_urls": "tests/examples/opinions/united_states/2016/60418%20Military%20Aircraft%20Parts%202.18.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60418", - "judges": "Paul" - }, - { - "case_dates": "2016-02-18", - "case_names": "Anwar Alsabah Company", - "download_urls": "tests/examples/opinions/united_states/2016/59881%20Anwar%20Alsabah%20Company%202.18.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59881", - "judges": "O'Connell" - }, - { - "case_dates": "2016-02-17", - "case_names": "SupplyCore, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/58676%20SupplyCore,%20Inc.%202.17.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58676", - "judges": "Wilson" - }, - { - "case_dates": "2016-02-17", - "case_names": "SoCo-Piedmont, J.V., LLC", - "download_urls": "tests/examples/opinions/united_states/2016/59666%20SoCo-Piedmont,%20J.V.,%20LLC%202.17.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59666", - "judges": "O'Sullivan" - }, - { - "case_dates": "2016-02-17", - "case_names": "SOC LLC (dba SOC Nevada LLC)", - "download_urls": "tests/examples/opinions/united_states/2016/59673,%2059674%20SOC%20LLC%20(dba%20SOC%20Nevada%20LLC)%202.17.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59673, 59674", - "judges": "Younger" - }, - { - "case_dates": "2016-02-17", - "case_names": "Laguna Construction Company, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59108%20Laguna%20Construction%20Company,%20Inc.%202.17.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59108", - "judges": "Delman" - }, - { - "case_dates": "2016-02-17", - "case_names": "Lael Al Sahab & Co.", - "download_urls": "tests/examples/opinions/united_states/2016/58346%20Lael%20Al%20Sahab%20&%20Co.%202.17.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58346", - "judges": "Melnick" - }, - { - "case_dates": "2016-02-16", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2016/59218%20The%20Boeing%20Company%202.16.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59218", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-12", - "case_names": "Ikhana LLC", - "download_urls": "tests/examples/opinions/united_states/2016/59981%20Ikhana%20LLC%202.12.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59981", - "judges": "O'Sullivan" - }, - { - "case_dates": "2016-02-11", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2016/59780%20The%20Boeing%20Company%202.11.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59780", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-10", - "case_names": "Blackhawk Ventures, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/59047%20Blackhawk%20Ventures,%20LLC%202.10.15.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59047", - "judges": "Page" - }, - { - "case_dates": "2016-02-10", - "case_names": "Aetna Government Health Plans", - "download_urls": "tests/examples/opinions/united_states/2016/60207%20Aetna%20Government%20Health%20Plans%202.10.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60207", - "judges": "McIlmail" - }, - { - "case_dates": "2016-02-09", - "case_names": "Shavers-Whittle Construction, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/60025%20Shavers-Whittle%20Construction,%20LLC%202.9.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60025", - "judges": "McIlmail" - }, - { - "case_dates": "2016-02-09", - "case_names": "Scale Structure/ARCC Joint Venture", - "download_urls": "tests/examples/opinions/united_states/2016/59026,%2059284%20Scale%20Structure-ARCC%20Joint%20Venture%202.9.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59026, 59284", - "judges": "Page" - }, - { - "case_dates": "2016-02-09", - "case_names": "Omnivox LLC", - "download_urls": "tests/examples/opinions/united_states/2016/60109%20Omnivox%20LLC%202.9.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60109", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-09", - "case_names": "Northrop Grumman Aerospace Systems", - "download_urls": "tests/examples/opinions/united_states/2016/59659%20Northrup%20Grumman%20Aerospace%20Systems%202.9.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59659", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-09", - "case_names": "Gas Turbine Engines, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59627%20Gas%20Turbine%20Engines,%20Inc.%202.9.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59627", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-09", - "case_names": "ENCO Industries, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59073,%2059150%20ENCO%20Industries,%20Inc.%202.9.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59073, 59150", - "judges": "Clarke" - }, - { - "case_dates": "2016-02-08", - "case_names": "Sulphur Springs Valley Electric Cooperative, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59802,%2059856,%2060016,%2060306%20Sulphur%20Springs%20Valley%20Electric%20Cooperative,%20Inc.%202.8.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59802, 59856, 60016, 60306", - "judges": "McIlmail" - }, - { - "case_dates": "2016-02-08", - "case_names": "Hanley Industries, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/58198%20Hanley%20Industries,%20Inc.%202.8.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58198", - "judges": "Melnick" - }, - { - "case_dates": "2016-02-08", - "case_names": "ADT Construction Group, Inc. by Timothy S. Cory, Chapter 7 Trustee", - "download_urls": "tests/examples/opinions/united_states/2016/57322%20ADT%20Construction%20Group,%20Inc.%20by%20Timothy%20S.%20Cory%202.8.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57322", - "judges": "Shackleford" - }, - { - "case_dates": "2016-02-08", - "case_names": "ADT Construction Group, Inc. by Timothy S. Cory, Chapter 7 Trustee", - "download_urls": "tests/examples/opinions/united_states/2016/55307%20ADT%20Construction%20Group,%20Inc.%20by%20Timothy%20S.%20Cory,%20Chapter%207%20Trustee%202.8.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 55307", - "judges": "Shackleford" - }, - { - "case_dates": "2016-02-04", - "case_names": "Technologists, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/58749,%2058836,%2058837%20Technologists,%20Inc.2.4.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58749, 58836, 58837", - "judges": "McIlmail" - }, - { - "case_dates": "2016-02-04", - "case_names": "Rick Garcia Construction Company", - "download_urls": "tests/examples/opinions/united_states/2016/59296%20Rick%20Garcia%20Construction%20Company%202.4.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59296", - "judges": "Peacock" - }, - { - "case_dates": "2016-02-04", - "case_names": "Military Aircraft Parts", - "download_urls": "tests/examples/opinions/united_states/2016/60290%20Military%20Aircraft%20Parts%202.4.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60290", - "judges": "O'Sullivan" - }, - { - "case_dates": "2016-02-04", - "case_names": "KBY International Construction Co.", - "download_urls": "tests/examples/opinions/united_states/2016/58574%20KBY%20International%20Construction%20Co.%202.4.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58574", - "judges": "Melnick" - }, - { - "case_dates": "2016-02-04", - "case_names": "International Automotriz", - "download_urls": "tests/examples/opinions/united_states/2016/59665%20International%20Automotriz%202.4.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59665", - "judges": "Newsom" - }, - { - "case_dates": "2016-02-03", - "case_names": "Wright Brothers Construction & Supplies", - "download_urls": "tests/examples/opinions/united_states/2016/60310%20Wright%20Brothers%20Construction%20&%20Supplies%202.3.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60310", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-03", - "case_names": "United States Technologies, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59862,%2060008%20United%20States%20Technologies,%20Inc.%202.3.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59862, 60008", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-03", - "case_names": "Thorpe See-Op Corporation", - "download_urls": "tests/examples/opinions/united_states/2016/58960,%2058961%20Thorpe%20See-Op%20Corporation%202.3.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58960, 58961", - "judges": "McIlmail" - }, - { - "case_dates": "2016-02-03", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2016/58916%20The%20Boeing%20Company%202.3.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58916", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-03", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2016/58915%20The%20Boeing%20Company%202.3.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58915", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-03", - "case_names": "S. Harman & Associates, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/60214%20S.%20Harman%20&%20Associates,%20Inc.%202.3.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60214", - "judges": "Prouty" - }, - { - "case_dates": "2016-02-03", - "case_names": "M+W High Tech Projects Israel Ltd", - "download_urls": "tests/examples/opinions/united_states/2016/59028%20M+W%20High%20Tech%20Projects%20Israel%20Ltd%202.3.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59028", - "judges": "Peacock" - }, - { - "case_dates": "2016-02-03", - "case_names": "Kellogg Brown & Root Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/58465%20Kellogg%20Brown%20&%20Root%202.3.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58465", - "judges": "Shackleford" - }, - { - "case_dates": "2016-02-02", - "case_names": "Utron, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59390,%2060127%20Utron,%20Inc.%202.2.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59390, 60127", - "judges": "Page" - }, - { - "case_dates": "2016-02-02", - "case_names": "Task Source/MPSC FEPP, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/59951%20Task%20Source-MPSC%20FEPP,%20LLC%202.2.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59951", - "judges": "Prouty" - }, - { - "case_dates": "2016-02-02", - "case_names": "RECO Rishad Engineering Construction ORG", - "download_urls": "tests/examples/opinions/united_states/2016/60156%20RECO%20Rishad%20Engineering%20Construction%20ORG%202.2.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60156", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-02", - "case_names": "Fluor Enterprises, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59134%20Fluor%20Enterprises,%20Inc.%202.2.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59134", - "judges": "Page" - }, - { - "case_dates": "2016-02-02", - "case_names": "Emerald Town Construction Group", - "download_urls": "tests/examples/opinions/united_states/2016/60318%20Emerald%20Town%20Construction%20Group%202.2.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60318", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-02", - "case_names": "Delta Engineering, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/58063%20Delta%20Engineering,%20Inc.%202.2.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58063", - "judges": "Peacock" - }, - { - "case_dates": "2016-02-02", - "case_names": "BAE Systems San Diego Ship Repair Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59859%20BAE%20Systems%20San%20Diego%20Ship%20Repair%20Inc.%202.2.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59859", - "judges": "Stempler" - }, - { - "case_dates": "2016-02-02", - "case_names": "BAE Systems San Diego Ship Repair Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59793%20BAE%20Systems%20San%20Diego%20Ship%20Repair%20Inc.%202.2.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59793", - "judges": "Stempler" - }, - { - "case_dates": "2016-01-28", - "case_names": "Toro Ventures, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/59883,%2060172%20Toro%20Ventures,%20LLC%201.28.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59883, 60172", - "judges": "O'Sullivan" - }, - { - "case_dates": "2016-01-28", - "case_names": "Douglas P. Fleming, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/59144%20et%20al.%20Douglas%20P.%20Fleming,%20LLC%201.28.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59144, 59145, 59146, 59147, 59148, 59158, 59159, 59182, 59183, 59229, 59274, 59275, 59276, 59277, 59290", - "judges": "Clarke" - }, - { - "case_dates": "2016-01-27", - "case_names": "Garco Construction, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/57796,%2057888%20Garco%20Construction,%20Inc.%201.27.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 57796, 57888", - "judges": "Clarke" - }, - { - "case_dates": "2016-01-21", - "case_names": "Ball Aerospace & Technologies Corp.", - "download_urls": "tests/examples/opinions/united_states/2016/58773,%2058774%20Ball%20Aerospace%20&%20Technologies%20Corp.%201.21.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58773, 58774", - "judges": "Stempler" - }, - { - "case_dates": "2016-01-21", - "case_names": "AeroVironment, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59693,%2059694%20Aero%20Vironment,%20Inc.%201.21.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59693, 59694", - "judges": "Peacock" - }, - { - "case_dates": "2016-01-20", - "case_names": "Potomac Construction Company, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/60326%20Potomac%20Construction%20Company,%20Inc.%201.20.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60326", - "judges": "Stempler" - }, - { - "case_dates": "2016-01-19", - "case_names": "The Life Eye Company", - "download_urls": "tests/examples/opinions/united_states/2016/58422%20The%20Life%20Eye%20Company%201.19.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58422", - "judges": "Younger" - }, - { - "case_dates": "2016-01-19", - "case_names": "RDA Contracting, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59626%20RDA%20Contracting,%20Inc.%201.19.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59626", - "judges": "Peacock" - }, - { - "case_dates": "2016-01-19", - "case_names": "Kellogg Brown & Root Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/58583%20Kellogg%20Brown%20&%20Root%20Services,%20Inc.%201.19.15.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58583", - "judges": "O'Sullivan" - }, - { - "case_dates": "2016-01-19", - "case_names": "Goodloe Marine, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/60038%20Goodloe%20Marine,%20Inc.%201.19.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60038", - "judges": "Stempler" - }, - { - "case_dates": "2016-01-19", - "case_names": "Femme Comp, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59066,%2059227,%2059228,%2060001%20Femme%20Comp,%20Inc.%201.19.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59066, 59227, 59228, 60001", - "judges": "Peacock" - }, - { - "case_dates": "2016-01-19", - "case_names": "Andy Phillips", - "download_urls": "tests/examples/opinions/united_states/2016/59045%20Andy%20Phillips%201.19.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59045", - "judges": "Thrasher" - }, - { - "case_dates": "2016-01-19", - "case_names": "Al Nawars Company", - "download_urls": "tests/examples/opinions/united_states/2016/59044%20Al%20Nawars%20Company%201.19.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59044", - "judges": "O'Sullivan" - }, - { - "case_dates": "2016-01-19", - "case_names": "Al Nawars Company", - "download_urls": "tests/examples/opinions/united_states/2016/59043%20Al%20Nawars%20Company%201.19.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59043", - "judges": "O'Sullivan" - }, - { - "case_dates": "2016-01-14", - "case_names": "General Dynamics C4 Systems", - "download_urls": "tests/examples/opinions/united_states/2016/60193%20General%20Dynamics%20C4%20Systems%201.14.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60193", - "judges": "Stempler" - }, - { - "case_dates": "2016-01-14", - "case_names": "Enola Contracting Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59526%20Enola%20Contracting%20Services,%20Inc.%201.14.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59526", - "judges": "McIlmail" - }, - { - "case_dates": "2016-01-13", - "case_names": "Rand Enterprises, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59801%20Rand%20Enterprises,%20Inc.%201.13.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59801", - "judges": "Stempler" - }, - { - "case_dates": "2016-01-13", - "case_names": "Optex Systems, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/58220%20Optex%20Systems,%20Inc.%201.13.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58220", - "judges": "O'Sullivan" - }, - { - "case_dates": "2016-01-13", - "case_names": "Operations Support Technologies, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/60252%20Operations%20Support%20Technologies,%20Inc.%201.13.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60252", - "judges": "Stempler" - }, - { - "case_dates": "2016-01-13", - "case_names": "Lewis Limited Consultants, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/59496%20Lewis%20Limited%20Consultants,%20LLC%201.13.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59496", - "judges": "Stempler" - }, - { - "case_dates": "2016-01-13", - "case_names": "Clauss Construction", - "download_urls": "tests/examples/opinions/united_states/2016/59333%20Clauss%20Construction%201.13.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59333", - "judges": "O'Sullivan" - }, - { - "case_dates": "2016-01-12", - "case_names": "Vistas Construction of Illinois, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/58479,%2058480,%2058481,%2058482,%2058483,%2058486,%2058487,%2058488%20Vistas%20Construction%20of%20Illinois,%20Inc.%201.12.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58479, 58480, 58481, 58482, 58483, 58486, 58487, 58488", - "judges": "O'Connell" - }, - { - "case_dates": "2016-01-12", - "case_names": "Relyant, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/58172%20Relyant,%20LLC%201.12.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58172", - "judges": "Prouty" - }, - { - "case_dates": "2016-01-11", - "case_names": "Tetra Tech EC, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59260,%2059482,%2059483%20Tetra%20Tech%20EC,%20Inc.%201.11.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59260, 59482, 59483", - "judges": "Thrasher" - }, - { - "case_dates": "2016-01-11", - "case_names": "Edinburgh International", - "download_urls": "tests/examples/opinions/united_states/2016/58864%20Edinburgh%20International%201.11.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58864", - "judges": "Thrasher" - }, - { - "case_dates": "2016-01-11", - "case_names": "BAE Systems San Francisco Ship Repair", - "download_urls": "tests/examples/opinions/united_states/2016/58809%20BAE%20Systems%20San%20Francisco%20Ship%20Repair%201.11.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58809", - "judges": "Ting" - }, - { - "case_dates": "2016-01-11", - "case_names": "ANHAM FZCO, LLC", - "download_urls": "tests/examples/opinions/united_states/2016/59000%20ANHAM%20FZCO,%20LLC%201.11.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59000", - "judges": "Thrasher" - }, - { - "case_dates": "2016-01-08", - "case_names": "Baghdadi Swords Company", - "download_urls": "tests/examples/opinions/united_states/2016/59063%20Baghdadi%20Swords%20Company%201.8.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59063", - "judges": "Stempler" - }, - { - "case_dates": "2016-01-07", - "case_names": "Patriot Construction, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59752%20Patriot%20Construction,%20Inc.%201.7.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59752", - "judges": "Newsom" - }, - { - "case_dates": "2016-01-07", - "case_names": "K-Con, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/59320,%2059651%20K-Con,%20Inc.%201.7.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59320, 59651", - "judges": "Newsom" - }, - { - "case_dates": "2016-01-07", - "case_names": "Jeffrey C. Stone Inc., d.b.a. Summit Builders", - "download_urls": "tests/examples/opinions/united_states/2016/58372%20Jeffrey%20C.%20Inc.,%20d.b.a.%20Summit%20Builders%201.7.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58372", - "judges": "Scott" - }, - { - "case_dates": "2016-01-07", - "case_names": "Fardaye Roshan Logistics & Supply Company", - "download_urls": "tests/examples/opinions/united_states/2016/60247%20Fardaye%20Roshan%20Logistics%20&%20Supply%20Company%201.7.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60247", - "judges": "Newsom" - }, - { - "case_dates": "2016-01-07", - "case_names": "Exelis Federal Services GmbH", - "download_urls": "tests/examples/opinions/united_states/2016/59588%20Exelis%20Federal%20Services%20GmbH%201.7.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59588", - "judges": "Scott" - }, - { - "case_dates": "2016-01-06", - "case_names": "Shafi Nasimi Construction and Logistics Company", - "download_urls": "tests/examples/opinions/united_states/2016/59916%20Shafi%20Nasimi%20Construction%20and%20Logistics%20Company%201.6.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59916", - "judges": "Delman" - }, - { - "case_dates": "2016-01-05", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2016/58617%20The%20Boeing%20Company%201.5.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58617", - "judges": "Younger" - }, - { - "case_dates": "2016-01-05", - "case_names": "Strobe Data, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/60123%20Strobe%20Data,%20Inc.%201.5.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 60123", - "judges": "Delman" - }, - { - "case_dates": "2016-01-04", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2016/59611%20The%20Boeing%20Company%201.4.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 59611", - "judges": "Stempler" - }, - { - "case_dates": "2016-01-04", - "case_names": "The Boeing Company", - "download_urls": "tests/examples/opinions/united_states/2016/58974%20The%20Boeing%20Company%201.4.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58974", - "judges": "Stempler" - }, - { - "case_dates": "2016-01-04", - "case_names": "AMEC Environment & Infrastructure, Inc.", - "download_urls": "tests/examples/opinions/united_states/2016/58948%20AMEC%20Environmental%20&%20Infrastructure,%20Inc.%201.4.16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ASBCA No. 58948", - "judges": "O'Connell" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/asbca_example_2.html b/tests/examples/opinions/united_states/asbca_example_2.html deleted file mode 100644 index 0e03c6433..000000000 --- a/tests/examples/opinions/united_states/asbca_example_2.html +++ /dev/null @@ -1,1971 +0,0 @@ - - - - - -Armed Services Board of Contract Appeals - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- -
-
-
-

Please note:  The Board's decisions are not - published on this website on the date of issuance.  Decisions are - issued first to the representatives of the parties involved in the - matter and are published after a minimum of 10 days have elapsed - from the date of the decision.  - Occasionally, for administrative reasons, a decision will not be - published until several weeks after the decision date.  Parties - should not rely on the website publication date when calculating - dates for filing motions for reconsideration, appeals, or other - matters. -

Published Decisions - 2016

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Decision Date - ASBCA Number - Appellant/PetitionerJudge
- April -   -   
- April 22, 2016 - 60407, 60408 - - L-3 Communications Integrated Systems, L.P. - Stempler
- April 22, 2016 - 60184 - - The Boeing Company - Stempler
- April 22, 2016 - 60157 - - Manson Construction Company - Stempler
- April 22, 2016 - 59918 - - Bushra Company - Prouty
- April 22, 2016 - 59662 - - Jaynes Corporation - Prouty
- April 21, 2016 - 60200 - - General Dynamics C4 Systems - Stempler
- April 21, 2016 - 60103 - - Safeco Insurance Company of America - Stempler
- April 21, 2016 - 59911, 59912 - - MicroTechnologies, LLC - Melnick
- April 21, 2016 - 56474, 56475, 56477, 56729, 56756, 56918, 56919, - 56920 - - M.E.S., Inc. and Hirani Engineering & Land - Surveying, P.C., d/b/a Hirani-MES, JV - Stempler
- April 19, 2016 - 59757 - - Jim Black Construction Company - Hartman
- April 19, 2016 - 58222, 58282, 58283, 58367, 58370, 58581 - - ACI-SCC JV - Hartman
- April 18, 2016 - 59762 - - Torion Technologies, Inc. - Prouty
- April 15, 2016 - 59624 - - Rex Systems Inc. - Prouty
- April 14, 2016 - 59844, 59845, 59846, 59847, 59848, 59849, 59850 - - Shneez Veritas LLC - Stempler
- April 14, 2016 - 59262 - - Watts Webcor Obayashi, a Joint Venture - Stempler
- April 14, 2016 - 59580 - - The Boeing Company - Stempler
- April 14, 2016 - 60387 - - Afghan Active Group (AAG) - Prouty
- April 12, 2016 - 60274, 60417 - - Vetco Contracting Services, LLC - Stempler
- April 12, 2016 - 59285 - - RockCrest Investments, LLC d.b.a NewTech - Newsom
- April 6, 2016 - 59696 - - Third Coast Fresh Distribution, L.L.C. - Melnick
- April 6, 2016 - 58819 - - 554 Bloomfield LLC - Stempler
- April 6, 2016 - 60325 - - Great America Construction Company - Stempler
- April 6, 2016 - 59113 - - Human Technologies Corp. - Stempler
- April 4, 2016 - 58781 - - THR Enterprises, Inc. - Scott
- April 4, 2016 - 59789 - - Kiewit Building Group, Inc. - Scott
- April 4, 2016 - 58538 - - Dellew Corporation - Page
- April 1, 2016 - 60072, 60073, 60074, 60075, 60076, 60077 - - Global Engineering & Construction, LLC - Delman
- March -   -   
- March 30, 2016 - 60177 - - Dawson-Alamo1 JV, LLC - Stempler
- March 30, 2016 - 58598, 58599 - - AeroVironment, Inc. - Peacock
- March 30, 2016 - 58243 - - Highland Al Hujaz Co., Ltd. - Thrasher
- March 29, 2016 - 60369 - - Kevin Diaz - Stempler
- March 29, 2016 - 60078 - - Patriot Construction, Inc. - Stempler
- March 29, 2016 - 57743, 57798, 58280 - - Raytheon Company - Scott
- March 25, 2016 - 60175 - - Contrack Watts, Inc., f/k/a Contrak International, - Inc. - Stempler
- March 25, 2016 - 60164 - - HK&S Construction Holding Corp. - McIlmail
- March 24, 2016 - 59868 - - Ahjar Shat Alarab Albidhaa Co. - Delman
- March 24, 2016 - 59298, 60119 - - DynPort Vaccine Company, LLC - Hartman
- March 24, 2016 - 59081, 60043 - - Joseph Sottolano - McIlmail
- March 23, 2016 - 60333 - - Gulf Group, Inc. - Hartman
- March 23, 2016 - 60329 - - Goodwill Easter Seals of Miami Valley - Thrasher
- March 23, 2016 - 60295 - - American Technical Services, Inc. - Stempler
- March 23, 2016 - 60033 - - Atlantic Wire & Rigging, Inc. - Hartman
- March 22, 2016 - 58633 - - Engineering Solutions & Products, LLC - Paul
- March 22, 2016 - 58981 - - River Ridge Development Authority - Clarke
- March 21, 2016 - 59036, 59037 - - Suodor Al-Khair Co - SAKCO for General Trading - Melnick
- March 18, 2016 - 60225 - - Excellims Corporation - Stempler
- March 17, 2016 - 59843 - - Air Services, Inc. - Melnick
- March 16, 2016 - 59990, 59993, 59995, 59997, 60151 - - ECC-RMA, LLC - Peacock
- March 16, 2016 - 60166 - - INDUS Corporation - Stempler
- March 16, 2016 - 60206 - - Caddell/Whitesell-Green, A Joint Venture - Stempler
- March 16, 2016 - 60313 - - Signature Elevator Company, Inc. - Younger
- March 15, 2016 - 60234 - - Botach Tactical - Stempler
- March 11, 2016 - 57693 - - SIA Construction, Inc. - Wilson
- March 11, 2016 - 59223 - - EDO Communications & Countermeasures Systems Inc. - Peacock
- March 11, 2016 - 60489 - - Tepa EC, LLC - Peacock
- March 11, 2016 - 60458 - - Tepa EC, LLC - Peacock
- March 9, 2016 - 57618, 58515 - - ERKA Construction Co., Ltd. - O'Connell
- March 9, 2016 - 59552 - - Northrop Grumman Corporation - Stempler
- March 9, 2016 - 60324 - - RLM Communications, Inc. - Stempler
- March 8, 2016 - 59305, 59306, 59307, 59308, 59309, 59310 - - VLOX, LLC - McIlmail
- March 7, 2016 - 59446 - - Tessada &  Associates, Inc. - Delman
- March 7, 2016 - 59749 - - Marshall's Electric, Inc. - Delman
- March 7, 2016 - 59041 - - Lee's Ford Dock, Inc. - Clarke
- March 4, 2016 - 58789 - - Tech Projects, LLC - Younger
- March 4, 2016 - 60356 - - Monroe Infrared Technology - Stempler
- March 3, 2016 - 59064, 59332, 59334 - - Dick Pacific Construction Company, Ltd. - Clarke
- March 3, 2016 - 60004 - - Omran Holding Group - Stempler
- March 3, 2016 - 57675, 57806, 58149, 58150, 58151, 58174, 60474 - - Dick Pacific Construction Company, Ltd. - Clarke
- March 3, 2016 - 58512 - KBJ, - Inc.Scott
- March 2, 2016 - 59882 - - Suffolk Construction Company, Inc.Stempler
- March 2, 2016 - 60359-962, 60360-963, 60361-964, 60362-965, - 60363-966 - - Framaco-Epik-Metis, JV - Stempler
- March 2, 2016 - 58945, 58946 - - Combat Support AssociatesMcIlmail
- March 1, 2016 - 59486 - - George Hicks Construction, Inc.Thrasher
- March 1, 2016 - 60353 - - MicroTechnologies, LLCPaul
- March 1, 2016 - 60116 - - Defense Holdings, Inc.Stempler
- March 1, 2016 - 60390 - - Northrop Grumman CorporationStempler
- March 1, 2016 - 60083 - - Sacred Power CorporationStempler
- March 1, 2016 - 58432, 58441, 58442 - - Clean by Lucy, Inc. - Thrasher
- February -   -   
- February 24, 2016 - 60405 - - Kuryapi Insaat Taahhut Ve Ticaret Ltd StStempler
- February 24, 2016 - 60404 - - Kuryapi Insaat Taahhut Ve Ticaret Ltd StStempler
- February 24, 2016 - 60290 - - Military Aircraft PartsO'Sullivan
- February 23, 2016 - 59799, 59800 - - CACI International, Inc.Stempler
- February 19, 2016 - 58001 - - Symetrics Industries, LLCHartman
- February 19, 2016 - 59735 - - Rawaat Algaidaa Co.Younger
- February 18, 2016 - 59881 - - Anwar Alsabah CompanyO'Connell
- February 18, 2016 - 60418 - - Military Aircraft PartsPaul
- February 17, 2016 - 58346 - - Lael Al Sahab & Co.Melnick
- February 17, 2016 - 58676 - - SupplyCore, Inc.Wilson
- February 17, 2016 - 59108 - - Laguna Construction Company, Inc.Delman
- February 17, 2016 - 59666 - - SoCo-Piedmont, J.V., LLCO'Sullivan
- February 17, 2016 - 59673, 59674 - - SOC LLC (dba SOC Nevada LLC)Younger
- February 16, 2016 - 59218 - - The Boeing CompanyStempler
- February 12, 2016 - 59981 - - Ikhana LLCO'Sullivan
- February 11, 2016 - 59780 - - The Boeing CompanyStempler
- February 10, 2016 - 59047 - - Blackhawk Ventures, LLCPage
- February 10, 2016 - 60207 - - Aetna Government Health PlansMcIlmail
- February 9, 2016 - 59026, 59284 - - Scale Structure/ARCC Joint VenturePage
- February 9, 2016 - 59073, 59150 - - ENCO Industries, Inc.Clarke
- February 9, 2016 - 59627 - - Gas Turbine Engines, Inc.Stempler
- February 9, 2016 - 59659 - - Northrop Grumman Aerospace SystemsStempler
- February 9, 2016 - 60025 - - Shavers-Whittle Construction, LLCMcIlmail
- February 9, 2016 - 60109 - - Omnivox LLCStempler
- February 8, 2016 - 57322 - - ADT Construction Group, Inc. by Timothy S. Cory, - Chapter 7 Trustee - Shackleford
- February 8, 2016 - 55307 - - ADT Construction Group, Inc. by Timothy S. Cory, - Chapter 7 Trustee - Shackleford
- February 8, 2016 - 58198 - - Hanley Industries, Inc.Melnick
- February 8. 2016 - 59802, 59856, 60016, 60306 - - Sulphur Springs Valley Electric Cooperative, Inc. - McIlmail
- February 4, 2016 - 58749, 58836, 58837 - - Technologists, Inc. - McIlmail
- February 4, 2016 - 58574 - - KBY International Construction Co. - Melnick
- February 4, 2016 - 59665 - - International Automotriz - Newsom
- February 4, 2016 - 59296 - - Rick Garcia Construction Company - Peacock
- February 4, 2016 - 60290 - - Military Aircraft Parts - O'Sullivan
- February 3, 2016 - 58915 - - The Boeing Company - Stempler
- February 3, 2016 - 58916 - - The Boeing Company - Stempler
- February 3, 2016 - 58960, 58961 - - Thorpe See-Op Corporation - McIlmail
- February 3, 2016 - 59028 - - M+W High Tech Projects Israel Ltd - Peacock
- February 3, 2016 - 59862, 60008 - - United States Technologies, Inc. - Stempler
- February 3, 2016 - 60214 - - S. Harman & Associates, Inc. - Prouty
- February 3, 2016 - 60310 - - Wright Brothers Construction & Supplies - Stempler
- February 3, 2016 - 58465 - - Kellogg Brown & Root Services, Inc. - Shackleford
- February 2, 2016 - 58063 - - Delta Engineering, Inc. - Peacock
- February 2, 2016 - 59134 - - Fluor Enterprises, Inc. - Page
- February 2, 2016 - 59390, 60127 - - Utron, Inc. - Page
- February 2, 2016 - 59793 - - BAE Systems San Diego Ship Repair Inc. - Stempler
- February 2, 2016 - 59859 - - BAE Systems San Diego Ship Repair Inc. - Stempler
- February 2, 2016 - 59951 - - Task Source/MPSC FEPP, LLC - Prouty
- February 2, 2016 - 60156 - - RECO Rishad Engineering Construction ORG - Stempler
- February 2, 2016 - 60318 - - Emerald Town Construction Group - Stempler
- January -   -   
- January 28, 2016 - 59883, 60172 - - Toro Ventures, LLCO'Sullivan
- January 28, 2016 - 59144, 59145, 59146, 59147, 59148, 59158, 59159, - 59182, 59183, 59229, 59274, 59275, 59276, 59277, - 59290 - - Douglas P. Fleming, LLC - Clarke
- January 27, 2016 - 57796, 57888 - - Garco Construction, Inc.Clarke
- January 21, 2016 - 59693, 59694 - - AeroVironment, Inc.Peacock
- January 21, 2016 - 58773, 58774 - - Ball Aerospace & Technologies Corp.Stempler
- January 20, 2016 - 60326 - - Potomac Construction Company, Inc.Stempler
- January 19, 2016 - 60038 - - Goodloe Marine, Inc.Stempler
- January 19, 2016 - 59626 - - RDA Contracting, Inc.Peacock
- January 19, 2016 - 59066, 59227, 59228, 60001 - - Femme Comp, Inc. - Peacock
- January 19, 2016 - 59045 - - Andy PhillipsThrasher
- January 19, 2016 - 59044 - - Al Nawars CompanyO'Sullivan
- January 19, 2016 - 59043 - - Al Nawars CompanyO'Sullivan
- January 19, 2016 - 58583 - - Kellogg Brown & Root Services, Inc.O'Sullivan
- January 19, 2016 - 58422 - - The Life Eye CompanyYounger
- January 14, 2016 - 60193 - - General Dynamics C4 SystemsStempler
- January 14, 2016 - 59526 - - Enola Contracting Services, Inc.McIlmail
- January 13, 2016 - 60252 - - Operations Support Technologies, Inc.Stempler
- January 13, 2016 - 59801 - - Rand Enterprises, Inc.Stempler
- January 13, 2016 - 59333 - - Clauss ConstructionO'Sullivan
- January 13, 2016 - 59496 - - Lewis Limited Consultants, LLCStempler
- January 13, 2016 - 58220 - - Optex Systems, Inc.O'Sullivan
- January 12, 2016 - 58479, 58480, 58481, 58482, 58483, 58486, 58487, - 58488 - - Vistas Construction of Illinois, Inc. - O'Connell
- January 12, 2016 - 58172 - - Relyant, LLCProuty
- January 11, 2016 - 59000 - - ANHAM FZCO, LLCThrasher
- January 11, 2016 - 59260, 59482, 59483 - - Tetra Tech EC, Inc. - Thrasher
- January 11, 2016 - 58864 - - Edinburgh InternationalThrasher
- January 11, 2016 - 58809 - - BAE Systems San Francisco Ship RepairTing
- January 8, 2016 - 59063 - - Baghdadi Swords CompanyStempler
- January 7, 2016 - 58372 - - Jeffrey C. Stone Inc., d.b.a. Summit Builders - Scott
- January 7, 2016 - 59588 - - Exelis Federal Services GmbHScott
- January 7, 2016 - 59320, 59651 - - K-Con, Inc. - Newsom
- January 7, 2016 - 59752 - - Patriot Construction, Inc.Newsom
- January 7, 2016 - 60247 - - Fardaye Roshan Logistics & Supply Company - Newsom
- January 6, 2016 - 59916 - - Shafi Nasimi Construction and Logistics Company - Delman
- January 5, 2016 - 58617 - - The Boeing CompanyYounger
- January 5, 2016 - 60123 - - Strobe Data, Inc.Delman
- January 4, 2016 - 58974 - - The Boeing CompanyStempler
- January 4, 2016 - 58948 - - AMEC Environment & Infrastructure, Inc.O'Connell
- January 4, 2016 - 59611 - - The Boeing CompanyStempler
- - -
-
- -
- - -
 
- -
- - - - -
-
- - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/bap1_example.compare.json b/tests/examples/opinions/united_states/bap1_example.compare.json new file mode 100644 index 000000000..1db6d0bec --- /dev/null +++ b/tests/examples/opinions/united_states/bap1_example.compare.json @@ -0,0 +1,134 @@ +[ + { + "case_dates": "2023-10-11", + "case_names": "Jodie Byrne v.", + "download_urls": "https://www.bap1.uscourts.gov/sites/bap1/files/bap.pdf.opinions/23-004U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "BAP No. EB 23-004", + "lower_courts": "Bankrupcty Court of ME - Bangor", + "case_name_shorts": "Jodie Byrne v." + }, + { + "case_dates": "2023-06-29", + "case_names": "David Ostrander v. Elaine Dowd", + "download_urls": "https://www.bap1.uscourts.gov/sites/bap1/files/bap.pdf.opinions/22-033U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "BAP No. 22-033", + "lower_courts": "Bankruptcy Court of MA - Springfield", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-10", + "case_names": "Bonni Berkowitz v. Invaleon Technologies Corporation", + "download_urls": "https://www.bap1.uscourts.gov/sites/bap1/files/bap.pdf.opinions/22-016P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "BAP No. MB 22-016", + "lower_courts": "Bankruptcy Court of MA - Boston", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-03", + "case_names": "Asociacion de Empleados del Estado Libre Asociado v. Angel Ruben Mojica Nieves", + "download_urls": "https://www.bap1.uscourts.gov/sites/bap1/files/bap.pdf.opinions/21-029P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "BAP No. 21-029", + "lower_courts": "Bankruptcy Court - San Juan Puerto Rico", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-26", + "case_names": "Veena Sharma v. Denise Pappalardo, Chapter 13 Trustee", + "download_urls": "https://www.bap1.uscourts.gov/sites/bap1/files/bap.pdf.opinions/22-006P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "BAP No. MW 22-006", + "lower_courts": "Bankruptcy Court of MA - Worcester", + "case_name_shorts": "" + }, + { + "case_dates": "2022-08-02", + "case_names": "Tamara Parvizi v. United States", + "download_urls": "https://www.bap1.uscourts.gov/sites/bap1/files/bap.pdf.opinions/21-021P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "BAP No. 21-021", + "lower_courts": "Bankruptcy Court of MA - Springfield", + "case_name_shorts": "" + }, + { + "case_dates": "2022-07-29", + "case_names": "National Promoters and Services, Inc. v. Multinational Life Insurance Company", + "download_urls": "https://www.bap1.uscourts.gov/sites/bap1/files/bap.pdf.opinions/21-016U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "BAP No. 21-016", + "lower_courts": "Bankruptcy Court - San Juan Puerto Rico", + "case_name_shorts": "" + }, + { + "case_dates": "2022-05-02", + "case_names": "Richard Shove v. Jose Hernandez", + "download_urls": "https://www.bap1.uscourts.gov/sites/bap1/files/bap.pdf.opinions/21-019P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "BAP No. 21-019", + "lower_courts": "Bankruptcy Court of MA - Springfield", + "case_name_shorts": "" + }, + { + "case_dates": "2022-04-22", + "case_names": "Vaqueria Las Martas, Inc. v. Condado 5, LLC", + "download_urls": "https://www.bap1.uscourts.gov/sites/bap1/files/bap.pdf.opinions/21-017P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "BAP No. 21-017", + "lower_courts": "Bankruptcy Court - San Juan Puerto Rico", + "case_name_shorts": "" + }, + { + "case_dates": "2022-01-06", + "case_names": "Preserba Compania de Desarrollos, Inc. v. Condado 2, LLC", + "download_urls": "https://www.bap1.uscourts.gov/sites/bap1/files/bap.pdf.opinions/21-012P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "BAP No. PR 21-012", + "lower_courts": "Bankruptcy Court - San Juan Puerto Rico", + "case_name_shorts": "" + }, + { + "case_dates": "2022-01-06", + "case_names": "Inversiones Caribe Delta, Inc. v. Condado 2, LLC", + "download_urls": "https://www.bap1.uscourts.gov/sites/bap1/files/bap.pdf.opinions/21-013P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "BAP No. 21-013", + "lower_courts": "Bankruptcy Court - San Juan Puerto Rico", + "case_name_shorts": "" + }, + { + "case_dates": "2021-12-23", + "case_names": "Mary Buscone v. Ann Botelho", + "download_urls": "https://www.bap1.uscourts.gov/sites/bap1/files/bap.pdf.opinions/21-005P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "BAP No. 21-005", + "lower_courts": "Bankruptcy Court of MA - Boston", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/bap1_example.html b/tests/examples/opinions/united_states/bap1_example.html new file mode 100644 index 000000000..f33f8b108 --- /dev/null +++ b/tests/examples/opinions/united_states/bap1_example.html @@ -0,0 +1,696 @@ + + + + + | First Circuit | United States Bankruptcy Appellate Panel + + + + + Skip to main content +
+
+
+ + + + + +
+
+ + + +
+
+ + +
+ + +

You are here

+ + + + +
+
+ +

Opinions

+ +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Opinion + DocketSheet + Pub Date + Short Title/District
+ 21-005 + + 2021/12/23 + + Mary Buscone v. Ann Botelho
Bankruptcy Court of MA - + Boston
+ 21-012 + + 2022/01/06 + + Preserba Compania de Desarrollos, Inc. v. Condado 2, + LLC
Bankruptcy Court - San Juan Puerto Rico
+ 21-013 + + 2022/01/06 + + Inversiones Caribe Delta, Inc. v. Condado 2, LLC
Bankruptcy + Court - San Juan Puerto Rico
+ 21-017 + + 2022/04/22 + + Vaqueria Las Martas, Inc. v. Condado 5, LLC
Bankruptcy + Court - San Juan Puerto Rico
+ 21-019 + + 2022/05/02 + + Richard Shove v. Jose Hernandez
Bankruptcy Court of MA - + Springfield
+ 21-016 + + 2022/07/29 + + National Promoters and Services, Inc. v. Multinational Life + Insurance Company
Bankruptcy Court - San Juan Puerto + Rico
+ 21-021 + + 2022/08/02 + + Tamara Parvizi v. United States of America
Bankruptcy Court + of MA - Springfield
+ 22-006 + + 2023/01/26 + + Veena Sharma v. Denise Pappalardo, Chapter 13 + Trustee
Bankruptcy Court of MA - Worcester
+ 21-029 + + 2023/02/03 + + Asociacion de Empleados del Estado Libre Asociado v. Angel Ruben + Mojica Nieves
Bankruptcy Court - San Juan Puerto + Rico
+ 22-016 + + 2023/05/10 + + Bonni Berkowitz v. Invaleon Technologies + Corporation
Bankruptcy Court of MA - Boston
+ 22-033 + + 2023/06/29 + + David Ostrander v. Elaine Dowd
Bankruptcy Court of MA - + Springfield
+ 23-004 + + 2023/10/11 + + Jodie Byrne v.
Bankrupcty Court of ME - Bangor +
+
+ +

Pages

+ + + + + + +
+
+ + + +
+
+ +
+
+ + + + +
+
+
+ + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/bap9_example.compare.json b/tests/examples/opinions/united_states/bap9_example.compare.json index 2870a3419..1e15c19e9 100644 --- a/tests/examples/opinions/united_states/bap9_example.compare.json +++ b/tests/examples/opinions/united_states/bap9_example.compare.json @@ -26,7 +26,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-19-1039-STaF CC-19-1040-STaF", + "docket_numbers": "CC-19-1039-STaF; CC-19-1040-STaF", "case_name_shorts": "" }, { @@ -86,7 +86,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "NV-19-1081-BHF NV-19-1082-BHF", + "docket_numbers": "NV-19-1081-BHF; NV-19-1082-BHF", "case_name_shorts": "" }, { @@ -176,7 +176,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ID-18-1196-BGF ID-19-1004-BGF ID-19-1093-BGF", + "docket_numbers": "ID-18-1196-BGF; ID-19-1004-BGF; ID-19-1093-BGF", "case_name_shorts": "" }, { @@ -216,7 +216,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-19-1022-GTaS CC-19-1139-GTaS", + "docket_numbers": "CC-19-1022-GTaS; CC-19-1139-GTaS", "case_name_shorts": "" }, { @@ -421,7 +421,7 @@ }, { "case_dates": "2019-09-23", - "case_names": "In re: Eliminator Custom Boats, Inc. Robert D. Leach", + "case_names": "In re: Eliminator Custom Boats, Inc.; Robert D. Leach", "download_urls": "http://cdn.ca9.uscourts.gov/datastore/bap/2019/09/26/Eliminator Custom Boats Memo 19-1003.pdf", "precedential_statuses": "Unpublished", "blocked_statuses": false, @@ -466,7 +466,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-18-1248-LSTa CC-18-1242-LSTa", + "docket_numbers": "CC-18-1248-LSTa; CC-18-1242-LSTa", "case_name_shorts": "" }, { @@ -531,12 +531,12 @@ }, { "case_dates": "2019-08-07", - "case_names": "In re: Trent Allen Bateman Mountain Thunder Coffee Plantation International, Inc. Naturescape Holding Group International, Inc.", + "case_names": "In re: Trent Allen Bateman; Mountain Thunder Coffee Plantation International, Inc.; Naturescape Holding Group International, Inc.", "download_urls": "http://cdn.ca9.uscourts.gov/datastore/bap/2019/08/07/Bateman et al Memo 18-1302 18-1306 18-1307.pdf", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "HI-18-1302-TaSKu HI-18-1306-TaSKu HI-18-1307-TaSKu", + "docket_numbers": "HI-18-1302-TaSKu; HI-18-1306-TaSKu; HI-18-1307-TaSKu", "case_name_shorts": "" }, { @@ -646,7 +646,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-18-1066-TaLS CC-18-1101-STaL", + "docket_numbers": "CC-18-1066-TaLS; CC-18-1101-STaL", "case_name_shorts": "" }, { @@ -666,7 +666,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-18-1066-TaLS CC-18-1100-TaLS", + "docket_numbers": "CC-18-1066-TaLS; CC-18-1100-TaLS", "case_name_shorts": "" }, { @@ -736,7 +736,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-18-1225-TaLS CC-18-1226-TaLS", + "docket_numbers": "CC-18-1225-TaLS; CC-18-1226-TaLS", "case_name_shorts": "" }, { @@ -776,7 +776,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "WW-17-1241-TaBKu WW-18-1282-TaBKu", + "docket_numbers": "WW-17-1241-TaBKu; WW-18-1282-TaBKu", "case_name_shorts": "" }, { @@ -796,7 +796,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-18-1279-STaL CC-18-1280-STaL CC-18-1281-STaL", + "docket_numbers": "CC-18-1279-STaL; CC-18-1280-STaL; CC-18-1281-STaL", "case_name_shorts": "" }, { @@ -816,7 +816,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC-18-1269-KuFB SC-18-1278-KuFB", + "docket_numbers": "SC-18-1269-KuFB; SC-18-1278-KuFB", "case_name_shorts": "" }, { @@ -981,7 +981,7 @@ }, { "case_dates": "2019-03-29", - "case_names": "In re: Cecchi Gori Pictures Cecchi Gori USA, Inc.", + "case_names": "In re: Cecchi Gori Pictures; Cecchi Gori USA, Inc.", "download_urls": "http://cdn.ca9.uscourts.gov/datastore/bap/2019/03/29/Cecchi Gori Pictures Memo 18-1042.pdf", "precedential_statuses": "Unpublished", "blocked_statuses": false, @@ -1256,7 +1256,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-18-1144-KuTaF CC-18-1160-KuTaF", + "docket_numbers": "CC-18-1144-KuTaF; CC-18-1160-KuTaF", "case_name_shorts": "" }, { @@ -1306,7 +1306,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-18-1052-STaL CC-18-1058-STaL", + "docket_numbers": "CC-18-1052-STaL; CC-18-1058-STaL", "case_name_shorts": "" }, { @@ -1316,7 +1316,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "NC-17-1336-FBKu NC-17-1354-FBKu", + "docket_numbers": "NC-17-1336-FBKu; NC-17-1354-FBKu", "case_name_shorts": "" }, { @@ -1386,7 +1386,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AZ-17-1047-TaBKu AZ-18-1093-TaBKu AZ-18-1096-TaBKu", + "docket_numbers": "AZ-17-1047-TaBKu; AZ-18-1093-TaBKu; AZ-18-1096-TaBKu", "case_name_shorts": "" }, { @@ -1586,7 +1586,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "NV-17-1386-LBTa NV-17-1388-LBTa", + "docket_numbers": "NV-17-1386-LBTa; NV-17-1388-LBTa", "case_name_shorts": "" }, { @@ -1646,7 +1646,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-17-1092-FSKu CC-17-1303-FSKu", + "docket_numbers": "CC-17-1092-FSKu; CC-17-1303-FSKu", "case_name_shorts": "" }, { @@ -1656,7 +1656,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AZ-17-1280-FSBa AZ-17-1292-FSBa", + "docket_numbers": "AZ-17-1280-FSBa; AZ-17-1292-FSBa", "case_name_shorts": "" }, { @@ -1756,7 +1756,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-17-1335-KuLS CC-17-1337-KuLS CC-17-1346-KuLS", + "docket_numbers": "CC-17-1335-KuLS; CC-17-1337-KuLS; CC-17-1346-KuLS", "case_name_shorts": "" }, { @@ -1806,7 +1806,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-17-1300-SKuL CC-17-1312-SKuL", + "docket_numbers": "CC-17-1300-SKuL; CC-17-1312-SKuL", "case_name_shorts": "" }, { @@ -1926,7 +1926,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC-17-1126-FBL SC-17-1223-FBL", + "docket_numbers": "SC-17-1126-FBL; SC-17-1223-FBL", "case_name_shorts": "" }, { @@ -2006,7 +2006,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "NC-17-1015-STaB NC-17-1034-STaB", + "docket_numbers": "NC-17-1015-STaB; NC-17-1034-STaB", "case_name_shorts": "" }, { @@ -2021,7 +2021,7 @@ }, { "case_dates": "2018-03-15", - "case_names": "In re: Epicenter Partners L.L.C. Gray Meyer Fannin L.L.C.", + "case_names": "In re: Epicenter Partners L.L.C.; Gray Meyer Fannin L.L.C.", "download_urls": "http://cdn.ca9.uscourts.gov/datastore/bap/2018/03/15/Epicenter Gray Meyer Memorandum 17-1216.pdf", "precedential_statuses": "Unpublished", "blocked_statuses": false, @@ -2056,7 +2056,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-17-1171-FSTa CC-17-1172-FSTa", + "docket_numbers": "CC-17-1171-FSTa; CC-17-1172-FSTa", "case_name_shorts": "" }, { @@ -2216,7 +2216,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-17-1069-KuFL CC-17-1070-KuFL", + "docket_numbers": "CC-17-1069-KuFL; CC-17-1070-KuFL", "case_name_shorts": "" }, { @@ -2226,7 +2226,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-16-1435-KuFL CC-16-1436-KuFL", + "docket_numbers": "CC-16-1435-KuFL; CC-16-1436-KuFL", "case_name_shorts": "" }, { @@ -2241,7 +2241,7 @@ }, { "case_dates": "2018-01-16", - "case_names": "In re: Anthony Thomas and Wendi Thomas At Emerald, LLC", + "case_names": "In re: Anthony Thomas and Wendi Thomas; At Emerald, LLC", "download_urls": "http://cdn.ca9.uscourts.gov/datastore/bap/2018/01/16/Thomas Memorandum 17-1072.pdf", "precedential_statuses": "Unpublished", "blocked_statuses": false, @@ -2296,7 +2296,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "NC-16-1277-BJuF NC-16-1299-BJuF", + "docket_numbers": "NC-16-1277-BJuF; NC-16-1299-BJuF", "case_name_shorts": "" }, { @@ -2306,7 +2306,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "NV-16-1229-FLTi NV-16-1238-FLTi", + "docket_numbers": "NV-16-1229-FLTi; NV-16-1238-FLTi", "case_name_shorts": "" }, { @@ -2331,7 +2331,7 @@ }, { "case_dates": "2017-12-21", - "case_names": "In re: Consolidated Nevada Corporation Paul A. Morabito", + "case_names": "In re: Consolidated Nevada Corporation; Paul A. Morabito", "download_urls": "http://cdn.ca9.uscourts.gov/datastore/bap/2017/12/22/Morabito Memorandum 17-1210 17-1211.pdf", "precedential_statuses": "Unpublished", "blocked_statuses": false, @@ -2416,7 +2416,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "BAP No. HI-17-1066-LBTa BAP No. HI-17-1137-LBTa", + "docket_numbers": "BAP No. HI-17-1066-LBTa; BAP No. HI-17-1137-LBTa", "case_name_shorts": "" }, { @@ -2426,7 +2426,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CC-17-1112-TaLS CC-17-1133-TaLS", + "docket_numbers": "CC-17-1112-TaLS; CC-17-1133-TaLS", "case_name_shorts": "" }, { @@ -2461,7 +2461,7 @@ }, { "case_dates": "2017-11-09", - "case_names": "In re: James L. Osborn, Jr. Central States Natural Gas, LLC Central States Energy, LLC", + "case_names": "In re: James L. Osborn, Jr.; Central States Natural Gas, LLC; Central States Energy, LLC", "download_urls": "http://cdn.ca9.uscourts.gov/datastore/bap/2017/11/13/Osborn MEMO 17-1083.pdf", "precedential_statuses": "Unpublished", "blocked_statuses": false, @@ -2476,7 +2476,7 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "EC-17-1075-KuFS EC-17-1106-KuFS", + "docket_numbers": "EC-17-1075-KuFS; EC-17-1106-KuFS", "case_name_shorts": "" }, { diff --git a/tests/examples/opinions/united_states/bia_example.compare.json b/tests/examples/opinions/united_states/bia_example.compare.json index 8a299d7bb..cec1d9ea6 100644 --- a/tests/examples/opinions/united_states/bia_example.compare.json +++ b/tests/examples/opinions/united_states/bia_example.compare.json @@ -1,578 +1,1082 @@ [ + { + "case_dates": "2024-07-01", + "case_names": "PANIN", + "download_urls": "/d9/2024-01/4070.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4070", + "citations": "28 I&N Dec. 771", + "summaries": "A respondent's release from Federal pretrial criminal custody does not preclude an Immigration Judge from denying a respondent's request for release from immigration detention under section 236(a) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1226(a) (2018).", + "case_name_shorts": "PANIN" + }, + { + "case_dates": "2024-07-01", + "case_names": "F-C-S", + "download_urls": "/d9/2024-04/4074_amended_2.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4074", + "citations": "28 I&N Dec. 788", + "summaries": "The regulation at 8 C.F.R. \u00a7 1240.17 (2024) applies only to those respondents first placed in expedited removal proceedings whose applications for relief and protection were adjudicated by United States Citizenship and Immigration Services and who were then placed in removal proceedings under section 240 of the Immigration and Nationality Act, 8 U.S.C. \u00a7 \u200d1229a (2018).", + "case_name_shorts": "F-C-S" + }, + { + "case_dates": "2024-07-01", + "case_names": "BERNARDO", + "download_urls": "/d9/2024-02/4072.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4072", + "citations": "28 I&N Dec. 781", + "summaries": "When a petition to remove the conditions on residence is withdrawn before United States Citizenship and Immigration Services prior to adjudication, the Immigration Judge ordinarily cannot review the merits of that petition in removal proceedings. Matter of Mendes, 20 I&N Dec. 833 (BIA 1994), followed.", + "case_name_shorts": "BERNARDO" + }, + { + "case_dates": "2024-07-01", + "case_names": "Aguilar Hernandez", + "download_urls": "/d9/2024-01/4071.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4071", + "citations": "28 I&N Dec. 774", + "summaries": "The Department of Homeland Security cannot remedy a notice to appear that lacks the date and time of the initial hearing before the Immigration Judge by filing a Form I\u2011261 because this remedy is contrary to the plain text of 8 C.F.R. \u00a7 \u200d1003.30 and inconsistent with the Supreme Court's decision in Niz-Chavez v. Garland, 593 U.S. 155 (2021).", + "case_name_shorts": "Aguilar Hernandez" + }, + { + "case_dates": "2024-07-01", + "case_names": "AZRAG", + "download_urls": "/d9/2024-02/4073.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4073", + "citations": "28 I&N Dec. 784", + "summaries": "Where a State court order granting a respondent's motion to vacate a conviction does not indicate the reason for the vacatur, and there is no other basis in the record to independently establish the reason, the respondent has not satisfied his burden to show that the court vacated his conviction because of a substantive or procedural defect in his criminal proceedings.", + "case_name_shorts": "AZRAG" + }, + { + "case_dates": "2023-07-01", + "case_names": "POUGATCHEV", + "download_urls": "/media/1294871/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4063", + "citations": "28 I&N Dec. 719", + "summaries": "(1) A conviction for burglary of a building under section 140.25(1)(d) of the New York Penal Law is not categorically an aggravated felony burglary offense under section 101(a)(43)(G) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 \u200d1101(a)(43)(G) (2018), because the statute is overbroad and indivisible with respect to the definition of \"building\" under New York law.", + "case_name_shorts": "POUGATCHEV" + }, + { + "case_dates": "2023-07-01", + "case_names": "MORALES-MORALES", + "download_urls": "/media/1291361/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4062", + "citations": "28 I&N Dec 714", + "summaries": "(1) The Board of Immigration Appeals has authority to accept what are otherwise untimely appeals, and consider them timely, in certain situations because 8 C.F.R. \u00a7 1003.38(b) (2022) is a claim-processing rule and not a jurisdictional provision. Matter of Liadov, 23 I&N Dec. 990 (BIA 2006), overruled.", + "case_name_shorts": "MORALES-MORALES" + }, + { + "case_dates": "2023-07-01", + "case_names": "M-R-M-S", + "download_urls": "https://www.justice.gov/d9/2023-12/4068.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4068", + "citations": "28 I&N Dec. 757", + "summaries": "If a persecutor is targeting members of a certain family as a means of achieving some other ultimate goal unrelated to the protected ground, family membership is incidental or subordinate to that other ultimate goal and therefore not one central reason for the harm. Matter of L-E-A-, 27 I&N Dec. 40 (BIA 2017), reaffirmed.", + "case_name_shorts": "M-R-M-S" + }, + { + "case_dates": "2023-07-01", + "case_names": "J-L-L", + "download_urls": "/media/1274021/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4058", + "citations": "28 I&N Dec. 684", + "summaries": "Pereira v. Sessions, 138 S. Ct. 2105 (2018), and Niz-Chavez v. Garland, 141 S. Ct. 1474 (2021), are inapplicable to proceedings initiated by a Notice to Applicant for Admission Detained for Hearing Before Immigration Judge (\"Form I-122\") and other charging documents issued prior to the effective date of the Illegal Immigration Reform and Immigrant Responsibility Act of 1996, Division C of Pub. L. No. 104-208, 110 Stat. 3009-546. Matter of Arambula-Bravo, 28 I&N Dec. 388 (BIA 2021), followed.", + "case_name_shorts": "J-L-L" + }, + { + "case_dates": "2023-07-01", + "case_names": "J-G-R", + "download_urls": "/media/1310066/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4064", + "citations": "28 I&N Dec. 733", + "summaries": "(1) Torturous conduct committed by a public official who is \"acting in an official capacity,\" meaning acting under color of law, is covered by the regulations implementing the Convention Against Torture, but such conduct by an official who is not acting in an official capacity is not covered. Matter of O-F-A-S-, 28 I&N Dec. 35 (A.G. 2020), followed.", + "case_name_shorts": "J-G-R" + }, + { + "case_dates": "2023-07-01", + "case_names": "H. N. Ferreira", + "download_urls": "/d9/2023-12/4069_0.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4069", + "citations": "28 I&N Dec. 765", + "summaries": "Given the significance of a respondent's interest in securing review of a denial of a petition to remove the conditions on permanent residence, an Immigration Judge should ordinarily review the denial of a Form I\u2011751 upon the request of the respondent.", + "case_name_shorts": "H. N. Ferreira" + }, + { + "case_dates": "2023-07-01", + "case_names": "GARCIA", + "download_urls": "/media/1282641/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4060", + "citations": "28 I&N Dec. 693", + "summaries": "For choice of law purposes, the controlling circuit law in Immigration Court proceedings is the law governing the geographic location of the Immigration Court where venue lies, namely where jurisdiction vests and proceedings commence upon the filing of a charging document, and will only change if an Immigration Judge subsequently grants a change of venue to another Immigration Court. Matter of R-C-R-, 28 I&N Dec. 74 (BIA 2020), clarified.", + "case_name_shorts": "GARCIA" + }, + { + "case_dates": "2023-07-01", + "case_names": "DUARTE-GONZALEZ", + "download_urls": "/media/1274266/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4059", + "citations": "28 I&N Dec. 688", + "summaries": "Noncitizens who are inadmissible for a specified period of time pursuant to section 212(a)(9)(B)(i) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1182(a)(9)(B)(i), due to their previous unlawful presence and departure are not required to reside outside the United States during this period in order to subsequently overcome this ground of inadmissibility.", + "case_name_shorts": "DUARTE-GONZALEZ" + }, + { + "case_dates": "2023-07-01", + "case_names": "Cabrera-Fernandez", + "download_urls": "/d9/2023-10/4066_edit.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4066", + "citations": "28 I&N Dec. 747", + "summaries": "(1) Release on conditional parole under section 236(a)(2)(B) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1226(a)(2)(B) (2018), is legally distinct from release on humanitarian parole under section 212(d)(5)(A) of the INA, 8 U.S.C. \u00a7 1182(d)(5)(A) (2018). Matter of Castillo-Padilla, 25 I&N Dec. 257, 258\u201363 (BIA 2010), followed.", + "case_name_shorts": "Cabrera-Fernandez" + }, + { + "case_dates": "2023-07-01", + "case_names": "CHEN", + "download_urls": "/media/1268026/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4057", + "citations": "28 I&N Dec. 676", + "summaries": "(1) The \"stop-time\" rule under section 240A(d)(1) of the Immigration and Nationality Act, 8 U.S.C. 1229b(d)(1), is not triggered by the entry of a final removal order, but rather only by service of a statutorily compliant notice to appear or the commission of specified criminal offenses, in accordance with the plain language statutory analysis provided in Niz-Chavez v. Garland, 141 S. Ct. 1474 (2021).", + "case_name_shorts": "CHEN" + }, + { + "case_dates": "2023-07-01", + "case_names": "CANCINOS-MANCIO", + "download_urls": "/media/1290111/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4061", + "citations": "28 I&N Dec. 708", + "summaries": "Under the modified categorical approach, an Immigration Judge may consider the transcript of a plea colloquy in determining the factual basis of a plea.", + "case_name_shorts": "CANCINOS-MANCIO" + }, + { + "case_dates": "2023-07-01", + "case_names": "C-G-T", + "download_urls": "/media/1313551/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4065", + "citations": "28 I&N Dec. 740", + "summaries": "(1) Determining whether the government is or was unable or unwilling to protect the respondent from harm is a fact-specific inquiry based on consideration of all evidence.", + "case_name_shorts": "C-G-T" + }, + { + "case_dates": "2023-07-01", + "case_names": "BRATHWAITE", + "download_urls": "/d9/2023-10/4067.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4067", + "citations": "28 I&N Dec. 751", + "summaries": "Because an appeal accepted under section 460.30 of the New York Criminal Procedure Law is classified as a direct appeal, a respondent with a pending appeal under this section does not have a final conviction for immigration purposes. Brathwaite v. Garland, 3 F.4th 542 (2d Cir. 2021), followed.", + "case_name_shorts": "BRATHWAITE" + }, + { + "case_dates": "2022-07-01", + "case_names": "V-A-K", + "download_urls": "/media/1237871/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4051", + "citations": "28 I&N Dec. 630", + "summaries": "A conviction for second degree burglary of a dwelling under section 140.25(2) of the New York Penal Law is categorically a conviction for generic burglary under section 101(a)(43)(G) of the Immigration and Nationality Act (\"INA\"), 8 U.S.C. \u00a7\u200d 1101(a)(43)(G) (2018), because the statute requires burglary of a structure or vehicle that has been adapted or is customarily used for overnight accommodation. United States v. Stitt, 139 S. Ct. 399 (2018), followed.", + "case_name_shorts": "V-A-K" + }, + { + "case_dates": "2022-07-01", + "case_names": "TRIANA", + "download_urls": "/media/1262476/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4055 (PDF)", + "citations": "28 I&N Dec. 659", + "summaries": "When determining whether a respondent is grandfathered for purposes of adjustment of status under section 245(i) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 \u200d1255(i) (2018), a decision of the United States Citizenship and Immigration Services (\"USCIS\") to approve a visa petition filed on or before April 30, 2001, does not foreclose an Immigration Judge from determining in removal proceedings whether that petition was \"approvable when filed\" within the meaning of 8 C.F.R. \u00a7 \u200d1245.10(a)(1)(i) (2021).", + "case_name_shorts": "TRIANA" + }, + { + "case_dates": "2022-07-01", + "case_names": "T-C-A", + "download_urls": "/file/1468491/dl", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID", + "citations": "28 I&N Dec. 472", + "summaries": "An applicant for adjustment of status under section 209(b) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1159(b) (2018), must possess asylee status at the time of adjustment, and thus an applicant whose asylee status has been terminated cannot adjust to lawful permanent resident status under this provision.", + "case_name_shorts": "T-C-A" + }, + { + "case_dates": "2022-07-01", + "case_names": "S. WONG", + "download_urls": "/media/1215406/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4041", + "citations": "28 I&N Dec. 518", + "summaries": "A finding of guilt in a proceeding that affords defendants all of the constitutional rights of criminal procedure that are applicable without limitation and that are incorporated against the States under the Fourteenth Amendment is a \"conviction\" for immigration purposes under section 101(a)(48)(A) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 \u200d1101(a)(48)(A) (2018). Matter of Eslamizar, 23 I&N Dec. 684 (BIA 2004), clarified.", + "case_name_shorts": "S. WONG" + }, + { + "case_dates": "2022-07-01", + "case_names": "ORTEGA-QUEZADA", + "download_urls": "/media/1235491/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4049", + "citations": "28 I&N Dec. 598", + "summaries": "The respondent's conviction for unlawfully selling or otherwise disposing of a firearm or ammunition in violation of 18 U.S.C. \u00a7 \u200d922(d) (2018) does not render him removable as charged under section 237(a)(2)(C) of the Immigration and Nationality Act, 8 U.S.C. \u00a7\u200d 1227(a)(2)(C) (2018), because \u00a7 \u200d922(d) is categorically overbroad and indivisible relative to the definition of a firearms offense.", + "case_name_shorts": "ORTEGA-QUEZADA" + }, + { + "case_dates": "2022-07-01", + "case_names": "NCHIFOR", + "download_urls": "/media/1228286/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4047", + "citations": "28 I&N Dec. 585", + "summaries": "A respondent who raises an objection to missing time or place information in a notice to appear for the first time in a motion to reopen has forfeited that objection.", + "case_name_shorts": "NCHIFOR" + }, + { + "case_dates": "2022-07-01", + "case_names": "MARISCAL-HERNANDEZ", + "download_urls": "/media/1264136/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4056", + "citations": "28 I&N Dec. 666", + "summaries": "(1) Where an Immigration Judge finds that a traffic stop was nothing more than a routine law enforcement action, a respondent has not established a prima face case of a Fourth Amendment violation\u2014much less an egregious violation\u2014and is not entitled to a hearing on a suppression motion. Matter of Barcenas, 19 I&N Dec. 609 (BIA 1988), followed.", + "case_name_shorts": "MARISCAL-HERNANDEZ" + }, + { + "case_dates": "2022-07-01", + "case_names": "M-M-A", + "download_urls": "/media/1212206/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4039", + "citations": "28 I&N Dec. 494", + "summaries": "When the Department of Homeland Security raises the mandatory bar for filing a frivolous asylum application under section 208(d)(6) of the Immigration and Nationality Act, 8 \u200dU.S.C. \u00a7 \u200d1158(d)(6) (2018), an Immigration Judge must make sufficient findings of fact and conclusions of law on whether the requirements for a frivolousness determination under Matter of Y\u2011L\u2011, 24 I&N Dec. 151 (BIA 2007), have been met.", + "case_name_shorts": "M-M-A" + }, + { + "case_dates": "2022-07-01", + "case_names": "LAPARRA", + "download_urls": "/media/1185591/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4034", + "citations": "28 I&N Dec. 425", + "summaries": "A respondent receives sufficient written notice to support the entry of an in absentia order of removal, even if he or she was served with a noncompliant notice to appear that did not specify the time or place of the hearing, where the respondent was properly served with a statutorily compliant notice of hearing specifying this information. Niz-Chavez v. Garland, 141 S. Ct. 1474 (2021), distinguished. Matter of Pena-Mejia, 27 I&N Dec. 546 (BIA 2019), and Matter of Miranda-Cordiero, 27 I&N Dec. 551 (BIA 2019), reaffirmed.", + "case_name_shorts": "LAPARRA" + }, + { + "case_dates": "2022-07-01", + "case_names": "LAGUERRE", + "download_urls": "/media/1185906/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4035", + "citations": "28 I&N Dec. 437", + "summaries": "Because the identity of the \"controlled dangerous substance\" possessed is an element of the crime of possession of a controlled dangerous substance under section 2C:35-10(a)(1) of the New Jersey Statutes Annotated, the statute is divisible with respect to the specific substance possessed, and the record of conviction can be examined under the modified categorical approach to determine whether that substance is a controlled substance under Federal law.", + "case_name_shorts": "LAGUERRE" + }, + { + "case_dates": "2022-07-01", + "case_names": "KOAT", + "download_urls": "/media/1187571/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4036", + "citations": "28 I&N Dec. 450", + "summaries": "Section 714.1 of the Iowa Code is divisible with respect to whether a violation of the statute involved theft by taking without consent or theft by fraud or deceit, permitting an Immigration Judge to review the conviction record under a modified categorical approach to determine whether the violation involved aggravated felony theft as defined in section 101(a)(43)(G) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1101(a)(43)(G) (2018).", + "case_name_shorts": "KOAT" + }, + { + "case_dates": "2022-07-01", + "case_names": "K. GUPTA", + "download_urls": "/media/1261526/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4054", + "citations": "28 I&N Dec. 653", + "summaries": "(1) Disbarment may be appropriate where an attorney knowingly disregards a prior order of suspension from the Board of Immigration Appeals and claims on notices of entry of appearance that he is not subject to any order restricting his right to practice law when he is, in fact, suspended from practice before the Board, the Immigration Courts, and the Department of Homeland Security.", + "case_name_shorts": "K. GUPTA" + }, + { + "case_dates": "2022-07-01", + "case_names": "GERMAN SANTOS", + "download_urls": "/media/1221561/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4044", + "citations": "28 I&N Dec. 552", + "summaries": "(1) Any fact that establishes or increases the permissible range of punishment for a \u200dcriminal offense is an \"element\" for purposes of the categorical approach, even if the term \"element\" is defined differently under State law. Matter of Laguerre, 28 I&N Dec. 437 (BIA 2022), followed.", + "case_name_shorts": "GERMAN SANTOS" + }, + { + "case_dates": "2022-07-01", + "case_names": "FERNANDES", + "download_urls": "/media/1236376/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4050", + "citations": "28 I&N Dec. 605", + "summaries": "(1) The time and place requirement in section 239(a)(1) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1229(a)(1) (2018), is a claim-processing rule, not a jurisdictional requirement.", + "case_name_shorts": "FERNANDES" + }, + { + "case_dates": "2022-07-01", + "case_names": "F-R-A", + "download_urls": "/media/1189536/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4037", + "citations": "28 I&N Dec. 460", + "summaries": "The amount of forfeiture ordered in a criminal proceeding may be considered in determining whether a crime of fraud or deceit resulted in a loss to a victim or victims exceeding $10,000 pursuant to section 101(a)(43)(M)(i) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1101(a)(43)(M)(i) (2018), if the amount set forth in the order is sufficiently tethered and traceable to the conduct of conviction.", + "case_name_shorts": "F-R-A" + }, + { + "case_dates": "2022-07-01", + "case_names": "E-F-N", + "download_urls": "/media/1229451/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4048", + "citations": "28 I&N Dec. 591", + "summaries": "An Immigration Judge may rely on impeachment evidence as part of a credibility determination where the evidence is probative and its admission is not fundamentally unfair, and the witness is given an opportunity to respond to that evidence during the proceedings.", + "case_name_shorts": "E-F-N" + }, + { + "case_dates": "2022-07-01", + "case_names": "DINGUS", + "download_urls": "/media/1220101/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4042", + "citations": "28 I&N Dec. 529", + "summaries": "(1) If a State court's nunc pro tunc order modifies or amends the subject matter of a \u200dconviction based on a procedural or substantive defect in the underlying criminal proceedings, the original conviction is invalid for immigration purposes and we will give full effect to the modified conviction; however, if the modification or amendment is entered for reasons unrelated to the merits of the underlying proceedings, the modification will not be given any effect and the original conviction remains valid. Matter of Pickering, 23 I&N Dec. 621 (BIA 2003), rev'd on other grounds, Pickering v. \u200dGonzales, 465 F.3d 263 (6th Cir. 2006), followed.", + "case_name_shorts": "DINGUS" + }, + { + "case_dates": "2022-07-01", + "case_names": "DANG", + "download_urls": "/media/1220766/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4043", + "citations": "28 I&N Dec. 541", + "summaries": "(1) The Supreme Court's construction of \"physical force\" in Johnson v. \u200dUnited States, 559 U.S. 133 (2010), and Stokeling v. United States, 139 S.\u200d Ct. 544 (2019), controls our interpretation of 18 \u200dU.S.C. \u00a7 \u200d16(a) (2018), which is incorporated by reference into section 237(a)(2)(E)(i) of the Immigration and Nationality Act (\"INA\"), 8 U.S.C. \u00a7\u200d 1227(a)(2)(E)(i) (2018); the Court's construction of \"physical force\" in United States v. \u200dCastleman, 572 U.S. 157 (2014), is inapplicable in this context.", + "case_name_shorts": "DANG" + }, + { + "case_dates": "2022-07-01", + "case_names": "D-L-S", + "download_urls": "/media/1226946/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4046", + "citations": "28 I&N Dec. 568", + "summaries": "A respondent who is subject to a deferred adjudication that satisfies the elements of sections 101(a)(48)(A)(i) and (ii) of the Immigration and Nationality Act (\"INA\"), 8 U.S.C. \u00a7 \u200d1101(a)(48)(A)(i) and (ii) (2018), has been \"convicted by a final judgment\" within the meaning of the particularly serious crime bar under section 241(b)(3)(B)(ii) of the INA, 8 \u200dU.S.C. \u00a7 1231(b)(3)(B)(ii) (2018).", + "case_name_shorts": "D-L-S" + }, + { + "case_dates": "2022-07-01", + "case_names": "CORONADO ACEVEDO", + "download_urls": "/media/1260411/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4053", + "citations": "28 I&N Dec. 648", + "summaries": "(1) Matter of S-O-G- & F-D-B-, 27 I&N Dec. 462 (A.G. 2018), is overruled.", + "case_name_shorts": "CORONADO ACEVEDO" + }, + { + "case_dates": "2022-07-01", + "case_names": "C. MORGAN", + "download_urls": "/media/1213346/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4040", + "citations": "28 I&N Dec. 508", + "summaries": "Larceny in the third degree under section 53a-124(a) of the Connecticut General Statutes is not a theft offense aggravated felony under section 101(a)(43)(G) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1101(a)(43)(G) (2018), because it incorporates by reference a definition of \"larceny\" under section 53a-119 of the Connecticut General Statutes that is overbroad and indivisible with respect to the generic definition of a theft offense. Almeida v. Holder, 588 F.3d 778 (2d Cir. 2009), and Abimbola v. Ashcroft, 378 \u200dF.3d 173 (2d Cir. 2004), not followed.", + "case_name_shorts": "C. MORGAN" + }, + { + "case_dates": "2022-07-01", + "case_names": "BADOR", + "download_urls": "/d9/2024-02/4052_0.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4052", + "citations": "28 I&N Dec. 638", + "summaries": "(1) A fraud waiver under section 237(a)(1)(H) of the Immigration and Nationality Act (\"INA\"), 8 U.S.C. \u00a7 1227(a)(1)(H) (2018), does not waive a respondent's removability under section 237(a)(1)(D)(i) of the INA, 8 U.S.C. \u00a7 1227(a)(1)(D)(i), where conditional permanent residence was terminated for failure to file a joint petition, a \u200dreason separate and independent from fraud. Matter of Gawaran, 20 I&N Dec. 938 (BIA 1995), aff'd Gawaran v. INS, 91 F.3d 1332 (9th Cir. 1996), reaffirmed.", + "case_name_shorts": "BADOR" + }, + { + "case_dates": "2022-07-01", + "case_names": "B-Z-R", + "download_urls": "/media/1221931/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4045", + "citations": "28 I&N Dec. 563", + "summaries": "(1) Matter of G\u2011G\u2011S\u2011, 26 I&N Dec. 339 (BIA 2014), is overruled.", + "case_name_shorts": "B-Z-R" + }, { "case_dates": "2021-07-01", "case_names": "VUCETIC", - "download_urls": "/eoir/file/1381766/download", + "download_urls": "/media/1133181/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4014", - "citations": "28 I&N Dec. 276 (BIA 2021)", - "summaries": "The offense of aggravated unlicensed operation of a motor vehicle in the first degree in violation of section 511(3)(a)(i) of the New York Vehicle and Traffic Law, which prohibits a person from driving under the influence of alcohol or drugs while knowing or having reason to know that his or her license is suspended, is categorically a crime involving moral turpitude. Matter of Lopez-Meza , 22 I&N Dec. 1188 (BIA 1999), followed.", + "citations": "28 I&N Dec. 276", + "summaries": "The offense of aggravated unlicensed operation of a motor vehicle in the first degree in violation of section 511(3)(a)(i) of the New York Vehicle and Traffic Law, which prohibits a person from driving under the influence of alcohol or drugs while knowing or having reason to know that his or her license is suspended, is categorically a crime involving moral turpitude. Matter of Lopez-Meza, 22 I&N Dec. 1188 (BIA 1999), followed.", "case_name_shorts": "VUCETIC" }, { "case_dates": "2021-07-01", "case_names": "VIERA-GARCIA and ORDONEZ-VIERA", - "download_urls": "/eoir/page/file/1360626/download", + "download_urls": "/media/1118791/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4008", - "citations": "28 I&N Dec. 223 (BIA 2021)", + "citations": "28 I&N Dec. 223", "summaries": "Where a notice to appear fails to specify the time or place of a respondent's initial removal hearing, the subsequent service of a notice of hearing specifying this information perfects the notice to appear and ends the accrual of physical presence for purposes of voluntary departure at the conclusion of removal proceedings pursuant to section 240B(b) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1229c(b) (2018).", "case_name_shorts": "VIERA-GARCIA and ORDONEZ-VIERA" }, { "case_dates": "2021-07-01", "case_names": "S-L-H- & L-B-L", - "download_urls": "/eoir/page/file/1408006/download", + "download_urls": "/media/1149036/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4021", - "citations": "28 I&N Dec. 318 (BIA 2021)", - "summaries": "(1) Immigration Judges may exercise their discretion to rescind an in absentia removal order and grant reopening where an alien has established through corroborating evidence that his or her late arrival at a removal hearing was due to \"exceptional circumstances\" under section 240(e)(1) of the Immigration and Nationality Act, 8 \u200dU.S.C. \u00a7 1229a(e)(1) (2018), and, in doing so, should consider factors such as the extent of the alien's tardiness, whether the reasons for the alien's tardiness are appropriately exceptional, and any other relevant factors in the totality of the circumstances. (2) Corroborating evidence may include, but is not limited to, affidavits, traffic and weather reports, medical records, verification of the alien's arrival time at the courtroom, and other documentation verifying the cause of the late arrival however, general statements\u2014without corroborative evidence documenting the cause of the tardiness\u2014are insufficient to establish exceptional circumstances that would warrant reopening removal proceedings. Matter of S-A- , 21 I&N Dec. 1050 (BIA 1997), reaffirmed and clarified .", + "citations": "28 I&N Dec. 318", + "summaries": "(1) Immigration Judges may exercise their discretion to rescind an in absentia removal order and grant reopening where an alien has established through corroborating evidence that his or her late arrival at a removal hearing was due to \"exceptional circumstances\" under section 240(e)(1) of the Immigration and Nationality Act, 8 \u200dU.S.C. \u00a7 1229a(e)(1) (2018), and, in doing so, should consider factors such as the extent of the alien's tardiness, whether the reasons for the alien's tardiness are appropriately exceptional, and any other relevant factors in the totality of the circumstances.", "case_name_shorts": "S-L-H- & L-B-L" }, { "case_dates": "2021-07-01", "case_names": "O-R-E", - "download_urls": "/eoir/page/file/1413496/download", + "download_urls": "/media/1152411/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4023", - "citations": "28 I&N Dec. 330 (BIA 2021)", - "summaries": "(1) Immigration Judges and the Board lack the authority to recognize the equitable defense of laches in removal proceedings. (2) The respondent's willful misrepresentations regarding his name, location of his residence, timing of his departure from Rwanda, and membership in political organizations on his Registration for Classification as Refugee (Form I-590) and supporting documents were \"material\" within the meaning of section 212(a)(6)(C)(i) of the Immigration and Nationality Act, 8\u200d U.S.C. \u00a7 \u200d1182(a)(6)(C)(i) (2018), and he is therefore removable under section 237(a)(1)(A) of the Act, 8 U.S.C. \u00a7 \u200d1227(a)(1)(A) (2018). (3) The evidence indicates that the respondent ordered, incited, assisted, or otherwise participated in the Rwandan genocide, and he did not produce sufficient countervailing evidence to demonstrate that he is not subject to the genocide bar at section 212(a)(3)(E)(ii) of the Act.", + "citations": "28 I&N Dec. 330", + "summaries": "(1) Immigration Judges and the Board lack the authority to recognize the equitable defense of laches in removal proceedings.", "case_name_shorts": "O-R-E" }, { "case_dates": "2021-07-01", "case_names": "O-M-O", - "download_urls": "/eoir/page/file/1351501/download", + "download_urls": "/media/1113751/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4005", - "citations": "28 I&N Dec. 191 (BIA 2021)", + "citations": "28 I&N Dec. 191", "summaries": "An Immigration Judge may find a document to be fraudulent without forensic analysis or other expert testimony where the document contains obvious defects or readily identifiable hallmarks of fraud and the party submitting the document is given an opportunity to explain the defects.", "case_name_shorts": "O-M-O" }, { "case_dates": "2021-07-01", "case_names": "NEMIS", - "download_urls": "/eoir/page/file/1374586/download", + "download_urls": "/media/1128571/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4011", - "citations": "28 I&N Dec. 250 (BIA 2021)", - "summaries": "(1) Applying the categorical approach, the conspiracy statute, 18 U.S.C. \u00a7 371 (2012), is overbroad relative to the generic definition of a crime involving moral turpitude, and divisible between the offense clause, which may or may not involve moral turpitude, and the defraud clause of the statute, which is categorically a crime involving moral turpitude. (2) To determine whether a conspiracy conviction under the offense clause of 18 U.S.C. \u00a7 371 constitutes a crime involving moral turpitude, the underlying statute of conviction should be examined under the categorical, and if applicable, modified categorical approach. (3) The respondent's conviction under 18 U.S.C. \u00a7 1546(a) (2012), punishing fraud and misuse of visas, permits, and other documents, is overbroad and divisible such that the modified categorical approach is applicable and it was proper to consider the conviction records. Matter of Serna , 20 I&N Dec. 579 (BIA 1992), clarified. (4) The respondent's conviction for conspiracy to commit visa fraud in violation of 18 U.S.C. \u00a7\u00a7 371 and 1546(a) is a conviction for a crime involving moral turpitude under the modified categorical approach.", + "citations": "28 I&N Dec. 250", + "summaries": "(1) Applying the categorical approach, the conspiracy statute, 18 U.S.C. \u00a7 371 (2012), is overbroad relative to the generic definition of a crime involving moral turpitude, and divisible between the offense clause, which may or may not involve moral turpitude, and the defraud clause of the statute, which is categorically a crime involving moral turpitude.", "case_name_shorts": "NEMIS" }, { "case_dates": "2021-07-01", "case_names": "NEGUSIE", - "download_urls": "/eoir/page/file/1441261/download", + "download_urls": "/media/1171436/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4029", - "citations": "28 I&N Dec. 399 (A.G. 2021)", - "summaries": "", + "citations": "28 I&N Dec. 399", + "summaries": "Pursuant to 8 C.F.R. \u00a7 1003.1(h)(1)(i), I direct the Board of Immigration Appeals (\"Board\") to refer this case to me for review of its decision. The Board's decision in this matter is automatically stayed pending my review. See Matter of Haddam, A.G. Order No. 2380-2001 (Jan. 19, 2001).", "case_name_shorts": "NEGUSIE" }, { "case_dates": "2021-07-01", "case_names": "N-V-G", - "download_urls": "/eoir/page/file/1433676/download", + "download_urls": "/media/1167021/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4027", - "citations": "28 I&N Dec. 380 (BIA 2021)", + "citations": "28 I&N Dec. 380", "summaries": "A person who enters the United States as a refugee and later adjusts in the United States to lawful permanent resident status is not precluded from establishing eligibility for a waiver of inadmissibility under section 212(h) of the Immigration and Nationality Act, 8 \u200dU.S.C. \u00a7 \u200d1182(h) (2018), based on a conviction for an aggravated felony, because he or she has not \"previously been admitted to the United States as an alien lawfully admitted for permanent residence\" under that provision.", "case_name_shorts": "N-V-G" }, { "case_dates": "2021-07-01", "case_names": "MORADEL", - "download_urls": "/eoir/page/file/1405696/download", + "download_urls": "/media/1147346/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4020", - "citations": "28 I&N Dec. 310 (BIA 2021)", - "summaries": "(1) An applicant for adjustment of status with Special Immigrant Juvenile status may, in conjunction with a waiver under section 245(h)(2)(B) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1255(h)(2)(B) (2018), seek to waive his or her inadmissibility under section 212(a)(2)(A)(i)(II) of the Act, 8 U.S.C. \u00a7 \u200d1182(a)(2)(A)(i)(II) (2018), based on a single offense of simple possession of 30 \u200dgrams or less of marijuana. (2) The \"simple possession\" exception at section 245(h)(2)(B) calls for a \u200dcircumstance\u2011specific inquiry into the nature of the conduct surrounding an applicant's simple possession offense.", + "citations": "28 I&N Dec. 310", + "summaries": "(1) An applicant for adjustment of status with Special Immigrant Juvenile status may, in conjunction with a waiver under section 245(h)(2)(B) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1255(h)(2)(B) (2018), seek to waive his or her inadmissibility under section 212(a)(2)(A)(i)(II) of the Act, 8 U.S.C. \u00a7 \u200d1182(a)(2)(A)(i)(II) (2018), based on a single offense of simple possession of 30 \u200dgrams or less of marijuana.", "case_name_shorts": "MORADEL" }, { "case_dates": "2021-07-01", "case_names": "MENSAH", - "download_urls": "/eoir/page/file/1386796/download", + "download_urls": "/media/1136776/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4016", - "citations": "28 I&N Dec. 288 (BIA 2021)", + "citations": "28 I&N Dec. 288", "summaries": "An Immigration Judge may rely on fraud or a willful misrepresentation of a material fact made by an alien during an interview before the United States Citizenship and Immigration Services to remove the conditional basis of an alien's permanent resident status in assessing whether the alien has demonstrated, for purposes of adjustment of status in removal proceedings, that she is not inadmissible under section 212(a)(6)(C)(i) of the Immigration and Nationality Act, 8 \u200dU.S.C. \u00a7 1182(a)(6)(C)(i) (2018).", "case_name_shorts": "MENSAH" }, { "case_dates": "2021-07-01", "case_names": "M-F-O", - "download_urls": "/eoir/page/file/1446396/download", + "download_urls": "/media/1174476/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4031", - "citations": "28 I&N Dec. 408 (BIA 2021)", - "summaries": "A notice to appear that does not specify the time or place of a respondent's initial removal hearing does not end the accrual of physical presence for purposes of voluntary departure at the conclusion of removal proceedings under section 240B(b) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1229c(b) (2018), even if the respondent is later served with a notice of hearing specifying this information. Posos\u2011Sanchez v.\u200d Garland , 3 F.4th 1176 (9th Cir. 2021), followed. Matter of Viera\u2011Garcia and Ordonez\u2011Viera , 28 I&N Dec. 223 (BIA 2021), overruled in part.", + "citations": "28 I&N Dec. 408", + "summaries": "A notice to appear that does not specify the time or place of a respondent's initial removal hearing does not end the accrual of physical presence for purposes of voluntary departure at the conclusion of removal proceedings under section 240B(b) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1229c(b) (2018), even if the respondent is later served with a notice of hearing specifying this information. Posos\u2011Sanchez v.\u200d Garland, 3 F.4th 1176 (9th Cir. 2021), followed. Matter of Viera\u2011Garcia and Ordonez\u2011Viera, 28 I&N Dec. 223 (BIA 2021), overruled in part.", "case_name_shorts": "M-F-O" }, { "case_dates": "2021-07-01", "case_names": "L-L-P", - "download_urls": "/eoir/page/file/1370261/download", + "download_urls": "/d9/pages/attachments/2021/02/24/4010.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4010", - "citations": "28 I&N Dec. 241 (BIA 2021)", + "citations": "28 I&N Dec. 241", "summaries": "An applicant for special rule cancellation of removal under section 240A(b)(2) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1229b(b)(2) (2018), based on spousal abuse must demonstrate both that the abuser was his or her lawful spouse and possessed either United States citizenship or lawful permanent resident status at the time of the abuse.", "case_name_shorts": "L-L-P" }, { "case_dates": "2021-07-01", "case_names": "L-E-A", - "download_urls": "/eoir/page/file/1404791/download", + "download_urls": "/media/1146806/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4018", - "citations": "28 I&N Dec. 304 (A.G. 2021)", - "summaries": "(1) Matter of L-E-A- , 27 I&N Dec. 581 (A.G. 2019) (\" L-E-A- II \"), is vacated in its entirety so as to return the immigration system to the preexisting state of affairs pending completion of the ongoing rulemaking process and the issuance of a final rule addressing the definition of \"particular social group.\" (2) Immigration judges and the Board should no longer follow L-E-A- II when adjudicating pending and future cases.", + "citations": "28 I&N Dec. 304", + "summaries": "(1) Matter of L-E-A-, 27 I&N Dec. 581 (A.G. 2019) (\"L-E-A- II\"), is vacated in its entirety so as to return the immigration system to the preexisting state of affairs pending completion of the ongoing rulemaking process and the issuance of a final rule addressing the definition of \"particular social group.\" (2) Immigration judges and the Board should no longer follow L-E-A- II when adjudicating pending and future cases.", "case_name_shorts": "L-E-A" }, { "case_dates": "2021-07-01", "case_names": "KAGUMBAS", - "download_urls": "/eoir/page/file/1441366/download", + "download_urls": "/media/1171871/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4030", - "citations": "28 I&N Dec. 400 (BIA 2021)", + "citations": "28 I&N Dec. 400", "summaries": "An Immigration Judge has the authority to inquire into the bona fides of a marriage when considering an application for adjustment of status under section 245(a) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1255(a) (2018).", "case_name_shorts": "KAGUMBAS" }, { "case_dates": "2021-07-01", "case_names": "HERNANDEZ-ROMERO", - "download_urls": "/eoir/page/file/1422976/download", + "download_urls": "/media/1159861/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4026", - "citations": "28 I&N Dec. 374 (BIA 2021)", + "citations": "28 I&N Dec. 374", "summaries": "Section 240A(c)(6) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1229b(c)(6) (2018), bars an applicant, who has previously been granted special rule cancellation of removal under the Nicaraguan Adjustment and Central American Relief Act, Pub. L. No. 105-100, tit. II, 111 Stat. 2160, 2193, 2198 (1997), amended by Pub. L. No. 105-139, 111 Stat. 2644 (1997), from applying for cancellation of removal under section 240A(a) or (b)(1) of the Act.", "case_name_shorts": "HERNANDEZ-ROMERO" }, { "case_dates": "2021-07-01", "case_names": "H-L-S-A", - "download_urls": "/eoir/page/file/1361386/download", + "download_urls": "https://www.justice.gov/d9/pages/attachments/2021/01/28/4009.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4009", - "citations": "28 I&N Dec. 228 (BIA 2021)", + "citations": "28 I&N Dec. 228", "summaries": "Individuals who cooperate with law enforcement may constitute a valid particular social group under the Immigration and Nationality Act if their cooperation is public in nature, particularly where testimony was given in public court proceedings, and the evidence in the record reflects that the society in question recognizes and provides protection for such cooperation.", "case_name_shorts": "H-L-S-A" }, { "case_dates": "2021-07-01", "case_names": "DIKHTYAR", - "download_urls": "/eoir/page/file/1358911/download", + "download_urls": "/media/1118061/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4007", - "citations": "28 I&N Dec. 214 (BIA 2021)", + "citations": "28 I&N Dec. 214", "summaries": "Section 58-37-8(2)(a)(i) of the Utah Code, which criminalizes possession or use of a controlled substance, is divisible with respect to the identity of the specific \"controlled substance\" involved in a violation of that statute.", "case_name_shorts": "DIKHTYAR" }, { "case_dates": "2021-07-01", "case_names": "D-G-C", - "download_urls": "/eoir/page/file/1401876/download", + "download_urls": "/media/1144786/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4017", - "citations": "28 I&N Dec. 297 (BIA 2021)", + "citations": "28 I&N Dec. 297", "summaries": "The mere continuation of an activity in the United States that is substantially similar to the activity from which an initial claim of past persecution is alleged and that does not significantly increase the risk of future harm is insufficient to establish \"changed circumstances\" to excuse an untimely asylum application within the meaning of section 208(a)(2)(D) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1158(a)(2)(D) (2018).", "case_name_shorts": "D-G-C" }, { "case_dates": "2021-07-01", "case_names": "CRUZ-VALDEZ", - "download_urls": "/eoir/page/file/1412451/download", + "download_urls": "/media/1151826/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4022", - "citations": "28 I&N Dec. 326 (A.G. 2021)", - "summaries": "(1) Matter of Castro\u2011Tum , 27 I&N Dec. 271 (A.G. 2018), is overruled in its entirety. (2) While rulemaking proceeds and except when a court of appeals has held otherwise, immigration judges and the Board should apply the standard for administrative closure set out in Matter of Avetisyan , 25 I&N Dec. 688 (BIA 2012), and Matter of W\u2011Y\u2011U\u2011 , 27 I&N Dec. 17 (BIA 2017).", + "citations": "28 I&N Dec. 326", + "summaries": "(1) Matter of Castro\u2011Tum, 27 I&N Dec. 271 (A.G. 2018), is overruled in its entirety.", "case_name_shorts": "CRUZ-VALDEZ" }, { "case_dates": "2021-07-01", "case_names": "B-Z-R", - "download_urls": "/eoir/page/file/1454401/download", + "download_urls": "/media/1179521/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4033", - "citations": "28 I&N Dec. 424 (A.G. 2021)", + "citations": "28 I&N Dec. 424", "summaries": "The Attorney General referred the decision of the Board of Immigration Appeals to himself for review of issues relating to whether mental health may be considered when determining whether an individual was convicted of a \"particularly serious crime\" within the meaning of 8 U.S.C. \u00a7\u00a7 1158(b)(2)(A)(ii) and 1231(b)(3)(B)(ii).", "case_name_shorts": "B-Z-R" }, { "case_dates": "2021-07-01", "case_names": "ARAMBULA-BRAVO", - "download_urls": "/eoir/page/file/1435951/download", + "download_urls": "/media/1168541/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4028", - "citations": "28 I&N Dec. 388 (BIA 2021)", - "summaries": "(1) A Notice to Appear that does not specify the time and place of a respondent's initial removal hearing does not deprive the Immigration Judge of jurisdiction over the respondent's removal proceedings. Pereira v. Sessions , 138 S. Ct. 2105 (2018), and \u200d Niz-Chavez v. Garland , 141 S. Ct. 1474 (2021), distinguished Matter of Bermudez-\u200dCota , 27 I&N Dec. 441 (BIA 2018), and Matter of Rosales Vargas and Rosales Rosales , 27 I&N Dec. 745 (BIA 2020), followed. (2) A Notice to Appear that lacks the time and place of a respondent's initial removal hearing constitutes a \"charging document\" as defined in 8 C.F.R. \u00a7 1003.13 (2021), and is sufficient to terminate a noncitizen's grant of parole under 8 C.F.R. \u00a7 \u200d212.5(e)(2)(i) (2021).", + "citations": "28 I&N Dec. 388", + "summaries": "(1) A Notice to Appear that does not specify the time and place of a respondent's initial removal hearing does not deprive the Immigration Judge of jurisdiction over the respondent's removal proceedings. Pereira v. Sessions, 138 S. Ct. 2105 (2018), and \u200dNiz-Chavez v. Garland, 141 S. Ct. 1474 (2021), distinguished; Matter of Bermudez-\u200dCota, 27 I&N Dec. 441 (BIA 2018), and Matter of Rosales Vargas and Rosales Rosales, 27 I&N Dec. 745 (BIA 2020), followed.", "case_name_shorts": "ARAMBULA-BRAVO" }, + { + "case_dates": "2021-07-01", + "case_names": "AL SABSABI", + "download_urls": "/media/1132511/dl?inline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "ID 4013", + "citations": "28 I&N Dec. 269", + "summaries": "(1) The \"offense clause\" of the Federal conspiracy statute, 18 U.S.C. \u00a7 371 (2012), is divisible and the underlying substantive crime is an element of the offense.", + "case_name_shorts": "AL SABSABI" + }, { "case_dates": "2021-07-01", "case_names": "AGUILAR-MENDEZ", - "download_urls": "/eoir/page/file/1375736/download", + "download_urls": "/media/1129246/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4012", - "citations": "28 I&N Dec. 262 (BIA 2021)", - "summaries": "The respondent's conviction for assault by means of force likely to produce great bodily injury in violation of section 245(a)(4) of the California Penal Code is categorically one for a crime involving moral turpitude. Matter of Wu , 27 I&N Dec. 8 (BIA 2017), followed.", + "citations": "28 I&N Dec. 262", + "summaries": "The respondent's conviction for assault by means of force likely to produce great bodily injury in violation of section 245(a)(4) of the California Penal Code is categorically one for a crime involving moral turpitude. Matter of Wu, 27 I&N Dec. 8 (BIA 2017), followed.", "case_name_shorts": "AGUILAR-MENDEZ" }, { "case_dates": "2021-07-01", "case_names": "AGUILAR-BARAJAS", - "download_urls": "/eoir/page/file/1419101/download", + "download_urls": "/media/1157241/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4025", - "citations": "28 I&N Dec. 354 (BIA 2021)", - "summaries": "(1) The offense of aggravated statutory rape under section 39-13-506(c) of the Tennessee Code Annotated is categorically a \"crime of child abuse\" within the meaning of section 237(a)(2)(E)(i) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1227(a)(2)(E)(i) (2018). (2) The Supreme Court's holding that a statutory rape offense does not qualify as \"sexual abuse of a minor\" based solely on the age of the participants, unless it involves a victim under 16, does not affect our definition of a \"crime of child abuse\" in Matter of Velazquez\u2011Herrera , 24 I&N Dec. 503 (BIA 2008), nor does it control whether the respondent's statutory rape offense falls within this definition. Esquivel\u2011Quintana v. \u200dSessions , 137 S. \u200dCt. 1562 (2017), distinguished .", + "citations": "28 I&N Dec. 354", + "summaries": "(1) The offense of aggravated statutory rape under section 39-13-506(c) of the Tennessee Code Annotated is categorically a \"crime of child abuse\" within the meaning of section 237(a)(2)(E)(i) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1227(a)(2)(E)(i) (2018).", "case_name_shorts": "AGUILAR-BARAJAS" }, { "case_dates": "2021-07-01", "case_names": "A. VALENZUELA", - "download_urls": "/eoir/page/file/1449661/download", + "download_urls": "/media/1176561/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4032", - "citations": "28 I&N Dec. 418 (BIA 2021)", - "summaries": "", + "citations": "28 I&N Dec. 418", + "summaries": "The respondent's conviction for carjacking under section 215(a) of the California Penal Code is categorically a conviction for an aggravated felony crime of violence under section 101(a)(43)(F) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1101(a)(43)(F) (2018).", "case_name_shorts": "A. VALENZUELA" }, { "case_dates": "2021-07-01", "case_names": "A-S-M", - "download_urls": "/eoir/page/file/1385691/download", + "download_urls": "/media/1135601/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4015", - "citations": "28 I&N Dec. 282 (BIA 2021)", + "citations": "28 I&N Dec. 282", "summaries": "Where the Department of Homeland Security states that an applicant may be removed to a country pursuant to section 241(b)(2) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 \u200d1231(b)(2) (2018), the applicant may seek withholding of removal from that country in withholding-only proceedings, even if that country is different from the country of removal that was originally designated in the reinstated removal order on which the withholding\u2011only proceedings are based.", "case_name_shorts": "A-S-M" }, { "case_dates": "2021-07-01", "case_names": "A-C-A-A", - "download_urls": "/eoir/page/file/1415401/download", + "download_urls": "/media/1154001/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4024", - "citations": "28 I&N Dec. 351 (A.G. 2021)", - "summaries": "(1) Matter of A-C-A-A- , 28 I&N Dec. 84 (A.G. 2020) (\" A-C-A-A- I \"), is vacated in its entirety. Immigration judges and the Board should no longer follow A-C-A-A- I in pending or future cases and should conduct proceedings consistent with this opinion and the opinions in Matter of L-E-A-\u200d , 28 I&N Dec. 304 (A.G. 2021) (\" L\u2011E\u2011A\u2011 III \"), and Matter of A-B -, 28 I&N Dec. 307 (A.G. 2021) (\" A\u2011B- III \"). (2) The Board's longstanding review practices that A-C-A-A- I apparently prohibited, including its case-by-case discretion to rely on immigration court stipulations, are restored.", + "citations": "28 I&N Dec. 351", + "summaries": "(1) Matter of A-C-A-A-, 28 I&N Dec. 84 (A.G. 2020) (\"A-C-A-A- I\"), is vacated in its entirety. Immigration judges and the Board should no longer follow A-C-A-A- I in pending or future cases and should conduct proceedings consistent with this opinion and the opinions in Matter of L-E-A-\u200d, 28 I&N Dec. 304 (A.G. 2021) (\"L\u2011E\u2011A\u2011 III\"), and Matter of A-B-, 28 I&N Dec. 307 (A.G. 2021) (\"A\u2011B- III\").", "case_name_shorts": "A-C-A-A" }, { "case_dates": "2021-07-01", "case_names": "A-B", - "download_urls": "/eoir/page/file/1404796/download", + "download_urls": "/media/1146811/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4019", - "citations": "28 I&N Dec. 307 (A.G. 2021)", - "summaries": "(1) Matter of A-B- , 27 I&N Dec. 316 (A.G. 2018) (\" A-B- I \"), and Matter of A-B- , 28 I&N Dec. 199 (A.G. 2021) (\" A-B- II \"), are vacated in their entirety. (2) Immigration judges and the Board should no longer follow A-B- I or A-B- II when adjudicating pending or future cases. Instead, pending forthcoming rulemaking, immigration judges and the Board should follow pre- A-B- I precedent, including Matter of A-R-C-G- , 26 I&N Dec. 388 (BIA 2014).", + "citations": "28 I&N Dec. 307", + "summaries": "(1) Matter of A-B-, 27 I&N Dec. 316 (A.G. 2018) (\"A-B- I\"), and Matter of A-B-, 28 I&N Dec. 199 (A.G. 2021) (\"A-B- II\"), are vacated in their entirety.", "case_name_shorts": "A-B" }, { "case_dates": "2021-07-01", "case_names": "A-B", - "download_urls": "/eoir/page/file/1354636/download", + "download_urls": "/media/1115201/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4006", - "citations": "28 I&N Dec. 199 (A.G. 2021)", - "summaries": "(1) Matter of A-B- , 27 I&N Dec. 316 (A.G. 2018), did not alter the existing standard for determining whether a government is \"unwilling or unable\" to prevent persecution by non-governmental actors. The \"complete helplessness\" language used in Matter of A-B- is consistent with the longstanding \"unable or unwilling\" standard, as the two are interchangeable formulations. (2) The concept of \"persecution\" under the Immigration and Nationality Act, 8 U.S.C. \u00a7\u00a7 1101(a)(42)(A), 1158(b)(1)(a), (b)(i), is premised on a breach of a home country's duty to protect its citizens. In cases where an asylum applicant is the victim of violence or threats by non-governmental actors, and the applicant's home government has made efforts to prevent such violence or threats, failures in particular cases or high levels of crime do not establish a breach of the government's duty to protect its citizenry. (3) The two-pronged test articulated by the Board of Immigration Appeals in Matter of L-E-A- , 27 I&N Dec. 40, 43\u201344 (BIA 2017), is the proper approach for determining whether a protected ground is \"at least one central reason\" for an asylum applicant's persecution, 8 U.S.C. \u00a7 1158(b)(1)(B)(i). Under this test, the protected ground: (1) must be a but-for cause of the wrongdoer's act and (2) must play more than a minor role\u2014in other words, it cannot be incidental or tangential to another reason for the act.", + "citations": "28 I&N Dec. 199", + "summaries": "(1) Matter of A-B-, 27 I&N Dec. 316 (A.G. 2018), did not alter the existing standard for determining whether a government is \"unwilling or unable\" to prevent persecution by non-governmental actors. The \"complete helplessness\" language used in Matter of A-B- is consistent with the longstanding \"unable or unwilling\" standard, as the two are interchangeable formulations.", "case_name_shorts": "A-B" }, { "case_dates": "2020-07-01", "case_names": "VOSS", - "download_urls": "/eoir/page/file/1326066/download", + "download_urls": "/media/1098691/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3997", - "citations": "28 I&N Dec. 107 (BIA 2020)", + "citations": "28 I&N Dec. 107", "summaries": "If a criminal conviction was charged as a ground of removability or was known to the Immigration Judge at the time cancellation of removal was granted under section 240A(a) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1229b(a) (2018), that conviction cannot serve as the sole factual predicate for a charge of removability in subsequent removal proceedings.", "case_name_shorts": "VOSS" }, { "case_dates": "2020-07-01", "case_names": "RIVERA-MENDOZA", - "download_urls": "/eoir/page/file/1347841/download", + "download_urls": "/media/1111646/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4004", - "citations": "28 I&N Dec. 184 (BIA 2020)", + "citations": "28 I&N Dec. 184", "summaries": "The risk of harm to a child required to obtain a conviction for child neglect in the second degree under section 163.545(1) of the Oregon Revised Statutes is sufficiently high that the offense is categorically a \"crime of child abuse, child neglect, or child abandonment\" under section 237(a)(2)(E)(i) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1227(a)(2)(E)(i) (2018).", "case_name_shorts": "RIVERA-MENDOZA" }, { "case_dates": "2020-07-01", "case_names": "REYES", - "download_urls": "/eoir/page/file/1299811/download", + "download_urls": "/media/1080601/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3992", - "citations": "28 I&N Dec. 52 (A.G. 2020)", - "summaries": "(1) If all of the means of committing a crime, based on the elements of the statute of conviction, amount to one or more of the offenses listed in section 101(a)(43) of the Immigration and Nationality Act, 8 U.S.C. \u00a71101(a)(43), then an alien who has been convicted of that crime has necessarily been convicted of an aggravated felony for purposes of the INA. (2) The respondent's conviction for grand larceny in the second degree under New York Penal Law \u00a7 155.40(1) qualifies as a conviction for an aggravated felony for purposes of the INA. DHS charged that the respondent had been convicted of either aggravated-felony theft or aggravated-felony fraud, as defined in section 101(a)(43)(G) and (M)(i) of the INA, 8 U.S.C. \u00a7 1101(a)(43)(G) and (M)(i). Larceny by acquiring lost property constitutes aggravated-felony theft, and the parties do not dispute that the other means of violating the New York statute correspond to either aggravated-felony theft or aggravated-felony fraud.", + "citations": "28 I&N Dec. 52", + "summaries": "(1) If all of the means of committing a crime, based on the elements of the statute of conviction, amount to one or more of the offenses listed in section 101(a)(43) of the Immigration and Nationality Act, 8 U.S.C. \u00a71101(a)(43), then an alien who has been convicted of that crime has necessarily been convicted of an aggravated felony for purposes of the INA.", "case_name_shorts": "REYES" }, { "case_dates": "2020-07-01", "case_names": "R. I. ORTEGA", - "download_urls": "/eoir/page/file/1287341/download", + "download_urls": "/media/1073546/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3987", - "citations": "28 I&N Dec. 9 (BIA 2020)", - "summaries": "(1) An alien who has conspired to enter into a marriage for the purpose of evading the immigration laws by seeking to secure a K-1 fianc\u00e9(e) nonimmigrant visa is subject to the bar under section 204(c)(2) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1154(c)(2) (2018). (2) For purposes of section 204(c)(2) of the Act, a conspiracy requires an agreement to enter into a marriage for the purpose of evading the immigration laws and an overt act in furtherance of that agreement.", + "citations": "28 I&N Dec. 9", + "summaries": "(1) An alien who has conspired to enter into a marriage for the purpose of evading the immigration laws by seeking to secure a K-1 fianc\u00e9(e) nonimmigrant visa is subject to the bar under section 204(c)(2) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1154(c)(2) (2018).", "case_name_shorts": "R. I. ORTEGA" }, { "case_dates": "2020-07-01", "case_names": "R-C-R", - "download_urls": "/eoir/page/file/1311336/download", + "download_urls": "/media/1088276/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3994", - "citations": "28 I&N Dec. 74 (BIA 2020)", - "summaries": "(1) After an Immigration Judge has set a firm deadline for filing an application for relief, the respondent's opportunity to file the application may be deemed waived, prior to a scheduled hearing, if the deadline passes without submission of the application and no good cause for noncompliance has been shown. (2) The respondent failed to meet his burden of establishing that he was deprived of a full and fair hearing where he has not shown that conducting the hearing by video conference interfered with his communication with the Immigration Judge or otherwise prejudiced him as a result of technical problems with the video equipment.", + "citations": "28 I&N Dec. 74", + "summaries": "(1) After an Immigration Judge has set a firm deadline for filing an application for relief, the respondent's opportunity to file the application may be deemed waived, prior to a scheduled hearing, if the deadline passes without submission of the application and no good cause for noncompliance has been shown.", "case_name_shorts": "R-C-R" }, { "case_dates": "2020-07-01", "case_names": "PAK", - "download_urls": "/eoir/page/file/1332671/download", + "download_urls": "/media/1102176/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3998", - "citations": "28 I&N Dec. 113 (BIA 2020)", + "citations": "28 I&N Dec. 113", "summaries": "Where there is substantial and probative evidence that a beneficiary's prior marriage was fraudulent and entered into for the purpose of evading the immigration laws, a subsequent visa petition filed on the beneficiary's behalf is properly denied pursuant to section 204(c) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1154(c) (2018), even if the first visa petition was denied because of insufficient evidence of a bona fide marital relationship.", "case_name_shorts": "PAK" }, { "case_dates": "2020-07-01", "case_names": "PADILLA RODRIGUEZ", - "download_urls": "/eoir/page/file/1339091/download", + "download_urls": "/media/1106051/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4001", - "citations": "28 I&N Dec. 164 (BIA 2020)", - "summaries": "(1) Where the temporary protected status (\"TPS\") of an alien who was previously present in the United States without being admitted or paroled is terminated, the alien remains inadmissible under section 212(a)(6)(A)(i) of the Immigration and Nationality Act, 8\u200d U.S.C. \u00a7\u200d 1182(a)(6)(A)(i) (2018), and removal proceedings should not be terminated. (2) An alien whose TPS continues to be valid is considered to be \"admitted\" for purposes of establishing eligibility for adjustment of status only within the jurisdictions of the United States Courts of Appeals for the Sixth, Eighth, and Ninth Circuits.", + "citations": "28 I&N Dec. 164", + "summaries": "(1) Where the temporary protected status (\"TPS\") of an alien who was previously present in the United States without being admitted or paroled is terminated, the alien remains inadmissible under section 212(a)(6)(A)(i) of the Immigration and Nationality Act, 8\u200d U.S.C. \u00a7\u200d 1182(a)(6)(A)(i) (2018), and removal proceedings should not be terminated.", "case_name_shorts": "PADILLA RODRIGUEZ" }, { "case_dates": "2020-07-01", "case_names": "P-B-B", - "download_urls": "/eoir/page/file/1296956/download", + "download_urls": "/d9/2023-11/3991.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3991", - "citations": "28 I&N Dec. 43 (BIA 2020)", + "citations": "28 I&N Dec. 43", "summaries": "Section 13-3407 of the Arizona Revised Statutes, which criminalizes possession of a dangerous drug, is divisible with regard to the specific \"dangerous drug\" involved in a violation of that statute.", "case_name_shorts": "P-B-B" }, { "case_dates": "2020-07-01", "case_names": "O\u2011F\u2011A\u2011S\u2011", - "download_urls": "/eoir/page/file/1294101/download", + "download_urls": "/media/1077466/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3990", - "citations": "28 I&N Dec. 35 (A.G. 2020)", - "summaries": "(1) Under Department of Justice regulations implementing the Convention Against Torture, an act constitutes \"torture\" only if it is inflicted or approved by a public official or other person \"acting in an official capacity.\" 8 C.F.R. \u00a7 1208.18(a)(1). This official capacity requirement limits the scope of the Convention to actions performed \"under color of law.\" Matter of Y-L- , 23 I&N Dec. 270 (A.G. 2002). Nothing in Matter of Y-L- , or any other Board precedent, should be construed to endorse a distinct, \"rogue official\" standard. (2) The \"under color of law\" standard draws no categorical distinction between the acts of low- and high-level officials. A public official, regardless of rank, acts \"under color of law\" when he \"exercise[s] power 'possessed by virtue of . . . law and made possible only because [he was] clothed with the authority of . . . law.'\" West v. Atkins , 487 U.S. 42, 47 (1988) (quoting United States v. Classic , 313 U.S. 299, 326 (1941)).", + "citations": "28 I&N Dec. 35", + "summaries": "(1) Under Department of Justice regulations implementing the Convention Against Torture, an act constitutes \"torture\" only if it is inflicted or approved by a public official or other person \"acting in an official capacity.\" 8 C.F.R. \u00a7 1208.18(a)(1). This official capacity requirement limits the scope of the Convention to actions performed \"under color of law.\" Matter of Y-L-, 23 I&N Dec. 270 (A.G. 2002). Nothing in Matter of Y-L-, or any other Board precedent, should be construed to endorse a distinct, \"rogue official\" standard.", "case_name_shorts": "O\u2011F\u2011A\u2011S\u2011" }, { "case_dates": "2020-07-01", "case_names": "NIVELO CARDENAS", - "download_urls": "/eoir/page/file/1301361/download", + "download_urls": "/media/1088106/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3993", - "citations": "28 I&N Dec. 68 (BIA 2020)", - "summaries": "(1) Where an alien who has been personally served with a notice to appear advising him of the requirement to notify the Immigration Court of his correct address fails to do so and is ordered removed in absentia for failure to appear for the scheduled hearing, reopening of the proceedings to rescind his order of removal based on a lack of proper notice is not warranted under section 240(b)(5)(C)(ii) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1229a(b)(5)(C)(ii) (2018). (2) The respondent's failure to update his address for over 18 years indicates a lack of due diligence and may properly be found to undermine the veracity of his claim that he has taken actions to maintain his rights in the underlying removal proceedings.", + "citations": "28 I&N Dec. 68", + "summaries": "(1) Where an alien who has been personally served with a notice to appear advising him of the requirement to notify the Immigration Court of his correct address fails to do so and is ordered removed in absentia for failure to appear for the scheduled hearing, reopening of the proceedings to rescind his order of removal based on a lack of proper notice is not warranted under section 240(b)(5)(C)(ii) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1229a(b)(5)(C)(ii) (2018).", "case_name_shorts": "NIVELO CARDENAS" }, { "case_dates": "2020-07-01", "case_names": "NEGUSIE", - "download_urls": "/eoir/page/file/1334881/download", + "download_urls": "/media/1103641/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3999", - "citations": "28 I&N Dec. 120 (A.G. 2020)", - "summaries": "(1) The bar to eligibility for asylum and withholding of removal based on the persecution of others does not include an exception for coercion or duress. (2) The Department of Homeland Security does not have an evidentiary burden to show that an applicant is ineligible for asylum and withholding of removal based on the persecution of others. If evidence in the record indicates the persecutor bar may apply, the applicant bears the burden of proving by a preponderance of the evidence that it does not.", + "citations": "28 I&N Dec. 120", + "summaries": "(1) The bar to eligibility for asylum and withholding of removal based on the persecution of others does not include an exception for coercion or duress.", "case_name_shorts": "NEGUSIE" }, { "case_dates": "2020-07-01", "case_names": "MELGAR", - "download_urls": "/eoir/page/file/1342986/download", + "download_urls": "/media/1108716/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4002", - "citations": "28 I&N Dec. 169 (BIA 2020)", - "summaries": "(1) Counsel's acceptance of responsibility for error does not discharge the disciplinary authority complaint obligation under Matter of Lozada , 19 I&N Dec. 637 (BIA 1988), particularly where the ineffective assistance allegation is rendered by the same attorney against himself. (2) A respondent seeking reopening on the basis of a claim of ineffective assistance of counsel must show a reasonable probability that, but for counsel's error, he would have prevailed on his claim.", + "citations": "28 I&N Dec. 169", + "summaries": "(1) Counsel's acceptance of responsibility for error does not discharge the disciplinary authority complaint obligation under Matter of Lozada, 19 I&N Dec. 637 (BIA 1988), particularly where the ineffective assistance allegation is rendered by the same attorney against himself.", "case_name_shorts": "MELGAR" }, { "case_dates": "2020-07-01", "case_names": "M-D-C-V", - "download_urls": "/eoir/page/file/1293971/download", + "download_urls": "/media/1077366/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3989", - "citations": "28 I&N Dec. 18 (BIA 2020)", + "citations": "28 I&N Dec. 18", "summaries": "Under section 235(b)(2)(C) of the Immigration and Nationality Act, 8 U.S.C. \u00a7 1225(b)(2)(C) (2018), an alien who is arriving on land from a contiguous foreign territory may be returned by the Department of Homeland Security to that country pursuant to the Migrant Protection Protocols, regardless of whether the alien arrives at or between a designated port of entry.", "case_name_shorts": "M-D-C-V" }, { "case_dates": "2020-07-01", "case_names": "M-A-M-Z", - "download_urls": "/eoir/page/file/1346661/download", + "download_urls": "/media/1111256/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4003", - "citations": "28 I&N Dec. 173 (BIA 2020)", - "summaries": "(1) Expert testimony is evidence, but only an Immigration Judge makes factual findings. (2) When the Immigration Judge makes a factual finding that is not consistent with an expert's opinion, it is important, as the Immigration Judge did here, to explain the reasons behind the factual findings.", + "citations": "28 I&N Dec. 173", + "summaries": "(1) Expert testimony is evidence, but only an Immigration Judge makes factual findings.", "case_name_shorts": "M-A-M-Z" }, { "case_dates": "2020-07-01", "case_names": "J-G-T", - "download_urls": "/eoir/page/file/1319951/download", + "download_urls": "/media/1093711/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3996", - "citations": "28 I&N Dec. 97 (BIA 2020)", - "summaries": "(1) In assessing whether to admit the testimony of a witness as an expert, an Immigration Judge should consider whether it is sufficiently relevant and reliable for the expert to offer an informed opinion, and if it is admitted, the Immigration Judge should then consider how much weight the testimony should receive. (2) In considering how much weight to give an expert's testimony, the Immigration Judge should assess how probative and persuasive the testimony is regarding key issues in dispute for which the testimony is being offered.", + "citations": "28 I&N Dec. 97", + "summaries": "(1) In assessing whether to admit the testimony of a witness as an expert, an Immigration Judge should consider whether it is sufficiently relevant and reliable for the expert to offer an informed opinion, and if it is admitted, the Immigration Judge should then consider how much weight the testimony should receive.", "case_name_shorts": "J-G-T" }, { "case_dates": "2020-07-01", "case_names": "H-Y-Z", - "download_urls": "/eoir/page/file/1336706/download", + "download_urls": "/media/1104461/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 4000", - "citations": "28 I&N Dec. 156 (BIA 2020)", + "citations": "28 I&N Dec. 156", "summaries": "Absent a showing of prejudice on account of ineffective assistance of counsel, or a showing that clearly undermines the validity and finality of the finding, it is inappropriate for the Board to favorably exercise our discretion to reopen a case and vacate an Immigration Judge's frivolousness finding.", "case_name_shorts": "H-Y-Z" }, { "case_dates": "2020-07-01", "case_names": "F-S-N", - "download_urls": "/eoir/page/file/1284876/download", + "download_urls": "/media/1072056/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3985", - "citations": "28 I&N Dec. 1 (BIA 2020)", + "citations": "28 I&N Dec. 1", "summaries": "To prevail on a motion to reopen alleging changed country conditions where the persecution claim was previously denied based on an adverse credibility finding in the underlying proceedings, the respondent must either overcome the prior determination or show that the new claim is independent of the evidence that was found to be not credible.", "case_name_shorts": "F-S-N" }, { "case_dates": "2020-07-01", - "case_names": "BAY AREA LEGAL SERVICES", - "download_urls": "/eoir/page/file/1291786/download", + "case_names": "BAY AREA LEGAL SERVICES, INC.", + "download_urls": "/media/1076266/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3988", - "citations": "INC., 28 I&N Dec. 16 (DIR 2020)", + "citations": "28 I&N Dec. 16", "summaries": "An amicus curiae is not a party in recognition and accreditation proceedings and has no authority to seek further action following the conclusion of an administrative review under 8 C.F.R. \u00a7 1292.18.", "case_name_shorts": "" }, { "case_dates": "2020-07-01", "case_names": "A-M-R-C", - "download_urls": "/eoir/page/file/1286356/download", + "download_urls": "/media/1072986/dl?inline", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3986", - "citations": "28 I&N Dec. 7 (A.G. 2020)", - "summaries": "The Attorney General referred the decision of the Board of Immigration Appeals to himself for review of issues relating to the effect of timing of referral whether the Board applied the correct legal standard and properly exercised its discretion in deciding issues related to the serious nonpolitical crime bar and the persecutor bar and whether the Board applied the correct standard for determining whether a respondent's in absentia trial suffered from due process problems.", + "citations": "28 I&N Dec. 7", + "summaries": "The Attorney General referred the decision of the Board of Immigration Appeals to himself for review of issues relating to the effect of timing of referral; whether the Board applied the correct legal standard and properly exercised its discretion in deciding issues related to the serious nonpolitical crime bar and the persecutor bar; and whether the Board applied the correct standard for determining whether a respondent's in absentia trial suffered from due process problems.", "case_name_shorts": "A-M-R-C" }, { "case_dates": "2020-07-01", "case_names": "A-C-A-A", - "download_urls": "/eoir/page/file/1319866/download", + "download_urls": "/d9/2023-11/3995_ed.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "ID 3995", - "citations": "28 I&N Dec. 84 (A.G. 2020)", - "summaries": "(1) In conducting its review of an alien's asylum claim, the Board of Immigration Appeals (\"Board\") must examine de novo whether the facts found by the immigration judge satisfy all of the statutory elements of asylum as a matter of law. See Matter of R-A-F- , 27 I&N Dec. 778 (A.G. 2020). (2) When reviewing a grant of asylum, the Board should not accept the parties' stipulations to, or failures to address, any of the particular elements of asylum\u2014including, where necessary, the elements of a particular social group. Instead, unless it affirms without opinion under 8 C.F.R. \u00a7 1003.1(e)(4)(i), the Board should meaningfully review each element of an asylum claim before affirming such a grant, or before independently ordering a grant of asylum. See Matter of L-E-A- , 27 I&N Dec. 581, 589 (A.G. 2019). (3) Even if an applicant is a member of a cognizable particular social group and has suffered persecution, an asylum claim should be denied if the harm inflicted or threatened by the persecutor is not \"on account of\" the alien's membership in that group. That requirement is especially important to scrutinize where the asserted particular social group encompasses many millions of persons in a particular society. (4) An alien's membership in a particular social group cannot be \"incidental, tangential, or subordinate to the persecutor's motivation . . . [for] why the persecutor[] sought to inflict harm.\" Matter of A-B- , 27 I&N Dec. 316, 338 (A.G. 2018) (citations omitted). Accordingly, persecution that results from personal animus or retribution generally does not support eligibility for asylum.", + "citations": "28 I&N Dec. 84", + "summaries": "(1) In conducting its review of an alien's asylum claim, the Board of Immigration Appeals (\"Board\") must examine de novo whether the facts found by the immigration judge satisfy all of the statutory elements of asylum as a matter of law. See Matter of R-A-F-, 27 I&N Dec. 778 (A.G. 2020).", "case_name_shorts": "A-C-A-A" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/bia_example.html b/tests/examples/opinions/united_states/bia_example.html index dd1aef9d2..ac3e3d288 100644 --- a/tests/examples/opinions/united_states/bia_example.html +++ b/tests/examples/opinions/united_states/bia_example.html @@ -1,1752 +1,1806 @@ - - - - - - - - + + - Volume 28 - - - - - - - - - - - - - - - - - - - - - - - - - - - + Executive Office for Immigration Review | Volume 28 - - -
-
-
-
-
- U.S. flag -
-
-

An official website of the United States government

- -
- -
-
-
-
-
- Dot gov -
-

- Official websites use .gov -
- - A - .gov - website belongs to an official government organization in the United States. -

-
-
-
- Https -
-

- Secure .gov websites use HTTPS -
- - A - lock - ( - - - - - - - - ) or - https:// - means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites. -

-
-
-
-
-
-
-
- -
-
- -
- - - -
- -
-
-
-

You are here

- -
- -
-
-
-
- -
-
-
-
- - - -
- -

Volume 28

- -
-
- -
- -
-
-
-
- - - - - - - -
- B-Z-R-, - 28 I&N Dec. 424 (A.G. 2021) - - ID 4033 - (PDF) -
-

The Attorney General referred the decision of the Board of Immigration Appeals to himself for review of issues relating to whether mental health may be considered when determining whether an individual was convicted of a “particularly serious crime” within the meaning of 8 U.S.C. §§ 1158(b)(2)(A)(ii) and 1231(b)(3)(B)(ii).

- -
- - - - - - - - - - -
- A. VALENZUELA - , 28 I&N Dec. 418 (BIA 2021) - - ID 4032 - (PDF) -
- The respondent’s conviction for carjacking under section 215(a) of the California Penal Code is categorically a conviction for an aggravated felony crime of violence under section 101(a)(43)(F) of the Immigration and Nationality Act, 8 U.S.C. § 1101(a)(43)(F) (2018). - -
- - - - - - - -
- M-F-O-, - 28 I&N Dec. 408 (BIA 2021) - - ID 4031 - (PDF) -
-

- A notice to appear that does not specify the time or place of a respondent’s initial removal hearing does not end the accrual of physical presence for purposes of voluntary departure at the conclusion of removal proceedings under section 240B(b) of the Immigration and Nationality Act, 8 U.S.C. § 1229c(b) (2018), even if the respondent is later served with a notice of hearing specifying this information.  - Posos‑Sanchez v.‍ Garland - , 3 F.4th 1176 (9th Cir. 2021), followed.  - Matter - of Viera‑Garcia and Ordonez‑Viera - , 28 I&N Dec. 223 (BIA 2021), overruled in part. -

- -
- - - - - - - -
- KAGUMBAS, - 28 I&N Dec. 400 (BIA 2021) - - ID 4030 - (PDF) -
-

An Immigration Judge has the authority to inquire into the bona fides of a marriage when considering an application for adjustment of status under section 245(a) of the Immigration and Nationality Act, 8 U.S.C. § 1255(a) (2018).

- -
- - - - - - - - - - - - - - -
- NEGUSIE, - 28 I&N Dec. 399 (A.G. 2021) - - ID 4029 - (PDF) -
- Pursuant to 8 C.F.R. § 1003.1(h)(1)(i), I direct the Board of Immigration Appeals (“Board”) to refer this case to me for review of its decision. The Board’s decision in this matter is automatically stayed pending my review. See Matter of Haddam, A.G. Order No. 2380-2001 (Jan. 19, 2001). - -
-
- ARAMBULA-BRAVO - , 28 I&N Dec. 388 (BIA 2021) - - ID 4028 - (PDF) -
-

- (1)  A Notice to Appear that does not specify the time and place of a respondent’s initial removal hearing does not deprive the Immigration Judge of jurisdiction over the respondent’s removal proceedings.  - Pereira v. Sessions - , 138 S. Ct. 2105 (2018), and ‍ - Niz-Chavez v. Garland - , 141 S. Ct. 1474 (2021), distinguished; - Matter of Bermudez-‍Cota - , 27 I&N Dec. 441 (BIA 2018), and - Matter of Rosales Vargas and Rosales Rosales - , 27 I&N Dec. 745 (BIA 2020), followed. -

- -

(2)  A Notice to Appear that lacks the time and place of a respondent’s initial removal hearing constitutes a “charging document” as defined in 8 C.F.R. § 1003.13 (2021), and is sufficient to terminate a noncitizen’s grant of parole under 8 C.F.R. § ‍212.5(e)(2)(i) (2021).

- -
- - - - - - - -
- N-V-G- - , 28 I&N Dec. 380 (BIA 2021) - - ID 4027 - (PDF) -
-

A person who enters the United States as a refugee and later adjusts in the United States to lawful permanent resident status is not precluded from establishing eligibility for a waiver of inadmissibility under section 212(h) of the Immigration and Nationality Act, 8 ‍U.S.C. § ‍1182(h) (2018), based on a conviction for an aggravated felony, because he or she has not “previously been admitted to the United States as an alien lawfully admitted for permanent residence” under that provision.

- -
- - - - - - - -
- HERNANDEZ-ROMERO - , 28 I&N Dec. 374 (BIA 2021) - - ID 4026 - (PDF) -
-

- Section 240A(c)(6) of the Immigration and Nationality Act, 8 U.S.C. § 1229b(c)(6) (2018), bars an applicant, who has previously been granted special rule cancellation of removal under the Nicaraguan Adjustment and Central American Relief Act, Pub. L. No. 105-100, tit. II, 111 Stat. 2160, 2193, 2198 (1997), - amended by - Pub. L. No. 105-139, 111 Stat. 2644 (1997), from applying for cancellation of removal under section 240A(a) or (b)(1) of the Act. -

- -
- - - - - - - -
- AGUILAR-BARAJAS - , 28 I&N Dec. 354 (BIA 2021) - - ID 4025 - (PDF) -
-

(1) The offense of aggravated statutory rape under section 39-13-506(c) of the Tennessee Code Annotated is categorically a “crime of child abuse” within the meaning of section 237(a)(2)(E)(i) of the Immigration and Nationality Act, 8 U.S.C. § 1227(a)(2)(E)(i) (2018).

- -

- (2) The Supreme Court’s holding that a statutory rape offense does not qualify as “sexual abuse of a minor” based solely on the age of the participants, unless it involves a victim under 16, does not affect our definition of a “crime of child abuse” in - Matter of Velazquez‑Herrera - , 24 I&N Dec. 503 (BIA 2008), nor does it control whether the respondent’s statutory rape offense falls within this definition.  - Esquivel‑Quintana v. ‍Sessions - , 137 S. ‍Ct. 1562 (2017), - distinguished - .  -

- -
- - - - - - - - - - - - - - -
- A-C-A-A-, - 28 I&N Dec. 351 (A.G. 2021) - - ID 4024 - (PDF) -
-

- (1) - Matter of A-C-A-A- - , 28 I&N Dec. 84 (A.G. 2020) (“ - A-C-A-A- I - ”), is vacated in its entirety.  Immigration judges and the Board should no longer follow - A-C-A-A- I - in pending or future cases and should conduct proceedings consistent with this opinion and the opinions in - Matter of L-E-A-‍ - , 28 I&N Dec. 304 (A.G. 2021) (“ - L‑E‑A‑ III - ”), and - Matter of A-B - -, 28 I&N Dec. 307 (A.G. 2021) (“ - A‑B- III - ”). -

- -

- (2) The Board’s longstanding review practices that - A-C-A-A- I - apparently prohibited, including its case-by-case discretion to rely on immigration court stipulations, are restored. -

- -
-
- O-R-E-,  - 28 I&N Dec. 330 (BIA 2021) - - ID 4023 - (PDF) -
-

(1) Immigration Judges and the Board lack the authority to recognize the equitable defense of laches in removal proceedings.

- -

(2) The respondent’s willful misrepresentations regarding his name, location of his residence, timing of his departure from Rwanda, and membership in political organizations on his Registration for Classification as Refugee (Form I-590) and supporting documents were “material” within the meaning of section 212(a)(6)(C)(i) of the Immigration and Nationality Act, 8‍ U.S.C. § ‍1182(a)(6)(C)(i) (2018), and he is therefore removable under section 237(a)(1)(A) of the Act, 8 U.S.C. § ‍1227(a)(1)(A) (2018).

- -

- (3) The evidence indicates - - that the respondent ordered, incited, assisted, or otherwise participated in the Rwandan genocide, and he did not produce sufficient countervailing evidence to demonstrate that he is not subject to the genocide bar at section 212(a)(3)(E)(ii) of the Act. -

- -
- - - - - - - -
- CRUZ-VALDEZ, - 28 I&N Dec. 326 (A.G. 2021) - - ID 4022 - (PDF) -
-

- (1) - Matter of Castro‑Tum - , 27 I&N Dec. 271 (A.G. 2018), is overruled in its entirety. -

- -

- (2) While rulemaking proceeds and except when a court of appeals has held otherwise, immigration judges and the Board should apply the standard for administrative closure set out in - Matter of Avetisyan - , 25 I&N Dec. 688 (BIA 2012), and - Matter of W‑Y‑U‑ - , 27 I&N Dec. 17 (BIA 2017). -

- -
- - - - - - - -
- S-L-H- & L-B-L- - , 28 I&N Dec. 318 (BIA 2021) - - ID 4021 - (PDF) -
-

(1) Immigration Judges may exercise their discretion to rescind an in absentia removal order and grant reopening where an alien has established through corroborating evidence that his or her late arrival at a removal hearing was due to “exceptional circumstances” under section 240(e)(1) of the Immigration and Nationality Act, 8 ‍U.S.C. § 1229a(e)(1) (2018), and, in doing so, should consider factors such as the extent of the alien’s tardiness, whether the reasons for the alien’s tardiness are appropriately exceptional, and any other relevant factors in the totality of the circumstances. 

- -

- (2) Corroborating evidence may include, but is not limited to, affidavits, traffic and weather reports, medical records, verification of the alien’s arrival time at the courtroom, and other documentation verifying the cause of the late arrival; however, general statements—without corroborative evidence documenting the cause of the tardiness—are insufficient to establish exceptional circumstances that would warrant reopening removal proceedings.  - Matter of S-A- - , 21 I&N Dec. 1050 (BIA 1997), - reaffirmed and clarified - . -

- -
- - - - - - - -
- MORADEL - , 28 I&N Dec. 310  (BIA 2021) - - ID 4020 - (PDF) -
-

(1) An applicant for adjustment of status with Special Immigrant Juvenile status may, in conjunction with a waiver under section 245(h)(2)(B) of the Immigration and Nationality Act, 8 U.S.C. § 1255(h)(2)(B) (2018), seek to waive his or her inadmissibility under section 212(a)(2)(A)(i)(II) of the Act, 8 U.S.C. § ‍1182(a)(2)(A)(i)(II) (2018), based on a single offense of simple possession of 30 ‍grams or less of marijuana.

- -

(2) The “simple possession” exception at section 245(h)(2)(B) calls for a ‍circumstance‑specific inquiry into the nature of the conduct surrounding an applicant’s simple possession offense.

- -
- - - - - - - -
- A-B- - , 28 I&N Dec. 307 (A.G. 2021) - - ID 4019 - (PDF) -
-

- (1) - Matter of A-B- - , 27 I&N Dec. 316 (A.G. 2018) (“ - A-B- I - ”), and - Matter of A-B- - , 28 I&N Dec. 199 (A.G. 2021) (“ - A-B- II - ”), are vacated in their entirety.  -

- -

- (2) Immigration judges and the Board should no longer follow - A-B- I - or - A-B- II - when adjudicating pending or future cases. Instead, pending forthcoming rulemaking, immigration judges and the Board should follow pre- - A-B- I - precedent, including - Matter of A-R-C-G- - , 26 I&N Dec. 388 (BIA 2014). -

- -
- - - - - - - -
- L-E-A- - , 28 I&N Dec. 304 (A.G. 2021) - - ID 4018 - (PDF) -
-

- (1) - Matter of L-E-A- - , 27 I&N Dec. 581 (A.G. 2019) (“ - L-E-A- II - ”), is vacated in its entirety so as to return the immigration system to the preexisting state of affairs pending completion of the ongoing rulemaking process and the issuance of a final rule addressing the definition of “particular social group.” -
-
- - (2) Immigration judges and the Board should no longer follow - L-E-A- II - when adjudicating pending and future cases. -

- -
- - - - - - - -
- D-G-C - , 28 I&N Dec. 297 (BIA 2021) - - ID 4017 - (PDF) -
-

The mere continuation of an activity in the United States that is substantially similar to the activity from which an initial claim of past persecution is alleged and that does not significantly increase the risk of future harm is insufficient to establish “changed circumstances” to excuse an untimely asylum application within the meaning of section 208(a)(2)(D) of the Immigration and Nationality Act, 8 U.S.C. § 1158(a)(2)(D) (2018).

- -
- - - - - - - -
- MENSAH - , 28 I&N Dec. 288 (BIA 2021) - - ID 4016 - (PDF) -
-

An Immigration Judge may rely on fraud or a willful misrepresentation of a material fact made by an alien during an interview before the United States Citizenship and Immigration Services to remove the conditional basis of an alien’s permanent resident status in assessing whether the alien has demonstrated, for purposes of adjustment of status in removal proceedings, that she is not inadmissible under section 212(a)(6)(C)(i) of the Immigration and Nationality Act, 8 ‍U.S.C. § 1182(a)(6)(C)(i) (2018).

- -
- - - - - - - -
- A-S-M- - , 28 I&N Dec. 282 (BIA 2021) - - ID 4015 - (PDF) -
-

Where the Department of Homeland Security states that an applicant may be removed to a country pursuant to section 241(b)(2) of the Immigration and Nationality Act, 8 U.S.C. § ‍1231(b)(2) (2018), the applicant may seek withholding of removal from that country in withholding-only proceedings, even if that country is different from the country of removal that was originally designated in the reinstated removal order on which the withholding‑only proceedings are based.

- -
- - - - - - - -
- VUCETIC - , 28 I&N Dec. 276 (BIA 2021) - - ID 4014 - (PDF) -
-

- The offense of aggravated unlicensed operation of a motor vehicle in the first degree in violation of section 511(3)(a)(i) of the New York Vehicle and Traffic Law, which prohibits a person from driving under the influence of alcohol or drugs while knowing or having reason to know that his or her license is suspended, is categorically a crime involving moral turpitude. - Matter of Lopez-Meza - , 22 I&N Dec. 1188 (BIA 1999), followed. -

- -
-
- - - - - - - -
- AL SABSABI - , 28 I&N Dec. 269 (BIA 2021) - - ID 4013 - (PDF) -
-

(1) The “offense clause” of the Federal conspiracy statute, 18 U.S.C. § 371 (2012), is divisible and the underlying substantive crime is an element of the offense. 

- -

(2) Because the substantive offense underlying the respondent’s Federal conspiracy conviction—namely, selling counterfeit currency in violation of 18 U.S.C. § 473 (2012)—is a crime involving moral turpitude, his conviction for conspiring to commit this offense is likewise one for a crime involving moral turpitude.

- -
- - - - - - - -
- AGUILAR-MENDEZ - , 28 I&N Dec. 262 (BIA 2021) - - ID 4012 - (PDF) -
-

- The respondent’s conviction for assault by means of force likely to produce great bodily injury in violation of section 245(a)(4) of the California Penal Code is categorically one for a crime involving moral turpitude. - Matter of Wu - , 27 I&N Dec. 8 (BIA 2017), followed. -

- -
- - - - - - - -
- NEMIS - , 28 I&N Dec. 250 (BIA 2021) - - ID 4011 - (PDF) -
-

(1) Applying the categorical approach, the conspiracy statute, 18 U.S.C. § 371 (2012), is overbroad relative to the generic definition of a crime involving moral turpitude, and divisible between the offense clause, which may or may not involve moral turpitude, and the defraud clause of the statute, which is categorically a crime involving moral turpitude.

- -

(2) To determine whether a conspiracy conviction under the offense clause of 18 U.S.C. § 371 constitutes a crime involving moral turpitude, the underlying statute of conviction should be examined under the categorical, and if applicable, modified categorical approach.

- -

- (3) The respondent’s conviction under 18 U.S.C. § 1546(a) (2012), punishing fraud and misuse of visas, permits, and other documents, is overbroad and divisible such that the modified categorical approach is applicable and it was proper to consider the conviction records. - Matter of Serna - , 20 I&N Dec. 579 (BIA 1992), clarified. -

- -

(4) The respondent’s conviction for conspiracy to commit visa fraud in violation of 18 U.S.C. §§ 371 and 1546(a) is a conviction for a crime involving moral turpitude under the modified categorical approach.

- -
- - - - - - - -
- L-L-P-, - 28 I&N Dec. 241 (BIA 2021) - - ID 4010 - - (PDF) -
-

An applicant for special rule cancellation of removal under section 240A(b)(2) of the Immigration and Nationality Act, 8 U.S.C. § 1229b(b)(2) (2018), based on spousal abuse must demonstrate both that the abuser was his or her lawful spouse and possessed either United States citizenship or lawful permanent resident status at the time of the abuse. 

- -
- - - - - - - -
-  H-L-S-A-, - 28 I&N Dec. 228 (BIA 2021) - - ID 4009 - - (PDF) -
-

Individuals who cooperate with law enforcement may constitute a valid particular social group under the Immigration and Nationality Act if their cooperation is public in nature, particularly where testimony was given in public court proceedings, and the evidence in the record reflects that the society in question recognizes and provides protection for such cooperation.

- -
- - - - - - - -
- VIERA-GARCIA and ORDONEZ-VIERA - , 28 I&N Dec. 223 (BIA 2021) - - ID 4008 - (PDF) -
-

Where a notice to appear fails to specify the time or place of a respondent’s initial removal hearing, the subsequent service of a notice of hearing specifying this information perfects the notice to appear and ends the accrual of physical presence for purposes of voluntary departure at the conclusion of removal proceedings pursuant to section 240B(b) of the Immigration and Nationality Act, 8 U.S.C. § 1229c(b) (2018).

- -
- - - - - - - -
- DIKHTYAR - , 28 I&N Dec. 214 (BIA 2021) - - ID 4007 - (PDF) -
-

Section 58-37-8(2)(a)(i) of the Utah Code, which criminalizes possession or use of a controlled substance, is divisible with respect to the identity of the specific “controlled substance” involved in a violation of that statute.

- -
- - - - - - - -
- A-B-, - 28 I&N Dec. 199 (A.G. 2021) - - ID 4006 - (PDF) -
-

- (1) - Matter of A-B- - , 27 I&N Dec. 316 (A.G. 2018), did not alter the existing standard for determining whether a government is "unwilling or unable" to prevent persecution by non-governmental actors. The "complete helplessness" language used in Matter of A-B- is consistent with the longstanding "unable or unwilling" standard, as the two are interchangeable formulations. -

- -

(2) The concept of "persecution" under the Immigration and Nationality Act, 8 U.S.C. §§ 1101(a)(42)(A), 1158(b)(1)(a), (b)(i), is premised on a breach of a home country’s duty to protect its citizens. In cases where an asylum applicant is the victim of violence or threats by non-governmental actors, and the applicant’s home government has made efforts to prevent such violence or threats, failures in particular cases or high levels of crime do not establish a breach of the government’s duty to protect its citizenry.

- -

- (3) The two-pronged test articulated by the Board of Immigration Appeals in - Matter of L-E-A- - , 27 I&N Dec. 40, 43–44 (BIA 2017), is the proper approach for determining whether a protected ground is "at least one central reason" for an asylum applicant’s persecution, 8 U.S.C. § 1158(b)(1)(B)(i). Under this test, the protected ground: (1) must be a but-for cause of the wrongdoer’s act; and (2) must play more than a minor role—in other words, it cannot be incidental or tangential to another reason for the act. -

- -
- - - - - - - -
- O-M-O-, - 28 I&N Dec. 191 (BIA 2021) - - ID 4005 - (PDF) -
-

An Immigration Judge may find a document to be fraudulent without forensic analysis or other expert testimony where the document contains obvious defects or readily identifiable hallmarks of fraud and the party submitting the document is given an opportunity to explain the defects.

- -
- - - - - - - -
- RIVERA-MENDOZA - , 28 I&N Dec. 184 (BIA 2020) - - ID 4004 - (PDF) -
-

The risk of harm to a child required to obtain a conviction for child neglect in the second degree under section 163.545(1) of the Oregon Revised Statutes is sufficiently high that the offense is categorically a “crime of child abuse, child neglect, or child abandonment” under section 237(a)(2)(E)(i) of the Immigration and Nationality Act, 8 U.S.C. § 1227(a)(2)(E)(i) (2018).

- -
- - - - - - - -
- M-A-M-Z-, - 28 I&N Dec. 173 (BIA 2020) - - ID 4003 - (PDF) -
-

(1) Expert testimony is evidence, but only an Immigration Judge makes factual findings. 

- -

(2)  When the Immigration Judge makes a factual finding that is not consistent with an expert’s opinion, it is important, as the Immigration Judge did here, to explain the reasons behind the factual findings.

- -
- - - - - - - -
- MELGAR, - 28 I&N Dec. 169 (BIA 2020) - - ID 4002 - (PDF) -
-

- (1) Counsel’s acceptance of responsibility for error does not discharge the disciplinary authority complaint obligation under - Matter of Lozada - , 19 I&N Dec. 637 (BIA 1988), particularly where the ineffective assistance allegation is rendered by the same attorney against himself. -

- -

(2) A respondent seeking reopening on the basis of a claim of ineffective assistance of counsel must show a reasonable probability that, but for counsel’s error, he would have prevailed on his claim.

- -
- - - - - - - -
- PADILLA RODRIGUEZ - , - - 28 I&N Dec. 164 (BIA 2020) - - ID 4001 - (PDF) -
-

(1) Where the temporary protected status (“TPS”) of an alien who was previously present in the United States without being admitted or paroled is terminated, the alien remains inadmissible under section 212(a)(6)(A)(i) of the Immigration and Nationality Act, 8‍ U.S.C. §‍ 1182(a)(6)(A)(i) (2018), and removal proceedings should not be terminated.

- -

(2) An alien whose TPS continues to be valid is considered to be “admitted” for purposes of establishing eligibility for adjustment of status only within the jurisdictions of the United States Courts of Appeals for the Sixth, Eighth, and Ninth Circuits.

- -
- - - - - - - -
- H-Y-Z-, - 28 I&N Dec. 156 (BIA 2020) - - ID 4000 - (PDF) -
-

Absent a showing of prejudice on account of ineffective assistance of counsel, or a showing that clearly undermines the validity and finality of the finding, it is inappropriate for the Board to favorably exercise our discretion to reopen a case and vacate an Immigration Judge’s frivolousness finding.

- -
- - - - - - - -
- NEGUSIE - , 28 I&N Dec. 120 (A.G. 2020) - - ID 3999 - (PDF) -
-

(1) The bar to eligibility for asylum and withholding of removal based on the persecution of others does not include an exception for coercion or duress.

- -

(2) The Department of Homeland Security does not have an evidentiary burden to show that an applicant is ineligible for asylum and withholding of removal based on the persecution of others. If evidence in the record indicates the persecutor bar may apply, the applicant bears the burden of proving by a preponderance of the evidence that it does not.

- -
- - - - - - - -
- PAK - , 28 I&N Dec. 113 (BIA 2020) - - ID 3998 - (PDF) -
-

Where there is substantial and probative evidence that a beneficiary’s prior marriage was fraudulent and entered into for the purpose of evading the immigration laws, a subsequent visa petition filed on the beneficiary’s behalf is properly denied pursuant to section 204(c) of the Immigration and Nationality Act, 8 U.S.C. § 1154(c) (2018), even if the first visa petition was denied because of insufficient evidence of a bona fide marital relationship.

- -
- - - - - - - -
- VOSS - , 28 I&N Dec. 107 (BIA 2020) - - ID 3997 - (PDF) -
-

If a criminal conviction was charged as a ground of removability or was known to the Immigration Judge at the time cancellation of removal was granted under section 240A(a) of the Immigration and Nationality Act, 8 U.S.C. § 1229b(a) (2018), that conviction cannot serve as the sole factual predicate for a charge of removability in subsequent removal proceedings.

- -
- - - - - - - -
- J-G-T-, - 28 I&N Dec. 97 (BIA 2020) - - ID 3996 - (PDF) -
-

(1) In assessing whether to admit the testimony of a witness as an expert, an Immigration Judge should consider whether it is sufficiently relevant and reliable for the expert to offer an informed opinion, and if it is admitted, the Immigration Judge should then consider how much weight the testimony should receive.

- -

(2) In considering how much weight to give an expert’s testimony, the Immigration Judge should assess how probative and persuasive the testimony is regarding key issues in dispute for which the testimony is being offered.

- -
- - - - - - - -
- A-C-A-A-,   - 28 I&N Dec. 84  (A.G. 2020) - - ID 3995 - - (PDF) -
-

- (1) In conducting its review of an alien’s asylum claim, the Board of Immigration Appeals (“Board”) must examine de novo whether the facts found by the immigration judge satisfy all of the statutory elements of asylum as a matter of law. - See Matter of R-A-F- - , 27 I&N Dec. 778 (A.G. 2020). -

- -

- (2) When reviewing a grant of asylum, the Board should not accept the parties’ stipulations to, or failures to address, any of the particular elements of asylum—including, where necessary, the elements of a particular social group. Instead, unless it affirms without opinion under 8 C.F.R. § 1003.1(e)(4)(i), the Board should meaningfully review each element of an asylum claim before affirming such a grant, or before independently ordering a grant of asylum. - See Matter of L-E-A- - , 27 I&N Dec. 581, 589 (A.G. 2019). -

- -

- (3) Even if an applicant is a member of a cognizable particular social group and has suffered persecution, an asylum claim should be denied if the harm inflicted or threatened by the persecutor is not “on account of” the alien’s membership in that group.  That requirement is especially important to scrutinize where the asserted particular social group encompasses many millions of persons in a particular society.  (4) An alien’s membership in a particular social group cannot be “incidental, tangential, or subordinate to the persecutor’s motivation . . . [for] why the persecutor[] sought to inflict harm.” - Matter of A-B- - , 27 I&N Dec. 316, 338 (A.G. 2018) (citations omitted).  Accordingly, persecution that results from personal animus or retribution generally does not support eligibility for asylum. -

- -
- - - - - - - -
- R-C-R-, - 28 I&N Dec. 74 (BIA 2020) - - ID 3994 - (PDF) -
-

(1) After an Immigration Judge has set a firm deadline for filing an application for relief, the respondent’s opportunity to file the application may be deemed waived, prior to a scheduled hearing, if the deadline passes without submission of the application and no good cause for noncompliance has been shown.

- -

(2) The respondent failed to meet his burden of establishing that he was deprived of a full and fair hearing where he has not shown that conducting the hearing by video conference interfered with his communication with the Immigration Judge or otherwise prejudiced him as a result of technical problems with the video equipment.

- -
- - - - - - - -
- NIVELO CARDENAS - , 28 I&N Dec. 68 (BIA 2020) - - ID 3993 - (PDF) -
-

(1) Where an alien who has been personally served with a notice to appear advising him of the requirement to notify the Immigration Court of his correct address fails to do so and is ordered removed in absentia for failure to appear for the scheduled hearing, reopening of the proceedings to rescind his order of removal based on a lack of proper notice is not warranted under section 240(b)(5)(C)(ii) of the Immigration and Nationality Act, 8 U.S.C. § 1229a(b)(5)(C)(ii) (2018).

- -

(2) The respondent’s failure to update his address for over 18 years indicates a lack of due diligence and may properly be found to undermine the veracity of his claim that he has taken actions to maintain his rights in the underlying removal proceedings.

- -
- - - - - - - -
- REYES, - 28 I&N Dec. 52 (A.G. 2020) - - ID 3992 - (PDF) -
-

(1) If all of the means of committing a crime, based on the elements of the statute of conviction, amount to one or more of the offenses listed in section 101(a)(43) of the Immigration and Nationality Act, 8 U.S.C. §1101(a)(43), then an alien who has been convicted of that crime has necessarily been convicted of an aggravated felony for purposes of the INA.

- -

(2) The respondent’s conviction for grand larceny in the second degree under New York Penal Law § 155.40(1) qualifies as a conviction for an aggravated felony for purposes of the INA. DHS charged that the respondent had been convicted of either aggravated-felony theft or aggravated-felony fraud, as defined in section 101(a)(43)(G) and (M)(i) of the INA, 8 U.S.C. § 1101(a)(43)(G) and (M)(i). Larceny by acquiring lost property constitutes aggravated-felony theft, and the parties do not dispute that the other means of violating the New York statute correspond to either aggravated-felony theft or aggravated-felony fraud. 

- -
- - - - - - - -
- P-B-B-, - 28 I&N Dec. 43 (BIA 2020) - - ID 3991 - - (PDF) -
-

Section 13-3407 of the Arizona Revised Statutes, which criminalizes possession of a dangerous drug, is divisible with regard to the specific “dangerous drug” involved in a violation of that statute.

- -
- - - - - - - -
- O‑F‑A‑S‑, - 28 I&N Dec. 35 (A.G. 2020) - - ID 3990 - (PDF) -
-

- (1) Under Department of Justice regulations implementing the Convention Against Torture, an act constitutes "torture" only if it is inflicted or approved by a public official or other person "acting in an official capacity." 8 C.F.R. § 1208.18(a)(1). This official capacity requirement limits the scope of the Convention to actions performed "under color of law." - Matter of Y-L- - , 23 I&N Dec. 270 (A.G. 2002). Nothing in - Matter of Y-L- - , or any other Board precedent, should be construed to endorse a distinct, "rogue official" standard. -

- -

- (2) The "under color of law" standard draws no categorical distinction between the acts of low- and high-level officials. A public official, regardless of rank, acts "under color of law" when he "exercise[s] power ‘possessed by virtue of . . . law and made possible only because [he was] clothed with the authority of . . . law.’" - West v. Atkins - , 487 U.S. 42, 47 (1988) (quoting - United States v. Classic - , 313 U.S. 299, 326 (1941)). -

- -
- - - - - - - -
- M-D-C-V-, - 28 I&N Dec. 18 (BIA 2020) - - ID 3989 - (PDF) -
-

Under section 235(b)(2)(C) of the Immigration and Nationality Act, 8 U.S.C. § 1225(b)(2)(C) (2018), an alien who is arriving on land from a contiguous foreign territory may be returned by the Department of Homeland Security to that country pursuant to the Migrant Protection Protocols, regardless of whether the alien arrives at or between a designated port of entry.

- -
- - - - - - - -
- BAY AREA LEGAL SERVICES, INC., - 28 I&N Dec. 16 (DIR 2020) - - ID 3988 - (PDF) -
-

-  An - amicus curiae - is not a party in recognition and accreditation proceedings and has no authority to seek further action following the conclusion of an administrative review under 8 C.F.R. § 1292.18. -

- -
- - - - - - - -
- R. I. ORTEGA - , 28 I&N Dec. 9 (BIA 2020) - - ID 3987 - (PDF) -
-

(1) An alien who has conspired to enter into a marriage for the purpose of evading the immigration laws by seeking to secure a K-1 fiancé(e) nonimmigrant visa is subject to the bar under section 204(c)(2) of the Immigration and Nationality Act, 8 U.S.C. § 1154(c)(2) (2018).

- -

(2) For purposes of section 204(c)(2) of the Act, a conspiracy requires an agreement to enter into a marriage for the purpose of evading the immigration laws and an overt act in furtherance of that agreement.

- -
- - - - - - - -
- A-M-R-C-, - 28 I&N Dec. 7 (A.G. 2020) - - ID 3986 - (PDF) -
-

-  The Attorney General referred the decision of the Board of Immigration Appeals to himself for review of issues relating to the effect of timing of referral; whether the Board applied the correct legal standard and properly exercised its discretion in deciding issues related to the serious nonpolitical crime bar and the persecutor bar; and whether the Board applied the correct standard for determining whether a respondent’s - in absentia - trial suffered from due process problems. -

- -
- - - - - - - -
- F-S-N-, - 28 I&N Dec. 1 (BIA 2020) - - ID 3985 - (PDF) -
-

To prevail on a motion to reopen alleging changed country conditions where the persecution claim was previously denied based on an adverse credibility finding in the underlying proceedings, the respondent must either overcome the prior determination or show that the new claim is independent of the evidence that was found to be not credible.

-
-
-
-
-
- -
Updated December 9, 2021
-
-
-

Was this page helpful?

-
-
- Was this page helpful? -
- Yes - No -
- -
-
-
- -
- -
- -
- - - -
- - - - - - - - - - - - - - - + + + + Skip to main content + +
+ +
+ +
+ +
+
+ + +
+ + + + +
+ +
+ + +
+ + + +
+
+
+ +
+
+ +
+
+ +
+

+ Volume 28 +

+
+ +
+ +
+ +
+ + + +
+ +
+
+
+
+ + + + + + + +
+
+ + + + + + + +
F-C-S-, 28 I&N Dec. 788 (BIA 2024)(as amended)ID 4074 (PDF) +
+ +

The regulation at 8 C.F.R. § 1240.17 (2024) applies only to + those respondents first placed in expedited removal proceedings whose applications for + relief and protection were adjudicated by United States Citizenship and Immigration Services + and who were then placed in removal proceedings under section 240 of the Immigration and + Nationality Act, 8 U.S.C. § ‍1229a (2018).

+ +
+ + + + + + + +
AZRAG, 28 I&N Dec. 784 (BIA 2024)ID 4073 (PDF)
+ +

Where a State court order granting a respondent’s motion to vacate a conviction does not + indicate the reason for the vacatur, and there is no other basis in the record to + independently establish the reason, the respondent has not satisfied his burden to show that + the court vacated his conviction because of a substantive or procedural defect in his + criminal proceedings.

+ +
+ + + + + + + +
BERNARDO, 28 I&N Dec. 781 (BIA 2024)ID 4072 (PDF)
+ +

When a petition to remove the conditions on residence is withdrawn before United States + Citizenship and Immigration Services prior to adjudication, the Immigration Judge ordinarily + cannot review the merits of that petition in removal proceedings.  Matter of + Mendes, 20 I&N Dec. 833 (BIA 1994), followed.

+ +
+ + + + + + + +
Aguilar Hernandez, 28 I&N Dec. 774 (BIA 2024)ID 4071 (PDF)
+ +

The Department of Homeland Security cannot remedy a notice to appear that lacks the date + and time of the initial hearing before the Immigration Judge by filing a Form I‑261 because + this remedy is contrary to the plain text of 8 C.F.R. § ‍1003.30 and inconsistent with the + Supreme Court’s decision in Niz-Chavez v. Garland, 593 U.S. 155 (2021).

+ +
+ + + + + + + +
PANIN, 28 I&N Dec. 771 (BIA 2024)ID 4070 (PDF)
+ +

A respondent’s release from Federal pretrial criminal custody does not preclude an + Immigration Judge from denying a respondent’s request for release from immigration detention + under section 236(a) of the Immigration and Nationality Act, 8 U.S.C. § 1226(a) (2018).

+ +
+ + + + + + + +
H. N. Ferreira, 28 I&N Dec. 765 (BIA 2023)ID 4069 (PDF)
+ +

Given the significance of a respondent’s interest in securing review of a denial of a + petition to remove the conditions on permanent residence, an Immigration Judge should + ordinarily review the denial of a Form I‑751 upon the request of the respondent.

+ +
+ + + + + + + +
M-R-M-S-, 28 I&N Dec. 757 (BIA 2023)ID + 4068 (PDF)
+ +

If a persecutor is targeting members of a certain family as a means of achieving some other + ultimate goal unrelated to the protected ground, family membership is incidental or + subordinate to that other ultimate goal and therefore not one central reason for the harm. + Matter of L-E-A-, 27 I&N Dec. 40 (BIA 2017), reaffirmed.

+ +
+ + + + + + + +
BRATHWAITE, 28 I&N Dec. 751 (BIA 2023)ID 4067 (PDF)
+ +

Because an appeal accepted under section 460.30 of the New York Criminal Procedure Law is + classified as a direct appeal, a respondent with a pending appeal under this section does + not have a final conviction for immigration purposes.  Brathwaite v. Garland, 3 + F.4th 542 (2d Cir. 2021), followed.

+ +
+ + + + + + + +
Cabrera-Fernandez, 28 I&N Dec. 747 (BIA 2023)ID 4066 (PDF)
+ +

(1) Release on conditional parole under section 236(a)(2)(B) of the Immigration and + Nationality Act, 8 U.S.C. § 1226(a)(2)(B) (2018), is legally distinct from release on + humanitarian parole under section 212(d)(5)(A) of the INA, 8 U.S.C. § 1182(d)(5)(A) (2018). + Matter of Castillo-Padilla, 25 I&N Dec. 257, 258–63 (BIA 2010), followed.

+ +

(2) Applicants for admission who are released on conditional parole rather than + humanitarian parole have not been “inspected and admitted or paroled,” and accordingly are + not eligible for adjustment of status under the Cuban Refugee Adjustment Act of November 2, + 1966, Pub. L. No. 89-732, 80 Stat. 1161, as amended

+ +
+ + + + + + + +
C-G-T-, 28 I&N Dec. 740 (BIA 2023)ID 4065 (PDF)
+ +

(1) Determining whether the government is or was unable or unwilling to protect the + respondent from harm is a fact-specific inquiry based on consideration of all evidence.

+ +

(2) A respondent’s failure to report harm is not necessarily fatal to a claim of + persecution if the respondent can demonstrate that reporting private abuse to government + authorities would have been futile or dangerous.

+ +

(3) When considering future harm, adjudicators should not expect a respondent to hide his + or her sexual orientation if removed to his or her native country.

+ +
+ + + + + + + +
J-G-R-, 28 I&N Dec. 733 (BIA 2023)ID 4064 (PDF)
+ +

(1)  Torturous conduct committed by a public official who is “acting in an + official capacity,” meaning acting under color of law, is covered by the + regulations implementing the Convention Against Torture, but such conduct by an + official who is not acting in an official capacity is not covered. Matter of O-F-A-S-, + 28 I&N Dec. 35 (A.G. 2020), followed.

+ +

(2)  The key consideration in determining if an official’s torturous conduct was + undertaken “in an official capacity” for purposes of CAT eligibility is whether the official + was able to engage in the conduct because of his or her government position, or whether the + official could have done so without connection to the government.

+ +
+ + + + + + + +
POUGATCHEV, 28 I&N Dec. 719 (BIA 2023)ID 4063 (PDF)
+ +

(1)  A conviction for burglary of a building under section 140.25(1)(d) of the New + York Penal Law is not categorically an aggravated felony burglary offense under section + 101(a)(43)(G) of the Immigration and Nationality Act, 8 U.S.C. § ‍1101(a)(43)(G) (2018), + because the statute is overbroad and indivisible with respect to the definition of + “building” under New York law.

+ +

(2)  A conviction for displaying what appears to be a pistol, revolver, rifle, + shotgun, machine gun, or other firearm while committing burglary under section 140.25(1)(d) + of the New York Penal Law necessarily involves the use, attempted use, or threatened use of + physical force against the person or property of another and therefore constitutes an + aggravated felony crime of violence under section 101(a)(43)(F) of the Immigration and + Nationality Act, 8 U.S.C. § 1101(a)(43)(F).

+ +
+ + + + + + + +
MORALES-MORALES, 28 I&N Dec 714 (BIA 2023)ID 4062 (PDF)
+ +

(1)  The Board of Immigration Appeals has authority to accept what are otherwise + untimely appeals, and consider them timely, in certain situations because 8 C.F.R. § + 1003.38(b) (2022) is a claim-processing rule and not a jurisdictional provision.  + Matter of Liadov, 23 I&N Dec. 990 (BIA 2006), overruled. +

+ +

(2)  The Board will accept a late-filed appeal where a party can establish that + equitable tolling applies, which requires the party to show both diligence in the filing of + the notice of appeal and that an extraordinary circumstance prevented timely filing

+ +
+ + + + + + + +
CANCINOS-MANCIO, 28 I&N Dec. 708 (BIA 2023)ID 4061 (PDF) +
+ +

Under the modified categorical approach, an Immigration Judge may consider the transcript + of a plea colloquy in determining the factual basis of a plea.

+ +
+ + + + + + + +
GARCIA, 28 I&N Dec. 693 (BIA 2023)ID 4060 (PDF) +
+ +

For choice of law purposes, the controlling circuit law in Immigration Court proceedings is + the law governing the geographic location of the Immigration Court where venue lies, namely + where jurisdiction vests and proceedings commence upon the filing of a charging document, + and will only change if an Immigration Judge subsequently grants a change of venue to + another Immigration Court. Matter of R-C-R-, 28 I&N Dec. 74 (BIA 2020), clarified.

+ +
+ + + + + + + +
DUARTE-GONZALEZ, 28 I&N Dec. 688 (BIA 2023)ID 4059 (PDF)
+ +

Noncitizens who are inadmissible for a specified period of time pursuant to section + 212(a)(9)(B)(i) of the Immigration and Nationality Act, 8 U.S.C. § 1182(a)(9)(B)(i), due to + their previous unlawful presence and departure are not required to reside outside the United + States during this period in order to subsequently overcome this ground of inadmissibility. +

+ +
+ + + + + + + +
J-L-L-, 28 I&N Dec. 684 (BIA 2023)ID 4058 (PDF)
+ +

Pereira v. Sessions, 138 S. Ct. 2105 (2018), and Niz-Chavez v. Garland, 141 + S. Ct. 1474 (2021), are inapplicable to proceedings initiated by a Notice to Applicant for + Admission Detained for Hearing Before Immigration Judge (“Form I-122”) and other charging + documents issued prior to the effective date of the Illegal Immigration Reform and Immigrant + Responsibility Act of 1996, Division C of Pub. L. No. 104-208, 110 Stat. 3009-546. Matter + of Arambula-Bravo, 28 I&N Dec. 388 (BIA 2021), followed.

+ +
+ + + + + + + +
CHEN, 28 I&N Dec. 676 (BIA 2023)ID 4057 (PDF)
+ +

(1) The “stop-time” rule under section 240A(d)(1) of the Immigration and Nationality Act, 8 + U.S.C. 1229b(d)(1), is not triggered by the entry of a final removal order, but rather only + by service of a statutorily compliant notice to appear or the commission of specified + criminal offenses, in accordance with the plain language statutory analysis provided in + Niz-Chavez v. Garland, 141 S. Ct. 1474 (2021). +

+ +

(2) Breaks in physical presence under section 240A(d)(2) of the Immigration and Nationality + Act, 8 U.S.C. 1229b(d)(2), continue to be interpreted as distinct from termination of + physical presence under the stop-time rule.  Matter of Mendoza-Sandino, 22 + I&N Dec. 1236 (BIA 2000), followed.

+ +

(3) A respondent claiming a fundamental change in law as the basis for seeking sua + sponte reopening must also establish prima facie eligibility for the relief sought.  + Matter of G‑D-, 22 I&N Dec. 1132 (BIA 1999), followed. +

+ +
+ + + + + + + +
MARISCAL-HERNANDEZ, 28 I&N Dec. 666 (BIA 2022)ID 4056 (PDF)
+ +

(1) Where an Immigration Judge finds that a traffic stop was nothing more than a routine + law enforcement action, a respondent has not established a prima face case of a Fourth + Amendment violation—much less an egregious violation—and is not entitled to a hearing on a + suppression motion. Matter of Barcenas, 19 I&N Dec. 609 (BIA 1988), followed.

+ +

(2) Unsupported assertions and speculation have no evidentiary value and are insufficient + to establish a prima facie case that an investigatory stop was an egregious violation of the + Fourth Amendment, and thus they do not warrant a suppression hearing.

+ +
+ + + + + + + +
TRIANA, 28 I&N Dec. 659 (BIA 2022)ID 4055 (PDF)
+ +

When determining whether a respondent is grandfathered for purposes of adjustment of status + under section 245(i) of the Immigration and Nationality Act, 8 U.S.C. § ‍1255(i) (2018), a + decision of the United States Citizenship and Immigration Services (“USCIS”) to approve a + visa petition filed on or before April 30, 2001, does not foreclose an Immigration Judge + from determining in removal proceedings whether that petition was “approvable when filed” + within the meaning of 8 C.F.R. § ‍1245.10(a)(1)(i) (2021).

+ +
+ + + + + + + +
K. GUPTA, 28 I&N Dec. 653 (BIA 2022)ID 4054 (PDF)
+ +

(1) Disbarment may be appropriate where an attorney knowingly disregards a prior order + of suspension from the Board of Immigration Appeals and claims on notices of entry of + appearance that he is not subject to any order restricting his right to practice law when he + is, in fact, suspended from practice before the Board, the Immigration Courts, and the + Department of Homeland Security.

+ +

(2)  While the Board will adopt the sanction proposed by the Disciplinary Counsels in + this case, the Board may deviate from a proposed sanction if the particular facts and + circumstances warrant a different result.

+ +
+ + + + + + + +
CORONADO ACEVEDO, 28 I&N Dec. 648 (A.G. 2022)ID 4053 (PDF)
+ +

(1) Matter of S-O-G- & F-D-B-, 27 I&N Dec. 462 (A.G. 2018), is overruled. +

+ +

(2) Pending the outcome of the rulemaking process, immigration judges and the Board of + Immigration of Appeals may consider and, where appropriate, grant termination or dismissal + of removal proceedings in certain types of limited circumstances, such as where a noncitizen + has obtained lawful permanent residence after being placed in removal proceedings, where the + pendency of removal proceedings causes adverse immigration consequences for a respondent who + must travel abroad to obtain a visa, or where termination is necessary for the respondent to + be eligible to seek immigration relief before United States Citizenship and Immigration + Services. 

+ +
+ + + + + + + +
BADOR, 28 I&N Dec. 638 (BIA 2022)ID 4052 (PDF)
+ +

(1) A fraud waiver under section 237(a)(1)(H) of the Immigration and Nationality Act + (“INA”), 8 U.S.C. § 1227(a)(1)(H) (2018), does not waive a respondent’s removability under + section 237(a)(1)(D)(i) of the INA, 8 U.S.C. § 1227(a)(1)(D)(i), where conditional permanent + residence was terminated for failure to file a joint petition, a ‍reason separate and + independent from fraud.  Matter of Gawaran, 20 I&N Dec. 938 (BIA 1995), + aff’d Gawaran v. INS, 91 F.3d 1332 (9th Cir. 1996), reaffirmed. +

+ +

(2) A section 237(a)(1)(H) fraud waiver cannot be used in place of, or in conjunction with, + a “good faith” waiver under section 216(c)(4)(B) of the INA, 8 U.S.C. § ‍1186a(c)(4)(B) + (2018), to waive the requirement to file a joint petition to remove conditions on residence + under section 216 of the INA, 8 U.S.C. § 1186a.

+ +
+ + + + + + + +
V-A-K-, 28 I&N Dec. 630 (BIA 2022)ID 4051 (PDF)
+ +

A conviction for second degree burglary of a dwelling under section 140.25(2) of the New + York Penal Law is categorically a conviction for generic burglary under section + 101(a)(43)(G) of the Immigration and Nationality Act (“INA”), 8 U.S.C. §‍ 1101(a)(43)(G) + (2018), because the statute requires burglary of a structure or vehicle that has been + adapted or is customarily used for overnight accommodation.  United States v. + Stitt, 139 S. Ct. 399 (2018), followed.

+ +
+ + + + + + + +
FERNANDES, 28 I&N Dec. 605 (BIA 2022)ID 4050 (PDF)
+ +

(1) The time and place requirement in section 239(a)(1) of the Immigration and Nationality + Act, 8 U.S.C. § 1229(a)(1) (2018), is a claim-processing rule, not a jurisdictional + requirement.

+ +

(2) An objection to a noncompliant notice to appear will generally be considered timely if + it is raised prior to the closing of pleadings before the Immigration Judge.

+ +

(3) A respondent who has made a timely objection to a noncompliant notice to appear is not + generally required to show he or she was prejudiced by missing time or place information. +

+ +

(4) An Immigration Judge may allow the Department Homeland Security to remedy a + noncompliant notice to appear without ordering the termination of removal proceedings.

+ +
+ + + + + + + +
ORTEGA-QUEZADA, 28 I&N Dec. 598 (BIA 2022)ID 4049 (PDF)
+ +

The respondent’s conviction for unlawfully selling or otherwise disposing of a firearm or + ammunition in violation of 18 U.S.C. § ‍922(d) (2018) does not render him removable as + charged under section 237(a)(2)(C) of the Immigration and Nationality Act, 8 U.S.C. §‍ + 1227(a)(2)(C) (2018), because § ‍922(d) is categorically overbroad and indivisible relative + to the definition of a firearms offense.

+ +
+ + + + + + + +
E-F-N-, 28 I&N Dec. 591 (BIA 2022)ID 4048 (PDF)
+ +

An Immigration Judge may rely on impeachment evidence as part of a credibility + determination where the evidence is probative and its admission is not fundamentally unfair, + and the witness is given an opportunity to respond to that evidence during the proceedings. +

+ +
+ + + + + + + +
NCHIFOR, 28 I&N Dec. 585 (BIA 2022)ID 4047 (PDF)
+ +

A respondent who raises an objection to missing time or place information in a notice to + appear for the first time in a motion to reopen has forfeited that objection.

+ +
+ + + + + + + +
D-L-S-, 28 I&N Dec. 568 (BIA 2022)ID 4046 (PDF)
+ +

A respondent who is subject to a deferred adjudication that satisfies the elements of + sections 101(a)(48)(A)(i) and (ii) of the Immigration and Nationality Act (“INA”), 8 U.S.C. + § ‍1101(a)(48)(A)(i) and (ii) (2018), has been “convicted by a final judgment” within the + meaning of the particularly serious crime bar under section 241(b)(3)(B)(ii) of the INA, 8 + ‍U.S.C. § 1231(b)(3)(B)(ii) (2018).

+ +
+ + + + + + + +
B-Z-R-, 28 I&N Dec. 563 (A.G. 2022)ID 4045 (PDF)
+ +

(1) Matter of G‑G‑S‑, 26 I&N Dec. 339 (BIA 2014), is overruled.

+ +

(2) Immigration adjudicators may consider a respondent’s mental health in determining + whether an individual, “having been convicted by a final judgment of a particularly serious + crime, constitutes a danger to the community of the United States.”  8 ‍U.S.C. § + ‍1158(b)(2)(A)(ii); see id § ‍1231(b)(3)(B)(ii). 

+ +
+ + + + + + + +
GERMAN SANTOS, 28 I&N Dec. 552 (BIA 2022)ID 4044 (PDF)
+ +

(1)   Any fact that establishes or increases the permissible range of punishment for a + ‍criminal offense is an “element” for purposes of the categorical approach, even if the term + “element” is defined differently under State law.  Matter of Laguerre, 28 + I&N Dec. 437 (BIA 2022), followed.

+ +

(2)   Title 35, section 780-113(a)(30) of the Pennsylvania Consolidated Statutes, + which punishes possession with intent to deliver a controlled substance, is divisible with + respect to the identity of the controlled substance possessed, and the respondent’s + conviction under this statute is one for a controlled substance violation under section + 237(a)(2)(B)(i) of the Immigration and Nationality Act, 8 U.S.C. § ‍1227(a)(2)(B)(i) (2018), + under the modified categorical approach.

+ +
+ + + + + + + +
DANG, 28 I&N Dec. 541 (BIA 2022)ID 4043 (PDF)
+ +

(1) The Supreme Court’s construction of “physical force” in Johnson v. ‍United + States, 559 U.S. 133 (2010), and Stokeling v. United States, 139 S.‍ Ct. 544 + (2019), controls our interpretation of 18 ‍U.S.C. § ‍16(a) (2018), which is incorporated by + reference into section 237(a)(2)(E)(i) of the Immigration and Nationality Act (“INA”), 8 + U.S.C. §‍ 1227(a)(2)(E)(i) (2018); the Court’s construction of “physical force” in United + States v. ‍Castleman, 572 U.S. 157 (2014), is inapplicable in this context.

+ +

(2) Because misdemeanor domestic abuse battery with child endangerment under section + 14:35.3(I) of the Louisiana Statutes extends to mere offensive touching, it is overbroad + with respect to § 16(a) and therefore is not categorically a crime of domestic violence + under section 237(a)(2)(E)(i) of the INA, 8 U.S.C. § ‍1227(a)(2)(E)(i).

+ +
+ + + + + + + +
DINGUS, 28 I&N Dec. 529 (BIA 2022)ID 4042 (PDF)
+ +

(1) If a State court’s nunc pro tunc order modifies or amends the subject matter of a + ‍conviction based on a procedural or substantive defect in the underlying criminal + proceedings, the original conviction is invalid for immigration purposes and we will give + full effect to the modified conviction; however, if the modification or amendment is entered + for reasons unrelated to the merits of the underlying proceedings, the modification will not + be given any effect and the original conviction remains valid.  Matter of + Pickering, 23 I&N Dec. 621 (BIA 2003), rev’d on other grounds, Pickering + v. ‍Gonzales, 465 F.3d 263 (6th Cir. 2006), followed.

+ +

(2) Section 18.2-248 of the Virginia Code, which criminalizes the distribution of a + ‍controlled substance, is divisible with respect to the identity of the specific “controlled + substance” involved in a violation of that statute.

+ +
+ + + + + + + +
S. WONG, 28 I&N Dec. 518 (BIA 2022)ID 4041 (PDF)
+ +

A finding of guilt in a proceeding that affords defendants all of the constitutional rights + of criminal procedure that are applicable without limitation and that are incorporated + against the States under the Fourteenth Amendment is a “conviction” for immigration purposes + under section 101(a)(48)(A) of the Immigration and Nationality Act, 8 U.S.C. § + ‍1101(a)(48)(A) (2018).  Matter of Eslamizar, 23 I&N Dec. 684 (BIA 2004), + clarified.

+ +
+ + + + + + + +
C. MORGAN, 28 I&N Dec. 508 (BIA 2022)ID 4040 (PDF)
+ +

Larceny in the third degree under section 53a-124(a) of the Connecticut General Statutes is + not a theft offense aggravated felony under section 101(a)(43)(G) of the Immigration and + Nationality Act, 8 U.S.C. § 1101(a)(43)(G) (2018), because it incorporates by reference a + definition of “larceny” under section 53a-119 of the Connecticut General Statutes that is + overbroad and indivisible with respect to the generic definition of a theft offense.  + Almeida v. Holder, 588 F.3d 778 (2d Cir. 2009), and Abimbola v. Ashcroft, 378 + ‍F.3d 173 (2d Cir. 2004), not followed. +

+ +
+ + + + + + + +
M-M-A-, 28 I&N Dec. 494 (BIA 2022)ID 4039 (PDF)
+ +

When the Department of Homeland Security raises the mandatory bar for filing a frivolous + asylum application under section 208(d)(6) of the Immigration and Nationality Act, 8 ‍U.S.C. + § ‍1158(d)(6) (2018), an Immigration Judge must make sufficient findings of fact and + conclusions of law on whether the requirements for a frivolousness determination under + Matter of Y‑L‑, 24 I&N Dec. 151 (BIA 2007), have been met. +

+ +
+ + + + + + + +
T-C-A-, 28 I&N Dec. 472 (BIA 2022)ID 4038 (PDF)
+ +

An applicant for adjustment of status under section 209(b) of the Immigration and + Nationality Act, 8 U.S.C. § 1159(b) (2018), must possess asylee status at the time of + adjustment, and thus an applicant whose asylee status has been terminated cannot adjust to + lawful permanent resident status under this provision.

+ +
+ + + + + + + +
F-R-A-, 28 I&N Dec. 460  (BIA 2022)ID 4037 (PDF)
+ +

The amount of forfeiture ordered in a criminal proceeding may be considered in determining + whether a crime of fraud or deceit resulted in a loss to a victim or victims exceeding + $10,000 pursuant to section 101(a)(43)(M)(i) of the Immigration and Nationality Act, 8 + U.S.C. § 1101(a)(43)(M)(i) (2018), if the amount set forth in the order is sufficiently + tethered and traceable to the conduct of conviction.

+ +
+ + + + + + + +
KOAT, 28 I&N Dec. 450  (BIA 2022)ID 4036 (PDF)
+ +

Section 714.1 of the Iowa Code is divisible with respect to whether a violation of the + statute involved theft by taking without consent or theft by fraud or deceit, permitting an + Immigration Judge to review the conviction record under a modified categorical approach to + determine whether the violation involved aggravated felony theft as defined in section + 101(a)(43)(G) of the Immigration and Nationality Act, 8 U.S.C. § 1101(a)(43)(G) (2018).

+ +
+ + + + + + + +
LAGUERRE, 28 I&N Dec. 437 (BIA 2022)ID 4035 (PDF)
+ +

Because the identity of the “controlled dangerous substance” possessed is an element + of the crime of possession of a controlled dangerous substance under section + 2C:35-10(a)(1) of the New Jersey Statutes Annotated, the statute is divisible with + respect to the specific substance possessed, and the record of conviction can be + examined under the modified categorical approach to determine whether that substance is + a controlled substance under Federal law.

+ +
+ + + + + + + +
LAPARRA, 28 I&N Dec. 425 (BIA 2022)ID 4034 (PDF)
+ +

A respondent receives sufficient written notice to support the entry of an in absentia + order of removal, even if he or she was served with a noncompliant notice to appear that did + not specify the time or place of the hearing, where the respondent was properly served with + a statutorily compliant notice of hearing specifying this information. Niz-Chavez v. + Garland, 141 S. Ct. 1474 (2021), distinguished. Matter of Pena-Mejia, 27 I&N Dec. 546 + (BIA 2019), and Matter of Miranda-Cordiero, 27 I&N Dec. 551 (BIA 2019), reaffirmed.

+ +
+ + + + + + + +
B-Z-R-, 28 I&N Dec. 424 (A.G. 2021)ID 4033 (PDF)
+ +

The Attorney General referred the decision of the Board of Immigration Appeals to himself + for review of issues relating to whether mental health may be considered when determining + whether an individual was convicted of a “particularly serious crime” within the meaning of + 8 U.S.C. §§ 1158(b)(2)(A)(ii) and 1231(b)(3)(B)(ii).

+ +
+ + + + + + + +
A. VALENZUELA, 28 I&N Dec. 418 (BIA 2021)ID 4032 (PDF)
+ +

The respondent’s conviction for carjacking under section 215(a) of the California Penal + Code is categorically a conviction for an aggravated felony crime of violence under section + 101(a)(43)(F) of the Immigration and Nationality Act, 8 U.S.C. § 1101(a)(43)(F) (2018).

+ +
+ + + + + + + +
M-F-O-, 28 I&N Dec. 408 (BIA 2021)ID 4031 (PDF)
+ +

A notice to appear that does not specify the time or place of a respondent’s initial + removal hearing does not end the accrual of physical presence for purposes of voluntary + departure at the conclusion of removal proceedings under section 240B(b) of the Immigration + and Nationality Act, 8 U.S.C. § 1229c(b) (2018), even if the respondent is later served with + a notice of hearing specifying this information.  Posos‑Sanchez v.‍ Garland, 3 + F.4th 1176 (9th Cir. 2021), followed.  Matter of Viera‑Garcia and + Ordonez‑Viera, 28 I&N Dec. 223 (BIA 2021), overruled in part.

+ +
+ + + + + + + +
KAGUMBAS, 28 I&N Dec. 400 (BIA 2021)ID 4030 (PDF)
+ +

An Immigration Judge has the authority to inquire into the bona fides of a marriage when + considering an application for adjustment of status under section 245(a) of the Immigration + and Nationality Act, 8 U.S.C. § 1255(a) (2018).

+ +
+ + + + + + + +
NEGUSIE, 28 I&N Dec. 399 (A.G. 2021)ID 4029 (PDF)
+ +

Pursuant to 8 C.F.R. § 1003.1(h)(1)(i), I direct the Board of Immigration Appeals (“Board”) + to refer this case to me for review of its decision. The Board’s decision in this matter is + automatically stayed pending my review. See Matter of Haddam, A.G. Order No. 2380-2001 (Jan. + 19, 2001).

+ +
+ + + + + + + +
ARAMBULA-BRAVO, 28 I&N Dec. 388 (BIA 2021)ID 4028 (PDF)
+ +

(1)  A Notice to Appear that does not specify the time and place of a respondent’s + initial removal hearing does not deprive the Immigration Judge of jurisdiction over the + respondent’s removal proceedings.  Pereira v. Sessions, 138 S. Ct. 2105 (2018), + and ‍Niz-Chavez v. Garland, 141 S. Ct. 1474 (2021), distinguished; Matter of + Bermudez-‍Cota, 27 I&N Dec. 441 (BIA 2018), and Matter of Rosales Vargas and + Rosales Rosales, 27 I&N Dec. 745 (BIA 2020), followed.

+ +

(2)  A Notice to Appear that lacks the time and place of a respondent’s initial + removal hearing constitutes a “charging document” as defined in 8 C.F.R. § 1003.13 (2021), + and is sufficient to terminate a noncitizen’s grant of parole under 8 C.F.R. § + ‍212.5(e)(2)(i) (2021).

+ +
+ + + + + + + +
N-V-G-, 28 I&N Dec. 380 (BIA 2021)ID 4027 (PDF)
+ +

A person who enters the United States as a refugee and later adjusts in the United States + to lawful permanent resident status is not precluded from establishing eligibility for a + waiver of inadmissibility under section 212(h) of the Immigration and Nationality Act, 8 + ‍U.S.C. § ‍1182(h) (2018), based on a conviction for an aggravated felony, because he or she + has not “previously been admitted to the United States as an alien lawfully admitted for + permanent residence” under that provision.

+ +
+ + + + + + + +
HERNANDEZ-ROMERO, 28 I&N Dec. 374 (BIA 2021)ID 4026 (PDF)
+ +

Section 240A(c)(6) of the Immigration and Nationality Act, 8 U.S.C. § 1229b(c)(6) (2018), + bars an applicant, who has previously been granted special rule cancellation of removal + under the Nicaraguan Adjustment and Central American Relief Act, Pub. L. No. 105-100, tit. + II, 111 Stat. 2160, 2193, 2198 (1997), amended by Pub. L. No. 105-139, 111 Stat. 2644 + (1997), from applying for cancellation of removal under section 240A(a) or (b)(1) of the + Act.

+ +
+ + + + + + + +
AGUILAR-BARAJAS, 28 I&N Dec. 354 (BIA 2021)ID 4025 (PDF)
+ +

(1) The offense of aggravated statutory rape under section 39-13-506(c) of the Tennessee + Code Annotated is categorically a “crime of child abuse” within the meaning of section + 237(a)(2)(E)(i) of the Immigration and Nationality Act, 8 U.S.C. § 1227(a)(2)(E)(i) (2018). +

+ +

(2) The Supreme Court’s holding that a statutory rape offense does not qualify as “sexual + abuse of a minor” based solely on the age of the participants, unless it involves a victim + under 16, does not affect our definition of a “crime of child abuse” in Matter of + Velazquez‑Herrera, 24 I&N Dec. 503 (BIA 2008), nor does it control whether the + respondent’s statutory rape offense falls within this definition.  Esquivel‑Quintana + v. ‍Sessions, 137 S. ‍Ct. 1562 (2017), distinguished

+ +
+ + + + + + + +
A-C-A-A-, 28 I&N Dec. 351 (A.G. 2021)ID 4024 (PDF)
+ +

(1) Matter of A-C-A-A-, 28 I&N Dec. 84 (A.G. 2020) (“A-C-A-A- I”), is + vacated in its entirety.  Immigration judges and the Board should no longer follow + A-C-A-A- I in pending or future cases and should conduct proceedings consistent with + this opinion and the opinions in Matter of L-E-A-‍, 28 I&N Dec. 304 (A.G. 2021) + (“L‑E‑A‑ III”), and Matter of A-B-, 28 I&N Dec. 307 (A.G. 2021) (“A‑B- + III”). +

+ +

(2) The Board’s longstanding review practices that A-C-A-A- I apparently prohibited, + including its case-by-case discretion to rely on immigration court stipulations, are + restored.

+ +
+ + + + + + + +
O-R-E-, 28 I&N Dec. 330 (BIA 2021)ID 4023 (PDF)
+ +

(1) Immigration Judges and the Board lack the authority to recognize the equitable defense + of laches in removal proceedings.

+ +

(2) The respondent’s willful misrepresentations regarding his name, location of his + residence, timing of his departure from Rwanda, and membership in political organizations on + his Registration for Classification as Refugee (Form I-590) and supporting documents were + “material” within the meaning of section 212(a)(6)(C)(i) of the Immigration and Nationality + Act, 8‍ U.S.C. § ‍1182(a)(6)(C)(i) (2018), and he is therefore removable under section + 237(a)(1)(A) of the Act, 8 U.S.C. § ‍1227(a)(1)(A) (2018).

+ +

(3) The evidence indicates that the respondent ordered, incited, assisted, or + otherwise participated in the Rwandan genocide, and he did not produce sufficient + countervailing evidence to demonstrate that he is not subject to the genocide bar at section + 212(a)(3)(E)(ii) of the Act.

+ +
+ + + + + + + +
CRUZ-VALDEZ, 28 I&N Dec. 326 (A.G. 2021)ID 4022 (PDF)
+ +

(1) Matter of Castro‑Tum, 27 I&N Dec. 271 (A.G. 2018), is overruled in its + entirety.

+ +

(2) While rulemaking proceeds and except when a court of appeals has held otherwise, + immigration judges and the Board should apply the standard for administrative closure set + out in Matter of Avetisyan, 25 I&N Dec. 688 (BIA 2012), and Matter of + W‑Y‑U‑, 27 I&N Dec. 17 (BIA 2017).

+ +
+ + + + + + + +
S-L-H- & L-B-L-, 28 I&N Dec. 318 (BIA 2021)ID 4021 (PDF)
+ +

(1) Immigration Judges may exercise their discretion to rescind an in absentia removal + order and grant reopening where an alien has established through corroborating evidence that + his or her late arrival at a removal hearing was due to “exceptional circumstances” under + section 240(e)(1) of the Immigration and Nationality Act, 8 ‍U.S.C. § 1229a(e)(1) (2018), + and, in doing so, should consider factors such as the extent of the alien’s tardiness, + whether the reasons for the alien’s tardiness are appropriately exceptional, and any other + relevant factors in the totality of the circumstances. 

+ +

(2) Corroborating evidence may include, but is not limited to, affidavits, traffic and + weather reports, medical records, verification of the alien’s arrival time at the courtroom, + and other documentation verifying the cause of the late arrival; however, general + statements—without corroborative evidence documenting the cause of the tardiness—are + insufficient to establish exceptional circumstances that would warrant reopening removal + proceedings.  Matter of S-A-, 21 I&N Dec. 1050 (BIA 1997), reaffirmed and + clarified.

+ +
+ + + + + + + +
MORADEL, 28 I&N Dec. 310  (BIA 2021)ID 4020 (PDF)
+ +

(1) An applicant for adjustment of status with Special Immigrant Juvenile status may, in + conjunction with a waiver under section 245(h)(2)(B) of the Immigration and Nationality Act, + 8 U.S.C. § 1255(h)(2)(B) (2018), seek to waive his or her inadmissibility under section + 212(a)(2)(A)(i)(II) of the Act, 8 U.S.C. § ‍1182(a)(2)(A)(i)(II) (2018), based on a single + offense of simple possession of 30 ‍grams or less of marijuana.

+ +

(2) The “simple possession” exception at section 245(h)(2)(B) calls for a + ‍circumstance‑specific inquiry into the nature of the conduct surrounding an applicant’s + simple possession offense.

+ +
+ + + + + + + +
A-B-, 28 I&N Dec. 307 (A.G. 2021)ID 4019 (PDF)
+ +

(1) Matter of A-B-, 27 I&N Dec. 316 (A.G. 2018) (“A-B- + I”), and Matter of A-B-, 28 I&N Dec. 199 (A.G. 2021) (“A-B- + II”), are vacated in their entirety. 

+ +

(2) Immigration judges and the Board should no longer follow A-B- I + or A-B- II when adjudicating pending or future cases. Instead, pending forthcoming + rulemaking, immigration judges and the Board should follow pre-A-B- I precedent, + including Matter of A-R-C-G-, 26 I&N Dec. 388 (BIA 2014).

+ +
+ + + + + + + +
L-E-A-, 28 I&N Dec. 304 (A.G. 2021)ID 4018 (PDF)
+ +

(1) Matter of L-E-A-, 27 I&N Dec. 581 (A.G. 2019) (“L-E-A- + II”), is vacated in its entirety so as to return the immigration system to the + preexisting state of affairs pending completion of the ongoing rulemaking process and the + issuance of a final rule addressing the definition of “particular social group.”
+
+ (2) Immigration judges and the Board should no longer follow L-E-A- II when + adjudicating pending and future cases. +

+ +
+ + + + + + + +
D-G-C-, 28 I&N Dec. 297 (BIA 2021)ID 4017 (PDF)
+ +

The mere continuation of an activity in the United States that is + substantially similar to the activity from which an initial claim of past persecution is + alleged and that does not significantly increase the risk of future harm is insufficient to + establish “changed circumstances” to excuse an untimely asylum application within the + meaning of section 208(a)(2)(D) of the Immigration and Nationality Act, 8 U.S.C. § + 1158(a)(2)(D) (2018).

+ +
+ + + + + + + +
MENSAH, 28 I&N Dec. 288 (BIA 2021)ID 4016 (PDF)
+ +

An Immigration Judge may rely on fraud or a willful misrepresentation of a + material fact made by an alien during an interview before the United States Citizenship and + Immigration Services to remove the conditional basis of an alien’s permanent resident status + in assessing whether the alien has demonstrated, for purposes of adjustment of status in + removal proceedings, that she is not inadmissible under section 212(a)(6)(C)(i) of the + Immigration and Nationality Act, 8 ‍U.S.C. § 1182(a)(6)(C)(i) (2018).

+ +
+ + + + + + + +
A-S-M-, 28 I&N Dec. 282 (BIA 2021)ID 4015 (PDF)
+ +

Where the Department of Homeland Security states that an applicant may be + removed to a country pursuant to section 241(b)(2) of the Immigration and Nationality Act, 8 + U.S.C. § ‍1231(b)(2) (2018), the applicant may seek withholding of removal from that country + in withholding-only proceedings, even if that country is different from the country of + removal that was originally designated in the reinstated removal order on which the + withholding‑only proceedings are based.

+ +
+ + + + + + + +
VUCETIC, 28 I&N Dec. 276 (BIA 2021)ID 4014 (PDF)
+ +

The offense of aggravated unlicensed operation of a motor vehicle in the first + degree in violation of section 511(3)(a)(i) of the New York Vehicle and Traffic Law, which + prohibits a person from driving under the influence of alcohol or drugs while knowing or + having reason to know that his or her license is suspended, is categorically a crime + involving moral turpitude. Matter of Lopez-Meza, 22 I&N Dec. 1188 (BIA 1999), + followed.

+ +
+ + + + + + + +
AL SABSABI, 28 I&N Dec. 269 (BIA 2021)ID 4013 (PDF)
+ +

(1) The “offense clause” of the Federal conspiracy statute, 18 U.S.C. § 371 + (2012), is divisible and the underlying substantive crime is an element of the + offense. 

+ +

(2) Because the substantive offense underlying the respondent’s Federal + conspiracy conviction—namely, selling counterfeit currency in violation of 18 U.S.C. § 473 + (2012)—is a crime involving moral turpitude, his conviction for conspiring to commit this + offense is likewise one for a crime involving moral turpitude.

+ +
+ + + + + + + +
AGUILAR-MENDEZ, 28 I&N Dec. 262 (BIA 2021)ID 4012 (PDF)
+ +

The respondent’s conviction for assault by means of force likely to produce + great bodily injury in violation of section 245(a)(4) of the California Penal Code is + categorically one for a crime involving moral turpitude. Matter of Wu, 27 I&N + Dec. 8 (BIA 2017), followed.

+ +
+ + + + + + + +
NEMIS, 28 I&N Dec. 250 (BIA 2021)ID 4011 (PDF)
+ +

(1) Applying the categorical approach, the conspiracy statute, 18 U.S.C. § 371 + (2012), is overbroad relative to the generic definition of a crime involving moral + turpitude, and divisible between the offense clause, which may or may not involve moral + turpitude, and the defraud clause of the statute, which is categorically a crime involving + moral turpitude.

+ +

(2) To determine whether a conspiracy conviction under the offense clause of + 18 U.S.C. § 371 constitutes a crime involving moral turpitude, the underlying statute of + conviction should be examined under the categorical, and if applicable, modified categorical + approach.

+ +

(3) The respondent’s conviction under 18 U.S.C. § 1546(a) (2012), punishing + fraud and misuse of visas, permits, and other documents, is overbroad and divisible such + that the modified categorical approach is applicable and it was proper to consider the + conviction records. Matter of Serna, 20 I&N Dec. 579 (BIA 1992), clarified.

+ +

(4) The respondent’s conviction for conspiracy to commit visa fraud in + violation of 18 U.S.C. §§ 371 and 1546(a) is a conviction for a crime involving moral + turpitude under the modified categorical approach.

+ +
+ + + + + + + +
L-L-P-, 28 I&N Dec. 241 (BIA 2021)ID 4010 + (PDF)
+ +

An applicant for special rule cancellation of removal under section 240A(b)(2) + of the Immigration and Nationality Act, 8 U.S.C. § 1229b(b)(2) (2018), based on spousal + abuse must demonstrate both that the abuser was his or her lawful spouse and possessed + either United States citizenship or lawful permanent resident status at the time of the + abuse. 

+ +
+ + + + + + + +
 H-L-S-A-, 28 I&N Dec. 228 (BIA 2021)ID + 4009 (PDF)
+ +

Individuals who cooperate with law enforcement may constitute a valid particular social + group under the Immigration and Nationality Act if their cooperation is public in nature, + particularly where testimony was given in public court proceedings, and the evidence in the + record reflects that the society in question recognizes and provides protection for such + cooperation.

+ +
+ + + + + + + +
VIERA-GARCIA and ORDONEZ-VIERA, 28 I&N Dec. 223 (BIA 2021)ID 4008 (PDF)
+ +

Where a notice to appear fails to specify the time or place of a respondent’s initial + removal hearing, the subsequent service of a notice of hearing specifying this information + perfects the notice to appear and ends the accrual of physical presence for purposes of + voluntary departure at the conclusion of removal proceedings pursuant to section 240B(b) of + the Immigration and Nationality Act, 8 U.S.C. § 1229c(b) (2018).

+ +
+ + + + + + + +
DIKHTYAR, 28 I&N Dec. 214 (BIA 2021)ID 4007 (PDF)
+ +

Section 58-37-8(2)(a)(i) of the Utah Code, which criminalizes possession or + use of a controlled substance, is divisible with respect to the identity of the specific + “controlled substance” involved in a violation of that statute.

+ +
+ + + + + + + +
A-B-, 28 I&N Dec. 199 (A.G. 2021)ID 4006 (PDF)
+ +

(1) Matter of A-B-, 27 I&N Dec. 316 (A.G. 2018), did not alter the + existing standard for determining whether a government is "unwilling or unable" to prevent + persecution by non-governmental actors. The "complete helplessness" language used in Matter + of A-B- is consistent with the longstanding "unable or unwilling" standard, as the two are + interchangeable formulations.

+ +

(2) The concept of "persecution" under the Immigration and Nationality Act, 8 U.S.C. §§ + 1101(a)(42)(A), 1158(b)(1)(a), (b)(i), is premised on a breach of a home country’s duty to + protect its citizens. In cases where an asylum applicant is the victim of violence or + threats by non-governmental actors, and the applicant’s home government has made efforts to + prevent such violence or threats, failures in particular cases or high levels of crime do + not establish a breach of the government’s duty to protect its citizenry.

+ +

(3) The two-pronged test articulated by the Board of Immigration Appeals in Matter of + L-E-A-, 27 I&N Dec. 40, 43–44 (BIA 2017), is the proper approach for determining + whether a protected ground is "at least one central reason" for an asylum applicant’s + persecution, 8 U.S.C. § 1158(b)(1)(B)(i). Under this test, the protected ground: (1) must be + a but-for cause of the wrongdoer’s act; and (2) must play more than a minor role—in other + words, it cannot be incidental or tangential to another reason for the act.

+ +
+ + + + + + + +
O-M-O-, 28 I&N Dec. 191 (BIA 2021)ID 4005 (PDF)
+ +

An Immigration Judge may find a document to be fraudulent without forensic + analysis or other expert testimony where the document contains obvious defects or readily + identifiable hallmarks of fraud and the party submitting the document is given an + opportunity to explain the defects.

+ +
+ + + + + + + +
RIVERA-MENDOZA, 28 I&N Dec. 184 (BIA 2020)ID 4004 (PDF)
+ +

The risk of harm to a child required to obtain a conviction for child neglect + in the second degree under section 163.545(1) of the Oregon Revised Statutes is sufficiently + high that the offense is categorically a “crime of child abuse, child neglect, or child + abandonment” under section 237(a)(2)(E)(i) of the Immigration and Nationality Act, 8 U.S.C. + § 1227(a)(2)(E)(i) (2018).

+ +
+ + + + + + + +
M-A-M-Z-, 28 I&N Dec. 173 (BIA 2020)ID 4003 (PDF) +
+ +

(1) Expert testimony is evidence, but only an Immigration Judge makes factual + findings. 

+ +

(2)  When the Immigration Judge makes a factual finding that is not consistent with an + expert’s opinion, it is important, as the Immigration Judge did here, to explain the reasons + behind the factual findings.

+ +
+ + + + + + + +
MELGAR, 28 I&N Dec. 169 (BIA 2020)ID 4002 (PDF) +
+ +

(1) Counsel’s acceptance of responsibility for error does not discharge the + disciplinary authority complaint obligation under Matter of Lozada, 19 I&N Dec. + 637 (BIA 1988), particularly where the ineffective assistance allegation is rendered by the + same attorney against himself.

+ +

(2) A respondent seeking reopening on the basis of a claim of ineffective + assistance of counsel must show a reasonable probability that, but for counsel’s error, he + would have prevailed on his claim.

+ +
+ + + + + + + +
PADILLA RODRIGUEZ, 28 I&N Dec. 164 (BIA 2020) + ID 4001 (PDF) +
+ +

(1) Where the temporary protected status (“TPS”) of an alien who was previously present in + the United States without being admitted or paroled is terminated, the alien remains + inadmissible under section 212(a)(6)(A)(i) of the Immigration and Nationality Act, 8‍ U.S.C. + §‍ 1182(a)(6)(A)(i) (2018), and removal proceedings should not be terminated.

+ +

(2) An alien whose TPS continues to be valid is considered to be “admitted” for purposes of + establishing eligibility for adjustment of status only within the jurisdictions of the + United States Courts of Appeals for the Sixth, Eighth, and Ninth Circuits.

+ +
+ + + + + + + +
H-Y-Z-, 28 I&N Dec. 156 (BIA 2020)ID 4000 (PDF) +
+ +

Absent a showing of prejudice on account of ineffective assistance of counsel, + or a showing that clearly undermines the validity and finality of the finding, it is + inappropriate for the Board to favorably exercise our discretion to reopen a case and vacate + an Immigration Judge’s frivolousness finding.

+ +
+ + + + + + + +
NEGUSIE, 28 I&N Dec. 120 (A.G. 2020)ID 3999 (PDF)
+ +

(1) The bar to eligibility for asylum and withholding of removal based on the + persecution of others does not include an exception for coercion or duress.

+ +

(2) The Department of Homeland Security does not have an evidentiary burden to + show that an applicant is ineligible for asylum and withholding of removal based on the + persecution of others. If evidence in the record indicates the persecutor bar may apply, the + applicant bears the burden of proving by a preponderance of the evidence that it does not. +

+ +
+ + + + + + + +
PAK, 28 I&N Dec. 113 (BIA 2020)ID 3998 (PDF)
+ +

Where there is substantial and probative evidence that a beneficiary’s prior marriage was + fraudulent and entered into for the purpose of evading the immigration laws, a subsequent + visa petition filed on the beneficiary’s behalf is properly denied pursuant to section + 204(c) of the Immigration and Nationality Act, 8 U.S.C. § 1154(c) (2018), even if the first + visa petition was denied because of insufficient evidence of a bona fide marital + relationship.

+ +
+ + + + + + + +
VOSS, 28 I&N Dec. 107 (BIA 2020)ID 3997 (PDF)
+ +

If a criminal conviction was charged as a ground of removability or was known + to the Immigration Judge at the time cancellation of removal was granted under section + 240A(a) of the Immigration and Nationality Act, 8 U.S.C. § 1229b(a) (2018), that conviction + cannot serve as the sole factual predicate for a charge of removability in subsequent + removal proceedings.

+ +
+ + + + + + + +
J-G-T-, 28 I&N Dec. 97 (BIA 2020)ID 3996 (PDF)
+ +

(1) In assessing whether to admit the testimony of a witness as an expert, an Immigration + Judge should consider whether it is sufficiently relevant and reliable for the expert to + offer an informed opinion, and if it is admitted, the Immigration Judge should then consider + how much weight the testimony should receive.

+ +

(2) In considering how much weight to give an expert’s testimony, the Immigration Judge + should assess how probative and persuasive the testimony is regarding key issues in dispute + for which the testimony is being offered.

+ +
+ + + + + + + +
A-C-A-A-,  28 I&N Dec. 84  (A.G. 2020)ID 3995 (PDF)
+ +

(1) In conducting its review of an alien’s asylum claim, the Board of + Immigration Appeals (“Board”) must examine de novo whether the facts found by the + immigration judge satisfy all of the statutory elements of asylum as a matter of law. See + Matter of R-A-F-, 27 I&N Dec. 778 (A.G. 2020).

+ +

(2) When reviewing a grant of asylum, the Board should not accept the parties’ stipulations + to, or failures to address, any of the particular elements of asylum—including, where + necessary, the elements of a particular social group. Instead, unless it affirms without + opinion under 8 C.F.R. § 1003.1(e)(4)(i), the Board should meaningfully review each element + of an asylum claim before affirming such a grant, or before independently ordering a grant + of asylum. See Matter of L-E-A-, 27 I&N Dec. 581, 589 (A.G. 2019).

+ +

(3) Even if an applicant is a member of a cognizable particular social group and has + suffered persecution, an asylum claim should be denied if the harm inflicted or threatened + by the persecutor is not “on account of” the alien’s membership in that group.  That + requirement is especially important to scrutinize where the asserted particular social group + encompasses many millions of persons in a particular society.  (4) An alien’s + membership in a particular social group cannot be “incidental, tangential, or subordinate to + the persecutor’s motivation . . . [for] why the persecutor[] sought to inflict harm.” + Matter of A-B-, 27 I&N Dec. 316, 338 (A.G. 2018) (citations omitted).  + Accordingly, persecution that results from personal animus or retribution generally does not + support eligibility for asylum. +

+ +
+ + + + + + + +
R-C-R-, 28 I&N Dec. 74 (BIA 2020)ID 3994 (PDF)
+ +

(1) After an Immigration Judge has set a firm deadline for filing an + application for relief, the respondent’s opportunity to file the application may be deemed + waived, prior to a scheduled hearing, if the deadline passes without submission of the + application and no good cause for noncompliance has been shown.

+ +

(2) The respondent failed to meet his burden of establishing that he was deprived of a full + and fair hearing where he has not shown that conducting the hearing by video conference + interfered with his communication with the Immigration Judge or otherwise prejudiced him as + a result of technical problems with the video equipment.

+ +
+ + + + + + + +
NIVELO CARDENAS, 28 I&N Dec. 68 (BIA 2020)ID 3993 (PDF)
+ +

(1) Where an alien who has been personally served with a notice to appear advising him of + the requirement to notify the Immigration Court of his correct address fails to do so and is + ordered removed in absentia for failure to appear for the scheduled hearing, reopening of + the proceedings to rescind his order of removal based on a lack of proper notice is not + warranted under section 240(b)(5)(C)(ii) of the Immigration and Nationality Act, 8 U.S.C. § + 1229a(b)(5)(C)(ii) (2018).

+ +

(2) The respondent’s failure to update his address for over 18 years indicates a lack of + due diligence and may properly be found to undermine the veracity of his claim that he has + taken actions to maintain his rights in the underlying removal proceedings.

+ +
+ + + + + + + +
REYES, 28 I&N Dec. 52 (A.G. 2020)ID 3992 (PDF)
+ +

(1) If all of the means of committing a crime, based on the elements of the statute of + conviction, amount to one or more of the offenses listed in section 101(a)(43) of the + Immigration and Nationality Act, 8 U.S.C. §1101(a)(43), then an alien who has been convicted + of that crime has necessarily been convicted of an aggravated felony for purposes of the + INA.

+ +

(2) The respondent’s conviction for grand larceny in the second degree under New York Penal + Law § 155.40(1) qualifies as a conviction for an aggravated felony for purposes of the INA. + DHS charged that the respondent had been convicted of either aggravated-felony theft or + aggravated-felony fraud, as defined in section 101(a)(43)(G) and (M)(i) of the INA, 8 U.S.C. + § 1101(a)(43)(G) and (M)(i). Larceny by acquiring lost property constitutes + aggravated-felony theft, and the parties do not dispute that the other means of violating + the New York statute correspond to either aggravated-felony theft or aggravated-felony + fraud. 

+ +
+ + + + + + + +
P-B-B-, 28 I&N Dec. 43 (BIA 2020)ID 3991 (PDF)
+ +

Section 13-3407 of the Arizona Revised Statutes, which criminalizes possession of a + dangerous drug, is divisible with regard to the specific “dangerous drug” involved in a + violation of that statute.

+ +
+ + + + + + + +
O‑F‑A‑S‑, 28 I&N Dec. 35 (A.G. 2020)ID 3990 (PDF)
+ +

(1) Under Department of Justice regulations implementing the Convention + Against Torture, an act constitutes "torture" only if it is inflicted or approved by a + public official or other person "acting in an official capacity." 8 C.F.R. § 1208.18(a)(1). + This official capacity requirement limits the scope of the Convention to actions performed + "under color of law." Matter of Y-L-, 23 I&N Dec. 270 (A.G. 2002). Nothing in + Matter of Y-L-, or any other Board precedent, should be construed to endorse a + distinct, "rogue official" standard. +

+ +

(2) The "under color of law" standard draws no categorical distinction between the acts of + low- and high-level officials. A public official, regardless of rank, acts "under color of + law" when he "exercise[s] power ‘possessed by virtue of . . . law and made possible only + because [he was] clothed with the authority of . . . law.’" West v. Atkins, 487 U.S. + 42, 47 (1988) (quoting United States v. Classic, 313 U.S. 299, 326 (1941)).

+ +
+ + + + + + + +
M-D-C-V-, 28 I&N Dec. 18 (BIA 2020)ID 3989 (PDF)
+ +

Under section 235(b)(2)(C) of the Immigration and Nationality Act, 8 U.S.C. § 1225(b)(2)(C) + (2018), an alien who is arriving on land from a contiguous foreign territory may be returned + by the Department of Homeland Security to that country pursuant to the Migrant Protection + Protocols, regardless of whether the alien arrives at or between a designated port of entry. +

+ +
+ + + + + + + +
BAY AREA LEGAL SERVICES, INC., 28 I&N Dec. 16 (DIR 2020) + ID 3988 (PDF)
+ +

 An amicus curiae is not a party in recognition and accreditation proceedings + and has no authority to seek further action following the conclusion of an administrative + review under 8 C.F.R. § 1292.18.

+ +
+ + + + + + + +
R. I. ORTEGA, 28 I&N Dec. 9 (BIA 2020)ID 3987 (PDF)
+ +

(1) An alien who has conspired to enter into a marriage for the purpose of evading the + immigration laws by seeking to secure a K-1 fiancé(e) nonimmigrant visa is subject to the + bar under section 204(c)(2) of the Immigration and Nationality Act, 8 U.S.C. § 1154(c)(2) + (2018).

+ +

(2) For purposes of section 204(c)(2) of the Act, a conspiracy requires an agreement to + enter into a marriage for the purpose of evading the immigration laws and an overt act in + furtherance of that agreement.

+ +
+ + + + + + + +
A-M-R-C-, 28 I&N Dec. 7 (A.G. 2020)ID 3986 (PDF)
+ +

 The Attorney General referred the decision of the Board of Immigration Appeals to + himself for review of issues relating to the effect of timing of referral; whether the Board + applied the correct legal standard and properly exercised its discretion in deciding issues + related to the serious nonpolitical crime bar and the persecutor bar; and whether the Board + applied the correct standard for determining whether a respondent’s in absentia trial + suffered from due process problems.

+ +
+ + + + + + + +
F-S-N-, 28 I&N Dec. 1 (BIA 2020)ID 3985 (PDF)
+ +

To prevail on a motion to reopen alleging changed country conditions where the + persecution claim was previously denied based on an adverse credibility finding in the + underlying proceedings, the respondent must either overcome the prior determination or show + that the new claim is independent of the evidence that was found to be not credible.

+
+
+ +
Updated April 16, 2024
+ + + +
+ +
+
+
+
+ +
+
+ +
+ +
+ + +
+
+ +
+
+ +
+
+
+
+ + +
+ + + - + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ca10_example.compare.json b/tests/examples/opinions/united_states/ca10_example.compare.json index 246613852..7f5da8491 100644 --- a/tests/examples/opinions/united_states/ca10_example.compare.json +++ b/tests/examples/opinions/united_states/ca10_example.compare.json @@ -1,57 +1,22 @@ [ { - "case_dates": "2021-11-12", - "case_names": "United States v. Etuk", - "download_urls": "https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110603775.pdf", - "precedential_statuses": "Unpublished", + "case_dates": "2023-11-14", + "case_names": "United States v. Taylor", + "download_urls": "https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110951897.pdf", + "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-5062", - "lower_courts": "United States District Court for the Northern District of Oklahoma - Tulsa", - "case_name_shorts": "Etuk" + "docket_numbers": "22-6114", + "case_name_shorts": "Taylor" }, { - "case_dates": "2021-11-12", - "case_names": "Powell v. Farris", - "download_urls": "https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110603745.pdf", - "precedential_statuses": "Unpublished", + "case_dates": "2023-11-14", + "case_names": "Duran v. Budaj", + "download_urls": "https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110951925.pdf", + "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-6089", - "lower_courts": "United States District Court for the Western District of Oklahoma - Oklahoma City", - "case_name_shorts": "Powell" - }, - { - "case_dates": "2021-11-12", - "case_names": "Ngo v. Garland", - "download_urls": "https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110603801.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21-9517", - "lower_courts": "Board of Immigration Appeals", - "case_name_shorts": "Ngo" - }, - { - "case_dates": "2021-11-12", - "case_names": "Grant v. Crow", - "download_urls": "https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110604402.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21-6139", - "lower_courts": "United States District Court for the Western District of Oklahoma - Oklahoma City", - "case_name_shorts": "Grant" - }, - { - "case_dates": "2021-11-12", - "case_names": "Blanco-Valdovinos v. Garland", - "download_urls": "https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110603734.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21-9512", - "lower_courts": "Board of Immigration Appeals", - "case_name_shorts": "Blanco-Valdovinos" + "docket_numbers": "22-1365", + "case_name_shorts": "Duran" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ca10_example.xml b/tests/examples/opinions/united_states/ca10_example.xml index 15251945f..2192b659b 100644 --- a/tests/examples/opinions/united_states/ca10_example.xml +++ b/tests/examples/opinions/united_states/ca10_example.xml @@ -1,54 +1 @@ - - - Tenth Circuit Daily Decisions - https://www.ca10.uscourts.gov/opinions-page - A feed of decisions posted by the United States Court of Appeals for the 10th Circuit - en - - - <p>Powell v. Farris</p> - - https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110603745.pdf - Docket#: 21-6089 - Date Issued: Fri Nov 12 2021 - Unpublished Order and Judgment - <span class="date-display-single" property="dc:date" datatype="xsd:dateTime" content="2021-11-12T00:00:00-07:00">Fri Nov 12 2021</span> - United States District Court for the Western District of Oklahoma - Oklahoma City - 10871678 - - - <p>United States v. Etuk</p> - - https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110603775.pdf - Docket#: 21-5062 - Date Issued: Fri Nov 12 2021 - Unpublished Order and Judgment - <span class="date-display-single" property="dc:date" datatype="xsd:dateTime" content="2021-11-12T00:00:00-07:00">Fri Nov 12 2021</span> - United States District Court for the Northern District of Oklahoma - Tulsa - 10871699 - - - <p>Ngo v. Garland</p> - - https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110603801.pdf - Docket#: 21-9517 - Date Issued: Fri Nov 12 2021 - Unpublished Order and Judgment - <span class="date-display-single" property="dc:date" datatype="xsd:dateTime" content="2021-11-12T00:00:00-07:00">Fri Nov 12 2021</span> - Board of Immigration Appeals - 10871708 - - - <p>Blanco-Valdovinos, et al. v. Garland</p> - - https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110603734.pdf - Docket#: 21-9512 - Date Issued: Fri Nov 12 2021 - Unpublished Order and Judgment - <span class="date-display-single" property="dc:date" datatype="xsd:dateTime" content="2021-11-12T00:00:00-07:00">Fri Nov 12 2021</span> - Board of Immigration Appeals - 10871674 - - - <p>Grant, et al. v. Crow, et al.</p> - - https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110604402.pdf - Docket#: 21-6139 - Date Issued: Fri Nov 12 2021 - Unpublished Order and Judgment - <span class="date-display-single" property="dc:date" datatype="xsd:dateTime" content="2021-11-12T00:00:00-07:00">Fri Nov 12 2021</span> - United States District Court for the Western District of Oklahoma - Oklahoma City - 10871978 - - - +\n \n Tenth Circuit Daily Decisions\n https://www.ca10.uscourts.gov/opinions-page\n A feed of decisions posted by the United States Court of Appeals for the 10th Circuit\n en\n \n \n United States v. Taylor\n https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110951897.pdf\n Docket#: 22-6114 - Date Issued: Tue Nov 14 2023 - Published Opinion\n Tue, 14 Nov 2023 08:40:01 -0700\n United States District Court for the Western District of Oklahoma - Oklahoma City\n 11044335\n \n \n Duran, et al. v. Budaj, et al.\n https://www.ca10.uscourts.gov/sites/ca10/files/opinions/010110951925.pdf\n Docket#: 22-1365 - Date Issued: Tue Nov 14 2023 - Published Opinion\n Tue, 14 Nov 2023 09:20:01 -0700\n United States District Court for the District of Colorado - Denver\n 11044352\n \n \n \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ca1_example.compare.json b/tests/examples/opinions/united_states/ca1_example.compare.json index 98c34c15e..9476c5f8a 100644 --- a/tests/examples/opinions/united_states/ca1_example.compare.json +++ b/tests/examples/opinions/united_states/ca1_example.compare.json @@ -1,882 +1,222 @@ [ { - "case_dates": "1993-06-24", - "case_names": "United States v. Mirna Rivera", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1749.01A", + "case_dates": "2024-02-29", + "case_names": "Esteban-Garcia v. Garland", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/23-1701P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-1749", - "lower_courts": "U.S. District Court for the District of Rhode Island", - "case_name_shorts": "" + "docket_numbers": "23-1701", + "lower_courts": "Board of Immigration Appeals (BIA)", + "case_name_shorts": "Esteban-Garcia" }, { - "case_dates": "1993-06-24", - "case_names": "United States v. De La Cruz", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1279.01A", + "case_dates": "2024-02-28", + "case_names": "Ferreira da Costa v. Albefaro de Lima", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/23-1548P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-1279", - "lower_courts": "U.S. District Court for the District of Massachusetts", + "docket_numbers": "23-1548", + "lower_courts": "District of Massachusetts, Boston", "case_name_shorts": "" }, { - "case_dates": "1993-06-24", - "case_names": "Municipality v. Prudential", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1651.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1651", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "Municipality" - }, - { - "case_dates": "1993-06-24", - "case_names": "Municipality v. Banco", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1651.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1651", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "Municipality" - }, - { - "case_dates": "1993-06-24", - "case_names": "King v. Martin Feed Mills", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=93-1113.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "93-1113", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "King" - }, - { - "case_dates": "1993-06-24", - "case_names": "Griffin v. Schneider", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=93-1253.01A", + "case_dates": "2024-02-23", + "case_names": "United States v. Sierra-Jimenez", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/21-1915P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "93-1253", - "lower_courts": "U.S. District Court for the District of Maine", - "case_name_shorts": "Griffin" + "docket_numbers": "21-1917", + "lower_courts": "District Court of Puerto Rico, San Juan", + "case_name_shorts": "Sierra-Jimenez" }, { - "case_dates": "1993-06-23", - "case_names": "United States v. American Heart", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2108.01A", + "case_dates": "2024-02-23", + "case_names": "United States v. Sierra-Jimenez", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/21-1915P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-2108", - "lower_courts": "U.S. District Court for the District of New Hampshire", - "case_name_shorts": "" + "docket_numbers": "21-1915", + "lower_courts": "District Court of Puerto Rico, San Juan", + "case_name_shorts": "Sierra-Jimenez" }, { - "case_dates": "1993-06-23", - "case_names": "Fischer v. Rollins", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=93-1519.01A", + "case_dates": "2024-02-23", + "case_names": "United States v. Rand", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/22-1979P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "93-1519", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Fischer" + "docket_numbers": "22-1979", + "lower_courts": "District Court of New Hampshire, Concord", + "case_name_shorts": "Rand" }, { - "case_dates": "1993-06-23", - "case_names": "Broderick v. Roache", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2389.01A", + "case_dates": "2024-02-23", + "case_names": "United States v. Crater", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/23-1159P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-2389", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Broderick" + "docket_numbers": "23-1159", + "lower_courts": "District of Massachusetts, Boston", + "case_name_shorts": "Crater" }, { - "case_dates": "1993-06-22", - "case_names": "United States v. Ricciardelli", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1424.01A", + "case_dates": "2024-02-22", + "case_names": "United States v. Katana", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/22-1867P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-1424", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Ricciardelli" + "docket_numbers": "22-1867", + "lower_courts": "District Court of MA, Worcester", + "case_name_shorts": "Katana" }, { - "case_dates": "1993-06-21", - "case_names": "United States v. St. Germaine", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2397.01A", + "case_dates": "2024-02-22", + "case_names": "Jiajing (Beijing) Tourism Co. Ltd. v. AeroBalloon USA, Inc.", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/23-1507P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-2397", - "lower_courts": "U.S. District Court for the District of Maine", + "docket_numbers": "23-1507", + "lower_courts": "District of Massachusetts, Boston", "case_name_shorts": "" }, { - "case_dates": "1993-06-21", - "case_names": "United States v. Ortiz Arrigotia", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=91-1290.01A", + "case_dates": "2024-02-22", + "case_names": "Berkley National Ins. Co. v. Atlantic-Newport Realty LLC", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/22-1959P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "91-1290", - "lower_courts": "U.S. District Court of Puerto Rico", + "docket_numbers": "22-1959", + "lower_courts": "District of Massachusetts, Boston", "case_name_shorts": "" }, { - "case_dates": "1993-06-16", - "case_names": "Topp v. Wolkowski", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2468.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2468", - "lower_courts": "U.S. District Court for the District of New Hampshire", - "case_name_shorts": "Topp" - }, - { - "case_dates": "1993-06-16", - "case_names": "Sierra Serpa v. Martinez", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=91-2062A.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "91-2062A", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "Martinez" - }, - { - "case_dates": "1993-06-16", - "case_names": "Amelung v. Milton Savings Bank", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=93-1223.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "93-1223", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Amelung" - }, - { - "case_dates": "1993-06-15", - "case_names": "Ward v. Hickey", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1883.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1883", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Ward" - }, - { - "case_dates": "1993-06-15", - "case_names": "Ward v. Hickey", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1883.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1883", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Ward" - }, - { - "case_dates": "1993-06-15", - "case_names": "Ward v. Hickey", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1883.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1883", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Ward" - }, - { - "case_dates": "1993-06-15", - "case_names": "Ward v. Hickey", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1883.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1883", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Ward" - }, - { - "case_dates": "1993-06-15", - "case_names": "United States v. Moore", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1546.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1546", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Moore" - }, - { - "case_dates": "1993-06-15", - "case_names": "Santoni Lorenzi v. Woolworth", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2109.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2109", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "Woolworth" - }, - { - "case_dates": "1993-06-14", - "case_names": "United States v. Kareem Agoro", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1834.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1834", - "lower_courts": "U.S. District Court for the District of Rhode Island", - "case_name_shorts": "" - }, - { - "case_dates": "1993-06-14", - "case_names": "Teresa J. Robleto v. Bush-Rodriguez", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2423.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2423", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "Bush-Rodriguez" - }, - { - "case_dates": "1993-06-14", - "case_names": "Nunnally v. MacCausland", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2302.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2302", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Nunnally" - }, - { - "case_dates": "1993-06-14", - "case_names": "Niemela v. U.S. of America", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2192.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2192", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Niemela" - }, - { - "case_dates": "1993-06-14", - "case_names": "Naidich v. Mitre Cor & Horowitz", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=93-1038.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "93-1038", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Naidich" - }, - { - "case_dates": "1993-06-14", - "case_names": "In Re: v. La. Electronica, Inc", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2369.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2369", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "" - }, - { - "case_dates": "1993-06-14", - "case_names": "Dempsey v. White", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=93-1164.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "93-1164", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Dempsey" - }, - { - "case_dates": "1993-06-14", - "case_names": "Bushway DeSouza v. United States", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2444.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2444", - "lower_courts": "U.S. District Court for the District of New Hampshire", - "case_name_shorts": "" - }, - { - "case_dates": "1993-06-14", - "case_names": "Agbosasa v. Cooper", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2421.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2421", - "lower_courts": "U.S. District Court for the District of Rhode Island", - "case_name_shorts": "Agbosasa" - }, - { - "case_dates": "1993-06-10", - "case_names": "Skidgel v. Maine HHS & Ives", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1764.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1764", - "lower_courts": "U.S. District Court for the District of Maine", - "case_name_shorts": "Skidgel" - }, - { - "case_dates": "1993-06-10", - "case_names": "Skidgel v. Maine HHS", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1764.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1764", - "lower_courts": "U.S. District Court for the District of Maine", - "case_name_shorts": "Skidgel" - }, - { - "case_dates": "1993-06-10", - "case_names": "Diekan v. Stone", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2462.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2462", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Diekan" - }, - { - "case_dates": "1993-06-10", - "case_names": "Buco v. United States", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=93-1222.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "93-1222", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Buco" - }, - { - "case_dates": "1993-06-09", - "case_names": "Stow v. State Prison", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2412.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2412", - "lower_courts": "U.S. District Court for the District of New Hampshire", - "case_name_shorts": "Stow" - }, - { - "case_dates": "1993-06-09", - "case_names": "Santiago-Jimenez v. SHHS", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1970.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1970", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "Santiago-Jimenez" - }, - { - "case_dates": "1993-06-09", - "case_names": "Rosa v. Figueroa Gomez,et al", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1715.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1715", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "Rosa" - }, - { - "case_dates": "1993-06-09", - "case_names": "Rosa v. Figueroa Gomez,et al", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1715.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1715", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "Rosa" - }, - { - "case_dates": "1993-06-09", - "case_names": "Rosa v. Figueroa Gomez,et al", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1715.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1715", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "Rosa" - }, - { - "case_dates": "1993-06-09", - "case_names": "Rosa Velazquez, Et v. Figueroa", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1715.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1715", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "Figueroa" - }, - { - "case_dates": "1993-06-09", - "case_names": "Mount v. Zobel", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2113.01A", + "case_dates": "2024-02-21", + "case_names": "Perry v. Spencer", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/16-2444P2-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-2113", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Mount" + "docket_numbers": "16-2444", + "lower_courts": "District of Massachusetts, Boston", + "case_name_shorts": "Perry" }, { - "case_dates": "1993-06-09", - "case_names": "Blanco v. U.S. of America", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2024.01A", + "case_dates": "2024-02-21", + "case_names": "McBreairty v. Miller", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/23-1389P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-2024", - "lower_courts": "U.S. District Court for the District of Rhode Island", - "case_name_shorts": "Blanco" + "docket_numbers": "23-1389", + "lower_courts": "District Court of Maine, Bangor", + "case_name_shorts": "McBreairty" }, { - "case_dates": "1993-06-08", - "case_names": "United States v. Person", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1982.01A", + "case_dates": "2024-02-20", + "case_names": "Gattineri v. Wynn MA, LLC", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/22-1117P2-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-1982", - "lower_courts": "U.S. District Court for the District of Rhode Island", - "case_name_shorts": "Person" + "docket_numbers": "22-1117", + "lower_courts": "District of Massachusetts, Boston", + "case_name_shorts": "Gattineri" }, { - "case_dates": "1993-06-08", - "case_names": "Santiago-Martinez v. United States", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2435.01A", + "case_dates": "2024-02-16", + "case_names": "Santiago-Martinez v. Fundacion Damas, Inc.", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/21-1718P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-2435", - "lower_courts": "U.S. District Court for the District of Rhode Island", + "docket_numbers": "21-1718", + "lower_courts": "District Court of Puerto Rico, San Juan", "case_name_shorts": "Santiago-Martinez" }, { - "case_dates": "1993-06-08", - "case_names": "Das v. Ciba", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1049.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1049", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Das" - }, - { - "case_dates": "1993-06-07", - "case_names": "Vermont Department v. FERC", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1165.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1165", - "lower_courts": "U.S. Tax Court, Washington, D.C.", - "case_name_shorts": "FERC" - }, - { - "case_dates": "1993-06-07", - "case_names": "Northeast Utils. v. FERC", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1165.01A", + "case_dates": "2024-02-16", + "case_names": "Boykin v. Genzyme Therapeutic Products, LP", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/23-1667P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-1165", - "lower_courts": "U.S. Tax Court, Washington, D.C.", - "case_name_shorts": "FERC" + "docket_numbers": "23-1667", + "lower_courts": "District of Massachusetts, Boston", + "case_name_shorts": "Boykin" }, { - "case_dates": "1993-06-07", - "case_names": "Massachusetts Muni. v. FERC", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1165.01A", + "case_dates": "2024-02-15", + "case_names": "Wilkins v. Genzyme Corporation", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/22-1782P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-1165", - "lower_courts": "U.S. Tax Court, Washington, D.C.", - "case_name_shorts": "FERC" + "docket_numbers": "22-1782", + "lower_courts": "District of Massachusetts, Boston", + "case_name_shorts": "Wilkins" }, { - "case_dates": "1993-06-07", - "case_names": "Concord v. FERC", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1165.01A", + "case_dates": "2024-02-14", + "case_names": "Vivaldi Servicios de Seguridad, Inc. v. Maiso Group, Corp.", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/23-1372P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-1165", - "lower_courts": "U.S. Tax Court, Washington, D.C.", - "case_name_shorts": "Concord" - }, - { - "case_dates": "1993-06-07", - "case_names": "City of Holyoke v. FERC", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1165.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1165", - "lower_courts": "U.S. Tax Court, Washington, D.C.", - "case_name_shorts": "FERC" - }, - { - "case_dates": "1993-06-07", - "case_names": "Central Maine Power v. FERC", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1165.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1165", - "lower_courts": "U.S. Tax Court, Washington, D.C.", - "case_name_shorts": "FERC" - }, - { - "case_dates": "1993-06-07", - "case_names": "Canal Electric Co. v. FERC", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1165.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1165", - "lower_courts": "U.S. Tax Court, Washington, D.C.", - "case_name_shorts": "FERC" - }, - { - "case_dates": "1993-06-04", - "case_names": "Washington Legal v. Massachusetts Bar", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1775.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1775", - "lower_courts": "U.S. District Court for the District of Massachusetts", + "docket_numbers": "23-1372", + "lower_courts": "District Court of Puerto Rico, San Juan", "case_name_shorts": "" }, { - "case_dates": "1993-06-04", - "case_names": "Tempelman v. USA", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2280.01A", + "case_dates": "2024-02-14", + "case_names": "Parmenter v. Prudential Ins. Co. of America", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/22-1614P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-2280", - "lower_courts": "U.S. District Court for the District of New Hampshire", - "case_name_shorts": "Tempelman" + "docket_numbers": "22-1614", + "lower_courts": "District of Massachusetts, Boston", + "case_name_shorts": "Parmenter" }, { - "case_dates": "1993-06-04", - "case_names": "Perez Velazquez v. SHHS", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2111.01A", + "case_dates": "2024-02-13", + "case_names": "Johnson v. City of Biddeford", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/23-1399P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-2111", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "SHHS" - }, - { - "case_dates": "1993-06-04", - "case_names": "Martel v. Stafford, Etc.", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2286.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2286", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Martel" - }, - { - "case_dates": "1993-06-04", - "case_names": "In Re: San Juan v.", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2312.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2312", - "lower_courts": "U.S. District Court of Puerto Rico", + "docket_numbers": "23-1399", + "lower_courts": "District Court of Maine, Portland", "case_name_shorts": "" }, { - "case_dates": "1993-06-03", - "case_names": "United States v. Brennan", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1169.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1169", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Brennan" - }, - { - "case_dates": "1993-06-03", - "case_names": "In Re: Nelson v. Taglienti", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2408.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2408", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Taglienti" - }, - { - "case_dates": "1993-06-02", - "case_names": "Southworth v. F", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1693.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1693", - "lower_courts": "", - "case_name_shorts": "Southworth" - }, - { - "case_dates": "1993-06-01", - "case_names": "Soling v. Brady", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2320.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2320", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Soling" - }, - { - "case_dates": "1993-06-01", - "case_names": "Serrano v. SHHS", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2308.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2308", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "Serrano" - }, - { - "case_dates": "1993-06-01", - "case_names": "In Re: Grand Jury v. Doe", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=93-1485.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "93-1485", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Doe" - }, - { - "case_dates": "1993-05-28", - "case_names": "United States v. Higgins", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2202.01A", + "case_dates": "2024-02-09", + "case_names": "SEC v. Gastauer", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/22-1865P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-2202", - "lower_courts": "U.S. District Court for the District of Maine", - "case_name_shorts": "Higgins" + "docket_numbers": "22-1865", + "lower_courts": "District of Massachusetts, Boston", + "case_name_shorts": "Gastauer" }, { - "case_dates": "1993-05-28", - "case_names": "United States v. Carty", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1613.01A", + "case_dates": "2024-02-09", + "case_names": "Rhode Island Truck Ctr v. Daimler Trucks North America", + "download_urls": "https://www.ca1.uscourts.gov/sites/ca1/files/opnfiles/22-1913P-01A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "92-1613", - "lower_courts": "U.S. District Court for the District of Rhode Island", - "case_name_shorts": "Carty" - }, - { - "case_dates": "1993-05-28", - "case_names": "O'Connor v. Steevs", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2134.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2134", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "O'Connor" - }, - { - "case_dates": "1993-05-27", - "case_names": "Stow v. Grimaldi", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2230.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2230", - "lower_courts": "U.S. District Court for the District of New Hampshire", - "case_name_shorts": "Stow" - }, - { - "case_dates": "1993-05-27", - "case_names": "Benefit Management v. Allstate Life Ins", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=91-1837.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "91-1837", - "lower_courts": "U.S. District Court for the District of Maine", - "case_name_shorts": "" - }, - { - "case_dates": "1993-05-27", - "case_names": "Baez Velez v. SHHS", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2438.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2438", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "SHHS" - }, - { - "case_dates": "1993-05-26", - "case_names": "Sullivan v. US Dept. of Justice", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2234.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2234", - "lower_courts": "U.S. District Court for the District of Maine", - "case_name_shorts": "Sullivan" - }, - { - "case_dates": "1993-05-26", - "case_names": "Ramirez Morales v. SHHS", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1897.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1897", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "SHHS" - }, - { - "case_dates": "1993-05-26", - "case_names": "Libertarian Party v. Diamond", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2026.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2026", - "lower_courts": "U.S. District Court for the District of Maine", - "case_name_shorts": "Diamond" - }, - { - "case_dates": "1993-05-26", - "case_names": "Glidden v. United States", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=93-1152.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "93-1152", - "lower_courts": "U.S. District Court for the District of Maine", - "case_name_shorts": "Glidden" - }, - { - "case_dates": "1993-05-26", - "case_names": "Boyd v. Boston Gas", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2150.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2150", - "lower_courts": "U.S. District Court for the District of Massachusetts", - "case_name_shorts": "Boyd" - }, - { - "case_dates": "1993-05-26", - "case_names": "Alvarez Crespo v. Olavarria Rivera", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2147.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2147", - "lower_courts": "U.S. District Court of Puerto Rico", + "docket_numbers": "22-1913", + "lower_courts": "District Court of Rhode Island, Providence", "case_name_shorts": "" - }, - { - "case_dates": "1993-05-25", - "case_names": "Rui v. INS", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2169.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2169", - "lower_courts": "U.S. Tax Court, Washington, D.C.", - "case_name_shorts": "Rui" - }, - { - "case_dates": "1993-05-25", - "case_names": "Rui v. INS", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2169.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2169", - "lower_courts": "U.S. Tax Court, Washington, D.C.", - "case_name_shorts": "Rui" - }, - { - "case_dates": "1993-05-25", - "case_names": "Perez-Perez v. Popular", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1836.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1836", - "lower_courts": "U.S. District Court of Puerto Rico", - "case_name_shorts": "Perez-Perez" - }, - { - "case_dates": "1993-05-25", - "case_names": "Oropallo v. U.S.A", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-1983.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-1983", - "lower_courts": "U.S. District Court for the District of New Hampshire", - "case_name_shorts": "Oropallo" - }, - { - "case_dates": "1993-05-25", - "case_names": "Mooney v. United States Dept.", - "download_urls": "http://media.ca1.uscourts.gov/cgi-bin/getopn.pl?OPINION=92-2409.01A", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "92-2409", - "lower_courts": "U.S. District Court for the District of New Hampshire", - "case_name_shorts": "Mooney" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ca1_example.html b/tests/examples/opinions/united_states/ca1_example.html index e0909fae7..2aa749d53 100644 --- a/tests/examples/opinions/united_states/ca1_example.html +++ b/tests/examples/opinions/united_states/ca1_example.html @@ -1,761 +1,600 @@ - - -USCA1 Opinions List - + + + + + + Published Opinions | First Circuit | United States Court of Appeals - - - - - - - - -
-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Date of IssuanceClick for
Opinion
Click for
DocketSheet
Short Title/District
1993/05/25 - 92-1836.01A - - 92-1836 -  Perez-Perez v. Popular -
    - U.S. District Court of Puerto Rico - -
1993/05/25 - 92-1983.01A - - 92-1983 -  Oropallo v. U.S.A -
    - U.S. District Court for the District of New Hampshire - -
1993/05/25 - 92-2169.01A - - 92-2169 -  Rui v. INS -
    - U.S. Tax Court, Washington, D.C. - -
1993/05/25 - 92-2169.01A - - 93-1294 -  Rui v. INS -
    - U.S. Tax Court, Washington, D.C. - -
1993/05/25 - 92-2409.01A - - 92-2409 -  Mooney v. United States Dept. -
    - U.S. District Court for the District of New Hampshire - -
1993/05/26 - 92-1897.01A - - 92-1897 -  Ramirez Morales v. SHHS -
    - U.S. District Court of Puerto Rico - -
1993/05/26 - 92-2026.01A - - 92-2026 -  Libertarian Party v. Diamond -
    - U.S. District Court for the District of Maine - -
1993/05/26 - 92-2147.01A - - 92-2147 -  Alvarez Crespo v. Olavarria Rivera -
    - U.S. District Court of Puerto Rico - -
1993/05/26 - 92-2150.01A - - 92-2150 -  Boyd v. Boston Gas -
    - U.S. District Court for the District of Massachusetts - -
1993/05/26 - 92-2234.01A - - 92-2234 -  Sullivan v. US Dept. of Justice -
    - U.S. District Court for the District of Maine - -
1993/05/26 - 93-1152.01A - - 93-1152 -  Glidden v. USA -
    - U.S. District Court for the District of Maine - -
1993/05/27 - 91-1837.01A - - 91-1837 -  Benefit Management v. Allstate Life Ins -
    - U.S. District Court for the District of Maine - -
1993/05/27 - 92-2230.01A - - 92-2230 -  Stow v. Grimaldi, et al -
    - U.S. District Court for the District of New Hampshire - -
1993/05/27 - 92-2438.01A - - 92-2438 -  Baez Velez v. SHHS -
    - U.S. District Court of Puerto Rico - -
1993/05/28 - 92-1613.01A - - 92-1613 -  US v. Carty -
    - U.S. District Court for the District of Rhode Island - -
1993/05/28 - 92-2134.01A - - 92-2134 -  O'Connor v. Steevs, Et Al. -
    - U.S. District Court for the District of Massachusetts - -
1993/05/28 - 92-2202.01A - - 92-2202 -  United States v. Higgins -
    - U.S. District Court for the District of Maine - -
1993/06/01 - 92-2308.01A - - 92-2308 -  Serrano v. SHHS -
    - U.S. District Court of Puerto Rico - -
1993/06/01 - 92-2320.01A - - 92-2320 -  Soling v. Brady, et al -
    - U.S. District Court for the District of Massachusetts - -
1993/06/01 - 93-1485.01A - - 93-1485 -  In Re: Grand Jury v. Doe -
    - U.S. District Court for the District of Massachusetts - -
1993/06/02 - 92-1693.01A - - 92-1693 -  Southworth v. F + +
+
+
+ + +
+
+ + + +
+
+ + +
+ + +

You are here

+ + +

+ Published Opinions

+ + +
+
+ +

+ Opinions

+ +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Date of Issuance + Click for Opinion + Click for DocketSheet + Short Title/District
+ 2024/02/29 + + 23-1701 + + Esteban-Garcia v. Garland
Board of Immigration Appeals + (BIA)
+ 2024/02/28 + + 23-1548 + + Ferreira da Costa v. Albefaro de Lima
District of + Massachusetts, Boston
+ 2024/02/23 + + 21-1915 + + US v. Sierra-Jimenez
District Court of Puerto Rico, San + Juan
+ 2024/02/23 + + 21-1917 + + US v. Sierra-Jimenez
District Court of Puerto Rico, San + Juan
+ 2024/02/23 + + 22-1979 + + US v. Rand
District Court of New Hampshire, Concord +
+ 2024/02/23 + + 23-1159 + + US v. Crater
District of Massachusetts, Boston
+ 2024/02/22 + + 22-1867 + + US v. Katana
District Court of MA, Worcester
+ 2024/02/22 + + 22-1959 + + Berkley National Ins. Co. v. Atlantic-Newport Realty + LLC
District of Massachusetts, Boston
+ 2024/02/22 + + 23-1507 + + Jiajing (Beijing) Tourism Co. Ltd. v. AeroBalloon USA, + Inc.
District of Massachusetts, Boston
+ 2024/02/21 + + 16-2444 + + Perry v. Spencer
District of Massachusetts, Boston +
+ 2024/02/21 + + 23-1389 + + McBreairty v. Miller
District Court of Maine, Bangor +
+ 2024/02/20 + + 22-1117 + + Gattineri v. Wynn MA, LLC
District of Massachusetts, + Boston
+ 2024/02/16 + + 21-1718 + + Santiago-Martinez v. Fundacion Damas, Inc.
District Court + of Puerto Rico, San Juan
+ 2024/02/16 + + 23-1667 + + Boykin v. Genzyme Therapeutic Products, LP
District of + Massachusetts, Boston
+ 2024/02/15 + + 22-1782 + + Wilkins v. Genzyme Corporation
District of Massachusetts, + Boston
+ 2024/02/14 + + 22-1614 + + Parmenter v. Prudential Ins. Co. of America
District of + Massachusetts, Boston
+ 2024/02/14 + + 23-1372 + + Vivaldi Servicios de Seguridad, Inc. v. Maiso Group, + Corp.
District Court of Puerto Rico, San Juan
+ 2024/02/13 + + 23-1399 + + Johnson v. City of Biddeford
District Court of Maine, + Portland
+ 2024/02/09 + + 22-1865 + + SEC v. Gastauer
District of Massachusetts, Boston +
+ 2024/02/09 + + 22-1913 + + Rhode Island Truck Ctr v. Daimler Trucks North + America
District Court of Rhode Island, Providence +
+
+ +

Pages

+ + + + + + +
+
+ + + +
+
+ +
+
+ + +
+
+
+ -
    - -
1993/06/03 - 92-1169.01A - - 92-1169 -  United States v. Brennan -
    - U.S. District Court for the District of Massachusetts - -
1993/06/03 - 92-2408.01A - - 92-2408 -  In Re: Nelson v. Taglienti -
    - U.S. District Court for the District of Massachusetts - -
1993/06/04 - 92-1775.01A - - 92-1775 -  Washington Legal v. Massachusetts Bar -
    - U.S. District Court for the District of Massachusetts - -
1993/06/04 - 92-2111.01A - - 92-2111 -  Perez Velazquez v. SHHS -
    - U.S. District Court of Puerto Rico - -
1993/06/04 - 92-2280.01A - - 92-2280 -  Tempelman v. USA, et al -
    - U.S. District Court for the District of New Hampshire - -
1993/06/04 - 92-2286.01A - - 92-2286 -  Martel v. Stafford, Etc. -
    - U.S. District Court for the District of Massachusetts - -
1993/06/04 - 92-2312.01A - - 92-2312 -  In Re: San Juan v. -
    - U.S. District Court of Puerto Rico - -
1993/06/07 - 92-1165.01A - - 92-1165 -  Northeast Utils. v. FERC -
    - U.S. Tax Court, Washington, D.C. - -
1993/06/07 - 92-1165.01A - - 92-1261 -  Vermont Department v. FERC -
    - U.S. Tax Court, Washington, D.C. - -
1993/06/07 - 92-1165.01A - - 92-1262 -  Massachusetts Muni. v. FERC -
    - U.S. Tax Court, Washington, D.C. - -
1993/06/07 - 92-1165.01A - - 92-1263 -  Concord, Et Al v. FERC -
    - U.S. Tax Court, Washington, D.C. - -
1993/06/07 - 92-1165.01A - - 92-1264 -  Central Maine Power v. FERC -
    - U.S. Tax Court, Washington, D.C. - -
1993/06/07 - 92-1165.01A - - 92-1316 -  City of Holyoke v. FERC -
    - U.S. Tax Court, Washington, D.C. - -
1993/06/07 - 92-1165.01A - - 92-1328 -  Canal Electric Co., v. FERC -
    - U.S. Tax Court, Washington, D.C. - -
1993/06/08 - 92-1049.01A - - 92-1049 -  Das v. Ciba -
    - U.S. District Court for the District of Massachusetts - -
1993/06/08 - 92-1982.01A - - 92-1982 -  US v. Person -
    - U.S. District Court for the District of Rhode Island - -
1993/06/08 - 92-2435.01A - - 92-2435 -  Santiago-Martinez v. USA -
    - U.S. District Court for the District of Rhode Island - -
1993/06/09 - 92-1715.01A - - 92-1715 -  Rosa v. Figueroa Gomez,et al -
    - U.S. District Court of Puerto Rico - -
1993/06/09 - 92-1715.01A - - 92-2155 -  Rosa Velazquez, Et v. Figueroa, Et Al. -
    - U.S. District Court of Puerto Rico - -
1993/06/09 - 92-1715.01A - - 92-2222 -  Rosa v. Figueroa Gomez,et al -
    - U.S. District Court of Puerto Rico - -
1993/06/09 - 92-1715.01A - - 92-2223 -  Rosa v. Figueroa Gomez,et al -
    - U.S. District Court of Puerto Rico - -
1993/06/09 - 92-1970.01A - - 92-1970 -  Santiago-Jimenez v. SHHS -
    - U.S. District Court of Puerto Rico - -
1993/06/09 - 92-2024.01A - - 92-2024 -  Blanco v. U.S. of America -
    - U.S. District Court for the District of Rhode Island - -
1993/06/09 - 92-2113.01A - - 92-2113 -  Mount v. Zobel -
    - U.S. District Court for the District of Massachusetts - -
1993/06/09 - 92-2412.01A - - 92-2412 -  Stow v. State Prison, et al -
    - U.S. District Court for the District of New Hampshire - -
1993/06/10 - 92-1764.01A - - 92-1764 -  Skidgel v. Maine HHS -
    - U.S. District Court for the District of Maine - -
1993/06/10 - 92-1764.01A - - 92-1824 -  Skidgel v. Maine HHS & Ives -
    - U.S. District Court for the District of Maine - -
1993/06/10 - 92-2462.01A - - 92-2462 -  Diekan v. Stone -
    - U.S. District Court for the District of Massachusetts - -
1993/06/10 - 93-1222.01A - - 93-1222 -  Buco v. USA -
    - U.S. District Court for the District of Massachusetts - -
1993/06/14 - 92-1834.01A - - 92-1834 -  US v. Kareem Agoro -
    - U.S. District Court for the District of Rhode Island - -
1993/06/14 - 92-2192.01A - - 92-2192 -  Niemela v. U.S. of America -
    - U.S. District Court for the District of Massachusetts - -
1993/06/14 - 92-2302.01A - - 92-2302 -  Nunnally v. MacCausland -
    - U.S. District Court for the District of Massachusetts - -
1993/06/14 - 92-2369.01A - - 92-2369 -  In Re: v. La. Electronica, Inc -
    - U.S. District Court of Puerto Rico - -
1993/06/14 - 92-2421.01A - - 92-2421 -  Agbosasa v. Cooper, et al -
    - U.S. District Court for the District of Rhode Island - -
1993/06/14 - 92-2423.01A - - 92-2423 -  Teresa J. Robleto v. Bush-Rodriguez -
    - U.S. District Court of Puerto Rico - -
1993/06/14 - 92-2444.01A - - 92-2444 -  Bushway DeSouza v. USA -
    - U.S. District Court for the District of New Hampshire - -
1993/06/14 - 93-1038.01A - - 93-1038 -  Naidich v. Mitre Cor & Horowitz -
    - U.S. District Court for the District of Massachusetts - -
1993/06/14 - 93-1164.01A - - 93-1164 -  Dempsey v. White -
    - U.S. District Court for the District of Massachusetts - -
1993/06/15 - 92-1546.01A - - 92-1546 -  U.S v. Moore -
    - U.S. District Court for the District of Massachusetts - -
1993/06/15 - 92-1883.01A - - 92-1883 -  Ward v. Hickey, Et Al., -
    - U.S. District Court for the District of Massachusetts - -
1993/06/15 - 92-1883.01A - - 92-2240 -  Ward v. Hickey, Et Al., -
    - U.S. District Court for the District of Massachusetts - -
1993/06/15 - 92-1883.01A - - 92-2241 -  Ward v. Hickey, Et Al., -
    - U.S. District Court for the District of Massachusetts - -
1993/06/15 - 92-1883.01A - - 92-2271 -  Ward v. Hickey, Et Al., -
    - U.S. District Court for the District of Massachusetts - -
1993/06/15 - 92-2109.01A - - 92-2109 -  Santoni Lorenzi v. Woolworth -
    - U.S. District Court of Puerto Rico - -
1993/06/16 - 91-2062A.01A - - 91-2062 -  Sierra Serpa v. Martinez, Et. Al. -
    - U.S. District Court of Puerto Rico - -
1993/06/16 - 92-2468.01A - - 92-2468 -  Topp v. Wolkowski -
    - U.S. District Court for the District of New Hampshire - -
1993/06/16 - 93-1223.01A - - 93-1223 -  Amelung v. Milton Savings Bank -
    - U.S. District Court for the District of Massachusetts - -
1993/06/21 - 91-1290.01A - - 91-1290 -  United States v. Ortiz Arrigotia -
    - U.S. District Court of Puerto Rico - -
1993/06/21 - 92-2397.01A - - 92-2397 -  United States v. St. Germaine -
    - U.S. District Court for the District of Maine - -
1993/06/22 - 92-1424.01A - - 92-1424 -  US v. Ricciardelli -
    - U.S. District Court for the District of Massachusetts - -
1993/06/23 - 92-2108.01A - - 92-2108 -  USA v. American Heart -
    - U.S. District Court for the District of New Hampshire - -
1993/06/23 - 92-2389.01A - - 92-2389 -  Broderick v. Roache -
    - U.S. District Court for the District of Massachusetts - -
1993/06/23 - 93-1519.01A - - 93-1519 -  Fischer v. Rollins -
    - U.S. District Court for the District of Massachusetts - -
1993/06/24 - 92-1279.01A - - 92-1279 -  United States v. De La Cruz -
    - U.S. District Court for the District of Massachusetts - -
1993/06/24 - 92-1651.01A - - 92-1651 -  Municipality v. Banco -
    - U.S. District Court of Puerto Rico - -
1993/06/24 - 92-1651.01A - - 92-1652 -  Municipality v. Prudential -
    - U.S. District Court of Puerto Rico - -
1993/06/24 - 92-1749.01A - - 92-1749 -  US v. Mirna Rivera -
    - U.S. District Court for the District of Rhode Island - -
1993/06/24 - 93-1113.01A - - 93-1113 -  King v. Martin Feed Mills -
    - U.S. District Court for the District of Massachusetts - -
1993/06/24 - 93-1253.01A - - 93-1253 -  Griffin v. Schneider -
    - U.S. District Court for the District of Maine - -

\ No newline at end of file + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ca2_p_example.compare.json b/tests/examples/opinions/united_states/ca2_p_example.compare.json index b12048bcd..824fc4883 100644 --- a/tests/examples/opinions/united_states/ca2_p_example.compare.json +++ b/tests/examples/opinions/united_states/ca2_p_example.compare.json @@ -896,7 +896,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "10-4934-cv (L) 10-4965-cv (Con)", + "docket_numbers": "10-4934-cv (L); 10-4965-cv (Con)", "case_name_shorts": "" }, { diff --git a/tests/examples/opinions/united_states/ca2_u_example.compare.json b/tests/examples/opinions/united_states/ca2_u_example.compare.json index b12048bcd..824fc4883 100644 --- a/tests/examples/opinions/united_states/ca2_u_example.compare.json +++ b/tests/examples/opinions/united_states/ca2_u_example.compare.json @@ -896,7 +896,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "10-4934-cv (L) 10-4965-cv (Con)", + "docket_numbers": "10-4934-cv (L); 10-4965-cv (Con)", "case_name_shorts": "" }, { diff --git a/tests/examples/opinions/united_states/ca7_example.compare.json b/tests/examples/opinions/united_states/ca7_example.compare.json index a563c1b28..6d74d3051 100644 --- a/tests/examples/opinions/united_states/ca7_example.compare.json +++ b/tests/examples/opinions/united_states/ca7_example.compare.json @@ -7,7 +7,10 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2913", - "case_name_shorts": "" + "judges": "Wood", + "case_name_shorts": "", + "authors": "Wood", + "per_curiam": false }, { "case_dates": "2023-01-13", @@ -17,7 +20,10 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1002", - "case_name_shorts": "" + "judges": "Easterbrook", + "case_name_shorts": "", + "authors": "Easterbrook", + "per_curiam": false }, { "case_dates": "2023-01-12", @@ -27,7 +33,10 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1414", - "case_name_shorts": "" + "judges": "Sykes", + "case_name_shorts": "", + "authors": "Sykes", + "per_curiam": false }, { "case_dates": "2023-01-11", @@ -37,7 +46,10 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1840", - "case_name_shorts": "" + "judges": "", + "case_name_shorts": "", + "authors": "", + "per_curiam": true }, { "case_dates": "2023-01-11", @@ -47,6 +59,9 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1421", - "case_name_shorts": "" + "judges": "Easterbrook", + "case_name_shorts": "", + "authors": "Easterbrook", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ca8_example.compare.json b/tests/examples/opinions/united_states/ca8_example.compare.json index 8a6e589db..f33bd14ce 100644 --- a/tests/examples/opinions/united_states/ca8_example.compare.json +++ b/tests/examples/opinions/united_states/ca8_example.compare.json @@ -1,112 +1,1388 @@ [ { - "case_dates": "2013-05-03", - "case_names": "Yussuf Hamid v. JPMorgan Chase Bank", - "download_urls": "http://media.ca8.uscourts.gov/opndir/13/05/123977U.pdf", + "case_dates": "2024-08-30", + "case_names": "United States v. Jeremy Dobson", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233211U.pdf", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "12-3977", + "docket_numbers": "23-3211", + "lower_courts": "U.S. District Court for the Western District of Missouri - Kansas City", "case_name_shorts": "" }, { - "case_dates": "2013-05-03", - "case_names": "United States v. Jeffrey Rand", - "download_urls": "http://media.ca8.uscourts.gov/opndir/13/05/123151U.pdf", + "case_dates": "2024-08-29", + "case_names": "United States v. Shawn Scherer", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232402P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2402", + "lower_courts": "U.S. District Court for the District of North Dakota - Eastern", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-29", + "case_names": "United States v. John Richmond", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241752U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1752", + "lower_courts": "U.S. District Court for the District of North Dakota - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-29", + "case_names": "United States v. James Sterner", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241213U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1213", + "lower_courts": "U.S. District Court for the Northern District of Iowa - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-29", + "case_names": "United States v. Darris Mull", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233424P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3424", + "lower_courts": "U.S. District Court for the Western District of Missouri - Springfield", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-29", + "case_names": "Marc Bakambia v. Stephen Craane", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241489U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1489", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-29", + "case_names": "JES Farms Partnership v. Indigo Ag Inc.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232565P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2565", + "lower_courts": "U.S. District Court for the District of South Dakota - Southern", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-29", + "case_names": "Erica Barrett v. O'Reilly Automotive, Inc.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232501P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2501", + "lower_courts": "U.S. District Court for the Western District of Missouri - Springfield", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-28", + "case_names": "United States v. Reginald Doss", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/223662U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-3662", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-28", + "case_names": "United States v. Michael Heinitz", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241292U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1292", + "lower_courts": "U.S. District Court for the Northern District of Iowa - Cedar Rapids", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-28", + "case_names": "United States v. Kyle Gipson", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241583U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1583", + "lower_courts": "U.S. District Court for the Eastern District of Missouri - St. Louis", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-28", + "case_names": "Stecklein & Rapp Chartered v. Experian Information Solutions, Inc.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231879P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1879, 23-2977", + "lower_courts": "U.S. District Court for the Western District of Missouri - Kansas City", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-28", + "case_names": "Raymond Black v. Swift Pork Company", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231502P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1502", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-28", + "case_names": "Justin Riddle v. Omaha Public Schools", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241940U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1940", + "lower_courts": "U.S. District Court for the District of Nebraska - Omaha", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-27", + "case_names": "United States v. Henry Dailey", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232355P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2355", + "lower_courts": "U.S. District Court for the Western District of Missouri - Kansas City", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-26", + "case_names": "United States v. State of Missouri", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231457P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1457", + "lower_courts": "U.S. District Court for the Western District of Missouri - Jefferson City", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-26", + "case_names": "Christopher Lockhart v. Siloam Springs, Arkansas", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232642P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2642", + "lower_courts": "U.S. District Court for the Western District of Arkansas - Fayetteville", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-26", + "case_names": "Barbara Kellum v. Gilster-Mary Lee Corporation Group Health Benefit", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232765P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2765", + "lower_courts": "U.S. District Court for the Eastern District of Missouri - Cape Girardeau", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-23", + "case_names": "United States v. Willian Zacarias Perez", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241727U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1727", + "lower_courts": "U.S. District Court for the District of South Dakota - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-23", + "case_names": "United States v. Holsey Ellingburg, Jr.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233129P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3129", + "lower_courts": "U.S. District Court for the Western District of Missouri - Kansas City", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-23", + "case_names": "United States v. Gary Graham", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241850U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1850", + "lower_courts": "U.S. District Court for the District of Nebraska - Lincoln", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-23", + "case_names": "United States v. Bruce Alexander", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232280P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2280", + "lower_courts": "U.S. District Court for the Western District of Missouri - Kansas City", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-23", + "case_names": "United States v. Brian Ruth, Sr.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241881U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1881", + "lower_courts": "U.S. District Court for the Western District of Missouri - Joplin", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-23", + "case_names": "Angela Moody v. James Flens", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232392P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2392", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-22", + "case_names": "United States v. Lloyd Weyer", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241794U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1794", + "lower_courts": "U.S. District Court for the Western District of Missouri - St. Joseph", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-22", + "case_names": "United States v. Jeremy Young Hutchinson", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232247U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2247", + "lower_courts": "U.S. District Court for the Western District of Missouri - Springfield", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-22", + "case_names": "United States v. Cornelius Banks", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232882U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2882", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-22", + "case_names": "Jason Clark v. Zach Carter", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241235U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1235", + "lower_courts": "U.S. District Court for the District of South Dakota - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-22", + "case_names": "Curtis McGarvey v. United States", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233236U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3236", + "lower_courts": "U.S. District Court for the District of North Dakota - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-21", + "case_names": "Sheng-Wen Cheng v. P. Grenier", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241251U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1251", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-21", + "case_names": "North Dakota Retail Assoc. v. Board of Governors", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/221639P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-1639", + "lower_courts": "U.S. District Court for the District of North Dakota - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-21", + "case_names": "Jared Goyette v. David Hutchinson", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233190U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3190", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-20", + "case_names": "United States v. Roger Bradford", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232240P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2240, 23-2517", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-20", + "case_names": "United States v. Philip Nordvold", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241224U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1224", + "lower_courts": "U.S. District Court for the District of South Dakota - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-20", + "case_names": "United States v. Antwon Fulton", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241932U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1932", + "lower_courts": "U.S. District Court for the Eastern District of Missouri - St. Louis", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-20", + "case_names": "Union Pacific Railroad Co. v. STB", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/223648P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-3648, 23-1325", + "lower_courts": "", + "case_name_shorts": "STB" + }, + { + "case_dates": "2024-08-20", + "case_names": "Five Rivers Carpenters v. Covenant Construction Services", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233183P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3183", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Eastern", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-19", + "case_names": "United States v. Tina Sully", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233635P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3635", + "lower_courts": "U.S. District Court for the District of South Dakota - Southern", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-19", + "case_names": "United States v. Norman Burch", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233356P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3356", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-19", + "case_names": "United States v. Maurice Cowan", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233145U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3145", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Eastern", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-19", + "case_names": "United States v. George Liakos", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233467U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3467", + "lower_courts": "U.S. District Court for the District of Nebraska - Lincoln", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-19", + "case_names": "United States v. Cornelius Myers", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241607U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1607", + "lower_courts": "U.S. District Court for the Western District of Missouri - Kansas City", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-19", + "case_names": "United States v. Annie Gassman", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241472U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1472", + "lower_courts": "U.S. District Court for the District of South Dakota - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-19", + "case_names": "Karl Roberts v. Dexter Payne", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/221935P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-1935", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Pine Bluff", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-16", + "case_names": "United States v. Tyler Minor", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233412U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3412", + "lower_courts": "U.S. District Court for the Northern District of Iowa - Cedar Rapids", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-16", + "case_names": "United States v. Sylvester Cunningham", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/221080P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-1080", + "lower_courts": "U.S. District Court for the Northern District of Iowa - Cedar Rapids", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-16", + "case_names": "United States v. Marlene Saldierna", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232886U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2886", + "lower_courts": "U.S. District Court for the Western District of Arkansas - Fayetteville", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-16", + "case_names": "United States v. Harvey Hugs", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232609P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2609", + "lower_courts": "U.S. District Court for the District of South Dakota - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-16", + "case_names": "United States v. Daniel Cartagena-Rodriguez", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233081U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3081", + "lower_courts": "U.S. District Court for the District of North Dakota - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-16", + "case_names": "Molly Vogt v. Crow Wing County, MN", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233359P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3359", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-16", + "case_names": "Marc Sultana v. Endeavor Air Corporation", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233369U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3369", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-15", + "case_names": "United States v. Tujuane Lowry", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232942P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2942", + "lower_courts": "U.S. District Court for the District of South Dakota - Northern", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-15", + "case_names": "United States v. Elmarries Harris", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232957P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2957", + "lower_courts": "U.S. District Court for the Western District of Missouri - Kansas City", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-15", + "case_names": "Kameron Evans v. John Dodd", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/223290P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-3290", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-14", + "case_names": "United States v. Sky Roubideaux", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232760P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2760", + "lower_courts": "U.S. District Court for the District of South Dakota - Southern", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-14", + "case_names": "United States v. George Perry, Jr.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233514U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3514", + "lower_courts": "U.S. District Court for the Northern District of Iowa - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-14", + "case_names": "United States v. Derrick Parker", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233371P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3371", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-14", + "case_names": "United States v. Christina Barrera", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232873P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2873", + "lower_courts": "U.S. District Court for the Eastern District of Missouri - St. Louis", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-14", + "case_names": "Louise Arnold v. Charles McClinton", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231566P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1566", + "lower_courts": "U.S. District Court for the Western District of Arkansas - El Dorado", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-14", + "case_names": "Kelly McSean v. Chris Chamberlain", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241674U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1674", + "lower_courts": "U.S. District Court for the Eastern District of Missouri - St. Louis", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-14", + "case_names": "Emily Becker v. North Dakota University System", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231213P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1213", + "lower_courts": "U.S. District Court for the District of North Dakota - Eastern", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-14", + "case_names": "Daniel Snyder v. Arconic, Corp.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233188U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3188", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Eastern", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-14", + "case_names": "Center for Biological Diversity v. MN Trappers Association", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231572P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1572", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-14", + "case_names": "Bereket Kahsai v. Louis DeJoy", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241257U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1257", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-13", + "case_names": "United States v. Robert Wolter", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231848P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1848", + "lower_courts": "U.S. District Court for the District of North Dakota - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-13", + "case_names": "United States v. Matthew Leavell", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232574U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2574", + "lower_courts": "U.S. District Court for the Western District of Missouri - Jefferson City", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-13", + "case_names": "Nancy Burke v. Lippert Components, Inc.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231626P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1626", + "lower_courts": "U.S. District Court for the Northern District of Iowa - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-13", + "case_names": "Joe Cannon v. Michael Dehner", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232167P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2167", + "lower_courts": "U.S. District Court for the Northern District of Iowa - Cedar Rapids", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-13", + "case_names": "Henry Stursberg v. Morrison Sund PLLC", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231186P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1186", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-12", + "case_names": "United States v. Perry Hunter", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241593U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1593", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-12", + "case_names": "United States v. O.C. Rawls", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232170U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2170", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-12", + "case_names": "United States v. Leonard Hatten, Jr.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232594U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2594", + "lower_courts": "U.S. District Court for the District of Nebraska - Omaha", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-12", + "case_names": "United States v. Kyrell Wells", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233366U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3366", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-12", + "case_names": "United States v. Keyonn Connors", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233427U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3427", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-12", + "case_names": "United States v. Keith Euring, Sr.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231212P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1212", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Eastern", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-12", + "case_names": "United States v. James Hanapel", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232653P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2653", + "lower_courts": "U.S. District Court for the District of South Dakota - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-12", + "case_names": "United States v. Devaris Carpenter", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232700U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2700", + "lower_courts": "U.S. District Court for the Eastern District of Missouri - St. Louis", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-12", + "case_names": "Paul Criswell v. Nathan Johnston", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232809U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2809", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-09", + "case_names": "United States v. Willie Lee", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241027U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1027", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-09", + "case_names": "United States v. Michael Stapleton", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241557U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1557", + "lower_courts": "U.S. District Court for the Western District of Missouri - Jefferson City", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-09", + "case_names": "United States v. Kenneth Gilmore", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233002P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3002", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-09", + "case_names": "United States v. Gabriel White Plume, Sr.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233501P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3501", + "lower_courts": "U.S. District Court for the District of South Dakota - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-09", + "case_names": "Steven Pinder v. WellPath", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/223050P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-3050", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Delta", + "case_name_shorts": "WellPath" + }, + { + "case_dates": "2024-08-09", + "case_names": "State of Missouri v. Joseph Biden, Jr.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/242332P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-2332", + "lower_courts": "U.S. District Court for the Eastern District of Missouri - St. Louis", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-09", + "case_names": "Russell Larson v. Buchanan County Jail", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241485U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1485", + "lower_courts": "U.S. District Court for the Northern District of Iowa - Eastern", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-09", + "case_names": "GLBT Youth in IA Schools, etc. v. Kimberly Reynolds", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241075P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1075", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-09", + "case_names": "Firearms Regulatory Accountability Coalition, Inc. v. Merrick B. Garland", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233230P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3230", + "lower_courts": "U.S. District Court for the District of North Dakota - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-08", + "case_names": "United States v. Edell Jackson", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/222870P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-2870", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-08", + "case_names": "United States v. DeJuan Howard", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241486U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1486", + "lower_courts": "U.S. District Court for the Western District of Missouri - Kansas City", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-08", + "case_names": "Kimberly Adams v. City of Little Rock", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233299U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3299", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-08", + "case_names": "Jarell Terry v. James Dycus", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233415U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3415", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Delta", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-07", + "case_names": "United States v. Cindy Ortiz", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231249U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1249", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-07", + "case_names": "United States v. Charles Stagner", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233362P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3362", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-07", + "case_names": "Janet Taylor v. Janet Yellen", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233431U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3431", + "lower_courts": "U.S. District Court for the Western District of Missouri - Kansas City", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-07", + "case_names": "Devon Arseneau v. Elaine Pudlowski", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232265P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2265", + "lower_courts": "U.S. District Court for the Eastern District of Missouri - St. Louis", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-07", + "case_names": "Antonio Webb v. Lori Lakey", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231496P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1496", + "lower_courts": "U.S. District Court for the Western District of Missouri - St. Joseph", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-06", + "case_names": "United States v. Jonathan Berrier", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232134P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2134", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-06", + "case_names": "United States v. Christopher Edwards", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232841P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2841", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-06", + "case_names": "United States v. Brandon Olivas", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233336P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3336", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-06", + "case_names": "Kristopher Morgan v. Yosita Phaypanya", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233491U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3491", + "lower_courts": "U.S. District Court for the Western District of Arkansas - Fayetteville", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-06", + "case_names": "Human Rights Defense Center v. Union County, Arkansas", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231677P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1677", + "lower_courts": "U.S. District Court for the Western District of Arkansas - El Dorado", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-05", + "case_names": "United States v. Terry Christianson", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241528U.pdf", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "12-3151", + "docket_numbers": "24-1528", + "lower_courts": "U.S. District Court for the District of Nebraska - Lincoln", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-05", + "case_names": "United States v. Nethaniah Gordon", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232930P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2930", + "lower_courts": "U.S. District Court for the Northern District of Iowa - Eastern", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-05", + "case_names": "United States v. Marlon Winborn", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233453P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3453", + "lower_courts": "U.S. District Court for the District of Minnesota", "case_name_shorts": "" }, { - "case_dates": "2013-05-03", - "case_names": "United States v. Adekunle Olufemi Adetiloye", - "download_urls": "http://media.ca8.uscourts.gov/opndir/13/05/121617P.pdf", + "case_dates": "2024-08-05", + "case_names": "United States v. Juan Osorio", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232490P.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "12-1617", + "docket_numbers": "23-2490, 23-2728", + "lower_courts": "U.S. District Court for the Western District of Missouri - Kansas City", "case_name_shorts": "" }, { - "case_dates": "2013-05-03", - "case_names": "George H. Kalberer v. Star Tribune", - "download_urls": "http://media.ca8.uscourts.gov/opndir/13/05/123373U.pdf", + "case_dates": "2024-08-05", + "case_names": "Riley Gunter v. City of Omaha", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241118U.pdf", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "12-3373", + "docket_numbers": "24-1118", + "lower_courts": "U.S. District Court for the District of Nebraska - Omaha", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-05", + "case_names": "NCMIC Insurance Company v. Allied Professionals Ins. Co.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233261P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3261", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-05", + "case_names": "Eniola Famuyide v. Chipotle Mexican Grill, Inc.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233201P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3201", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-05", + "case_names": "Associated Electric Cooperative, Inc. v. Southwest Power Pool, Inc.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231293P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1293, 23-2627", + "lower_courts": "U.S. District Court for the Western District of Missouri - Springfield", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-05", + "case_names": "Associated Electric Cooperative, Inc. v. FERC", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/223593P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-3593, 23-1285", + "lower_courts": "", + "case_name_shorts": "FERC" + }, + { + "case_dates": "2024-08-05", + "case_names": "Anthony Lamar v. Dexter Payne", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/222164P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-2164", + "lower_courts": "U.S. District Court for the Eastern District of Arkansas - Pine Bluff", "case_name_shorts": "" }, { - "case_dates": "2013-05-03", - "case_names": "David Lynd v. Charles Ries", - "download_urls": "http://media.ca8.uscourts.gov/opndir/13/05/136011P.pdf", + "case_dates": "2024-08-02", + "case_names": "United States v. Kylee Starr", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233010P.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "13-6011", + "docket_numbers": "23-3010", + "lower_courts": "U.S. District Court for the District of North Dakota - Western", "case_name_shorts": "" }, { - "case_dates": "2013-05-02", - "case_names": "United States v. Shawn Jones", - "download_urls": "http://media.ca8.uscourts.gov/opndir/13/05/122716U.pdf", + "case_dates": "2024-08-02", + "case_names": "United States v. Avontae Tucker", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232758U.pdf", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "12-2716", + "docket_numbers": "23-2758", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Central", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-02", + "case_names": "L.H. v. Independence School District", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232326P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2326", + "lower_courts": "U.S. District Court for the Western District of Missouri - Kansas City", + "case_name_shorts": "L.H." + }, + { + "case_dates": "2024-08-02", + "case_names": "HCI Distribution, Inc. v. Michael Hilgers", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232311P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2311", + "lower_courts": "U.S. District Court for the District of Nebraska - Omaha", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-02", + "case_names": "Guy Gambrell, Jr. v. United States", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232869P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2869", + "lower_courts": "U.S. District Court for the Western District of Missouri - Joplin", "case_name_shorts": "" }, { - "case_dates": "2013-05-02", - "case_names": "Harleysville Insurance Company v. Physical Distribution Services", - "download_urls": "http://media.ca8.uscourts.gov/opndir/13/05/121713P.pdf", + "case_dates": "2024-08-02", + "case_names": "GEICO General Insurance Co. v. M.O.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231686P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-1686", + "lower_courts": "U.S. District Court for the Western District of Missouri - Kansas City", + "case_name_shorts": "M.O." + }, + { + "case_dates": "2024-08-02", + "case_names": "Christopher Drew v. City of Des Moines", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232656P.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "12-1713", + "docket_numbers": "23-2656", + "lower_courts": "U.S. District Court for the Southern District of Iowa - Central", "case_name_shorts": "" }, { - "case_dates": "2013-05-01", - "case_names": "United States v. Nathan Ozmon", - "download_urls": "http://media.ca8.uscourts.gov/opndir/13/05/122913P.pdf", + "case_dates": "2024-08-02", + "case_names": "Ahmad Daniel v. Honeywell International Inc.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233476U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-3476", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-01", + "case_names": "United States v. Robert Hansen", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232188P.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "12-2913", + "docket_numbers": "23-2188, 23-2189", + "lower_courts": "U.S. District Court for the Northern District of Iowa - Western", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-01", + "case_names": "United States v. Ortez Jones", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241052U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "24-1052", + "lower_courts": "U.S. District Court for the Eastern District of Missouri - St. Louis", "case_name_shorts": "" }, { - "case_dates": "2013-05-01", - "case_names": "United States v. Jesus Quintero-Felix", - "download_urls": "http://media.ca8.uscourts.gov/opndir/13/05/123535P.pdf", + "case_dates": "2024-08-01", + "case_names": "Sr. Kate Reid v. Doe Run Resources Corp.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/231625P.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "12-3535", + "docket_numbers": "23-1625", + "lower_courts": "U.S. District Court for the Eastern District of Missouri - St. Louis", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-01", + "case_names": "Mercy Perez Aviles v. Merrick Garland", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/212237U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-2237", + "lower_courts": "", "case_name_shorts": "" }, { - "case_dates": "2013-05-01", - "case_names": "Robert Rutz v. Discover Financial Services", - "download_urls": "http://media.ca8.uscourts.gov/opndir/13/05/123704U.pdf", + "case_dates": "2024-08-01", + "case_names": "Lisa Truong v. Collins Aerospace System", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/241246U.pdf", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "12-3704", + "docket_numbers": "24-1246", + "lower_courts": "U.S. District Court for the District of Minnesota", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-01", + "case_names": "Darrin Rick v. Jodi Harpstead", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/232359P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-2359", + "lower_courts": "U.S. District Court for the District of Minnesota", "case_name_shorts": "" }, { - "case_dates": "2013-05-01", - "case_names": "B & B Hardware v. Hargis Industries", - "download_urls": "http://media.ca8.uscourts.gov/opndir/13/05/103137P.pdf", + "case_dates": "2024-08-01", + "case_names": "Daniel Graff v. Brighthouse Life Ins. Co.", + "download_urls": "https://ecf.ca8.uscourts.gov/opndir/24/08/233477P.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "10-3137", + "docket_numbers": "23-3477", + "lower_courts": "U.S. District Court for the District of Minnesota", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ca8_example.html b/tests/examples/opinions/united_states/ca8_example.html index c3bba0216..a562d2c2a 100644 --- a/tests/examples/opinions/united_states/ca8_example.html +++ b/tests/examples/opinions/united_states/ca8_example.html @@ -1,429 +1,568 @@ - +

Opinions Search by Month/Year

+ - - - -Opinions by Month/Year | Eighth Circuit | United States Court of Appeals - - - - - - - - - - - - - - - - - - - - - - - - + + + + Opinions by Month/Year | Eighth Circuit | United States Court of Appeals - - -
-
- - - -
- - -
- - - - -
-
- - -
-
- -
DISCLAIMER:  The following unofficial case summaries are prepared by the clerk's office
-                              as a courtesy to the reader. They are not part of the opinion of the court.

-[ May 03, 2013 ]

-121617P.pdf 05/03/2013 United States v. Adekunle Olufemi Adetiloye - U.S. Court of Appeals Case No: 12-1617 - and No: 12-1919 - U.S. District Court for the District of North Dakota - Fargo - [PUBLISHED] [Bye, Author, with Wollman and Benton, Circuit Judges] - Criminal case - Sentencing. District court thoroughly considered the - 3553(a) factors at the sentencing hearing, issued a 17-page sentencing - memorandum and provided a sufficient explanation for its sentencing - decision; district court did not err in denying defendant a reduction for - acceptance of responsibility where defendant contested factual statements - and nearly all applicable enhancements in the PSR; no error in imposing - an enhancement under Guidelines Sec. 3B1.1(a) for leadership role in the - offense; no error in imposing an upward enhancement on the ground the - offense level substantially understated the seriousness of the offense; - where the government failed to provide documentation with the required - specificity and reliability to establish the amount of restitution, the court - should have postponed the restitution proceedings for the gathering and - presentation of additional evidence; similarly, the district court erred in - ordering forfeiture in the limited amount set out in its restitution order; - the restitution and forfeiture orders are vacated and remanded for further - proceeding regarding the losses the victims sustained and the proceeds - defendant gained from the scheme. - -123151U.pdf 05/03/2013 United States v. Jeffrey Rand - U.S. Court of Appeals Case No: 12-3151 - U.S. District Court for the Western District of Arkansas - Hot Springs - [UNPUBLISHED] [Per Curiam - Before Bye, Arnold and Shepherd, - Circuit Judges] - Criminal case - Sentencing. Anders case. District court properly - considered the sentencing factors and the sentence it imposed was not - unreasonable; defendant withdrew his objection to the restitution portion - of his sentence and waived his right to appeal the restitution order. - -123373U.pdf 05/03/2013 George H. Kalberer v. Star Tribune - U.S. Court of Appeals Case No: 12-3373 - U.S. District Court for the District of Minnesota - Minneapolis - [UNPUBLISHED] [Per Curiam - Before Wollman, Bowman and - Gruender, Circuit Judges] - Civil case - Employment Discrimination. Defendants' summary - judgment on plaintiff's Age Discrimination in Employment Act - claims affirmed without comment. - -123977U.pdf 05/03/2013 Yussuf Hamid v. JPMorgan Chase Bank - U.S. Court of Appeals Case No: 12-3977 - U.S. District Court for the District of Minnesota - Minneapolis - [UNPUBLISHED] [Per Curiam - Before Bye, Arnold and Shepherd, - Circuit Judges] - Civil case - Foreclosure. Dismissal of a "show-me-the-note" action - affirmed without comment. - -136011P.pdf 05/03/2013 David Lynd v. Charles Ries - U.S. Court of Appeals Case No: 13-6011 - U.S. Bankruptcy Court for the District of Minnesota - Minneapolis - [PUBLISHED] [Federman, Author, with Nail and Saladino, - Bankruptcy Judges] - Bankruptcy Appellate Panel. To the extent Lynd requested the - bankruptcy court to deviate from the Code and order that his - restitution claim be paid from some source not authorized by - the Code, the bankruptcy court was without authority to grant - such relief, and the court did not err in denying his request. - -[ May 02, 2013 ]

-121713P.pdf 05/02/2013 Harleysville Insurance Company v. Physical Distribution Services - U.S. Court of Appeals Case No: 12-1713 - U.S. District Court for the District of Minnesota - Minneapolis - [PUBLISHED] [Riley, Author, with Colloton and Gruender, Circuit Judges] - Civil case - Contracts. The contract between Physical Distribution and - Miller Transporters required Physical Distribution to indemnify Miller for - liability it had incurred from an injury to a leased employee; the insurance - contract between Physical Distribution and Harleysville, which extended - coverage to Physical Distribution's indemnification of third parties for - tort liability caused in whole or in part by Physical Distribution or those - acting on its behalf, required Harleysville to cover the resulting cost to - Physical Distribution. Judge Colloton, dissenting. - -122716U.pdf 05/02/2013 United States v. Shawn Jones - U.S. Court of Appeals Case No: 12-2716 - U.S. District Court for the Northern District of Iowa - Ft. Dodge - [UNPUBLISHED] [Per Curiam - Before Riley, Chief Judge, and Bye - and Benton, Circuit Judges] - Criminal case - Criminal law. No error in admitting results of a photo - lineup as it was not impermissible suggestive and defendant had an - opportunity at trial to attack the credibility of the witness's identification; - evidence was sufficient to support defendant's conviction for conspiracy - to distribute methamphetamine. - -[ May 01, 2013 ]

-103137P.pdf 05/01/2013 B & B Hardware v. Hargis Industries - U.S. Court of Appeals Case No: 10-3137 - and No: 11-1247 - U.S. District Court for the Eastern District of Arkansas - Little Rock - [PUBLISHED] [Shepherd, Author, with Loken and Colloton, Circuit Judges] - Civil case - Trademarks. For the court's prior opinions in the case, see - B&B Hardware, Inc. v. Hargis Industries, Inc., 569 F.3d 383 (8th Cir. - 2009); and B&B Hardware, Inc. v. Hargis Industries, 252 F.3d 1010 (8th - Cir. 2001). Assuming that Trademark Trial and Appeal Board decisions - may be entitled to preclusive effect, such application is not appropriate - here because the same likelihood-of-confusion issues were not decided by - the Board as were brought in the action before the district court; the court - rejects B&B's argument that the Board's factual findings from a - trademark registration case are entitled to deference by the district court; - district court did not abuse its discretion by refusing to admit the Board's - decision into evidence as over the course of the seven-day trial the jury - was presented with evidence regarding likelihood of confusion as it - pertained to the factors under which the jury decided the claim of - trademark infringement and the probative value of the Board's ultimate - conclusion was minimal; the district court erred in including an award of - attorneys' fees to Hargis for B&B's prior appeal as that appeal resulted in - a ruling in B&B's favor and was not groundless or unreasonable; on - remand, the court should amend its award of fees by deducting the fees - for the appeal. Judge Colloton, dissenting. - -122913P.pdf 05/01/2013 United States v. Nathan Ozmon - U.S. Court of Appeals Case No: 12-2913 - U.S. District Court for the Southern District of Iowa - Davenport - [PUBLISHED] [Murphy, Author, with Beam and Bye, Circuit Judge] - Criminal case - Sentencing. Government did not breach the cooperation - agreement when it used defendant's self incriminating statements from - his proffer interview; sentence imposed was not substantively - unreasonable. - -123535P.pdf 05/01/2013 United States v. Jesus Quintero-Felix - U.S. Court of Appeals Case No: 12-3535 - U.S. District Court for the Northern District of Iowa - Sioux City - [PUBLISHED] [Gruender, Author, with Loken, Circuit Judge, and - Phillips, District Judge] - Criminal case - Criminal case. Police officer did not unduly extend the - traffic stop once he had issued a warning ticket to defendant and returned - his documents as the officer had reasonable suspicion to extend the stop - based on defendant's behavior, his answers to the officer's questions and - conflicts between defendant's answers and his passenger's; even - assuming the officer lacked reasonable suspicion, defendant consented to - extension of the stop; evidence was sufficient to support defendant's - convictions for conspiracy to distribute methamphetamine and aiding and - abetting its distribution. - -123704U.pdf 05/01/2013 Robert Rutz v. Discover Financial Services - U.S. Court of Appeals Case No: 12-3704 - U.S. District Court for the Western District of Arkansas - Fayetteville - [UNPUBLISHED] [Per Curiam - Before Wollman, Bowman and - Gruender, Circuit Judges] - Civil case - Arbitration. In an action to overturn an adverse arbitration - decision regarding domain names, the district court did not err in - dismissing the case as plaintiff failed to state a claim under 15 U.S.C. - Sec. 1114(2)(D)(v) or the RICO statute; nor did the complaint state a - contract claim or a tort claim. - -
-
-
-
- - -
- - -
- + + + + + + + +
+ DISCLAIMER: + + Any unofficial case summaries below are prepared by the clerk's office
+ as a courtesy to the reader. They are not part of the opinion of the court. +
+ +
+New Search

[ August 30, 2024 ]

+233211U.pdf 08/30/2024 United States v. Jeremy Dobson + U.S. Court of Appeals Case No: 23-3211 + U.S. District Court for the Western District of Missouri - Kansas City + +[ August 29, 2024 ]

+232402P.pdf 08/29/2024 United States v. Shawn Scherer + U.S. Court of Appeals Case No: 23-2402 + U.S. District Court for the District of North Dakota - Eastern + +232501P.pdf 08/29/2024 Erica Barrett v. O'Reilly Automotive, Inc. + U.S. Court of Appeals Case No: 23-2501 + U.S. District Court for the Western District of Missouri - Springfield + +232565P.pdf 08/29/2024 JES Farms Partnership v. Indigo Ag Inc. + U.S. Court of Appeals Case No: 23-2565 + U.S. District Court for the District of South Dakota - Southern + +233424P.pdf 08/29/2024 United States v. Darris Mull + U.S. Court of Appeals Case No: 23-3424 + U.S. District Court for the Western District of Missouri - Springfield + +241213U.pdf 08/29/2024 United States v. James Sterner + U.S. Court of Appeals Case No: 24-1213 + U.S. District Court for the Northern District of Iowa - Western + +241489U.pdf 08/29/2024 Marc Bakambia v. Stephen Craane + U.S. Court of Appeals Case No: 24-1489 + U.S. District Court for the District of Minnesota + +241752U.pdf 08/29/2024 United States v. John Richmond + U.S. Court of Appeals Case No: 24-1752 + U.S. District Court for the District of North Dakota - Western + +[ August 28, 2024 ]

+223662U.pdf 08/28/2024 United States v. Reginald Doss + U.S. Court of Appeals Case No: 22-3662 + U.S. District Court for the Southern District of Iowa - Central + +231502P.pdf 08/28/2024 Raymond Black v. Swift Pork Company + U.S. Court of Appeals Case No: 23-1502 + U.S. District Court for the Southern District of Iowa - Central + +231879P.pdf 08/28/2024 Stecklein & Rapp Chartered v. Experian Information Solutions, Inc. + U.S. Court of Appeals Case No: 23-1879 + and No: 23-2977 + U.S. District Court for the Western District of Missouri - Kansas City + +241292U.pdf 08/28/2024 United States v. Michael Heinitz + U.S. Court of Appeals Case No: 24-1292 + U.S. District Court for the Northern District of Iowa - Cedar Rapids + +241583U.pdf 08/28/2024 United States v. Kyle Gipson + U.S. Court of Appeals Case No: 24-1583 + U.S. District Court for the Eastern District of Missouri - St. Louis + +241940U.pdf 08/28/2024 Justin Riddle v. Omaha Public Schools + U.S. Court of Appeals Case No: 24-1940 + U.S. District Court for the District of Nebraska - Omaha + +[ August 27, 2024 ]

+232355P.pdf 08/27/2024 United States v. Henry Dailey + U.S. Court of Appeals Case No: 23-2355 + U.S. District Court for the Western District of Missouri - Kansas City + +[ August 26, 2024 ]

+231457P.pdf 08/26/2024 United States v. State of Missouri + U.S. Court of Appeals Case No: 23-1457 + U.S. District Court for the Western District of Missouri - Jefferson City + +232642P.pdf 08/26/2024 Christopher Lockhart v. Siloam Springs, Arkansas + U.S. Court of Appeals Case No: 23-2642 + U.S. District Court for the Western District of Arkansas - Fayetteville + +232765P.pdf 08/26/2024 Barbara Kellum v. Gilster-Mary Lee Corporation Group Health Benefit + U.S. Court of Appeals Case No: 23-2765 + U.S. District Court for the Eastern District of Missouri - Cape Girardeau + +[ August 23, 2024 ]

+232280P.pdf 08/23/2024 United States v. Bruce Alexander + U.S. Court of Appeals Case No: 23-2280 + U.S. District Court for the Western District of Missouri - Kansas City + +232392P.pdf 08/23/2024 Angela Moody v. James Flens + U.S. Court of Appeals Case No: 23-2392 + U.S. District Court for the Eastern District of Arkansas - Central + +233129P.pdf 08/23/2024 United States v. Holsey Ellingburg, Jr. + U.S. Court of Appeals Case No: 23-3129 + U.S. District Court for the Western District of Missouri - Kansas City + +241727U.pdf 08/23/2024 United States v. Willian Zacarias Perez + U.S. Court of Appeals Case No: 24-1727 + U.S. District Court for the District of South Dakota - Western + +241850U.pdf 08/23/2024 United States v. Gary Graham + U.S. Court of Appeals Case No: 24-1850 + U.S. District Court for the District of Nebraska - Lincoln + +241881U.pdf 08/23/2024 United States v. Brian Ruth, Sr. + U.S. Court of Appeals Case No: 24-1881 + U.S. District Court for the Western District of Missouri - Joplin + +[ August 22, 2024 ]

+232247U.pdf 08/22/2024 United States v. Jeremy Young Hutchinson + U.S. Court of Appeals Case No: 23-2247 + U.S. District Court for the Western District of Missouri - Springfield + +232882U.pdf 08/22/2024 United States v. Cornelius Banks + U.S. Court of Appeals Case No: 23-2882 + U.S. District Court for the Eastern District of Arkansas - Central + +233236U.pdf 08/22/2024 Curtis McGarvey v. United States + U.S. Court of Appeals Case No: 23-3236 + U.S. District Court for the District of North Dakota - Western + +241235U.pdf 08/22/2024 Jason Clark v. Zach Carter + U.S. Court of Appeals Case No: 24-1235 + U.S. District Court for the District of South Dakota - Western + +241794U.pdf 08/22/2024 United States v. Lloyd Weyer + U.S. Court of Appeals Case No: 24-1794 + U.S. District Court for the Western District of Missouri - St. Joseph + +[ August 21, 2024 ]

+221639P.pdf 08/21/2024 North Dakota Retail Assoc. v. Board of Governors + U.S. Court of Appeals Case No: 22-1639 + U.S. District Court for the District of North Dakota - Western + +233190U.pdf 08/21/2024 Jared Goyette v. David Hutchinson + U.S. Court of Appeals Case No: 23-3190 + U.S. District Court for the District of Minnesota + +241251U.pdf 08/21/2024 Sheng-Wen Cheng v. P. Grenier + U.S. Court of Appeals Case No: 24-1251 + U.S. District Court for the District of Minnesota + +[ August 20, 2024 ]

+223648P.pdf 08/20/2024 Union Pacific Railroad Co. v. STB + U.S. Court of Appeals Case No: 22-3648 + and No: 23-1325 + Petition for Review of an Order of the Surface Transportation Board + +232240P.pdf 08/20/2024 United States v. Roger Bradford + U.S. Court of Appeals Case No: 23-2240 + and No: 23-2517 + U.S. District Court for the Southern District of Iowa - Central + +233183P.pdf 08/20/2024 Five Rivers Carpenters v. Covenant Construction Services + U.S. Court of Appeals Case No: 23-3183 + U.S. District Court for the Southern District of Iowa - Eastern + +241224U.pdf 08/20/2024 United States v. Philip Nordvold + U.S. Court of Appeals Case No: 24-1224 + U.S. District Court for the District of South Dakota - Central + +241932U.pdf 08/20/2024 United States v. Antwon Fulton + U.S. Court of Appeals Case No: 24-1932 + U.S. District Court for the Eastern District of Missouri - St. Louis + +[ August 19, 2024 ]

+221935P.pdf 08/19/2024 Karl Roberts v. Dexter Payne + U.S. Court of Appeals Case No: 22-1935 + U.S. District Court for the Eastern District of Arkansas - Pine Bluff + +233145U.pdf 08/19/2024 United States v. Maurice Cowan + U.S. Court of Appeals Case No: 23-3145 + U.S. District Court for the Southern District of Iowa - Eastern + +233356P.pdf 08/19/2024 United States v. Norman Burch + U.S. Court of Appeals Case No: 23-3356 + U.S. District Court for the Southern District of Iowa - Central + +233467U.pdf 08/19/2024 United States v. George Liakos + U.S. Court of Appeals Case No: 23-3467 + U.S. District Court for the District of Nebraska - Lincoln + +233635P.pdf 08/19/2024 United States v. Tina Sully + U.S. Court of Appeals Case No: 23-3635 + U.S. District Court for the District of South Dakota - Southern + +241472U.pdf 08/19/2024 United States v. Annie Gassman + U.S. Court of Appeals Case No: 24-1472 + U.S. District Court for the District of South Dakota - Central + +241607U.pdf 08/19/2024 United States v. Cornelius Myers + U.S. Court of Appeals Case No: 24-1607 + U.S. District Court for the Western District of Missouri - Kansas City + +[ August 16, 2024 ]

+221080P.pdf 08/16/2024 United States v. Sylvester Cunningham + U.S. Court of Appeals Case No: 22-1080 + U.S. District Court for the Northern District of Iowa - Cedar Rapids + +232609P.pdf 08/16/2024 United States v. Harvey Hugs + U.S. Court of Appeals Case No: 23-2609 + U.S. District Court for the District of South Dakota - Western + +232886U.pdf 08/16/2024 United States v. Marlene Saldierna + U.S. Court of Appeals Case No: 23-2886 + U.S. District Court for the Western District of Arkansas - Fayetteville + +233081U.pdf 08/16/2024 United States v. Daniel Cartagena-Rodriguez + U.S. Court of Appeals Case No: 23-3081 + U.S. District Court for the District of North Dakota - Western + +233359P.pdf 08/16/2024 Molly Vogt v. Crow Wing County, MN + U.S. Court of Appeals Case No: 23-3359 + U.S. District Court for the District of Minnesota + +233369U.pdf 08/16/2024 Marc Sultana v. Endeavor Air Corporation + U.S. Court of Appeals Case No: 23-3369 + U.S. District Court for the District of Minnesota + +233412U.pdf 08/16/2024 United States v. Tyler Minor + U.S. Court of Appeals Case No: 23-3412 + U.S. District Court for the Northern District of Iowa - Cedar Rapids + +[ August 15, 2024 ]

+223290P.pdf 08/15/2024 Kameron Evans v. John Dodd + U.S. Court of Appeals Case No: 22-3290 + U.S. District Court for the Eastern District of Arkansas - Central + +232942P.pdf 08/15/2024 United States v. Tujuane Lowry + U.S. Court of Appeals Case No: 23-2942 + U.S. District Court for the District of South Dakota - Northern + +232957P.pdf 08/15/2024 United States v. Elmarries Harris + U.S. Court of Appeals Case No: 23-2957 + U.S. District Court for the Western District of Missouri - Kansas City + +[ August 14, 2024 ]

+231213P.pdf 08/14/2024 Emily Becker v. North Dakota University System + U.S. Court of Appeals Case No: 23-1213 + U.S. District Court for the District of North Dakota - Eastern + +231566P.pdf 08/14/2024 Louise Arnold v. Charles McClinton + U.S. Court of Appeals Case No: 23-1566 + U.S. District Court for the Western District of Arkansas - El Dorado + +231572P.pdf 08/14/2024 Center for Biological Diversity, et al v. MN Trappers Association, et al + U.S. Court of Appeals Case No: 23-1572 + U.S. District Court for the District of Minnesota + +232760P.pdf 08/14/2024 United States v. Sky Roubideaux + U.S. Court of Appeals Case No: 23-2760 + U.S. District Court for the District of South Dakota - Southern + +232873P.pdf 08/14/2024 United States v. Christina Barrera + U.S. Court of Appeals Case No: 23-2873 + U.S. District Court for the Eastern District of Missouri - St. Louis + +233188U.pdf 08/14/2024 Daniel Snyder v. Arconic, Corp. + U.S. Court of Appeals Case No: 23-3188 + U.S. District Court for the Southern District of Iowa - Eastern + +233371P.pdf 08/14/2024 United States v. Derrick Parker + U.S. Court of Appeals Case No: 23-3371 + U.S. District Court for the Eastern District of Arkansas - Central + +233514U.pdf 08/14/2024 United States v. George Perry, Jr. + U.S. Court of Appeals Case No: 23-3514 + U.S. District Court for the Northern District of Iowa - Central + +241257U.pdf 08/14/2024 Bereket Kahsai v. Louis DeJoy + U.S. Court of Appeals Case No: 24-1257 + U.S. District Court for the District of Minnesota + +241674U.pdf 08/14/2024 Kelly McSean v. Chris Chamberlain + U.S. Court of Appeals Case No: 24-1674 + U.S. District Court for the Eastern District of Missouri - St. Louis + +[ August 13, 2024 ]

+231186P.pdf 08/13/2024 Henry Stursberg v. Morrison Sund PLLC + U.S. Court of Appeals Case No: 23-1186 + U.S. District Court for the District of Minnesota + +231626P.pdf 08/13/2024 Nancy Burke v. Lippert Components, Inc. + U.S. Court of Appeals Case No: 23-1626 + U.S. District Court for the Northern District of Iowa - Central + +231848P.pdf 08/13/2024 United States v. Robert Wolter + U.S. Court of Appeals Case No: 23-1848 + U.S. District Court for the District of North Dakota - Western + +232167P.pdf 08/13/2024 Joe Cannon v. Michael Dehner + U.S. Court of Appeals Case No: 23-2167 + U.S. District Court for the Northern District of Iowa - Cedar Rapids + +232574U.pdf 08/13/2024 United States v. Matthew Leavell + U.S. Court of Appeals Case No: 23-2574 + U.S. District Court for the Western District of Missouri - Jefferson City + +[ August 12, 2024 ]

+231212P.pdf 08/12/2024 United States v. Keith Euring, Sr. + U.S. Court of Appeals Case No: 23-1212 + U.S. District Court for the Southern District of Iowa - Eastern + +232170U.pdf 08/12/2024 United States v. O.C. Rawls + U.S. Court of Appeals Case No: 23-2170 + U.S. District Court for the Eastern District of Arkansas - Central + +232594U.pdf 08/12/2024 United States v. Leonard Hatten, Jr. + U.S. Court of Appeals Case No: 23-2594 + U.S. District Court for the District of Nebraska - Omaha + +232653P.pdf 08/12/2024 United States v. James Hanapel + U.S. Court of Appeals Case No: 23-2653 + U.S. District Court for the District of South Dakota - Western + +232700U.pdf 08/12/2024 United States v. Devaris Carpenter + U.S. Court of Appeals Case No: 23-2700 + U.S. District Court for the Eastern District of Missouri - St. Louis + +232809U.pdf 08/12/2024 Paul Criswell v. Nathan Johnston + U.S. Court of Appeals Case No: 23-2809 + U.S. District Court for the Eastern District of Arkansas - Central + +233366U.pdf 08/12/2024 United States v. Kyrell Wells + U.S. Court of Appeals Case No: 23-3366 + U.S. District Court for the Southern District of Iowa - Western + +233427U.pdf 08/12/2024 United States v. Keyonn Connors + U.S. Court of Appeals Case No: 23-3427 + U.S. District Court for the Eastern District of Arkansas - Central + +241593U.pdf 08/12/2024 United States v. Perry Hunter + U.S. Court of Appeals Case No: 24-1593 + U.S. District Court for the Eastern District of Arkansas - Central + +[ August 09, 2024 ]

+223050P.pdf 08/09/2024 Steven Pinder v. WellPath + U.S. Court of Appeals Case No: 22-3050 + U.S. District Court for the Eastern District of Arkansas - Delta + +233002P.pdf 08/09/2024 United States v. Kenneth Gilmore + U.S. Court of Appeals Case No: 23-3002 + U.S. District Court for the Eastern District of Arkansas - Central + +233230P.pdf 08/09/2024 Firearms Regulatory Accountability Coalition, Inc. v. Merrick B. Garland + U.S. Court of Appeals Case No: 23-3230 + U.S. District Court for the District of North Dakota - Western + +233501P.pdf 08/09/2024 United States v. Gabriel White Plume, Sr. + U.S. Court of Appeals Case No: 23-3501 + U.S. District Court for the District of South Dakota - Western + +241027U.pdf 08/09/2024 United States v. Willie Lee + U.S. Court of Appeals Case No: 24-1027 + U.S. District Court for the Southern District of Iowa - Central + +241075P.pdf 08/09/2024 GLBT Youth in IA Schools, etc. v. Kimberly Reynolds + U.S. Court of Appeals Case No: 24-1075 + U.S. District Court for the Southern District of Iowa - Central + +241485U.pdf 08/09/2024 Russell Larson v. Buchanan County Jail + U.S. Court of Appeals Case No: 24-1485 + U.S. District Court for the Northern District of Iowa - Eastern + +241557U.pdf 08/09/2024 United States v. Michael Stapleton + U.S. Court of Appeals Case No: 24-1557 + U.S. District Court for the Western District of Missouri - Jefferson City + +242332P.pdf 08/09/2024 State of Missouri v. Joseph Biden, Jr. + U.S. Court of Appeals Case No: 24-2332 + and No: 242351 + U.S. District Court for the Eastern District of Missouri - St. Louis + +[ August 08, 2024 ]

+222870P.pdf 08/08/2024 United States v. Edell Jackson + U.S. Court of Appeals Case No: 22-2870 + U.S. District Court for the District of Minnesota + +233299U.pdf 08/08/2024 Kimberly Adams v. City of Little Rock + U.S. Court of Appeals Case No: 23-3299 + U.S. District Court for the Eastern District of Arkansas - Central + +233415U.pdf 08/08/2024 Jarell Terry v. James Dycus + U.S. Court of Appeals Case No: 23-3415 + U.S. District Court for the Eastern District of Arkansas - Delta + +241486U.pdf 08/08/2024 United States v. DeJuan Howard + U.S. Court of Appeals Case No: 24-1486 + U.S. District Court for the Western District of Missouri - Kansas City + +[ August 07, 2024 ]

+231249U.pdf 08/07/2024 United States v. Cindy Ortiz + U.S. Court of Appeals Case No: 23-1249 + U.S. District Court for the Southern District of Iowa - Western + +231496P.pdf 08/07/2024 Antonio Webb v. Lori Lakey + U.S. Court of Appeals Case No: 23-1496 + U.S. District Court for the Western District of Missouri - St. Joseph + +232265P.pdf 08/07/2024 Devon Arseneau v. Elaine Pudlowski + U.S. Court of Appeals Case No: 23-2265 + U.S. District Court for the Eastern District of Missouri - St. Louis + +233362P.pdf 08/07/2024 United States v. Charles Stagner + U.S. Court of Appeals Case No: 23-3362 + U.S. District Court for the Southern District of Iowa - Central + +233431U.pdf 08/07/2024 Janet Taylor v. Janet Yellen + U.S. Court of Appeals Case No: 23-3431 + U.S. District Court for the Western District of Missouri - Kansas City + +[ August 06, 2024 ]

+231677P.pdf 08/06/2024 Human Rights Defense Center v. Union County, Arkansas + U.S. Court of Appeals Case No: 23-1677 + U.S. District Court for the Western District of Arkansas - El Dorado + +232134P.pdf 08/06/2024 United States v. Jonathan Berrier + U.S. Court of Appeals Case No: 23-2134 + U.S. District Court for the Eastern District of Arkansas - Central + +232841P.pdf 08/06/2024 United States v. Christopher Edwards + U.S. Court of Appeals Case No: 23-2841 + U.S. District Court for the District of Minnesota + +233336P.pdf 08/06/2024 United States v. Brandon Olivas + U.S. Court of Appeals Case No: 23-3336 + U.S. District Court for the Southern District of Iowa - Central + +233491U.pdf 08/06/2024 Kristopher Morgan v. Yosita Phaypanya + U.S. Court of Appeals Case No: 23-3491 + U.S. District Court for the Western District of Arkansas - Fayetteville + +[ August 05, 2024 ]

+222164P.pdf 08/05/2024 Anthony Lamar v. Dexter Payne + U.S. Court of Appeals Case No: 22-2164 + U.S. District Court for the Eastern District of Arkansas - Pine Bluff + +223593P.pdf 08/05/2024 Associated Electric Cooperative, Inc. v. FERC + U.S. Court of Appeals Case No: 22-3593 + and No: 23-1285 + Petition for Review of an Order of the Federal Energy Regulatory Commission + +231293P.pdf 08/05/2024 Associated Electric Cooperative, Inc. v. Southwest Power Pool, Inc. + U.S. Court of Appeals Case No: 23-1293 + and No: 23-2627 + U.S. District Court for the Western District of Missouri - Springfield + +232490P.pdf 08/05/2024 United States v. Juan Osorio + U.S. Court of Appeals Case No: 23-2490 + and No: 23-2728 + U.S. District Court for the Western District of Missouri - Kansas City + +232930P.pdf 08/05/2024 United States v. Nethaniah Gordon + U.S. Court of Appeals Case No: 23-2930 + U.S. District Court for the Northern District of Iowa - Eastern + +233201P.pdf 08/05/2024 Eniola Famuyide v. Chipotle Mexican Grill, Inc. + U.S. Court of Appeals Case No: 23-3201 + U.S. District Court for the District of Minnesota + +233261P.pdf 08/05/2024 NCMIC Insurance Company v. Allied Professionals Ins. Co. + U.S. Court of Appeals Case No: 23-3261 + U.S. District Court for the District of Minnesota + +233453P.pdf 08/05/2024 United States v. Marlon Winborn + U.S. Court of Appeals Case No: 23-3453 + U.S. District Court for the District of Minnesota + +241118U.pdf 08/05/2024 Riley Gunter v. City of Omaha + U.S. Court of Appeals Case No: 24-1118 + U.S. District Court for the District of Nebraska - Omaha + +241528U.pdf 08/05/2024 United States v. Terry Christianson + U.S. Court of Appeals Case No: 24-1528 + U.S. District Court for the District of Nebraska - Lincoln + +[ August 02, 2024 ]

+231686P.pdf 08/02/2024 GEICO General Insurance Co. v. M.O. + U.S. Court of Appeals Case No: 23-1686 + U.S. District Court for the Western District of Missouri - Kansas City + +232311P.pdf 08/02/2024 HCI Distribution, Inc. v. Michael Hilgers + U.S. Court of Appeals Case No: 23-2311 + U.S. District Court for the District of Nebraska - Omaha + +232326P.pdf 08/02/2024 L.H. v. Independence School District + U.S. Court of Appeals Case No: 23-2326 + U.S. District Court for the Western District of Missouri - Kansas City + +232656P.pdf 08/02/2024 Christopher Drew v. City of Des Moines + U.S. Court of Appeals Case No: 23-2656 + U.S. District Court for the Southern District of Iowa - Central + +232758U.pdf 08/02/2024 United States v. Avontae Tucker + U.S. Court of Appeals Case No: 23-2758 + U.S. District Court for the Southern District of Iowa - Central + +232869P.pdf 08/02/2024 Guy Gambrell, Jr. v. United States + U.S. Court of Appeals Case No: 23-2869 + U.S. District Court for the Western District of Missouri - Joplin + +233010P.pdf 08/02/2024 United States v. Kylee Starr + U.S. Court of Appeals Case No: 23-3010 + U.S. District Court for the District of North Dakota - Western + +233476U.pdf 08/02/2024 Ahmad Daniel v. Honeywell International Inc. + U.S. Court of Appeals Case No: 23-3476 + U.S. District Court for the District of Minnesota + +[ August 01, 2024 ]

+212237U.pdf 08/01/2024 Mercy Perez Aviles v. Merrick Garland + U.S. Court of Appeals Case No: 21-2237 + Petition for Review of an Order of the Board of Immigration Appeals + +231625P.pdf 08/01/2024 Sr. Kate Reid v. Doe Run Resources Corp. + U.S. Court of Appeals Case No: 23-1625 + U.S. District Court for the Eastern District of Missouri - St. Louis + +232188P.pdf 08/01/2024 United States v. Robert Hansen + U.S. Court of Appeals Case No: 23-2188 + and No: 23-2189 + U.S. District Court for the Northern District of Iowa - Western + +232359P.pdf 08/01/2024 Darrin Rick v. Jodi Harpstead + U.S. Court of Appeals Case No: 23-2359 + U.S. District Court for the District of Minnesota + +233477P.pdf 08/01/2024 Daniel Graff v. Brighthouse Life Ins. Co. + U.S. Court of Appeals Case No: 23-3477 + U.S. District Court for the District of Minnesota + +241052U.pdf 08/01/2024 United States v. Ortez Jones + U.S. Court of Appeals Case No: 24-1052 + U.S. District Court for the Eastern District of Missouri - St. Louis + +241246U.pdf 08/01/2024 Lisa Truong v. Collins Aerospace System + U.S. Court of Appeals Case No: 24-1246 + U.S. District Court for the District of Minnesota + +
\ No newline at end of file diff --git a/tests/examples/opinions/united_states/cal_example.compare.json b/tests/examples/opinions/united_states/cal_example.compare.json index 3a6f4b70f..74ea63098 100644 --- a/tests/examples/opinions/united_states/cal_example.compare.json +++ b/tests/examples/opinions/united_states/cal_example.compare.json @@ -1,252 +1,142 @@ [ { - "case_dates": "2012-05-07", - "case_names": "People v. Jones", - "download_urls": "/opinions/documents/S076721.PDF", + "case_dates": "2024-04-29", + "case_names": "People v. McDavid", + "download_urls": "/opinions/documents/S275940.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S076721", - "case_name_shorts": "Jones" + "docket_numbers": "S275940", + "case_name_shorts": "McDavid" }, { - "case_dates": "2012-05-03", - "case_names": "People v. Thomas", - "download_urls": "/opinions/documents/S185305.PDF", + "case_dates": "2024-04-22", + "case_names": "Ruelas v. County of Alameda", + "download_urls": "/opinions/documents/S277120A.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S185305", - "case_name_shorts": "Thomas" + "docket_numbers": "S277120A", + "case_name_shorts": "Ruelas" }, { - "case_dates": "2012-04-30", - "case_names": "People v. Cornett", - "download_urls": "/opinions/documents/S189733.PDF", + "case_dates": "2024-04-22", + "case_names": "People v. Reynoza", + "download_urls": "/opinions/documents/S273797.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S189733", - "case_name_shorts": "Cornett" + "docket_numbers": "S273797", + "case_name_shorts": "Reynoza" }, { - "case_dates": "2012-04-30", - "case_names": "Kirby v. Immoos Fire etc.", - "download_urls": "/opinions/documents/S185827.PDF", + "case_dates": "2024-03-28", + "case_names": "Harrod v. Country Oaks Partners, LLC", + "download_urls": "/opinions/documents/S276545.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S185827", - "case_name_shorts": "Kirby" + "docket_numbers": "S276545", + "case_name_shorts": "Harrod" }, { - "case_dates": "2012-04-26", - "case_names": "People v. Myles", - "download_urls": "/opinions/documents/S097189.PDF", + "case_dates": "2024-03-25", + "case_names": "Huerta v. CSI Electrical Contractors", + "download_urls": "/opinions/documents/S275431.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S097189", - "case_name_shorts": "Myles" + "docket_numbers": "S275431", + "case_name_shorts": "Huerta" }, { - "case_dates": "2012-04-26", - "case_names": "People v. Livingston", - "download_urls": "/opinions/documents/S090499.PDF", + "case_dates": "2024-03-04", + "case_names": "People v. Hardin", + "download_urls": "/opinions/documents/S277487.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S090499", - "case_name_shorts": "Livingston" + "docket_numbers": "S277487", + "case_name_shorts": "Hardin" }, { - "case_dates": "2012-04-26", - "case_names": "Dicon Fiberoptics v. Franchise Tax Bd.", - "download_urls": "/opinions/documents/S173860.PDF", + "case_dates": "2024-03-04", + "case_names": "Niedermeier v. FCA US LLC", + "download_urls": "/opinions/documents/S266034.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S173860", - "case_name_shorts": "" - }, - { - "case_dates": "2012-04-23", - "case_names": "Maldonado v. Super. Ct.", - "download_urls": "/opinions/documents/S183961.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S183961", - "case_name_shorts": "Maldonado" + "docket_numbers": "S266034", + "case_name_shorts": "Niedermeier" }, { - "case_dates": "2012-04-19", - "case_names": "People v. Hernandez", - "download_urls": "/opinions/documents/S178823.PDF", + "case_dates": "2024-02-26", + "case_names": "TriCoast Builders, Inc. v. Fonnegra", + "download_urls": "/opinions/documents/S273368.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S178823", - "case_name_shorts": "Hernandez" + "docket_numbers": "S273368", + "case_name_shorts": "Fonnegra" }, { - "case_dates": "2012-04-16", - "case_names": "People v. Weaver", - "download_urls": "/opinions/documents/S033149.PDF", + "case_dates": "2024-02-22", + "case_names": "People v. Clark", + "download_urls": "/opinions/documents/S275746.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S033149", - "case_name_shorts": "Weaver" - }, - { - "case_dates": "2012-04-12", - "case_names": "Brinker Restaurant Corp. v. Super. Ct.", - "download_urls": "/opinions/documents/S166350.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S166350", + "docket_numbers": "S275746", "case_name_shorts": "" }, { - "case_dates": "2012-03-29", - "case_names": "Quarry v. Doe I", - "download_urls": "/opinions/documents/S171382.PDF", + "case_dates": "2024-02-08", + "case_names": "Haggerty v. Thornton", + "download_urls": "/opinions/documents/S271483.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S171382", - "case_name_shorts": "Quarry" + "docket_numbers": "S271483", + "case_name_shorts": "Haggerty" }, { - "case_dates": "2012-03-19", - "case_names": "People v. Abel", - "download_urls": "/opinions/documents/S064733.PDF", + "case_dates": "2024-02-05", + "case_names": "In re Vaquera", + "download_urls": "/opinions/documents/S258376.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S064733", - "case_name_shorts": "Abel" + "docket_numbers": "S258376", + "case_name_shorts": "In re Vaquera" }, { - "case_dates": "2012-03-14", - "case_names": "People v. Cravens", - "download_urls": "/opinions/documents/S186661M.PDF", + "case_dates": "2024-02-01", + "case_names": "Romero v. Shih", + "download_urls": "/opinions/documents/S275023.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S186661M", - "case_name_shorts": "Cravens" - }, - { - "case_dates": "2012-03-08", - "case_names": "People v. Manzo", - "download_urls": "/opinions/documents/S191400.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S191400", - "case_name_shorts": "Manzo" - }, - { - "case_dates": "2012-03-08", - "case_names": "C.A. v. William S. Hart Union High School", - "download_urls": "/opinions/documents/S188982.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S188982", - "case_name_shorts": "C.A." - }, - { - "case_dates": "2012-03-05", - "case_names": "In re Lucas", - "download_urls": "/opinions/documents/S181788.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S181788", - "case_name_shorts": "In re Lucas" - }, - { - "case_dates": "2012-02-23", - "case_names": "People v. Thomas", - "download_urls": "/opinions/documents/S048337.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S048337", - "case_name_shorts": "Thomas" - }, - { - "case_dates": "2012-02-06", - "case_names": "People v. Fuiava", - "download_urls": "/opinions/documents/S055652.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S055652", - "case_name_shorts": "Fuiava" - }, - { - "case_dates": "2012-02-06", - "case_names": "People v. Enraca", - "download_urls": "/opinions/documents/S080947.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S080947", - "case_name_shorts": "Enraca" - }, - { - "case_dates": "2012-02-02", - "case_names": "People v. Elliott", - "download_urls": "/opinions/documents/S027094.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S027094", - "case_name_shorts": "Elliott" - }, - { - "case_dates": "2012-02-02", - "case_names": "People v. Brents", - "download_urls": "/opinions/documents/S093754.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S093754", - "case_name_shorts": "Brents" - }, - { - "case_dates": "2012-01-30", - "case_names": "People v. Johnson", - "download_urls": "/opinions/documents/S188619.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S188619", - "case_name_shorts": "" + "docket_numbers": "S275023", + "case_name_shorts": "Romero" }, { - "case_dates": "2012-01-30", - "case_names": "People v. Cravens", - "download_urls": "/opinions/documents/S186661.PDF", + "case_dates": "2024-01-22", + "case_names": "People v. Helzer", + "download_urls": "/opinions/documents/S132256.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S186661", - "case_name_shorts": "Cravens" + "docket_numbers": "S132256", + "case_name_shorts": "Helzer" }, { - "case_dates": "2012-01-27", - "case_names": "Vandermost v. Bowen", - "download_urls": "/opinions/documents/S198387.PDF", + "case_dates": "2024-01-18", + "case_names": "Estrada v. Royalty Carpet Mills, Inc.", + "download_urls": "/opinions/documents/S274340.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S198387", - "case_name_shorts": "Vandermost" + "docket_numbers": "S274340", + "case_name_shorts": "Estrada" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/cal_example.html b/tests/examples/opinions/united_states/cal_example.html index c6bb014c8..e9ffc5e90 100644 --- a/tests/examples/opinions/united_states/cal_example.html +++ b/tests/examples/opinions/united_states/cal_example.html @@ -1,94 +1,77 @@ - - - + + + + +California Courts - Published Opinions + + + + + +
-

Published Opinions

-

Published Opinions of the appellate courts are opinions certified for publication or ordered published and may be cited or relied on by courts and parties.

+

Published or "citable" opinions of the appellate courts are opinions ordered published in the Official Reports, and may be cited or relied on by other courts and parties.

-

  • Official Reports Opinions (Searchable 1850-Present) are the searchable, citable, published opinions that reflect postfiling corrections. This no-fee service is provided by LexisNexis.
  • +

  • Official Reports Opinions (Searchable 1850-Present) are the searchable, citable, published opinions that reflect post filing corrections. This no-fee service is provided by LexisNexis.
  • -

  • Slip Opinions are as-filed versions of opinions. Slip opinions certified for publication do not reflect enhancement, editing and correction for the Official Reports.
  • +

  • Slip Opinions are as-filed versions of opinions certified for publication or ordered published; they do not reflect enhancement, editing, and correction for the Official Reports. Slip opinions from the last 120 days are posted together on this page as public information about actions taken by the courts.
  • -

    Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court of Appeal slip opinions are posted throughout the day as soon after filing as possible.

    +

  • Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court of Appeal slip opinions are posted throughout the day as soon after filing as possible.
  • -

    Use the list below to select the slip opinions certified for publication, or ordered published, that you want to view and click on the "view" button to activate your selection.

    +

  • Archive of Web Pages Cited in Opinions Issued by the Supreme Court of California
  • +

    Use the pull-down menu below to select the slip opinions that you wish to view. After 120 days, these opinions remain available via our Case Information Search tool.

    -
    -


    - - - - - - - - - - - - - - - - - - - - - - - - - - - +

    Please note that copies of published opinions may also be available from or searchable through sources other than this website.

    + + + + +

    +
    Date Posted
    Docket #/
    File Format
    Description

    May 07 2012S076721
    [PDF] [DOC]

    P. v. Jones 5/7/12 SC -  Case Details
    May 03 2012S185305
    [PDF] [DOC]

    P. v. Thomas 5/3/12 SC -  Case Details
    Apr 30 2012S185827
    [PDF] [DOC]

    Kirby v. Immoos Fire etc. 4/30/12 SC -  Case Details
    Apr 30 2012S189733
    [PDF] [DOC]

    P. v. Cornett 4/30/12 SC -  Case Details
    Apr 26 2012S173860
    [PDF] [DOC]

    Dicon Fiberoptics v. Franchise Tax Bd. 4/26/12 SC -  Case Details
    Apr 26 2012S097189
    [PDF] [DOC]

    P. v. Myles 4/26/12 SC -  Case Details
    Apr 26 2012S090499
    [PDF] [DOC]

    P. v. Livingston 4/26/12 SC -  Case Details
    Apr 23 2012S183961
    [PDF] [DOC]

    Maldonado v. Super. Ct. 4/23/12 SC -  Case Details
    Apr 19 2012S178823
    [PDF] [DOC]

    P. v. Hernandez 4/19/12 SC -  Case Details
    Apr 16 2012S033149
    [PDF] [DOC]

    P. v. Weaver 4/16/12 SC -  Case Details
    Apr 12 2012S166350
    [PDF] [DOC]

    Brinker Restaurant Corp. v. Super. Ct. 4/12/12 SC -  Case Details
    Mar 29 2012S171382
    [PDF] [DOC]

    Quarry v. Doe I 3/29/12 SC -  Case Details
    Mar 19 2012S064733
    [PDF] [DOC]

    P. v. Abel 3/19/12 SC -  Case Details
    Mar 14 2012S186661M
    [PDF] [DOC]

    P. v. Cravens 3/14/12 SC -  Case Details
    Mar 08 2012S191400
    [PDF] [DOC]

    P. v. Manzo 3/8/12 SC -  Case Details
    Mar 08 2012S188982
    [PDF] [DOC]

    C.A. v. William S. Hart Union High School 3/8/12 SC -  Case Details
    Mar 05 2012S181788
    [PDF] [DOC]

    In re Lucas 3/5/12 SC -  Case Details
    Feb 23 2012S048337
    [PDF] [DOC]

    P. v. Thomas 2/23/12 SC -  Case Details
    Feb 06 2012S080947
    [PDF] [DOC]

    P. v. Enraca 2/6/12 SC -  Case Details
    Feb 06 2012S055652
    [PDF] [DOC]

    P. v. Fuiava 2/6/12 SC -  Case Details
    Feb 02 2012S027094
    [PDF] [DOC]

    P. v. Elliott 2/2/12 SC -  Case Details
    Feb 02 2012S093754
    [PDF] [DOC]

    P. v. Brents 2/2/12 SC -  Case Details
    Jan 30 2012S188619
    [PDF] [DOC]

    P. v. Johnson 1/30/12 SC -  Case Details
    Jan 30 2012S186661
    [PDF] [DOC]

    P. v. Cravens 1/30/12 SC -  Case Details
    Jan 27 2012S198387
    [PDF] [DOC]

    Vandermost v. Bowen 1/27/12 SC -  Case Details
    + + + + + + + + + + + + + + +
    Date Posted
    Docket #/
    File Format
    Description

    Apr 29, 2024S275940
    [PDF]
    [DOC]
    P. v. McDavid 4/29/24 SC  Case Details
    Apr 22, 2024S277120A
    [PDF]
    [DOC]
    Ruelas v. County of Alameda 4/22/24 SC  Case Details
    Apr 22, 2024S273797
    [PDF]
    [DOC]
    P. v. Reynoza 4/22/24 SC  Case Details
    Mar 28, 2024S276545
    [PDF]
    [DOC]
    Harrod v. Country Oaks Partners, LLC 3/28/24 SC  Case Details
    Mar 25, 2024S275431
    [PDF]
    [DOC]
    Huerta v. CSI Electrical Contractors 3/25/24 SC  Case Details
    +Web pages cited
    Mar 04, 2024S266034
    [PDF]
    [DOC]
    Niedermeier v. FCA US LLC 3/4/24 SC  Case Details
    Mar 04, 2024S277487
    [PDF]
    [DOC]
    P. v. Hardin 3/4/24 SC  Case Details
    +Web pages cited
    Feb 26, 2024S273368
    [PDF]
    [DOC]
    TriCoast Builders, Inc. v. Fonnegra 2/26/24 SC  Case Details
    Feb 22, 2024S275746
    [PDF]
    [DOC]
    P. v. Clark 2/22/24 SC  Case Details
    Feb 08, 2024S271483
    [PDF]
    [DOC]
    Haggerty v. Thornton 2/8/24 SC  Case Details
    Feb 05, 2024S258376
    [PDF]
    [DOC]
    In re Vaquera 2/5/24 SC  Case Details
    Feb 01, 2024S275023
    [PDF]
    [DOC]
    Romero v. Shih 2/1/24 SC  Case Details
    Jan 22, 2024S132256
    [PDF]
    [DOC]
    P. v. Helzer 1/22/24 SC  Case Details
    Jan 18, 2024S274340
    [PDF]
    [DOC]
    Estrada v. Royalty Carpet Mills, Inc. 1/18/24 SC  Case Details
    +Web pages cited
    -

    +

    + + + + diff --git a/tests/examples/opinions/united_states/calag_example.compare.json b/tests/examples/opinions/united_states/calag_example.compare.json index 68734ba7c..814983d45 100644 --- a/tests/examples/opinions/united_states/calag_example.compare.json +++ b/tests/examples/opinions/united_states/calag_example.compare.json @@ -1,133 +1,145 @@ [ { "case_dates": "2016-12-30", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/15-1202.pdf", + "case_names": "California Attorney General Opinion 15-1202", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/15-1202_0.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-1202", + "citations": "99 Ops.Cal.Atty.Gen. 94", "summaries": "QUESTIONS: 1. When the office of county sheriff becomes vacant because of the sheriff's death, must the next election to fill the office coincide with the next state gubernatorial election, or may the board of supervisors call a special election to fill the office earlier? 2. When the office of county sheriff becomes vacant because of the sheriff's death, must the county board of supervisors appoint a person to fill the office, or may the board, by not appointing a successor sheriff, allow the person temporarily performing the sheriff's duties under Government Code section 24105 to continue to perform those duties until the election? 3. When a county board of supervisors appoints someone to fill a vacancy in the office of county sheriff, must the appointee meet all of the qualifications of the elected position, including county residency? If so, does the board have the authority to waive those requirements? CONCLUSIONS: 1. When the office of county sheriff becomes vacant because of the sheriff's death, the next election to fill the office of sheriff must coincide with the next state gubernatorial election. The board of supervisors may not call a special election to fill the office before that time. 2. When the office of county sheriff becomes vacant because of the sheriff's death, the county board of supervisors must, within a reasonable time, appoint a person to fill out the remainder of the incumbent sheriff's term. The board may not, through inaction, allow the person temporarily performing the sheriff's duties under Government Code section 24105 to continue performing those duties for a protracted period. 3. When a county board of supervisors appoints someone to fill a vacancy in the office of county sheriff, the appointee must meet all the qualifications of the elected position, including county residency. The board does not have the authority to waive those requirements. Official Citation: 99 Ops.Cal.Atty.Gen. 94", "case_name_shorts": "" }, { "case_dates": "2016-12-30", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/14-1206.pdf", + "case_names": "California Attorney General Opinion 14-1206", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/14-1206_0.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "14-1206", + "citations": "99 Ops.Cal.Atty.Gen. 88", "summaries": "QUESTIONS: Must the California Department of Transportation pay fees to cover Mono County's costs for (1) inspecting, and preparing a report on, the Department's surface mining operations as required by the Surface Mining and Reclamation Act, and (2) performing other duties under the Act? CONCLUSIONS: The California Department of Transportation (1) must pay fees to cover Mono County's costs for inspecting, and preparing a report on, the Department's surface mining operations as required by the Surface Mining and Reclamation Act, but (2) is exempt from paying fees for the other duties Mono County is required to perform under the Act. Official Citation: 99 Ops.Cal.Atty.Gen. 88", "case_name_shorts": "" }, { "case_dates": "2016-11-03", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/15-1201.pdf", + "case_names": "California Attorney General Opinion 15-1201", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/15-1201_1.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-1201", + "citations": "99 Ops.Cal.Atty.Gen. 82", "summaries": "QUESTIONS: Should vacancies that occur in unexpired terms on the Banning Library District Board of Trustees be filled by the Riverside County Board of Supervisors pursuant to Education Code section 19426, or by the remaining library district trustees in accordance with Government Code section 1780? CONCLUSIONS: Vacancies that occur in unexpired terms on the Banning Library District Board of Trustees should be filled by the remaining library district trustees in accordance with Government Code section 1780. Official Citation: 99 Ops.Cal.Atty.Gen. 82", "case_name_shorts": "" }, { "case_dates": "2016-09-06", - "case_names": "Untitled California Attorney General Opinion", + "case_names": "California Attorney General Opinion 15-1101", "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/15-1101_0.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-1101", + "citations": "99 Ops.Cal.Atty.Gen. 74", "summaries": "QUESTIONS: Proposed relator DEBORAH ROBERTSON has requested leave to sue proposed defendant EDWARD PALMER in quo warranto to remove him from the public office of Rialto city council member on the ground that he did not reside in the city at the time of his reelection as required by law. CONCLUSIONS: Because proposed relator's allegations regarding Edward Palmer's eligibility to serve on the Rialto city council do not present a substantial issue of fact or law requiring judicial resolution, and because allowing this lawsuit to proceed would not be in the public interest, leave to sue in quo warranto is DENIED. Official Citation: 99 Ops.Cal.Atty.Gen. 74", "case_name_shorts": "" }, { "case_dates": "2016-09-02", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/15-1103.pdf", + "case_names": "California Attorney General Opinion 15-1103", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/15-1103_0.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-1103", + "citations": "99 Ops.Cal.Atty.Gen. 67", "summaries": "QUESTIONS: May a member of a city's redevelopment successor-agency board purchase commercial property located within a former redevelopment area pursuant to a right of first refusal contained in a lease that the member entered into before taking office? CONCLUSIONS: A member of a city's redevelopment successor-agency board may not purchase commercial property located within a former redevelopment area pursuant to a right of first refusal contained in a lease that the member entered into before taking office. Official Citation: 99 Ops.Cal.Atty.Gen. 67", "case_name_shorts": "" }, { "case_dates": "2016-09-01", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/15-801.pdf", + "case_names": "California Attorney General Opinion 15-801", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/15-801_0.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-801", + "citations": "99 Ops.Cal.Atty.Gen. 61", "summaries": "QUESTIONS: Under the weighted voting system used by the Board of Directors of the Metropolitan Water District of Southern California, the votes of some constituent public agencies are shared among two or more representative directors who are present when a vote is taken. If such a board member is legally disqualified and required to recuse himself or herself from participating in a given board vote, how does that recusal affect the counting and determination of the member agency's vote allocation? CONCLUSIONS: If a member of the Board of Directors of the Metropolitan Water District of Southern California is legally disqualified and required to recuse himself or herself from participating in a given board vote, the board member is effectively absent from that vote. So, if that board member is part of a multi-director delegation representing a constituent public agency, the votes allocated to the constituent agency are to be shared equally among the agency's other qualified representatives who are present when the vote is taken. Official Citation: 99 Ops.Cal.Atty.Gen. 61", "case_name_shorts": "" }, { "case_dates": "2016-05-06", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/14-901_1.pdf", + "case_names": "California Attorney General Opinion 14-901", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/14-901_2.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "14-901", + "citations": "99 Ops.Cal.Atty.Gen. 56", "summaries": "QUESTIONS: If a school district's employment contract with its superintendent provides an annual cash allowance in lieu of medical benefits that the superintendent would otherwise receive, may the district expend an equivalent annual sum for each school board member to purchase an individual whole life insurance policy in lieu of medical benefits that each board member would otherwise receive? CONCLUSIONS: Notwithstanding that a school district's employment contract with its superintendent provides an annual cash allowance in lieu of medical benefits that the superintendent would otherwise receive, the district may not expend an equivalent annual sum for each school board member to purchase an individual whole life insurance policy in lieu of medical benefits that each board member would otherwise receive. Official Citation: 99 Ops.Cal.Atty.Gen. 56", "case_name_shorts": "" }, { "case_dates": "2016-04-14", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/14-304.pdf", + "case_names": "California Attorney General Opinion 14-304", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/14-304_1.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "14-304", - "summaries": "QUESTIONS: 1. Under Vehicle Code section 22507, may local authorities limit the issuance of long-term preferential parking permits to residents only? 2. In issuing long-term residential parking permits, may local authorities distinguish among residents based on the type of dwelling in which they live\u2014for example, by only making permits available to those residents who occupy single-family dwellings or small (two-to-four-unit) multifamily dwellings, and excluding those residents who occupy larger multifamily dwelling units such as apartment buildings? CONCLUSIONS: 1. Under Vehicle Code section 22507, local authorities may limit the issuance of long-term preferential parking permits to residents only. 2. In issuing long-term residential parking permits, local authorities may not distinguish among residents based on the type of dwelling in which they live. Official Citation: 99 Ops.Cal.Atty.Gen. 49", + "citations": "99 Ops.Cal.Atty.Gen. 49", + "summaries": "QUESTIONS: 1. Under Vehicle Code section 22507, may local authorities limit the issuance of long-term preferential parking permits to residents only? 2. In issuing long-term residential parking permits, may local authorities distinguish among residents based on the type of dwelling in which they live\u2014for example, by only making permits available to those who reside in single-family dwellings or small (two-to-four-unit) multifamily dwellings, and excluding those who reside in larger multifamily dwelling units such as apartment buildings? CONCLUSIONS: 1. Under Vehicle Code section 22507, local authorities may limit the issuance of long-term preferential parking permits to residents only. 2. In issuing long-term residential parking permits, local authorities may not distinguish among residents based on the type of dwelling in which they live. Official Citation: 99 Ops.Cal.Atty.Gen. 49", "case_name_shorts": "" }, { "case_dates": "2016-01-28", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/12-409.pdf", + "case_names": "California Attorney General Opinion 12-409", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/12-409_0.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "12-409", + "citations": "99 Ops.Cal.Atty.Gen. 35", "summaries": "QUESTIONS: Does Government Code section 1090 prohibit an arrangement under which a contract city attorney's compensation for providing the city with additional \"bond counsel\" services is based on a percentage of the city's bond issuances? CONCLUSIONS: Government Code section 1090 prohibits an arrangement under which a contract city attorney's compensation for providing the city with additional \"bond counsel\" services is based on a percentage of the city's bond issuances. Official Citation: 99 Ops.Cal.Atty.Gen. 35", "case_name_shorts": "" }, { "case_dates": "2016-01-26", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/13-304_0.pdf", + "case_names": "California Attorney General Opinion 13-304", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/13-304_1.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "13-304", + "citations": "99 Ops.Cal.Atty.Gen. 18", "summaries": "QUESTIONS: 1. Does a school or community college district violate California constitutional and statutory prohibitions against using public funds to advocate passage of a bond measure by contracting with a person or entity for services related to a bond election campaign? 2. Does a school or community college district violate California prohibitions against using public funds to advocate passage of a bond measure if the district enters into an agreement with a municipal finance firm under which the district obtains pre-bond-election services in return for guaranteeing the firm an exclusive contract to provide bond-sale services if the election is successful? 3. In the case of an agreement as described in Question 2, does a school or community college district violate California law concerning the use of bond proceeds if the district reimburses the municipal finance firm for the cost of providing the pre-election services from the proceeds raised from the bond sale? 4. In the scenario described in Question 3, does a school or community college district violate California law concerning the use of bond proceeds, even where the reimbursement is not an itemized component of the fees the district pays to the firm in connection with the bond sale? 5. Does an entity providing campaign services to a bond measure campaign in exchange for an exclusive agreement with the district to sell the bonds incur an obligation to report the cost of such services as a contribution to the bond measure campaign in accordance with state law? CONCLUSIONS: 1. A school or community college district violates California constitutional and statutory prohibitions against using public funds to advocate passage of a bond measure by contracting with a person or entity for services related to a bond election campaign if the pre-election services may be fairly characterized as campaign activity. 2. A school or community college district violates prohibitions against using public funds to advocate passage of a bond measure if the district enters into an agreement with a municipal finance firm under which the district obtains pre-election services (of any sort) in return for guaranteeing the firm an exclusive contract to provide bond-sale services if the election is successful, under circumstances where (a) the district enters into the agreement for the purpose (sole or partial) of inducing the firm to support the contemplated bond-election campaign or (b) the firm's fee for the bond-sale services is inflated to account for the firm's campaign contributions and the district fails to take reasonable steps to ensure the fee was not inflated. 3. In the case of an agreement as described in Question 2, a school or community college district violates California law concerning the use of bond proceeds if the district reimburses the municipal finance firm for the cost of providing pre-election services from the proceeds raised from the bond sale. 4. In the scenario described in Question 3, a school or community college district violates California law concerning the use of bond proceeds if the district reimburses the municipal finance firm for the cost of providing pre-election services from the fees the district pays to the firm in connection with the bond sale, whether or not the reimbursement is evident as a component of the fees the district pays to the firm in connection with the bond sale made on an itemized service-by-service basis. 5. Where an entity provides campaign services to a bond-measure committee in exchange for an exclusive agreement with the district to sell the bonds, the entity has an obligation to report the value of its services as a contribution to the bond-measure campaign in accordance with state law. Official Citation: 99 Ops.Cal.Atty.Gen. 18", "case_name_shorts": "" }, { "case_dates": "2016-01-19", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/14-1203.pdf", + "case_names": "California Attorney General Opinion 14-1203", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/14-1203_0.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "14-1203", + "citations": "99 Ops.Cal.Atty.Gen. 11", "summaries": "QUESTIONS: 1. Where applicable, the Ralph M. Brown Act's regular meeting online agenda-posting provision requires a local agency's legislative body to post the meeting agenda on the local agency's website at least 72 hours before the scheduled meeting. Is this provision violated whenever the local agency's website experiences technical difficulties (for example, due to a power failure, cyber attack, or other third-party interference) that cause the agenda to become inaccessible to the public for a portion of the 72 hours that precede the scheduled meeting? 2. If technical difficulties prevent a local agency's legislative body from posting the regular meeting agenda on the local agency's website for a continuous 72-hour period before the scheduled regular meeting, but the legislative body has otherwise substantially complied with the Brown Act's agenda-posting requirements, may the legislative body lawfully hold its regular meeting as scheduled? CONCLUSIONS: 1. The Ralph M. Brown Act's regular meeting online agenda-posting provision is not necessarily violated whenever the local agency's website experiences technical difficulties that cause the agenda to become inaccessible to the public for a portion of the 72 hours that precede the scheduled meeting. 2. If technical difficulties prevent a local agency's legislative body from posting a regular meeting agenda on the local agency's website for a continuous 72-hour period before the scheduled regular meeting, but the legislative body has otherwise substantially complied with the Brown Act's agenda-posting requirements, the legislative body may lawfully hold its regular meeting as scheduled. Whether an agency has substantially complied in a given case would require an analysis of the particular circumstances to determine whether the Brown Act's statutory objectives of ensuring open meetings and public awareness are satisfied. Official Citation: 99 Ops.Cal.Atty.Gen. 11", "case_name_shorts": "" }, { "case_dates": "2016-01-15", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/13-403.pdf", + "case_names": "California Attorney General Opinion 13-403", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/13-403_1.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "13-403", + "citations": "99 Ops.Cal.Atty.Gen. 1", "summaries": "QUESTIONS: Does Proposition 26 require voter approval before a county board of supervisors may enact an ordinance that would require a cable television franchise holder providing service in the county to pay a \"public, educational, and governmental access fee,\" equal to one percent of the \"holder's gross revenues,\" to the county as authorized under California's Digital Infrastructure and Video Competition Act? CONCLUSIONS: Proposition 26 does not require voter approval before a county board of supervisors may enact an ordinance that would require a cable television franchise holder providing service in the county to pay a \"public, educational, and governmental access fee,\" equal to one percent of the \"holder's gross revenues,\" to the county as authorized under California's Digital Infrastructure and Video Competition Act. Official Citation: 99 Ops.Cal.Atty.Gen. 1", "case_name_shorts": "" } diff --git a/tests/examples/opinions/united_states/calag_example.html b/tests/examples/opinions/united_states/calag_example.html index 7003f0712..6b7fc9dae 100644 --- a/tests/examples/opinions/united_states/calag_example.html +++ b/tests/examples/opinions/united_states/calag_example.html @@ -1,573 +1,680 @@ - - - - - - - - - - - - - - - Legal Opinions of the Attorney General - Yearly Index | State of California - Department of Justice - Office of the Attorney General - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +

    + + + -
    -
    -
    +
    +
    - -
    - -
      -
    • Subscribe to the AG's RSS Feed
    • -
    • Join the AG's FaceBook
    • -
    • Follow the AG on Twitter
    • -
    • View the AG's YouTube Channel
    • - -
    - +
    -
    - -
    + -
    - - -
    - -
    + + + +
    +
    +
    +
    - -

    - Legal Opinions of the Attorney General -
    Yearly Index

    +
    +
    - -
    +
    + +

    Legal Opinions of the Attorney General -
    Yearly Index

    + +
    -
    +
    -

    Opinions published in 2016

    +

    Opinions published in 2016

    -
    -
    +
    +
    -
    +
    -
    -
    -
    -
    -
    -
    -
    +
    +
    -
    + +
    - - +
    + To view opinion:  Click on the Opinion Number to open document. Once opened, entire text of opinion may be searched by using Adobe Acrobat or the browser's find tools.

    + - - - - + + - - + - - - - + - - - - + - - - - + - - - - + - - - - + - - - - + - - - - + - - - - - + + - - - + - - - - + - - - - + - -
    + Opinion + Question - Conclusion - Published + Conclusion(s) + Issued
    - 15-1202 - 1. When the office of county sheriff becomes vacant because of the sheriff’s death, must the next election to fill the office coincide with the next state gubernatorial election, or may the board of supervisors call a special election to fill the office earlier?
    -
    -2. When the office of county sheriff becomes vacant because of the sheriff’s death, must the county board of supervisors appoint a person to fill the office, or may the board, by not appointing a successor sheriff, allow the person temporarily performing the sheriff’s duties under Government Code section 24105 to continue to perform those duties until the election?
    -
    +
    + 15-1202 + 1. When the office of county sheriff becomes vacant because of the sheriff’s death, must the next election to fill the office coincide with the next state gubernatorial election, or may the board of supervisors call a special election to fill the office earlier?
    +
    +2. When the office of county sheriff becomes vacant because of the sheriff’s death, must the county board of supervisors appoint a person to fill the office, or may the board, by not appointing a successor sheriff, allow the person temporarily performing the sheriff’s duties under Government Code section 24105 to continue to perform those duties until the election?
    +
    3. When a county board of supervisors appoints someone to fill a vacancy in the office of county sheriff, must the appointee meet all of the qualifications of the elected position, including county residency? If so, does the board have the authority to waive those requirements?
    - 1. When the office of county sheriff becomes vacant because of the sheriff’s death, the next election to fill the office of sheriff must coincide with the next state gubernatorial election. The board of supervisors may not call a special election to fill the office before that time.
    -
    -2. When the office of county sheriff becomes vacant because of the sheriff’s death, the county board of supervisors must, within a reasonable time, appoint a person to fill out the remainder of the incumbent sheriff’s term. The board may not, through inaction, allow the person temporarily performing the sheriff’s duties under Government Code section 24105 to continue performing those duties for a protracted period.
    -
    -3. When a county board of supervisors appoints someone to fill a vacancy in the office of county sheriff, the appointee must meet all the qualifications of the elected position, including county residency. The board does not have the authority to waive those requirements.

    +
    + 1. When the office of county sheriff becomes vacant because of the sheriff’s death, the next election to fill the office of sheriff must coincide with the next state gubernatorial election. The board of supervisors may not call a special election to fill the office before that time.
    +
    +2. When the office of county sheriff becomes vacant because of the sheriff’s death, the county board of supervisors must, within a reasonable time, appoint a person to fill out the remainder of the incumbent sheriff’s term. The board may not, through inaction, allow the person temporarily performing the sheriff’s duties under Government Code section 24105 to continue performing those duties for a protracted period.
    +
    +3. When a county board of supervisors appoints someone to fill a vacancy in the office of county sheriff, the appointee must meet all the qualifications of the elected position, including county residency. The board does not have the authority to waive those requirements.

    Official Citation: 99 Ops.Cal.Atty.Gen. 94
    + 12/30/2016
    - 15-1201 + + 15-1201 Should vacancies that occur in unexpired terms on the Banning Library District Board of Trustees be filled by the Riverside County Board of Supervisors pursuant to Education Code section 19426, or by the remaining library district trustees in accordance with Government Code section 1780? - Vacancies that occur in unexpired terms on the Banning Library District Board of Trustees should be filled by the remaining library district trustees in accordance with Government Code section 1780.

    +
    + Vacancies that occur in unexpired terms on the Banning Library District Board of Trustees should be filled by the remaining library district trustees in accordance with Government Code section 1780.

    Official Citation: 99 Ops.Cal.Atty.Gen. 82
    + 11/03/2016
    - 15-1103 + + 15-1103 May a member of a city’s redevelopment successor-agency board purchase commercial property located within a former redevelopment area pursuant to a right of first refusal contained in a lease that the member entered into before taking office? - A member of a city’s redevelopment successor-agency board may not purchase commercial property located within a former redevelopment area pursuant to a right of first refusal contained in a lease that the member entered into before taking office.

    +
    + A member of a city’s redevelopment successor-agency board may not purchase commercial property located within a former redevelopment area pursuant to a right of first refusal contained in a lease that the member entered into before taking office.

    Official Citation: 99 Ops.Cal.Atty.Gen. 67
    + 09/02/2016
    - 15-1101 + + 15-1101 Proposed relator DEBORAH ROBERTSON has requested leave to sue proposed defendant EDWARD PALMER in quo warranto to remove him from the public office of Rialto city council member on the ground that he did not reside in the city at the time of his reelection as required by law. - Because proposed relator’s allegations regarding Edward Palmer’s eligibility to serve on the Rialto city council do not present a substantial issue of fact or law requiring judicial resolution, and because allowing this lawsuit to proceed would not be in the public interest, leave to sue in quo warranto is DENIED.

    +
    + Because proposed relator’s allegations regarding Edward Palmer’s eligibility to serve on the Rialto city council do not present a substantial issue of fact or law requiring judicial resolution, and because allowing this lawsuit to proceed would not be in the public interest, leave to sue in quo warranto is DENIED.

    Official Citation: 99 Ops.Cal.Atty.Gen. 74
    + 09/06/2016
    - 15-801 + + 15-801 Under the weighted voting system used by the Board of Directors of the Metropolitan Water District of Southern California, the votes of some constituent public agencies are shared among two or more representative directors who are present when a vote is taken. If such a board member is legally disqualified and required to recuse himself or herself from participating in a given board vote, how does that recusal affect the counting and determination of the member agency’s vote allocation? - If a member of the Board of Directors of the Metropolitan Water District of Southern California is legally disqualified and required to recuse himself or herself from participating in a given board vote, the board member is effectively absent from that vote. So, if that board member is part of a multi-director delegation representing a constituent public agency, the votes allocated to the constituent agency are to be shared equally among the agency’s other qualified representatives who are present when the vote is taken.

    +
    + If a member of the Board of Directors of the Metropolitan Water District of Southern California is legally disqualified and required to recuse himself or herself from participating in a given board vote, the board member is effectively absent from that vote. So, if that board member is part of a multi-director delegation representing a constituent public agency, the votes allocated to the constituent agency are to be shared equally among the agency’s other qualified representatives who are present when the vote is taken.

    Official Citation: 99 Ops.Cal.Atty.Gen. 61
    + 09/01/2016
    - 14-1206 + + 14-1206 Must the California Department of Transportation pay fees to cover Mono County’s costs for (1) inspecting, and preparing a report on, the Department’s surface mining operations as required by the Surface Mining and Reclamation Act, and (2) performing other duties under the Act? - The California Department of Transportation (1) must pay fees to cover Mono County’s costs for inspecting, and preparing a report on, the Department’s surface mining operations as required by the Surface Mining and Reclamation Act, but (2) is exempt from paying fees for the other duties Mono County is required to perform under the Act.

    +
    + The California Department of Transportation (1) must pay fees to cover Mono County’s costs for inspecting, and preparing a report on, the Department’s surface mining operations as required by the Surface Mining and Reclamation Act, but (2) is exempt from paying fees for the other duties Mono County is required to perform under the Act.

    Official Citation: 99 Ops.Cal.Atty.Gen. 88
    + 12/30/2016
    - 14-1203 - 1. Where applicable, the Ralph M. Brown Act’s regular meeting online agenda-posting provision requires a local agency’s legislative body to post the meeting agenda on the local agency’s website at least 72 hours before the scheduled meeting. Is this provision violated whenever the local agency’s website experiences technical difficulties (for example, due to a power failure, cyber attack, or other third-party interference) that cause the agenda to become inaccessible to the public for a portion of the 72 hours that precede the scheduled meeting?
    -
    +
    + 14-1203 + 1. Where applicable, the Ralph M. Brown Act’s regular meeting online agenda-posting provision requires a local agency’s legislative body to post the meeting agenda on the local agency’s website at least 72 hours before the scheduled meeting. Is this provision violated whenever the local agency’s website experiences technical difficulties (for example, due to a power failure, cyber attack, or other third-party interference) that cause the agenda to become inaccessible to the public for a portion of the 72 hours that precede the scheduled meeting?
    +
    2. If technical difficulties prevent a local agency’s legislative body from posting the regular meeting agenda on the local agency’s website for a continuous 72-hour period before the scheduled regular meeting, but the legislative body has otherwise substantially complied with the Brown Act’s agenda-posting requirements, may the legislative body lawfully hold its regular meeting as scheduled?
    - 1. The Ralph M. Brown Act’s regular meeting online agenda-posting provision is not necessarily violated whenever the local agency’s website experiences technical difficulties that cause the agenda to become inaccessible to the public for a portion of the 72 hours that precede the scheduled meeting.
    -
    -2. If technical difficulties prevent a local agency’s legislative body from posting a regular meeting agenda on the local agency’s website for a continuous 72-hour period before the scheduled regular meeting, but the legislative body has otherwise substantially complied with the Brown Act’s agenda-posting requirements, the legislative body may lawfully hold its regular meeting as scheduled. Whether an agency has substantially complied in a given case would require an analysis of the particular circumstances to determine whether the Brown Act’s statutory objectives of ensuring open meetings and public awareness are satisfied.

    +
    + 1. The Ralph M. Brown Act’s regular meeting online agenda-posting provision is not necessarily violated whenever the local agency’s website experiences technical difficulties that cause the agenda to become inaccessible to the public for a portion of the 72 hours that precede the scheduled meeting.
    +
    +2. If technical difficulties prevent a local agency’s legislative body from posting a regular meeting agenda on the local agency’s website for a continuous 72-hour period before the scheduled regular meeting, but the legislative body has otherwise substantially complied with the Brown Act’s agenda-posting requirements, the legislative body may lawfully hold its regular meeting as scheduled. Whether an agency has substantially complied in a given case would require an analysis of the particular circumstances to determine whether the Brown Act’s statutory objectives of ensuring open meetings and public awareness are satisfied.

    Official Citation: 99 Ops.Cal.Atty.Gen. 11
    + 01/19/2016
    - 14-901 + + 14-901 If a school district’s employment contract with its superintendent provides an annual cash allowance in lieu of medical benefits that the superintendent would otherwise receive, may the district expend an equivalent annual sum for each school board member to purchase an individual whole life insurance policy in lieu of medical benefits that each board member would otherwise receive? - Notwithstanding that a school district’s employment contract with its superintendent provides an annual cash allowance in lieu of medical benefits that the superintendent would otherwise receive, the district may not expend an equivalent annual sum for each school board member to purchase an individual whole life insurance policy in lieu of medical benefits that each board member would otherwise receive.

    +
    + Notwithstanding that a school district’s employment contract with its superintendent provides an annual cash allowance in lieu of medical benefits that the superintendent would otherwise receive, the district may not expend an equivalent annual sum for each school board member to purchase an individual whole life insurance policy in lieu of medical benefits that each board member would otherwise receive.

    Official Citation: 99 Ops.Cal.Atty.Gen. 56
    + 05/06/2016
    - 14-304 - 1. Under Vehicle Code section 22507, may local authorities limit the issuance of long-term preferential parking permits to residents only?
    -
    -2. In issuing long-term residential parking permits, may local authorities distinguish among residents based on the type of dwelling in which they live—for example, by only making permits available to those residents who occupy single-family dwellings or small (two-to-four-unit) multifamily dwellings, and excluding those residents who occupy larger multifamily dwelling units such as apartment buildings?
    - 1. Under Vehicle Code section 22507, local authorities may limit the issuance of long-term preferential parking permits to residents only.
    -
    -2. In issuing long-term residential parking permits, local authorities may not distinguish among residents based on the type of dwelling in which they live.

    +
    + 14-304 + 1. Under Vehicle Code section 22507, may local authorities limit the issuance of long-term preferential parking permits to residents only?
    +
    +2. In issuing long-term residential parking permits, may local authorities distinguish among residents based on the type of dwelling in which they live—for example, by only making permits available to those who reside in single-family dwellings or small (two-to-four-unit) multifamily dwellings, and excluding those who reside in larger multifamily dwelling units such as apartment buildings?
    + 1. Under Vehicle Code section 22507, local authorities may limit the issuance of long-term preferential parking permits to residents only.
    +
    +2. In issuing long-term residential parking permits, local authorities may not distinguish among residents based on the type of dwelling in which they live.

    Official Citation: 99 Ops.Cal.Atty.Gen. 49
    + 04/14/2016
    - 13-403 + + 13-403 Does Proposition 26 require voter approval before a county board of supervisors may enact an ordinance that would require a cable television franchise holder providing service in the county to pay a “public, educational, and governmental access fee,” equal to one percent of the “holder’s gross revenues,” to the county as authorized under California’s Digital Infrastructure and Video Competition Act? - Proposition 26 does not require voter approval before a county board of supervisors may enact an ordinance that would require a cable television franchise holder providing service in the county to pay a “public, educational, and governmental access fee,” equal to one percent of the “holder’s gross revenues,” to the county as authorized under California’s Digital Infrastructure and Video Competition Act.

    +
    + Proposition 26 does not require voter approval before a county board of supervisors may enact an ordinance that would require a cable television franchise holder providing service in the county to pay a “public, educational, and governmental access fee,” equal to one percent of the “holder’s gross revenues,” to the county as authorized under California’s Digital Infrastructure and Video Competition Act.

    Official Citation: 99 Ops.Cal.Atty.Gen. 1
    + 01/15/2016
    - 13-304 - 1. Does a school or community college district violate California constitutional and statutory prohibitions against using public funds to advocate passage of a bond measure by contracting with a person or entity for services related to a bond election campaign?
    -
    -2. Does a school or community college district violate California prohibitions against using public funds to advocate passage of a bond measure if the district enters into an agreement with a municipal finance firm under which the district obtains pre-bond-election services in return for guaranteeing the firm an exclusive contract to provide bond-sale services if the election is successful?
    -
    -3. In the case of an agreement as described in Question 2, does a school or community college district violate California law concerning the use of bond proceeds if the district reimburses the municipal finance firm for the cost of providing the pre-election services from the proceeds raised from the bond sale?
    -
    -4. In the scenario described in Question 3, does a school or community college district violate California law concerning the use of bond proceeds, even where the reimbursement is not an itemized component of the fees the district pays to the firm in connection with the bond sale?
    -
    +
    + 13-304 + 1. Does a school or community college district violate California constitutional and statutory prohibitions against using public funds to advocate passage of a bond measure by contracting with a person or entity for services related to a bond election campaign?
    +
    +2. Does a school or community college district violate California prohibitions against using public funds to advocate passage of a bond measure if the district enters into an agreement with a municipal finance firm under which the district obtains pre-bond-election services in return for guaranteeing the firm an exclusive contract to provide bond-sale services if the election is successful?
    +
    +3. In the case of an agreement as described in Question 2, does a school or community college district violate California law concerning the use of bond proceeds if the district reimburses the municipal finance firm for the cost of providing the pre-election services from the proceeds raised from the bond sale?
    +
    +4. In the scenario described in Question 3, does a school or community college district violate California law concerning the use of bond proceeds, even where the reimbursement is not an itemized component of the fees the district pays to the firm in connection with the bond sale?
    +
    5. Does an entity providing campaign services to a bond measure campaign in exchange for an exclusive agreement with the district to sell the bonds incur an obligation to report the cost of such services as a contribution to the bond measure campaign in accordance with state law?
    - 1. A school or community college district violates California constitutional and statutory prohibitions against using public funds to advocate passage of a bond measure by contracting with a person or entity for services related to a bond election campaign if the pre-election services may be fairly characterized as campaign activity.
    -
    -2. A school or community college district violates prohibitions against using public funds to advocate passage of a bond measure if the district enters into an agreement with a municipal finance firm under which the district obtains pre-election services (of any sort) in return for guaranteeing the firm an exclusive contract to provide bond-sale services if the election is successful, under circumstances where (a) the district enters into the agreement for the purpose (sole or partial) of inducing the firm to support the contemplated bond-election campaign or (b) the firm’s fee for the bond-sale services is inflated to account for the firm’s campaign contributions and the district fails to take reasonable steps to ensure the fee was not inflated.
    -
    -3. In the case of an agreement as described in Question 2, a school or community college district violates California law concerning the use of bond proceeds if the district reimburses the municipal finance firm for the cost of providing pre-election services from the proceeds raised from the bond sale.
    -
    -4. In the scenario described in Question 3, a school or community college district violates California law concerning the use of bond proceeds if the district reimburses the municipal finance firm for the cost of providing pre-election services from the fees the district pays to the firm in connection with the bond sale, whether or not the reimbursement is evident as a component of the fees the district pays to the firm in connection with the bond sale made on an itemized service-by-service basis.
    - 
    -5. Where an entity provides campaign services to a bond-measure committee in exchange for an exclusive agreement with the district to sell the bonds, the entity has an obligation to report the value of its services as a contribution to the bond-measure campaign in accordance with state law.

    +
    + 1. A school or community college district violates California constitutional and statutory prohibitions against using public funds to advocate passage of a bond measure by contracting with a person or entity for services related to a bond election campaign if the pre-election services may be fairly characterized as campaign activity.
    +
    +2. A school or community college district violates prohibitions against using public funds to advocate passage of a bond measure if the district enters into an agreement with a municipal finance firm under which the district obtains pre-election services (of any sort) in return for guaranteeing the firm an exclusive contract to provide bond-sale services if the election is successful, under circumstances where (a) the district enters into the agreement for the purpose (sole or partial) of inducing the firm to support the contemplated bond-election campaign or (b) the firm’s fee for the bond-sale services is inflated to account for the firm’s campaign contributions and the district fails to take reasonable steps to ensure the fee was not inflated.
    +
    +3. In the case of an agreement as described in Question 2, a school or community college district violates California law concerning the use of bond proceeds if the district reimburses the municipal finance firm for the cost of providing pre-election services from the proceeds raised from the bond sale.
    +
    +4. In the scenario described in Question 3, a school or community college district violates California law concerning the use of bond proceeds if the district reimburses the municipal finance firm for the cost of providing pre-election services from the fees the district pays to the firm in connection with the bond sale, whether or not the reimbursement is evident as a component of the fees the district pays to the firm in connection with the bond sale made on an itemized service-by-service basis.
    + 
    +5. Where an entity provides campaign services to a bond-measure committee in exchange for an exclusive agreement with the district to sell the bonds, the entity has an obligation to report the value of its services as a contribution to the bond-measure campaign in accordance with state law.

    Official Citation: 99 Ops.Cal.Atty.Gen. 18
    + 01/26/2016
    - 12-409 + + 12-409 Does Government Code section 1090 prohibit an arrangement under which a contract city attorney’s compensation for providing the city with additional “bond counsel” services is based on a percentage of the city’s bond issuances? - Government Code section 1090 prohibits an arrangement under which a contract city attorney’s compensation for providing the city with additional “bond counsel” services is based on a percentage of the city’s bond issuances.

    +
    + Government Code section 1090 prohibits an arrangement under which a contract city attorney’s compensation for providing the city with additional “bond counsel” services is based on a percentage of the city’s bond issuances.

    Official Citation: 99 Ops.Cal.Atty.Gen. 35
    + 01/28/2016
    +
    @@ -581,26 +688,31 @@

    - -
    - - -
    + + + + + + +
    + +
    - -
    - - - -
    -
    - -
    -
    -
    - - -
    -

    Megan's Law

    -
    -

    California Registered Sex Offender Database

    -

    Search Now

    -

    Megan's Law information is also available in these languages:

    - - - -
    -
    - -
    -
    - -
    -
    -
    - +

    How to Submit a Question of Law for AG Consideration

    +

    The Attorney General is authorized to give opinions on questions of law to state legislators, heads of state departments, district attorneys, county counsels, sheriffs, and to city attorneys in their prosecutorial capacities. For more information about requesting an opinion, please see our FAQs and the Guidelines for AG Opinions.pdf a downloadable resource provided for users' reference.

    +

    To submit a request, or to ask questions about how to submit a request, please contact: - -

    +

      +
    • Marc J. Nolan
    • +
    • Senior Assistant Attorney General
    • +
    • Office of the Attorney General
    • +
    • Opinion Unit, Dept. of Justice
    • +
    • 300 South Spring Street
    • +
    • Los Angeles, CA 90013
    • +
    • Marc.Nolan@doj.ca.gov
    • +

    -
    - - -
    - -
    -
    +
    -
    -

    Resources

    - +
    +

    How to Request a Copy of an Existing Opinion

    + +

    A copy of a published opinion may be obtained by contacting the Opinion Unit: + +

      +
    • Office of the Attorney General
    • +
    • Opinion Unit, Dept. of Justice
    • +
    • Attn. Stephanie Grimes
    • +
    • P. O. Box 944255
    • +
    • Sacramento, CA 94244-2550
    • +
    • Stephanie.Grimes@doj.ca.gov
    • +
    • Printed hardbound volumes of Opinions of the Attorney General of California (1943 to present) are available for purchase by contacting Lexis Publishing online store at www.lexisnexis.com/store/us/. Electronic based opinions dating back to 1960 are also available in the Lexis online database. Additionally, hardbound volumes are also an available reference in public law libraries.
    • + +

    - -
    -
    + +
    +
    - -
    - -
    -
    +
    + -
    - +
    +
    +
    + State of California Department of Justice - Office of the Attorney General +
    +
    +
    State of California Department of Justice
    Office of the Attorney General
    +
    +
    +
    + +
    +
    + + + + + +
    +
    - - - -
    - - +
    - + -
    -
    - - \ No newline at end of file +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calag_example_2.compare.json b/tests/examples/opinions/united_states/calag_example_2.compare.json index 3e808a8b8..2733d84c4 100644 --- a/tests/examples/opinions/united_states/calag_example_2.compare.json +++ b/tests/examples/opinions/united_states/calag_example_2.compare.json @@ -1,541 +1,170 @@ [ { - "case_dates": "2000-12-08", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-708.pdf", + "case_dates": "2023-12-29", + "case_names": "California Attorney General Opinion 23-1201", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/23-1201.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "00-708", - "summaries": "QUESTIONS: May a member of the governing board of a joint powers agency cast a valid vote on a matter before the agency that is inconsistent with the position taken by the legislative body which appointed the member? CONCLUSIONS: A member of the governing board of a joint powers agency may cast a valid vote on a matter before the agency that is inconsistent with the position taken by the legislative body which appointed the member. Official Citation: 83 Ops.Cal.Atty.Gen. 267", + "docket_numbers": "23-1201", + "citations": "106 Ops.Cal.Atty.Gen. 151", + "summaries": "QUESTIONS: The BELLEVIEW ELEMENTARY SCHOOL DISTRICT has applied to this office for leave to sue JASON VASSAR in quo warranto to remove him from his seat on the School District's Board. The application asserts that Vassar is subject to removal under Government Code section 1770(b) because he is mentally incapacitated and unable to perform his job duties. CONCLUSIONS: We conclude that there are substantial issues of law and fact as to whether the requirements of section 1770(b) are satisfied. We further conclude that the public interest will be served by allowing the proposed quo warranto action to proceed. Consequently, the application for leave to sue is GRANTED. Official Citation: 106 Ops.Cal.Atty.Gen. 151", "case_name_shorts": "" }, { - "case_dates": "2000-11-29", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-1005.pdf", + "case_dates": "2023-12-19", + "case_names": "California Attorney General Opinion 23-103", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/23-103.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "00-1005", - "summaries": "QUESTIONS: Did Henry Duque forfeit his office as a member of the California Public Utilities Commission when he purchased 700 shares of stock of a communications company subject to regulation by the commission? CONCLUSIONS: Whether Henry Duque forfeited his office as a member of the California Public Utilities Commission when he purchased 700 shares of stock of a communications company subject to regulation by the commission presents a substantial issue of law that warrants judicial resolution. Official Citation: 83 Ops.Cal.Atty.Gen. 263", + "docket_numbers": "23-103", + "citations": "106 Ops.Cal.Atty.Gen. 119", + "summaries": "QUESTIONS: Could state-law authorization, under an agreement pursuant to Chapter 25 of Division 10 of the Business and Professions Code, for medicinal or adult-use commercial cannabis activity, or both, between out-of-state licensees and California licensees \"result in significant legal risk to the State of California under the federal Controlled Substances Act\" within the meaning of Business and Professions Code section 26308(a)(4)? CONCLUSIONS: Yes. State-law authorization for commercial cannabis activity between out-of-state licensees and California licensees could \"result in significant legal risk to the State of California under the federal Controlled Substances Act\" within the meaning of section 26308(a)(4) due to the risks of federal preemption of state law and criminal prosecution of state employees. Courts have disagreed about the scope of federal preemption in the cannabis context, and no court has ever considered a preemption challenge to a state law authorizing interstate cannabis sales. The law is also unsettled as to whether state officials could be federally prosecuted for implementing state law in this area. Official Citation: 106 Ops.Cal.Atty.Gen. 119", "case_name_shorts": "" }, { - "case_dates": "2000-11-17", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1103.pdf", + "case_dates": "2023-11-30", + "case_names": "California Attorney General Opinion 23-602", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/23-602.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "99-1103", - "summaries": "QUESTIONS: May school administrators at a public high school implement a policy requiring on an unannounced, random, and neutral basis that (1) pupils be directed to vacate their classrooms and leave behind their personal belongings, including backpacks, purses, jackets, and outer garments, for sniffing by canines trained in the detection of drugs, (2) the pupils would proceed to a location not within the immediate vicinity of the canines and would remain away from the canines at all times, and (3) if a canine's behavior indicated the presence of drugs, the pupil's personal belongings would be searched by the school administrators without the pupil's consent? CONCLUSIONS: School administrators at a public high school may not implement a policy requiring on an unannounced, random, and neutral basis that (1) pupils be directed to vacate their classrooms and leave behind their personal belongings, including backpacks, purses, jackets, and outer garments, for sniffing by canines trained in the detection of drugs, (2) the pupils would proceed to a location not within the immediate vicinity of the canines and would remain away from the canines at all times, and (3) if a canine's behavior indicated the presence of drugs, the pupil's personal belongings would be searched by the school administrators without the pupil's consent. Official Citation: 83 Ops.Cal.Atty.Gen. 257", + "docket_numbers": "23-602", + "citations": "106 Ops.Cal.Atty.Gen. 112", + "summaries": "QUESTIONS: The San Joaquin Delta Community College District has applied to this office for leave to sue KATHLEEN GARCIA in quo warranto to remove her from serving as a member of the San Joaquin Delta Community College District Board of Trustees. The application asserts that Garcia, while serving on that board, assumed a second and incompatible office as a member of the Eastside Rural Fire Protection District Board of Trustees in violation of Government Code section 1099, and by doing so forfeited her seat on the College District board. CONCLUSIONS: We conclude that there is a substantial legal issue as to whether Garcia is simultaneously holding incompatible offices. Consequently, and because the public interest will be served by allowing the proposed quo warranto action to proceed, the application for leave to sue is GRANTED. Official Citation: 106 Ops.Cal.Atty.Gen. 112", "case_name_shorts": "" }, { - "case_dates": "2000-10-24", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-609.pdf", + "case_dates": "2023-11-30", + "case_names": "California Attorney General Opinion 23-402", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/23-402.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "00-609", - "summaries": "QUESTIONS: Is the California Commission on Teacher Credentialing required to deny a credential to an applicant who has been convicted of a sex offense listed in Education Code sections 44010 and 44424 that is not specified as a \"violent or serious felony,\" where the applicant's probation has been terminated, and the information or accusation has been dismissed, but the applicant is not eligible to seek a certificate of rehabilitation and pardon because the offense was a misdemeanor instead of a felony? CONCLUSIONS: The California Commission on Teacher Credentialing is not required to deny a credential to an applicant who has been convicted of a sex offense listed in Education Code sections 44010 and 44424 that is not specified as a \"violent or serious felony,\" where the applicant's probation has been terminated, and the information or accusation has been dismissed, but the applicant is not eligible to seek a certificate of rehabilitation and pardon because the offense was a misdemeanor instead of a felony. Official Citation: 83 Ops.Cal.Atty.Gen. 251", + "docket_numbers": "23-402", + "citations": "106 Ops.Cal.Atty.Gen. 97", + "summaries": "QUESTIONS: SHAKIR KHAN has applied to this office for leave to sue RAMON YEPEZ in quo warranto to remove Yepez from his seat on the Lodi City Council. Khan, the former holder of that seat, alleges that the City Council unlawfully declared Khan's seat to be vacant and therefore unlawfully appointed Yepez to fill it. CONCLUSIONS: We conclude that there are substantial issues of fact and law as to whether the City Council lawfully declared Khan's former seat to be vacant and (as a result) whether the Council lawfully appointed Yepez to fill it. Consequently, and because the public interest will be served by allowing the proposed quo warranto action to proceed, we GRANT the application for leave to sue. Official Citation: 106 Ops.Cal.Atty.Gen. 97", "case_name_shorts": "" }, { - "case_dates": "2000-10-23", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-804.pdf", + "case_dates": "2023-11-30", + "case_names": "California Attorney General Opinion 23-302", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/23-302.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "99-804", - "summaries": "QUESTIONS: Was the California Department of Transportation the \"awarding body\" for purposes of the prevailing wage law with respect to a contract executed by Amtrak and a private contractor for construction of a passenger rail station on property leased by Amtrak and owned by a private railroad company where the project was funded by a grant from the department awarded under provisions of the Clean Air and transportation Improvement Act of 1990? CONCLUSIONS: Under the circumstances presented, the California Department of Transportation was not the \"awarding body\" for purposes of the prevailing wage law with respect to a contract executed by Amtrak and a private contractor to construct a passenger rail station on property leased by Amtrak and owned by a private railroad company where the project was funded by a grant from the department awarded under provisions of the Clean Air and Transportation Improvement Act of 1990. Official Citation: 83 Ops.Cal.Atty.Gen. 231", + "docket_numbers": "23-302", + "citations": "106 Ops.Cal.Atty.Gen. 79", + "summaries": "QUESTIONS: 1. Under state law, may an appointed public member of the City of San Diego Audit Committee concurrently serve as: (a) an appointed public member of the San Diego Association of Governments (SANDAG) TransNet Independent Taxpayer Oversight Committee; (b) an appointed public member of the SANDAG Audit Policy Advisory Committee; or (c) the Internal Auditor of the San Diego Metropolitan Transit System? 2. Would the City Council of San Diego violate state law by appointing a member of the public to the City Audit Committee if doing so would result in the appointee holding incompatible public offices in violation of Government Code section 1099? CONCLUSIONS: 1. As to (a) and (b), an appointed public member of the City Audit Committee may not serve concurrently as an appointed public member of either the SANDAG TransNet Independent Taxpayer Oversight Committee or the SANDAG Audit Policy Advisory Committee. Such concurrent service would violate Government Code section 1099, which prohibits serving in legally incompatible public offices. As to (c), an appointed public member of the City Audit Committee may serve concurrently as the Internal Auditor of the San Diego Metropolitan Transit System without violating section 1099, because the Internal Auditor position is not a public office. Such concurrent service also would not violate Government Code section 1126's prohibition against engaging in incompatible outside activities, unless the City Council determines that serving as the System's Internal Auditor is inconsistent with the duties of a City Audit Committee member. Other state laws prohibiting financial and personal conflicts of interest would not prohibit the concurrent holding of these positions either. Those laws generally apply to particular government transactions or decisions, not the simultaneous holding of government positions, and, in any event, the request does not reference any type of financial or personal conflict. 2. No. The City Council would not violate state law by appointing a member of the public to the City Audit Committee if doing so would result in the appointee holding incompatible public offices in violation of Government Code section 1099. Although section 1099(b) provides that a public official who accepts a second, legally incompatible public office thereby forfeits the first office held, neither section 1099, nor any other authority we are aware of, provides that an appointing authority violates or is subject to any sanction under state law by making such an appointment. Official Citation: 106 Ops.Cal.Atty.Gen. 79", "case_name_shorts": "" }, { - "case_dates": "2000-10-23", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-706.pdf", + "case_dates": "2023-11-09", + "case_names": "California Attorney General Opinion 22-1201", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/22-1201.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "00-706", - "summaries": "QUESTIONS: 1. May a person serve simultaneously as a deputy sheriff and a city council member? 2. May a city council, one member of which is a deputy sheriff, enter into a contract with the sheriff to provide police services to the city? CONCLUSIONS: 1. A person may serve simultaneously as a deputy sheriff and a city council member. 2. A city council, one member of which is a deputy sheriff, may enter into a contract with the sheriff to provide police services to the city, provided that the interest of the deputy sheriff is disclosed to the council and noted in its official records, and the deputy sheriff completely abstains from any participation in the matter. Official Citation: 83 Ops.Cal.Atty.Gen. 246", + "docket_numbers": "22-1201", + "citations": "106 Ops.Cal.Atty.Gen. 70", + "summaries": "QUESTIONS: California wineries applying for a direct shipper license in another state are often required\u2014pursuant to the other state's alcohol control statutory or regulatory scheme\u2014to provide a criminal record check in connection with that application. If a California winery owner or manager obtains their own criminal record check from the California Department of Justice, would furnishing that criminal record check\u2014or a notification reflecting that no such record exists\u2014to another state's alcohol control agency violate California Penal Code sections 11125, 11142, or 11143? CONCLUSIONS: If a California winery owner or manager furnishes their criminal record\u2014or notification no such record exists\u2014to another state's alcohol control agency, that would constitute a violation of California Penal Code sections 11125, 11142, or 11143. However, if the other state's alcohol control agency obtains authorization from the California Department of Justice to receive California state summary criminal information, then the other state's agency may request and receive the criminal background information directly from the California Department of Justice as specified in Penal Code section 11105. Official Citation: 106 Ops.Cal.Atty.Gen. 70", "case_name_shorts": "" }, { - "case_dates": "2000-10-23", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-701.pdf", + "case_dates": "2023-10-19", + "case_names": "California Attorney General Opinion 23-101", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/23-101.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "00-701", - "summaries": "QUESTIONS: May a gift certificate for a meal sold by a restaurant contain an expiration date? CONCLUSIONS: A gift certificate for a meal sold by a restaurant may not contain an expiration date. Official Citation: 83 Ops.Cal.Atty.Gen. 243", + "docket_numbers": "23-101", + "citations": "106 Ops.Cal.Atty.Gen. 59", + "summaries": "QUESTIONS: Do the disclosure, recusal, and cure provisions of Senate Bill No. 1439 (amending Government Code section 84308) apply to political contributions made before January 1, 2023? CONCLUSIONS: No, the disclosure, recusal, and cure provisions of Senate Bill No. 1439 (amending Government Code section 84308) do not apply retroactively to political contributions made before January 1, 2023. Official Citation: 106 Ops.Cal.Atty.Gen. 59", "case_name_shorts": "" }, { - "case_dates": "2000-10-23", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-603.pdf", + "case_dates": "2023-08-24", + "case_names": "California Attorney General Opinion 22-701", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/22-701.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "00-603", - "summaries": "QUESTIONS: Does the prohibition against participation by a board member of the Los Angeles Metropolitan Transit Authority in a contract decision if he or she received in the past four years a campaign contribution exceeding $10 from a person submitting a proposal for the contract apply to (1) contributions received during the four years immediately prior to January 1, 1998, and (2) contributions received from persons who submitted proposals for the contract but were not selected by staff employees for approval and acceptance by the board? CONCLUSIONS: The prohibition against participation by a board member of the Los Angeles Metropolitan Authority in a contract decision if he or she received in the past four years a campaign contribution exceeding $10 from a person submitting a proposal for the contract applies to (1) contributions received during the four years immediately prior to January 1, 1998, and (2) contributions received from persons who submitted proposals for the contract but were not selected by staff employees for approval and acceptance by the board. Official Citation: 83 Ops.Cal.Atty.Gen. 236", + "docket_numbers": "22-701", + "citations": "106 Ops.Cal.Atty.Gen. 41", + "summaries": "QUESTIONS: 1. Does Penal Code section 904.6 require a court to impanel a grand jury upon a district attorney's request? 2. Do prosecutors' disclosure obligations under Brady v. Maryland (1963) 373 U.S. 83 and Penal Code section 1054.1 encompass materials from criminal grand jury proceedings, despite the fact that those proceedings are conducted in secret? CONCLUSIONS: 1. No. Penal Code section 904.6 provides that a court may impanel a grand jury upon a district attorney's request, but does not require it. 2. Yes. Prosecutors' disclosure obligations under Brady and Penal Code section 1054.1 encompass materials from criminal grand jury proceedings, despite the fact that those proceedings are conducted in secret. Official Citation: 106 Ops.Cal.Atty.Gen. 41", "case_name_shorts": "" }, { - "case_dates": "2000-10-10", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-303.pdf", + "case_dates": "2023-05-25", + "case_names": "California Attorney General Opinion 22-602", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/22-602.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "00-303", - "summaries": "QUESTIONS: Did the recent amendment of Labor Code section 96, which requires the Labor Commissioner to take assignments of claims for loss of wages as the result of demotion, suspension, or discharge from employment for lawful conduct occurring during non-working hours, abrogate existing law that permits the disciplining of peace officers for off-duty conduct occurring away from their place of employment that is otherwise lawful but conflicts with their duties as peace officers? CONCLUSIONS: The recent amendment of Labor Code section 96, which requires the Labor Commissioner to take assignments of claims for loss of wages as the result of demotion, suspension, or discharge from employment for lawful conduct occurring during non-working hours, did not abrogate existing law that permits the disciplining of peace officers for off-duty conduct occurring away from their place of employment that is otherwise lawful but conflicts with their duties as peace officers. Official Citation: 83 Ops.Cal.Atty.Gen. 226", + "docket_numbers": "22-602", + "citations": "106 Ops.Cal.Atty.Gen. 32", + "summaries": "QUESTIONS: May the Legislature enact a statute authorizing the State Bar of California to regulate non-attorney legal document assistants? CONCLUSIONS: Yes. The Legislature may enact a statute authorizing the State Bar to regulate legal document assistants. Official Citation: 106 Ops.Cal.Atty.Gen. 32", "case_name_shorts": "" }, { - "case_dates": "2000-10-03", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-506.pdf", + "case_dates": "2023-05-18", + "case_names": "California Attorney General Opinion 23-203", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/23-203.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "00-506", - "summaries": "QUESTIONS: May the mayor of a charter city, who is designated as the executive head of the city by the city charter, attend a closed session of the city's redevelopment agency, the members of which are appointed by the mayor with the approval of the city council, when the purpose of the closed session is to conduct a conference with the agency's real property negotiators who are negotiating the disposition and development of property, a portion of which is owned by the city, for construction of a publicly financed and publicly owned city conference center and privately financed and developed hotel complex? CONCLUSIONS: The mayor of a charter city, who is designated as the executive head of the city by the city charter, may not attend a closed session of the city's redevelopment agency, the members of which are appointed by the mayor with the approval of the city council, when the purpose of the closed session is to conduct a conference with the agency's real property negotiators who are negotiating the disposition and development of property, a portion of which is owned by the city, for construction of a publicly financed and publicly owned city conference center and privately financed and developed hotel complex. Official Citation: 83 Ops.Cal.Atty.Gen. 221", + "docket_numbers": "23-203", + "citations": "106 Ops.Cal.Atty.Gen. 26", + "summaries": "QUESTIONS: The City of California City has applied to this office for leave to sue KAREN MACEDONIO in quo warranto to remove her from public office as a member of the City Council. The application asserts that Macedonio, while serving on the City Council, assumed a second and incompatible public office as a member of the East Kern Health Care District Board of Directors, in violation of Government Code section 1099, and by doing so forfeited her seat on the City Council. CONCLUSIONS: We conclude that there is a substantial legal issue as to whether Macedonio is simultaneously holding incompatible public offices. Consequently, and because the public interest will be served by allowing the proposed quo warranto action to proceed, the application for leave to sue is GRANTED. Official Citation: 106 Ops.Cal.Atty.Gen. 26", "case_name_shorts": "" }, { - "case_dates": "2000-09-29", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-601.pdf", + "case_dates": "2023-05-18", + "case_names": "California Attorney General Opinion 22-1002", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/22-1002.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "00-601", - "summaries": "QUESTIONS: Where a city council of a city with less than 200,000 in population has declared itself to be the city's redevelopment agency and the city's housing authority and conducts a unified meeting as a city council, redevelopment agency, and housing authority, may the council members receive the remuneration provided by law for members of a redevelopment agency and for commissioners of a housing authority if no business within the jurisdiction of the redevelopment agency or housing authority is conducted during the unified meeting? CONCLUSIONS: Where a city council of a city with less than 200,000 in population has declared itself to be the city's redevelopment agency and the city's housing authority and conducts a unified meeting as a city council, redevelopment agency, and housing authority, the council members may not receive the remuneration provided by law for members of a redevelopment agency or for commissioners of a housing authority if no business within the jurisdiction of the redevelopment agency or housing authority is conducted during the unified meeting. Official Citation: 83 Ops.Cal.Atty.Gen. 215", + "docket_numbers": "22-1002", + "citations": "106 Ops.Cal.Atty.Gen. 21", + "summaries": "QUESTIONS: Proposed Relator City of Moreno Valley has applied for leave to sue proposed Defendant David Marquez in quo warranto to remove him from his seat on the Moreno Valley City Council. The City asserts that Marquez forfeited his office because he was \"absent without permission from all regular city council meetings for 70 days consecutively from the last regular meeting\" he attended, in violation of Government Code section 36513(b). CONCLUSIONS: We conclude that substantial questions of law and fact exist as to whether Marquez was absent without permission from all regular city council meetings for the period specified in Government Code section 36513(b) and, as a result, forfeited his seat on the council. We also conclude that the public interest will be served by allowing the proposed quo warranto action to proceed. For these reasons, the application for leave to sue is GRANTED. Official Citation: 106 Ops.Cal.Atty.Gen. 21", "case_name_shorts": "" }, { - "case_dates": "2000-09-22", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1205.pdf", + "case_dates": "2023-03-30", + "case_names": "California Attorney General Opinion 22-1101", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/22-1101.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "99-1205", - "summaries": "QUESTIONS: May a reclamation district pay a demand warrant that it had issued and previously extended if the warrant was not presented for reissuance or further extension prior to its expiration date? CONCLUSIONS: A reclamation district may not pay a demand warrant that it had issued and previously extended if the warrant was not presented for reissuance or further extension prior to its expiration date. Official Citation: 83 Ops.Cal.Atty.Gen. 205", + "docket_numbers": "22-1101", + "citations": "106 Ops.Cal.Atty.Gen. 14", + "summaries": "QUESTIONS: SANDRIDGE PARTNERS, L.P. has applied to this office for leave to sue DAN BOSWELL, GABE COOPER, PHIL HANSEN, JIM RAZOR, DOMINIC SWEEN, MARK UNRUH, GEORGE WURZEL, JEOF WYRICK, and MICHAEL SULLIVAN in quo warranto to remove them from public office on the Board of Directors of the Tulare Lake Basin Water Storage District. The application asserts that the proposed defendants were appointed to and are serving on the Board in violation of multiple provisions of the Water Code. CONCLUSIONS: We conclude that there are substantial issues of law and fact as to whether the proposed defendants are lawfully holding office. We further conclude that the public interest will be served by allowing the proposed quo warranto action to proceed. Consequently, the application for leave to sue is GRANTED. Official Citation: 106 Ops.Cal.Atty.Gen. 14", "case_name_shorts": "" }, { - "case_dates": "2000-09-22", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-702.pdf", + "case_dates": "2023-01-26", + "case_names": "California Attorney General Opinion 22-803", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/22-803.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "00-702", - "summaries": "QUESTIONS: May the California Building Standards Commission continue to maintain and update through the publication of annual supplements the 1998 edition of the California Building Code, which is based upon the 1997 edition of the Uniform Building Code, and publish it as part of the 2001 edition of the California Building Standards code? CONCLUSIONS: The California Building Standards Commission may continue to maintain and update through the publication of annual supplements the 1998 edition of the California Building Code, which is based upon the 1997 edition of the Uniform Building Code, and publish it as part of the 2001 edition of the California Building Standards Code. Official Citation: 83 Ops.Cal.Atty.Gen. 210", + "docket_numbers": "22-803", + "citations": "106 Ops.Cal.Atty.Gen. 1", + "summaries": "QUESTIONS: LYNN BOONE applies to this office for leave to sue DEIDRE DUHART in quo warranto to remove Duhart from her public office as a member of the Compton City Council on the ground that Duhart did not receive the requisite number of votes under the Compton City Charter to be appointed to that office. As a separate matter, Boone alleges that the Compton City Attorney took certain improper and ultra vires actions in declaring Duhart's appointment to be valid. CONCLUSIONS: We conclude that there is no substantial question of law regarding Duhart's appointment to the City Council, and that it is therefore not in the public interest to authorize the proposed quo warranto action challenging her appointment. In addition, we conclude that the alleged actions of the Compton City Attorney in this matter do not give rise to an action in quo warranto. Consequently, the application for leave to sue is DENIED. Official Citation: 106 Ops.Cal.Atty.Gen. 1", "case_name_shorts": "" }, { - "case_dates": "2000-08-31", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-405.pdf", + "case_dates": "2023-01-26", + "case_names": "California Attorney General Opinion 22-1001", + "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/22-1001.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "00-405", - "summaries": "QUESTIONS: 1. May a general law county exercise its police power authority to require an industrial facility, not seeking any entitlement from the county, to use an inherently safer system or take a specific action, such as the use of particular equipment, manufacturing or refining processes, or management procedures, in order to protect public health or safety? 2. If so, would a county subject itself to a greater risk of liability under the Tort Claims Act by having its officers exercise their discretion in requiring an industrial facility to use an inherently safer system or take a specific action? CONCLUSIONS: 1. A general law county may exercise its police power authority to require an industrial facility, not seeking any entitlement from the county, to use an inherently safer system or take a specific action, such as the use of particular equipment, manufacturing or refining processes, or management procedures, in order to protect public health or safety. 2. A county would not subject itself to a greater risk of liability under the Tort Claims Act by having its officers exercise their discretion in requiring an industrial facility to use an inherently safer system or take a specific action. Official Citation: 83 Ops.Cal.Atty.Gen. 195", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-15", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1101.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1101", - "summaries": "QUESTIONS: 1. Is land owned by an Indian Housing Authority pursuant to a grant deed from the United States Department of Housing and Urban Development, currently in use as a federally assisted low-income housing project for Native Americans, which is neither an Indian reservation nor an Indian allotment, a \"dependent Indian community\" under the circumstances presented? 2. Do the police and taxing powers of the state and its political subdivisions that are applicable generally to housing authorities also apply to the land of an Indian Housing Authority which is not \"Indian country\" but is currently in use as a federally assisted low-income housing project for Native Americans? CONCLUSIONS: 1. The land owned by an Indian Housing Authority pursuant to a grant deed from the United States Department of Housing and Urban Development, currently in use as a federally assisted low-income housing project for Native Americans, which is neither an Indian reservation nor an Indian allotment, is not a \"dependent Indian community\" under the circumstances presented. 2. The police and taxing powers of the state and its political subdivisions that are applicable generally to low-income housing projects of housing authorities also apply to the land of an Indian Housing Authority which is not \"Indian country\" but is currently in use as a federally assisted low-income housing project for Native Americans. Official Citation: 83 Ops.Cal.Atty.Gen. 190", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-08", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-605.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "00-605", - "summaries": "QUESTIONS: 1. Is residence within a school district a qualification for election to the governing board of the district? 2. Did Donald Elholm comply with the residence qualification for election to the governing board of the Lost Hills Union School District? 3. Is continued residence within a school district required during the entire term of office of a governing board of member? 4. Have Donald Elholm and Santiago Gaona complied with the residence requirement for continued service as members of the governing board of the Lost Hills Union School District? 5. Is it in the public interest to grant the application for leave to sue in quo warranto to remove Donald Elholm and Santiago Gaona from office? CONCLUSIONS: 1. Residence within a school district is a qualification for election to the governing board of the district. 2. Whether Donald Elholm complied with the residence qualification for election to the governing board of the Lost Hills Union School District presents a substantial issue of fact. 3. Continued residence within a school district is required during the entire term of office of a governing board member. 4. Whether Donald Elholm and Santiago Gaona have complied with the residence requirement for continued service as members of the governing board of the Lost Hills Union School District presents substantial issues of fact. 5. It is not in the public interest to grant the application for leave to sue in quo warranto to remove Donald Elholm and Santiago Gaona from office. Official Citation: 83 Ops.Cal.Atty.Gen. 181", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-08", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-202.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "00-202", - "summaries": "QUESTIONS: Is the County of Fresno the only unit of local government within the county that qualifies for an automatic designation as a \"local area\" for purposes of the federal Workforce Investment Act? CONCLUSIONS: The County of Fresno is the only unit of local government within the county that qualifies for an automatic designation as a \"local area\" for purposes of the federal Workforce Investment Act. Official Citation: 83 Ops.Cal.Atty.Gen. 186", - "case_name_shorts": "" - }, - { - "case_dates": "2000-08-02", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-204.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "00-204", - "summaries": "QUESTIONS: Is a bank required to pledge securities for deposits consisting of funds held in trust for employees of a local government as a compensation deferred from income taxation pursuant to the terms of Internal Revenue Code section 457? CONCLUSIONS: A bank is required to pledge securities for deposits consisting of funds held in trust for employees of a local government as compensation deferred from income taxation pursuant to the terms of Internal Revenue Code section 457. Official Citation: 83 Ops.Cal.Atty.Gen. 175", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-27", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-206.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "00-206", - "summaries": "QUESTIONS: May a non-professional corporation, known as a management services organization, enter into an agreement with a labor union to select, schedule, secure, and pay for radiology diagnostic services ordered by the union's physician for union members and charge the union a fee for its management services? CONCLUSIONS: A non-professional corporation, known as a management services organization, may not enter into an agreement with a labor union to select, schedule, secure, and pay for radiology diagnostic services ordered by the union's physician for union members and charge the union a fee for its management services. Official Citation: 83 Ops.Cal.Atty.Gen. 170", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-26", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-207.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "00-207", - "summaries": "QUESTIONS: May a secrecy admonition order issued to a grand jury witness by the superior court on behalf of the grand jury contain a notice to third persons advising such persons that they ay be held in contempt of court if they induce or attempt to induce the witness to disclose anything that took place in the grand jury room? CONCLUSIONS: A secrecy admonition order issued to a grand jury witness by the superior court on behalf of the grand jury may not contain a notice to third persons advising such persons that they may be held in contempt of court if they induce or attempt to induce the witness to disclose anything that took place in the grand jury room. Official Citation: 83 Ops.Cal.Atty.Gen. 161", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-25", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-302.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "00-302", - "summaries": "QUESTIONS: May an individual simultaneously serve as a member of the California Commission on Aging, the California Senior Legislature, and the Area Agency on Aging Advisory Council of California? CONCLUSIONS: An individual may simultaneously serve as a member of the California Commission on Aging, the California Senior Legislature, and the Area Agency on Aging Advisory Council of California. Official Citation: 83 Ops.Cal.Atty.Gen. 153", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-12", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-306.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "00-306", - "summaries": "QUESTIONS: Is a local public agency required to pay an employee who is a member of the California National Guard for the first 30 days of any declared emergency in the state regardless of the number of emergencies declared during a particular fiscal year? CONCLUSIONS: A local public agency is required to pay an employee who is a member of the California National Guard for the first 30 days of any declared emergency in the state regardless of the number of emergencies declared during a particular fiscal year. Official Citation: 83 Ops.Cal.Atty.Gen. 148", - "case_name_shorts": "" - }, - { - "case_dates": "2000-07-12", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-201.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "00-201", - "summaries": "QUESTIONS: Does federal law override state law prohibitions against the release of information to a public housing agency concerning whether an individual seeking admission to public housing is subject to a lifetime registration requirement under California's sex offender registration program? CONCLUSIONS: Federal law overrides state law prohibitions against the release of information to a public housing agency concerning whether an individual seeking admission to public housing is subject to a lifetime registration requirement under California's sex offender registration program. Official Citation: 83 Ops.Cal.Atty.Gen. 143", - "case_name_shorts": "" - }, - { - "case_dates": "2000-06-09", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-410.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "00-410", - "summaries": "QUESTIONS: Where a city charter requires city initiative petitions to be submitted in a form that complies with state law, may the city clerk reject a petition that does not contain a notice of intent with the name or names of the proponents of the initiative? CONCLUSIONS: Where a city charter requires city initiative petitions to be submitted in a form that complies with state law, the city clerk is required to reject a petition that does not contain a notice of intent with the name or names of the proponents of the initiative. Official Citation: 83 Ops.Cal.Atty.Gen. 139", - "case_name_shorts": "" - }, - { - "case_dates": "2000-06-09", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-205.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "00-205", - "summaries": "QUESTIONS: Is a common law change of name valid in California? CONCLUSIONS: A common law change of name is valid in California. Official Citation: 83 Ops.Cal.Atty.Gen. 136", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-18", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-112.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "00-112", - "summaries": "QUESTIONS: Is a public school district required to provide special education programs to a child with disabilities who has been voluntarily enrolled by a parent in a private school? CONCLUSIONS: A public school district is required to provide special education programs to a child with disabilities who has been voluntarily enrolled by a parent in a private school only to the extent that the programs can be purchased with the proportionate share of federal funds made available to the school district under the Individuals with Disabilities Education Act. Official Citation: 83 Ops.Cal.Atty.Gen. 132", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-03", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1208.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1208", - "summaries": "QUESTIONS: May a private entity operating an amusement theme park deny entry to an off-duty or retired city police officer who is carrying a firearm where the park operator has a policy prohibiting entry to anyone carrying a firearm who is not then acting in an official capacity as a peace officer? CONCLUSIONS: A private entity operating an amusement theme park may deny entry to an off-duty or retired city police officer who is carrying a firearm where the park operator has a policy prohibiting entry to anyone carrying a firearm who is not then acting in an official capacity as a peace officer. Official Citation: 83 Ops.Cal.Atty.Gen. 121", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-03", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-111.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "00-111", - "summaries": "QUESTIONS: 1. May a school district make cash payments to members of its governing board in lieu of providing them with health insurance benefits? 2. If such cash payments are unauthorized, would making the payments constitute a criminal offense? 3. If such cash payments are unauthorized, may an individual bring a civil action for reimbursement against those members of the governing board who received the unauthorized payments? CONCLUSIONS: 1. A school district may not make cash payments to members of its governing board in lieu of providing them with health insurance benefits. 2. Making such unauthorized cash payments may constitute a criminal offense, depending upon the individual circumstances. 3. A civil action for reimbursement may be brought by affected individuals or organizations, taxpayers, or the Attorney General against those members of the governing board who received the unauthorized cash payments. Official Citation: 83 Ops.Cal.Atty.Gen. 124", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-02", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1214.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1214", - "summaries": "QUESTIONS: 1. Is the Board of Corrections authorized to institute a legal action or impose sanctions against a local agency for a failure to bring a particular juvenile facility into compliance with the minimum standards established by the board? 2. When a local agency brings a particular juvenile facility into compliance with the minimum standards established by the Board of Corrections, is the state required to reimburse the local agency for the costs incurred in meeting the standards? CONCLUSIONS: 1. The Board of Corrections is not authorized to institute a legal action or impose sanctions against a local agency for a failure to bring a particular juvenile facility into compliance with the minimum standards established by the board. 2. When a local agency brings a particular juvenile facility into compliance with the minimum standards established by the Board of Corrections, the state is not required to reimburse the local agency for the costs incurred in meeting the standards. Official Citation: 83 Ops.Cal.Atty.Gen. 111", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-02", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1111.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1111", - "summaries": "QUESTIONS: May a California law enforcement agency destroy peace officer internal investigation files after a five-year retention period and peace officer personnel records five years after the officer has terminated employment with the agency when the destruction is solely a matter of administrative routine? CONCLUSIONS: A California law enforcement agency may destroy peace officer internal investigation files after a five-year retention period and peace officer personnel records five years after the officer has terminated employment when the destruction is solely a matter of administrative routine and no other factors are present that would establish \"bad faith.\" Official Citation: 83 Ops.Cal.Atty.Gen. 103", - "case_name_shorts": "" - }, - { - "case_dates": "2000-05-01", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1001.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1001", - "summaries": "QUESTIONS: Is a postsecondary educational institution that is not directly owned or operated by a church or similar religious entity but rather by a nonprofit tax exempt organization governed by an independent board of trustees under policies which follow specific religious tenets exempt from the requirements of the Sex Equity in Education Act? CONCLUSIONS: A postsecondary educational institution that is not directly owned or operated by a church or similar religious entity but rather by a nonprofit, tax exempt organization governed by an independent board of trustees under policies which follow specific religious tenets is exempt from the requirements of the Sex Equity in Education Act when a commitment to a religious purpose is manifest in its mission, as demonstrated by such traits as its historical origins, charter and bylaws, affiliation with a church or similar religious entity, and tax exempt status. Official Citation: 83 Ops.Cal.Atty.Gen. 98", - "case_name_shorts": "" - }, - { - "case_dates": "2000-04-17", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-701.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-701", - "summaries": "QUESTIONS: May money deposited in the San Diego-Coronado Toll Bridge Revenue Fund prior to March 26, 1992, that was appropriated for specified allocations in 1994, be deposited in the Toll Bridge Seismic Retrofit Account in the State Transportation Fund? CONCLUSIONS: Money deposited in the San Diego-Coronado Toll Bridge Revenue Fund prior to March 26, 1992, that was appropriated for specified allocations in 1994, may not be deposited in the Toll Bridge Seismic Retrofit Account in the State Transportation Fund. Official Citation: 83 Ops.Cal.Atty.Gen. 94", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-31", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1107.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1107", - "summaries": "QUESTIONS: Is it a violation of the state's animal cruelty laws to conduct a \"pigeon shoot\" at which domestic pigeons are released from cages and shot for purposes of sport and amusement? CONCLUSIONS: It is a violation of the state's animal cruelty laws to conduct a \"pigeon shoot\" at which domestic pigeons are released from cages and shot for purposes of sport and amusement. Official Citation: 83 Ops.Cal.Atty.Gen. 89", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-28", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-321.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-321", - "summaries": "QUESTIONS: 1. May two public entities and a mutual water company enter into a joint powers agreement to form a public financing authority for the purpose of issuing bonds under the Marks-Roos Local Bond Pooling Act of 1985? 2. If so, may the project funded by the bonds be located outside the jurisdiction of either of the two public entities? CONCLUSIONS: 1. Two public entities and a mutual water company may enter into a joint powers agreement to form a public financing authority for the purpose of issuing bonds under the Marks-Roos Local Bond Pooling Act of 1985 to finance the construction of projects authorized by the Joint Exercise of Powers Act over which the contracting parties exercise their common power. 2. The project funded by the bonds may be located outside the jurisdiction of either of the two public entities only if specified conditions are met. Official Citation: 83 Ops.Cal.Atty.Gen. 82", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-27", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1207.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1207", - "summaries": "QUESTIONS: In calculating the populations of cities for purposes of membership on the governing board of a county air pollution control district, are state prison inmates to be included in the calculations? CONCLUSIONS: In calculating the populations of cities for purposes of membership on the governing board of a county air pollution control district, state prison inmates are to be included in the calculations. Official Citation: 83 Ops.Cal.Atty.Gen. 76", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-14", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1212.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1212", - "summaries": "QUESTIONS: Did Alameda County Deputy District Attorney Philip G. Daly fail to file an oath of office with the County Clerk, County of Alameda, within the time prescribed by law, so as to create a vacancy in his office of Alameda County Deputy District Attorney? CONCLUSIONS: Alameda County Deputy District Attorney Philip G. Daly did not fail to file an oath of office with the County Clerk, County of Alameda, within the time prescribed by law, so as to create a vacancy in his office of Alameda County Deputy District Attorney. Official Citation: 83 Ops.Cal.Atty.Gen. 70", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-08", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1211.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1211", - "summaries": "QUESTIONS: Did Alameda County Superior Court Commissioner Sue Alexander fail to file an oath of office with the County Clerk, County of Alameda, within the time prescribed by law, so as to create a vacancy in her office of Alameda County Superior Court Commissioner? CONCLUSIONS: Alameda County Superior Court Commissioner Sue Alexander did not fail to file an oath of office with the County Clerk, County of Alameda, within the time prescribed by law, so as to create a vacancy in her office of Alameda County Superior Court Commissioner. Official Citation: 83 Ops.Cal.Atty.Gen. 63", - "case_name_shorts": "" - }, - { - "case_dates": "2000-03-03", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1201.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1201", - "summaries": "QUESTIONS: May a city council enter into a development agreement with a joint powers agency where a city planning commissioner advises the city council with respect to the terms of the agreement and the commissioner's spouse serves as the city's representative on the joint powers agency? CONCLUSIONS: A city council may enter into a development agreement with a joint powers agency where a city planning commissioner advises the city council with respect to the terms of the agreement and the commissioner's spouse serves as the city's representative on the joint powers agency. Official Citation: 83 Ops.Cal.Atty.Gen. 59", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-25", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-907.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-907", - "summaries": "QUESTIONS: May a county superintendent of schools provide a supplemental employee retirement plan that qualifies as a money purchase pension plan or a defined benefit plan under federal law to a limited number of employees as an incentive to take early retirement and in consideration of waiving certain employment-related claims against the county office of education, even where the effective date of the retirement precedes the window period for enrollment in the plan? CONCLUSIONS: A county superintendent of schools may provide a supplemental employee retirement plan that qualifies as a money purchase pension plan or a defined benefit plan under federal law to a limited number of employees as an incentive to take early retirement and in consideration for waiving certain employment-related claims against the county office of education, even where the effective date of the retirement precedes the window period for enrollment in the plan. Official Citation: 83 Ops.Cal.Atty.Gen. 45", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-25", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-802.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-802", - "summaries": "QUESTIONS: May a school district deny a parental request for an individual waiver from the statutory mandate that all students be instructed in English on the sole ground that the district has no alternative program? CONCLUSIONS: A school district may not deny a parental request for an individual waiver from the statutory mandate that all students be instructed in English on the sole ground that the district has no alternative program. Official Citation: 83 Ops.Cal.Atty.Gen. 40", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-25", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1213.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1213", - "summaries": "QUESTIONS: 1. If the City of Elk Grove is incorporated on March 7, 2000, will the offices of director of the Elk Grove Community Services District and city council member of the City of Elk Grove constitute incompatible public offices? 2. If so, what will be the consequences for a district director who is elected to the Elk Grove City Council? 3. May such newly elected city council member participate in filling by appointment the vacancy on the district board created by his or her election to the city council? CONCLUSIONS: 1. If the City of Elk Grove is incorporated on March 7, 2000, the offices of director of the Elk Grove Community Services District and city council member of the City of Elk Grove will constitute incompatible public offices. 2. A director of the community services district who is elected to the Elk Grove City Council will immediately forfeit his or her office on the district board upon commencement of the term of office on the city council. 3. A newly elected city council member may not participate in filling by appointment the vacancy on the district board created by his or her election to the city council. Official Citation: 83 Ops.Cal.Atty.Gen. 53", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-25", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1102.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1102", - "summaries": "QUESTIONS: Does Saul Lankster's four-month appointment to the board of trustees of the Compton Community College District work a forfeiture of his office on the board of trustees of the Compton Unified School District, an advisory board to the Superintendent of Public Instruction that has no legal rights, duties, or powers of a governing board? CONCLUSIONS: Saul Lankster's four-month appointment to the board of trustees of the Compton Community College District does not work a forfeiture of his office on the board of trustees of the Compton Unified School District, an advisory body to the Superintendent of Public Instruction that has no legal rights, duties, or powers of a governing board. Official Citation: 83 Ops.Cal.Atty.Gen. 50", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-23", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-619.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-619", - "summaries": "QUESTIONS: Is a court order, search warrant, or subpoena duces tecum required before a county coroner may release the medical or psychiatric records of a deceased person to police or district attorney investigators? CONCLUSIONS: A court order, search warrant, or subpoena duces tecum is not required before a coroner may release the medical or psychiatric records of a deceased person to police or district attorney investigators having jurisdiction over the criminal investigation. Official Citation: 83 Ops.Cal.Atty.Gen. 32", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-18", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1112.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1112", - "summaries": "QUESTIONS: With respect to a charter city that has an ordinance prohibiting the fluoridation of the city's water supply, (1) does state law requiring the fluoridation of public water systems supersede the city's ordinance when outside funds are made available to install and operate fluoridation system, and if so, (2) what level of outside funding must be in place for a conflict to exist between state law and the city's ordinance? CONCLUSIONS: With respect to a charter city that has an ordinance prohibiting the fluoridation of the city's water supply, 1) state law requiring the fluoridation of public water systems supersedes the city's ordinance when outside funds are made available to install and operate a fluoridation system, and (2) sufficient outside funding to cover the capital and associated costs of installing a fluoridation system must be in place before a city must take action to install a fluoridation system and sufficient outside funding to cover operation and maintenance costs must be in place thereafter before a city must take action to operate the fluoridation system in any particular fiscal year. Official Citation: 83 Ops.Cal.Atty.Gen. 24", - "case_name_shorts": "" - }, - { - "case_dates": "2000-02-03", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1219.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1219", - "summaries": "QUESTIONS: In view of the qualification of Propositions 30 and 31 on the March 7, 2000 ballot, may public sector self-insured employers purchase special excess workers' compensation insurance policies effective January 1, 2000? CONCLUSIONS: Regardless of the qualification of Propositions 30 and 31 on the March 7, 2000 ballot, public sector self-insured employers may purchase special excess workers' compensation insurance policies effective February 1, 2000. Official Citation: 83 Ops.Cal.Atty.Gen. 21", - "case_name_shorts": "" - }, - { - "case_dates": "2000-01-28", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-803.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-803", - "summaries": "QUESTIONS: 1. May Cooperative Personnel Services perform examination, training, and management consulting services for its members and non-members with respect to the employment of personnel? 2. May Cooperative Personnel Services perform examination and related services for state agencies with respect to the issuance of professional and vocational licenses? CONCLUSIONS: 1. Cooperative Personnel Services may perform examination, training, and management consulting services for its members and non-members with respect to the employment of personnel. 2. Cooperative Personnel Services may not perform examination and related services for state agencies with respect to the issuance of professional or vocational licenses. Official Citation: 83 Ops.Cal.Atty.Gen. 8", - "case_name_shorts": "" - }, - { - "case_dates": "2000-01-28", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1011.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1011", - "summaries": "QUESTIONS: Does a city have a contractual obligation to provide paid health benefits to two former city council members who have served more than five years and more than twelve years respectively, where each was a member of the council in 1994 when the council adopted a resolution providing paid health benefits to former council members who serve at least five consecutive years, with the benefits continuing up to twelve years based upon the number of years served? CONCLUSIONS: A city has a contractual obligation to provide paid health benefits to a former city council member who has served more than twelve years, but not to one who has served less than twelve years, where each was a member of the council in 1994 when the council adopted a resolution providing paid health benefits to former council members who serve at least five consecutive years, with benefits continuing up to twelve years based upon the number of years served. Official Citation: 83 Ops.Cal.Atty.Gen. 14", - "case_name_shorts": "" - }, - { - "case_dates": "2000-01-18", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/99-1010.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "99-1010", - "summaries": "QUESTIONS: May the board of trustees of a school district extend health and welfare benefits to current members of the district's personnel commission? CONCLUSIONS: The board of trustees of a school district may extend health and welfare benefits to current members of the district's personnel commission. Official Citation: 83 Ops.Cal.Atty.Gen. 6", - "case_name_shorts": "" - }, - { - "case_dates": "2000-01-01", - "case_names": "Untitled California Attorney General Opinion", - "download_urls": "https://oag.ca.gov/system/files/opinions/pdfs/00-402.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "00-402", - "summaries": "QUESTIONS: Where a private contractor operates a solid waste transfer station for a county, does the prevailing wage law apply to the contractor's employees who (1) collect fees from trash collection companies and others for unloading trash into the station's containers, (2) monitor the unloading to prevent the placement of hazardous materials into the containers, and (3) periodically transport the containers to a county operated landfill? CONCLUSIONS: Where a private contractor operates a solid waste transfer station for a county, the prevailing wage law does not apply to the contractor's employees who (1) collect fees from trash collection companies and others for unloading trash into the station's containers, (2) monitor the unloading to prevent the placement of hazardous materials into the containers, and (3) periodically transport the containers to a county operated landfill. Official Citation: 83 Ops.Cal.Atty.Gen. 166", + "docket_numbers": "22-1001", + "citations": "106 Ops.Cal.Atty.Gen. 10", + "summaries": "QUESTIONS: The DISTRICT ATTORNEY OF LOS ANGELES COUNTY has applied to this office for leave to sue DAVID ARGUDO in quo warranto to remove him from his public office as a member of the La Puente City Council. The application asserts that Argudo, while serving on the La Puente City Council, assumed a second and incompatible public office as a member of the La Puente Valley County Water District Board of Directors, in violation of Government Code section 1099, and by doing so forfeited his seat on the La Puente City Council. CONCLUSIONS: We conclude that there is a substantial legal issue as to whether Argudo is simultaneously holding incompatible public offices. Consequently, and because the public interest will be served by allowing the proposed quo warranto action to proceed, the application for leave to sue is GRANTED. Official Citation: 106 Ops.Cal.Atty.Gen. 10", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calag_example_2.html b/tests/examples/opinions/united_states/calag_example_2.html index f44fcb2dc..5c56e15e1 100644 --- a/tests/examples/opinions/united_states/calag_example_2.html +++ b/tests/examples/opinions/united_states/calag_example_2.html @@ -1,1018 +1,666 @@ - - - - - - - - - - - - - - - Legal Opinions of the Attorney General - Yearly Index | State of California - Department of Justice - Office of the Attorney General - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + -
    -
    -
    +
    +
    - -
    - -
      -
    • Subscribe to the AG's RSS Feed
    • -
    • Join the AG's FaceBook
    • -
    • Follow the AG on Twitter
    • -
    • View the AG's YouTube Channel
    • - -
    - +
    -
    - -
    + -
    - - -
    - -
    + + - +
    +
    +
    +
    -

    - Legal Opinions of the Attorney General -
    Yearly Index

    +
    +
    - -
    + +
    + +

    Legal Opinions of the Attorney General -
    Yearly Index

    + +
    -
    +
    -

    Opinions published in 2000

    +

    Opinions published in 2023

    -
    -
    +
    +
    -
    +
    -
    -
    -
    -
    -
    -
    -
    +
    +
    -
    + +
    - - +
    + To view opinion:  Click on the Opinion Number to open document. Once opened, entire text of opinion may be searched by using Adobe Acrobat or the browser's find tools.

    + - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - + + + +
    + Opinion + Question - Conclusion - Published + Conclusion(s) + Issued
    - 99-1219 - In view of the qualification of Propositions 30 and 31 on the March 7, 2000 ballot, may public sector self-insured employers purchase special excess workers' compensation insurance policies effective January 1, 2000? - Regardless of the qualification of Propositions 30 and 31 on the March 7, 2000 ballot, public sector self-insured employers may purchase special excess workers' compensation insurance policies effective February 1, 2000.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 21
    - 02/03/2000
    - 99-1214 - 1. Is the Board of Corrections authorized to institute a legal action or impose sanctions against a local agency for a failure to bring a particular juvenile facility into compliance with the minimum standards established by the board?
    -
    -2. When a local agency brings a particular juvenile facility into compliance with the minimum standards established by the Board of Corrections, is the state required to reimburse the local agency for the costs incurred in meeting the standards?
    - 1. The Board of Corrections is not authorized to institute a legal action or impose sanctions against a local agency for a failure to bring a particular juvenile facility into compliance with the minimum standards established by the board.
    -
    -2. When a local agency brings a particular juvenile facility into compliance with the minimum standards established by the Board of Corrections, the state is not required to reimburse the local agency for the costs incurred in meeting the standards.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 111
    - 05/02/2000
    - 99-1213 - 1. If the City of Elk Grove is incorporated on March 7, 2000, will the offices of director of the Elk Grove Community Services District and city council member of the City of Elk Grove constitute incompatible public offices?
    -
    -2. If so, what will be the consequences for a district director who is elected to the Elk Grove City Council?
    -
    -3. May such newly elected city council member participate in filling by appointment the vacancy on the district board created by his or her election to the city council?
    - 1. If the City of Elk Grove is incorporated on March 7, 2000, the offices of director of the Elk Grove Community Services District and city council member of the City of Elk Grove will constitute incompatible public offices.
    -
    -2. A director of the community services district who is elected to the Elk Grove City Council will immediately forfeit his or her office on the district board upon commencement of the term of office on the city council.
    -
    -3. A newly elected city council member may not participate in filling by appointment the vacancy on the district board created by his or her election to the city council.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 53
    - 02/25/2000
    - 99-1212 - Did Alameda County Deputy District Attorney Philip G. Daly fail to file an oath of office with the County Clerk, County of Alameda, within the time prescribed by law, so as to create a vacancy in his office of Alameda County Deputy District Attorney? - Alameda County Deputy District Attorney Philip G. Daly did not fail to file an oath of office with the County Clerk, County of Alameda, within the time prescribed by law, so as to create a vacancy in his office of Alameda County Deputy District Attorney.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 70
    - 03/14/2000
    - 99-1211 - Did Alameda County Superior Court Commissioner Sue Alexander fail to file an oath of office with the County Clerk, County of Alameda, within the time prescribed by law, so as to create a vacancy in her office of Alameda County Superior Court Commissioner? - Alameda County Superior Court Commissioner Sue Alexander did not fail to file an oath of office with the County Clerk, County of Alameda, within the time prescribed by law, so as to create a vacancy in her office of Alameda County Superior Court Commissioner.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 63
    - 03/08/2000
    - 99-1208 - May a private entity operating an amusement theme park deny entry to an off-duty or retired city police officer who is carrying a firearm where the park operator has a policy prohibiting entry to anyone carrying a firearm who is not then acting in an official capacity as a peace officer? - A private entity operating an amusement theme park may deny entry to an off-duty or retired city police officer who is carrying a firearm where the park operator has a policy prohibiting entry to anyone carrying a firearm who is not then acting in an official capacity as a peace officer.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 121
    - 05/03/2000
    - 99-1207 - In calculating the populations of cities for purposes of membership on the governing board of a county air pollution control district, are state prison inmates to be included in the calculations? - In calculating the populations of cities for purposes of membership on the governing board of a county air pollution control district, state prison inmates are to be included in the calculations.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 76
    - 03/27/2000
    - 99-1205 - May a reclamation district pay a demand warrant that it had issued and previously extended if the warrant was not presented for reissuance or further extension prior to its expiration date? - A reclamation district may not pay a demand warrant that it had issued and previously extended if the warrant was not presented for reissuance or further extension prior to its expiration date.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 205
    - 09/22/2000
    - 99-1201 - May a city council enter into a development agreement with a joint powers agency where a city planning commissioner advises the city council with respect to the terms of the agreement and the commissioner's spouse serves as the city's representative on the joint powers agency? - A city council may enter into a development agreement with a joint powers agency where a city planning commissioner advises the city council with respect to the terms of the agreement and the commissioner's spouse serves as the city's representative on the joint powers agency.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 59
    - 03/03/2000
    - 99-1112 - With respect to a charter city that has an ordinance prohibiting the fluoridation of the city's water supply, (1) does state law requiring the fluoridation of public water systems supersede the city's ordinance when outside funds are made available to install and operate fluoridation system, and if so, (2) what level of outside funding must be in place for a conflict to exist between state law and the city's ordinance? - With respect to a charter city that has an ordinance prohibiting the fluoridation of the city's water supply, 1) state law requiring the fluoridation of public water systems supersedes the city's ordinance when outside funds are made available to install and operate a fluoridation system, and (2) sufficient outside funding to cover the capital and associated costs of installing a fluoridation system must be in place before a city must take action to install a fluoridation system and sufficient outside funding to cover operation and maintenance costs must be in place thereafter before a city must take action to operate the fluoridation system in any particular fiscal year.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 24
    - 02/18/2000
    - 99-1111 - May a California law enforcement agency destroy peace officer internal investigation files after a five-year retention period and peace officer personnel records five years after the officer has terminated employment with the agency when the destruction is solely a matter of administrative routine? - A California law enforcement agency may destroy peace officer internal investigation files after a five-year retention period and peace officer personnel records five years after the officer has terminated employment when the destruction is solely a matter of administrative routine and no other factors are present that would establish "bad faith."

    -Official Citation: 83 Ops.Cal.Atty.Gen. 103
    - 05/02/2000
    - 99-1107 - Is it a violation of the state's animal cruelty laws to conduct a "pigeon shoot" at which domestic pigeons are released from cages and shot for purposes of sport and amusement? - It is a violation of the state's animal cruelty laws to conduct a "pigeon shoot" at which domestic pigeons are released from cages and shot for purposes of sport and amusement.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 89
    - 03/31/2000
    - 99-1103 - May school administrators at a public high school implement a policy requiring on an unannounced, random, and neutral basis that (1) pupils be directed to vacate their classrooms and leave behind their personal belongings, including backpacks, purses, jackets, and outer garments, for sniffing by canines trained in the detection of drugs, (2) the pupils would proceed to a location not within the immediate vicinity of the canines and would remain away from the canines at all times, and (3) if a canine's behavior indicated the presence of drugs, the pupil's personal belongings would be searched by the school administrators without the pupil's consent? - School administrators at a public high school may not implement a policy requiring on an unannounced, random, and neutral basis that (1) pupils be directed to vacate their classrooms and leave behind their personal belongings, including backpacks, purses, jackets, and outer garments, for sniffing by canines trained in the detection of drugs, (2) the pupils would proceed to a location not within the immediate vicinity of the canines and would remain away from the canines at all times, and (3) if a canine's behavior indicated the presence of drugs, the pupil's personal belongings would be searched by the school administrators without the pupil's consent.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 257
    - 11/17/2000
    - 99-1102 - Does Saul Lankster's four-month appointment to the board of trustees of the Compton Community College District work a forfeiture of his office on the board of trustees of the Compton Unified School District, an advisory board to the Superintendent of Public Instruction that has no legal rights, duties, or powers of a governing board? - Saul Lankster's four-month appointment to the board of trustees of the Compton Community College District does not work a forfeiture of his office on the board of trustees of the Compton Unified School District, an advisory body to the Superintendent of Public Instruction that has no legal rights, duties, or powers of a governing board.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 50
    - 02/25/2000
    - 99-1101 - 1. Is land owned by an Indian Housing Authority pursuant to a grant deed from the United States Department of Housing and Urban Development, currently in use as a federally assisted low-income housing project for Native Americans, which is neither an Indian reservation nor an Indian allotment, a "dependent Indian community" under the circumstances presented?
    -
    -2. Do the police and taxing powers of the state and its political subdivisions that are applicable generally to housing authorities also apply to the land of an Indian Housing Authority which is not "Indian country" but is currently in use as a federally assisted low-income housing project for Native Americans?
    - 1. The land owned by an Indian Housing Authority pursuant to a grant deed from the United States Department of Housing and Urban Development, currently in use as a federally assisted low-income housing project for Native Americans, which is neither an Indian reservation nor an Indian allotment, is not a "dependent Indian community" under the circumstances presented.
    -
    -2. The police and taxing powers of the state and its political subdivisions that are applicable generally to low-income housing projects of housing authorities also apply to the land of an Indian Housing Authority which is not "Indian country" but is currently in use as a federally assisted low-income housing project for Native Americans.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 190
    - 08/15/2000
    - 99-1011 - Does a city have a contractual obligation to provide paid health benefits to two former city council members who have served more than five years and more than twelve years respectively, where each was a member of the council in 1994 when the council adopted a resolution providing paid health benefits to former council members who serve at least five consecutive years, with the benefits continuing up to twelve years based upon the number of years served? - A city has a contractual obligation to provide paid health benefits to a former city council member who has served more than twelve years, but not to one who has served less than twelve years, where each was a member of the council in 1994 when the council adopted a resolution providing paid health benefits to former council members who serve at least five consecutive years, with benefits continuing up to twelve years based upon the number of years served.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 14
    - 01/28/2000
    - 99-1010 - May the board of trustees of a school district extend health and welfare benefits to current members of the district's personnel commission? - The board of trustees of a school district may extend health and welfare benefits to current members of the district's personnel commission.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 6
    - 01/18/2000
    - 99-1001 - Is a postsecondary educational institution that is not directly owned or operated by a church or similar religious entity but rather by a nonprofit tax exempt organization governed by an independent board of trustees under policies which follow specific religious tenets exempt from the requirements of the Sex Equity in Education Act? - A postsecondary educational institution that is not directly owned or operated by a church or similar religious entity but rather by a nonprofit, tax exempt organization governed by an independent board of trustees under policies which follow specific religious tenets is exempt from the requirements of the Sex Equity in Education Act when a commitment to a religious purpose is manifest in its mission, as demonstrated by such traits as its historical origins, charter and bylaws, affiliation with a church or similar religious entity, and tax exempt status.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 98
    - 05/01/2000
    - 99-907 - May a county superintendent of schools provide a supplemental employee retirement plan that qualifies as a money purchase pension plan or a defined benefit plan under federal law to a limited number of employees as an incentive to take early retirement and in consideration of waiving certain employment-related claims against the county office of education, even where the effective date of the retirement precedes the window period for enrollment in the plan? - A county superintendent of schools may provide a supplemental employee retirement plan that qualifies as a money purchase pension plan or a defined benefit plan under federal law to a limited number of employees as an incentive to take early retirement and in consideration for waiving certain employment-related claims against the county office of education, even where the effective date of the retirement precedes the window period for enrollment in the plan.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 45
    - 02/25/2000 + 23-1201 + The BELLEVIEW ELEMENTARY SCHOOL DISTRICT has applied to this office for leave to sue JASON VASSAR in quo warranto to remove him from his seat on the School District’s Board. The application asserts that Vassar is subject to removal under Government Code section 1770(b) because he is mentally incapacitated and unable to perform his job duties.
    +
    + We conclude that there are substantial issues of law and fact as to whether the requirements of section 1770(b) are satisfied. We further conclude that the public interest will be served by allowing the proposed quo warranto action to proceed. Consequently, the application for leave to sue is GRANTED.

    +Official Citation: 106 Ops.Cal.Atty.Gen. 151
    + 12/29/2023
    - 99-804 - Was the California Department of Transportation the "awarding body" for purposes of the prevailing wage law with respect to a contract executed by Amtrak and a private contractor for construction of a passenger rail station on property leased by Amtrak and owned by a private railroad company where the project was funded by a grant from the department awarded under provisions of the Clean Air and transportation Improvement Act of 1990? - Under the circumstances presented, the California Department of Transportation was not the "awarding body" for purposes of the prevailing wage law with respect to a contract executed by Amtrak and a private contractor to construct a passenger rail station on property leased by Amtrak and owned by a private railroad company where the project was funded by a grant from the department awarded under provisions of the Clean Air and Transportation Improvement Act of 1990.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 231
    - 10/23/2000 + 23-602 + The San Joaquin Delta Community College District has applied to this office for leave to sue KATHLEEN GARCIA in quo warranto to remove her from serving as a member of the San Joaquin Delta Community College District Board of Trustees. The application asserts that Garcia, while serving on that board, assumed a second and incompatible office as a member of the Eastside Rural Fire Protection District Board of Trustees in violation of Government Code section 1099, and by doing so forfeited her seat on the College District board. + We conclude that there is a substantial legal issue as to whether Garcia is simultaneously holding incompatible offices. Consequently, and because the public interest will be served by allowing the proposed quo warranto action to proceed, the application for leave to sue is GRANTED.
    +

    +Official Citation: 106 Ops.Cal.Atty.Gen. 112
    + 11/30/2023
    - 99-803 - 1. May Cooperative Personnel Services perform examination, training, and management consulting services for its members and non-members with respect to the employment of personnel?
    -
    -2. May Cooperative Personnel Services perform examination and related services for state agencies with respect to the issuance of professional and vocational licenses?
    - 1. Cooperative Personnel Services may perform examination, training, and management consulting services for its members and non-members with respect to the employment of personnel.
    -
    -2. Cooperative Personnel Services may not perform examination and related services for state agencies with respect to the issuance of professional or vocational licenses.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 8
    - 01/28/2000 + 23-402 + SHAKIR KHAN has applied to this office for leave to sue RAMON YEPEZ in quo warranto to remove Yepez from his seat on the Lodi City Council. Khan, the former holder of that seat, alleges that the City Council unlawfully declared Khan’s seat to be vacant and therefore unlawfully appointed Yepez to fill it. + We conclude that there are substantial issues of fact and law as to whether the City Council lawfully declared Khan’s former seat to be vacant and (as a result) whether the Council lawfully appointed Yepez to fill it. Consequently, and because the public interest will be served by allowing the proposed quo warranto action to proceed, we GRANT the application for leave to sue.
    +

    +Official Citation: 106 Ops.Cal.Atty.Gen. 97
    + 11/30/2023
    - 99-802 - May a school district deny a parental request for an individual waiver from the statutory mandate that all students be instructed in English on the sole ground that the district has no alternative program? - A school district may not deny a parental request for an individual waiver from the statutory mandate that all students be instructed in English on the sole ground that the district has no alternative program.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 40
    - 02/25/2000 + 23-302 + 1. Under state law, may an appointed public member of the City of San Diego Audit Committee concurrently serve as: (a) an appointed public member of the San Diego Association of Governments (SANDAG) TransNet Independent Taxpayer Oversight Committee; (b) an appointed public member of the SANDAG Audit Policy Advisory Committee; or (c) the Internal Auditor of the San Diego Metropolitan Transit System?
    +
    +2. Would the City Council of San Diego violate state law by appointing a member of the public to the City Audit Committee if doing so would result in the appointee holding incompatible public offices in violation of Government Code section 1099?
    + 1. As to (a) and (b), an appointed public member of the City Audit Committee may not serve concurrently as an appointed public member of either the SANDAG TransNet Independent Taxpayer Oversight Committee or the SANDAG Audit Policy Advisory Committee. Such concurrent service would violate Government Code section 1099, which prohibits serving in legally incompatible public offices.
    +
    +As to (c), an appointed public member of the City Audit Committee may serve concurrently as the Internal Auditor of the San Diego Metropolitan Transit System without violating section 1099, because the Internal Auditor position is not a public office. Such concurrent service also would not violate Government Code section 1126’s prohibition against engaging in incompatible outside activities, unless the City Council determines that serving as the System’s Internal Auditor is inconsistent with the duties of a City Audit Committee member. Other state laws prohibiting financial and personal conflicts of interest would not prohibit the concurrent holding of these positions either. Those laws generally apply to particular government transactions or decisions, not the simultaneous holding of government positions, and, in any event, the request does not reference any type of financial or personal conflict.
    +
    +2. No. The City Council would not violate state law by appointing a member of the public to the City Audit Committee if doing so would result in the appointee holding incompatible public offices in violation of Government Code section 1099. Although section 1099(b) provides that a public official who accepts a second, legally incompatible public office thereby forfeits the first office held, neither section 1099, nor any other authority we are aware of, provides that an appointing authority violates or is subject to any sanction under state law by making such an appointment.

    +Official Citation: 106 Ops.Cal.Atty.Gen. 79
    + 11/30/2023
    - 99-701 - May money deposited in the San Diego-Coronado Toll Bridge Revenue Fund prior to March 26, 1992, that was appropriated for specified allocations in 1994, be deposited in the Toll Bridge Seismic Retrofit Account in the State Transportation Fund? - Money deposited in the San Diego-Coronado Toll Bridge Revenue Fund prior to March 26, 1992, that was appropriated for specified allocations in 1994, may not be deposited in the Toll Bridge Seismic Retrofit Account in the State Transportation Fund.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 94
    - 04/17/2000 + 23-203 + The City of California City has applied to this office for leave to sue KAREN MACEDONIO in quo warranto to remove her from public office as a member of the City Council. The application asserts that Macedonio, while serving on the City Council, assumed a second and incompatible public office as a member of the East Kern Health Care District Board of Directors, in violation of Government Code section 1099, and by doing so forfeited her seat on the City Council. + We conclude that there is a substantial legal issue as to whether Macedonio is simultaneously holding incompatible public offices. Consequently, and because the public interest will be served by allowing the proposed quo warranto action to proceed, the application for leave to sue is GRANTED.

    +Official Citation: 106 Ops.Cal.Atty.Gen. 26
    + 05/18/2023
    - 99-619 - Is a court order, search warrant, or subpoena duces tecum required before a county coroner may release the medical or psychiatric records of a deceased person to police or district attorney investigators? - A court order, search warrant, or subpoena duces tecum is not required before a coroner may release the medical or psychiatric records of a deceased person to police or district attorney investigators having jurisdiction over the criminal investigation.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 32
    - 02/23/2000 + 23-103 + Could state-law authorization, under an agreement pursuant to Chapter 25 of Division 10 of the Business and Professions Code, for medicinal or adult-use commercial cannabis activity, or both, between out-of-state licensees and California licensees “result in significant legal risk to the State of California under the federal Controlled Substances Act” within the meaning of Business and Professions Code section 26308(a)(4)? + Yes. State-law authorization for commercial cannabis activity between out-of-state licensees and California licensees could “result in significant legal risk to the State of California under the federal Controlled Substances Act” within the meaning of section 26308(a)(4) due to the risks of federal preemption of state law and criminal prosecution of state employees. Courts have disagreed about the scope of federal preemption in the cannabis context, and no court has ever considered a preemption challenge to a state law authorizing interstate cannabis sales. The law is also unsettled as to whether state officials could be federally prosecuted for implementing state law in this area.

    +Official Citation: 106 Ops.Cal.Atty.Gen. 119
    + 12/19/2023
    - 99-321 - 1. May two public entities and a mutual water company enter into a joint powers agreement to form a public financing authority for the purpose of issuing bonds under the Marks-Roos Local Bond Pooling Act of 1985?
    -
    -2. If so, may the project funded by the bonds be located outside the jurisdiction of either of the two public entities?
    - 1. Two public entities and a mutual water company may enter into a joint powers agreement to form a public financing authority for the purpose of issuing bonds under the Marks-Roos Local Bond Pooling Act of 1985 to finance the construction of projects authorized by the Joint Exercise of Powers Act over which the contracting parties exercise their common power.
    -
    -2. The project funded by the bonds may be located outside the jurisdiction of either of the two public entities only if specified conditions are met.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 82
    - 03/28/2000 + 23-101 + Do the disclosure, recusal, and cure provisions of Senate Bill No. 1439 (amending Government Code section 84308) apply to political contributions made before January 1, 2023?
    +
    + No, the disclosure, recusal, and cure provisions of Senate Bill No. 1439 (amending Government Code section 84308) do not apply retroactively to political contributions made before January 1, 2023.

    +Official Citation: 106 Ops.Cal.Atty.Gen. 59
    + 10/19/2023
    - 98-1007 - - This opinion was withdrawn on March 17th, 2000.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 1
    - 01/07/2000 + 22-1201 + California wineries applying for a direct shipper license in another state are often required—pursuant to the other state’s alcohol control statutory or regulatory scheme—to provide a criminal record check in connection with that application. If a California winery owner or manager obtains their own criminal record check from the California Department of Justice, would furnishing that criminal record check—or a notification reflecting that no such record exists—to another state’s alcohol control agency violate California Penal Code sections 11125, 11142, or 11143? + If a California winery owner or manager furnishes their criminal record—or notification no such record exists—to another state’s alcohol control agency, that would constitute a violation of California Penal Code sections 11125, 11142, or 11143. However, if the other state’s alcohol control agency obtains authorization from the California Department of Justice to receive California state summary criminal information, then the other state’s agency may request and receive the criminal background information directly from the California Department of Justice as specified in Penal Code section 11105.

    +Official Citation: 106 Ops.Cal.Atty.Gen. 70
    + 11/09/2023
    - 00-1005 - Did Henry Duque forfeit his office as a member of the California Public Utilities Commission when he purchased 700 shares of stock of a communications company subject to regulation by the commission? - Whether Henry Duque forfeited his office as a member of the California Public Utilities Commission when he purchased 700 shares of stock of a communications company subject to regulation by the commission presents a substantial issue of law that warrants judicial resolution.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 263
    - 11/29/2000 + 22-1101 + SANDRIDGE PARTNERS, L.P. has applied to this office for leave to sue DAN BOSWELL, GABE COOPER, PHIL HANSEN, JIM RAZOR, DOMINIC SWEEN, MARK UNRUH, GEORGE WURZEL, JEOF WYRICK, and MICHAEL SULLIVAN in quo warranto to remove them from public office on the Board of Directors of the Tulare Lake Basin Water Storage District. The application asserts that the proposed defendants were appointed to and are serving on the Board in violation of multiple provisions of the Water Code. + We conclude that there are substantial issues of law and fact as to whether the proposed defendants are lawfully holding office. We further conclude that the public interest will be served by allowing the proposed quo warranto action to proceed. Consequently, the application for leave to sue is GRANTED.

    +Official Citation: 106 Ops.Cal.Atty.Gen. 14
    + 03/30/2023
    - 00-708 - May a member of the governing board of a joint powers agency cast a valid vote on a matter before the agency that is inconsistent with the position taken by the legislative body which appointed the member? - A member of the governing board of a joint powers agency may cast a valid vote on a matter before the agency that is inconsistent with the position taken by the legislative body which appointed the member.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 267
    - 12/08/2000 + 22-1002 + Proposed Relator City of Moreno Valley has applied for leave to sue proposed Defendant David Marquez in quo warranto to remove him from his seat on the Moreno Valley City Council. The City asserts that Marquez forfeited his office because he was “absent without permission from all regular city council meetings for 70 days consecutively from the last regular meeting” he attended, in violation of Government Code section 36513(b). + We conclude that substantial questions of law and fact exist as to whether Marquez was absent without permission from all regular city council meetings for the period specified in Government Code section 36513(b) and, as a result, forfeited his seat on the council. We also conclude that the public interest will be served by allowing the proposed quo warranto action to proceed. For these reasons, the application for leave to sue is GRANTED.

    +Official Citation: 106 Ops.Cal.Atty.Gen. 21
    + 05/18/2023
    - 00-706 - 1. May a person serve simultaneously as a deputy sheriff and a city council member?
    -
    -2. May a city council, one member of which is a deputy sheriff, enter into a contract with the sheriff to provide police services to the city?
    - 1. A person may serve simultaneously as a deputy sheriff and a city council member.
    -
    -2. A city council, one member of which is a deputy sheriff, may enter into a contract with the sheriff to provide police services to the city, provided that the interest of the deputy sheriff is disclosed to the council and noted in its official records, and the deputy sheriff completely abstains from any participation in the matter.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 246
    - 10/23/2000 + 22-1001 + The DISTRICT ATTORNEY OF LOS ANGELES COUNTY has applied to this office for leave to sue DAVID ARGUDO in quo warranto to remove him from his public office as a member of the La Puente City Council. The application asserts that Argudo, while serving on the La Puente City Council, assumed a second and incompatible public office as a member of the La Puente Valley County Water District Board of Directors, in violation of Government Code section 1099, and by doing so forfeited his seat on the La Puente City Council. + We conclude that there is a substantial legal issue as to whether Argudo is simultaneously holding incompatible public offices. Consequently, and because the public interest will be served by allowing the proposed quo warranto action to proceed, the application for leave to sue is GRANTED.

    +Official Citation: 106 Ops.Cal.Atty.Gen. 10
    + 01/26/2023
    - 00-702 - May the California Building Standards Commission continue to maintain and update through the publication of annual supplements the 1998 edition of the California Building Code, which is based upon the 1997 edition of the Uniform Building Code, and publish it as part of the 2001 edition of the California Building Standards code? - The California Building Standards Commission may continue to maintain and update through the publication of annual supplements the 1998 edition of the California Building Code, which is based upon the 1997 edition of the Uniform Building Code, and publish it as part of the 2001 edition of the California Building Standards Code.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 210
    - 09/22/2000 + 22-803 + LYNN BOONE applies to this office for leave to sue DEIDRE DUHART in quo warranto to remove Duhart from her public office as a member of the Compton City Council on the ground that Duhart did not receive the requisite number of votes under the Compton City Charter to be appointed to that office. As a separate matter, Boone alleges that the Compton City Attorney took certain improper and ultra vires actions in declaring Duhart’s appointment to be valid. + We conclude that there is no substantial question of law regarding Duhart’s appointment to the City Council, and that it is therefore not in the public interest to authorize the proposed quo warranto action challenging her appointment. In addition, we conclude that the alleged actions of the Compton City Attorney in this matter do not give rise to an action in quo warranto. Consequently, the application for leave to sue is DENIED.

    +Official Citation: 106 Ops.Cal.Atty.Gen. 1
    + 01/26/2023
    - 00-701 - May a gift certificate for a meal sold by a restaurant contain an expiration date? - A gift certificate for a meal sold by a restaurant may not contain an expiration date.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 243
    - 10/23/2000
    - 00-609 - Is the California Commission on Teacher Credentialing required to deny a credential to an applicant who has been convicted of a sex offense listed in Education Code sections 44010 and 44424 that is not specified as a "violent or serious felony," where the applicant's probation has been terminated, and the information or accusation has been dismissed, but the applicant is not eligible to seek a certificate of rehabilitation and pardon because the offense was a misdemeanor instead of a felony? - The California Commission on Teacher Credentialing is not required to deny a credential to an applicant who has been convicted of a sex offense listed in Education Code sections 44010 and 44424 that is not specified as a "violent or serious felony," where the applicant's probation has been terminated, and the information or accusation has been dismissed, but the applicant is not eligible to seek a certificate of rehabilitation and pardon because the offense was a misdemeanor instead of a felony.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 251
    - 10/24/2000
    - 00-605 - 1. Is residence within a school district a qualification for election to the governing board of the district?
    -
    -2. Did Donald Elholm comply with the residence qualification for election to the governing board of the Lost Hills Union School District?
    -
    -3. Is continued residence within a school district required during the entire term of office of a governing board of member?
    -
    -4. Have Donald Elholm and Santiago Gaona complied with the residence requirement for continued service as members of the governing board of the Lost Hills Union School District?
    -
    -5. Is it in the public interest to grant the application for leave to sue in quo warranto to remove Donald Elholm and Santiago Gaona from office?
    - 1. Residence within a school district is a qualification for election to the governing board of the district.
    -
    -2. Whether Donald Elholm complied with the residence qualification for election to the governing board of the Lost Hills Union School District presents a substantial issue of fact.
    -
    -3. Continued residence within a school district is required during the entire term of office of a governing board member.
    -
    -4. Whether Donald Elholm and Santiago Gaona have complied with the residence requirement for continued service as members of the governing board of the Lost Hills Union School District presents substantial issues of fact.
    -
    -5. It is not in the public interest to grant the application for leave to sue in quo warranto to remove Donald Elholm and Santiago Gaona from office.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 181
    - 08/08/2000
    - 00-603 - Does the prohibition against participation by a board member of the Los Angeles Metropolitan Transit Authority in a contract decision if he or she received in the past four years a campaign contribution exceeding $10 from a person submitting a proposal for the contract apply to (1) contributions received during the four years immediately prior to January 1, 1998, and (2) contributions received from persons who submitted proposals for the contract but were not selected by staff employees for approval and acceptance by the board? - The prohibition against participation by a board member of the Los Angeles Metropolitan Authority in a contract decision if he or she received in the past four years a campaign contribution exceeding $10 from a person submitting a proposal for the contract applies to (1) contributions received during the four years immediately prior to January 1, 1998, and (2) contributions received from persons who submitted proposals for the contract but were not selected by staff employees for approval and acceptance by the board.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 236
    - 10/23/2000
    - 00-601 - Where a city council of a city with less than 200,000 in population has declared itself to be the city's redevelopment agency and the city's housing authority and conducts a unified meeting as a city council, redevelopment agency, and housing authority, may the council members receive the remuneration provided by law for members of a redevelopment agency and for commissioners of a housing authority if no business within the jurisdiction of the redevelopment agency or housing authority is conducted during the unified meeting? - Where a city council of a city with less than 200,000 in population has declared itself to be the city's redevelopment agency and the city's housing authority and conducts a unified meeting as a city council, redevelopment agency, and housing authority, the council members may not receive the remuneration provided by law for members of a redevelopment agency or for commissioners of a housing authority if no business within the jurisdiction of the redevelopment agency or housing authority is conducted during the unified meeting.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 215
    - 09/29/2000
    - 00-506 - May the mayor of a charter city, who is designated as the executive head of the city by the city charter, attend a closed session of the city's redevelopment agency, the members of which are appointed by the mayor with the approval of the city council, when the purpose of the closed session is to conduct a conference with the agency's real property negotiators who are negotiating the disposition and development of property, a portion of which is owned by the city, for construction of a publicly financed and publicly owned city conference center and privately financed and developed hotel complex? - The mayor of a charter city, who is designated as the executive head of the city by the city charter, may not attend a closed session of the city's redevelopment agency, the members of which are appointed by the mayor with the approval of the city council, when the purpose of the closed session is to conduct a conference with the agency's real property negotiators who are negotiating the disposition and development of property, a portion of which is owned by the city, for construction of a publicly financed and publicly owned city conference center and privately financed and developed hotel complex.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 221
    - 10/03/2000
    - 00-410 - Where a city charter requires city initiative petitions to be submitted in a form that complies with state law, may the city clerk reject a petition that does not contain a notice of intent with the name or names of the proponents of the initiative? - Where a city charter requires city initiative petitions to be submitted in a form that complies with state law, the city clerk is required to reject a petition that does not contain a notice of intent with the name or names of the proponents of the initiative.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 139
    - 06/09/2000
    - 00-405 - 1. May a general law county exercise its police power authority to require an industrial facility, not seeking any entitlement from the county, to use an inherently safer system or take a specific action, such as the use of particular equipment, manufacturing or refining processes, or management procedures, in order to protect public health or safety?
    -
    -2. If so, would a county subject itself to a greater risk of liability under the Tort Claims Act by having its officers exercise their discretion in requiring an industrial facility to use an inherently safer system or take a specific action?
    - 1. A general law county may exercise its police power authority to require an industrial facility, not seeking any entitlement from the county, to use an inherently safer system or take a specific action, such as the use of particular equipment, manufacturing or refining processes, or management procedures, in order to protect public health or safety.
    -
    -2. A county would not subject itself to a greater risk of liability under the Tort Claims Act by having its officers exercise their discretion in requiring an industrial facility to use an inherently safer system or take a specific action.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 195
    - 08/31/2000
    - 00-402 - Where a private contractor operates a solid waste transfer station for a county, does the prevailing wage law apply to the contractor's employees who (1) collect fees from trash collection companies and others for unloading trash into the station's containers, (2) monitor the unloading to prevent the placement of hazardous materials into the containers, and (3) periodically transport the containers to a county operated landfill? - Where a private contractor operates a solid waste transfer station for a county, the prevailing wage law does not apply to the contractor's employees who (1) collect fees from trash collection companies and others for unloading trash into the station's containers, (2) monitor the unloading to prevent the placement of hazardous materials into the containers, and (3) periodically transport the containers to a county operated landfill.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 166
    - 01/01/2000
    - 00-306 - Is a local public agency required to pay an employee who is a member of the California National Guard for the first 30 days of any declared emergency in the state regardless of the number of emergencies declared during a particular fiscal year? - A local public agency is required to pay an employee who is a member of the California National Guard for the first 30 days of any declared emergency in the state regardless of the number of emergencies declared during a particular fiscal year.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 148
    - 07/12/2000
    - 00-303 - Did the recent amendment of Labor Code section 96, which requires the Labor Commissioner to take assignments of claims for loss of wages as the result of demotion, suspension, or discharge from employment for lawful conduct occurring during non-working hours, abrogate existing law that permits the disciplining of peace officers for off-duty conduct occurring away from their place of employment that is otherwise lawful but conflicts with their duties as peace officers? - The recent amendment of Labor Code section 96, which requires the Labor Commissioner to take assignments of claims for loss of wages as the result of demotion, suspension, or discharge from employment for lawful conduct occurring during non-working hours, did not abrogate existing law that permits the disciplining of peace officers for off-duty conduct occurring away from their place of employment that is otherwise lawful but conflicts with their duties as peace officers.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 226
    - 10/10/2000
    - 00-302 - May an individual simultaneously serve as a member of the California Commission on Aging, the California Senior Legislature, and the Area Agency on Aging Advisory Council of California? - An individual may simultaneously serve as a member of the California Commission on Aging, the California Senior Legislature, and the Area Agency on Aging Advisory Council of California.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 153
    - 07/25/2000
    - 00-207 - May a secrecy admonition order issued to a grand jury witness by the superior court on behalf of the grand jury contain a notice to third persons advising such persons that they ay be held in contempt of court if they induce or attempt to induce the witness to disclose anything that took place in the grand jury room? - A secrecy admonition order issued to a grand jury witness by the superior court on behalf of the grand jury may not contain a notice to third persons advising such persons that they may be held in contempt of court if they induce or attempt to induce the witness to disclose anything that took place in the grand jury room.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 161
    - 07/26/2000
    - 00-206 - May a non-professional corporation, known as a management services organization, enter into an agreement with a labor union to select, schedule, secure, and pay for radiology diagnostic services ordered by the union's physician for union members and charge the union a fee for its management services? - A non-professional corporation, known as a management services organization, may not enter into an agreement with a labor union to select, schedule, secure, and pay for radiology diagnostic services ordered by the union's physician for union members and charge the union a fee for its management services.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 170
    - 07/27/2000
    - 00-205 - Is a common law change of name valid in California? - A common law change of name is valid in California.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 136
    - 06/09/2000
    - 00-204 - Is a bank required to pledge securities for deposits consisting of funds held in trust for employees of a local government as a compensation deferred from income taxation pursuant to the terms of Internal Revenue Code section 457? - A bank is required to pledge securities for deposits consisting of funds held in trust for employees of a local government as compensation deferred from income taxation pursuant to the terms of Internal Revenue Code section 457.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 175
    - 08/02/2000
    - 00-202 - Is the County of Fresno the only unit of local government within the county that qualifies for an automatic designation as a "local area" for purposes of the federal Workforce Investment Act? - The County of Fresno is the only unit of local government within the county that qualifies for an automatic designation as a "local area" for purposes of the federal Workforce Investment Act.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 186
    - 08/08/2000
    - 00-201 - Does federal law override state law prohibitions against the release of information to a public housing agency concerning whether an individual seeking admission to public housing is subject to a lifetime registration requirement under California's sex offender registration program? - Federal law overrides state law prohibitions against the release of information to a public housing agency concerning whether an individual seeking admission to public housing is subject to a lifetime registration requirement under California's sex offender registration program.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 143
    - 07/12/2000
    - 00-112 - Is a public school district required to provide special education programs to a child with disabilities who has been voluntarily enrolled by a parent in a private school? - A public school district is required to provide special education programs to a child with disabilities who has been voluntarily enrolled by a parent in a private school only to the extent that the programs can be purchased with the proportionate share of federal funds made available to the school district under the Individuals with Disabilities Education Act.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 132
    - 05/18/2000 + 22-701 + 1. Does Penal Code section 904.6 require a court to impanel a grand jury upon a district attorney’s request?
    +
    +2. Do prosecutors’ disclosure obligations under Brady v. Maryland (1963) 373 U.S. 83 and Penal Code section 1054.1 encompass materials from criminal grand jury proceedings, despite the fact that those proceedings are conducted in secret?
    + 1. No. Penal Code section 904.6 provides that a court may impanel a grand jury upon a district attorney’s request, but does not require it.
    +
    +2. Yes. Prosecutors’ disclosure obligations under Brady and Penal Code section 1054.1 encompass materials from criminal grand jury proceedings, despite the fact that those proceedings are conducted in secret.

    +Official Citation: 106 Ops.Cal.Atty.Gen. 41
    + 08/24/2023
    - 00-111 - 1. May a school district make cash payments to members of its governing board in lieu of providing them with health insurance benefits?
    -
    -2. If such cash payments are unauthorized, would making the payments constitute a criminal offense?
    -
    -3. If such cash payments are unauthorized, may an individual bring a civil action for reimbursement against those members of the governing board who received the unauthorized payments?
    - 1. A school district may not make cash payments to members of its governing board in lieu of providing them with health insurance benefits.
    -
    -2. Making such unauthorized cash payments may constitute a criminal offense, depending upon the individual circumstances.
    -
    -3. A civil action for reimbursement may be brought by affected individuals or organizations, taxpayers, or the Attorney General against those members of the governing board who received the unauthorized cash payments.

    -Official Citation: 83 Ops.Cal.Atty.Gen. 124
    - 05/03/2000 + 22-602 + May the Legislature enact a statute authorizing the State Bar of California to regulate non-attorney legal document assistants?
    +
    +
    + Yes. The Legislature may enact a statute authorizing the State Bar to regulate legal document assistants.

    +Official Citation: 106 Ops.Cal.Atty.Gen. 32
    + 05/25/2023
    +
    @@ -1026,26 +674,31 @@

    - -
    - - -
    + + + + + + +
    + +
    - -
    - - - -
    -
    - -
    -
    -
    - - -
    -

    Megan's Law

    -
    -

    California Registered Sex Offender Database

    -

    Search Now

    -

    Megan's Law information is also available in these languages:

    - - - -
    -
    - -
    -
    - -
    -
    -
    - - +

    How to Submit a Question of Law for AG Consideration

    +

    The Attorney General is authorized to give opinions on questions of law to state legislators, heads of state departments, district attorneys, county counsels, sheriffs, and to city attorneys in their prosecutorial capacities. For more information about requesting an opinion, please see our FAQs and the Guidelines for AG Opinions.pdf a downloadable resource provided for users' reference.

    +

    To submit a request, or to ask questions about how to submit a request, please contact: +

      +
    • Marc J. Nolan
    • +
    • Senior Assistant Attorney General
    • +
    • Office of the Attorney General
    • +
    • Opinion Unit, Dept. of Justice
    • +
    • 300 South Spring Street
    • +
    • Los Angeles, CA 90013
    • +
    • Marc.Nolan@doj.ca.gov
    • +

    -
    -
    - - -
    - -
    -
    +
    -
    -

    Resources

    - +
    +

    How to Request a Copy of an Existing Opinion

    + +

    A copy of a published opinion may be obtained by contacting the Opinion Unit: + +

      +
    • Office of the Attorney General
    • +
    • Opinion Unit, Dept. of Justice
    • +
    • Attn. Stephanie Grimes
    • +
    • P. O. Box 944255
    • +
    • Sacramento, CA 94244-2550
    • +
    • Stephanie.Grimes@doj.ca.gov
    • +
    • Printed hardbound volumes of Opinions of the Attorney General of California (1943 to present) are available for purchase by contacting Lexis Publishing online store at www.lexisnexis.com/store/us/. Electronic based opinions dating back to 1960 are also available in the Lexis online database. Additionally, hardbound volumes are also an available reference in public law libraries.
    • + +

    - -
    -
    + +
    +
    - -
    - -
    -
    +
    + -
    - +
    +
    +
    + State of California Department of Justice - Office of the Attorney General +
    +
    +
    State of California Department of Justice
    Office of the Attorney General
    +
    +
    +
    + +
    +
    + + + + + +
    +
    - - - -
    - - +
    - + -
    -
    - - - +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_1st_example.compare.json b/tests/examples/opinions/united_states/calctapp_1st_example.compare.json index 0b3ef04c4..244445ad2 100644 --- a/tests/examples/opinions/united_states/calctapp_1st_example.compare.json +++ b/tests/examples/opinions/united_states/calctapp_1st_example.compare.json @@ -1,486 +1,695 @@ [ { - "case_dates": "2013-07-17", - "case_names": "People v. Ford", - "download_urls": "/opinions/documents/A135733.PDF", + "case_dates": "2024-04-26", + "case_names": "People v. Berlin", + "download_urls": "/opinions/documents/A166452.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135733", - "case_name_shorts": "Ford" + "docket_numbers": "A166452", + "case_name_shorts": "Berlin" }, { - "case_dates": "2013-07-11", - "case_names": "Latinos Unidos etc. v. County of Napa", - "download_urls": "/opinions/documents/A135094.PDF", + "case_dates": "2024-04-25", + "case_names": "People v. Koontzy", + "download_urls": "/opinions/documents/A167703.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135094", - "case_name_shorts": "" + "docket_numbers": "A167703", + "case_name_shorts": "Koontzy" }, { - "case_dates": "2013-07-11", - "case_names": "In re D.B.", - "download_urls": "/opinions/documents/A135254.PDF", + "case_dates": "2024-04-25", + "case_names": "Kime v. Dignity Health, Inc.", + "download_urls": "/opinions/documents/A166748.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135254", - "case_name_shorts": "In re D.B." + "docket_numbers": "A166748", + "case_name_shorts": "Kime" }, { - "case_dates": "2013-07-10", - "case_names": "In re A.M.", - "download_urls": "/opinions/documents/A136436.PDF", + "case_dates": "2024-04-22", + "case_names": "People v. Basica", + "download_urls": "/opinions/documents/A166580.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A136436", - "case_name_shorts": "In re A.M." + "docket_numbers": "A166580", + "case_name_shorts": "Basica" }, { - "case_dates": "2013-07-08", - "case_names": "In re J.S.", - "download_urls": "/opinions/documents/A135214.PDF", + "case_dates": "2024-04-17", + "case_names": "People v. Beaudreaux", + "download_urls": "/opinions/documents/A166001M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135214", - "case_name_shorts": "In re J.S." + "docket_numbers": "A166001M", + "case_name_shorts": "Beaudreaux" }, { - "case_dates": "2013-06-25", - "case_names": "Neighbors etc. v. City & Cty. of S.F.", - "download_urls": "/opinions/documents/A135745.PDF", + "case_dates": "2024-04-16", + "case_names": "In re Taylor C.", + "download_urls": "/opinions/documents/A168282.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135745", + "docket_numbers": "A168282", "case_name_shorts": "" }, { - "case_dates": "2013-06-24", - "case_names": "Estate of Ben Ali", - "download_urls": "/opinions/documents/A132979M.PDF", + "case_dates": "2024-04-16", + "case_names": "Apex Solutions v. Falls Lake Insurance etc.", + "download_urls": "/opinions/documents/A167491M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A132979M", + "docket_numbers": "A167491M", "case_name_shorts": "" }, { - "case_dates": "2013-06-19", - "case_names": "Smith v. St. Jude Medical", - "download_urls": "/opinions/documents/A135338.PDF", + "case_dates": "2024-04-10", + "case_names": "People v. Rafael B.D.R.", + "download_urls": "/opinions/documents/A167246.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135338", + "docket_numbers": "A167246", "case_name_shorts": "" }, { - "case_dates": "2013-06-18", - "case_names": "People v. Nguyen", - "download_urls": "/opinions/documents/A133591.PDF", + "case_dates": "2024-04-10", + "case_names": "People v. Lozano", + "download_urls": "/opinions/documents/A165646.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A165646", + "case_name_shorts": "Lozano" + }, + { + "case_dates": "2024-04-08", + "case_names": "Shah v. Skillz Inc.", + "download_urls": "/opinions/documents/A165372.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A165372", + "case_name_shorts": "Shah" + }, + { + "case_dates": "2024-04-04", + "case_names": "Silva v. Medic Ambulance Service, Inc.", + "download_urls": "/opinions/documents/A167098.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A167098", + "case_name_shorts": "Silva" + }, + { + "case_dates": "2024-03-29", + "case_names": "Vichy Springs Resort, Inc. v. City of Ukiah", + "download_urls": "/opinions/documents/A165345.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A133591", - "case_name_shorts": "Nguyen" + "docket_numbers": "A165345", + "case_name_shorts": "" }, { - "case_dates": "2013-06-18", - "case_names": "In re Martinez", - "download_urls": "/opinions/documents/A134400M.PDF", + "case_dates": "2024-03-28", + "case_names": "People v. Serrano", + "download_urls": "/opinions/documents/A166011.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A134400M", - "case_name_shorts": "In re Martinez" + "docket_numbers": "A166011", + "case_name_shorts": "Serrano" }, { - "case_dates": "2013-06-14", - "case_names": "Series AGI West Linn v. Eves", - "download_urls": "/opinions/documents/A135832.PDF", + "case_dates": "2024-03-28", + "case_names": "People v. Beaudreaux", + "download_urls": "/opinions/documents/A166001.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135832", - "case_name_shorts": "Eves" + "docket_numbers": "A166001", + "case_name_shorts": "Beaudreaux" }, { - "case_dates": "2013-06-11", - "case_names": "People v. Barnes", - "download_urls": "/opinions/documents/A135131.PDF", + "case_dates": "2024-03-28", + "case_names": "BTHHM Berkeley, LLC v. Johnston", + "download_urls": "/opinions/documents/A166242.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135131", - "case_name_shorts": "Barnes" + "docket_numbers": "A166242", + "case_name_shorts": "Johnston" }, { - "case_dates": "2013-06-11", - "case_names": "J.R. Marketing v. Hartford Casualty", - "download_urls": "/opinions/documents/A133750.PDF", + "case_dates": "2024-03-28", + "case_names": "Apex Solutions, Inc. v. Falls Lake Ins. Management Co., Inc.", + "download_urls": "/opinions/documents/A167491.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A133750", + "docket_numbers": "A167491", "case_name_shorts": "" }, { - "case_dates": "2013-06-10", - "case_names": "Julius Castle Restaurant v. Payne", - "download_urls": "/opinions/documents/A130955.PDF", + "case_dates": "2024-03-27", + "case_names": "In re Seumanu", + "download_urls": "/opinions/documents/A169146M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A130955", - "case_name_shorts": "Payne" + "docket_numbers": "A169146M", + "case_name_shorts": "In re Seumanu" }, { - "case_dates": "2013-06-03", - "case_names": "Brisbane Lodging v. Webcor Builders", - "download_urls": "/opinions/documents/A132555.PDF", + "case_dates": "2024-03-27", + "case_names": "Alameda Health System v. Alameda County Employees' Retirement etc.", + "download_urls": "/opinions/documents/A165587.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A132555", + "docket_numbers": "A165587", "case_name_shorts": "" }, { - "case_dates": "2013-05-31", - "case_names": "In re Martinez", - "download_urls": "/opinions/documents/A134400.PDF", + "case_dates": "2024-03-20", + "case_names": "N.M. v. W.K.", + "download_urls": "/opinions/documents/A168081.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A134400", - "case_name_shorts": "In re Martinez" + "docket_numbers": "A168081", + "case_name_shorts": "N.M." }, { - "case_dates": "2013-05-30", - "case_names": "Sims v. Dept. Corrections & Rehabilitation", - "download_urls": "/opinions/documents/A135290.PDF", + "case_dates": "2024-03-20", + "case_names": "Conservatorship of K.Y.", + "download_urls": "/opinions/documents/A166825.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135290", - "case_name_shorts": "Sims" + "docket_numbers": "A166825", + "case_name_shorts": "Conservatorship of K.Y." }, { - "case_dates": "2013-05-29", - "case_names": "Maynard v. BTI Group", - "download_urls": "/opinions/documents/A136093.PDF", + "case_dates": "2024-03-18", + "case_names": "Wood v. S.F. Superior Court", + "download_urls": "/opinions/documents/A168463N.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A136093", - "case_name_shorts": "Maynard" + "docket_numbers": "A168463N", + "case_name_shorts": "Wood" }, { - "case_dates": "2013-05-29", - "case_names": "Estate of Ben-Ali", - "download_urls": "/opinions/documents/A132979.PDF", + "case_dates": "2024-03-15", + "case_names": "Wood v. Super. Ct.", + "download_urls": "/opinions/documents/A168463M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A132979", - "case_name_shorts": "Estate of Ben-Ali" + "docket_numbers": "A168463M", + "case_name_shorts": "Wood" }, { - "case_dates": "2013-05-29", - "case_names": "AREI II Cases", - "download_urls": "/opinions/documents/A130447.PDF", + "case_dates": "2024-03-15", + "case_names": "People v. Montgomery", + "download_urls": "/opinions/documents/A167813.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A130447", - "case_name_shorts": "AREI II Cases" + "docket_numbers": "A167813", + "case_name_shorts": "" }, { - "case_dates": "2013-05-28", - "case_names": "People v. Smith", - "download_urls": "/opinions/documents/A135760.PDF", + "case_dates": "2024-03-15", + "case_names": "Move Eden Housing v. City of Livermore", + "download_urls": "/opinions/documents/A167346M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135760", + "docket_numbers": "A167346M", "case_name_shorts": "" }, { - "case_dates": "2013-05-21", - "case_names": "Schwartz v. Provident Life etc.", - "download_urls": "/opinions/documents/A134706.PDF", + "case_dates": "2024-03-14", + "case_names": "Wood v. Super. Ct.", + "download_urls": "/opinions/documents/A168463.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A168463", + "case_name_shorts": "Wood" + }, + { + "case_dates": "2024-03-11", + "case_names": "In re Seumanu", + "download_urls": "/opinions/documents/A169146.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A134706", - "case_name_shorts": "Schwartz" + "docket_numbers": "A169146", + "case_name_shorts": "In re Seumanu" }, { - "case_dates": "2013-05-21", - "case_names": "North Coast Rivers Alliance v. Marin Mun. Water Dist. etc.", - "download_urls": "/opinions/documents/A133821.PDF", + "case_dates": "2024-03-07", + "case_names": "Temple of 1001 Buddhas v. City of Fremont", + "download_urls": "/opinions/documents/A167719.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A133821", + "docket_numbers": "A167719", "case_name_shorts": "" }, { - "case_dates": "2013-05-16", - "case_names": "Corrie v. Soloway", - "download_urls": "/opinions/documents/A135963.PDF", + "case_dates": "2024-03-06", + "case_names": "People v. Super. Ct. (Farley)", + "download_urls": "/opinions/documents/A168018.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135963", - "case_name_shorts": "Corrie" + "docket_numbers": "A168018", + "case_name_shorts": "" }, { - "case_dates": "2013-05-13", - "case_names": "People v. Flores", - "download_urls": "/opinions/documents/A135252.PDF", + "case_dates": "2024-03-06", + "case_names": "Move Eden Housing v. City of Livermore", + "download_urls": "/opinions/documents/A167346.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135252", - "case_name_shorts": "Flores" + "docket_numbers": "A167346", + "case_name_shorts": "" }, { - "case_dates": "2013-05-09", - "case_names": "Lockaway Storage v. Co. of Alameda", - "download_urls": "/opinions/documents/A130874.PDF", + "case_dates": "2024-03-05", + "case_names": "Hee Shen Cemetery etc. v. Yeong Wo Assn.", + "download_urls": "/opinions/documents/A165514.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A130874", + "docket_numbers": "A165514", "case_name_shorts": "" }, { - "case_dates": "2013-04-26", - "case_names": "In re Nelson B.", - "download_urls": "/opinions/documents/A136240.PDF", + "case_dates": "2024-03-04", + "case_names": "Safety-Kleen of Cal., Inc. v. Dept. of Toxic Substances Control", + "download_urls": "/opinions/documents/A166575.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A136240", + "docket_numbers": "A166575", "case_name_shorts": "" }, { - "case_dates": "2013-04-26", - "case_names": "Hall v. Aurora Loan Services", - "download_urls": "/opinions/documents/A133045.PDF", + "case_dates": "2024-03-01", + "case_names": "People v. Robinson", + "download_urls": "/opinions/documents/A165379.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A133045", - "case_name_shorts": "Hall" + "docket_numbers": "A165379", + "case_name_shorts": "Robinson" + }, + { + "case_dates": "2024-03-01", + "case_names": "Balakrishnan v. The Regents of the University of Cal.", + "download_urls": "/opinions/documents/A164480M.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A164480M", + "case_name_shorts": "Balakrishnan" + }, + { + "case_dates": "2024-02-29", + "case_names": "Berlanga v. University of San Francisco", + "download_urls": "/opinions/documents/A165976.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A165976", + "case_name_shorts": "Berlanga" + }, + { + "case_dates": "2024-02-28", + "case_names": "W. Bradley Electric v. Mitchell Engineering", + "download_urls": "/opinions/documents/A167137.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A167137", + "case_name_shorts": "" + }, + { + "case_dates": "2024-02-27", + "case_names": "People v. Pittman", + "download_urls": "/opinions/documents/A166669.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A166669", + "case_name_shorts": "Pittman" + }, + { + "case_dates": "2024-02-27", + "case_names": "Conservatorship of T.B.", + "download_urls": "/opinions/documents/A167919.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A167919", + "case_name_shorts": "Conservatorship of T.B." + }, + { + "case_dates": "2024-02-23", + "case_names": "County of Alameda v. Alameda County Taxpayers' Assn., Inc.", + "download_urls": "/opinions/documents/A166401M.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A166401M", + "case_name_shorts": "" + }, + { + "case_dates": "2024-02-13", + "case_names": "Whitehead v. City of Oakland", + "download_urls": "/opinions/documents/A164483.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A164483", + "case_name_shorts": "Whitehead" + }, + { + "case_dates": "2024-02-01", + "case_names": "Gilead Tenofovir Cases", + "download_urls": "/opinions/documents/A165558M.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A165558M", + "case_name_shorts": "Gilead Tenofovir Cases" + }, + { + "case_dates": "2024-02-01", + "case_names": "Balakrishnan v. The Regents of the University of Cal.", + "download_urls": "/opinions/documents/A164480.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A164480", + "case_name_shorts": "Balakrishnan" + }, + { + "case_dates": "2024-01-31", + "case_names": "People v. Dean", + "download_urls": "/opinions/documents/A166863.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A166863", + "case_name_shorts": "Dean" }, { - "case_dates": "2013-04-25", - "case_names": "Heritage Pacific v. Monroy", - "download_urls": "/opinions/documents/A135274.PDF", + "case_dates": "2024-01-31", + "case_names": "People v. Dain", + "download_urls": "/opinions/documents/A168286.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135274", - "case_name_shorts": "Monroy" + "docket_numbers": "A168286", + "case_name_shorts": "Dain" }, { - "case_dates": "2013-04-23", - "case_names": "Vasquez v. Greene Motors", - "download_urls": "/opinions/documents/A134829M.PDF", + "case_dates": "2024-01-31", + "case_names": "In re M.B.", + "download_urls": "/opinions/documents/A166408.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A134829M", - "case_name_shorts": "Vasquez" + "docket_numbers": "A166408", + "case_name_shorts": "In re M.B." }, { - "case_dates": "2013-04-18", - "case_names": "People v. Harrison", - "download_urls": "/opinions/documents/A132915.PDF", + "case_dates": "2024-01-31", + "case_names": "Abney v. State Dept. of Health Care Services", + "download_urls": "/opinions/documents/A164775.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A132915", - "case_name_shorts": "Harrison" + "docket_numbers": "A164775", + "case_name_shorts": "Abney" }, { - "case_dates": "2013-04-18", - "case_names": "In re Stoneroad", - "download_urls": "/opinions/documents/A132591.PDF", + "case_dates": "2024-01-30", + "case_names": "People v. Underwood", + "download_urls": "/opinions/documents/A162356.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A132591", - "case_name_shorts": "In re Stoneroad" + "docket_numbers": "A162356", + "case_name_shorts": "Underwood" }, { - "case_dates": "2013-04-16", - "case_names": "Scott v. JPMorgan Chase", - "download_urls": "/opinions/documents/A132741M.PDF", + "case_dates": "2024-01-30", + "case_names": "Newman v. Casey", + "download_urls": "/opinions/documents/A165210.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A132741M", - "case_name_shorts": "Scott" + "docket_numbers": "A165210", + "case_name_shorts": "Newman" }, { - "case_dates": "2013-04-15", - "case_names": "People v. McEvoy", - "download_urls": "/opinions/documents/A132360.PDF", + "case_dates": "2024-01-30", + "case_names": "Myasnyankin v. Nationwide Mutual Ins. Co.", + "download_urls": "/opinions/documents/A166946.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A132360", - "case_name_shorts": "McEvoy" + "docket_numbers": "A166946", + "case_name_shorts": "Myasnyankin" }, { - "case_dates": "2013-04-12", - "case_names": "Golden Gate Land Holdings v. East Bay Regional Park", - "download_urls": "/opinions/documents/A135593.PDF", + "case_dates": "2024-01-29", + "case_names": "County of Alameda v. Alameda County Taxpayers' Assn., Inc.", + "download_urls": "/opinions/documents/A166401.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135593", + "docket_numbers": "A166401", "case_name_shorts": "" }, { - "case_dates": "2013-04-11", - "case_names": "Lister v. Bowen", - "download_urls": "/opinions/documents/A134290.PDF", + "case_dates": "2024-01-26", + "case_names": "Marriage of Whitman", + "download_urls": "/opinions/documents/A157055M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A134290", - "case_name_shorts": "Lister" + "docket_numbers": "A157055M", + "case_name_shorts": "Marriage of Whitman" }, { - "case_dates": "2013-04-09", - "case_names": "People v. Gutierrez", - "download_urls": "/opinions/documents/A134695M.PDF", + "case_dates": "2024-01-26", + "case_names": "In re Tony R.", + "download_urls": "/opinions/documents/A166850M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A134695M", - "case_name_shorts": "Gutierrez" + "docket_numbers": "A166850M", + "case_name_shorts": "" }, { - "case_dates": "2013-04-08", - "case_names": "Luttrell v. Island Pacific", - "download_urls": "/opinions/documents/A134089.PDF", + "case_dates": "2024-01-22", + "case_names": "People v. McCray", + "download_urls": "/opinions/documents/A166084M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A134089", - "case_name_shorts": "Luttrell" + "docket_numbers": "A166084M", + "case_name_shorts": "McCray" }, { - "case_dates": "2013-04-02", - "case_names": "In re T.G.", - "download_urls": "/opinions/documents/A134874.PDF", + "case_dates": "2024-01-22", + "case_names": "De Martini v. Superior Court", + "download_urls": "/opinions/documents/A168529.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A134874", - "case_name_shorts": "In re T.G." + "docket_numbers": "A168529", + "case_name_shorts": "" }, { - "case_dates": "2013-03-29", - "case_names": "Federal Home Loan Bank v. Countrywide Financial", - "download_urls": "/opinions/documents/A135898.PDF", + "case_dates": "2024-01-18", + "case_names": "The Pep Boys v. Old Republic Insurance Company", + "download_urls": "/opinions/documents/A166574M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135898", + "docket_numbers": "A166574M", "case_name_shorts": "" }, { - "case_dates": "2013-03-28", - "case_names": "People v. Davis", - "download_urls": "/opinions/documents/A131764.PDF", + "case_dates": "2024-01-16", + "case_names": "Center for Biological Diversity v. Public Utilities Com.", + "download_urls": "/opinions/documents/A167721N.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A131764", - "case_name_shorts": "Davis" + "docket_numbers": "A167721N", + "case_name_shorts": "" }, { - "case_dates": "2013-03-28", - "case_names": "Concerned Dublin Citizens v. City of Dublin", - "download_urls": "/opinions/documents/A135790.PDF", + "case_dates": "2024-01-11", + "case_names": "Tournai v. CSAA Insurance Exchange", + "download_urls": "/opinions/documents/A167666.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135790", + "docket_numbers": "A167666", + "case_name_shorts": "Tournai" + }, + { + "case_dates": "2024-01-10", + "case_names": "In re Essure Product Cases", + "download_urls": "/opinions/documents/A166579M.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A166579M", "case_name_shorts": "" }, { - "case_dates": "2013-03-27", - "case_names": "Vasquez v. Greene Motors", - "download_urls": "/opinions/documents/A134829.PDF", + "case_dates": "2024-01-09", + "case_names": "Gilead Tenofovir Cases", + "download_urls": "/opinions/documents/A165558.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A165558", + "case_name_shorts": "Gilead Tenofovir Cases" + }, + { + "case_dates": "2024-01-08", + "case_names": "People v. Lashon", + "download_urls": "/opinions/documents/A163074A.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A163074A", + "case_name_shorts": "Lashon" + }, + { + "case_dates": "2024-01-08", + "case_names": "People v. Hall", + "download_urls": "/opinions/documents/A165406M.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A165406M", + "case_name_shorts": "Hall" + }, + { + "case_dates": "2024-01-08", + "case_names": "Green Tree Headlands LLC v. Crawford", + "download_urls": "/opinions/documents/A164867M.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "1st App. Dist.", + "docket_numbers": "A164867M", + "case_name_shorts": "Crawford" + }, + { + "case_dates": "2024-01-08", + "case_names": "DeMarinis v. Heritage Bank of Commerce", + "download_urls": "/opinions/documents/A167091.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A134829", - "case_name_shorts": "Vasquez" + "docket_numbers": "A167091", + "case_name_shorts": "DeMarinis" }, { - "case_dates": "2013-03-22", - "case_names": "Intengan v. BAC Home Loans", - "download_urls": "/opinions/documents/A135782.PDF", + "case_dates": "2024-01-05", + "case_names": "People v. Coleman", + "download_urls": "/opinions/documents/A165198.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "1st App. Dist.", - "docket_numbers": "A135782", - "case_name_shorts": "Intengan" + "docket_numbers": "A165198", + "case_name_shorts": "Coleman" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_1st_example.html b/tests/examples/opinions/united_states/calctapp_1st_example.html index 2b96e02eb..8fb3c410d 100644 --- a/tests/examples/opinions/united_states/calctapp_1st_example.html +++ b/tests/examples/opinions/united_states/calctapp_1st_example.html @@ -1,132 +1,737 @@ - + + + + + + California Courts - Published Opinions + - - -
    -
    -
    -

    Published Opinions

    -
    -
    + + +
    +
    +
    +
    +
    +
    -
    -

    Published Opinions of the appellate courts are opinions certified for publication or ordered published and may be cited or relied on by courts and parties.

    +

    Published or "citable" opinions of the appellate courts are opinions ordered published in the Official + Reports, and may be cited or relied on by other courts and parties.

    -

  • Official Reports Opinions (Searchable 1850-Present) are the searchable, citable, published opinions that reflect postfiling corrections. This no-fee service is provided by LexisNexis.
  • +

    +

  • Official Reports Opinions + (Searchable 1850-Present) are the searchable, citable, published opinions that reflect + post filing corrections. This no-fee service is provided by LexisNexis.
  • +

    -

  • Slip Opinions are as-filed versions of opinions. Slip opinions certified for publication do not reflect enhancement, editing and correction for the Official Reports.
  • +

    +

  • Slip Opinions are as-filed versions of opinions certified for publication or ordered + published; they do not reflect enhancement, editing, and correction for the Official Reports. Slip + opinions from the last 120 days are posted together on this page as public information about actions taken + by the courts.
  • +

    -

    Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court of Appeal slip opinions are posted throughout the day as soon after filing as possible.

    +

    +

  • Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court + of Appeal slip opinions are posted throughout the day as soon after filing as possible.
  • +

    -

    Use the list below to select the slip opinions certified for publication, or ordered published, that you want to view and click on the "view" button to activate your selection.

    +

    +

  • Archive of Web Pages Cited in Opinions Issued by the Supreme Court of + California
  • +

    +

    Use the pull-down menu below to select the slip opinions that you wish to view. After 120 days, these opinions + remain available via our Case Information + Search tool.

    -
    -


    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Date Posted
    Docket #/
    File Format
    Description

    Jul 17 2013A135733
    [PDF] [DOC]

    P. v. Ford 7/17/13 CA1/3 -  Case Details
    Jul 11 2013A135094
    [PDF] [DOC]

    Latinos Unidos etc. v. County of Napa 7/11/13 CA1/3 -  Case Details
    Jul 11 2013A135254
    [PDF] [DOC]

    In re D.B. 7/11/13 CA1/4 -  Case Details
    Jul 10 2013A136436
    [PDF] [DOC]

    In re A.M. 6/19/13 CA1/1 -  Case Details
    Jul 08 2013A135214
    [PDF] [DOC]

    In re J.S. 7/8/13 CA1/2 -  Case Details
    Jun 25 2013A135745
    [PDF] [DOC]

    Neighbors etc. v. City & Cty. of S.F. 5/31/13 CA1/3 -  Case Details
    Jun 24 2013A132979M
    [PDF] [DOC]

    Estate of Ben Ali 6/24/13 CA1/1 -  Case Details
    Jun 19 2013A135338
    [PDF] [DOC]

    Smith v. St. Jude Medical 5/21/13 CA1/5 -  Case Details
    Jun 18 2013A133591
    [PDF] [DOC]

    P. v. Nguyen 6/18/13 CA1/1 -  Case Details
    Jun 18 2013A134400M
    [PDF] [DOC]

    In re Martinez 6/18/13 CA1/2 -  Case Details
    Jun 14 2013A135832
    [PDF] [DOC]

    Series AGI West Linn v. Eves 6/14/13 CA1/2 -  Case Details
    Jun 11 2013A133750
    [PDF] [DOC]

    J.R. Marketing v. Hartford Casualty 5/17/13 CA1/3 -  Case Details
    Jun 11 2013A135131
    [PDF] [DOC]

    P. v. Barnes 6/11/13 CA1/2 -  Case Details
    Jun 10 2013A130955
    [PDF] [DOC]

    Julius Castle Restaurant v. Payne 6/10/13 CA1/1 -  Case Details
    Jun 03 2013A132555
    [PDF] [DOC]

    Brisbane Lodging v. Webcor Builders 6/3/13 CA1/4 -  Case Details
    May 31 2013A134400
    [PDF] [DOC]

    In re Martinez 5/31/13 CA1/2 -  Case Details
    May 30 2013A135290
    [PDF] [DOC]

    Sims v. Dept. Corrections & Rehabilitation 5/30/13 CA1/2 -  Case Details
    May 29 2013A130447
    [PDF] [DOC]

    AREI II Cases 5/29/13 CA1/3 -  Case Details
    May 29 2013A136093
    [PDF] [DOC]

    Maynard v. BTI Group 5/29/13 CA1/3 -  Case Details
    May 29 2013A132979
    [PDF] [DOC]

    Estate of Ben-Ali 5/29/13 CA1/1 -  Case Details
    May 28 2013A135760
    [PDF] [DOC]

    P. v. Smith 5/7/13 CA1/5 -  Case Details
    May 21 2013A133821
    [PDF] [DOC]

    North Coast Rivers Alliance v. Marin Mun. Water Dist. etc. 5/21/13 CA1/4 -  Case Details
    May 21 2013A134706
    [PDF] [DOC]

    Schwartz v. Provident Life etc. 5/21/13 CA1/3 -  Case Details
    May 16 2013A135963
    [PDF] [DOC]

    Corrie v. Soloway 5/16/13 CA1/1 -  Case Details
    May 13 2013A135252
    [PDF] [DOC]

    P. v. Flores 5/13/13 CA1/4 -  Case Details
    May 09 2013A130874
    [PDF] [DOC]

    Lockaway Storage v. Co. of Alameda 5/9/13 CA1/3 -  Case Details
    Apr 26 2013A133045
    [PDF] [DOC]

    Hall v. Aurora Loan Services 4/26/13 CA1/4 -  Case Details
    Apr 26 2013A136240
    [PDF] [DOC]

    In re Nelson B. 4/26/13 CA1/1 -  Case Details
    Apr 25 2013A135274
    [PDF] [DOC]

    Heritage Pacific v. Monroy 3/29/13 CA1/2 -  Case Details
    Apr 23 2013A134829M
    [PDF] [DOC]

    Vasquez v. Greene Motors 4/23/13 CA1/1 -  Case Details
    Apr 18 2013A132915
    [PDF] [DOC]

    P. v. Harrison 4/18/13 CA1/4 -  Case Details
    Apr 18 2013A132591
    [PDF] [DOC]

    In re Stoneroad 4/18/13 CA1/2 -  Case Details
    Apr 16 2013A132741M
    [PDF] [DOC]

    Scott v. JPMorgan Chase 4/16/13 CA1/5 -  Case Details
    Apr 15 2013A132360
    [PDF] [DOC]

    P. v. McEvoy 4/15/13 CA1/2 -  Case Details
    Apr 12 2013A135593
    [PDF] [DOC]

    Golden Gate Land Holdings v. East Bay Regional Park 4/12/13 CA1/5 -  Case Details
    Apr 11 2013A134290
    [PDF] [DOC]

    Lister v. Bowen 3/15/13 CA1/2 -  Case Details
    Apr 09 2013A134695M
    [PDF] [DOC]

    P. v. Gutierrez 4/9/13 CA1/3 -  Case Details
    Apr 08 2013A134089
    [PDF] [DOC]

    Luttrell v. Island Pacific 4/8/13 CA1/5 -  Case Details
    Apr 02 2013A134874
    [PDF] [DOC]

    In re T.G. 3/6/13 CA1/5 -  Case Details
    Mar 29 2013A135898
    [PDF] [DOC]

    Federal Home Loan Bank v. Countrywide Financial 3/29/13 CA1/5 -  Case Details
    Mar 28 2013A131764
    [PDF] [DOC]

    P. v. Davis 3/28/13 CA1/4 -  Case Details
    Mar 28 2013A135790
    [PDF] [DOC]

    Concerned Dublin Citizens v. City of Dublin 3/7/13 CA1/3 -  Case Details
    Mar 27 2013A134829
    [PDF] [DOC]

    Vasquez v. Greene Motors 3/27/13 CA1/1 -  Case Details
    Mar 22 2013A135782
    [PDF] [DOC]

    Intengan v. BAC Home Loans 3/22/13 CA1/5 -  Case Details
    -

    +

    Please note that copies of published opinions may also be available from or searchable through sources other than + this website.

    +
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date Posted
    Docket #/
    File Format
    Description

    +

    Apr 26, 2024A166452
    [PDF]
    [DOC]
    P. v. Berlin 4/26/24 CA1/5  Case Details
    Apr 25, 2024A167703
    [PDF]
    [DOC]
    P. v. Koontzy 4/25/24 CA1/5  Case Details
    Apr 25, 2024A166748
    [PDF]
    [DOC]
    Kime v. Dignity Health, Inc. 3/29/24 CA1/2  Case Details
    Apr 22, 2024A166580
    [PDF]
    [DOC]
    P. v. Basica 4/22/24 CA1/4  Case Details
    Apr 17, 2024A166001M
    [PDF]
    [DOC]
    P. v. Beaudreaux 4/17/24 CA1/4  Case Details
    Apr 16, 2024A168282
    [PDF]
    [DOC]
    In re Taylor C. 4/16/24 CA1/3  Case Details
    Apr 16, 2024A167491M
    [PDF]
    [DOC]
    Apex Solutions v. Falls Lake Insurance etc. 4/16/24 CA1/4  Case Details
    Apr 10, 2024A165646
    [PDF]
    [DOC]
    P. v. Lozano 4/10/24 CA1/3  Case Details
    Apr 10, 2024A167246
    [PDF]
    [DOC]
    P. v. Rafael B.D.R. 4/10/24 CA1/3  Case Details
    Apr 08, 2024A165372
    [PDF]
    [DOC]
    Shah v. Skillz Inc. 4/8/24 CA1/5  Case Details
    Apr 04, 2024A167098
    [PDF]
    [DOC]
    Silva et al. v. Medic Ambulance Service, Inc. 4/4/24 CA1/1  Case Details
    Mar 29, 2024A165345
    [PDF]
    [DOC]
    Vichy Springs Resort, Inc. v. City of Ukiah 3/29/24 CA1/4  Case Details   Related + Case: A167000 +
    Mar 28, 2024A166001
    [PDF]
    [DOC]
    P. v. Beaudreaux 3/28/24 CA1/4  Case Details
    Mar 28, 2024A167491
    [PDF]
    [DOC]
    Apex Solutions, Inc. v. Falls Lake Ins. Management Co., Inc. 3/28/24 + CA1/4  Case Details
    Mar 28, 2024A166242
    [PDF]
    [DOC]
    BTHHM Berkeley, LLC, et al. v. Johnston 3/28/24 CA1/4  Case Details
    Mar 28, 2024A166011
    [PDF]
    [DOC]
    P. v. Serrano 3/28/24 CA1/5  Case Details
    Mar 27, 2024A165587
    [PDF]
    [DOC]
    Alameda Health System v. Alameda County Employees' Retirement etc. 3/27/24 + CA1/2  Case Details
    Mar 27, 2024A169146M
    [PDF]
    [DOC]
    In re Seumanu 3/27/24 CA1/4  Case Details
    Mar 20, 2024A166825
    [PDF]
    [DOC]
    Conservatorship of K.Y. 3/20/24 CA1/4  Case Details
    Mar 20, 2024A168081
    [PDF]
    [DOC]
    N.M. v. W.K. 3/19/24 CA1/3  Case Details
    Mar 18, 2024A168463N
    [PDF]
    [DOC]
    Wood v. S.F. Superior Court 3/15/24 CA1/2  Case Details
    Mar 15, 2024A167346M
    [PDF]
    [DOC]
    Move Eden Housing v. City of Livermore 3/15/24 CA1/5  Case Details
    Mar 15, 2024A168463M
    [PDF]
    [DOC]
    Wood v. Super. Ct. 3/15/24 CA1/2  Case Details
    Mar 15, 2024A167813
    [PDF]
    [DOC]
    P. v. Montgomery 3/15/24 CA1/3  Case Details
    Mar 14, 2024A168463
    [PDF]
    [DOC]
    Wood v. Super. Ct. 3/14/24 CA1/2  Case Details
    Mar 11, 2024A169146
    [PDF]
    [DOC]
    In re Seumanu 3/11/24 CA1/4  Case Details
    Mar 07, 2024A167719
    [PDF]
    [DOC]
    Temple of 1001 Buddhas et al. v. City of Fremont 3/6/24 CA1/4  Case Details
    Mar 06, 2024A167346
    [PDF]
    [DOC]
    Move Eden Housing v. City of Livermore 3/6/24 CA1/5  Case Details
    Mar 06, 2024A168018
    [PDF]
    [DOC]
    P. v. Super. Ct. (Farley) 3/5/24 CA1/4  Case Details
    Mar 05, 2024A165514
    [PDF]
    [DOC]
    Hee Shen Cemetery etc. v. Yeong Wo Assn. 3/5/24 CA1/2  Case Details
    Mar 04, 2024A166575
    [PDF]
    [DOC]
    Safety-Kleen of Cal., Inc. v. Dept. of Toxic Substances Control 3/4/24 + CA1/3  Case Details
    Mar 01, 2024A164480M
    [PDF]
    [DOC]
    Balakrishnan v. The Regents of the University of Cal. 3/1/24 CA1/5  + Case Details
    Mar 01, 2024A165379
    [PDF]
    [DOC]
    P. v. Robinson 3/1/24 CA1/4  Case Details
    Feb 29, 2024A165976
    [PDF]
    [DOC]
    Berlanga v. University of San Francisco 2/29/24 CA1/3  Case Details   Related + Case: A166231 +
    Feb 28, 2024A167137
    [PDF]
    [DOC]
    W. Bradley Electric v. Mitchell Engineering 2/28/24 CA1/5  Case Details
    Feb 27, 2024A166669
    [PDF]
    [DOC]
    P. v. Pittman 2/27/24 CA1/4  Case Details
    Feb 27, 2024A167919
    [PDF]
    [DOC]
    Conservatorship of T.B. 2/27/24 CA1/2  Case Details
    Feb 23, 2024A166401M
    [PDF]
    [DOC]
    County of Alameda v. Alameda County Taxpayers' Assn., Inc. 2/23/24 + CA1/5  Case Details   Related + Case: A166404 +
    Feb 13, 2024A164483
    [PDF]
    [DOC]
    Whitehead v. City of Oakland 1/22/24 CA1/3  Case Details
    Feb 01, 2024A165558M
    [PDF]
    [DOC]
    Gilead Tenofovir Cases 2/1/24 CA1/4  Case Details
    Feb 01, 2024A164480
    [PDF]
    [DOC]
    Balakrishnan v. The Regents of the University of Cal. 2/1/24 CA1/5  + Case Details
    Jan 31, 2024A166863
    [PDF]
    [DOC]
    P. v. Dean 1/31/24 CA1/4   Case Details
    Jan 31, 2024A166408
    [PDF]
    [DOC]
    In re M.B. 1/31/24 CA1/4  Case Details
    Jan 31, 2024A164775
    [PDF]
    [DOC]
    Abney v. State Dept. of Health Care Services 1/31/24 CA1/2  Case Details
    Jan 31, 2024A168286
    [PDF]
    [DOC]
    P. v. Dain 1/31/24 CA1/2  Case Details
    Jan 30, 2024A166946
    [PDF]
    [DOC]
    Myasnyankin v. Nationwide Mutual Ins. Co. 1/30/24 CA1/5  Case Details   Related + Case: A167445
    Jan 30, 2024A162356
    [PDF]
    [DOC]
    P. v. Underwood 1/30/24 CA1/2  Case Details
    Jan 30, 2024A165210
    [PDF]
    [DOC]
    Newman v. Casey 1/30/24 CA1/1  Case Details
    Jan 29, 2024A166401
    [PDF]
    [DOC]
    County of Alameda v. Alameda County Taxpayers' Assn., Inc. 1/29/24 + CA1/5  Case Details   Related + Case: A166404 +
    Jan 26, 2024A166850M
    [PDF]
    [DOC]
    In re Tony R. 1/26/24 CA1/2  Case Details
    Jan 26, 2024A157055M
    [PDF]
    [DOC]
    Marriage of Whitman 1/26/24 CA1/2  Case Details
    Jan 22, 2024A168529
    [PDF]
    [DOC]
    De Martini v. Superior Court 1/22/24 CA1/3  Case Details
    Jan 22, 2024A166084M
    [PDF]
    [DOC]
    P. v. McCray 1/22/24 CA1/4  Case Details
    Jan 18, 2024A166574M
    [PDF]
    [DOC]
    The Pep Boys v. Old Republic Insurance Company 1/18/24 CA1/4  Case Details
    Jan 16, 2024A167721N
    [PDF]
    [DOC]
    Center for Biological Diversity v. Public Utilities Com. 1/16/24 CA1/3 +   Case Details
    Jan 11, 2024A167666
    [PDF]
    [DOC]
    Tournai v. CSAA Insurance Exchange 12/18/23 CA1/2  Case Details
    Jan 10, 2024A166579M
    [PDF]
    [DOC]
    In re Essure Product Cases 1/10/24 CA1/3  Case Details
    Jan 09, 2024A165558
    [PDF]
    [DOC]
    Gilead Tenofovir Cases 1/9/24 CA1/4  Case Details
    Jan 08, 2024A163074A
    [PDF]
    [DOC]
    P. v. Lashon 1/8/24 CA1/3  Case Details
    Jan 08, 2024A165406M
    [PDF]
    [DOC]
    P. v. Hall 1/8/24 CA1/1  Case Details
    Jan 08, 2024A167091
    [PDF]
    [DOC]
    DeMarinis v. Heritage Bank of Commerce 12/11/23 CA1/3  Case Details
    Jan 08, 2024A164867M
    [PDF]
    [DOC]
    Green Tree Headlands LLC v. Crawford 1/8/24 CA1/4  Case Details
    Jan 05, 2024A165198
    [PDF]
    [DOC]
    P. v. Coleman 1/5/24 CA1/5  Case Details
    +

    + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_2nd_example.compare.json b/tests/examples/opinions/united_states/calctapp_2nd_example.compare.json index 589ce6ae8..be9f051eb 100644 --- a/tests/examples/opinions/united_states/calctapp_2nd_example.compare.json +++ b/tests/examples/opinions/united_states/calctapp_2nd_example.compare.json @@ -1,1256 +1,827 @@ [ { - "case_dates": "2013-07-18", - "case_names": "In re H.K.", - "download_urls": "/opinions/documents/B242800.PDF", + "case_dates": "2024-04-24", + "case_names": "Vines v. O'Reilly Auto Enterprises", + "download_urls": "/opinions/documents/B327821.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B242800", - "case_name_shorts": "In re H.K." + "docket_numbers": "B327821", + "case_name_shorts": "Vines" }, { - "case_dates": "2013-07-16", - "case_names": "Malin v. Singer", - "download_urls": "/opinions/documents/B237804.PDF", + "case_dates": "2024-04-23", + "case_names": "People v. Cunningham", + "download_urls": "/opinions/documents/B323640.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B237804", - "case_name_shorts": "Malin" + "docket_numbers": "B323640", + "case_name_shorts": "Cunningham" }, { - "case_dates": "2013-07-11", - "case_names": "Toho-Towa v. Morgan Creek Productions", - "download_urls": "/opinions/documents/B242095.PDF", + "case_dates": "2024-04-23", + "case_names": "Norman v. Ross", + "download_urls": "/opinions/documents/B316971.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B242095", - "case_name_shorts": "Toho-Towa" + "docket_numbers": "B316971", + "case_name_shorts": "Norman" }, { - "case_dates": "2013-07-11", - "case_names": "Shearin v. Brown", - "download_urls": "/opinions/documents/B239730.PDF", + "case_dates": "2024-04-23", + "case_names": "Mondragon v. Sunrun Inc.", + "download_urls": "/opinions/documents/B328425.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B239730", - "case_name_shorts": "Shearin" + "docket_numbers": "B328425", + "case_name_shorts": "Mondragon" }, { - "case_dates": "2013-07-11", - "case_names": "Beaumont-Jacques v. Farmers Group", - "download_urls": "/opinions/documents/B239855.PDF", + "case_dates": "2024-04-19", + "case_names": "Sam v. Kwan", + "download_urls": "/opinions/documents/B314426.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B239855", - "case_name_shorts": "Beaumont-Jacques" + "docket_numbers": "B314426", + "case_name_shorts": "Sam" }, { - "case_dates": "2013-07-09", - "case_names": "Sanchez v. Hitachi Koki", - "download_urls": "/opinions/documents/B245050.PDF", + "case_dates": "2024-04-19", + "case_names": "Dubac v. Itkoff", + "download_urls": "/opinions/documents/B317061.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B245050", - "case_name_shorts": "Sanchez" + "docket_numbers": "B317061", + "case_name_shorts": "Dubac" }, { - "case_dates": "2013-07-09", - "case_names": "Boeken v. Philip Morris", - "download_urls": "/opinions/documents/B236875.PDF", + "case_dates": "2024-04-18", + "case_names": "Lugo v. Pixior, LLC", + "download_urls": "/opinions/documents/B324368.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B236875", - "case_name_shorts": "Boeken" + "docket_numbers": "B324368", + "case_name_shorts": "Lugo" }, { - "case_dates": "2013-07-09", - "case_names": "Bender v. Cty. of L.A.", - "download_urls": "/opinions/documents/B236294.PDF", + "case_dates": "2024-04-18", + "case_names": "Balderas v. Fresh Start Harvesting, Inc.", + "download_urls": "/opinions/documents/B326759.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B236294", - "case_name_shorts": "Bender" + "docket_numbers": "B326759", + "case_name_shorts": "Balderas" }, { - "case_dates": "2013-07-03", - "case_names": "Torres v. Dept. of Corrections etc.", - "download_urls": "/opinions/documents/B242586.PDF", + "case_dates": "2024-04-17", + "case_names": "Kuigoua v. Dept. of Veteran Affairs", + "download_urls": "/opinions/documents/B323735.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B242586", - "case_name_shorts": "Torres" + "docket_numbers": "B323735", + "case_name_shorts": "Kuigoua" }, { - "case_dates": "2013-07-03", - "case_names": "Roberts v. Packard, Packard & Johnson", - "download_urls": "/opinions/documents/B240452.PDF", + "case_dates": "2024-04-09", + "case_names": "People v. Estrada", + "download_urls": "/opinions/documents/B324576.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B240452", - "case_name_shorts": "Roberts" + "docket_numbers": "B324576", + "case_name_shorts": "Estrada" }, { - "case_dates": "2013-07-03", - "case_names": "People v. LaPierre", - "download_urls": "/opinions/documents/B239304A.PDF", + "case_dates": "2024-04-05", + "case_names": "State of California v. Super. Ct.", + "download_urls": "/opinions/documents/B330847.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B239304A", - "case_name_shorts": "LaPierre" - }, - { - "case_dates": "2013-07-03", - "case_names": "Mendiola v. CPS Security Solutions", - "download_urls": "/opinions/documents/B240519.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B240519", - "case_name_shorts": "Mendiola" - }, - { - "case_dates": "2013-07-03", - "case_names": "Enloe v. Kelso", - "download_urls": "/opinions/documents/B241201.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B241201", - "case_name_shorts": "Enloe" - }, - { - "case_dates": "2013-07-02", - "case_names": "Rodriguez v. County of Los Angeles", - "download_urls": "/opinions/documents/B241049.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B241049", - "case_name_shorts": "Rodriguez" - }, - { - "case_dates": "2013-06-27", - "case_names": "Ibarra v. Superior Court", - "download_urls": "/opinions/documents/B244824.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B244824", - "case_name_shorts": "Ibarra" - }, - { - "case_dates": "2013-06-27", - "case_names": "DeLuca v. State Fish Co.", - "download_urls": "/opinions/documents/B240597.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B240597", - "case_name_shorts": "DeLuca" - }, - { - "case_dates": "2013-06-27", - "case_names": "Co. of LA v. Financial Casualty & Surety", - "download_urls": "/opinions/documents/B240358M.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B240358M", + "docket_numbers": "B330847", "case_name_shorts": "" }, { - "case_dates": "2013-06-26", - "case_names": "L.A. Unified School Dist. v. Cty. of L.A.", - "download_urls": "/opinions/documents/B243849.PDF", + "case_dates": "2024-04-05", + "case_names": "People v. Uriostegui", + "download_urls": "/opinions/documents/B325200.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B243849", - "case_name_shorts": "" + "docket_numbers": "B325200", + "case_name_shorts": "Uriostegui" }, { - "case_dates": "2013-06-26", - "case_names": "In re S.E.", - "download_urls": "/opinions/documents/B244326.PDF", + "case_dates": "2024-04-03", + "case_names": "Vazquez v. SaniSure", + "download_urls": "/opinions/documents/B329219.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B244326", - "case_name_shorts": "In re S.E." + "docket_numbers": "B329219", + "case_name_shorts": "Vazquez" }, { - "case_dates": "2013-06-25", - "case_names": "Straley v. Gamble", - "download_urls": "/opinions/documents/B240380.PDF", + "case_dates": "2024-04-03", + "case_names": "Howard v. Accor Management US", + "download_urls": "/opinions/documents/B320603.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B240380", - "case_name_shorts": "Straley" + "docket_numbers": "B320603", + "case_name_shorts": "Howard" }, { - "case_dates": "2013-06-24", - "case_names": "People v. Parker", - "download_urls": "/opinions/documents/B243010.PDF", + "case_dates": "2024-04-02", + "case_names": "Lew-Williams v. Petrosian", + "download_urls": "/opinions/documents/B330387.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B243010", - "case_name_shorts": "Parker" + "docket_numbers": "B330387", + "case_name_shorts": "Lew-Williams" }, { - "case_dates": "2013-06-24", - "case_names": "Leos v. Darden Restaurants", - "download_urls": "/opinions/documents/B241630.PDF", + "case_dates": "2024-03-29", + "case_names": "Gazal v. Echeverry", + "download_urls": "/opinions/documents/B327668.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B241630", - "case_name_shorts": "Leos" + "docket_numbers": "B327668", + "case_name_shorts": "Gazal" }, { - "case_dates": "2013-06-24", - "case_names": "Cann v. Stefanec", - "download_urls": "/opinions/documents/B243396.PDF", + "case_dates": "2024-03-29", + "case_names": "AIDS Healthcare Foundation v. Bonta", + "download_urls": "/opinions/documents/B321875.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B243396", - "case_name_shorts": "Cann" + "docket_numbers": "B321875", + "case_name_shorts": "Bonta" }, { - "case_dates": "2013-06-21", - "case_names": "In re John M.", - "download_urls": "/opinions/documents/B243107.PDF", + "case_dates": "2024-03-28", + "case_names": "People v. Freetown Holdings Co.", + "download_urls": "/opinions/documents/B309295.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B243107", + "docket_numbers": "B309295", "case_name_shorts": "" }, { - "case_dates": "2013-06-21", - "case_names": "In re E.T.", - "download_urls": "/opinions/documents/B243407.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B243407", - "case_name_shorts": "In re E.T." - }, - { - "case_dates": "2013-06-20", - "case_names": "People v. Leath", - "download_urls": "/opinions/documents/B239508.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B239508", - "case_name_shorts": "Leath" - }, - { - "case_dates": "2013-06-20", - "case_names": "Flores v. Chevron USA Inc.", - "download_urls": "/opinions/documents/B240477.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B240477", - "case_name_shorts": "Flores" - }, - { - "case_dates": "2013-06-19", - "case_names": "Teal v. Super. Ct.", - "download_urls": "/opinions/documents/B247196.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B247196", - "case_name_shorts": "Teal" - }, - { - "case_dates": "2013-06-17", - "case_names": "People v. Sullivan", - "download_urls": "/opinions/documents/B237734.PDF", + "case_dates": "2024-03-28", + "case_names": "Medallion Film LLC v. Loeb & Loeb LLP", + "download_urls": "/opinions/documents/B323356.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B237734", - "case_name_shorts": "Sullivan" - }, - { - "case_dates": "2013-06-13", - "case_names": "People v. Solis", - "download_urls": "/opinions/documents/B238099.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B238099", - "case_name_shorts": "Solis" - }, - { - "case_dates": "2013-06-13", - "case_names": "Liberty Nat. v. Chicago Title Ins.", - "download_urls": "/opinions/documents/B234341.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B234341", + "docket_numbers": "B323356", "case_name_shorts": "" }, { - "case_dates": "2013-06-12", - "case_names": "Pedeferri v. Seidner Enterprises", - "download_urls": "/opinions/documents/B233542M.PDF", + "case_dates": "2024-03-28", + "case_names": "In re S.G.", + "download_urls": "/opinions/documents/B330106.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B233542M", - "case_name_shorts": "Pedeferri" + "docket_numbers": "B330106", + "case_name_shorts": "In re S.G." }, { - "case_dates": "2013-06-05", - "case_names": "Stoltenberg v. Ampton Investments", - "download_urls": "/opinions/documents/B235731O.PDF", + "case_dates": "2024-03-25", + "case_names": "Weeks v. Interactive Life Forms, LLC", + "download_urls": "/opinions/documents/B323430.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B235731O", - "case_name_shorts": "Stoltenberg" + "docket_numbers": "B323430", + "case_name_shorts": "Weeks" }, { - "case_dates": "2013-06-05", - "case_names": "Nevarrez v. San Marino Skilled Nursing", - "download_urls": "/opinions/documents/B235372.PDF", + "case_dates": "2024-03-25", + "case_names": "People v. Hill", + "download_urls": "/opinions/documents/B322561.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B235372", - "case_name_shorts": "Nevarrez" + "docket_numbers": "B322561", + "case_name_shorts": "Hill" }, { - "case_dates": "2013-06-04", - "case_names": "Vargas v. SAI Monrovia B", - "download_urls": "/opinions/documents/B237257.PDF", + "case_dates": "2024-03-25", + "case_names": "Gramajo v. Joe's Pizza on Sunset, Inc.", + "download_urls": "/opinions/documents/B322697.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B237257", - "case_name_shorts": "Vargas" + "docket_numbers": "B322697", + "case_name_shorts": "Gramajo" }, { - "case_dates": "2013-06-04", - "case_names": "Freeny v. City of San Buenaventura", - "download_urls": "/opinions/documents/B240893.PDF", + "case_dates": "2024-03-19", + "case_names": "Asiryan v. Med. Staff of Glendale Adventist Med. Center", + "download_urls": "/opinions/documents/B316313.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B240893", - "case_name_shorts": "Freeny" + "docket_numbers": "B316313", + "case_name_shorts": "Asiryan" }, { - "case_dates": "2013-06-03", - "case_names": "McAllister v. LA Unified School Dist.", - "download_urls": "/opinions/documents/B244759.PDF", + "case_dates": "2024-03-18", + "case_names": "In re Ca.M.", + "download_urls": "/opinions/documents/B326320.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B244759", - "case_name_shorts": "McAllister" + "docket_numbers": "B326320", + "case_name_shorts": "In re Ca.M." }, { - "case_dates": "2013-05-31", - "case_names": "People v. Christiansen", - "download_urls": "/opinions/documents/B238361.PDF", + "case_dates": "2024-03-18", + "case_names": "F.K. v. Superior Court", + "download_urls": "/opinions/documents/B333788.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B238361", - "case_name_shorts": "Christiansen" + "docket_numbers": "B333788", + "case_name_shorts": "F.K." }, { - "case_dates": "2013-05-31", - "case_names": "Co. of LA v. Financial Casualty & Surety", - "download_urls": "/opinions/documents/B240358.PDF", + "case_dates": "2024-03-15", + "case_names": "People v. Jackson", + "download_urls": "/opinions/documents/B328954.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B240358", + "docket_numbers": "B328954", "case_name_shorts": "" }, { - "case_dates": "2013-05-30", - "case_names": "In re Nadia G.", - "download_urls": "/opinions/documents/B243392.PDF", + "case_dates": "2024-03-12", + "case_names": "People v. Felix", + "download_urls": "/opinions/documents/B317938M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B243392", - "case_name_shorts": "" + "docket_numbers": "B317938M", + "case_name_shorts": "Felix" }, { - "case_dates": "2013-05-30", - "case_names": "Amer. Way Cellular v. Travelers Property Cas.", - "download_urls": "/opinions/documents/B234188.PDF", + "case_dates": "2024-03-08", + "case_names": "Boermeester v. Carry", + "download_urls": "/opinions/documents/B290675N.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B234188", - "case_name_shorts": "" + "docket_numbers": "B290675N", + "case_name_shorts": "Boermeester" }, { - "case_dates": "2013-05-29", - "case_names": "Multani v. Witkin & Neal", - "download_urls": "/opinions/documents/B237295M.PDF", + "case_dates": "2024-03-07", + "case_names": "People v. Paul", + "download_urls": "/opinions/documents/B320488M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B237295M", - "case_name_shorts": "Multani" + "docket_numbers": "B320488M", + "case_name_shorts": "Paul" }, { - "case_dates": "2013-05-29", - "case_names": "Mt. Hawley Ins. Co. v. Lopez", - "download_urls": "/opinions/documents/B234082M.PDF", + "case_dates": "2024-03-07", + "case_names": "People v. Felix", + "download_urls": "/opinions/documents/B317938.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B234082M", - "case_name_shorts": "Lopez" + "docket_numbers": "B317938", + "case_name_shorts": "Felix" }, { - "case_dates": "2013-05-29", - "case_names": "Adir Internat. v. Super. Ct.", - "download_urls": "/opinions/documents/B247117.PDF", + "case_dates": "2024-03-07", + "case_names": "Fix the City, Inc. v. City of Los Angeles", + "download_urls": "/opinions/documents/B318346.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B247117", + "docket_numbers": "B318346", "case_name_shorts": "" }, { - "case_dates": "2013-05-28", - "case_names": "People v. Hurtado", - "download_urls": "/opinions/documents/B246330.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B246330", - "case_name_shorts": "Hurtado" - }, - { - "case_dates": "2013-05-28", - "case_names": "NFL v. Fireman's Fund", - "download_urls": "/opinions/documents/B245619.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B245619", - "case_name_shorts": "NFL" - }, - { - "case_dates": "2013-05-24", - "case_names": "Winn v. Pioneer Medical Group, Inc.", - "download_urls": "/opinions/documents/B237712.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B237712", - "case_name_shorts": "Winn" - }, - { - "case_dates": "2013-05-23", - "case_names": "Heyen v. Safeway", - "download_urls": "/opinions/documents/B237418.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B237418", - "case_name_shorts": "Heyen" - }, - { - "case_dates": "2013-05-22", - "case_names": "Rybicki v. Carlson", - "download_urls": "/opinions/documents/B240211.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B240211", - "case_name_shorts": "Rybicki" - }, - { - "case_dates": "2013-05-20", - "case_names": "People v. Fernandez", - "download_urls": "/opinions/documents/B236009.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B236009", - "case_name_shorts": "Fernandez" - }, - { - "case_dates": "2013-05-16", - "case_names": "People v. Lopez", - "download_urls": "/opinions/documents/B241532.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B241532", - "case_name_shorts": "Lopez" - }, - { - "case_dates": "2013-05-16", - "case_names": "Greene v. Bank of America", - "download_urls": "/opinions/documents/B243638.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B243638", - "case_name_shorts": "Greene" - }, - { - "case_dates": "2013-05-15", - "case_names": "People v. Wilson", - "download_urls": "/opinions/documents/B234519.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B234519", - "case_name_shorts": "Wilson" - }, - { - "case_dates": "2013-05-15", - "case_names": "Pedeferri v. Seidner Enterprises", - "download_urls": "/opinions/documents/B233542.PDF", + "case_dates": "2024-03-07", + "case_names": "Boermeester v. Carry", + "download_urls": "/opinions/documents/B290675A.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B233542", - "case_name_shorts": "Pedeferri" + "docket_numbers": "B290675A", + "case_name_shorts": "Boermeester" }, { - "case_dates": "2013-05-15", - "case_names": "Nevis Homes v. CW Roofing", - "download_urls": "/opinions/documents/B237907.PDF", + "case_dates": "2024-03-06", + "case_names": "VFLA Eventco v. William Morris Endeavor Entertainment", + "download_urls": "/opinions/documents/B323977.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B237907", + "docket_numbers": "B323977", "case_name_shorts": "" }, { - "case_dates": "2013-05-14", - "case_names": "People v. Ermi", - "download_urls": "/opinions/documents/B241397.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B241397", - "case_name_shorts": "Ermi" - }, - { - "case_dates": "2013-05-14", - "case_names": "McCoy v. Pacific Maritime Asso.", - "download_urls": "/opinions/documents/B210953.PDF", + "case_dates": "2024-03-05", + "case_names": "In re F.V.", + "download_urls": "/opinions/documents/B329192.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B210953", - "case_name_shorts": "McCoy" + "docket_numbers": "B329192", + "case_name_shorts": "In re F.V." }, { - "case_dates": "2013-05-14", - "case_names": "Khavarian Enterprises v. Commline", - "download_urls": "/opinions/documents/B243467.PDF", + "case_dates": "2024-03-01", + "case_names": "Colyear v. Rolling Hills Community Assn. of Rancho Palos Verdes", + "download_urls": "/opinions/documents/B308382.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B243467", - "case_name_shorts": "Commline" + "docket_numbers": "B308382", + "case_name_shorts": "Colyear" }, { - "case_dates": "2013-05-13", - "case_names": "Corenbaum v. Lampkin", - "download_urls": "/opinions/documents/B236227M.PDF", + "case_dates": "2024-02-28", + "case_names": "People v. Hollywood", + "download_urls": "/opinions/documents/B323018.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B236227M", - "case_name_shorts": "Corenbaum" - }, - { - "case_dates": "2013-05-09", - "case_names": "L.A. County Dept. Children etc. v. Super. Ct.", - "download_urls": "/opinions/documents/B247519N.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B247519N", + "docket_numbers": "B323018", "case_name_shorts": "" }, { - "case_dates": "2013-05-08", - "case_names": "Elijah W. v. Super. Ct.", - "download_urls": "/opinions/documents/B241011A.PDF", + "case_dates": "2024-02-28", + "case_names": "Geffner v. Board of Psychology", + "download_urls": "/opinions/documents/B322991.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B241011A", - "case_name_shorts": "" + "docket_numbers": "B322991", + "case_name_shorts": "Geffner" }, { - "case_dates": "2013-05-07", - "case_names": "People v. Mercado", - "download_urls": "/opinions/documents/B223451A.PDF", + "case_dates": "2024-02-27", + "case_names": "Sundholm v. Hollywood Foreign Press Assn.", + "download_urls": "/opinions/documents/B324842.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B223451A", - "case_name_shorts": "Mercado" + "docket_numbers": "B324842", + "case_name_shorts": "Sundholm" }, { - "case_dates": "2013-05-07", - "case_names": "Las Canoas v. Kramer", - "download_urls": "/opinions/documents/B238729.PDF", + "case_dates": "2024-02-27", + "case_names": "Hohenshelt v. Super. Ct.", + "download_urls": "/opinions/documents/B327524.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B238729", - "case_name_shorts": "Kramer" + "docket_numbers": "B327524", + "case_name_shorts": "Hohenshelt" }, { - "case_dates": "2013-05-07", - "case_names": "Cal. State Teach. Ret. System v. Cty. of LA", - "download_urls": "/opinions/documents/B225245.PDF", + "case_dates": "2024-02-27", + "case_names": "Ayers v. FCA US, LLC", + "download_urls": "/opinions/documents/B315884.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B225245", - "case_name_shorts": "" + "docket_numbers": "B315884", + "case_name_shorts": "Ayers" }, { - "case_dates": "2013-05-06", - "case_names": "Stoltenberg v. Ampton Investments", - "download_urls": "/opinions/documents/B235731N.PDF", + "case_dates": "2024-02-22", + "case_names": "Shalghoun v. North Los Angeles County Regional Center, Inc.", + "download_urls": "/opinions/documents/B323186M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B235731N", - "case_name_shorts": "Stoltenberg" + "docket_numbers": "B323186M", + "case_name_shorts": "Shalghoun" }, { - "case_dates": "2013-05-06", - "case_names": "Shirey v. L.A. Cty. Civil Service etc.", - "download_urls": "/opinions/documents/B238355.PDF", + "case_dates": "2024-02-22", + "case_names": "Riddick v. City of Malibu", + "download_urls": "/opinions/documents/B323731M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B238355", - "case_name_shorts": "Shirey" + "docket_numbers": "B323731M", + "case_name_shorts": "Riddick" }, { - "case_dates": "2013-05-02", - "case_names": "Sargon Enterprises v. Univ. So. Cal.", - "download_urls": "/opinions/documents/B202789.PDF", + "case_dates": "2024-02-22", + "case_names": "People v. Hall", + "download_urls": "/opinions/documents/B326944.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B202789", - "case_name_shorts": "" + "docket_numbers": "B326944", + "case_name_shorts": "Hall" }, { - "case_dates": "2013-05-02", - "case_names": "Choate v. Celite Corp.", - "download_urls": "/opinions/documents/B239160.PDF", + "case_dates": "2024-02-22", + "case_names": "People v. Franco", + "download_urls": "/opinions/documents/B324852M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B239160", - "case_name_shorts": "Choate" + "docket_numbers": "B324852M", + "case_name_shorts": "Franco" }, { - "case_dates": "2013-05-01", - "case_names": "Multani v. Witkin & Neal", - "download_urls": "/opinions/documents/B237295.PDF", + "case_dates": "2024-02-22", + "case_names": "City of Norwalk v. City of Cerritos", + "download_urls": "/opinions/documents/B327413M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B237295", - "case_name_shorts": "Multani" - }, - { - "case_dates": "2013-05-01", - "case_names": "Mt. Hawley Ins. Co. v. Lopez", - "download_urls": "/opinions/documents/B234082.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B234082", - "case_name_shorts": "Lopez" - }, - { - "case_dates": "2013-04-30", - "case_names": "People v. Super. Ct.", - "download_urls": "/opinions/documents/B246632.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B246632", + "docket_numbers": "B327413M", "case_name_shorts": "" }, { - "case_dates": "2013-04-30", - "case_names": "Melendrez v. Super. Ct.", - "download_urls": "/opinions/documents/B243320.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B243320", - "case_name_shorts": "Melendrez" - }, - { - "case_dates": "2013-04-30", - "case_names": "Duchrow v. Forrest", - "download_urls": "/opinions/documents/B233736.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B233736", - "case_name_shorts": "Duchrow" - }, - { - "case_dates": "2013-04-30", - "case_names": "Corenbaum v. Lampkin", - "download_urls": "/opinions/documents/B236227.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B236227", - "case_name_shorts": "Corenbaum" - }, - { - "case_dates": "2013-04-30", - "case_names": "Carter v. Lampkin", - "download_urls": "/opinions/documents/B237871.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B237871", - "case_name_shorts": "Carter" - }, - { - "case_dates": "2013-04-29", - "case_names": "In re K.R.", - "download_urls": "/opinions/documents/B247519M.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B247519M", - "case_name_shorts": "In re K.R." - }, - { - "case_dates": "2013-04-26", - "case_names": "Serpa v. CA Surety Investigations", - "download_urls": "/opinions/documents/B237363M.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B237363M", - "case_name_shorts": "Serpa" - }, - { - "case_dates": "2013-04-25", - "case_names": "Montenegro v. City of Bradbury", - "download_urls": "/opinions/documents/B242953.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B242953", - "case_name_shorts": "Montenegro" - }, - { - "case_dates": "2013-04-25", - "case_names": "Khani v. Ford Motor Company", - "download_urls": "/opinions/documents/B239611.PDF", + "case_dates": "2024-02-22", + "case_names": "City of Lancaster v. Netflix, Inc.", + "download_urls": "/opinions/documents/B321481.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B239611", - "case_name_shorts": "Khani" + "docket_numbers": "B321481", + "case_name_shorts": "" }, { - "case_dates": "2013-04-25", - "case_names": "In re K.R.", - "download_urls": "/opinions/documents/B247519.PDF", + "case_dates": "2024-02-21", + "case_names": "Baker v. Pacific Oaks Education Corp.", + "download_urls": "/opinions/documents/B320814M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B247519", - "case_name_shorts": "In re K.R." + "docket_numbers": "B320814M", + "case_name_shorts": "Baker" }, { - "case_dates": "2013-04-25", - "case_names": "Breceda v. Super. Ct.", - "download_urls": "/opinions/documents/B244574.PDF", + "case_dates": "2024-02-16", + "case_names": "People v. Yeager-Reiman", + "download_urls": "/opinions/documents/B331175.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B244574", - "case_name_shorts": "Breceda" + "docket_numbers": "B331175", + "case_name_shorts": "Yeager-Reiman" }, { - "case_dates": "2013-04-24", - "case_names": "Brown v. Mid-Century Ins.", - "download_urls": "/opinions/documents/B238357.PDF", + "case_dates": "2024-02-16", + "case_names": "People v. Kim", + "download_urls": "/opinions/documents/B327473.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B238357", - "case_name_shorts": "Brown" + "docket_numbers": "B327473", + "case_name_shorts": "Kim" }, { - "case_dates": "2013-04-22", - "case_names": "Mendoza v. Hamzeh", - "download_urls": "/opinions/documents/B239245.PDF", + "case_dates": "2024-02-14", + "case_names": "People v. Paul", + "download_urls": "/opinions/documents/B320488.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B239245", - "case_name_shorts": "Mendoza" + "docket_numbers": "B320488", + "case_name_shorts": "Paul" }, { - "case_dates": "2013-04-19", - "case_names": "Serpa v. Cal. Surety Investigations", - "download_urls": "/opinions/documents/B237363.PDF", + "case_dates": "2024-02-09", + "case_names": "Miyahara v. Wells Fargo Bank, N.A.", + "download_urls": "/opinions/documents/B317726.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B237363", - "case_name_shorts": "Serpa" + "docket_numbers": "B317726", + "case_name_shorts": "Miyahara" }, { - "case_dates": "2013-04-19", - "case_names": "People v. Barba", - "download_urls": "/opinions/documents/B185940A.PDF", + "case_dates": "2024-02-09", + "case_names": "Gardena Hospital, L.People v. Baass", + "download_urls": "/opinions/documents/B316529.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B185940A", - "case_name_shorts": "Barba" + "docket_numbers": "B316529", + "case_name_shorts": "Baass" }, { - "case_dates": "2013-04-18", - "case_names": "People v. McCall", - "download_urls": "/opinions/documents/B236269N.PDF", + "case_dates": "2024-02-09", + "case_names": "Fraser v. Farvid", + "download_urls": "/opinions/documents/B324831.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B236269N", - "case_name_shorts": "McCall" + "docket_numbers": "B324831", + "case_name_shorts": "Fraser" }, { - "case_dates": "2013-04-18", - "case_names": "Hyundai Securities Co. v. Lee", - "download_urls": "/opinions/documents/B242002.PDF", + "case_dates": "2024-02-08", + "case_names": "Jackson v. Bd. of Civil Service Comrs. of the City of Los Angeles", + "download_urls": "/opinions/documents/B328414.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B242002", + "docket_numbers": "B328414", "case_name_shorts": "" }, { - "case_dates": "2013-04-18", - "case_names": "Hernandez v. Amcord, Inc.", - "download_urls": "/opinions/documents/B238408.PDF", + "case_dates": "2024-02-08", + "case_names": "In re Lilianna C.", + "download_urls": "/opinions/documents/B324755.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B238408", - "case_name_shorts": "Hernandez" - }, - { - "case_dates": "2013-04-17", - "case_names": "Travelers Property etc. v. Super. Ct..", - "download_urls": "/opinions/documents/B243650.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B243650", + "docket_numbers": "B324755", "case_name_shorts": "" }, { - "case_dates": "2013-04-17", - "case_names": "People v. Pellecer", - "download_urls": "/opinions/documents/B238949.PDF", + "case_dates": "2024-02-01", + "case_names": "Riddick v. City of Malibu", + "download_urls": "/opinions/documents/B323731.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B238949", - "case_name_shorts": "Pellecer" + "docket_numbers": "B323731", + "case_name_shorts": "Riddick" }, { - "case_dates": "2013-04-17", - "case_names": "Maureen K. v. Tuschka", - "download_urls": "/opinions/documents/B236150.PDF", + "case_dates": "2024-02-01", + "case_names": "City of Norwalk v. City of Cerritos", + "download_urls": "/opinions/documents/B327413.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B236150", - "case_name_shorts": "Tuschka" - }, - { - "case_dates": "2013-04-16", - "case_names": "Sabey v. City of Pomona", - "download_urls": "/opinions/documents/B239916.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B239916", - "case_name_shorts": "Sabey" - }, - { - "case_dates": "2013-04-16", - "case_names": "Hamilton Court v. East Olympic", - "download_urls": "/opinions/documents/B240052.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B240052", + "docket_numbers": "B327413", "case_name_shorts": "" }, { - "case_dates": "2013-04-15", - "case_names": "People v. Vallejo", - "download_urls": "/opinions/documents/B232609M.PDF", + "case_dates": "2024-01-30", + "case_names": "In re R.M.", + "download_urls": "/opinions/documents/B327716.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B232609M", - "case_name_shorts": "Vallejo" + "docket_numbers": "B327716", + "case_name_shorts": "In re R.M." }, { - "case_dates": "2013-04-15", - "case_names": "Barsegian v. Kessler & Kessler", - "download_urls": "/opinions/documents/B237044.PDF", + "case_dates": "2024-01-30", + "case_names": "In re Duong", + "download_urls": "/opinions/documents/B325525.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B237044", - "case_name_shorts": "Barsegian" + "docket_numbers": "B325525", + "case_name_shorts": "In re Duong" }, { - "case_dates": "2013-04-10", - "case_names": "Webb v. Special Electric Co.", - "download_urls": "/opinions/documents/B233189M.PDF", + "case_dates": "2024-01-29", + "case_names": "Kader v. Southern Cal. Medical Center, Inc.", + "download_urls": "/opinions/documents/B326830.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B233189M", - "case_name_shorts": "Webb" + "docket_numbers": "B326830", + "case_name_shorts": "Kader" }, { - "case_dates": "2013-04-10", - "case_names": "Even Zohar Constr. v. Bellaire Townhouses", - "download_urls": "/opinions/documents/B239928.PDF", + "case_dates": "2024-01-25", + "case_names": "Shalghoun v. North Los Angeles County Regional Center, Inc.", + "download_urls": "/opinions/documents/B323186.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B239928", - "case_name_shorts": "" + "docket_numbers": "B323186", + "case_name_shorts": "Shalghoun" }, { - "case_dates": "2013-04-09", - "case_names": "Spriesterbach v. Holland", - "download_urls": "/opinions/documents/B240348.PDF", + "case_dates": "2024-01-25", + "case_names": "People v. Franco", + "download_urls": "/opinions/documents/B324852.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B240348", - "case_name_shorts": "Spriesterbach" + "docket_numbers": "B324852", + "case_name_shorts": "Franco" }, { - "case_dates": "2013-04-09", - "case_names": "People v. Vega", - "download_urls": "/opinions/documents/B237354O.PDF", + "case_dates": "2024-01-25", + "case_names": "Chavez v. Super. Ct.", + "download_urls": "/opinions/documents/B332361.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B237354O", - "case_name_shorts": "Vega" + "docket_numbers": "B332361", + "case_name_shorts": "Chavez" }, { - "case_dates": "2013-04-08", - "case_names": "Kaiser Cement etc. v. Ins. Co. etc. of Pa.", - "download_urls": "/opinions/documents/B222310A.PDF", + "case_dates": "2024-01-25", + "case_names": "Baker v. Pacific Oaks Education Corp.", + "download_urls": "/opinions/documents/B320814.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B222310A", - "case_name_shorts": "" + "docket_numbers": "B320814", + "case_name_shorts": "Baker" }, { - "case_dates": "2013-04-05", - "case_names": "Spinner v. American Broadcasting", - "download_urls": "/opinions/documents/B239229.PDF", + "case_dates": "2024-01-22", + "case_names": "People v. Medrano", + "download_urls": "/opinions/documents/B324567A.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B239229", - "case_name_shorts": "Spinner" + "docket_numbers": "B324567A", + "case_name_shorts": "Medrano" }, { - "case_dates": "2013-04-04", - "case_names": "Stoltenberg v. Ampton Investments", - "download_urls": "/opinions/documents/B235731.PDF", + "case_dates": "2024-01-18", + "case_names": "Ventura County Employees' etc. v. Criminal Justice Attys. etc.", + "download_urls": "/opinions/documents/B325277.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B235731", - "case_name_shorts": "Stoltenberg" + "docket_numbers": "B325277", + "case_name_shorts": "" }, { - "case_dates": "2013-04-04", - "case_names": "Akopyan v. Wells Fargo", - "download_urls": "/opinions/documents/B236455.PDF", + "case_dates": "2024-01-18", + "case_names": "Campbell v. FPI Management, Inc.", + "download_urls": "/opinions/documents/B322619.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B236455", - "case_name_shorts": "Akopyan" + "docket_numbers": "B322619", + "case_name_shorts": "Campbell" }, { - "case_dates": "2013-04-03", - "case_names": "People v. Vega", - "download_urls": "/opinions/documents/B237354N.PDF", + "case_dates": "2024-01-17", + "case_names": "Olson v. Saville", + "download_urls": "/opinions/documents/B324465.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B237354N", - "case_name_shorts": "Vega" + "docket_numbers": "B324465", + "case_name_shorts": "Olson" }, { - "case_dates": "2013-04-03", - "case_names": "People v. Quiroz", - "download_urls": "/opinions/documents/B229432.PDF", + "case_dates": "2024-01-17", + "case_names": "Guerrero v. City of L.A.", + "download_urls": "/opinions/documents/B326033.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B229432", - "case_name_shorts": "Quiroz" + "docket_numbers": "B326033", + "case_name_shorts": "Guerrero" }, { - "case_dates": "2013-04-03", - "case_names": "Hagman v. Meher Mount", - "download_urls": "/opinions/documents/B239014.PDF", + "case_dates": "2024-01-17", + "case_names": "Dragones v. Calkins", + "download_urls": "/opinions/documents/B329659.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B239014", - "case_name_shorts": "Hagman" + "docket_numbers": "B329659", + "case_name_shorts": "Dragones" }, { - "case_dates": "2013-04-02", - "case_names": "Gonzalez v. Downtown LA Motors", - "download_urls": "/opinions/documents/B235292.PDF", + "case_dates": "2024-01-16", + "case_names": "L.C. v. Super Ct.", + "download_urls": "/opinions/documents/B331041.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B235292", - "case_name_shorts": "Gonzalez" + "docket_numbers": "B331041", + "case_name_shorts": "L.C." }, { - "case_dates": "2013-03-29", - "case_names": "Harris v. Bingham McCutchen", - "download_urls": "/opinions/documents/B240522.PDF", + "case_dates": "2024-01-12", + "case_names": "People v. Frias", + "download_urls": "/opinions/documents/B322762A.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B240522", - "case_name_shorts": "Harris" + "docket_numbers": "B322762A", + "case_name_shorts": "Frias" }, { - "case_dates": "2013-03-29", - "case_names": "Conejo Wellness etc. v. Agoura Hills", - "download_urls": "/opinions/documents/B237718.PDF", + "case_dates": "2024-01-12", + "case_names": "In re P.H., Jr.", + "download_urls": "/opinions/documents/B321592.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B237718", + "docket_numbers": "B321592", "case_name_shorts": "" }, { - "case_dates": "2013-03-28", - "case_names": "People v. Eroshevich", - "download_urls": "/opinions/documents/B231411A.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B231411A", - "case_name_shorts": "Eroshevich" - }, - { - "case_dates": "2013-03-28", - "case_names": "Hatai v. Dept. of Transportation", - "download_urls": "/opinions/documents/B236757.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B236757", - "case_name_shorts": "Hatai" - }, - { - "case_dates": "2013-03-27", - "case_names": "Shoemaker v. Harris", - "download_urls": "/opinions/documents/B237986.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B237986", - "case_name_shorts": "Shoemaker" - }, - { - "case_dates": "2013-03-25", - "case_names": "Bridgeforth v. Super. Ct.", - "download_urls": "/opinions/documents/B244661.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "2nd App. Dist.", - "docket_numbers": "B244661", - "case_name_shorts": "Bridgeforth" - }, - { - "case_dates": "2013-03-22", - "case_names": "People v. Mecano", - "download_urls": "/opinions/documents/B233401.PDF", + "case_dates": "2024-01-02", + "case_names": "Estate of Flores", + "download_urls": "/opinions/documents/B320383.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "2nd App. Dist.", - "docket_numbers": "B233401", - "case_name_shorts": "Mecano" + "docket_numbers": "B320383", + "case_name_shorts": "Estate of Flores" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_2nd_example.html b/tests/examples/opinions/united_states/calctapp_2nd_example.html index ae3eef05a..f83eba22e 100644 --- a/tests/examples/opinions/united_states/calctapp_2nd_example.html +++ b/tests/examples/opinions/united_states/calctapp_2nd_example.html @@ -1,272 +1,861 @@ - + + + + + + California Courts - Published Opinions + + + - - -

    -
    -
    -

    Published Opinions

    -
    -
    + + +
    +
    +
    +
    +
    +
    -
    -

    Published Opinions of the appellate courts are opinions certified for publication or ordered published and may be cited or relied on by courts and parties.

    +

    Published or "citable" opinions of the appellate courts are opinions ordered published in the Official + Reports, and may be cited or relied on by other courts and parties.

    + +

    +

  • Official Reports Opinions + (Searchable 1850-Present) are the searchable, citable, published opinions that reflect + post filing corrections. This no-fee service is provided by LexisNexis.
  • +

    -

  • Official Reports Opinions (Searchable 1850-Present) are the searchable, citable, published opinions that reflect postfiling corrections. This no-fee service is provided by LexisNexis.
  • +

    +

  • Slip Opinions are as-filed versions of opinions certified for publication or ordered + published; they do not reflect enhancement, editing, and correction for the Official Reports. Slip + opinions from the last 120 days are posted together on this page as public information about actions taken + by the courts.
  • +

    -

  • Slip Opinions are as-filed versions of opinions. Slip opinions certified for publication do not reflect enhancement, editing and correction for the Official Reports.
  • +

    +

  • Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court + of Appeal slip opinions are posted throughout the day as soon after filing as possible.
  • +

    -

    Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court of Appeal slip opinions are posted throughout the day as soon after filing as possible.

    +

    +

  • Archive of Web Pages Cited in Opinions Issued by the Supreme Court of + California
  • +

    -

    Use the list below to select the slip opinions certified for publication, or ordered published, that you want to view and click on the "view" button to activate your selection.

    +

    Use the pull-down menu below to select the slip opinions that you wish to view. After 120 days, these opinions + remain available via our Case Information + Search tool.

    +

    Please note that copies of published opinions may also be available from or searchable through sources other than + this website.

    +
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date Posted
    Docket #/
    File Format
    Description

    +

    Apr 24, 2024B327821
    [PDF]
    [DOC]
    Vines v. O'Reilly Auto Enterprises 4/24/24 CA2/7  Case Details
    Apr 23, 2024B323640
    [PDF]
    [DOC]
    P. v. Cunningham 4/23/24 CA2/6  Case Details
    Apr 23, 2024B328425
    [PDF]
    [DOC]
    Mondragon v. Sunrun Inc. 4/23/24 CA2/7  Case Details
    Apr 23, 2024B316971
    [PDF]
    [DOC]
    Norman v. Ross 4/23/24 CA2/4  Case Details   Related + Case: B326626 +
    Apr 19, 2024B317061
    [PDF]
    [DOC]
    Dubac v. Itkoff 4/19/24 CA2/8  Case Details
    Apr 19, 2024B314426
    [PDF]
    [DOC]
    Sam v. Kwan et al. 4/19/24 CA2/8  Case Details   Related + Case: B315773 +
    Apr 18, 2024B326759
    [PDF]
    [DOC]
    Balderas v. Fresh Start Harvesting, Inc. 4/18/24 CA2/6  Case Details
    Apr 18, 2024B324368
    [PDF]
    [DOC]
    Lugo v. Pixior, LLC, et al. 4/18/24 CA2/8  Case Details
    Apr 17, 2024B323735
    [PDF]
    [DOC]
    Kuigoua v. Dept. of Veteran Affairs 4/17/24 CA2/8  Case Details
    Apr 09, 2024B324576
    [PDF]
    [DOC]
    P. v. Estrada 4/9/24 CA2/8  Case Details
    Apr 05, 2024B330847
    [PDF]
    [DOC]
    State of California v. Super. Ct. 4/5/24 CA2/1  Case Details
    Apr 05, 2024B325200
    [PDF]
    [DOC]
    P. v. Uriostegui 4/5/24 CA2/6  Case Details
    Apr 03, 2024B320603
    [PDF]
    [DOC]
    Howard v. Accor Management US 3/13/24 CA2/8  Case Details
    Apr 03, 2024B329219
    [PDF]
    [DOC]
    Vazquez v. SaniSure 4/3/24 CA2/6  Case Details
    Apr 02, 2024B330387
    [PDF]
    [DOC]
    Lew-Williams v. Petrosian 4/2/24 CA2/7  Case Details
    Mar 29, 2024B327668
    [PDF]
    [DOC]
    Gazal v. Echeverry 3/29/24 CA2/8  Case Details
    Mar 29, 2024B321875
    [PDF]
    [DOC]
    AIDS Healthcare Foundation v. Bonta 3/28/24 CA2/2  Case Details
    Mar 28, 2024B330106
    [PDF]
    [DOC]
    In re S.G. 3/28/24 CA2/3  Case Details
    Mar 28, 2024B323356
    [PDF]
    [DOC]
    Medallion Film LLC et al. v. Loeb & Loeb LLP 3/28/24 CA2/8  Case Details
    Mar 28, 2024B309295
    [PDF]
    [DOC]
    P. v. Freetown Holdings Co. et al. 3/28/24 CA2/8  Case Details
    Mar 25, 2024B322697
    [PDF]
    [DOC]
    Gramajo v. Joe's Pizza on Sunset, Inc. 3/25/24 CA2/8  Case Details   Related + Case: B323024 +
    Mar 25, 2024B323430
    [PDF]
    [DOC]
    Weeks v. Interactive Life Forms, LLC 3/25/24 CA2/1  Case Details
    Mar 25, 2024B322561
    [PDF]
    [DOC]
    P. v. Hill 3/25/24 CA2/2  Case Details
    Mar 19, 2024B316313
    [PDF]
    [DOC]
    Asiryan v. Med. Staff of Glendale Adventist Med. Center 2/29/24 + CA2/1  Case Details   Related + Case: B317728 +
    Mar 18, 2024B326320
    [PDF]
    [DOC]
    In re Ca.M. 3/18/24 CA2/5  Case Details
    Mar 18, 2024B333788
    [PDF]
    [DOC]
    F.K. v. Superior Court 3/18/24 CA2/6  Case Details
    Mar 15, 2024B328954
    [PDF]
    [DOC]
    P. v. Jackson 3/15/24 CA2/8  Case Details
    Mar 12, 2024B317938M
    [PDF]
    [DOC]
    P. v. Felix 3/12/24 CA2/8  Case Details
    Mar 08, 2024B290675N
    [PDF]
    [DOC]
    Boermeester v. Carry 3/8/24 CA2/8  Case Details
    Mar 07, 2024B318346
    [PDF]
    [DOC]
    Fix the City, Inc. v. City of Los Angeles 2/8/24 CA2/5  Case Details
    Mar 07, 2024B290675A
    [PDF]
    [DOC]
    Boermeester v. Carry 3/7/24 CA2/8  Case Details
    Mar 07, 2024B317938
    [PDF]
    [DOC]
    P. v. Felix 3/7/24 CA2/8  Case Details
    Mar 07, 2024B320488M
    [PDF]
    [DOC]
    P. v. Paul 3/7/24 CA2/5  Case Details
    Mar 06, 2024B323977
    [PDF]
    [DOC]
    VFLA Eventco v. William Morris Endeavor Entertainment 3/6/24 CA2/8  + Case Details
    Mar 05, 2024B329192
    [PDF]
    [DOC]
    In re F.V. 2/8/24 CA2/1  Case Details
    Mar 01, 2024B308382
    [PDF]
    [DOC]
    Colyear v. Rolling Hills Community Assn. of Rancho Palos Verdes 3/1/24 + CA2/4  Case Details
    Feb 28, 2024B322991
    [PDF]
    [DOC]
    Geffner v. Board of Psychology 2/28/24 CA2/3  Case Details
    Feb 28, 2024B323018
    [PDF]
    [DOC]
    P. v. Hollywood 2/28/24 CA2/6   Case Details
    Feb 27, 2024B327524
    [PDF]
    [DOC]
    Hohenshelt v. Super. Ct. 2/27/24 CA2/8  Case Details
    Feb 27, 2024B324842
    [PDF]
    [DOC]
    Sundholm v. Hollywood Foreign Press Assn. 2/27/24 CA2/7  Case Details
    Feb 27, 2024B315884
    [PDF]
    [DOC]
    Ayers v. FCA US, LLC 2/27/24 CA2/8  Case Details
    Feb 22, 2024B323186M
    [PDF]
    [DOC]
    Shalghoun v. North Los Angeles County Regional Center, Inc. 2/22/24 + CA2/2  Case Details
    Feb 22, 2024B323731M
    [PDF]
    [DOC]
    Riddick v. City of Malibu 2/22/24 CA2/5  Case Details
    Feb 22, 2024B327413M
    [PDF]
    [DOC]
    City of Norwalk v. City of Cerritos 2/22/24 CA2/2  Case Details
    Feb 22, 2024B324852M
    [PDF]
    [DOC]
    P. v. Franco 2/22/24 CA2/2  Case Details
    Feb 22, 2024B321481
    [PDF]
    [DOC]
    City of Lancaster v. Netflix, Inc. 2/22/24 CA2/3  Case Details
    Feb 22, 2024B326944
    [PDF]
    [DOC]
    P. v. Hall 2/22/24 CA2/1  Case Details
    Feb 21, 2024B320814M
    [PDF]
    [DOC]
    Baker v. Pacific Oaks Education Corp. 2/21/24 CA2/3  Case Details
    Feb 16, 2024B331175
    [PDF]
    [DOC]
    P. v. Yeager-Reiman 2/16/24 CA2/5  Case Details
    Feb 16, 2024B327473
    [PDF]
    [DOC]
    P. v. Kim 2/16/24 CA2/5  Case Details
    Feb 14, 2024B320488
    [PDF]
    [DOC]
    P. v. Paul 2/14/24 CA2/5  Case Details
    Feb 09, 2024B316529
    [PDF]
    [DOC]
    Gardena Hospital, L.P. v. Baass 2/9/24 CA2/8  Case Details
    Feb 09, 2024B317726
    [PDF]
    [DOC]
    Miyahara v. Wells Fargo Bank, N.A. 2/9/24 CA2/7  Case Details
    Feb 09, 2024B324831
    [PDF]
    [DOC]
    Fraser v. Farvid 2/9/24 CA2/8  Case Details
    Feb 08, 2024B324755
    [PDF]
    [DOC]
    In re Lilianna C. 2/8/24 CA2/2  Case Details
    Feb 08, 2024B328414
    [PDF]
    [DOC]
    Jackson v. Bd. of Civil Service Comrs. of the City of Los Angeles 2/8/24 + CA2/7  Case Details
    Feb 01, 2024B323731
    [PDF]
    [DOC]
    Riddick v City of Malibu 2/1/24 CA2/5  Case Details
    Feb 01, 2024B327413
    [PDF]
    [DOC]
    City of Norwalk v. City of Cerritos 2/1/24 CA2/2  Case Details
    Jan 30, 2024B327716
    [PDF]
    [DOC]
    In re R.M. 1/5/24 CA2/3  Case Details
    Jan 30, 2024B325525
    [PDF]
    [DOC]
    In re Duong 1/29/24 CA2/1  Case Details
    Jan 29, 2024B326830
    [PDF]
    [DOC]
    Kader v. Southern Cal. Medical Center, Inc. 1/29/24 CA2/5  Case Details
    Jan 25, 2024B320814
    [PDF]
    [DOC]
    Baker v. Pacific Oaks Education Corp. 1/25/24 CA2/3  Case Details
    Jan 25, 2024B324852
    [PDF]
    [DOC]
    P. v. Franco 1/25/24 CA2/2  Case Details
    Jan 25, 2024B332361
    [PDF]
    [DOC]
    Chavez v. Super. Ct. 1/25/24 CA2/2  Case Details
    Jan 25, 2024B323186
    [PDF]
    [DOC]
    Shalghoun v. North Los Angeles County Regional Center, Inc. 1/25/24 + CA2/2  Case Details
    Jan 22, 2024B324567A
    [PDF]
    [DOC]
    P. v. Medrano 1/22/24 CA2/6  Case Details
    Jan 18, 2024B322619
    [PDF]
    [DOC]
    Campbell v. FPI Management, Inc. 1/18/24 CA2/7  Case Details
    Jan 18, 2024B325277
    [PDF]
    [DOC]
    Ventura County Employees' etc. v. Criminal Justice Attys. etc. 1/4/24 + CA2/6  Case Details
    Jan 17, 2024B326033
    [PDF]
    [DOC]
    Guerrero v. City of L.A. 1/17/24 CA2/5  Case Details   Related + Case: B327032 +
    Jan 17, 2024B324465
    [PDF]
    [DOC]
    Olson v. Saville 1/17/24 CA2/6  Case Details
    Jan 17, 2024B329659
    [PDF]
    [DOC]
    Dragones v. Calkins 1/17/23 CA2/7  Case Details
    Jan 16, 2024B331041
    [PDF]
    [DOC]
    L.C. v. Super Ct. 1/16/24 CA2/7  Case Details
    Jan 12, 2024B322762A
    [PDF]
    [DOC]
    P. v. Frias 1/12/24 CA2/7  Case Details
    Jan 12, 2024B321592
    [PDF]
    [DOC]
    In re P.H., Jr. 1/12/24 CA2/5  Case Details
    Jan 02, 2024B320383
    [PDF]
    [DOC]
    Estate of Flores 1/2/24 CA2/3  Case Details
    +

    -

    -


    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Date Posted
    Docket #/
    File Format
    Description

    Jul 18 2013B242800
    [PDF] [DOC]

    In re H.K. 6/26/13 CA2/3 -  Case Details
    Jul 16 2013B237804
    [PDF] [DOC]

    Malin v. Singer 7/16/13 CA2/4 -  Case Details
    Jul 11 2013B239730
    [PDF] [DOC]

    Shearin v. Brown 7/11/13 CA2/5 -  Case Details
    Jul 11 2013B239855
    [PDF] [DOC]

    Beaumont-Jacques v. Farmers Group 6/12/13 CA2/3 -  Case Details
    Jul 11 2013B242095
    [PDF] [DOC]

    Toho-Towa v. Morgan Creek Productions 7/11/13 CA2/5 -  Case Details
    Jul 09 2013B236875
    [PDF] [DOC]

    Boeken v. Philip Morris 7/9/13 CA2/5 -  Case Details
    Jul 09 2013B236294
    [PDF] [DOC]

    Bender v. Cty. of L.A. 7/9/13 CA2/8 -  Case Details
    Jul 09 2013B245050
    [PDF] [DOC]

    Sanchez v. Hitachi Koki 7/9/13 CA2/4 -  Case Details
    Jul 03 2013B241201
    [PDF] [DOC]

    Enloe v. Kelso 7/3/13 CA2/6 -  Case Details
    Jul 03 2013B240519
    [PDF] [DOC]

    Mendiola v. CPS Security Solutions 7/3/13 CA2/4 -  Case Details
    Jul 03 2013B239304A
    [PDF] [DOC]

    P. v. LaPierre 7/3/13 CA2/6 -  Case Details
    Jul 03 2013B242586
    [PDF] [DOC]

    Torres v. Dept. of Corrections etc. 7/3/13 CA2/6 -  Case Details
    Jul 03 2013B240452
    [PDF] [DOC]

    Roberts v. Packard, Packard & Johnson 7/3/13 CA2/1 -  Case Details
    Jul 02 2013B241049
    [PDF] [DOC]

    Rodriguez v. County of Los Angeles 7/2/13 CA2/2 -  Case Details
    Jun 27 2013B244824
    [PDF] [DOC]

    Ibarra v. Superior Court 6/27/13 CA2/3 -  Case Details
    Jun 27 2013B240597
    [PDF] [DOC]

    DeLuca v. State Fish Co. 6/27/13 CA2/3 -  Case Details
    Jun 27 2013B240358M
    [PDF] [DOC]

    Co. of LA v. Financial Casualty & Surety 6/27/13 CA2/1 -  Case Details
    Jun 26 2013B244326
    [PDF] [DOC]

    In re S.E. 6/26/13 CA2/4 -  Case Details
    Jun 26 2013B243849
    [PDF] [DOC]

    L.A. Unified School Dist. v. Cty. of L.A. 6/26/13 CA2/4 -  Case Details
    Jun 25 2013B240380
    [PDF] [DOC]

    Straley v. Gamble 6/25/13 CA2/2 -  Case Details
    Jun 24 2013B241630
    [PDF] [DOC]

    Leos v. Darden Restaurants 6/4/13 CA2/1 -  Case Details
    Jun 24 2013B243396
    [PDF] [DOC]

    Cann v. Stefanec 6/24/13 CA2/5 -  Case Details
    Jun 24 2013B243010
    [PDF] [DOC]

    P. v. Parker 6/24/13 CA2/6 -  Case Details
    Jun 21 2013B243407
    [PDF] [DOC]

    In re E.T. 5/30/13 CA2/8 -  Case Details
    Jun 21 2013B243107
    [PDF] [DOC]

    In re John M. 5/23/13 CA2/1 -  Case Details
    Jun 20 2013B239508
    [PDF] [DOC]

    P. v. Leath 6/20/13 CA2/4 -  Case Details
    Jun 20 2013B240477
    [PDF] [DOC]

    Flores v. Chevron USA Inc. 6/20/13 CA2/1 -  Case Details
    Jun 19 2013B247196
    [PDF] [DOC]

    Teal v. Super. Ct. 6/19/13 CA2/7 -  Case Details
    Jun 17 2013B237734
    [PDF] [DOC]

    P. v. Sullivan 6/17/13 CA2/8 -  Case Details
    Jun 13 2013B234341
    [PDF] [DOC]

    Liberty Nat. v. Chicago Title Ins. 5/22/13 CA2/8 -  Case Details
    Jun 13 2013B238099
    [PDF] [DOC]

    P. v. Solis 5/15/13 CA2/6 -  Case Details
    Jun 12 2013B233542M
    [PDF] [DOC]

    Pedeferri v. Seidner Enterprises 6/12/13 CA2/1 -  Case Details
    Jun 05 2013B235731O
    [PDF] [DOC]

    Stoltenberg v. Ampton Investments 6/5/13 CA2/5 -  Case Details
    Jun 05 2013B235372
    [PDF] [DOC]

    Nevarrez v. San Marino Skilled Nursing 6/5/13 CA2/4 -  Case Details
    Jun 04 2013B240893
    [PDF] [DOC]

    Freeny v. City of San Buenaventura 6/4/13 CA2/6 -  Case Details
    Jun 04 2013B237257
    [PDF] [DOC]

    Vargas v. SAI Monrovia B 6/4/13 CA2/1 -  Case Details
    Jun 03 2013B244759
    [PDF] [DOC]

    McAllister v. LA Unified School Dist. 6/3/13 CA2/2 -  Case Details
    May 31 2013B238361
    [PDF] [DOC]

    P. v. Christiansen 5/31/13 CA2/1 -  Case Details
    May 31 2013B240358
    [PDF] [DOC]

    Co. of LA v. Financial Casualty & Surety 5/31/13 CA2/1 -  Case Details
    May 30 2013B243392
    [PDF] [DOC]

    In re Nadia G. 5/30/13 CA2/3 -  Case Details
    May 30 2013B234188
    [PDF] [DOC]

    Amer. Way Cellular v. Travelers Property Cas. 5/30/13 CA2/1 -  Case Details
    May 29 2013B234082M
    [PDF] [DOC]

    Mt. Hawley Ins. Co. v. Lopez 5/29/13 CA2/7 -  Case Details
    May 29 2013B247117
    [PDF] [DOC]

    Adir Internat. v. Super. Ct. 5/29/13 CA2/3 -  Case Details
    May 29 2013B237295M
    [PDF] [DOC]

    Multani v. Witkin & Neal 5/29/13 CA2/7 -  Case Details
    May 28 2013B246330
    [PDF] [DOC]

    P. v. Hurtado 5/28/13 CA2/1 -  Case Details
    May 28 2013B245619
    [PDF] [DOC]

    NFL v. Fireman's Fund 5/28/13 CA2/5 -  Case Details
    May 24 2013B237712
    [PDF] [DOC]

    Winn v. Pioneer Medical Group, Inc. 5/24/13 CA2/8 -  Case Details
    May 23 2013B237418
    [PDF] [DOC]

    Heyen v. Safeway 5/23/13 CA2/4 -  Case Details
    May 22 2013B240211
    [PDF] [DOC]

    Rybicki v. Carlson 5/22/13 CA2/4 -  Case Details
    May 20 2013B236009
    [PDF] [DOC]

    P. v. Fernandez 5/20/13 CA2/1 -  Case Details
    May 16 2013B243638
    [PDF] [DOC]

    Greene v. Bank of America 5/16/13 CA2/5 -  Case Details
    May 16 2013B241532
    [PDF] [DOC]

    P. v. Lopez 5/16/13 CA2/6 -  Case Details
    May 15 2013B233542
    [PDF] [DOC]

    Pedeferri v. Seidner Enterprises 5/15/13 CA2/1 -  Case Details
    May 15 2013B237907
    [PDF] [DOC]

    Nevis Homes v. CW Roofing 5/15/13 CA2/1 -  Case Details
    May 15 2013B234519
    [PDF] [DOC]

    P. v. Wilson 5/15/13 CA2/4 -  Case Details
    May 14 2013B210953
    [PDF] [DOC]

    McCoy v. Pacific Maritime Asso. 5/14/13 CA2/4 -  Case Details
    May 14 2013B243467
    [PDF] [DOC]

    Khavarian Enterprises v. Commline 5/14/13 CA2/4 -  Case Details
    May 14 2013B241397
    [PDF] [DOC]

    P. v. Ermi 5/14/13 CA2/6 -  Case Details
    May 13 2013B236227M
    [PDF] [DOC]

    Corenbaum v. Lampkin 5/13/13 CA2/3 -  Case Details
    May 09 2013B247519N
    [PDF] [DOC]

    L.A. County Dept. Children etc. v. Super. Ct. 5/9/13 CA2/5 -  Case Details
    May 08 2013B241011A
    [PDF] [DOC]

    Elijah W. v. Super. Ct. 5/8/13 CA2/7 -  Case Details
    May 07 2013B238729
    [PDF] [DOC]

    Las Canoas v. Kramer 5/7/13 CA2/6 -  Case Details
    May 07 2013B223451A
    [PDF] [DOC]

    P. v. Mercado 5/7/13 CA2/3 -  Case Details
    May 07 2013B225245
    [PDF] [DOC]

    Cal. State Teach. Ret. System v. Cty. of LA 5/7/13 CA2/3 -  Case Details
    May 06 2013B235731N
    [PDF] [DOC]

    Stoltenberg v. Ampton Investments 5/6/13 CA2/5 -  Case Details
    May 06 2013B238355
    [PDF] [DOC]

    Shirey v. L.A. Cty. Civil Service etc. 5/6/13 CA2/8 -  Case Details
    May 02 2013B239160
    [PDF] [DOC]

    Choate v. Celite Corp. 5/2/13 CA2/6 -  Case Details
    May 02 2013B202789
    [PDF] [DOC]

    Sargon Enterprises v. Univ. So. Cal. 5/2/13 CA2/1 -  Case Details
    May 01 2013B237295
    [PDF] [DOC]

    Multani v. Witkin & Neal 5/1/13 CA2/7 -  Case Details
    May 01 2013B234082
    [PDF] [DOC]

    Mt. Hawley Ins. Co. v. Lopez 5/1/13 CA2/7 -  Case Details
    Apr 30 2013B243320
    [PDF] [DOC]

    Melendrez v. Super. Ct. 4/30/13 CA2/3 -  Case Details
    Apr 30 2013B237871
    [PDF] [DOC]

    Carter v. Lampkin 4/30/13 CA2/3 -  Case Details
    Apr 30 2013B236227
    [PDF] [DOC]

    Corenbaum v. Lampkin 4/30/13 CA2/3 -  Case Details
    Apr 30 2013B246632
    [PDF] [DOC]

    P. v. Super. Ct. 4/30/12 CA2/3 -  Case Details
    Apr 30 2013B233736
    [PDF] [DOC]

    Duchrow v. Forrest 4/30/13 CA2/1 -  Case Details
    Apr 29 2013B247519M
    [PDF] [DOC]

    In re K.R. 4/29/13 CA2/5 -  Case Details
    Apr 26 2013B237363M
    [PDF] [DOC]

    Serpa v. CA Surety Investigations 4/26/13 CA2/7 -  Case Details
    Apr 25 2013B239611
    [PDF] [DOC]

    Khani v. Ford Motor Company 4/2/13 CA2/4 -  Case Details
    Apr 25 2013B242953
    [PDF] [DOC]

    Montenegro v. City of Bradbury 4/25/13 CA2/4 -  Case Details
    Apr 25 2013B247519
    [PDF] [DOC]

    In re K.R. 4/25/13 CA2/5 -  Case Details
    Apr 25 2013B244574
    [PDF] [DOC]

    Breceda v. Super. Ct. 4/25/13 CA2/1 -  Case Details
    Apr 24 2013B238357
    [PDF] [DOC]

    Brown v. Mid-Century Ins. 4/2/13 CA2/7 -  Case Details
    Apr 22 2013B239245
    [PDF] [DOC]

    Mendoza v. Hamzeh 4/22/13 CA2/1 -  Case Details
    Apr 19 2013B185940A
    [PDF] [DOC]

    P. v. Barba 4/19/13 CA2/8 -  Case Details
    Apr 19 2013B237363
    [PDF] [DOC]

    Serpa v. Cal. Surety Investigations 3/21/13 CA2/7 -  Case Details
    Apr 18 2013B236269N
    [PDF] [DOC]

    P. v. McCall 4/18/13 CA2/5 -  Case Details
    Apr 18 2013B242002
    [PDF] [DOC]

    Hyundai Securities Co. v. Lee 4/18/13 CA2/5 -  Case Details
    Apr 18 2013B238408
    [PDF] [DOC]

    Hernandez v. Amcord, Inc. 4/18/13 CA2/2 -  Case Details
    Apr 17 2013B243650
    [PDF] [DOC]

    Travelers Property etc. v. Super. Ct.. 4/17/13 CA2/3 -  Case Details
    Apr 17 2013B236150
    [PDF] [DOC]

    Maureen K. v. Tuschka 4/17/13 CA2/6 -  Case Details
    Apr 17 2013B238949
    [PDF] [DOC]

    P. v. Pellecer 4/17/13 CA2/1 -  Case Details
    Apr 16 2013B240052
    [PDF] [DOC]

    Hamilton Court v. East Olympic 4/16/13 CA2/5 -  Case Details
    Apr 16 2013B239916
    [PDF] [DOC]

    Sabey v. City of Pomona 4/16/13 CA2/2 -  Case Details
    Apr 15 2013B237044
    [PDF] [DOC]

    Barsegian v. Kessler & Kessler 4/15/13 CA2/1 -  Case Details
    Apr 15 2013B232609M
    [PDF] [DOC]

    P. v. Vallejo 4/15/13 CA2/6 -  Case Details
    Apr 10 2013B239928
    [PDF] [DOC]

    Even Zohar Constr. v. Bellaire Townhouses 4/10/13 CA2/4 -  Case Details
    Apr 10 2013B233189M
    [PDF] [DOC]

    Webb v. Special Electric Co. 4/10/13 CA2/1 -  Case Details
    Apr 09 2013B237354O
    [PDF] [DOC]

    P. v. Vega 4/9/13 CA2/5 -  Case Details
    Apr 09 2013B240348
    [PDF] [DOC]

    Spriesterbach v. Holland 4/9/13 CA2/4 -  Case Details
    Apr 08 2013B222310A
    [PDF] [DOC]

    Kaiser Cement etc. v. Ins. Co. etc. of Pa. 4/8/13 CA2/4 -  Case Details
    Apr 05 2013B239229
    [PDF] [DOC]

    Spinner v. American Broadcasting 3/8/13 CA2/8 -  Case Details
    Apr 04 2013B235731
    [PDF] [DOC]

    Stoltenberg v. Ampton Investments 4/4/13 CA2/5 -  Case Details
    Apr 04 2013B236455
    [PDF] [DOC]

    Akopyan v. Wells Fargo 4/4/13 CA2/4 -  Case Details
    Apr 03 2013B237354N
    [PDF] [DOC]

    P. v. Vega 4/3/13 CA2/5 -  Case Details
    Apr 03 2013B239014
    [PDF] [DOC]

    Hagman v. Meher Mount 4/3/13 CA2/6 -  Case Details
    Apr 03 2013B229432
    [PDF] [DOC]

    P. v. Quiroz 4/3/13 CA2/6 -  Case Details
    Apr 02 2013B235292
    [PDF] [DOC]

    Gonzalez v. Downtown LA Motors 3/6/13 CA2/2 -  Case Details
    Mar 29 2013B237718
    [PDF] [DOC]

    Conejo Wellness etc. v. Agoura Hills 3/29/13 CA2/8 -  Case Details
    Mar 29 2013B240522
    [PDF] [DOC]

    Harris v. Bingham McCutchen 3/29/13 CA2/5 -  Case Details
    Mar 28 2013B236757
    [PDF] [DOC]

    Hatai v. Dept. of Transportation 3/4/13 CA2/3 -  Case Details
    Mar 28 2013B231411A
    [PDF] [DOC]

    P. v. Eroshevich 3/28/13 CA2/5 -  Case Details
    Mar 27 2013B237986
    [PDF] [DOC]

    Shoemaker v. Harris 3/27/13 CA2/1 -  Case Details
    Mar 25 2013B244661
    [PDF] [DOC]

    Bridgeforth v. Super. Ct. 3/25/13 CA2/1 -  Case Details
    Mar 22 2013B233401
    [PDF] [DOC]

    P. v. Mecano 3/22/13 CA2/3 -  Case Details
    -

    + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_3rd_example.compare.json b/tests/examples/opinions/united_states/calctapp_3rd_example.compare.json index 831e37a8d..ac498bbc0 100644 --- a/tests/examples/opinions/united_states/calctapp_3rd_example.compare.json +++ b/tests/examples/opinions/united_states/calctapp_3rd_example.compare.json @@ -1,475 +1,266 @@ [ { - "case_dates": "2013-07-17", - "case_names": "Crews v. Willows Unified School Dist.", - "download_urls": "/opinions/documents/C066633.PDF", + "case_dates": "2024-04-23", + "case_names": "LaMarr v. The Regents of the U. of Cal.", + "download_urls": "/opinions/documents/C097235.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C066633", - "case_name_shorts": "Crews" + "docket_numbers": "C097235", + "case_name_shorts": "LaMarr" }, { - "case_dates": "2013-07-12", - "case_names": "Co. of Siskiyou v. Super. Ct.", - "download_urls": "/opinions/documents/C067252M.PDF", + "case_dates": "2024-04-09", + "case_names": "Weber v. Super. Ct.", + "download_urls": "/opinions/documents/C100304.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C067252M", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-10", - "case_names": "People v. Weber", - "download_urls": "/opinions/documents/C060135A.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C060135A", + "docket_numbers": "C100304", "case_name_shorts": "Weber" }, { - "case_dates": "2013-07-09", - "case_names": "In re E.D.", - "download_urls": "/opinions/documents/C072238.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C072238", - "case_name_shorts": "In re E.D." - }, - { - "case_dates": "2013-07-08", - "case_names": "Donlen v. Ford Motor Co.", - "download_urls": "/opinions/documents/C065722M.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C065722M", - "case_name_shorts": "Donlen" - }, - { - "case_dates": "2013-07-02", - "case_names": "In re V.C.", - "download_urls": "/opinions/documents/C071156.PDF", + "case_dates": "2024-04-08", + "case_names": "Dilbert v. Newsom", + "download_urls": "/opinions/documents/C096274.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C071156", - "case_name_shorts": "In re V.C." + "docket_numbers": "C096274", + "case_name_shorts": "Dilbert" }, { - "case_dates": "2013-06-28", - "case_names": "People v. Jones", - "download_urls": "/opinions/documents/C059440.PDF", + "case_dates": "2024-04-05", + "case_names": "Mosley v. Super. Ct.", + "download_urls": "/opinions/documents/C099530.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C059440", - "case_name_shorts": "Jones" + "docket_numbers": "C099530", + "case_name_shorts": "Mosley" }, { - "case_dates": "2013-06-26", - "case_names": "People v. Wilcox", - "download_urls": "/opinions/documents/C069826.PDF", + "case_dates": "2024-04-05", + "case_names": "Br. C. v. Be. C.", + "download_urls": "/opinions/documents/C097015.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C069826", - "case_name_shorts": "Wilcox" - }, - { - "case_dates": "2013-06-24", - "case_names": "Fuller v. First Franklin", - "download_urls": "/opinions/documents/C070452M.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C070452M", - "case_name_shorts": "Fuller" - }, - { - "case_dates": "2013-06-21", - "case_names": "Drake v. Pinkham", - "download_urls": "/opinions/documents/C068747.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C068747", - "case_name_shorts": "Drake" - }, - { - "case_dates": "2013-06-20", - "case_names": "Burrill v. Nair", - "download_urls": "/opinions/documents/C068998.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C068998", - "case_name_shorts": "Burrill" - }, - { - "case_dates": "2013-06-18", - "case_names": "Barnes v. Western Heritage Ins.", - "download_urls": "/opinions/documents/C066002.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C066002", - "case_name_shorts": "Barnes" - }, - { - "case_dates": "2013-06-14", - "case_names": "Donlen v. Ford Motor Co.", - "download_urls": "/opinions/documents/C065722.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C065722", - "case_name_shorts": "Donlen" - }, - { - "case_dates": "2013-06-13", - "case_names": "County of Siskiyou v. Super. Ct.", - "download_urls": "/opinions/documents/C067252.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C067252", + "docket_numbers": "C097015", "case_name_shorts": "" }, { - "case_dates": "2013-06-12", - "case_names": "Schaefer v. Elder", - "download_urls": "/opinions/documents/C068229.PDF", + "case_dates": "2024-03-26", + "case_names": "People v. Barner", + "download_urls": "/opinions/documents/C095986M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C068229", - "case_name_shorts": "Schaefer" + "docket_numbers": "C095986M", + "case_name_shorts": "Barner" }, { - "case_dates": "2013-06-12", - "case_names": "People v. Her", - "download_urls": "/opinions/documents/C069153M.PDF", + "case_dates": "2024-03-21", + "case_names": "Trident Society, Inc. v. Cemetery and Funeral Bureau", + "download_urls": "/opinions/documents/C098017.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C069153M", - "case_name_shorts": "Her" - }, - { - "case_dates": "2013-06-07", - "case_names": "People v. Cross", - "download_urls": "/opinions/documents/C070271.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C070271", - "case_name_shorts": "Cross" - }, - { - "case_dates": "2013-06-07", - "case_names": "In re Matthew N.", - "download_urls": "/opinions/documents/C070892.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C070892", + "docket_numbers": "C098017", "case_name_shorts": "" }, { - "case_dates": "2013-06-07", - "case_names": "In re G.C.", - "download_urls": "/opinions/documents/C070086.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C070086", - "case_name_shorts": "In re G.C." - }, - { - "case_dates": "2013-06-03", - "case_names": "People v. Oakley", - "download_urls": "/opinions/documents/C070776A.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C070776A", - "case_name_shorts": "Oakley" - }, - { - "case_dates": "2013-05-31", - "case_names": "In re L.J.", - "download_urls": "/opinions/documents/C071919.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C071919", - "case_name_shorts": "In re L.J." - }, - { - "case_dates": "2013-05-29", - "case_names": "People v. Her", - "download_urls": "/opinions/documents/C069153.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C069153", - "case_name_shorts": "Her" - }, - { - "case_dates": "2013-05-29", - "case_names": "Fuller v. First Franklin Financial", - "download_urls": "/opinions/documents/C070452.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C070452", - "case_name_shorts": "Fuller" - }, - { - "case_dates": "2013-05-24", - "case_names": "Bluford v. Safeway Stores, Inc.", - "download_urls": "/opinions/documents/C066074.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C066074", - "case_name_shorts": "Bluford" - }, - { - "case_dates": "2013-05-22", - "case_names": "Dow v. Lassen Irrigation", - "download_urls": "/opinions/documents/C068550A.PDF", + "case_dates": "2024-03-21", + "case_names": "Neptune Management Corp. v. Cemetery and Funeral Bureau", + "download_urls": "/opinions/documents/C098037.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C068550A", - "case_name_shorts": "Dow" - }, - { - "case_dates": "2013-05-21", - "case_names": "Bombardier Recreat. Prod. v. Dow Chemical Canada", - "download_urls": "/opinions/documents/C065603.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C065603", + "docket_numbers": "C098037", "case_name_shorts": "" }, { - "case_dates": "2013-05-21", - "case_names": "Bock v. Cal. Capital Loans", - "download_urls": "/opinions/documents/C069863N.PDF", + "case_dates": "2024-03-14", + "case_names": "People v. Santos", + "download_urls": "/opinions/documents/C096979.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C069863N", - "case_name_shorts": "Bock" + "docket_numbers": "C096979", + "case_name_shorts": "Santos" }, { - "case_dates": "2013-05-20", - "case_names": "Bock v. Cal. Capital Loans", - "download_urls": "/opinions/documents/C069863M.PDF", + "case_dates": "2024-03-12", + "case_names": "People v. Barner", + "download_urls": "/opinions/documents/C095986.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C069863M", - "case_name_shorts": "Bock" + "docket_numbers": "C095986", + "case_name_shorts": "Barner" }, { - "case_dates": "2013-05-16", - "case_names": "Cal. Assn. Prof. Scientists v. Brown", - "download_urls": "/opinions/documents/C066948.PDF", + "case_dates": "2024-03-05", + "case_names": "In re J.S.", + "download_urls": "/opinions/documents/C099115.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C066948", - "case_name_shorts": "Brown" + "docket_numbers": "C099115", + "case_name_shorts": "In re J.S." }, { - "case_dates": "2013-05-14", - "case_names": "Bock v. Cal. Capital Loans", - "download_urls": "/opinions/documents/C069863.PDF", + "case_dates": "2024-02-27", + "case_names": "Bekkerman v. Cal. Dept. of Tax and Fee Admin.", + "download_urls": "/opinions/documents/C093763.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C069863", - "case_name_shorts": "Bock" + "docket_numbers": "C093763", + "case_name_shorts": "Bekkerman" }, { - "case_dates": "2013-05-10", - "case_names": "People v. Ramos", - "download_urls": "/opinions/documents/C065059.PDF", + "case_dates": "2024-02-09", + "case_names": "People v. Kimble", + "download_urls": "/opinions/documents/C097389A.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C065059", - "case_name_shorts": "Ramos" + "docket_numbers": "C097389A", + "case_name_shorts": "Kimble" }, { - "case_dates": "2013-05-10", - "case_names": "People v. Fisher", - "download_urls": "/opinions/documents/C070295.PDF", + "case_dates": "2024-02-09", + "case_names": "California Privacy Protection Agency v. Super. Ct.", + "download_urls": "/opinions/documents/C099130.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C070295", - "case_name_shorts": "Fisher" + "docket_numbers": "C099130", + "case_name_shorts": "" }, { - "case_dates": "2013-05-03", - "case_names": "People v. McCoy", - "download_urls": "/opinions/documents/C067380.PDF", + "case_dates": "2024-01-30", + "case_names": "In re K.B.", + "download_urls": "/opinions/documents/C098376.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C067380", - "case_name_shorts": "McCoy" + "docket_numbers": "C098376", + "case_name_shorts": "In re K.B." }, { - "case_dates": "2013-05-02", - "case_names": "People v. Conley", - "download_urls": "/opinions/documents/C070272A.PDF", + "case_dates": "2024-01-30", + "case_names": "In re A.K.", + "download_urls": "/opinions/documents/C097776.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C070272A", - "case_name_shorts": "Conley" + "docket_numbers": "C097776", + "case_name_shorts": "In re A.K." }, { - "case_dates": "2013-05-02", - "case_names": "Mendocino Community Health v. State Dept. Health etc.", - "download_urls": "/opinions/documents/C067826.PDF", + "case_dates": "2024-01-25", + "case_names": "Planning and Conservation League v. Dept. of Water Resources", + "download_urls": "/opinions/documents/C096304M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C067826", + "docket_numbers": "C096304M", "case_name_shorts": "" }, { - "case_dates": "2013-05-01", - "case_names": "Co. of Sacramento v. WCAB", - "download_urls": "/opinions/documents/C067739M.PDF", + "case_dates": "2024-01-25", + "case_names": "Miszkewycz v. County of Placer", + "download_urls": "/opinions/documents/C095426.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C067739M", - "case_name_shorts": "WCAB" + "docket_numbers": "C095426", + "case_name_shorts": "Miszkewycz" }, { - "case_dates": "2013-04-22", - "case_names": "Cty. of Sacramento v. WCAB", - "download_urls": "/opinions/documents/C067739.PDF", + "case_dates": "2024-01-24", + "case_names": "People v. Smyth", + "download_urls": "/opinions/documents/C097934.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C067739", - "case_name_shorts": "WCAB" + "docket_numbers": "C097934", + "case_name_shorts": "Smyth" }, { - "case_dates": "2013-04-11", - "case_names": "In re A.M.", - "download_urls": "/opinions/documents/C070782.PDF", + "case_dates": "2024-01-22", + "case_names": "People v. Hurt", + "download_urls": "/opinions/documents/C096740.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C070782", - "case_name_shorts": "In re A.M." + "docket_numbers": "C096740", + "case_name_shorts": "Hurt" }, { - "case_dates": "2013-04-10", - "case_names": "Good v. Miller", - "download_urls": "/opinions/documents/C068802M.PDF", + "case_dates": "2024-01-19", + "case_names": "K & S Staffing Solutions v. The Western Surety Co.", + "download_urls": "/opinions/documents/C096705M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C068802M", - "case_name_shorts": "Good" - }, - { - "case_dates": "2013-04-02", - "case_names": "Alliance etc. v. Placer Cty.", - "download_urls": "/opinions/documents/C067961.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "3rd App. Dist.", - "docket_numbers": "C067961", + "docket_numbers": "C096705M", "case_name_shorts": "" }, { - "case_dates": "2013-03-29", - "case_names": "Collins v. Navistar", - "download_urls": "/opinions/documents/C060468.PDF", + "case_dates": "2024-01-17", + "case_names": "Hasty v. American Automobile Assn. of Northern Cal., Nev. & Utah", + "download_urls": "/opinions/documents/C097674.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C060468", - "case_name_shorts": "Collins" + "docket_numbers": "C097674", + "case_name_shorts": "Hasty" }, { - "case_dates": "2013-03-27", - "case_names": "Humane Society v. Super. Ct.", - "download_urls": "/opinions/documents/C067081.PDF", + "case_dates": "2024-01-05", + "case_names": "Planning and Conservation League v. Dept. of Water Resources", + "download_urls": "/opinions/documents/C096304.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C067081", + "docket_numbers": "C096304", "case_name_shorts": "" }, { - "case_dates": "2013-03-26", - "case_names": "People v. Prunty", - "download_urls": "/opinions/documents/C071065.PDF", + "case_dates": "2024-01-02", + "case_names": "K & S Staffing Solutions v. The Western Surety Co.", + "download_urls": "/opinions/documents/C096705.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "3rd App. Dist.", - "docket_numbers": "C071065", - "case_name_shorts": "Prunty" + "docket_numbers": "C096705", + "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_3rd_example.html b/tests/examples/opinions/united_states/calctapp_3rd_example.html index 9a3505c29..225206c21 100644 --- a/tests/examples/opinions/united_states/calctapp_3rd_example.html +++ b/tests/examples/opinions/united_states/calctapp_3rd_example.html @@ -1,130 +1,345 @@ - + + + + + + California Courts - Published Opinions + - - -

    -
    -
    -

    Published Opinions

    -
    -
    + + +
    +
    +
    +
    +
    +
    -
    -

    Published Opinions of the appellate courts are opinions certified for publication or ordered published and may be cited or relied on by courts and parties.

    +

    Published or "citable" opinions of the appellate courts are opinions ordered published in the Official + Reports, and may be cited or relied on by other courts and parties.

    -

  • Official Reports Opinions (Searchable 1850-Present) are the searchable, citable, published opinions that reflect postfiling corrections. This no-fee service is provided by LexisNexis.
  • +

    +

  • Official Reports Opinions + (Searchable 1850-Present) are the searchable, citable, published opinions that reflect + post filing corrections. This no-fee service is provided by LexisNexis.
  • +

    -

  • Slip Opinions are as-filed versions of opinions. Slip opinions certified for publication do not reflect enhancement, editing and correction for the Official Reports.
  • +

    +

  • Slip Opinions are as-filed versions of opinions certified for publication or ordered + published; they do not reflect enhancement, editing, and correction for the Official Reports. Slip + opinions from the last 120 days are posted together on this page as public information about actions taken + by the courts.
  • +

    -

    Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court of Appeal slip opinions are posted throughout the day as soon after filing as possible.

    +

    +

  • Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court + of Appeal slip opinions are posted throughout the day as soon after filing as possible.
  • +

    -

    Use the list below to select the slip opinions certified for publication, or ordered published, that you want to view and click on the "view" button to activate your selection.

    +

    +

  • Archive of Web Pages Cited in Opinions Issued by the Supreme Court of + California
  • +

    +

    Use the pull-down menu below to select the slip opinions that you wish to view. After 120 days, these opinions + remain available via our Case Information + Search tool.

    -
    -


    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Date Posted
    Docket #/
    File Format
    Description

    Jul 17 2013C066633
    [PDF] [DOC]

    Crews v. Willows Unified School Dist. 7/17/13 CA3 -  Case Details
    Jul 12 2013C067252M
    [PDF] [DOC]

    Co. of Siskiyou v. Super. Ct. 7/12/13 CA3 -  Case Details
    Jul 10 2013C060135A
    [PDF] [DOC]

    P. v. Weber 7/10/13 CA3 -  Case Details
    Jul 09 2013C072238
    [PDF] [DOC]

    In re E.D. 7/9/13 CA3 -  Case Details
    Jul 08 2013C065722M
    [PDF] [DOC]

    Donlen v. Ford Motor Co. 7/8/13 CA3 -  Case Details
    Jul 02 2013C071156
    [PDF] [DOC]

    In re V.C. 7/2/13 CA3 -  Case Details
    Jun 28 2013C059440
    [PDF] [DOC]

    P. v. Jones 6/28/13 CA3 -  Case Details
    Jun 26 2013C069826
    [PDF] [DOC]

    P. v. Wilcox 6/26/13 CA3 -  Case Details
    Jun 24 2013C070452M
    [PDF] [DOC]

    Fuller v. First Franklin 6/24/13 CA3 -  Case Details
    Jun 21 2013C068747
    [PDF] [DOC]

    Drake v. Pinkham 5/28/13 CA3 -  Case Details
    Jun 20 2013C068998
    [PDF] [DOC]

    Burrill v. Nair 6/3/13 CA3 -  Case Details
    Jun 18 2013C066002
    [PDF] [DOC]

    Barnes v. Western Heritage Ins. 6/18/13 CA3 -  Case Details
    Jun 14 2013C065722
    [PDF] [DOC]

    Donlen v. Ford Motor Co. 6/14/13 CA3 -  Case Details
    Jun 13 2013C067252
    [PDF] [DOC]

    County of Siskiyou v. Super. Ct. 6/13/13 CA3 -  Case Details
    Jun 12 2013C069153M
    [PDF] [DOC]

    P. v. Her 6/12/13 CA3 -  Case Details
    Jun 12 2013C068229
    [PDF] [DOC]

    Schaefer v. Elder 5/16/13 CA3 -  Case Details
    Jun 07 2013C070892
    [PDF] [DOC]

    In re Matthew N. 5/16/13 CA3 -  Case Details
    Jun 07 2013C070271
    [PDF] [DOC]

    P. v. Cross 6/7/13 CA3 -  Case Details
    Jun 07 2013C070086
    [PDF] [DOC]

    In re G.C. 6/7/13 CA3 -  Case Details
    Jun 03 2013C070776A
    [PDF] [DOC]

    P. v. Oakley 5/28/13 CA3 -  Case Details
    May 31 2013C071919
    [PDF] [DOC]

    In re L.J. 5/1/13 CA3 -  Case Details
    May 29 2013C069153
    [PDF] [DOC]

    P. v. Her 5/14/13 CA3 -  Case Details
    May 29 2013C070452
    [PDF] [DOC]

    Fuller v. First Franklin Financial 5/1/13 CA3 -  Case Details
    May 24 2013C066074
    [PDF] [DOC]

    Bluford v. Safeway Stores, Inc. 5/8/13 CA3 -  Case Details
    May 22 2013C068550A
    [PDF] [DOC]

    Dow v. Lassen Irrigation 5/22/13 CA3 -  Case Details
    May 21 2013C065603
    [PDF] [DOC]

    Bombardier Recreat. Prod. v. Dow Chemical Canada 5/21/13 CA3 -  Case Details
    May 21 2013C069863N
    [PDF] [DOC]

    Bock v. Cal. Capital Loans 5/20/13 CA3 -  Case Details
    May 20 2013C069863M
    [PDF] [DOC]

    Bock v. Cal. Capital Loans 5/20/13 CA3 -  Case Details
    May 16 2013C066948
    [PDF] [DOC]

    Cal. Assn. Prof. Scientists v. Brown 5/16/13 CA3 -  Case Details
    May 14 2013C069863
    [PDF] [DOC]

    Bock v. Cal. Capital Loans 5/14/13 CA3 -  Case Details
    May 10 2013C065059
    [PDF] [DOC]

    P. v. Ramos 5/10/13 CA3 -  Case Details
    May 10 2013C070295
    [PDF] [DOC]

    P. v. Fisher 5/10/13 CA3 -  Case Details
    May 03 2013C067380
    [PDF] [DOC]

    P. v. McCoy 5/3/13 CA3 -  Case Details
    May 02 2013C067826
    [PDF] [DOC]

    Mendocino Community Health v. State Dept. Health etc. 5/2/13 CA3 -  Case Details
    May 02 2013C070272A
    [PDF] [DOC]

    P. v. Conley 5/2/13 CA3 -  Case Details
    May 01 2013C067739M
    [PDF] [DOC]

    Co. of Sacramento v. WCAB 5/1/13 CA3 -  Case Details
    Apr 22 2013C067739
    [PDF] [DOC]

    Cty. of Sacramento v. WCAB 4/22/13 CA3 -  Case Details
    Apr 11 2013C070782
    [PDF] [DOC]

    In re A.M. 4/11/13 CA3 -  Case Details
    Apr 10 2013C068802M
    [PDF] [DOC]

    Good v. Miller 4/9/13 CA3 -  Case Details
    Apr 02 2013C067961
    [PDF] [DOC]

    Alliance etc. v. Placer Cty. 2/28/13 CA3 -  Case Details
    Mar 29 2013C060468
    [PDF] [DOC]

    Collins v. Navistar 3/29/13 CA3 -  Case Details
    Mar 27 2013C067081
    [PDF] [DOC]

    Humane Society v. Super. Ct. 3/27/13 CA3 -  Case Details
    Mar 26 2013C071065
    [PDF] [DOC]

    P. v. Prunty 3/26/13 CA3 -  Case Details
    -

    +

    Please note that copies of published opinions may also be available from or searchable through sources other than + this website.

    +
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date Posted
    Docket #/
    File Format
    Description

    +

    Apr 23, 2024C097235
    [PDF]
    [DOC]
    LaMarr v. The Regents of the U. of Cal. 4/5/24 CA3  Case Details
    Apr 09, 2024C100304
    [PDF]
    [DOC]
    Weber v. Super. Ct. 4/9/24 CA3  Case Details
    Apr 08, 2024C096274
    [PDF]
    [DOC]
    Dilbert v. Newsom 4/8/24 CA3  Case Details
    Apr 05, 2024C099530
    [PDF]
    [DOC]
    Mosley v. Super. Ct. 4/5/24 CA3  Case Details
    Apr 05, 2024C097015
    [PDF]
    [DOC]
    Br. C. v. Be. C. 4/5/24 CA3  Case Details
    Mar 26, 2024C095986M
    [PDF]
    [DOC]
    P. v. Barner 3/26/24 CA3  Case Details
    Mar 21, 2024C098037
    [PDF]
    [DOC]
    Neptune Management Corp. v. Cemetery and Funeral Bureau 3/21/24 CA3  + Case Details
    Mar 21, 2024C098017
    [PDF]
    [DOC]
    Trident Society, Inc. v. Cemetery and Funeral Bureau 3/21/24 CA3  Case Details
    Mar 14, 2024C096979
    [PDF]
    [DOC]
    P. v. Santos 3/14/24 CA3  Case Details
    Mar 12, 2024C095986
    [PDF]
    [DOC]
    P. v. Barner 3/12/24 CA3  Case Details
    Mar 05, 2024C099115
    [PDF]
    [DOC]
    In re J.S. 3/5/24 CA3  Case Details
    Feb 27, 2024C093763
    [PDF]
    [DOC]
    Bekkerman v. Cal. Dept. of Tax and Fee Admin. 2/27/24 CA3  Case Details
    Feb 09, 2024C099130
    [PDF]
    [DOC]
    California Privacy Protection Agency v. Super. Ct. 2/9/24 CA3  Case Details
    Feb 09, 2024C097389A
    [PDF]
    [DOC]
    P. v. Kimble 2/9/24 CA3  Case Details
    Jan 30, 2024C097776
    [PDF]
    [DOC]
    In re A.K. 1/18/24 CA3  Case Details
    Jan 30, 2024C098376
    [PDF]
    [DOC]
    In re K.B. 1/30/24 CA3  Case Details
    Jan 25, 2024C096304M
    [PDF]
    [DOC]
    Planning and Conservation League v. Dept. of Water Resources 1/25/24 + CA3  Case Details   Related + Cases: C096316 C096384 +
    Jan 25, 2024C095426
    [PDF]
    [DOC]
    Miszkewycz v. County of Placer 1/25/24 CA3  Case Details
    Jan 24, 2024C097934
    [PDF]
    [DOC]
    P. v. Smyth 1/24/24 CA3  Case Details
    Jan 22, 2024C096740
    [PDF]
    [DOC]
    P. v. Hurt 1/22/24 CA3  Case Details
    Jan 19, 2024C096705M
    [PDF]
    [DOC]
    K & S Staffing Solutions v. The Western Surety Co. 1/19/24 CA3  Case Details   Related + Case: C097987 +
    Jan 17, 2024C097674
    [PDF]
    [DOC]
    Hasty v. American Automobile Assn. of Northern Cal., Nev. & Utah 12/21/23 + CA3  Case Details
    Jan 05, 2024C096304
    [PDF]
    [DOC]
    Planning and Conservation League v. Dept. of Water Resources 1/5/24 + CA3  Case Details   Related + Cases: C096316 C096384 +
    Jan 02, 2024C096705
    [PDF]
    [DOC]
    K & S Staffing Solutions v. The Western Surety Co. 1/2/24 CA3  Case Details   Related + Case: C097987 +
    +

    + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_4th_div1_example.compare.json b/tests/examples/opinions/united_states/calctapp_4th_div1_example.compare.json index 8aee11040..6288a0b0d 100644 --- a/tests/examples/opinions/united_states/calctapp_4th_div1_example.compare.json +++ b/tests/examples/opinions/united_states/calctapp_4th_div1_example.compare.json @@ -1,420 +1,365 @@ [ { - "case_dates": "2013-07-19", - "case_names": "Happy Nails & Spa v. Su", - "download_urls": "/opinions/documents/D060621.PDF", + "case_dates": "2024-04-16", + "case_names": "People v. Barooshian", + "download_urls": "/opinions/documents/D081050.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D060621", - "case_name_shorts": "Su" + "docket_numbers": "D081050", + "case_name_shorts": "Barooshian" }, { - "case_dates": "2013-07-18", - "case_names": "Acuna v. San Diego Gas & Electric", - "download_urls": "/opinions/documents/D060064.PDF", + "case_dates": "2024-04-15", + "case_names": "People v. Flores", + "download_urls": "/opinions/documents/D083310.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D060064", - "case_name_shorts": "Acuna" + "docket_numbers": "D083310", + "case_name_shorts": "Flores" }, { - "case_dates": "2013-07-10", - "case_names": "Dana Point v. Cal. Coastal Com.", - "download_urls": "/opinions/documents/D060260M.PDF", + "case_dates": "2024-04-12", + "case_names": "Mission Springs Water Dist. v. Desert Water Agency", + "download_urls": "/opinions/documents/D081984.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D060260M", + "docket_numbers": "D081984", "case_name_shorts": "" }, { - "case_dates": "2013-06-28", - "case_names": "In re Oscar A.", - "download_urls": "/opinions/documents/D062817.PDF", + "case_dates": "2024-04-03", + "case_names": "People v. Brown", + "download_urls": "/opinions/documents/D081445.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D062817", - "case_name_shorts": "" - }, - { - "case_dates": "2013-06-21", - "case_names": "SB Liberty v. Isla Verde Asso.", - "download_urls": "/opinions/documents/D061261A.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D061261A", - "case_name_shorts": "" - }, - { - "case_dates": "2013-06-17", - "case_names": "Dana Point v. Cal. Coastal Com.", - "download_urls": "/opinions/documents/D060260.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D060260", - "case_name_shorts": "" - }, - { - "case_dates": "2013-06-14", - "case_names": "In re T.V.", - "download_urls": "/opinions/documents/D063023.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D063023", - "case_name_shorts": "In re T.V." - }, - { - "case_dates": "2013-06-11", - "case_names": "State Farm v. Huff", - "download_urls": "/opinions/documents/D062550.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D062550", - "case_name_shorts": "Huff" + "docket_numbers": "D081445", + "case_name_shorts": "Brown" }, { - "case_dates": "2013-06-11", - "case_names": "Do v. The Regents of the University of California", - "download_urls": "/opinions/documents/D061056.PDF", + "case_dates": "2024-03-29", + "case_names": "People v. Ayala", + "download_urls": "/opinions/documents/D082754.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D061056", - "case_name_shorts": "Do" + "docket_numbers": "D082754", + "case_name_shorts": "Ayala" }, { - "case_dates": "2013-06-11", - "case_names": "City of San Diego v. Boggess", - "download_urls": "/opinions/documents/D061715.PDF", + "case_dates": "2024-03-27", + "case_names": "People v. McClelland", + "download_urls": "/opinions/documents/D081369.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D061715", - "case_name_shorts": "Boggess" + "docket_numbers": "D081369", + "case_name_shorts": "McClelland" }, { - "case_dates": "2013-06-03", - "case_names": "People v. Woodall", - "download_urls": "/opinions/documents/D062005.PDF", + "case_dates": "2024-03-25", + "case_names": "Brooklyn Restaurants, Inc. v. Sentinel Ins. Co., Ltd.", + "download_urls": "/opinions/documents/D081132.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D062005", - "case_name_shorts": "Woodall" + "docket_numbers": "D081132", + "case_name_shorts": "" }, { - "case_dates": "2013-05-29", - "case_names": "People v. Loper", - "download_urls": "/opinions/documents/D062693.PDF", + "case_dates": "2024-03-15", + "case_names": "Davis v. Nissan North America, Inc.", + "download_urls": "/opinions/documents/D083006.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D062693", - "case_name_shorts": "Loper" + "docket_numbers": "D083006", + "case_name_shorts": "Davis" }, { - "case_dates": "2013-05-23", - "case_names": "Ronay Family L.People v. Tweed", - "download_urls": "/opinions/documents/D062195.PDF", + "case_dates": "2024-03-08", + "case_names": "People v. Ashford University, LLC", + "download_urls": "/opinions/documents/D080671.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D062195", - "case_name_shorts": "Tweed" + "docket_numbers": "D080671", + "case_name_shorts": "" }, { - "case_dates": "2013-05-22", - "case_names": "In re Timothy N.", - "download_urls": "/opinions/documents/D061891.PDF", + "case_dates": "2024-03-08", + "case_names": "G.F. Galaxy Corp. v. Johnson", + "download_urls": "/opinions/documents/D081492.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D061891", + "docket_numbers": "D081492", "case_name_shorts": "" }, { - "case_dates": "2013-05-20", - "case_names": "In re Tobacco Cases I", - "download_urls": "/opinions/documents/D061077.PDF", + "case_dates": "2024-03-07", + "case_names": "Jackson v. Lara", + "download_urls": "/opinions/documents/D081549.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D061077", - "case_name_shorts": "" + "docket_numbers": "D081549", + "case_name_shorts": "Lara" }, { - "case_dates": "2013-05-16", - "case_names": "Landstar Global v. Robinson & Robinson", - "download_urls": "/opinions/documents/D060829.PDF", + "case_dates": "2024-03-07", + "case_names": "In re P.L.", + "download_urls": "/opinions/documents/D082723.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D060829", - "case_name_shorts": "" + "docket_numbers": "D082723", + "case_name_shorts": "In re P.L." }, { - "case_dates": "2013-05-13", - "case_names": "People v. Zavala", - "download_urls": "/opinions/documents/D062125.PDF", + "case_dates": "2024-02-26", + "case_names": "People v. Gaillard", + "download_urls": "/opinions/documents/D082071.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D062125", - "case_name_shorts": "Zavala" + "docket_numbers": "D082071", + "case_name_shorts": "Gaillard" }, { - "case_dates": "2013-05-06", - "case_names": "Sisson v. Super. Ct.", - "download_urls": "/opinions/documents/D063022.PDF", + "case_dates": "2024-02-26", + "case_names": "Molinar v. 21st Century Ins. Co.", + "download_urls": "/opinions/documents/D081431.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D063022", - "case_name_shorts": "Sisson" + "docket_numbers": "D081431", + "case_name_shorts": "Molinar" }, { - "case_dates": "2013-04-29", - "case_names": "Jameson v. Desta", - "download_urls": "/opinions/documents/D060029.PDF", + "case_dates": "2024-02-21", + "case_names": "People v. Garcia", + "download_urls": "/opinions/documents/D081713.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D060029", - "case_name_shorts": "Jameson" + "docket_numbers": "D081713", + "case_name_shorts": "Garcia" }, { - "case_dates": "2013-04-29", - "case_names": "Battaglia Enterprises v. Super. Ct.", - "download_urls": "/opinions/documents/D063076M.PDF", + "case_dates": "2024-02-20", + "case_names": "People v. Rouston", + "download_urls": "/opinions/documents/D080114.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D063076M", - "case_name_shorts": "" + "docket_numbers": "D080114", + "case_name_shorts": "Rouston" }, { - "case_dates": "2013-04-26", - "case_names": "CA Dept. of Corr. v. St. Personnel Bd.", - "download_urls": "/opinions/documents/D061653.PDF", + "case_dates": "2024-02-20", + "case_names": "Andrade v. Western Riverside Council of Governments", + "download_urls": "/opinions/documents/D080978.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D061653", - "case_name_shorts": "" + "docket_numbers": "D080978", + "case_name_shorts": "Andrade" }, { - "case_dates": "2013-04-25", - "case_names": "Taxpayers etc. v. San Diego USD", - "download_urls": "/opinions/documents/D060999.PDF", + "case_dates": "2024-02-16", + "case_names": "Marriage of Tara and Robert D.", + "download_urls": "/opinions/documents/D080977A.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D060999", + "docket_numbers": "D080977A", "case_name_shorts": "" }, { - "case_dates": "2013-04-22", - "case_names": "Ramirez v. Balboa Thrift etc.", - "download_urls": "/opinions/documents/D060057.PDF", + "case_dates": "2024-02-16", + "case_names": "Marriage of Tara and Robert D.", + "download_urls": "/opinions/documents/D080977.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D060057", - "case_name_shorts": "Ramirez" + "docket_numbers": "D080977", + "case_name_shorts": "" }, { - "case_dates": "2013-04-19", - "case_names": "In re Curtis S.", - "download_urls": "/opinions/documents/D062081.PDF", + "case_dates": "2024-02-16", + "case_names": "Hilltop Group, Inc. v. County of San Diego", + "download_urls": "/opinions/documents/D081124.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D062081", + "docket_numbers": "D081124", "case_name_shorts": "" }, { - "case_dates": "2013-04-19", - "case_names": "Chanda v. Federal Home Loans Corp.", - "download_urls": "/opinions/documents/D059976.PDF", + "case_dates": "2024-02-15", + "case_names": "People v. Cartwright", + "download_urls": "/opinions/documents/D080606M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D059976", - "case_name_shorts": "Chanda" + "docket_numbers": "D080606M", + "case_name_shorts": "Cartwright" }, { - "case_dates": "2013-04-18", - "case_names": "Marr. of Simmons", - "download_urls": "/opinions/documents/D060557.PDF", + "case_dates": "2024-02-14", + "case_names": "In re H.D.", + "download_urls": "/opinions/documents/D082615.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D060557", - "case_name_shorts": "Marr. of Simmons" + "docket_numbers": "D082615", + "case_name_shorts": "In re H.D." }, { - "case_dates": "2013-04-17", - "case_names": "Kleveland v. Siegel & Wolensky", - "download_urls": "/opinions/documents/D060906.PDF", + "case_dates": "2024-02-14", + "case_names": "Bonds v. Super. Ct.", + "download_urls": "/opinions/documents/D082187.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D060906", - "case_name_shorts": "Kleveland" + "docket_numbers": "D082187", + "case_name_shorts": "Bonds" }, { - "case_dates": "2013-04-15", - "case_names": "People v. Smith", - "download_urls": "/opinions/documents/D060317A.PDF", + "case_dates": "2024-02-06", + "case_names": "People v. Jimenez", + "download_urls": "/opinions/documents/D081267M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D060317A", - "case_name_shorts": "" + "docket_numbers": "D081267M", + "case_name_shorts": "Jimenez" }, { - "case_dates": "2013-04-15", - "case_names": "Coastside Fishing Club v. Cal. Fish and Game Com.", - "download_urls": "/opinions/documents/D061121.PDF", + "case_dates": "2024-02-02", + "case_names": "People v. Jimenez", + "download_urls": "/opinions/documents/D081267.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D061121", - "case_name_shorts": "" + "docket_numbers": "D081267", + "case_name_shorts": "Jimenez" }, { - "case_dates": "2013-04-11", - "case_names": "Battaglia Enterprises v. Super. Ct.", - "download_urls": "/opinions/documents/D063076.PDF", + "case_dates": "2024-01-31", + "case_names": "Epochal Enterprises, Inc. v. LF Encinitas Properties, LLC", + "download_urls": "/opinions/documents/D079905M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D063076", + "docket_numbers": "D079905M", "case_name_shorts": "" }, { - "case_dates": "2013-04-09", - "case_names": "People v. Evans", - "download_urls": "/opinions/documents/D059607.PDF", + "case_dates": "2024-01-30", + "case_names": "People v. Brooks", + "download_urls": "/opinions/documents/D080776.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D059607", - "case_name_shorts": "Evans" + "docket_numbers": "D080776", + "case_name_shorts": "Brooks" }, { - "case_dates": "2013-04-03", - "case_names": "Bedoe v. San Diego Cty.", - "download_urls": "/opinions/documents/D060381.PDF", + "case_dates": "2024-01-25", + "case_names": "People v. Cartwright", + "download_urls": "/opinions/documents/D080606.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D060381", - "case_name_shorts": "Bedoe" + "docket_numbers": "D080606", + "case_name_shorts": "Cartwright" }, { - "case_dates": "2013-03-29", - "case_names": "People v. Mora", - "download_urls": "/opinions/documents/D062007.PDF", + "case_dates": "2024-01-25", + "case_names": "Epochal Enterprises, Inc. v. LF Encinitas Properties, LLC", + "download_urls": "/opinions/documents/D079905.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D062007", - "case_name_shorts": "Mora" - }, - { - "case_dates": "2013-03-28", - "case_names": "Quigley v. McClellan", - "download_urls": "/opinions/documents/D060776.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D060776", - "case_name_shorts": "Quigley" + "docket_numbers": "D079905", + "case_name_shorts": "" }, { - "case_dates": "2013-03-27", - "case_names": "In re T.W.", - "download_urls": "/opinions/documents/D061960.PDF", + "case_dates": "2024-01-24", + "case_names": "Suarez v. Super. Ct.", + "download_urls": "/opinions/documents/D082429.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D061960", - "case_name_shorts": "In re T.W." + "docket_numbers": "D082429", + "case_name_shorts": "Suarez" }, { - "case_dates": "2013-03-27", - "case_names": "Dailey v. Sears, Roebuck", - "download_urls": "/opinions/documents/D061055M.PDF", + "case_dates": "2024-01-22", + "case_names": "Natural Resources Defense Council v. City of Los Angeles", + "download_urls": "/opinions/documents/D080902.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D061055M", - "case_name_shorts": "Dailey" + "docket_numbers": "D080902", + "case_name_shorts": "" }, { - "case_dates": "2013-03-26", - "case_names": "San Diego USD v. Com. on Prof. Competence", - "download_urls": "/opinions/documents/D059035.PDF", + "case_dates": "2024-01-09", + "case_names": "Sarmiento v. Super. Ct.", + "download_urls": "/opinions/documents/D082443.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D059035", - "case_name_shorts": "" + "docket_numbers": "D082443", + "case_name_shorts": "Sarmiento" }, { - "case_dates": "2013-03-25", - "case_names": "Centex Homes v. Super. Ct.", - "download_urls": "/opinions/documents/D062995.PDF", + "case_dates": "2024-01-04", + "case_names": "Garner v. BNSF Railway Co.", + "download_urls": "/opinions/documents/D082229.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 1", - "docket_numbers": "D062995", - "case_name_shorts": "" + "docket_numbers": "D082229", + "case_name_shorts": "Garner" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_4th_div1_example.html b/tests/examples/opinions/united_states/calctapp_4th_div1_example.html index c8133043c..648d3ab0d 100644 --- a/tests/examples/opinions/united_states/calctapp_4th_div1_example.html +++ b/tests/examples/opinions/united_states/calctapp_4th_div1_example.html @@ -1,120 +1,420 @@ - + + + + + + California Courts - Published Opinions + + - - -

    -
    -
    -

    Published Opinions

    -
    -
    + +
    +
    +
    +
    +
    +
    -
    -

    Published Opinions of the appellate courts are opinions certified for publication or ordered published and may be cited or relied on by courts and parties.

    +

    Published or "citable" opinions of the appellate courts are opinions ordered published in the Official + Reports, and may be cited or relied on by other courts and parties.

    + +

    +

  • Official Reports Opinions + (Searchable 1850-Present) are the searchable, citable, published opinions that reflect + post filing corrections. This no-fee service is provided by LexisNexis.
  • +

    -

  • Official Reports Opinions (Searchable 1850-Present) are the searchable, citable, published opinions that reflect postfiling corrections. This no-fee service is provided by LexisNexis.
  • +

    +

  • Slip Opinions are as-filed versions of opinions certified for publication or ordered + published; they do not reflect enhancement, editing, and correction for the Official Reports. Slip + opinions from the last 120 days are posted together on this page as public information about actions taken + by the courts.
  • +

    -

  • Slip Opinions are as-filed versions of opinions. Slip opinions certified for publication do not reflect enhancement, editing and correction for the Official Reports.
  • +

    +

  • Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court + of Appeal slip opinions are posted throughout the day as soon after filing as possible.
  • +

    -

    Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court of Appeal slip opinions are posted throughout the day as soon after filing as possible.

    +

    +

  • Archive of Web Pages Cited in Opinions Issued by the Supreme Court of + California
  • +

    -

    Use the list below to select the slip opinions certified for publication, or ordered published, that you want to view and click on the "view" button to activate your selection.

    +

    Use the pull-down menu below to select the slip opinions that you wish to view. After 120 days, these opinions + remain available via our Case Information + Search tool.

    +

    Please note that copies of published opinions may also be available from or searchable through sources other than + this website.

    +
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date Posted
    Docket #/
    File Format
    Description

    +

    Apr 16, 2024D081050
    [PDF]
    [DOC]
    P. v. Barooshian 4/16/24 CA4/1  Case Details
    Apr 15, 2024D083310
    [PDF]
    [DOC]
    P. v. Flores 4/15/24 CA4/1  Case Details
    Apr 12, 2024D081984
    [PDF]
    [DOC]
    Mission Springs Water Dist. v. Desert Water Agency 3/20/24 CA4/1  Case Details
    Apr 03, 2024D081445
    [PDF]
    [DOC]
    P. v. Brown 3/26/24 CA4/1  Case Details
    Mar 29, 2024D082754
    [PDF]
    [DOC]
    P. v. Ayala 3/29/24 CA4/1  Case Details
    Mar 27, 2024D081369
    [PDF]
    [DOC]
    P. v. McClelland 3/27/24 CA4/1  Case Details
    Mar 25, 2024D081132
    [PDF]
    [DOC]
    Brooklyn Restaurants, Inc. v. Sentinel Ins. Co., Ltd. 3/20/24 CA4/1  + Case Details
    Mar 15, 2024D083006
    [PDF]
    [DOC]
    Davis v. Nissan North America, Inc. 3/15/24 CA4/1  Case Details
    Mar 08, 2024D081492
    [PDF]
    [DOC]
    G.F. Galaxy Corp. v. Johnson 2/26/24 CA4/1  Case Details
    Mar 08, 2024D080671
    [PDF]
    [DOC]
    P. v. Ashford University, LLC 2/20/24 CA4/1  Case Details
    Mar 07, 2024D081549
    [PDF]
    [DOC]
    Jackson v. Lara et al. 3/7/24 CA4/1  Case Details
    Mar 07, 2024D082723
    [PDF]
    [DOC]
    In re P.L. et al. 2/8/24 CA4/1  Case Details   Related + Case: D082853 +
    Feb 26, 2024D082071
    [PDF]
    [DOC]
    P. v. Gaillard 2/26/24 CA4/1  Case Details
    Feb 26, 2024D081431
    [PDF]
    [DOC]
    Molinar v. 21st Century Ins. Co. 2/26/24 CA4/1  Case Details
    Feb 21, 2024D081713
    [PDF]
    [DOC]
    P. v. Garcia 2/21/24 CA4/1  Case Details
    Feb 20, 2024D080978
    [PDF]
    [DOC]
    Andrade v. Western Riverside Council of Governments 2/20/24 CA4/1  Case Details
    Feb 20, 2024D080114
    [PDF]
    [DOC]
    P. v. Rouston 2/20/24 CA4/1  Case Details
    Feb 16, 2024D080977A
    [PDF]
    [DOC]
    Marriage of Tara and Robert D. 2/16/24 CA4/1  Case Details
    Feb 16, 2024D081124
    [PDF]
    [DOC]
    Hilltop Group, Inc. v. County of San Diego 2/16/24 CA4/1  Case Details
    Feb 16, 2024D080977
    [PDF]
    [DOC]
    Marriage of Tara and Robert D. 2/16/24 CA4/1  Case Details
    Feb 15, 2024D080606M
    [PDF]
    [DOC]
    P. v. Cartwright 2/15/24 CA4/1  Case Details
    Feb 14, 2024D082615
    [PDF]
    [DOC]
    In re H.D. 2/14/24 CA4/1  Case Details
    Feb 14, 2024D082187
    [PDF]
    [DOC]
    Bonds v. Super. Ct. 2/14/24 CA4/1  Case Details
    Feb 06, 2024D081267M
    [PDF]
    [DOC]
    P. v. Jimenez 2/6/24 CA4/1  Case Details
    Feb 02, 2024D081267
    [PDF]
    [DOC]
    P. v. Jimenez 1/3/24 CA4/1  Case Details
    Jan 31, 2024D079905M
    [PDF]
    [DOC]
    Epochal Enterprises, Inc. v. LF Encinitas Properties, LLC 1/31/24 + CA4/1  Case Details
    Jan 30, 2024D080776
    [PDF]
    [DOC]
    P. v. Brooks 1/30/24 CA4/1  Case Details
    Jan 25, 2024D079905
    [PDF]
    [DOC]
    Epochal Enterprises, Inc. v. LF Encinitas Properties, LLC 1/12/24 + CA4/1  Case Details
    Jan 25, 2024D080606
    [PDF]
    [DOC]
    P. v. Cartwright 1/25/24 CA4/1  Case Details
    Jan 24, 2024D082429
    [PDF]
    [DOC]
    Suarez v. Super. Ct. 1/24/24 CA4/1  Case Details
    Jan 22, 2024D080902
    [PDF]
    [DOC]
    Natural Resources Defense Council v. City of Los Angeles 12/29/23 + CA4/1  Case Details
    Jan 09, 2024D082443
    [PDF]
    [DOC]
    Sarmiento v. Super. Ct. 1/9/24 CA4/1  Case Details
    Jan 04, 2024D082229
    [PDF]
    [DOC]
    Garner v. BNSF Railway Co. 1/4/24 CA4/1  Case Details
    +

    -

    -


    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Date Posted
    Docket #/
    File Format
    Description

    Jul 19 2013D060621
    [PDF] [DOC]

    Happy Nails & Spa v. Su 7/19/13 CA4/1 -  Case Details
    Jul 18 2013D060064
    [PDF] [DOC]

    Acuna v. San Diego Gas & Electric 6/19/13 CA4/1 -  Case Details
    Jul 10 2013D060260M
    [PDF] [DOC]

    Dana Point v. Cal. Coastal Com. 7/10/13 CA4/1 -  Case Details
    Jun 28 2013D062817
    [PDF] [DOC]

    In re Oscar A. 6/28/13 CA4/1 -  Case Details
    Jun 21 2013D061261A
    [PDF] [DOC]

    SB Liberty v. Isla Verde Asso. 5/22/13 CA4/1 -  Case Details
    Jun 17 2013D060260
    [PDF] [DOC]

    Dana Point v. Cal. Coastal Com. 6/17/13 CA4/1 -  Case Details
    Jun 14 2013D063023
    [PDF] [DOC]

    In re T.V. 5/29/13 CA4/1 -  Case Details
    Jun 11 2013D061715
    [PDF] [DOC]

    City of San Diego v. Boggess 5/15/13 CA4/1 -  Case Details
    Jun 11 2013D061056
    [PDF] [DOC]

    Do v. The Regents of the University of California 5/13/13 CA4/1 -  Case Details
    Jun 11 2013D062550
    [PDF] [DOC]

    State Farm v. Huff 6/11/13 CA4/1 -  Case Details
    Jun 03 2013D062005
    [PDF] [DOC]

    P. v. Woodall 5/13/13 CA4/1 -  Case Details
    May 29 2013D062693
    [PDF] [DOC]

    P. v. Loper 5/29/13 CA4/1 -  Case Details
    May 23 2013D062195
    [PDF] [DOC]

    Ronay Family L.P. v. Tweed 5/23/13 CA4/1 -  Case Details
    May 22 2013D061891
    [PDF] [DOC]

    In re Timothy N. 5/22/13 CA4/1 -  Case Details
    May 20 2013D061077
    [PDF] [DOC]

    In re Tobacco Cases I 4/26/13 CA4/1 -  Case Details
    May 16 2013D060829
    [PDF] [DOC]

    Landstar Global v. Robinson & Robinson 5/16/13 CA4/1 -  Case Details
    May 13 2013D062125
    [PDF] [DOC]

    P. v. Zavala 5/13/13 CA4/1 -  Case Details
    May 06 2013D063022
    [PDF] [DOC]

    Sisson v. Super. Ct. 5/6/13 CA4/1 -  Case Details
    Apr 29 2013D063076M
    [PDF] [DOC]

    Battaglia Enterprises v. Super. Ct. 4/29/13 CA4/1 -  Case Details
    Apr 29 2013D060029
    [PDF] [DOC]

    Jameson v. Desta 4/29/13 CA4/1 -  Case Details
    Apr 26 2013D061653
    [PDF] [DOC]

    CA Dept. of Corr. v. St. Personnel Bd. 4/26/13 CA4/1 -  Case Details
    Apr 25 2013D060999
    [PDF] [DOC]

    Taxpayers etc. v. San Diego USD 3/26/13 CA4/1 -  Case Details
    Apr 22 2013D060057
    [PDF] [DOC]

    Ramirez v. Balboa Thrift etc. 3/21/13 CA4/1 -  Case Details
    Apr 19 2013D062081
    [PDF] [DOC]

    In re Curtis S. 4/19/13 CA4/1 -  Case Details
    Apr 19 2013D059976
    [PDF] [DOC]

    Chanda v. Federal Home Loans Corp. 4/19/13 CA4/1 -  Case Details
    Apr 18 2013D060557
    [PDF] [DOC]

    Marr. of Simmons 4/18/13 CA4/1 -  Case Details
    Apr 17 2013D060906
    [PDF] [DOC]

    Kleveland v. Siegel & Wolensky 4/17/13 CA4/1 -  Case Details
    Apr 15 2013D061121
    [PDF] [DOC]

    Coastside Fishing Club v. Cal. Fish and Game Com. 4/15/13 CA4/1 -  Case Details
    Apr 15 2013D060317A
    [PDF] [DOC]

    P. v. Smith 4/15/13 CA4/1 -  Case Details
    Apr 11 2013D063076
    [PDF] [DOC]

    Battaglia Enterprises v. Super. Ct. 4/11/13 CA4/1 -  Case Details
    Apr 09 2013D059607
    [PDF] [DOC]

    P. v. Evans 4/9/13 CA4/1 -  Case Details
    Apr 03 2013D060381
    [PDF] [DOC]

    Bedoe v. San Diego Cty. 4/3/13 CA4/1 -  Case Details
    Mar 29 2013D062007
    [PDF] [DOC]

    P. v. Mora 3/29/13 CA4/1 -  Case Details
    Mar 28 2013D060776
    [PDF] [DOC]

    Quigley v. McClellan 3/12/13 CA4/1 -  Case Details
    Mar 27 2013D061055M
    [PDF] [DOC]

    Dailey v. Sears, Roebuck 3/27/13 CA4/1 -  Case Details
    Mar 27 2013D061960
    [PDF] [DOC]

    In re T.W. 3/5/13 CA4/1 -  Case Details
    Mar 26 2013D059035
    [PDF] [DOC]

    San Diego USD v. Com. on Prof. Competence 3/26/13 CA4/1 -  Case Details
    Mar 25 2013D062995
    [PDF] [DOC]

    Centex Homes v. Super. Ct. 3/25/13 CA4/1 -  Case Details
    -

    + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_4th_div2_example.compare.json b/tests/examples/opinions/united_states/calctapp_4th_div2_example.compare.json index 153bfff6a..11ac1d0fc 100644 --- a/tests/examples/opinions/united_states/calctapp_4th_div2_example.compare.json +++ b/tests/examples/opinions/united_states/calctapp_4th_div2_example.compare.json @@ -1,134 +1,167 @@ [ { - "case_dates": "2013-07-19", - "case_names": "People v. Davis", - "download_urls": "/opinions/documents/E056019.PDF", + "case_dates": "2024-04-24", + "case_names": "Dougherty v. U.S. Behavioral Health Plan", + "download_urls": "/opinions/documents/E079741.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 2", - "docket_numbers": "E056019", - "case_name_shorts": "Davis" + "docket_numbers": "E079741", + "case_name_shorts": "Dougherty" }, { - "case_dates": "2013-06-25", - "case_names": "People v. Hernandez", - "download_urls": "/opinions/documents/E054160.PDF", + "case_dates": "2024-04-11", + "case_names": "People v. Lewis", + "download_urls": "/opinions/documents/E082085.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 2", - "docket_numbers": "E054160", - "case_name_shorts": "Hernandez" + "docket_numbers": "E082085", + "case_name_shorts": "Lewis" }, { - "case_dates": "2013-06-17", - "case_names": "South. Cal. Edison v. Victorville", - "download_urls": "/opinions/documents/E053938.PDF", + "case_dates": "2024-03-07", + "case_names": "In re Miguel R.", + "download_urls": "/opinions/documents/E082250M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 2", - "docket_numbers": "E053938", - "case_name_shorts": "Victorville" + "docket_numbers": "E082250M", + "case_name_shorts": "" }, { - "case_dates": "2013-06-10", - "case_names": "People v. Lewis", - "download_urls": "/opinions/documents/E055569N.PDF", + "case_dates": "2024-03-01", + "case_names": "Lunsted v. Super. Ct.", + "download_urls": "/opinions/documents/E081770.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 2", - "docket_numbers": "E055569N", - "case_name_shorts": "Lewis" + "docket_numbers": "E081770", + "case_name_shorts": "Lunsted" }, { - "case_dates": "2013-06-04", - "case_names": "Grace v. Beaumont Unif. School Dist.", - "download_urls": "/opinions/documents/E054801.PDF", + "case_dates": "2024-03-01", + "case_names": "In re Miguel R.", + "download_urls": "/opinions/documents/E082250.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 2", - "docket_numbers": "E054801", - "case_name_shorts": "Grace" + "docket_numbers": "E082250", + "case_name_shorts": "" }, { - "case_dates": "2013-05-15", - "case_names": "People v. Lewis", - "download_urls": "/opinions/documents/E055569.PDF", + "case_dates": "2024-02-23", + "case_names": "People v. Mares", + "download_urls": "/opinions/documents/E080611.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 2", - "docket_numbers": "E055569", - "case_name_shorts": "Lewis" + "docket_numbers": "E080611", + "case_name_shorts": "Mares" }, { - "case_dates": "2013-04-30", - "case_names": "People v. Goolsby", - "download_urls": "/opinions/documents/E052297A.PDF", + "case_dates": "2024-02-22", + "case_names": "In re Samantha F.", + "download_urls": "/opinions/documents/E080888.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 2", - "docket_numbers": "E052297A", - "case_name_shorts": "Goolsby" + "docket_numbers": "E080888", + "case_name_shorts": "" }, { - "case_dates": "2013-04-26", - "case_names": "In re Marriage of Kahn", - "download_urls": "/opinions/documents/E054082.PDF", + "case_dates": "2024-02-14", + "case_names": "San Bernardino County Fire Protection Dist. v. Page", + "download_urls": "/opinions/documents/E079130.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 2", - "docket_numbers": "E054082", + "docket_numbers": "E079130", + "case_name_shorts": "Page" + }, + { + "case_dates": "2024-02-09", + "case_names": "Mosby v. Super. Ct.", + "download_urls": "/opinions/documents/E080924M.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "4th App. Dist. Div. 2", + "docket_numbers": "E080924M", + "case_name_shorts": "Mosby" + }, + { + "case_dates": "2024-02-07", + "case_names": "Symons Emergency Specialties v. City of Riverside CA4/2", + "download_urls": "/opinions/documents/E078113.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "4th App. Dist. Div. 2", + "docket_numbers": "E078113", "case_name_shorts": "" }, { - "case_dates": "2013-04-10", - "case_names": "People v. Kelly", - "download_urls": "/opinions/documents/E055263.PDF", + "case_dates": "2024-01-25", + "case_names": "Mosby v. Super. Ct.", + "download_urls": "/opinions/documents/E080924.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "4th App. Dist. Div. 2", + "docket_numbers": "E080924", + "case_name_shorts": "Mosby" + }, + { + "case_dates": "2024-01-24", + "case_names": "Kinney v. City of Corona", + "download_urls": "/opinions/documents/E079840.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 2", - "docket_numbers": "E055263", - "case_name_shorts": "Kelly" + "docket_numbers": "E079840", + "case_name_shorts": "Kinney" }, { - "case_dates": "2013-04-10", - "case_names": "People v. Cook", - "download_urls": "/opinions/documents/E054307M.PDF", + "case_dates": "2024-01-17", + "case_names": "J.R. v. Electronic Arts", + "download_urls": "/opinions/documents/E080414.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 2", - "docket_numbers": "E054307M", - "case_name_shorts": "Cook" + "docket_numbers": "E080414", + "case_name_shorts": "J.R." }, { - "case_dates": "2013-04-04", - "case_names": "People v. Lawson", - "download_urls": "/opinions/documents/E053349.PDF", + "case_dates": "2024-01-08", + "case_names": "Garcia v. Tempur-Pedic North America, LLC", + "download_urls": "/opinions/documents/E079859.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 2", - "docket_numbers": "E053349", - "case_name_shorts": "Lawson" + "docket_numbers": "E079859", + "case_name_shorts": "Garcia" }, { - "case_dates": "2013-03-29", - "case_names": "People v. Holman", - "download_urls": "/opinions/documents/E054989.PDF", + "case_dates": "2024-01-05", + "case_names": "Moten v. Transworld Systems Inc.", + "download_urls": "/opinions/documents/E078871.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 2", - "docket_numbers": "E054989", - "case_name_shorts": "Holman" + "docket_numbers": "E078871", + "case_name_shorts": "Moten" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_4th_div2_example.html b/tests/examples/opinions/united_states/calctapp_4th_div2_example.html index 3587885b9..e8a859e1e 100644 --- a/tests/examples/opinions/united_states/calctapp_4th_div2_example.html +++ b/tests/examples/opinions/united_states/calctapp_4th_div2_example.html @@ -1,68 +1,234 @@ - + + + + + + California Courts - Published Opinions + + - - -

    -
    -
    -

    Published Opinions

    -
    -
    + + +
    +
    +
    +
    +
    +
    -
    -

    Published Opinions of the appellate courts are opinions certified for publication or ordered published and may be cited or relied on by courts and parties.

    +

    Published or "citable" opinions of the appellate courts are opinions ordered published in the Official + Reports, and may be cited or relied on by other courts and parties.

    + +

    +

  • Official Reports Opinions + (Searchable 1850-Present) are the searchable, citable, published opinions that reflect + post filing corrections. This no-fee service is provided by LexisNexis.
  • +

    -

  • Official Reports Opinions (Searchable 1850-Present) are the searchable, citable, published opinions that reflect postfiling corrections. This no-fee service is provided by LexisNexis.
  • +

    +

  • Slip Opinions are as-filed versions of opinions certified for publication or ordered + published; they do not reflect enhancement, editing, and correction for the Official Reports. Slip + opinions from the last 120 days are posted together on this page as public information about actions taken + by the courts.
  • +

    -

  • Slip Opinions are as-filed versions of opinions. Slip opinions certified for publication do not reflect enhancement, editing and correction for the Official Reports.
  • +

    +

  • Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court + of Appeal slip opinions are posted throughout the day as soon after filing as possible.
  • +

    -

    Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court of Appeal slip opinions are posted throughout the day as soon after filing as possible.

    +

    +

  • Archive of Web Pages Cited in Opinions Issued by the Supreme Court of + California
  • +

    -

    Use the list below to select the slip opinions certified for publication, or ordered published, that you want to view and click on the "view" button to activate your selection.

    +

    Use the pull-down menu below to select the slip opinions that you wish to view. After 120 days, these opinions + remain available via our Case Information + Search tool.

    +

    Please note that copies of published opinions may also be available from or searchable through sources other than + this website.

    +
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date Posted
    Docket #/
    File Format
    Description

    +

    Apr 24, 2024E079741
    [PDF]
    [DOC]
    Dougherty v. U.S. Behavioral Health Plan 4/24/24 CA4/2  Case Details
    Apr 11, 2024E082085
    [PDF]
    [DOC]
    P. v. Lewis 1/3/24 CA4/2  Case Details
    Mar 07, 2024E082250M
    [PDF]
    [DOC]
    In re Miguel R. 3/7/24 CA4/2  Case Details
    Mar 01, 2024E081770
    [PDF]
    [DOC]
    Lunsted v. Super. Ct. 3/1/24 CA4/2  Case Details
    Mar 01, 2024E082250
    [PDF]
    [DOC]
    In re Miguel R. 3/1/24 CA4/2  Case Details
    Feb 23, 2024E080611
    [PDF]
    [DOC]
    P. v. Mares 2/23/24 CA4/2  Case Details
    Feb 22, 2024E080888
    [PDF]
    [DOC]
    In re Samantha F. 2/22/24 CA4/2  Case Details
    Feb 14, 2024E079130
    [PDF]
    [DOC]
    San Bernardino County Fire Protection Dist. v. Page 2/14/24 CA4/2  Case Details
    Feb 09, 2024E080924M
    [PDF]
    [DOC]
    Mosby v. Super. Ct. 2/9/24 CA4/2  Case Details
    Feb 07, 2024E078113
    [PDF]
    [DOC]
    Symons Emergency Specialties v. City of Riverside CA4/2  Case Details
    Jan 25, 2024E080924
    [PDF]
    [DOC]
    Mosby v. Super. Ct. 1/25/24 CA4/2  Case Details
    Jan 24, 2024E079840
    [PDF]
    [DOC]
    Kinney v. City of Corona 12/29/23 CA4/2  Case Details
    Jan 17, 2024E080414
    [PDF]
    [DOC]
    J.R. v. Electronic Arts 1/17/24 CA4/2  Case Details
    Jan 08, 2024E079859
    [PDF]
    [DOC]
    Garcia v. Tempur-Pedic North America, LLC 1/8/24 CA4/2  Case Details
    Jan 05, 2024E078871
    [PDF]
    [DOC]
    Moten v. Transworld Systems Inc. 12/18/23 CA4/2  Case Details
    +

    -

    -


    - - - - - - - - - - - - - - -
    Date Posted
    Docket #/
    File Format
    Description

    Jul 19 2013E056019
    [PDF] [DOC]

    P. v. Davis 6/28/13 CA4/2 -  Case Details
    Jun 25 2013E054160
    [PDF] [DOC]

    P. v. Hernandez 6/25/13 CA4/2 -  Case Details
    Jun 17 2013E053938
    [PDF] [DOC]

    South. Cal. Edison v. Victorville 6/17/13 CA4/2 -  Case Details
    Jun 10 2013E055569N
    [PDF] [DOC]

    P. v. Lewis 6/10/13 CA4/2 -  Case Details
    Jun 04 2013E054801
    [PDF] [DOC]

    Grace v. Beaumont Unif. School Dist. 6/4/13 CA4/2 -  Case Details
    May 15 2013E055569
    [PDF] [DOC]

    P. v. Lewis 4/26/13 CA2/1 -  Case Details
    Apr 30 2013E052297A
    [PDF] [DOC]

    P. v. Goolsby 4/30/13 CA4/2 -  Case Details
    Apr 26 2013E054082
    [PDF] [DOC]

    In re Marriage of Kahn 4/26/13 CA4/2 -  Case Details
    Apr 10 2013E055263
    [PDF] [DOC]

    P. v. Kelly 4/10/13 CA4/2 -  Case Details
    Apr 10 2013E054307M
    [PDF] [DOC]

    P. v. Cook 3/26/13 CA4/2 -  Case Details
    Apr 04 2013E053349
    [PDF] [DOC]

    P. v. Lawson 4/4/13 CA4/2 -  Case Details
    Mar 29 2013E054989
    [PDF] [DOC]

    P. v. Holman 3/29/13 CA4/2 -  Case Details
    -

    + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_4th_div3_example.compare.json b/tests/examples/opinions/united_states/calctapp_4th_div3_example.compare.json index b65096f3f..a438f67c0 100644 --- a/tests/examples/opinions/united_states/calctapp_4th_div3_example.compare.json +++ b/tests/examples/opinions/united_states/calctapp_4th_div3_example.compare.json @@ -1,354 +1,178 @@ [ { - "case_dates": "2013-07-18", - "case_names": "People v. Perez", - "download_urls": "/opinions/documents/G046032A.PDF", + "case_dates": "2024-04-22", + "case_names": "People v. Lezama", + "download_urls": "/opinions/documents/G062075.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046032A", - "case_name_shorts": "Perez" + "docket_numbers": "G062075", + "case_name_shorts": "Lezama" }, { - "case_dates": "2013-07-18", - "case_names": "Natalie D. v. State Dept. Health Care Services", - "download_urls": "/opinions/documents/G047100.PDF", + "case_dates": "2024-04-18", + "case_names": "Semprini v. Wedbush Securities Inc.", + "download_urls": "/opinions/documents/G062622.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G047100", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-18", - "case_names": "Baughman v. Walt Disney World", - "download_urls": "/opinions/documents/G046470.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046470", - "case_name_shorts": "Baughman" - }, - { - "case_dates": "2013-07-15", - "case_names": "Abers v. Rohrs", - "download_urls": "/opinions/documents/G047034.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G047034", - "case_name_shorts": "Abers" - }, - { - "case_dates": "2013-07-11", - "case_names": "Marr. of Ficke", - "download_urls": "/opinions/documents/G046263M.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046263M", - "case_name_shorts": "Marr. of Ficke" - }, - { - "case_dates": "2013-07-10", - "case_names": "Orange Citizens v. Super. Ct.", - "download_urls": "/opinions/documents/G047013.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G047013", - "case_name_shorts": "" + "docket_numbers": "G062622", + "case_name_shorts": "Semprini" }, { - "case_dates": "2013-07-01", - "case_names": "SFPP v. Public Util. Com.", - "download_urls": "/opinions/documents/G046669.PDF", + "case_dates": "2024-03-22", + "case_names": "People v. Morris", + "download_urls": "/opinions/documents/G061916.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046669", - "case_name_shorts": "SFPP" - }, - { - "case_dates": "2013-07-01", - "case_names": "Havasu Lakeshore v. Fleming", - "download_urls": "/opinions/documents/G047244A.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G047244A", - "case_name_shorts": "Fleming" - }, - { - "case_dates": "2013-06-28", - "case_names": "Jointer v. Super. Ct.", - "download_urls": "/opinions/documents/G047824.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G047824", - "case_name_shorts": "Jointer" - }, - { - "case_dates": "2013-06-27", - "case_names": "Thompson v. Automobile Club etc.", - "download_urls": "/opinions/documents/G046759.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046759", - "case_name_shorts": "Thompson" - }, - { - "case_dates": "2013-06-27", - "case_names": "Interstate Specialty v. ICRA Sapphire", - "download_urls": "/opinions/documents/G047376.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G047376", - "case_name_shorts": "" + "docket_numbers": "G061916", + "case_name_shorts": "Morris" }, { - "case_dates": "2013-06-26", - "case_names": "Wittenburg v. Beachwalk Homeowners", - "download_urls": "/opinions/documents/G046891.PDF", + "case_dates": "2024-03-15", + "case_names": "Gomez v. Super. Ct.", + "download_urls": "/opinions/documents/G062526.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046891", - "case_name_shorts": "Wittenburg" + "docket_numbers": "G062526", + "case_name_shorts": "Gomez" }, { - "case_dates": "2013-06-26", - "case_names": "Marr. of Greenway", - "download_urls": "/opinions/documents/G045949.PDF", + "case_dates": "2024-03-08", + "case_names": "Applied Medical Distribution Corp. v. Jarrells", + "download_urls": "/opinions/documents/G062056.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G045949", - "case_name_shorts": "Marr. of Greenway" + "docket_numbers": "G062056", + "case_name_shorts": "Jarrells" }, { - "case_dates": "2013-06-25", - "case_names": "Curry v. Super. Ct.", - "download_urls": "/opinions/documents/G047000.PDF", + "case_dates": "2024-03-07", + "case_names": "People v. Lewis", + "download_urls": "/opinions/documents/G060049A.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G047000", - "case_name_shorts": "Curry" + "docket_numbers": "G060049A", + "case_name_shorts": "Lewis" }, { - "case_dates": "2013-06-19", - "case_names": "People v. Rodriguez", - "download_urls": "/opinions/documents/G046899.PDF", + "case_dates": "2024-02-28", + "case_names": "Persiani v. Super. Ct.", + "download_urls": "/opinions/documents/G062648.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046899", - "case_name_shorts": "Rodriguez" + "docket_numbers": "G062648", + "case_name_shorts": "Persiani" }, { - "case_dates": "2013-06-19", - "case_names": "In re R.V.", - "download_urls": "/opinions/documents/G046961.PDF", + "case_dates": "2024-02-27", + "case_names": "People v. Robinson", + "download_urls": "/opinions/documents/G063090.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046961", - "case_name_shorts": "In re R.V." + "docket_numbers": "G063090", + "case_name_shorts": "Robinson" }, { - "case_dates": "2013-06-19", - "case_names": "Havasu Lakeshore v. Fleming", - "download_urls": "/opinions/documents/G047244.PDF", + "case_dates": "2024-02-23", + "case_names": "People v. Rios", + "download_urls": "/opinions/documents/G061764.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G047244", - "case_name_shorts": "Fleming" + "docket_numbers": "G061764", + "case_name_shorts": "Rios" }, { - "case_dates": "2013-06-14", - "case_names": "Scott B. v. Bd. of Trustees Orange Co. High School", - "download_urls": "/opinions/documents/G047177.PDF", + "case_dates": "2024-02-23", + "case_names": "People v. McDowell", + "download_urls": "/opinions/documents/G062263.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G047177", - "case_name_shorts": "" + "docket_numbers": "G062263", + "case_name_shorts": "McDowell" }, { - "case_dates": "2013-06-13", - "case_names": "Teva Pharmaceuticals v. Super. Ct.", - "download_urls": "/opinions/documents/G047134.PDF", + "case_dates": "2024-02-09", + "case_names": "BioCorRx, Inc. v. VDM Biochemicals, Inc.", + "download_urls": "/opinions/documents/G061535A.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G047134", + "docket_numbers": "G061535A", "case_name_shorts": "" }, { - "case_dates": "2013-06-12", - "case_names": "People v. Eid", - "download_urls": "/opinions/documents/G046129M.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046129M", - "case_name_shorts": "Eid" - }, - { - "case_dates": "2013-06-12", - "case_names": "Marr. of Ficke", - "download_urls": "/opinions/documents/G046263.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046263", - "case_name_shorts": "Marr. of Ficke" - }, - { - "case_dates": "2013-06-12", - "case_names": "Jenkins v. JP Morgan", - "download_urls": "/opinions/documents/G046121M.PDF", + "case_dates": "2024-02-08", + "case_names": "Mojave Pistachios, LLC v. Super. Ct.", + "download_urls": "/opinions/documents/G062327.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046121M", - "case_name_shorts": "Jenkins" - }, - { - "case_dates": "2013-06-12", - "case_names": "Asso. of Deputy Sheriffs v. Cty. of Orange", - "download_urls": "/opinions/documents/G047167.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G047167", + "docket_numbers": "G062327", "case_name_shorts": "" }, { - "case_dates": "2013-05-22", - "case_names": "People v. Eid", - "download_urls": "/opinions/documents/G046129.PDF", + "case_dates": "2024-02-08", + "case_names": "Marriage of Lietz", + "download_urls": "/opinions/documents/G061866.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046129", - "case_name_shorts": "Eid" + "docket_numbers": "G061866", + "case_name_shorts": "Marriage of Lietz" }, { - "case_dates": "2013-05-17", - "case_names": "Jenkins v. JP Morgan Chase", - "download_urls": "/opinions/documents/G046121.PDF", + "case_dates": "2024-02-05", + "case_names": "Neeble-Diamond v. Hotel Calif. By the Sea, LLC", + "download_urls": "/opinions/documents/G061425.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046121", - "case_name_shorts": "Jenkins" + "docket_numbers": "G061425", + "case_name_shorts": "Neeble-Diamond" }, { - "case_dates": "2013-05-10", - "case_names": "Faulkinbury v. Boyd & Associates", - "download_urls": "/opinions/documents/G041702.PDF", + "case_dates": "2024-02-05", + "case_names": "M.A. v. B.F.", + "download_urls": "/opinions/documents/G061598.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G041702", - "case_name_shorts": "Faulkinbury" + "docket_numbers": "G061598", + "case_name_shorts": "M.A." }, { - "case_dates": "2013-05-08", - "case_names": "Kurtin v. Elieff", - "download_urls": "/opinions/documents/G043999N.PDF", + "case_dates": "2024-01-09", + "case_names": "Adams v. Dept of Corrections and Rehabilitation", + "download_urls": "/opinions/documents/G062782.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G043999N", - "case_name_shorts": "Kurtin" - }, - { - "case_dates": "2013-04-30", - "case_names": "Copenbarger v. Morris Cerullo World Evangelism", - "download_urls": "/opinions/documents/G046273.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046273", - "case_name_shorts": "Copenbarger" - }, - { - "case_dates": "2013-04-16", - "case_names": "Kurtin v. Elieff", - "download_urls": "/opinions/documents/G043999A.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G043999A", - "case_name_shorts": "Kurtin" - }, - { - "case_dates": "2013-03-28", - "case_names": "People v. McDonald", - "download_urls": "/opinions/documents/G044963.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G044963", - "case_name_shorts": "McDonald" - }, - { - "case_dates": "2013-03-27", - "case_names": "Soco West v. Cal. Environmental Protection", - "download_urls": "/opinions/documents/G046549M.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G046549M", - "case_name_shorts": "" - }, - { - "case_dates": "2013-03-26", - "case_names": "Fabian L. v. Super. Ct.", - "download_urls": "/opinions/documents/G047627M.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "4th App. Dist. Div. 3", - "docket_numbers": "G047627M", - "case_name_shorts": "" + "docket_numbers": "G062782", + "case_name_shorts": "Adams" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_4th_div3_example.html b/tests/examples/opinions/united_states/calctapp_4th_div3_example.html index 945126c1b..1d81e465c 100644 --- a/tests/examples/opinions/united_states/calctapp_4th_div3_example.html +++ b/tests/examples/opinions/united_states/calctapp_4th_div3_example.html @@ -1,108 +1,242 @@ - + + + + + + California Courts - Published Opinions + - - -

    -
    -
    -

    Published Opinions

    -
    -
    + + +
    +
    +
    +
    +
    +
    -
    -

    Published Opinions of the appellate courts are opinions certified for publication or ordered published and may be cited or relied on by courts and parties.

    +

    Published or "citable" opinions of the appellate courts are opinions ordered published in the Official + Reports, and may be cited or relied on by other courts and parties.

    -

  • Official Reports Opinions (Searchable 1850-Present) are the searchable, citable, published opinions that reflect postfiling corrections. This no-fee service is provided by LexisNexis.
  • +

    +

  • Official Reports Opinions + (Searchable 1850-Present) are the searchable, citable, published opinions that reflect + post filing corrections. This no-fee service is provided by LexisNexis.
  • +

    -

  • Slip Opinions are as-filed versions of opinions. Slip opinions certified for publication do not reflect enhancement, editing and correction for the Official Reports.
  • +

    +

  • Slip Opinions are as-filed versions of opinions certified for publication or ordered + published; they do not reflect enhancement, editing, and correction for the Official Reports. Slip + opinions from the last 120 days are posted together on this page as public information about actions taken + by the courts.
  • +

    -

    Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court of Appeal slip opinions are posted throughout the day as soon after filing as possible.

    +

    +

  • Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court + of Appeal slip opinions are posted throughout the day as soon after filing as possible.
  • +

    -

    Use the list below to select the slip opinions certified for publication, or ordered published, that you want to view and click on the "view" button to activate your selection.

    +

    +

  • Archive of Web Pages Cited in Opinions Issued by the Supreme Court of + California
  • +

    +

    Use the pull-down menu below to select the slip opinions that you wish to view. After 120 days, these opinions + remain available via our Case Information + Search tool.

    -
    -


    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Date Posted
    Docket #/
    File Format
    Description

    Jul 18 2013G047100
    [PDF] [DOC]

    Natalie D. v. State Dept. Health Care Services 7/18/13 CA4/3 -  Case Details
    Jul 18 2013G046470
    [PDF] [DOC]

    Baughman v. Walt Disney World 7/18/13 CA4/3 -  Case Details
    Jul 18 2013G046032A
    [PDF] [DOC]

    P. v. Perez 2/4/13 CA4/3 -  Case Details
    Jul 15 2013G047034
    [PDF] [DOC]

    Abers v. Rohrs 6/13/13 CA4/3 -  Case Details
    Jul 11 2013G046263M
    [PDF] [DOC]

    Marr. of Ficke 7/11/13 CA4/3 -  Case Details
    Jul 10 2013G047013
    [PDF] [DOC]

    Orange Citizens v. Super. Ct. 7/10/13 CA4/3 -  Case Details
    Jul 01 2013G046669
    [PDF] [DOC]

    SFPP v. Public Util. Com. 6/13/13 CA4/3 -  Case Details
    Jul 01 2013G047244A
    [PDF] [DOC]

    Havasu Lakeshore v. Fleming 5/28/13 CA4/3 -  Case Details
    Jun 28 2013G047824
    [PDF] [DOC]

    Jointer v. Super. Ct. 6/28/13 CA4/3 -  Case Details
    Jun 27 2013G046759
    [PDF] [DOC]

    Thompson v. Automobile Club etc. 6/7/13 CA4/3 -  Case Details
    Jun 27 2013G047376
    [PDF] [DOC]

    Interstate Specialty v. ICRA Sapphire 6/27/13 CA4/3 -  Case Details
    Jun 26 2013G045949
    [PDF] [DOC]

    Marr. of Greenway 6/3/13 CA4/3 -  Case Details
    Jun 26 2013G046891
    [PDF] [DOC]

    Wittenburg v. Beachwalk Homeowners 6/26/13 CA4/3 -  Case Details
    Jun 25 2013G047000
    [PDF] [DOC]

    Curry v. Super. Ct. 6/25/13 CA4/3 -  Case Details
    Jun 19 2013G046899
    [PDF] [DOC]

    P. v. Rodriguez 6/13/13 CA4/3 -  Case Details
    Jun 19 2013G046961
    [PDF] [DOC]

    In re R.V. 6/19/13 CA4/3 -  Case Details
    Jun 19 2013G047244
    [PDF] [DOC]

    Havasu Lakeshore v. Fleming 5/28/13 CA4/3 -  Case Details
    Jun 14 2013G047177
    [PDF] [DOC]

    Scott B. v. Bd. of Trustees Orange Co. High School 6/14/13 CA4/3 -  Case Details
    Jun 13 2013G047134
    [PDF] [DOC]

    Teva Pharmaceuticals v. Super. Ct. 6/13/13 CA4/3 -  Case Details
    Jun 12 2013G046121M
    [PDF] [DOC]

    Jenkins v. JP Morgan 6/12/13 CA4/3 -  Case Details
    Jun 12 2013G046129M
    [PDF] [DOC]

    P. v. Eid 6/12/13 CA4/3 -  Case Details
    Jun 12 2013G047167
    [PDF] [DOC]

    Asso. of Deputy Sheriffs v. Cty. of Orange 6/12/13 CA4/3 -  Case Details
    Jun 12 2013G046263
    [PDF] [DOC]

    Marr. of Ficke 6/12/13 CA4/3 -  Case Details
    May 22 2013G046129
    [PDF] [DOC]

    P. v. Eid 5/22/13 CA4/3 -  Case Details
    May 17 2013G046121
    [PDF] [DOC]

    Jenkins v. JP Morgan Chase 5/17/13 CA4/3 -  Case Details
    May 10 2013G041702
    [PDF] [DOC]

    Faulkinbury v. Boyd & Associates 5/10/13 CA4/3 -  Case Details
    May 08 2013G043999N
    [PDF] [DOC]

    Kurtin v. Elieff 5/8/13 CA4/3 -  Case Details
    Apr 30 2013G046273
    [PDF] [DOC]

    Copenbarger v. Morris Cerullo World Evangelism 4/3/13 CA4/3 -  Case Details
    Apr 16 2013G043999A
    [PDF] [DOC]

    Kurtin v. Elieff 4/16/13 CA4/3 -  Case Details
    Mar 28 2013G044963
    [PDF] [DOC]

    P. v. McDonald 3/28/13 CA4/3 -  Case Details
    Mar 27 2013G046549M
    [PDF] [DOC]

    Soco West v. Cal. Environmental Protection 3/27/13 CA4/3 -  Case Details
    Mar 26 2013G047627M
    [PDF] [DOC]

    Fabian L. v. Super. Ct. 3/26/13 CA4/3 -  Case Details
    -

    +

    Please note that copies of published opinions may also be available from or searchable through sources other than + this website.

    +
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date Posted
    Docket #/
    File Format
    Description

    +

    Apr 22, 2024G062075
    [PDF]
    [DOC]
    P. v. Lezama 4/22/24 CA4/3  Case Details
    Apr 18, 2024G062622
    [PDF]
    [DOC]
    Semprini et al. v. Wedbush Securities Inc. 4/18/24 CA4/3  Case Details
    Mar 22, 2024G061916
    [PDF]
    [DOC]
    P. v. Morris 3/22/24 CA4/3  Case Details
    Mar 15, 2024G062526
    [PDF]
    [DOC]
    Gomez v. Super. Ct. 3/15/24 CA4/3  Case Details
    Mar 08, 2024G062056
    [PDF]
    [DOC]
    Applied Medical Distribution Corp. v. Jarrells 3/8/24 CA4/3  Case Details
    Mar 07, 2024G060049A
    [PDF]
    [DOC]
    P. v. Lewis 3/7/24 CA4/3  Case Details
    Feb 28, 2024G062648
    [PDF]
    [DOC]
    Persiani v. Super. Ct. 2/28/24 CA4/3  Case Details
    Feb 27, 2024G063090
    [PDF]
    [DOC]
    P. v. Robinson 2/27/24 CA4/3  Case Details
    Feb 23, 2024G062263
    [PDF]
    [DOC]
    P. v. McDowell 2/23/24 CA4/3  Case Details
    Feb 23, 2024G061764
    [PDF]
    [DOC]
    P. v. Rios 2/23/24 CA4/3  Case Details
    Feb 09, 2024G061535A
    [PDF]
    [DOC]
    BioCorRx, Inc. v. VDM Biochemicals, Inc. 2/9/24 CA4/3  Case Details
    Feb 08, 2024G062327
    [PDF]
    [DOC]
    Mojave Pistachios, LLC v. Super. Ct. 2/8/24 CA4/3  Case Details
    Feb 08, 2024G061866
    [PDF]
    [DOC]
    Marriage of Lietz 2/8/24 CA4/3  Case Details
    Feb 05, 2024G061425
    [PDF]
    [DOC]
    Neeble-Diamond v. Hotel Calif. By the Sea, LLC 1/11/24 CA4/3  Case Details
    Feb 05, 2024G061598
    [PDF]
    [DOC]
    M.A. v. B.F. 2/5/24 CA4/3  Case Details
    Jan 09, 2024G062782
    [PDF]
    [DOC]
    Adams v. Dept of Corrections and Rehabilitation 1/9/24 CA4/3  Case Details
    +

    + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_5th_example.compare.json b/tests/examples/opinions/united_states/calctapp_5th_example.compare.json index d4396e2ea..fb1b90238 100644 --- a/tests/examples/opinions/united_states/calctapp_5th_example.compare.json +++ b/tests/examples/opinions/united_states/calctapp_5th_example.compare.json @@ -1,189 +1,233 @@ [ { - "case_dates": "2013-07-17", - "case_names": "Bank of America v. Roberts", - "download_urls": "/opinions/documents/F064109.PDF", + "case_dates": "2024-04-25", + "case_names": "Williams v. Doctors Medical Center of Modesto", + "download_urls": "/opinions/documents/F084700M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F064109", - "case_name_shorts": "Roberts" + "docket_numbers": "F084700M", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-17", + "case_names": "People v. Gray", + "download_urls": "/opinions/documents/F085699M.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "5th App. Dist.", + "docket_numbers": "F085699M", + "case_name_shorts": "Gray" + }, + { + "case_dates": "2024-04-09", + "case_names": "People v. Carrillo", + "download_urls": "/opinions/documents/F084751M.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "5th App. Dist.", + "docket_numbers": "F084751M", + "case_name_shorts": "Carrillo" + }, + { + "case_dates": "2024-04-04", + "case_names": "People v. Gray", + "download_urls": "/opinions/documents/F085699.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "5th App. Dist.", + "docket_numbers": "F085699", + "case_name_shorts": "Gray" }, { - "case_dates": "2013-07-15", - "case_names": "POET v. Air Resources Bd.", - "download_urls": "/opinions/documents/F064045.PDF", + "case_dates": "2024-04-04", + "case_names": "Knudsen v. Dept. of Motor Vehicles", + "download_urls": "/opinions/documents/F085992.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F064045", - "case_name_shorts": "POET" + "docket_numbers": "F085992", + "case_name_shorts": "Knudsen" }, { - "case_dates": "2013-07-08", - "case_names": "Citzens for Ceres v. Super. Ct.", - "download_urls": "/opinions/documents/F065690.PDF", + "case_dates": "2024-03-27", + "case_names": "Williams v. Doctors Medical Center of Modesto", + "download_urls": "/opinions/documents/F084700.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F065690", + "docket_numbers": "F084700", "case_name_shorts": "" }, { - "case_dates": "2013-07-01", - "case_names": "In re Cabrera", - "download_urls": "/opinions/documents/F059511N.PDF", + "case_dates": "2024-03-27", + "case_names": "People v. Rojas", + "download_urls": "/opinions/documents/F080361A.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F059511N", - "case_name_shorts": "In re Cabrera" + "docket_numbers": "F080361A", + "case_name_shorts": "Rojas" }, { - "case_dates": "2013-06-13", - "case_names": "People v. Pizarro", - "download_urls": "/opinions/documents/F057722N.PDF", + "case_dates": "2024-03-18", + "case_names": "Kern County Hospital Authority v. Public Employment Relations Bd.", + "download_urls": "/opinions/documents/F085586.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F057722N", - "case_name_shorts": "Pizarro" + "docket_numbers": "F085586", + "case_name_shorts": "" }, { - "case_dates": "2013-06-11", - "case_names": "In re Cabrera", - "download_urls": "/opinions/documents/F059511A.PDF", + "case_dates": "2024-03-15", + "case_names": "People v. Carrillo", + "download_urls": "/opinions/documents/F084751.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F059511A", - "case_name_shorts": "In re Cabrera" + "docket_numbers": "F084751", + "case_name_shorts": "Carrillo" }, { - "case_dates": "2013-05-31", - "case_names": "San Joaquin Raptor Rescue Center v. Co. of Merced", - "download_urls": "/opinions/documents/F064930.PDF", + "case_dates": "2024-03-07", + "case_names": "V Lions Farming, LLC v. County of Kern", + "download_urls": "/opinions/documents/F084763.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F064930", + "docket_numbers": "F084763", "case_name_shorts": "" }, { - "case_dates": "2013-05-30", - "case_names": "Estate of Bonzi", - "download_urls": "/opinions/documents/F065067.PDF", + "case_dates": "2024-03-01", + "case_names": "TRC Operating Co. v. Shabazian", + "download_urls": "/opinions/documents/F085832.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F065067", - "case_name_shorts": "Estate of Bonzi" + "docket_numbers": "F085832", + "case_name_shorts": "Shabazian" }, { - "case_dates": "2013-05-23", - "case_names": "People v. Pizarro", - "download_urls": "/opinions/documents/F057722A.PDF", + "case_dates": "2024-02-27", + "case_names": "People v. Lopez", + "download_urls": "/opinions/documents/F086179.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F057722A", - "case_name_shorts": "Pizarro" + "docket_numbers": "F086179", + "case_name_shorts": "Lopez" }, { - "case_dates": "2013-05-15", - "case_names": "Castleman v. Sagaser", - "download_urls": "/opinions/documents/F064590.PDF", + "case_dates": "2024-02-26", + "case_names": "People v. Patterson", + "download_urls": "/opinions/documents/F086065.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F064590", - "case_name_shorts": "Castleman" + "docket_numbers": "F086065", + "case_name_shorts": "Patterson" }, { - "case_dates": "2013-05-02", - "case_names": "People v. Xiong", - "download_urls": "/opinions/documents/F062474M.PDF", + "case_dates": "2024-02-26", + "case_names": "Jones v. Solgen Construction", + "download_urls": "/opinions/documents/F085918.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F062474M", - "case_name_shorts": "Xiong" + "docket_numbers": "F085918", + "case_name_shorts": "Jones" }, { - "case_dates": "2013-04-30", - "case_names": "People v. Xiong", - "download_urls": "/opinions/documents/F062474.PDF", + "case_dates": "2024-01-23", + "case_names": "People v. Gonzalez", + "download_urls": "/opinions/documents/F084952.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F062474", - "case_name_shorts": "Xiong" + "docket_numbers": "F084952", + "case_name_shorts": "Gonzalez" }, { - "case_dates": "2013-04-29", - "case_names": "In re Robert M.", - "download_urls": "/opinions/documents/F064841.PDF", + "case_dates": "2024-01-22", + "case_names": "People v. Campos", + "download_urls": "/opinions/documents/F084307.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F064841", - "case_name_shorts": "" + "docket_numbers": "F084307", + "case_name_shorts": "Campos" }, { - "case_dates": "2013-04-29", - "case_names": "Cty. of Tulare v. Nunes", - "download_urls": "/opinions/documents/F063555.PDF", + "case_dates": "2024-01-18", + "case_names": "People v. Fouse", + "download_urls": "/opinions/documents/F085131.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F063555", - "case_name_shorts": "Nunes" + "docket_numbers": "F085131", + "case_name_shorts": "Fouse" }, { - "case_dates": "2013-04-26", - "case_names": "Perry v. Co. of Fresno", - "download_urls": "/opinions/documents/F063887M.PDF", + "case_dates": "2024-01-10", + "case_names": "Roe v. Doe 1", + "download_urls": "/opinions/documents/F086315.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F063887M", - "case_name_shorts": "Perry" + "docket_numbers": "F086315", + "case_name_shorts": "Roe" + }, + { + "case_dates": "2024-01-09", + "case_names": "Visalia Unified School Dist. v. Pub. Employment Relations Bd.", + "download_urls": "/opinions/documents/F084032.PDF", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "divisions": "5th App. Dist.", + "docket_numbers": "F084032", + "case_name_shorts": "" }, { - "case_dates": "2013-04-04", - "case_names": "Perry v. Fresno Cty.", - "download_urls": "/opinions/documents/F063887.PDF", + "case_dates": "2024-01-09", + "case_names": "In re L.B.", + "download_urls": "/opinions/documents/F086109.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F063887", - "case_name_shorts": "Perry" + "docket_numbers": "F086109", + "case_name_shorts": "In re L.B." }, { - "case_dates": "2013-03-27", - "case_names": "McDaniel v. Asuncion", - "download_urls": "/opinions/documents/F064240.PDF", + "case_dates": "2024-01-08", + "case_names": "Perez v. Oakdale Irrigation Dist.", + "download_urls": "/opinions/documents/F084621.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "5th App. Dist.", - "docket_numbers": "F064240", - "case_name_shorts": "McDaniel" + "docket_numbers": "F084621", + "case_name_shorts": "Perez" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_5th_example.html b/tests/examples/opinions/united_states/calctapp_5th_example.html index 60477f875..94f678d2a 100644 --- a/tests/examples/opinions/united_states/calctapp_5th_example.html +++ b/tests/examples/opinions/united_states/calctapp_5th_example.html @@ -1,78 +1,309 @@ - + + + + + + California Courts - Published Opinions + + - - -

    -
    -
    -

    Published Opinions

    -
    -
    + + +
    +
    +
    +
    +
    +
    -
    -

    Published Opinions of the appellate courts are opinions certified for publication or ordered published and may be cited or relied on by courts and parties.

    +

    Published or "citable" opinions of the appellate courts are opinions ordered published in the Official + Reports, and may be cited or relied on by other courts and parties.

    -

  • Official Reports Opinions (Searchable 1850-Present) are the searchable, citable, published opinions that reflect postfiling corrections. This no-fee service is provided by LexisNexis.
  • +

    +

  • Official Reports Opinions + (Searchable 1850-Present) are the searchable, citable, published opinions that reflect + post filing corrections. This no-fee service is provided by LexisNexis.
  • +

    -

  • Slip Opinions are as-filed versions of opinions. Slip opinions certified for publication do not reflect enhancement, editing and correction for the Official Reports.
  • +

    +

  • Slip Opinions are as-filed versions of opinions certified for publication or ordered + published; they do not reflect enhancement, editing, and correction for the Official Reports. Slip + opinions from the last 120 days are posted together on this page as public information about actions taken + by the courts.
  • +

    -

    Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court of Appeal slip opinions are posted throughout the day as soon after filing as possible.

    +

    +

  • Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court + of Appeal slip opinions are posted throughout the day as soon after filing as possible.
  • +

    -

    Use the list below to select the slip opinions certified for publication, or ordered published, that you want to view and click on the "view" button to activate your selection.

    +

    +

  • Archive of Web Pages Cited in Opinions Issued by the Supreme Court of + California
  • +

    +

    Use the pull-down menu below to select the slip opinions that you wish to view. After 120 days, these opinions + remain available via our Case Information + Search tool.

    -
    -


    - - - - - - - - - - - - - - - - - - - -
    Date Posted
    Docket #/
    File Format
    Description

    Jul 17 2013F064109
    [PDF] [DOC]

    Bank of America v. Roberts 7/17/13 CA5 -  Case Details
    Jul 15 2013F064045
    [PDF] [DOC]

    POET v. Air Resources Bd. 7/15/13 CA5 -  Case Details
    Jul 08 2013F065690
    [PDF] [DOC]

    Citzens for Ceres v. Super. Ct. 7/8/13 CA5 -  Case Details
    Jul 01 2013F059511N
    [PDF] [DOC]

    In re Cabrera 7/1/13 CA5 -  Case Details
    Jun 13 2013F057722N
    [PDF] [DOC]

    P. v. Pizarro 6/13/13 CA5 -  Case Details
    Jun 11 2013F059511A
    [PDF] [DOC]

    In re Cabrera 6/11/13 CA5 -  Case Details
    May 31 2013F064930
    [PDF] [DOC]

    San Joaquin Raptor Rescue Center v. Co. of Merced 5/31/13 CA5 -  Case Details
    May 30 2013F065067
    [PDF] [DOC]

    Estate of Bonzi 5/30/13 CA5 -  Case Details
    May 23 2013F057722A
    [PDF] [DOC]

    P. v. Pizarro 5/21/13 CA5 -  Case Details
    May 15 2013F064590
    [PDF] [DOC]

    Castleman v. Sagaser 4/15/13 CA5 -  Case Details
    May 02 2013F062474M
    [PDF] [DOC]

    P. v. Xiong 5/2/13 CA5 -  Case Details
    Apr 30 2013F062474
    [PDF] [DOC]

    P. v. Xiong 4/30/13 CA5 -  Case Details
    Apr 29 2013F063555
    [PDF] [DOC]

    Cty. of Tulare v. Nunes 4/29/13 CA5 -  Case Details
    Apr 29 2013F064841
    [PDF] [DOC]

    In re Robert M. 4/29/13 CA5 -  Case Details
    Apr 26 2013F063887M
    [PDF] [DOC]

    Perry v. Co. of Fresno 4/26/13 CA5 -  Case Details
    Apr 04 2013F063887
    [PDF] [DOC]

    Perry v. Fresno Cty. 4/3/13 CA5 -  Case Details
    Mar 27 2013F064240
    [PDF] [DOC]

    McDaniel v. Asuncion 3/27/13 CA5 -  Case Details
    -

    +

    Please note that copies of published opinions may also be available from or searchable through sources other than + this website.

    +
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date Posted
    Docket #/
    File Format
    Description

    +

    Apr 25, 2024F084700M
    [PDF]
    [DOC]
    Williams v. Doctors Medical Center of Modesto 4/25/24 CA5  Case Details   Related + Case: F085710 +
    Apr 17, 2024F085699M
    [PDF]
    [DOC]
    P. v. Gray 4/17/24 CA5  Case Details
    Apr 09, 2024F084751M
    [PDF]
    [DOC]
    P. v. Carrillo 4/8/24 CA5  Case Details
    Apr 04, 2024F085699
    [PDF]
    [DOC]
    P. v. Gray 4/4/24 CA5  Case Details
    Apr 04, 2024F085992
    [PDF]
    [DOC]
    Knudsen v. Dept. of Motor Vehicles et al. 4/4/24 CA5  Case Details
    Mar 27, 2024F084700
    [PDF]
    [DOC]
    Williams v. Doctors Medical Center of Modesto 3/27/24 CA5  Case Details   Related + Case: F085719 +
    Mar 27, 2024F080361A
    [PDF]
    [DOC]
    P. v. Rojas 3/27/24 CA5  Case Details
    Mar 18, 2024F085586
    [PDF]
    [DOC]
    Kern County Hospital Authority v. Public Employment Relations Bd. 2/26/24 + CA5  Case Details
    Mar 15, 2024F084751
    [PDF]
    [DOC]
    P. v. Carrillo 3/15/24 CA5  Case Details
    Mar 07, 2024F084763
    [PDF]
    [DOC]
    V Lions Farming, LLC, et al. v. County of Kern et al. 3/7/24 CA5  Case Details   Related + Cases: F085102 F085220 +
    Mar 01, 2024F085832
    [PDF]
    [DOC]
    TRC Operating Co. et al. v. Shabazian 3/1/24 CA5  Case Details
    Feb 27, 2024F086179
    [PDF]
    [DOC]
    P. v. Lopez 2/27/24 CA5  Case Details
    Feb 26, 2024F086065
    [PDF]
    [DOC]
    P. v. Patterson 2/26/24 CA5  Case Details
    Feb 26, 2024F085918
    [PDF]
    [DOC]
    Jones v. Solgen Construction 2/2/24 CA5  Case Details
    Jan 23, 2024F084952
    [PDF]
    [DOC]
    P. v. Gonzalez 1/23/24 CA/5  Case Details
    Jan 22, 2024F084307
    [PDF]
    [DOC]
    P. v. Campos 1/22/24 CA5  Case Details
    Jan 18, 2024F085131
    [PDF]
    [DOC]
    P. v. Fouse 1/18/24 CA5  Case Details
    Jan 10, 2024F086315
    [PDF]
    [DOC]
    Roe v. Doe 1 12/20/23 CA5  Case Details
    Jan 09, 2024F084032
    [PDF]
    [DOC]
    Visalia Unified School Dist. v. Pub. Employment Relations Bd. 1/9/24 + CA5  Case Details
    Jan 09, 2024F086109
    [PDF]
    [DOC]
    In re L.B. 12/13/23 CA5  Case Details
    Jan 08, 2024F084621
    [PDF]
    [DOC]
    Perez v. Oakdale Irrigation Dist. 12/20/23 CA5  Case Details
    +

    + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_6th_example.compare.json b/tests/examples/opinions/united_states/calctapp_6th_example.compare.json index 72f492735..a07fd10d5 100644 --- a/tests/examples/opinions/united_states/calctapp_6th_example.compare.json +++ b/tests/examples/opinions/united_states/calctapp_6th_example.compare.json @@ -1,233 +1,101 @@ [ { - "case_dates": "2013-07-17", - "case_names": "People v. Pirali", - "download_urls": "/opinions/documents/H038349.PDF", + "case_dates": "2024-04-25", + "case_names": "Beverage v. Apple, Inc.", + "download_urls": "/opinions/documents/H050526.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "6th App. Dist.", - "docket_numbers": "H038349", - "case_name_shorts": "Pirali" + "docket_numbers": "H050526", + "case_name_shorts": "Beverage" }, { - "case_dates": "2013-07-17", - "case_names": "Fortner v. Super. Ct.", - "download_urls": "/opinions/documents/H038353.PDF", + "case_dates": "2024-04-16", + "case_names": "City of Santa Cruz v. Super. Ct.", + "download_urls": "/opinions/documents/H050881.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "6th App. Dist.", - "docket_numbers": "H038353", - "case_name_shorts": "Fortner" - }, - { - "case_dates": "2013-07-16", - "case_names": "May v. City of Milpitas", - "download_urls": "/opinions/documents/H038338.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "6th App. Dist.", - "docket_numbers": "H038338", - "case_name_shorts": "May" - }, - { - "case_dates": "2013-07-12", - "case_names": "Diamond v. Super. Ct.", - "download_urls": "/opinions/documents/H038734.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "6th App. Dist.", - "docket_numbers": "H038734", - "case_name_shorts": "Diamond" - }, - { - "case_dates": "2013-07-11", - "case_names": "People v. Barclay", - "download_urls": "/opinions/documents/H038109.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "6th App. Dist.", - "docket_numbers": "H038109", - "case_name_shorts": "Barclay" - }, - { - "case_dates": "2013-06-25", - "case_names": "Save Panoche Valley v. San Benito Cty.", - "download_urls": "/opinions/documents/H037599.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "6th App. Dist.", - "docket_numbers": "H037599", + "docket_numbers": "H050881", "case_name_shorts": "" }, { - "case_dates": "2013-06-21", - "case_names": "In re M.P.", - "download_urls": "/opinions/documents/H038640.PDF", + "case_dates": "2024-04-02", + "case_names": "Wozniak v. YouTube, LLC", + "download_urls": "/opinions/documents/H050042M.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "6th App. Dist.", - "docket_numbers": "H038640", - "case_name_shorts": "In re M.P." + "docket_numbers": "H050042M", + "case_name_shorts": "Wozniak" }, { - "case_dates": "2013-06-18", - "case_names": "People v. Fong", - "download_urls": "/opinions/documents/H037245.PDF", + "case_dates": "2024-03-18", + "case_names": "Wozniak v. YouTube, LLC", + "download_urls": "/opinions/documents/H050042.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "6th App. Dist.", - "docket_numbers": "H037245", - "case_name_shorts": "Fong" + "docket_numbers": "H050042", + "case_name_shorts": "Wozniak" }, { - "case_dates": "2013-06-06", - "case_names": "Cal Building Indus. etc. v. City of San Jose", - "download_urls": "/opinions/documents/H038563.PDF", + "case_dates": "2024-03-15", + "case_names": "People v. Smith", + "download_urls": "/opinions/documents/H050653.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "6th App. Dist.", - "docket_numbers": "H038563", + "docket_numbers": "H050653", "case_name_shorts": "" }, { - "case_dates": "2013-06-04", - "case_names": "Brown v. Super. Ct.", - "download_urls": "/opinions/documents/H037271.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "6th App. Dist.", - "docket_numbers": "H037271", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2013-05-23", - "case_names": "People v. Scott", - "download_urls": "/opinions/documents/H037923.PDF", + "case_dates": "2024-03-14", + "case_names": "People v. Super. Ct. (Woodward)", + "download_urls": "/opinions/documents/H051311.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "6th App. Dist.", - "docket_numbers": "H037923", - "case_name_shorts": "Scott" - }, - { - "case_dates": "2013-05-16", - "case_names": "Silicon Valley Taxpayers v. Garner", - "download_urls": "/opinions/documents/H038971.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "6th App. Dist.", - "docket_numbers": "H038971", - "case_name_shorts": "Garner" - }, - { - "case_dates": "2013-05-16", - "case_names": "Negri v. Koning & Assoc.", - "download_urls": "/opinions/documents/H037804.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "6th App. Dist.", - "docket_numbers": "H037804", - "case_name_shorts": "Negri" - }, - { - "case_dates": "2013-05-15", - "case_names": "Bd. of Trustees Stanford University v. Ham", - "download_urls": "/opinions/documents/H038784.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "6th App. Dist.", - "docket_numbers": "H038784", - "case_name_shorts": "Ham" - }, - { - "case_dates": "2013-05-07", - "case_names": "People v. Tran", - "download_urls": "/opinions/documents/H036977.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "6th App. Dist.", - "docket_numbers": "H036977", - "case_name_shorts": "Tran" - }, - { - "case_dates": "2013-04-29", - "case_names": "People v. Tran", - "download_urls": "/opinions/documents/H036764.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "6th App. Dist.", - "docket_numbers": "H036764", - "case_name_shorts": "Tran" - }, - { - "case_dates": "2013-04-26", - "case_names": "City of Monterey v. Carrnshimba", - "download_urls": "/opinions/documents/H036475.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "6th App. Dist.", - "docket_numbers": "H036475", - "case_name_shorts": "Carrnshimba" - }, - { - "case_dates": "2013-04-25", - "case_names": "People v. Mortimer", - "download_urls": "/opinions/documents/H037530.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "6th App. Dist.", - "docket_numbers": "H037530", - "case_name_shorts": "Mortimer" + "docket_numbers": "H051311", + "case_name_shorts": "" }, { - "case_dates": "2013-04-25", - "case_names": "People v. Fuquay", - "download_urls": "/opinions/documents/H037195.PDF", + "case_dates": "2024-03-05", + "case_names": "People v. Killian", + "download_urls": "/opinions/documents/H050320.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "6th App. Dist.", - "docket_numbers": "H037195", - "case_name_shorts": "Fuquay" + "docket_numbers": "H050320", + "case_name_shorts": "Killian" }, { - "case_dates": "2013-04-23", - "case_names": "People v. Blackburn", - "download_urls": "/opinions/documents/H037207.PDF", + "case_dates": "2024-02-21", + "case_names": "People v. Ferenz", + "download_urls": "/opinions/documents/H049430.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "6th App. Dist.", - "docket_numbers": "H037207", - "case_name_shorts": "Blackburn" + "docket_numbers": "H049430", + "case_name_shorts": "Ferenz" }, { - "case_dates": "2013-03-29", - "case_names": "People v. Rivas", - "download_urls": "/opinions/documents/H036974.PDF", + "case_dates": "2024-01-29", + "case_names": "Ramsey v. Comcast Cable Communications, LLC", + "download_urls": "/opinions/documents/H049949.PDF", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "divisions": "6th App. Dist.", - "docket_numbers": "H036974", - "case_name_shorts": "Rivas" + "docket_numbers": "H049949", + "case_name_shorts": "Ramsey" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_6th_example.html b/tests/examples/opinions/united_states/calctapp_6th_example.html index 9e392370a..1c1575436 100644 --- a/tests/examples/opinions/united_states/calctapp_6th_example.html +++ b/tests/examples/opinions/united_states/calctapp_6th_example.html @@ -1,86 +1,177 @@ - + + + + + + California Courts - Published Opinions + + - - -

    -
    -
    -

    Published Opinions

    -
    -
    + + +
    +
    +
    +
    +
    +
    -
    -

    Published Opinions of the appellate courts are opinions certified for publication or ordered published and may be cited or relied on by courts and parties.

    +

    Published or "citable" opinions of the appellate courts are opinions ordered published in the Official + Reports, and may be cited or relied on by other courts and parties.

    -

  • Official Reports Opinions (Searchable 1850-Present) are the searchable, citable, published opinions that reflect postfiling corrections. This no-fee service is provided by LexisNexis.
  • +

    +

  • Official Reports Opinions + (Searchable 1850-Present) are the searchable, citable, published opinions that reflect + post filing corrections. This no-fee service is provided by LexisNexis.
  • +

    -

  • Slip Opinions are as-filed versions of opinions. Slip opinions certified for publication do not reflect enhancement, editing and correction for the Official Reports.
  • +

    +

  • Slip Opinions are as-filed versions of opinions certified for publication or ordered + published; they do not reflect enhancement, editing, and correction for the Official Reports. Slip + opinions from the last 120 days are posted together on this page as public information about actions taken + by the courts.
  • +

    -

    Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court of Appeal slip opinions are posted throughout the day as soon after filing as possible.

    +

    +

  • Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court + of Appeal slip opinions are posted throughout the day as soon after filing as possible.
  • +

    -

    Use the list below to select the slip opinions certified for publication, or ordered published, that you want to view and click on the "view" button to activate your selection.

    +

    +

  • Archive of Web Pages Cited in Opinions Issued by the Supreme Court of + California
  • +

    +

    Use the pull-down menu below to select the slip opinions that you wish to view. After 120 days, these opinions + remain available via our Case Information + Search tool.

    -
    -


    - - - - - - - - - - - - - - - - - - - - - - - -
    Date Posted
    Docket #/
    File Format
    Description

    Jul 17 2013H038353
    [PDF] [DOC]

    Fortner v. Super. Ct. 6/18/13 CA6 -  Case Details
    Jul 17 2013H038349
    [PDF] [DOC]

    P. v. Pirali 7/17/13 CA6 -  Case Details
    Jul 16 2013H038338
    [PDF] [DOC]

    May v. City of Milpitas 7/16/13 CA6 -  Case Details
    Jul 12 2013H038734
    [PDF] [DOC]

    Diamond v. Super. Ct. 6/18/13 CA6 -  Case Details
    Jul 11 2013H038109
    [PDF] [DOC]

    P. v. Barclay 7/11/13 CA6 -  Case Details
    Jun 25 2013H037599
    [PDF] [DOC]

    Save Panoche Valley v. San Benito Cty. 6/25/13 CA6 -  Case Details
    Jun 21 2013H038640
    [PDF] [DOC]

    In re M.P. 6/21/13 CA6 -  Case Details
    Jun 18 2013H037245
    [PDF] [DOC]

    P. v. Fong 6/18/13 CA6 -  Case Details
    Jun 06 2013H038563
    [PDF] [DOC]

    Cal Building Indus. etc. v. City of San Jose 6/6/13 CA6 -  Case Details
    Jun 04 2013H037271
    [PDF] [DOC]

    Brown v. Super. Ct. 6/4/13 CA6 -  Case Details
    May 23 2013H037923
    [PDF] [DOC]

    P. v. Scott 5/23/13 CA6 -  Case Details
    May 16 2013H038971
    [PDF] [DOC]

    Silicon Valley Taxpayers v. Garner 5/16/13 CA6 -  Case Details
    May 16 2013H037804
    [PDF] [DOC]

    Negri v. Koning & Assoc. 5/16/13 CA6 -  Case Details
    May 15 2013H038784
    [PDF] [DOC]

    Bd. of Trustees Stanford University v. Ham 5/15/13 CA6 -  Case Details
    May 07 2013H036977
    [PDF] [DOC]

    P. v. Tran 5/7/13 CA6 -  Case Details
    Apr 29 2013H036764
    [PDF] [DOC]

    P. v. Tran 4/29/13 CA6 -  Case Details
    Apr 26 2013H036475
    [PDF] [DOC]

    City of Monterey v. Carrnshimba 3/27/13 CA6 -  Case Details
    Apr 25 2013H037530
    [PDF] [DOC]

    P. v. Mortimer 4/25/13 CA6 -  Case Details
    Apr 25 2013H037195
    [PDF] [DOC]

    P. v. Fuquay 4/25/13 CA6 -  Case Details
    Apr 23 2013H037207
    [PDF] [DOC]

    P. v. Blackburn 4/23/13 CA6 -  Case Details
    Mar 29 2013H036974
    [PDF] [DOC]

    P. v. Rivas 3/29/13 CA6 -  Case Details
    -

    +

    Please note that copies of published opinions may also be available from or searchable through sources other than + this website.

    +
    + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date Posted
    Docket #/
    File Format
    Description

    +

    Apr 25, 2024H050526
    [PDF]
    [DOC]
    Beverage et al. v. Apple, Inc. 4/25/24 CA6  Case Details
    Apr 16, 2024H050881
    [PDF]
    [DOC]
    City of Santa Cruz v. Super. Ct. 4/16/24 CA6  Case Details
    Apr 02, 2024H050042M
    [PDF]
    [DOC]
    Wozniak v. YouTube, LLC 4/2/24 CA6  Case Details
    Mar 18, 2024H050042
    [PDF]
    [DOC]
    Wozniak v. YouTube, LLC 3/15/24 CA6  Case Details
    Mar 15, 2024H050653
    [PDF]
    [DOC]
    P. v. Smith 3/15/24 CA6  Case Details
    Mar 14, 2024H051311
    [PDF]
    [DOC]
    P. v. Super. Ct. (Woodward) 3/14/24 CA6  Case Details
    Mar 05, 2024H050320
    [PDF]
    [DOC]
    P. v. Killian 2/20/24 CA6  Case Details   Related + Case: H050557 +
    Feb 21, 2024H049430
    [PDF]
    [DOC]
    P. v. Ferenz 1/26/24 CA6  Case Details
    Jan 29, 2024H049949
    [PDF]
    [DOC]
    Ramsey v. Comcast Cable Communications, LLC 12/29/23 CA6  Case Details
    +

    + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_app_div_example.compare.json b/tests/examples/opinions/united_states/calctapp_app_div_example.compare.json index f68e9ab46..0637a088a 100644 --- a/tests/examples/opinions/united_states/calctapp_app_div_example.compare.json +++ b/tests/examples/opinions/united_states/calctapp_app_div_example.compare.json @@ -1,46 +1 @@ -[ - { - "case_dates": "2013-07-08", - "case_names": "Nivo 1 v. Atunez", - "download_urls": "/opinions/documents/JAD13-05.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "App. Div.", - "docket_numbers": "JAD13-05", - "case_name_shorts": "Atunez" - }, - { - "case_dates": "2013-05-24", - "case_names": "Munoz v. Silva", - "download_urls": "/opinions/documents/JAD13-04.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "App. Div.", - "docket_numbers": "JAD13-04", - "case_name_shorts": "Munoz" - }, - { - "case_dates": "2013-05-22", - "case_names": "Target Nat. Bank v. Rocha", - "download_urls": "/opinions/documents/JAD13-03.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "App. Div.", - "docket_numbers": "JAD13-03", - "case_name_shorts": "Rocha" - }, - { - "case_dates": "2013-04-02", - "case_names": "People v. Spriggs", - "download_urls": "/opinions/documents/JAD13-02.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "divisions": "App. Div.", - "docket_numbers": "JAD13-02", - "case_name_shorts": "Spriggs" - } -] \ No newline at end of file +[] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_app_div_example.html b/tests/examples/opinions/united_states/calctapp_app_div_example.html index dfebcf971..e53fb8ad5 100644 --- a/tests/examples/opinions/united_states/calctapp_app_div_example.html +++ b/tests/examples/opinions/united_states/calctapp_app_div_example.html @@ -1,52 +1,86 @@ - + + + + + + California Courts - Published Opinions + + - - -

    -
    -
    -

    Published Opinions

    -
    -
    + + +
    +
    +
    +
    +
    +
    -
    -

    Published Opinions of the appellate courts are opinions certified for publication or ordered published and may be cited or relied on by courts and parties.

    - -

  • Official Reports Opinions (Searchable 1850-Present) are the searchable, citable, published opinions that reflect postfiling corrections. This no-fee service is provided by LexisNexis.
  • - -

  • Slip Opinions are as-filed versions of opinions. Slip opinions certified for publication do not reflect enhancement, editing and correction for the Official Reports.
  • - -

    Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court of Appeal slip opinions are posted throughout the day as soon after filing as possible.

    - -

    Use the list below to select the slip opinions certified for publication, or ordered published, that you want to view and click on the "view" button to activate your selection.

    - - -
    -


    - - - - - - -
    Date Posted
    Docket #/
    File Format
    Description

    Jul 08 2013JAD13-05
    [PDF] [DOC]

    Nivo 1 v. Atunez 7/5/13 L.A./AD -
    May 24 2013JAD13-04
    [PDF] [DOC]

    Munoz v. Silva 5/23/13 L.A./AD -
    May 22 2013JAD13-03
    [PDF] [DOC]

    Target Nat. Bank v. Rocha 4/29/13 Santa Clara/AD -
    Apr 02 2013JAD13-02
    [PDF] [DOC]

    P. v. Spriggs 3/21/13 Fresno/AD -
    -

    +

    Published or "citable" opinions of the appellate courts are opinions ordered published in the Official + Reports, and may be cited or relied on by other courts and parties.

    + +

    +

  • Official Reports Opinions + (Searchable 1850-Present) are the searchable, citable, published opinions that reflect + post filing corrections. This no-fee service is provided by LexisNexis.
  • +

    + +

    +

  • Slip Opinions are as-filed versions of opinions certified for publication or ordered + published; they do not reflect enhancement, editing, and correction for the Official Reports. Slip + opinions from the last 120 days are posted together on this page as public information about actions taken + by the courts.
  • +

    + +

    +

  • Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court + of Appeal slip opinions are posted throughout the day as soon after filing as possible.
  • +

    + +

    +

  • Archive of Web Pages Cited in Opinions Issued by the Supreme Court of + California
  • +

    + +

    Use the pull-down menu below to select the slip opinions that you wish to view. After 120 days, these opinions + remain available via our Case Information + Search tool.

    + +

    Please note that copies of published opinions may also be available from or searchable through sources other than + this website.

    +
    + + +
    +
    +
    + + + + + + + +
    Date Posted
    Docket #/
    File Format
    Description

    +

    There are no opinions available for the selected time period. +
    +

    + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_u_example.compare.json b/tests/examples/opinions/united_states/calctapp_u_example.compare.json index 81a964e60..f65c7c80d 100644 --- a/tests/examples/opinions/united_states/calctapp_u_example.compare.json +++ b/tests/examples/opinions/united_states/calctapp_u_example.compare.json @@ -1,252 +1,862 @@ [ { - "case_dates": "2012-05-07", - "case_names": "People v. Jones", - "download_urls": "/opinions/documents/S076721.PDF", + "case_dates": "2024-04-29", + "case_names": "Wu v. Carreon CA3", + "download_urls": "/opinions/nonpub/C093905.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S076721", - "case_name_shorts": "Jones" + "docket_numbers": "C093905", + "case_name_shorts": "Wu" }, { - "case_dates": "2012-05-03", - "case_names": "People v. Thomas", - "download_urls": "/opinions/documents/S185305.PDF", + "case_dates": "2024-04-29", + "case_names": "Sanceri v. Furfriends Animal Rescue CA2/1", + "download_urls": "/opinions/nonpub/B326599.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S185305", - "case_name_shorts": "Thomas" + "docket_numbers": "B326599", + "case_name_shorts": "Sanceri" }, { - "case_dates": "2012-04-30", - "case_names": "People v. Cornett", - "download_urls": "/opinions/documents/S189733.PDF", + "case_dates": "2024-04-29", + "case_names": "People v. Richardson CA4/1", + "download_urls": "/opinions/nonpub/D083716.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S189733", - "case_name_shorts": "Cornett" + "docket_numbers": "D083716", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-29", + "case_names": "People v. Pruitt CA3", + "download_urls": "/opinions/nonpub/C097890.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "C097890", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-29", + "case_names": "People v. Neely CA2/6", + "download_urls": "/opinions/nonpub/B331890.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B331890", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-29", + "case_names": "People v. Nava CA2/6", + "download_urls": "/opinions/nonpub/B320959.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B320959", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-29", + "case_names": "People v. Luna CA4/3", + "download_urls": "/opinions/nonpub/G062823.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "G062823", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-29", + "case_names": "Paknad v. Superior Court CA6", + "download_urls": "/opinions/nonpub/H050711.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "H050711", + "case_name_shorts": "Paknad" + }, + { + "case_dates": "2024-04-29", + "case_names": "In re K.P. CA4/2", + "download_urls": "/opinions/nonpub/E082713.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "E082713", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-29", + "case_names": "Haven of Peace Films v. Ecom Asset Securitization CA2/1", + "download_urls": "/opinions/nonpub/B328415.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B328415", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-29", + "case_names": "Barnes v. Martinez CA4/3", + "download_urls": "/opinions/nonpub/G061981.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "G061981", + "case_name_shorts": "Barnes" + }, + { + "case_dates": "2024-04-29", + "case_names": "Andres R. v. Superior Court CA4/2", + "download_urls": "/opinions/nonpub/E083019.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "E083019", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "Torres v. Los Angeles Unified School District CA2/5", + "download_urls": "/opinions/nonpub/B321698.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B321698", + "case_name_shorts": "Torres" + }, + { + "case_dates": "2024-04-26", + "case_names": "T.H. v. Superior Court CA4/2", + "download_urls": "/opinions/nonpub/E083210.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "E083210", + "case_name_shorts": "T.H." + }, + { + "case_dates": "2024-04-26", + "case_names": "Salem v. Shih CA2/1", + "download_urls": "/opinions/nonpub/B326152.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B326152", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "Professional Tax Appeal v. Beverly Gemini Investments Corp. CA2/2", + "download_urls": "/opinions/nonpub/B321119.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B321119", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Whiteside CA2/1", + "download_urls": "/opinions/nonpub/B329921.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B329921", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Valdez CA5", + "download_urls": "/opinions/nonpub/F085097.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "F085097", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Smith CA2/4", + "download_urls": "/opinions/nonpub/B321024A.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B321024A", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Salcido CA4/2", + "download_urls": "/opinions/nonpub/E080066.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "E080066", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Rodriguez CA4/3", + "download_urls": "/opinions/nonpub/G062494.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "G062494", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Robinson CA5", + "download_urls": "/opinions/nonpub/F084244.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "F084244", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Prado CA5", + "download_urls": "/opinions/nonpub/F086183.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "F086183", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Patton CA2/5", + "download_urls": "/opinions/nonpub/B327349.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B327349", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Page CA6", + "download_urls": "/opinions/nonpub/H050551.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "H050551", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Nunez CA5", + "download_urls": "/opinions/nonpub/F086089.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "F086089", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Mackabee CA2/4", + "download_urls": "/opinions/nonpub/B326072.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B326072", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Jeffery CA5", + "download_urls": "/opinions/nonpub/F085861.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "F085861", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Guerrero CA2/6", + "download_urls": "/opinions/nonpub/B328960.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B328960", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Gonzalez CA6", + "download_urls": "/opinions/nonpub/H050851.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "H050851", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Gonzalez CA4/2", + "download_urls": "/opinions/nonpub/E081204.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "E081204", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Garcia CA4/2", + "download_urls": "/opinions/nonpub/E082289.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "E082289", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Garcia CA3", + "download_urls": "/opinions/nonpub/C099554.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "C099554", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Duran CA2/2", + "download_urls": "/opinions/nonpub/B328629.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B328629", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "People v. Diaz CA2/8", + "download_urls": "/opinions/nonpub/B327446.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B327446", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "Mohanna v. Ocwen Loan Servicing CA1/2", + "download_urls": "/opinions/nonpub/A167443.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A167443", + "case_name_shorts": "Mohanna" + }, + { + "case_dates": "2024-04-26", + "case_names": "Maxon v. Rosa CA1/2", + "download_urls": "/opinions/nonpub/A166134.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A166134", + "case_name_shorts": "Maxon" + }, + { + "case_dates": "2024-04-26", + "case_names": "Kenne v. Community Corporation of Santa Monica CA2/3", + "download_urls": "/opinions/nonpub/B317722.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B317722", + "case_name_shorts": "Kenne" + }, + { + "case_dates": "2024-04-26", + "case_names": "In re Z.H. CA2/1", + "download_urls": "/opinions/nonpub/B331361.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B331361", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "In re W.S. CA2/6", + "download_urls": "/opinions/nonpub/B330766.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B330766", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "In re R.C. CA3", + "download_urls": "/opinions/nonpub/C099083.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "C099083", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "In re M.S. CA2/1", + "download_urls": "/opinions/nonpub/B326996M.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B326996M", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "In re M.R. CA2/4", + "download_urls": "/opinions/nonpub/B331295.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B331295", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "In re M.C. CA2/4", + "download_urls": "/opinions/nonpub/B326686.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B326686", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "In re L.S. CA2/8", + "download_urls": "/opinions/nonpub/B329311.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B329311", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "In re Jayden B. CA2/1", + "download_urls": "/opinions/nonpub/B330398.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B330398", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "In re E.L. CA4/2", + "download_urls": "/opinions/nonpub/E082431.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "E082431", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "In re Daisy H. CA2/8", + "download_urls": "/opinions/nonpub/B328205.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B328205", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-26", + "case_names": "Fernandez v. Marston CA5", + "download_urls": "/opinions/nonpub/F084993.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "F084993", + "case_name_shorts": "Fernandez" + }, + { + "case_dates": "2024-04-26", + "case_names": "Crosbie v. The Bank of New York Mellon CA2/1", + "download_urls": "/opinions/nonpub/B321858.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B321858", + "case_name_shorts": "Crosbie" + }, + { + "case_dates": "2024-04-26", + "case_names": "Chen v. Zeng CA2/2", + "download_urls": "/opinions/nonpub/B332009.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B332009", + "case_name_shorts": "Chen" + }, + { + "case_dates": "2024-04-25", + "case_names": "Young v. CEP America CA1/2", + "download_urls": "/opinions/nonpub/A166276.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A166276", + "case_name_shorts": "Young" + }, + { + "case_dates": "2024-04-25", + "case_names": "Vesce v. City of Lafayette CA1/1", + "download_urls": "/opinions/nonpub/A167725.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A167725", + "case_name_shorts": "Vesce" + }, + { + "case_dates": "2024-04-25", + "case_names": "Tillman v. L Brands CA2/4", + "download_urls": "/opinions/nonpub/B318235.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B318235", + "case_name_shorts": "Tillman" + }, + { + "case_dates": "2024-04-25", + "case_names": "Sturm v. County of L.A. Dept. of Probation CA2/7", + "download_urls": "/opinions/nonpub/B321064.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B321064", + "case_name_shorts": "Sturm" + }, + { + "case_dates": "2024-04-25", + "case_names": "Stacy V. v. Frank B. CA2/7", + "download_urls": "/opinions/nonpub/B326955.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B326955", + "case_name_shorts": "" }, { - "case_dates": "2012-04-30", - "case_names": "Kirby v. Immoos Fire etc.", - "download_urls": "/opinions/documents/S185827.PDF", + "case_dates": "2024-04-25", + "case_names": "Rupnow v. Abundance Therapy CA2/4", + "download_urls": "/opinions/nonpub/B332508.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S185827", - "case_name_shorts": "Kirby" + "docket_numbers": "B332508", + "case_name_shorts": "Rupnow" }, { - "case_dates": "2012-04-26", - "case_names": "People v. Myles", - "download_urls": "/opinions/documents/S097189.PDF", + "case_dates": "2024-04-25", + "case_names": "Riggs v. Superior Court CA1/1", + "download_urls": "/opinions/nonpub/A169716.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S097189", - "case_name_shorts": "Myles" + "docket_numbers": "A169716", + "case_name_shorts": "Riggs" }, { - "case_dates": "2012-04-26", - "case_names": "People v. Livingston", - "download_urls": "/opinions/documents/S090499.PDF", + "case_dates": "2024-04-25", + "case_names": "Riaz v. Family Health Care Network CA5", + "download_urls": "/opinions/nonpub/F085829.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S090499", - "case_name_shorts": "Livingston" + "docket_numbers": "F085829", + "case_name_shorts": "Riaz" }, { - "case_dates": "2012-04-26", - "case_names": "Dicon Fiberoptics v. Franchise Tax Bd.", - "download_urls": "/opinions/documents/S173860.PDF", + "case_dates": "2024-04-25", + "case_names": "People v. Vaccaro CA3", + "download_urls": "/opinions/nonpub/C097475.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S173860", + "docket_numbers": "C097475", "case_name_shorts": "" }, { - "case_dates": "2012-04-23", - "case_names": "Maldonado v. Super. Ct.", - "download_urls": "/opinions/documents/S183961.PDF", + "case_dates": "2024-04-25", + "case_names": "People v. Ramsey CA5", + "download_urls": "/opinions/nonpub/F085888.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S183961", - "case_name_shorts": "Maldonado" + "docket_numbers": "F085888", + "case_name_shorts": "" }, { - "case_dates": "2012-04-19", - "case_names": "People v. Hernandez", - "download_urls": "/opinions/documents/S178823.PDF", + "case_dates": "2024-04-25", + "case_names": "People v. Quinnett CA3", + "download_urls": "/opinions/nonpub/C098396.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S178823", - "case_name_shorts": "Hernandez" + "docket_numbers": "C098396", + "case_name_shorts": "" }, { - "case_dates": "2012-04-16", - "case_names": "People v. Weaver", - "download_urls": "/opinions/documents/S033149.PDF", + "case_dates": "2024-04-25", + "case_names": "People v. Peete CA3", + "download_urls": "/opinions/nonpub/C097657.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S033149", - "case_name_shorts": "Weaver" + "docket_numbers": "C097657", + "case_name_shorts": "" }, { - "case_dates": "2012-04-12", - "case_names": "Brinker Restaurant Corp. v. Super. Ct.", - "download_urls": "/opinions/documents/S166350.PDF", + "case_dates": "2024-04-25", + "case_names": "People v. Lynn CA3", + "download_urls": "/opinions/nonpub/C098597.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S166350", + "docket_numbers": "C098597", "case_name_shorts": "" }, { - "case_dates": "2012-03-29", - "case_names": "Quarry v. Doe I", - "download_urls": "/opinions/documents/S171382.PDF", + "case_dates": "2024-04-25", + "case_names": "People v. Joseph CA2/7", + "download_urls": "/opinions/nonpub/B323207.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S171382", - "case_name_shorts": "Quarry" + "docket_numbers": "B323207", + "case_name_shorts": "" }, { - "case_dates": "2012-03-19", - "case_names": "People v. Abel", - "download_urls": "/opinions/documents/S064733.PDF", + "case_dates": "2024-04-25", + "case_names": "People v. Garcia CA3", + "download_urls": "/opinions/nonpub/C097108.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S064733", - "case_name_shorts": "Abel" + "docket_numbers": "C097108", + "case_name_shorts": "" }, { - "case_dates": "2012-03-14", - "case_names": "People v. Cravens", - "download_urls": "/opinions/documents/S186661M.PDF", + "case_dates": "2024-04-25", + "case_names": "People v. Fernandes CA1/1", + "download_urls": "/opinions/nonpub/A167193.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S186661M", - "case_name_shorts": "Cravens" + "docket_numbers": "A167193", + "case_name_shorts": "" }, { - "case_dates": "2012-03-08", - "case_names": "People v. Manzo", - "download_urls": "/opinions/documents/S191400.PDF", + "case_dates": "2024-04-25", + "case_names": "People v. Allen CA2/5", + "download_urls": "/opinions/nonpub/B330698.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S191400", - "case_name_shorts": "Manzo" + "docket_numbers": "B330698", + "case_name_shorts": "" }, { - "case_dates": "2012-03-08", - "case_names": "C.A. v. William S. Hart Union High School", - "download_urls": "/opinions/documents/S188982.PDF", + "case_dates": "2024-04-25", + "case_names": "People v. Akopyan CA2/4", + "download_urls": "/opinions/nonpub/B327484.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S188982", - "case_name_shorts": "C.A." + "docket_numbers": "B327484", + "case_name_shorts": "" }, { - "case_dates": "2012-03-05", - "case_names": "In re Lucas", - "download_urls": "/opinions/documents/S181788.PDF", + "case_dates": "2024-04-25", + "case_names": "Moazed v. Javaherbin CA2/1", + "download_urls": "/opinions/nonpub/B326428.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S181788", - "case_name_shorts": "In re Lucas" + "docket_numbers": "B326428", + "case_name_shorts": "Moazed" }, { - "case_dates": "2012-02-23", - "case_names": "People v. Thomas", - "download_urls": "/opinions/documents/S048337.PDF", + "case_dates": "2024-04-25", + "case_names": "Medic Ambulance Service v. Sacramento Metropolitan Fire Dist. CA3", + "download_urls": "/opinions/nonpub/C096783.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S048337", - "case_name_shorts": "Thomas" + "docket_numbers": "C096783", + "case_name_shorts": "" }, { - "case_dates": "2012-02-06", - "case_names": "People v. Fuiava", - "download_urls": "/opinions/documents/S055652.PDF", + "case_dates": "2024-04-25", + "case_names": "Marriage of Longinotti and Karpala CA6", + "download_urls": "/opinions/nonpub/H051393.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S055652", - "case_name_shorts": "Fuiava" + "docket_numbers": "H051393", + "case_name_shorts": "" }, { - "case_dates": "2012-02-06", - "case_names": "People v. Enraca", - "download_urls": "/opinions/documents/S080947.PDF", + "case_dates": "2024-04-25", + "case_names": "Liu v. Lanterprise CA2/7", + "download_urls": "/opinions/nonpub/B330782.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S080947", - "case_name_shorts": "Enraca" + "docket_numbers": "B330782", + "case_name_shorts": "Liu" }, { - "case_dates": "2012-02-02", - "case_names": "People v. Elliott", - "download_urls": "/opinions/documents/S027094.PDF", + "case_dates": "2024-04-25", + "case_names": "Kriple v. Allred CA4/3", + "download_urls": "/opinions/nonpub/G062636.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S027094", - "case_name_shorts": "Elliott" + "docket_numbers": "G062636", + "case_name_shorts": "Kriple" }, { - "case_dates": "2012-02-02", - "case_names": "People v. Brents", - "download_urls": "/opinions/documents/S093754.PDF", + "case_dates": "2024-04-25", + "case_names": "In re Z.C. CA1/5", + "download_urls": "/opinions/nonpub/A168508.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S093754", - "case_name_shorts": "Brents" + "docket_numbers": "A168508", + "case_name_shorts": "" }, { - "case_dates": "2012-01-30", - "case_names": "People v. Johnson", - "download_urls": "/opinions/documents/S188619.PDF", + "case_dates": "2024-04-25", + "case_names": "In re S.C. CA1/5", + "download_urls": "/opinions/nonpub/A169636.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S188619", + "docket_numbers": "A169636", "case_name_shorts": "" }, { - "case_dates": "2012-01-30", - "case_names": "People v. Cravens", - "download_urls": "/opinions/documents/S186661.PDF", + "case_dates": "2024-04-25", + "case_names": "In re R.B. CA2/7", + "download_urls": "/opinions/nonpub/B321578.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S186661", - "case_name_shorts": "Cravens" + "docket_numbers": "B321578", + "case_name_shorts": "" }, { - "case_dates": "2012-01-27", - "case_names": "Vandermost v. Bowen", - "download_urls": "/opinions/documents/S198387.PDF", + "case_dates": "2024-04-25", + "case_names": "In re N.A. CA4/2", + "download_urls": "/opinions/nonpub/E081871.PDF", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S198387", - "case_name_shorts": "Vandermost" + "docket_numbers": "E081871", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-25", + "case_names": "In re K.C. CA5", + "download_urls": "/opinions/nonpub/F086868.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "F086868", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-25", + "case_names": "In re A.G. CA5", + "download_urls": "/opinions/nonpub/F086861.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "F086861", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-25", + "case_names": "Helali v. Walmart CA4/3", + "download_urls": "/opinions/nonpub/G063092.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "G063092", + "case_name_shorts": "Helali" + }, + { + "case_dates": "2024-04-25", + "case_names": "Emerson Maintenance Association v. Gorenberg CA4/3", + "download_urls": "/opinions/nonpub/G061711.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "G061711", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-25", + "case_names": "Del Mar Union School Dist. v. Natalie R. CA4/1", + "download_urls": "/opinions/nonpub/D080617.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "D080617", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-25", + "case_names": "Cook v. University of Southern Cal. CA2/4", + "download_urls": "/opinions/nonpub/B330640.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "B330640", + "case_name_shorts": "Cook" + }, + { + "case_dates": "2024-04-25", + "case_names": "Cantek America v. Leadermac Machinery CA3", + "download_urls": "/opinions/nonpub/C098574.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "C098574", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-25", + "case_names": "Adoption of D.D. CA1/4", + "download_urls": "/opinions/nonpub/A165916.PDF", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A165916", + "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/calctapp_u_example.html b/tests/examples/opinions/united_states/calctapp_u_example.html index c6bb014c8..4d5f90b81 100644 --- a/tests/examples/opinions/united_states/calctapp_u_example.html +++ b/tests/examples/opinions/united_states/calctapp_u_example.html @@ -1,94 +1,224 @@ - - - + + + +California Courts - Unpublished Opinions + + + + + + +

    -

    Published Opinions

    -

    Published Opinions of the appellate courts are opinions certified for publication or ordered published and may be cited or relied on by courts and parties.

    - -

  • Official Reports Opinions (Searchable 1850-Present) are the searchable, citable, published opinions that reflect postfiling corrections. This no-fee service is provided by LexisNexis.
  • - -

  • Slip Opinions are as-filed versions of opinions. Slip opinions certified for publication do not reflect enhancement, editing and correction for the Official Reports.
  • - -

    Supreme Court slip opinions are posted immediately on filing at 10:00 a.m. on Mondays and Thursdays. Court of Appeal slip opinions are posted throughout the day as soon after filing as possible.

    - -

    Use the list below to select the slip opinions certified for publication, or ordered published, that you want to view and click on the "view" button to activate your selection.

    +

    Unpublished or "non-citable" opinions are opinions that are not certified for publication in Official Reports and generally may not be cited or relied on by other courts or parties in other actions (see California Rules of Court, rule 8.1115).

    Unpublished opinions are available on this website as follows:

  • Unpublished opinions from the last 60 days are posted together on this page as public information about actions taken by the Courts of Appeal. Use the pull-down menu below to select the unpublished opinions that you want to view and click on the 'view' button to activate your selection.
  • After 60 days, these opinions remain available via our Case Information Search
  • Please note that copies of unpublished opinions may also be available from or searchable through sources other than this website.

    + + +
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date Posted
    Docket #/
    File Format
    Description

    Apr 29, 2024E083019
    [PDF]
    [DOC]
    Andres R. v. Superior Court CA4/2 filed 4/29/24 +  Case Details
    Apr 29, 2024E082713
    [PDF]
    [DOC]
    In re K.P. CA4/2 filed 4/29/24 +  Case Details
    Apr 29, 2024C093905
    [PDF]
    [DOC]
    Wu v. Carreon CA3 filed 4/29/24 +  Case Details
    Apr 29, 2024B328415
    [PDF]
    [DOC]
    Haven of Peace Films v. Ecom Asset Securitization CA2/1 filed 4/29/24  Case Details   Related Case: B333624 +
    Apr 29, 2024B326599
    [PDF]
    [DOC]
    Sanceri v. Furfriends Animal Rescue CA2/1 filed 4/29/24 +  Case Details
    Apr 29, 2024B320959
    [PDF]
    [DOC]
    P. v. Nava CA2/6 filed 4/29/24 +  Case Details
    Apr 29, 2024H050711
    [PDF]
    [DOC]
    Paknad v. Superior Court CA6 filed 4/29/24 +  Case Details
    Apr 29, 2024G062823
    [PDF]
    [DOC]
    P. v. Luna CA4/3 filed 4/29/24 +  Case Details
    Apr 29, 2024G061981
    [PDF]
    [DOC]
    Barnes v. Martinez CA4/3 filed 4/29/24 +  Case Details
    Apr 29, 2024D083716
    [PDF]
    [DOC]
    P. v. Richardson CA4/1 filed 4/29/24 +  Case Details
    Apr 29, 2024C097890
    [PDF]
    [DOC]
    P. v. Pruitt CA3 filed 4/29/24 +  Case Details
    Apr 29, 2024B331890
    [PDF]
    [DOC]
    P. v. Neely CA2/6 filed 4/29/24 +  Case Details
    Apr 26, 2024B326996M
    [PDF]
    [DOC]
    In re M.S. CA2/1 filed 4/26/24 +  Case Details
    Apr 26, 2024H050551
    [PDF]
    [DOC]
    P. v. Page CA6 filed 4/26/24 +  Case Details
    Apr 26, 2024G062494
    [PDF]
    [DOC]
    P. v. Rodriguez CA4/3 filed 4/26/24 +  Case Details
    Apr 26, 2024E080066
    [PDF]
    [DOC]
    P. v. Salcido CA4/2 filed 4/26/24 +  Case Details
    Apr 26, 2024E082289
    [PDF]
    [DOC]
    P. v. Garcia CA4/2 filed 4/26/24 +  Case Details
    Apr 26, 2024E081204
    [PDF]
    [DOC]
    P. v. Gonzalez CA4/2 filed 4/26/24 +  Case Details
    Apr 26, 2024F086089
    [PDF]
    [DOC]
    P. v. Nunez CA5 filed 4/26/24 +  Case Details
    Apr 26, 2024B328205
    [PDF]
    [DOC]
    In re Daisy H. CA2/8 filed 4/26/24 +  Case Details
    Apr 26, 2024B321119
    [PDF]
    [DOC]
    Professional Tax Appeal v. Beverly Gemini Investments Corp. CA2/2 filed 4/26/24 +  Case Details
    Apr 26, 2024B317722
    [PDF]
    [DOC]
    Kenne v. Community Corporation of Santa Monica CA2/3 filed 4/26/24 +  Case Details
    Apr 26, 2024F084993
    [PDF]
    [DOC]
    Fernandez v. Marston CA5 filed 4/26/24 +  Case Details
    Apr 26, 2024F085097
    [PDF]
    [DOC]
    P. v. Valdez CA5 filed 4/26/24 +  Case Details
    Apr 26, 2024B331295
    [PDF]
    [DOC]
    In re M.R. CA2/4 filed 4/26/24 +  Case Details
    Apr 26, 2024B326072
    [PDF]
    [DOC]
    P. v. Mackabee CA2/4 filed 4/26/24 +  Case Details
    Apr 26, 2024B321024A
    [PDF]
    [DOC]
    P. v. Smith CA2/4 filed 4/26/24 +  Case Details
    Apr 26, 2024F084244
    [PDF]
    [DOC]
    P. v. Robinson CA5 filed 4/26/24 +  Case Details
    Apr 26, 2024B321858
    [PDF]
    [DOC]
    Crosbie v. The Bank of New York Mellon CA2/1 filed 4/26/24 +  Case Details
    Apr 26, 2024C099554
    [PDF]
    [DOC]
    P. v. Garcia CA3 filed 4/26/24 +  Case Details
    Apr 26, 2024B330398
    [PDF]
    [DOC]
    In re Jayden B. CA2/1 filed 4/26/24 +  Case Details
    Apr 26, 2024B327446
    [PDF]
    [DOC]
    P. v. Diaz CA2/8 filed 4/26/24 +  Case Details
    Apr 26, 2024B326152
    [PDF]
    [DOC]
    Salem v. Shih CA2/1 filed 4/26/24 +  Case Details
    Apr 26, 2024B321698
    [PDF]
    [DOC]
    Torres v. Los Angeles Unified School District CA2/5 filed 4/26/24 +  Case Details
    Apr 26, 2024H050851
    [PDF]
    [DOC]
    P. v. Gonzalez CA6 filed 4/26/24 +  Case Details
    Apr 26, 2024F085861
    [PDF]
    [DOC]
    P. v. Jeffery CA5 filed 4/26/24  Case Details   Related Case: F086205 +
    Apr 26, 2024E082431
    [PDF]
    [DOC]
    In re E.L. CA4/2 filed 4/26/24 +  Case Details
    Apr 26, 2024B332009
    [PDF]
    [DOC]
    Chen v. Zeng CA2/2 filed 4/26/24 +  Case Details
    Apr 26, 2024B331361
    [PDF]
    [DOC]
    In re Z.H. CA2/1 filed 4/26/24 +  Case Details
    Apr 26, 2024B329921
    [PDF]
    [DOC]
    P. v. Whiteside CA2/1 filed 4/26/24 +  Case Details
    Apr 26, 2024B329311
    [PDF]
    [DOC]
    In re L.S. CA2/8 filed 4/26/24 +  Case Details
    Apr 26, 2024B328629
    [PDF]
    [DOC]
    P. v. Duran CA2/2 filed 4/26/24 +  Case Details
    Apr 26, 2024B327349
    [PDF]
    [DOC]
    P. v. Patton CA2/5 filed 4/26/24 +  Case Details
    Apr 26, 2024B326686
    [PDF]
    [DOC]
    In re M.C. CA2/4 filed 4/26/24 +  Case Details
    Apr 26, 2024F086183
    [PDF]
    [DOC]
    P. v. Prado CA5 filed 4/26/24 +  Case Details
    Apr 26, 2024E083210
    [PDF]
    [DOC]
    T.H. v. Superior Court CA4/2 filed 4/26/24 +  Case Details
    Apr 26, 2024A166134
    [PDF]
    [DOC]
    Maxon v. Rosa CA1/2 filed 4/26/24 +  Case Details
    Apr 26, 2024C099083
    [PDF]
    [DOC]
    In re R.C. CA3 filed 4/26/24 +  Case Details
    Apr 26, 2024B330766
    [PDF]
    [DOC]
    In re W.S. CA2/6 filed 4/26/24 +  Case Details
    Apr 26, 2024B328960
    [PDF]
    [DOC]
    P. v. Guerrero CA2/6 filed 4/26/24 +  Case Details
    Apr 26, 2024A167443
    [PDF]
    [DOC]
    Mohanna v. Ocwen Loan Servicing CA1/2 filed 4/26/24 +  Case Details
    Apr 25, 2024F086861
    [PDF]
    [DOC]
    In re A.G. CA5 filed 4/25/24 +  Case Details
    Apr 25, 2024B332508
    [PDF]
    [DOC]
    Rupnow v. Abundance Therapy CA2/4 filed 4/25/24 +  Case Details
    Apr 25, 2024B330640
    [PDF]
    [DOC]
    Cook v. University of Southern Cal. CA2/4 filed 4/25/24 +  Case Details
    Apr 25, 2024B327484
    [PDF]
    [DOC]
    P. v. Akopyan CA2/4 filed 4/25/24 +  Case Details
    Apr 25, 2024B318235
    [PDF]
    [DOC]
    Tillman v. L Brands CA2/4 filed 4/25/24 +  Case Details
    Apr 25, 2024A169716
    [PDF]
    [DOC]
    Riggs v. Superior Court CA1/1 filed 4/25/24 +  Case Details
    Apr 25, 2024G062636
    [PDF]
    [DOC]
    Kriple v. Allred CA4/3 filed 4/25/24 +  Case Details
    Apr 25, 2024G061711
    [PDF]
    [DOC]
    Emerson Maintenance Association v. Gorenberg CA4/3 filed 4/25/24 +  Case Details
    Apr 25, 2024E081871
    [PDF]
    [DOC]
    In re N.A. CA4/2 filed 4/25/24 +  Case Details
    Apr 25, 2024A169636
    [PDF]
    [DOC]
    In re S.C. CA1/5 filed 4/25/24 +  Case Details
    Apr 25, 2024A167725
    [PDF]
    [DOC]
    Vesce v. City of Lafayette CA1/1 filed 4/25/24 +  Case Details
    Apr 25, 2024A167193
    [PDF]
    [DOC]
    P. v. Fernandes CA1/1 filed 4/25/24 +  Case Details
    Apr 25, 2024G063092
    [PDF]
    [DOC]
    Helali v. Walmart CA4/3 filed 4/25/24 +  Case Details
    Apr 25, 2024F085829
    [PDF]
    [DOC]
    Riaz v. Family Health Care Network CA5 filed 4/25/24 +  Case Details
    Apr 25, 2024C097475
    [PDF]
    [DOC]
    P. v. Vaccaro CA3 filed 4/25/24 +  Case Details
    Apr 25, 2024A165916
    [PDF]
    [DOC]
    Adoption of D.D. CA1/4 filed 4/25/24  Case Details   Related Case: A166082 +
    Apr 25, 2024H051393
    [PDF]
    [DOC]
    Marriage of Longinotti and Karpala CA6 filed 4/25/24 +  Case Details
    Apr 25, 2024F086868
    [PDF]
    [DOC]
    In re K.C. CA5 filed 4/25/24 +  Case Details
    Apr 25, 2024D080617
    [PDF]
    [DOC]
    Del Mar Union School Dist. v. Natalie R. CA4/1 filed 4/25/24 +  Case Details
    Apr 25, 2024C096783
    [PDF]
    [DOC]
    Medic Ambulance Service v. Sacramento Metropolitan Fire Dist. CA3 filed 4/25/24 +  Case Details
    Apr 25, 2024B330698
    [PDF]
    [DOC]
    P. v. Allen CA2/5 filed 4/25/24 +  Case Details
    Apr 25, 2024B326428
    [PDF]
    [DOC]
    Moazed v. Javaherbin CA2/1 filed 4/25/24 +  Case Details
    Apr 25, 2024B321064
    [PDF]
    [DOC]
    Sturm v. County of L.A. Dept. of Probation CA2/7 filed 4/25/24 +  Case Details
    Apr 25, 2024A168508
    [PDF]
    [DOC]
    In re Z.C. CA1/5 filed 4/25/24 +  Case Details
    Apr 25, 2024A166276
    [PDF]
    [DOC]
    Young v. CEP America CA1/2 filed 4/25/24 +  Case Details
    Apr 25, 2024F085888
    [PDF]
    [DOC]
    P. v. Ramsey CA5 filed 4/25/24 +  Case Details
    Apr 25, 2024C098597
    [PDF]
    [DOC]
    P. v. Lynn CA3 filed 4/25/24 +  Case Details
    Apr 25, 2024C098574
    [PDF]
    [DOC]
    Cantek America v. Leadermac Machinery CA3 filed 4/25/24 +  Case Details
    Apr 25, 2024C098396
    [PDF]
    [DOC]
    P. v. Quinnett CA3 filed 4/25/24 +  Case Details
    Apr 25, 2024C097657
    [PDF]
    [DOC]
    P. v. Peete CA3 filed 4/25/24 +  Case Details
    Apr 25, 2024B330782
    [PDF]
    [DOC]
    Liu v. Lanterprise CA2/7 filed 4/25/24 +  Case Details
    Apr 25, 2024B326955
    [PDF]
    [DOC]
    Stacy V. v. Frank B. CA2/7 filed 4/25/24 +  Case Details
    Apr 25, 2024B323207
    [PDF]
    [DOC]
    P. v. Joseph CA2/7 filed 4/25/24 +  Case Details
    Apr 25, 2024B321578
    [PDF]
    [DOC]
    In re R.B. CA2/7 filed 4/25/24 +  Case Details
    Apr 25, 2024C097108
    [PDF]
    [DOC]
    P. v. Garcia CA3 filed 4/25/24 +  Case Details
    +

    -

    -


    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Date Posted
    Docket #/
    File Format
    Description

    May 07 2012S076721
    [PDF] [DOC]

    P. v. Jones 5/7/12 SC -  Case Details
    May 03 2012S185305
    [PDF] [DOC]

    P. v. Thomas 5/3/12 SC -  Case Details
    Apr 30 2012S185827
    [PDF] [DOC]

    Kirby v. Immoos Fire etc. 4/30/12 SC -  Case Details
    Apr 30 2012S189733
    [PDF] [DOC]

    P. v. Cornett 4/30/12 SC -  Case Details
    Apr 26 2012S173860
    [PDF] [DOC]

    Dicon Fiberoptics v. Franchise Tax Bd. 4/26/12 SC -  Case Details
    Apr 26 2012S097189
    [PDF] [DOC]

    P. v. Myles 4/26/12 SC -  Case Details
    Apr 26 2012S090499
    [PDF] [DOC]

    P. v. Livingston 4/26/12 SC -  Case Details
    Apr 23 2012S183961
    [PDF] [DOC]

    Maldonado v. Super. Ct. 4/23/12 SC -  Case Details
    Apr 19 2012S178823
    [PDF] [DOC]

    P. v. Hernandez 4/19/12 SC -  Case Details
    Apr 16 2012S033149
    [PDF] [DOC]

    P. v. Weaver 4/16/12 SC -  Case Details
    Apr 12 2012S166350
    [PDF] [DOC]

    Brinker Restaurant Corp. v. Super. Ct. 4/12/12 SC -  Case Details
    Mar 29 2012S171382
    [PDF] [DOC]

    Quarry v. Doe I 3/29/12 SC -  Case Details
    Mar 19 2012S064733
    [PDF] [DOC]

    P. v. Abel 3/19/12 SC -  Case Details
    Mar 14 2012S186661M
    [PDF] [DOC]

    P. v. Cravens 3/14/12 SC -  Case Details
    Mar 08 2012S191400
    [PDF] [DOC]

    P. v. Manzo 3/8/12 SC -  Case Details
    Mar 08 2012S188982
    [PDF] [DOC]

    C.A. v. William S. Hart Union High School 3/8/12 SC -  Case Details
    Mar 05 2012S181788
    [PDF] [DOC]

    In re Lucas 3/5/12 SC -  Case Details
    Feb 23 2012S048337
    [PDF] [DOC]

    P. v. Thomas 2/23/12 SC -  Case Details
    Feb 06 2012S080947
    [PDF] [DOC]

    P. v. Enraca 2/6/12 SC -  Case Details
    Feb 06 2012S055652
    [PDF] [DOC]

    P. v. Fuiava 2/6/12 SC -  Case Details
    Feb 02 2012S027094
    [PDF] [DOC]

    P. v. Elliott 2/2/12 SC -  Case Details
    Feb 02 2012S093754
    [PDF] [DOC]

    P. v. Brents 2/2/12 SC -  Case Details
    Jan 30 2012S188619
    [PDF] [DOC]

    P. v. Johnson 1/30/12 SC -  Case Details
    Jan 30 2012S186661
    [PDF] [DOC]

    P. v. Cravens 1/30/12 SC -  Case Details
    Jan 27 2012S198387
    [PDF] [DOC]

    Vandermost v. Bowen 1/27/12 SC -  Case Details
    -

    + + + diff --git a/tests/examples/opinions/united_states/colo_example.compare.json b/tests/examples/opinions/united_states/colo_example.compare.json index 4e65dff25..94a42e111 100644 --- a/tests/examples/opinions/united_states/colo_example.compare.json +++ b/tests/examples/opinions/united_states/colo_example.compare.json @@ -1,35 +1,26 @@ [ { - "case_dates": "2022-12-19", - "case_names": "The People of the State of Colorado v. Belinda Knisley, a Tina Peters.", - "download_urls": "https://www.courts.state.co.us/userfiles/file/Court_Probation/Supreme_Court/Opinions/2022/22SA290.pdf", + "case_dates": "2024-07-01", + "case_names": "Ricardo Castro v. The People of the State of Colorado", + "download_urls": "https://colorado.vlex.io/vid/castro-v-people-1042407550/content", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22SA290", - "citations": "2022 CO 59", + "docket_numbers": "22SC712", + "citations": "2024 CO 56", + "parallel_citations": "", "case_name_shorts": "" }, { - "case_dates": "2022-12-19", - "case_names": "Marshall P. Brown, in his official capacity as Director of Water of the City of Aurora, Colorado v. Walker Commercial, Inc., a Colorado c orporation.", - "download_urls": "https://www.courts.state.co.us/userfiles/file/Court_Probation/Supreme_Court/Opinions/2021/21SC390.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21SC390", - "citations": "2022 CO 57", - "case_name_shorts": "" - }, - { - "case_dates": "2022-12-19", - "case_names": "Jan Kulmann, in her official capacity as Mayor of the City of Thornton and the Cit y of Thornton, Colorado, a Colorado municipal corporation, v.", - "download_urls": "https://www.courts.state.co.us/userfiles/file/Court_Probation/Supreme_Court/Opinions/2022/22SC135.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-07-01", + "case_names": "In re the Marriage of Elyssa M. Fox, and Alexander L. Speaker", + "download_urls": "https://colorado.vlex.io/vid/in-re-marriage-of-1042461692/content", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22SC135", - "citations": "2022 CO 58", + "docket_numbers": "24SC76", + "citations": "", + "parallel_citations": "", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/colo_example.html b/tests/examples/opinions/united_states/colo_example.html deleted file mode 100644 index 91f729e68..000000000 --- a/tests/examples/opinions/united_states/colo_example.html +++ /dev/null @@ -1 +0,0 @@ -\n \n \n A5753112.19.22.pdf\n\n\n\n\n\n \n\n \n\n \n\n \n

    \n\n
    \n
    \n
    \n
    \n \n \n \n \n
    \n
    \n\n
    \n \n
    \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n\n
    \n \n\n \n\n \n\n \n\n
    \n
    \n
    \n
    \n \n
    \n \n
    \n \n
    \n \n
    \n \n of 10\n
    \n
    \n \n\n \n\n \n \n Current View\n \n\n
    \n\n \n\n \n \n\n \n
    \n
    \n
    \n \n
    \n \n
    \n \n \n \n
    \n
    \n \n
    \n
    \n\n
    \n
    CASE ANNOUNCEMENTS
    COLORADO SUPREME COURT
    MONDAY, DECEMBER 19, 2022
    "Slip opinions" are the opinions delivered by the Supreme Court Justices and are subject to
    modification, rehearing, withdrawal, or clerical corrections. Modifications to previously posted
    opinions will be linked to the case number in the petition for rehearing section the day the
    changes are announced.
    Click on the case number to view the opinion in pdf format.
    -------------------------------------------------------------------------------------------------------------------

    OPINIONS

    2022 CO 57

    Supreme Court Case No. 21SC390

    Certiorari to the Colorado Court of Appeals

    Court of Appeals Case No.
    20CA205
    Arapahoe County District Court Case No. 19CV32190

    Honorable Elizabeth Weishaupl

    Petitioner:

    Marshall P. Brown, in his official capacity as Director of Water of the City of Aurora,

    Colorado,

    v.

    Respondent:

    Walker Commercial, Inc., a Colorado
    corporation.
    Judgment Reversed

    en banc

    JUSTICE MÁRQUEZ delivered the Opinion of the Court, in which CHIEF JUSTICE
    BOATRIGHT, JUSTICE HOOD, JUSTICE GABRIEL, JUSTICE HART, JUSTICE
    SAMOUR, and JUSTICE BERKENKOTTER joined.
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    MONDAY, DECEMBER 19, 2022
    -------------------------------------------------------------------------------------------------------------------

    2

    2022 CO 58

    Supreme Court Case No. 22SC135

    C.A.R. 50 Certiorari to the Colorado Court of Appeals

    Court of Appeals Case No. 21CA2019

    Adams County District Court Case No. 21CV30611

    Honorable Teri L. Vasquez, Judge

    _____________________________________________________________________________

    Petitioners:

    Jan Kulmann, in her official capacity as Mayor of the City of Thornton; and the City of
    Thornton, Colorado, a Colorado municipal corporation,

    v.

    Respondent:

    Cherish Salazar.

    _____________________________________________________________________________

    Judgment Reversed

    en banc

    JUSTICE GABRIEL
    delivered the Opinion of the Court, in which CHIEF JUSTICE
    BOATRIGHT
    , JUSTICE MÁRQUEZ, JUSTICE HART, and JUSTICE SAMOUR
    joined.

    JUSTICE HOOD, joined by JUSTICE BERKENKOTTER, dissented.
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    MONDAY, DECEMBER 19, 2022
    -------------------------------------------------------------------------------------------------------------------

    3

    2022 CO 59

    Supreme Court Case No. 22SA290

    Original Proceeding Pursuant to C.A.R. 21

    Mesa County District Court Case No. 22CV10

    Honorable Paul R. Dunkelman, Chief Judge

    In Re

    Plaintiff:

    The People of the State of Colorado,

    v.

    Defendant:

    Belinda Knisley,

    and Concerning:

    Tina Peters.

    Rule Made Absolute

    en banc

    JUSTICE GABRIEL
    delivered the Opinion of the Court, in which CHIEF JUSTICE
    BOATRIGHT
    , JUSTICE MÁRQUEZ, JUSTICE HOOD, JUSTICE HART, JUSTICE
    SAMOUR
    , and JUSTICE BERKENKOTTER joined.
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    MONDAY, DECEMBER 19, 2022
    -------------------------------------------------------------------------------------------------------------------

    4

    RULE CHANGES

    RULE CHANGE 2022(17)

    UNAUTHORIZED PRACTICE OF LAW RULES
    Rules 228, 229, 230, 231, 232, 232.1, 232.2, 232.3, 232.4, 232.5, 232.6, 232.7, 232.8, 232.9,
    232.10, 232.11, 232.12, 232.13, 232.14, 232.15, 232.16, 232.17, 232.18, 232.19, 232.20, 232.21,
    232.22, 232.23, 232.24, 232.25, 232.26, 232.27, 232.28, 232.29, 232.30, 234, 235, 236, 237, 238,
    239, 240, 240.1, and 240.2
    Amended and Adopted by the Court, En Banc, December 15, 2022, effective
    immediately.

    RULE CHANGE 2022(18)

    RULES GOVERNING LAWYER DISCIPLINE AND DISABILITY PROCEEDINGS,
    PROTECTIVE APPOINTMENT OF COUNSEL, CONTINUING LEGAL AND
    JUDICIAL EDUCATION, ATTORNEYS’ FUND FOR CLIENT PROTECTION, AND
    LAWYER ASSISTANCE PROGRAMS
    Rule 255
    Amended and Adopted by the Court, En Banc, December 15, 2022, effective
    immediately.
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    MONDAY, DECEMBER 19, 2022
    -------------------------------------------------------------------------------------------------------------------

    5

    GRANTED PETITION FOR WRIT OF CERTIORARI

    No. 21SC920, Court of Appeals Case No. 20CA997

    Petitioner:

    Jared S. Polis, in his official capacity as Governor of the State of Colorado,

    v.

    Respondents:

    Rocky Mountain Gun Owners, a Colorado nonprofit corporation; Patrick Neville,
    Representative; Lori Saine, House Minority Leader; and Dave Williams, Representative.

    Petition for Writ of Certiorari GRANTED. EN BANC.

    [REFRAMED] Whether the court of appeals misinterpreted Markwell v. Cooke, 2021 CO
    17, in ruling that the plaintiffs’ complaint asserting lack of compliance with the unanimity
    requirement of the Reading Clause, Colo. Const. art. V, § 22, “doesn’t present a
    nonjusticiable political question.”

    [REFRAMED] Whether the court of appeals erred in concluding that two of the plaintiff
    legislators suffered an injury in fact for purposes of standing when their requests to have
    the “Red Flag Law” bill read in full before it was voted on were denied.

    DENIED AS TO ALL OTHER ISSUES.
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    MONDAY, DECEMBER 19, 2022
    -------------------------------------------------------------------------------------------------------------------

    6

    DENIED PETITIONS FOR WRIT OF CERTIORARI

    No. 22SC157, Court of Appeals Case No. 17CA1079

    Petitioner:

    The People of the State of Colorado,

    v.

    Respondent:

    Larry D. Buckner.

    Petition for Writ of Certiorari DENIED. EN BANC.

    JUSTICE SAMOUR would grant as to the following issue:

    Whether a division of the court of appeals misapplied the plain error standard in
    finding cumulative plain error warranting reversal.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC308, Court of Appeals Case No. 21CA503

    In re the Marriage of

    Petitioner:

    Derek Skellchock,

    and

    Respondent:

    Alora-Ann Volz.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC359, Court of Appeals Case No. 20CA2097

    Petitioner:

    Robins Kaplan, LLP,

    v.

    Respondent:

    Gil Gerstein.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    MONDAY, DECEMBER 19, 2022
    -------------------------------------------------------------------------------------------------------------------

    7

    No. 22SC403, Court of Appeals Case No. 21CA177

    In re the Marriage of

    Petitioner:

    Martine Bernard,

    and

    Respondent:

    Christopher Hodyl.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC438, Court of Appeals Case No. 20CA1465

    Petitioners:

    Paul A. Frederiksen and Brenda J. Frederiksen,

    v.

    Respondents:

    Gravina Siding and Windows Company, Larry A. Gravina, Mike Gravina, and Jason
    Castro.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC470, Court of Appeals Case No. 22CA636

    Petitioner:
    Tom Macurdy, Personal Representative of Estate of Larry Andrews,
    v.
    Respondents:
    Arbordale Acres, LLC; Pattie Golden; Kingsley Management, Corp.; and Nate Nelson.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC480, Court of Appeals Case No. 22CA752

    Petitioner:
    Jackie-Devere Allen Cole,
    v.
    Respondent:
    The People of the State of Colorado.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    MONDAY, DECEMBER 19, 2022
    -------------------------------------------------------------------------------------------------------------------

    8

    No. 22SC482, Court of Appeals Case No. 19CA1200

    Petitioner:
    Jeromie James Rose,
    v.
    Respondent:
    The People of the State of Colorado.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC491, Court of Appeals Case No. 19CA1059

    Petitioner:
    Raymond Davenport,
    v.
    Respondent:
    The People of the State of Colorado.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC492, Court of Appeals Case No. 19CA767

    Petitioner:
    Keevin Bell, II,
    v.
    Respondent:
    The People of the State of Colorado.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC493, Court of Appeals Case No. 20CA900

    Petitioner:
    Joshua Polaske,
    v.
    Respondent:
    The People of the State of Colorado.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    MONDAY, DECEMBER 19, 2022
    -------------------------------------------------------------------------------------------------------------------

    9

    22SC514, Court of Appeals Case No. 19CA650

    Petitioner:
    Daniel Ramirez,
    v.
    Respondent:
    The People of the State of Colorado.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC515, Court of Appeals Case No. 19CA2232

    Petitioner:
    Felimon Landeros Ramos,
    v.
    Respondent:
    The People of the State of Colorado.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC519, Court of Appeals Case No. 19CA576

    Petitioner:
    Kenneth Scott Casey,
    v.
    Respondent:
    The People of the State of Colorado.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC528, Court of Appeals Case No. 20CA1143

    Petitioner:
    Frederick Charles Battle,
    v.
    Respondent:
    The People of the State of Colorado.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    MONDAY, DECEMBER 19, 2022
    -------------------------------------------------------------------------------------------------------------------

    10

    No. 22SC839, Court of Appeals Case No. 21CA1571

    Petitioners:
    C.C. and B.C.,
    v.
    Respondent:
    The People of the State of Colorado,
    In the Interest of Minor Children:
    C.L.C. and B.S.C.

    Petitions for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------
    \n
    \n\n
    \n\n
    \n \n
    \n \n
    \n
    \n \n
    \n
    \n \n \n
    \n
    \n \n
    \n File name:\n

    -

    \n
    \n
    \n File size:\n

    -

    \n
    \n
    \n
    \n Title:\n

    -

    \n
    \n
    \n Author:\n

    -

    \n
    \n
    \n Subject:\n

    -

    \n
    \n
    \n Keywords:\n

    -

    \n
    \n
    \n Creation Date:\n

    -

    \n
    \n
    \n Modification Date:\n

    -

    \n
    \n
    \n Creator:\n

    -

    \n
    \n
    \n
    \n PDF Producer:\n

    -

    \n
    \n
    \n PDF Version:\n

    -

    \n
    \n
    \n Page Count:\n

    -

    \n
    \n
    \n Page Size:\n

    -

    \n
    \n
    \n
    \n Fast Web View:\n

    -

    \n
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    \n\n \n\n diff --git a/tests/examples/opinions/united_states/colo_example.json b/tests/examples/opinions/united_states/colo_example.json new file mode 100644 index 000000000..b34c4c145 --- /dev/null +++ b/tests/examples/opinions/united_states/colo_example.json @@ -0,0 +1,459 @@ +{ + "provider": "content-api", + "count": 30227, + "results": [ + { + "id": 1042461692, + "type": "document", + "properties": [ + { + "property": { + "id": "k06opofdgweyj", + "label": "Court" + }, + "values": [ + "Colorado Supreme Court" + ] + }, + { + "property": { + "id": "p08", + "label": "Date" + }, + "values": [ + "July 01, 2024" + ] + } + ], + "title": "In re Marriage of Fox", + "country": { + "id": "US", + "label": "Estados Unidos" + }, + "detail_json": { + "parent": { + "id": 1695583, + "type": null, + "parent": { + "id": 14024, + "type": "source", + "title": "Colorado", + "public_url": "http://case-law.vlex.com/source/14024", + "copyright": null, + "title.en": "CO", + "meta": null, + "frontpage_image": null, + "frontpage_image_highres": null, + "jurisdiction_id": "US", + "unpublished_source": false + }, + "title": "Colorado Supreme Court", + "subtitle": null, + "alternative_key": "desc1_14024_01", + "public_url": "https://case-law.vlex.com/source/14024/chapter/colorado-supreme-court-1695583", + "meta": { + "children": "/v1/chapters/1695583/children.json" + }, + "client_url": "/search/jurisdiction:US+content_type:2+source:14024+emisor_1:01/*" + }, + "id": 1042461692, + "type": "document", + "published_at": "2024-07-03", + "slug": "in-re-marriage-of", + "title": "In re Marriage of Fox", + "counters": { + "cited_in": { + "negative": 0, + "positive": 0, + "neutral": 0, + "total": 0 + }, + "cited_authorities": 0, + "versions": false, + "amendments": 0 + }, + "is_consolidated_text": false, + "history_and_versions": null, + "expressions": [ + { + "vid": 1042461692, + "label": "Document", + "citedAs": null, + "contentAvailable": true, + "isAuthorized": true, + "tabConfig": { + "title": "Tab", + "type": "tab" + }, + "type": null, + "kindOf": [] + } + ], + "followable": false, + "reliable_lang": "en", + "public_url": "https://colorado.vlex.io/vid/in-re-marriage-of-1042461692", + "doc_date": "2024-07-01", + "country": { + "id": "US", + "language": "EN", + "name": "United States" + }, + "translatable": true, + "iceberg_record_info": { + "iceberg_record_id": "r06sg1sk0947cna", + "iceberg_record_owner": "ICBG", + "iceberg_organization_id": "oupqvi" + }, + "children": [], + "formats": [ + { + "mime_type": "application/pdf", + "show_inline": false, + "url": "pdf/1042461692", + "original": false, + "label": "Document", + "isAuthorized": true + }, + { + "mime_type": "application/docx", + "url": "docx/1042461692", + "original": false, + "label": "Document", + "isAuthorized": true + } + ], + "has_plain_text": true, + "properties": [ + { + "property": { + "id": "p06oq53ny752l", + "label": "Docket Number" + }, + "values": [ + "24SC76" + ] + }, + { + "property": { + "id": "p06qozl99eoi12p", + "label": "Decision Date" + }, + "values": [ + "01 July 2024" + ] + }, + { + "property": { + "id": "k06p7opb445qoof", + "label": "Parties" + }, + "values": [ + "In re the Marriage of Elyssa M. Fox, Petitioner and Alexander L. Speaker, Respondent" + ] + }, + { + "property": { + "id": "k06opofdgweyj", + "label": "Court" + }, + "values": [ + "Colorado Supreme Court" + ] + } + ], + "library": { + "id": 14, + "title": "Case Law", + "public_url": "http://case-law.vlex.com", + "type": "library", + "video_library": false, + "library_type": { + "id": 2, + "content_type": "Jurisprudencia" + }, + "meta": { + "children": "/v1/libraries/14/children.json" + }, + "country": { + "id": "US", + "language": "EN" + } + }, + "abstract_is_analysis": false, + "abstract": null, + "meta": { + "vincent": "/v1/vincent/vid_analysis/1042461692" + }, + "source": { + "id": 14024, + "type": "source", + "title": "Colorado", + "public_url": "http://case-law.vlex.com/source/14024", + "copyright": null, + "title.en": "CO", + "meta": null, + "frontpage_image": null, + "frontpage_image_highres": null, + "jurisdiction_id": "US", + "unpublished_source": false, + "search_scope": "jurisdiction:US+content_type:2+source:14024", + "isbn": null, + "peer_reviewed": null, + "description": null, + "warning": null, + "full_coverage_from": null, + "source_description": null, + "first_record_at": "1864-01-01", + "last_record_at": "2024-07-01", + "content_type": "Jurisprudencia", + "video_source": false, + "date": "2020-11-12", + "country": { + "id": "US", + "language": "EN" + }, + "language": "en", + "alternate_languages": [], + "publisher": null + } + } + }, + { + "id": 1042407550, + "type": "document", + "properties": [ + { + "property": { + "id": "k06opofdgweyj", + "label": "Court" + }, + "values": [ + "Colorado Supreme Court" + ] + }, + { + "property": { + "id": "p08", + "label": "Date" + }, + "values": [ + "July 01, 2024" + ] + }, + { + "property": { + "id": "pCitations", + "label": "Citations" + }, + "values": [ + { + "value": "2024 CO 56" + } + ] + } + ], + "title": "Castro v. People", + "country": { + "id": "US", + "label": "Estados Unidos" + }, + "detail_json": { + "parent": { + "id": 1695583, + "type": null, + "parent": { + "id": 14024, + "type": "source", + "title": "Colorado", + "public_url": "http://case-law.vlex.com/source/14024", + "copyright": null, + "title.en": "CO", + "meta": null, + "frontpage_image": null, + "frontpage_image_highres": null, + "jurisdiction_id": "US", + "unpublished_source": false + }, + "title": "Colorado Supreme Court", + "subtitle": null, + "alternative_key": "desc1_14024_01", + "public_url": "https://case-law.vlex.com/source/14024/chapter/colorado-supreme-court-1695583", + "meta": { + "children": "/v1/chapters/1695583/children.json" + }, + "client_url": "/search/jurisdiction:US+content_type:2+source:14024+emisor_1:01/*" + }, + "id": 1042407550, + "type": "document", + "published_at": "2024-07-02", + "slug": "castro-v-people", + "title": "Castro v. People", + "counters": { + "cited_in": { + "negative": 0, + "positive": 0, + "neutral": 0, + "total": 0 + }, + "cited_authorities": 0, + "versions": false, + "amendments": 0 + }, + "is_consolidated_text": false, + "history_and_versions": null, + "expressions": [ + { + "vid": 1042407550, + "label": "Document", + "citedAs": null, + "contentAvailable": true, + "isAuthorized": true, + "tabConfig": { + "title": "Tab", + "type": "tab" + }, + "type": null, + "kindOf": [] + } + ], + "followable": false, + "reliable_lang": "en", + "public_url": "https://colorado.vlex.io/vid/castro-v-people-1042407550", + "doc_date": "2024-07-01", + "country": { + "id": "US", + "language": "EN", + "name": "United States" + }, + "translatable": true, + "iceberg_record_info": { + "iceberg_record_id": "r06sfzxa6789qby", + "iceberg_record_owner": "ICBG", + "iceberg_organization_id": "oupqvi" + }, + "children": [], + "formats": [ + { + "mime_type": "application/pdf", + "show_inline": false, + "url": "pdf/1042407550", + "original": false, + "label": "Document", + "isAuthorized": true + }, + { + "mime_type": "application/docx", + "url": "docx/1042407550", + "original": false, + "label": "Document", + "isAuthorized": true + } + ], + "has_plain_text": true, + "properties": [ + { + "property": { + "id": "p06oq53ny752l", + "label": "Docket Number" + }, + "values": [ + "22SC712" + ] + }, + { + "property": { + "id": "p06qozl99eoi12p", + "label": "Decision Date" + }, + "values": [ + "01 July 2024" + ] + }, + { + "property": { + "id": "p06opolc4wf8y", + "label": "Citation" + }, + "values": [ + "2024 CO 56" + ] + }, + { + "property": { + "id": "k06p7opb445qoof", + "label": "Parties" + }, + "values": [ + "Ricardo Castro, Petitioner v. The People of the State of Colorado, Respondent" + ] + }, + { + "property": { + "id": "k06opofdgweyj", + "label": "Court" + }, + "values": [ + "Colorado Supreme Court" + ] + } + ], + "library": { + "id": 14, + "title": "Case Law", + "public_url": "http://case-law.vlex.com", + "type": "library", + "video_library": false, + "library_type": { + "id": 2, + "content_type": "Jurisprudencia" + }, + "meta": { + "children": "/v1/libraries/14/children.json" + }, + "country": { + "id": "US", + "language": "EN" + } + }, + "abstract_is_analysis": false, + "abstract": null, + "meta": { + "vincent": "/v1/vincent/vid_analysis/1042407550" + }, + "source": { + "id": 14024, + "type": "source", + "title": "Colorado", + "public_url": "http://case-law.vlex.com/source/14024", + "copyright": null, + "title.en": "CO", + "meta": null, + "frontpage_image": null, + "frontpage_image_highres": null, + "jurisdiction_id": "US", + "unpublished_source": false, + "search_scope": "jurisdiction:US+content_type:2+source:14024", + "isbn": null, + "peer_reviewed": null, + "description": null, + "warning": null, + "full_coverage_from": null, + "source_description": null, + "first_record_at": "1864-01-01", + "last_record_at": "2024-07-01", + "content_type": "Jurisprudencia", + "video_source": false, + "date": "2020-11-12", + "country": { + "id": "US", + "language": "EN" + }, + "language": "en", + "alternate_languages": [], + "publisher": null + } + } + } + ], + "properties": [] +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/colo_example_2.compare.json b/tests/examples/opinions/united_states/colo_example_2.compare.json deleted file mode 100644 index 332d49df5..000000000 --- a/tests/examples/opinions/united_states/colo_example_2.compare.json +++ /dev/null @@ -1,79 +0,0 @@ -[ - { - "case_dates": "2022-12-19", - "case_names": "Timothy Robert McBride v. The People of the State of Colorado", - "download_urls": "https://www.courts.state.co.us/userfiles/file/Court_Probation/Supreme_Court/Opinions/2020/20SC717.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20SC717", - "citations": "2022 CO 30", - "case_name_shorts": "" - }, - { - "case_dates": "2022-12-19", - "case_names": "The People of the State of Colorado v. Yolanda Ursula Vialpando", - "download_urls": "https://www.courts.state.co.us/userfiles/file/Court_Probation/Supreme_Court/Opinions/2020/20SC343.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20SC343", - "citations": "2022 CO 28", - "case_name_shorts": "" - }, - { - "case_dates": "2022-12-19", - "case_names": "The People of the State of Colorado v. Isaiah Cain Truji llo - Tucson", - "download_urls": "https://www.courts.state.co.us/userfiles/file/Court_Probation/Supreme_Court/Opinions/2021/21SA386.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21SA386", - "citations": "2022 CO 31", - "case_name_shorts": "" - }, - { - "case_dates": "2022-12-19", - "case_names": "Nathanael E. Owens v. Mary Carlson, Scott Dauffenbach, and Dean Williams.", - "download_urls": "https://www.courts.state.co.us/userfiles/file/Court_Probation/Supreme_Court/Opinions/2021/21SC52.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21SC52", - "citations": "2022 CO 33", - "case_name_shorts": "" - }, - { - "case_dates": "2022-12-19", - "case_names": "Fo rd Motor Company v. Forrest Walker", - "download_urls": "https://www.courts.state.co.us/userfiles/file/Court_Probation/Supreme_Court/Opinions/2020/20SC947.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20SC947", - "citations": "2022 CO 32", - "case_name_shorts": "" - }, - { - "case_dates": "2022-12-19", - "case_names": "E.K., Steven Eugene Cook, and Holly Mercer Cook and Martin Andre Kristiseter.", - "download_urls": "https://www.courts.state.co.us/userfiles/file/Court_Probation/Supreme_Court/Opinions/2022/22SA31.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "22SA31", - "citations": "2022 CO 34", - "case_name_shorts": "" - }, - { - "case_dates": "2022-12-19", - "case_names": "Chronos Builders LLC v. Department of Labor and Employment, Division of Family and Medical Leave Insurance Judgment", - "download_urls": "https://www.courts.state.co.us/userfiles/file/Court_Probation/Supreme_Court/Opinions/2022/22SC78.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "22SC78", - "citations": "2022 CO 29", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/colo_example_2.html b/tests/examples/opinions/united_states/colo_example_2.html deleted file mode 100644 index 58dee44c6..000000000 --- a/tests/examples/opinions/united_states/colo_example_2.html +++ /dev/null @@ -1,395 +0,0 @@ - - - - B2CB9C6.21.22.pdf - - - - - - - - - - - - -
    - -
    -
    -
    -
    - - - - -
    -
    - -
    - -
    -
    -
    -
    - - - -
    -
    -
    - -
    - - - - - - - - -
    -
    -
    -
    - -
    - -
    - -
    - -
    - - of 14 -
    -
    - - - - - - - Current View - - -
    - - - - - - - -
    -
    -
    - -
    - -
    - - - -
    -
    - -
    -
    - -
    -
    CASE ANNOUNCEMENTS
    COLORADO SUPREME COURT
    TUESDAY, JUNE 21, 2022
    "Slip opinions" are the opinions delivered by the Supreme Court Justices and are subject to
    modification, rehearing, withdrawal, or clerical corrections. Modifications to previously posted
    opinions will be linked to the case number in the petition for rehearing section the day the
    changes are announced.
    Click on the case number to view the opinion in pdf format.
    -------------------------------------------------------------------------------------------------------------------

    OPINIONS

    2022 CO 28

    Supreme Court Case No. 20SC343

    Certiorari to the Colorado Court of Appeals

    Court of Appeals Case No. 17CA1536

    Petitioner:

    The People of the State of Colorado
    ,
    v.

    Respondent:

    Yolanda Ursula Vialpando
    .
    Judgment Reversed

    en banc

    CHIEF JUSTICE BOATRIGHT
    delivered the Opinion of the Court, in which JUSTICE
    MÁRQUEZ
    , JUSTICE HOOD, JUSTICE HART, JUSTICE SAMOUR, and JUSTICE
    BERKENKOTTER
    joined.
    JUSTICE
    GABRIEL concurred in the judgment.
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    TUESDAY, JUNE 21, 2022
    -------------------------------------------------------------------------------------------------------------------

    2

    2022 CO 29

    Supreme Court Case No. 22SC78

    C.A.R. 50 Certiorari to the Colorado Court of Appeals

    Court of Appeals Case No. 22CA91

    District Court, City and County of Denver, Case No. 21CV32203

    Honorable Michael A. Martinez, Chief Judge

    Petitioner:

    Chronos Builders, LLC,

    v.

    Respondent:

    Department of Labor and Employment, Division of Family and Medical Leave
    Insurance.

    Judgment Affirmed

    en banc

    JUSTICE MÁRQUEZ
    delivered the Opinion of the Court, in which CHIEF JUSTICE
    BOATRIGHT
    , JUSTICE HOOD, JUSTICE GABRIEL, JUSTICE HART, JUSTICE
    SAMOUR
    , and JUSTICE BERKENKOTTER joined.
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    TUESDAY, JUNE 21, 2022
    -------------------------------------------------------------------------------------------------------------------

    3

    2022 CO 30

    Supreme Court Case No. 20SC717

    Certiorari to the Colorado Court of Appeals

    Court of Appeals Case No. 17CA2249

    Petitioner:

    Timothy Robert McBride,

    v.

    Respondent:

    The People of the State of Colorado.

    Judgment Reversed

    en banc

    JUSTICE GABRIEL
    delivered the Opinion of the Court, in which JUSTICE
    MÁRQUEZ
    , JUSTICE HART, JUSTICE SAMOUR, and JUSTICE BERKENKOTTER
    joined.

    JUSTICE HOOD
    , joined by CHIEF JUSTICE BOATRIGHT, dissented.
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    TUESDAY, JUNE 21, 2022
    -------------------------------------------------------------------------------------------------------------------

    4

    2022 CO 31

    Supreme Court Case No. 21SA386

    Interlocutory Appeal from the District Court

    Adams County District Court Case No. 21CR441

    Honorable Sean Patrick Finn, Judge

    ________________________________________________________________________

    Plaintiff-Appellant:

    The People of the State of Colorado,

    v.

    Defendant-Appellee:

    Isaiah Cain Trujillo-Tucson.

    ________________________________________________________________________

    Order Reversed

    en banc

    JUSTICE HART delivered the Opinion of the Court, in which CHIEF JUSTICE
    BOATRIGHT, JUSTICE HOOD, JUSTICE GABRIEL, and JUSTICE SAMOUR,
    joined.

    JUSTICE GABRIEL, joined by JUSTICE HOOD, specially concurred.

    JUSTICE BERKENKOTTER, joined by JUSTICE MÁRQUEZ, dissented.

    ________________________________________________________________________
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    TUESDAY, JUNE 21, 2022
    -------------------------------------------------------------------------------------------------------------------

    5

    2022 CO 32

    Supreme Court Case No. 20SC947

    Certiorari to the Colorado Court of Appeals

    Court of Appeals Case No. 19CA1243

    Petitioner:

    Ford Motor Company,

    v.

    Respondent:

    Forrest Walker.

    Judgment Reversed

    en banc

    JUSTICE SAMOUR
    delivered the Opinion of the Court, in which CHIEF JUSTICE
    BOATRIGHT
    , JUSTICE HOOD, and JUSTICE GABRIEL joined.
    JUSTICE
    MÁRQUEZ, joined by JUSTICE HART, dissented.
    JUSTICE
    BERKENKOTTER did not participate.
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    TUESDAY, JUNE 21, 2022
    -------------------------------------------------------------------------------------------------------------------

    6

    2022 CO 33

    Supreme Court Case No. 21SC52

    Certiorari to the Colorado Court of Appeals

    Court of Appeals Case No. 19CA890

    Petitioner:

    Nathanael E. Owens,

    v.

    Respondents:

    Mary Carlson, Scott Dauffenbach, and Dean Williams.

    Judgment Reversed

    en banc

    JUSTICE SAMOUR
    delivered the Opinion of the Court, in which CHIEF JUSTICE
    BOATRIGHT
    , JUSTICE MÁRQUEZ, JUSTICE HOOD, JUSTICE GABRIEL, JUSTICE
    HART
    , and JUSTICE BERKENKOTTER joined.
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    TUESDAY, JUNE 21, 2022
    -------------------------------------------------------------------------------------------------------------------

    7

    2022 CO 34

    Supreme Court Case No. 22SA31

    Original Proceeding Pursuant to C.A.R. 21

    Arapahoe County District Court Case No. 21DR31126

    Honorable Cynthia D. Mares, Judge

    In Re

    In Re the Parental Responsibilities of

    Child:

    E.K.,

    Petitioner:

    Steven Eugene Cook,

    and

    Respondents:

    Holly Mercer Cook and Martin Andre Kristiseter.

    Rule Made Absolute

    en banc

    JUSTICE BERKENKOTTER delivered the Opinion of the Court, in which CHIEF
    JUSTICE BOATRIGHT, JUSTICE MÁRQUEZ, JUSTICE HOOD, JUSTICE
    GABRIEL, JUSTICE HART, and JUSTICE SAMOUR joined.
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    TUESDAY, JUNE 21, 2022
    -------------------------------------------------------------------------------------------------------------------

    8

    PETITIONS FOR REHEARING

    2022 CO 22

    Supreme Court Case No. 21SA122

    Appeal from the District Court

    Water Division 1, Case No. 16CW3052

    Honorable James F. Hartmann, Water Judge

    Concerning the Application for Water Rights of The
    Farmers Reservoir and Irrigation
    Company in Adams and Weld Counties.

    Applicant
    -Appellant/Cross-Appellee:
    The Farmers Reservoir and Irrigation Company
    ,
    v.

    Opposer
    -Appellees:
    Public Service Company of Colorado; Irrigationists Association; Central Colora
    do
    Water Conservancy District; Fort Morgan Reservoir and Irrigation Company; City of

    Brighton; City of Commerce City; Henrylyn Irrigation District; South Adams County

    Water and Sanitation District; Town of Lochbuie; Platte Valley Irrigation Company;

    City o
    f Englewood; City of Aurora; Lower Latham Reservoir Company; Dream Weaver
    Holdings LLC; City of Thornton; Centennial Water and Sanitation District; Kevin Rein,

    State Engineer; and Corey DeAngelis, Division Engineer for Water Division 1;

    and

    Opposer
    -Appellees/Cross-Appellants:
    Arapahoe County Water and Wastewater Authority, East Cherry Creek Valley Water

    and Sanitation District, and United Water and Sanitation District.

    Petition for Rehearing DENIED. EN BANC.
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    TUESDAY, JUNE 21, 2022
    -------------------------------------------------------------------------------------------------------------------

    9

    ORIGINAL PROCEEDING

    22SA195
    In Re Nelson, Floyd v. Encompass
    Order to Show Cause issued June 14, 2022

    GRANTED PETITION FOR WRIT OF CERTIORARI

    No. 21SC807, Court of Appeals Case No. 19CA1226

    Petitioner:

    Maurice Antwan Palmer,

    v.

    Respondent:

    The People of the State of Colorado.

    Petition for Writ of Certiorari GRANTED. The judgment of the Colorado Court of
    Appeals is vacated, and the case is remanded to the Colorado Court of Appeals for
    reconsideration in light of People v. Weeks, 20SC340, 2021 CO 75. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------
    COLORADO SUPREME COURT CASE ANNOUNCEMENTS
    TUESDAY, JUNE 21, 2022
    -------------------------------------------------------------------------------------------------------------------

    10

    DENIED PETITIONS FOR WRIT OF CERTIORARI

    No. 21SC867, Court of Appeals Case No. 20CA223

    Petitioner:

    Jayson Richard Anderson,

    v.

    Respondent:

    The People of the State of Colorado.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC65, Court of Appeals Case No. 18CA1800

    Petitioner:
    William Arellano,
    v.
    Respondent:
    The People of the State of Colorado.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC68, Court of Appeals Case No. 22CA37

    Petitioner:
    Nikos Warrence,
    v.
    Respondent:
    The People of the State of Colorado.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------

    No. 22SC72, Court of Appeals Case No. 20CA1062

    In re the Marriage of
    Petitioner:
    David Michael Roecker,
    and
    Respondent:
    Trista Michelle Roecker.

    Petition for Writ of Certiorari DENIED. EN BANC.

    ---------------------------------------------------------------------------------------------------------------------
    -
    - -
    - -
    - -
    - -
    -
    - -
    -
    - - -
    -
    - -
    - File name: -

    -

    -
    -
    - File size: -

    -

    -
    -
    -
    - Title: -

    -

    -
    -
    - Author: -

    -

    -
    -
    - Subject: -

    -

    -
    -
    - Keywords: -

    -

    -
    -
    - Creation Date: -

    -

    -
    -
    - Modification Date: -

    -

    -
    -
    - Creator: -

    -

    -
    -
    -
    - PDF Producer: -

    -

    -
    -
    - PDF Version: -

    -

    -
    -
    - Page Count: -

    -

    -
    -
    - Page Size: -

    -

    -
    -
    -
    - Fast Web View: -

    -

    -
    -
    - -
    -
    -
    - -
    -
    - - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/coloctapp_example.compare.json b/tests/examples/opinions/united_states/coloctapp_example.compare.json index 74a80e84c..5fff71e08 100644 --- a/tests/examples/opinions/united_states/coloctapp_example.compare.json +++ b/tests/examples/opinions/united_states/coloctapp_example.compare.json @@ -1,35 +1,26 @@ [ { - "case_dates": "2022-12-29", - "case_names": "Jacob Thomas Hicks v. Colorado Hamburger Company, Inc., and JOBEC, Inc.", - "download_urls": "http://www.courts.state.co.us/Courts/Court_of_Appeals/Opinion/2022/22CA0968-PD.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "22CA0968-PD", - "citations": "2022COA149", - "case_name_shorts": "" - }, - { - "case_dates": "2022-12-29", - "case_names": "Erin Turoff v. Itachi Capital, Inc.", - "download_urls": "http://www.courts.state.co.us/Courts/Court_of_Appeals/Opinion/2022/21CA0825-PD.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-16", + "case_names": "The People of the State of Colorado, In the Interest of T.C., Jr., a Child, and Concerning L.N.P. and T.C.", + "download_urls": "https://colorado.vlex.io/pdf_viewer/1035297640", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21CA0825-PD", - "citations": "2022COA147", + "docket_numbers": "23CA1539", + "citations": "", + "parallel_citations": "", "case_name_shorts": "" }, { - "case_dates": "2022-12-29", - "case_names": "Adams County Housing Authority, d/b/a Maiker Housing Partners v. Rebekah Panzlau", - "download_urls": "http://www.courts.state.co.us/Courts/Court_of_Appeals/Opinion/2022/21CA1972-PD.pdf", + "case_dates": "2024-05-16", + "case_names": "Andrew Ortiz v. Progressive Direct Insurance Company", + "download_urls": "https://colorado.vlex.io/pdf_viewer/1035272272", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21CA1972-PD", - "citations": "2022COA148", + "docket_numbers": "23CA0292", + "citations": "2024 COA 54", + "parallel_citations": "", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/coloctapp_example.html b/tests/examples/opinions/united_states/coloctapp_example.html deleted file mode 100644 index 6a78ad1b3..000000000 --- a/tests/examples/opinions/united_states/coloctapp_example.html +++ /dev/null @@ -1,395 +0,0 @@ - - - - 8B61C312-29-22 .pdf - - - - - - - - - - - - -
    - -
    -
    -
    -
    - - - - -
    -
    - -
    - -
    -
    -
    -
    - - - -
    -
    -
    - -
    - - - - - - - - -
    -
    -
    -
    - -
    - -
    - -
    - -
    - - of 12 -
    -
    - - - - - - - Current View - - -
    - - - - - - - -
    -
    -
    - -
    - -
    - - - -
    -
    - -
    -
    - -
    -
    -1-
    ANNOUNCEMENTS
    Colorado Court of Appeals
    December 29, 2022
    _______________ __________________________ __________ _______________

    ANNOUNCEMENTS

    COLORADO COURT OF APPEALS

    December 29, 2022

    “Slip opinions” are the opinions as filed by the judges with the clerk. Slip
    opinions are subject to modification, rehearing, withdrawal, or clerical
    corrections. A link to any modifications to previously posted opinions will
    appear in the Petition for Rehearing section of the announcement document
    the day the changes are announced.

    P U B L I S H E D O P I N I O N S

    2022COA147

    Court of Appeals No.
    21CA0825
    City and County of Denver District Court No. 21CV30586

    Honorable J. Eric Elliff, Judge

    Erin Turoff,

    Plaintiff-Appellee,

    v.

    Itachi Capital, Inc.,

    Defendant-Appellant.

    APPEAL DISMISSED

    Division IV

    Opinion by JUDGE DUNN

    Grove and Schutz, JJ., concur
    -2-
    ANNOUNCEMENTS
    Colorado Court of Appeals
    December 29, 2022
    _______________ __________________________ __________ _______________

    2022COA148

    Court of Appeals No.
    21CA1972
    Adams County District Court No. 21CV30317

    Honorable Kyle Seedorf, Judge

    Adams County Housing Authority, d/b/a Maiker Housing Partners,

    Plaintiff-Appellee,

    v.

    Rebekah Panzlau,

    Defendant-Appellant.

    JUDGMENT AFFIRMED

    Division A

    Opinion by JUDGE LIPINSKY

    Fox and Freyre, JJ., concur

    2022COA149

    Court of Appeals No.
    22CA0968
    La Plata County District Court No. 20CV30136

    Honorable Todd P. Norvell, Judge

    Jacob Thomas Hicks,

    Plaintiff-Appellant,

    v.

    Colorado Hamburger Company, Inc., and JOBEC, Inc.,

    Defendants-Appellees.

    ORDER AFFIRMED IN PART, REVERSED IN PART,

    AND CASE REMANDED WITH DIRECTIONS

    Division III

    Opinion by JUDGE FOX

    Tow and Yun, JJ., concur
    -
    - -
    - -
    - -
    - -
    -
    - -
    -
    - - -
    -
    - -
    - File name: -

    -

    -
    -
    - File size: -

    -

    -
    -
    -
    - Title: -

    -

    -
    -
    - Author: -

    -

    -
    -
    - Subject: -

    -

    -
    -
    - Keywords: -

    -

    -
    -
    - Creation Date: -

    -

    -
    -
    - Modification Date: -

    -

    -
    -
    - Creator: -

    -

    -
    -
    -
    - PDF Producer: -

    -

    -
    -
    - PDF Version: -

    -

    -
    -
    - Page Count: -

    -

    -
    -
    - Page Size: -

    -

    -
    -
    -
    - Fast Web View: -

    -

    -
    -
    - -
    -
    -
    - -
    -
    - - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/coloctapp_example.json b/tests/examples/opinions/united_states/coloctapp_example.json new file mode 100644 index 000000000..401c16d9c --- /dev/null +++ b/tests/examples/opinions/united_states/coloctapp_example.json @@ -0,0 +1,459 @@ +{ + "provider": "content-api", + "count": 64838, + "results": [ + { + "id": 1035297640, + "type": "document", + "properties": [ + { + "property": { + "id": "k06opofdgweyj", + "label": "Court" + }, + "values": [ + "Colorado Court of Appeals" + ] + }, + { + "property": { + "id": "p08", + "label": "Date" + }, + "values": [ + "May 16, 2024" + ] + } + ], + "title": "People ex rel. T.C.", + "country": { + "id": "US", + "label": "Estados Unidos" + }, + "detail_json": { + "parent": { + "id": 1695584, + "type": null, + "parent": { + "id": 14024, + "type": "source", + "title": "Colorado", + "public_url": "http://case-law.vlex.com/source/14024", + "copyright": null, + "title.en": "CO", + "meta": null, + "frontpage_image": null, + "frontpage_image_highres": null, + "jurisdiction_id": "US", + "unpublished_source": false + }, + "title": "Colorado Court of Appeals", + "subtitle": null, + "alternative_key": "desc1_14024_02", + "public_url": "https://case-law.vlex.com/source/14024/chapter/colorado-court-of-appeals-1695584", + "meta": { + "children": "/v1/chapters/1695584/children.json" + }, + "client_url": "/search/jurisdiction:US+content_type:2+source:14024+emisor_1:02/*" + }, + "id": 1035297640, + "type": "document", + "published_at": "2024-05-18", + "slug": "people-ex-rel-t", + "title": "People ex rel. T.C.", + "counters": { + "cited_in": { + "negative": 0, + "positive": 0, + "neutral": 0, + "total": 0 + }, + "cited_authorities": 0, + "versions": false, + "amendments": 0 + }, + "is_consolidated_text": false, + "history_and_versions": null, + "expressions": [ + { + "vid": 1035297640, + "label": "Document", + "citedAs": null, + "contentAvailable": true, + "isAuthorized": true, + "tabConfig": { + "title": "Tab", + "type": "tab" + }, + "type": null, + "kindOf": [] + } + ], + "followable": false, + "reliable_lang": "en", + "public_url": "https://colorado.vlex.io/vid/people-ex-rel-t-1035297640", + "doc_date": "2024-05-16", + "country": { + "id": "US", + "language": "EN", + "name": "United States" + }, + "translatable": true, + "iceberg_record_info": { + "iceberg_record_id": "r06sdmzibb44y0", + "iceberg_record_owner": "ICBG", + "iceberg_organization_id": "oupqvi" + }, + "children": [], + "formats": [ + { + "mime_type": "application/pdf", + "show_inline": false, + "url": "pdf/1035297640", + "original": false, + "label": "Document", + "isAuthorized": true + }, + { + "mime_type": "application/docx", + "url": "docx/1035297640", + "original": false, + "label": "Document", + "isAuthorized": true + } + ], + "has_plain_text": true, + "properties": [ + { + "property": { + "id": "p06oq53ny752l", + "label": "Docket Number" + }, + "values": [ + "23CA1539" + ] + }, + { + "property": { + "id": "p06qozl99eoi12p", + "label": "Decision Date" + }, + "values": [ + "16 May 2024" + ] + }, + { + "property": { + "id": "k06p7opb445qoof", + "label": "Parties" + }, + "values": [ + "The People of the State of Colorado, Appellee, In the Interest of T.C., Jr., a Child, and Concerning L.N.P. and T.C., Appellants." + ] + }, + { + "property": { + "id": "k06opofdgweyj", + "label": "Court" + }, + "values": [ + "Colorado Court of Appeals" + ] + } + ], + "library": { + "id": 14, + "title": "Case Law", + "public_url": "http://case-law.vlex.com", + "type": "library", + "video_library": false, + "library_type": { + "id": 2, + "content_type": "Jurisprudencia" + }, + "meta": { + "children": "/v1/libraries/14/children.json" + }, + "country": { + "id": "US", + "language": "EN" + } + }, + "abstract_is_analysis": false, + "abstract": null, + "meta": { + "vincent": "/v1/vincent/vid_analysis/1035297640" + }, + "source": { + "id": 14024, + "type": "source", + "title": "Colorado", + "public_url": "http://case-law.vlex.com/source/14024", + "copyright": null, + "title.en": "CO", + "meta": null, + "frontpage_image": null, + "frontpage_image_highres": null, + "jurisdiction_id": "US", + "unpublished_source": false, + "search_scope": "jurisdiction:US+content_type:2+source:14024", + "isbn": null, + "peer_reviewed": null, + "description": null, + "warning": null, + "full_coverage_from": null, + "source_description": null, + "first_record_at": "1864-01-01", + "last_record_at": "2024-07-01", + "content_type": "Jurisprudencia", + "video_source": false, + "date": "2020-11-12", + "country": { + "id": "US", + "language": "EN" + }, + "language": "en", + "alternate_languages": [], + "publisher": null + } + } + }, + { + "id": 1035272272, + "type": "document", + "properties": [ + { + "property": { + "id": "k06opofdgweyj", + "label": "Court" + }, + "values": [ + "Colorado Court of Appeals" + ] + }, + { + "property": { + "id": "p08", + "label": "Date" + }, + "values": [ + "May 16, 2024" + ] + }, + { + "property": { + "id": "pCitations", + "label": "Citations" + }, + "values": [ + { + "value": "2024 COA 54" + } + ] + } + ], + "title": "Ortiz v. Progressive Direct Ins. Co.", + "country": { + "id": "US", + "label": "Estados Unidos" + }, + "detail_json": { + "parent": { + "id": 1695584, + "type": null, + "parent": { + "id": 14024, + "type": "source", + "title": "Colorado", + "public_url": "http://case-law.vlex.com/source/14024", + "copyright": null, + "title.en": "CO", + "meta": null, + "frontpage_image": null, + "frontpage_image_highres": null, + "jurisdiction_id": "US", + "unpublished_source": false + }, + "title": "Colorado Court of Appeals", + "subtitle": null, + "alternative_key": "desc1_14024_02", + "public_url": "https://case-law.vlex.com/source/14024/chapter/colorado-court-of-appeals-1695584", + "meta": { + "children": "/v1/chapters/1695584/children.json" + }, + "client_url": "/search/jurisdiction:US+content_type:2+source:14024+emisor_1:02/*" + }, + "id": 1035272272, + "type": "document", + "published_at": "2024-05-17", + "slug": "ortiz-v-progressive-direct", + "title": "Ortiz v. Progressive Direct Ins. Co.", + "counters": { + "cited_in": { + "negative": 0, + "positive": 0, + "neutral": 0, + "total": 0 + }, + "cited_authorities": 8, + "versions": false, + "amendments": 0 + }, + "is_consolidated_text": false, + "history_and_versions": null, + "expressions": [ + { + "vid": 1035272272, + "label": "Document", + "citedAs": null, + "contentAvailable": true, + "isAuthorized": true, + "tabConfig": { + "title": "Tab", + "type": "tab" + }, + "type": null, + "kindOf": [] + } + ], + "followable": false, + "reliable_lang": "en", + "public_url": "https://colorado.vlex.io/vid/ortiz-v-progressive-direct-1035272272", + "doc_date": "2024-05-16", + "country": { + "id": "US", + "language": "EN", + "name": "United States" + }, + "translatable": true, + "iceberg_record_info": { + "iceberg_record_id": "r06sdmzox9ni90f", + "iceberg_record_owner": "ICBG", + "iceberg_organization_id": "oupqvi" + }, + "children": [], + "formats": [ + { + "mime_type": "application/pdf", + "show_inline": false, + "url": "pdf/1035272272", + "original": false, + "label": "Document", + "isAuthorized": true + }, + { + "mime_type": "application/docx", + "url": "docx/1035272272", + "original": false, + "label": "Document", + "isAuthorized": true + } + ], + "has_plain_text": true, + "properties": [ + { + "property": { + "id": "p06oq53ny752l", + "label": "Docket Number" + }, + "values": [ + "23CA0292" + ] + }, + { + "property": { + "id": "p06qozl99eoi12p", + "label": "Decision Date" + }, + "values": [ + "16 May 2024" + ] + }, + { + "property": { + "id": "p06opolc4wf8y", + "label": "Citation" + }, + "values": [ + "2024 COA 54" + ] + }, + { + "property": { + "id": "k06p7opb445qoof", + "label": "Parties" + }, + "values": [ + "Andrew Ortiz, Plaintiff-Appellee, v. Progressive Direct Insurance Company, Defendant-Appellant." + ] + }, + { + "property": { + "id": "k06opofdgweyj", + "label": "Court" + }, + "values": [ + "Colorado Court of Appeals" + ] + } + ], + "library": { + "id": 14, + "title": "Case Law", + "public_url": "http://case-law.vlex.com", + "type": "library", + "video_library": false, + "library_type": { + "id": 2, + "content_type": "Jurisprudencia" + }, + "meta": { + "children": "/v1/libraries/14/children.json" + }, + "country": { + "id": "US", + "language": "EN" + } + }, + "abstract_is_analysis": false, + "abstract": null, + "meta": { + "citations": "/vid/ortiz-v-progressive-direct-1035272272/citations.json?include=case_hist&type=link", + "vincent": "/v1/vincent/vid_analysis/1035272272" + }, + "source": { + "id": 14024, + "type": "source", + "title": "Colorado", + "public_url": "http://case-law.vlex.com/source/14024", + "copyright": null, + "title.en": "CO", + "meta": null, + "frontpage_image": null, + "frontpage_image_highres": null, + "jurisdiction_id": "US", + "unpublished_source": false, + "search_scope": "jurisdiction:US+content_type:2+source:14024", + "isbn": null, + "peer_reviewed": null, + "description": null, + "warning": null, + "full_coverage_from": null, + "source_description": null, + "first_record_at": "1864-01-01", + "last_record_at": "2024-07-01", + "content_type": "Jurisprudencia", + "video_source": false, + "date": "2020-11-12", + "country": { + "id": "US", + "language": "EN" + }, + "language": "en", + "alternate_languages": [], + "publisher": null + } + } + } + ] +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/conn_example.compare.json b/tests/examples/opinions/united_states/conn_example.compare.json index 9c14a7a18..74f125d6f 100644 --- a/tests/examples/opinions/united_states/conn_example.compare.json +++ b/tests/examples/opinions/united_states/conn_example.compare.json @@ -1,272 +1,962 @@ [ { - "case_dates": "2014-07-29", - "case_names": "Mueller v. Tepler", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR57.pdf", + "case_dates": "2023-10-24", + "case_names": "Middlebury v. Fraternal Order of Police, Middlebury Lodge No. 34", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR348/348CR66.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18939", - "case_name_shorts": "Mueller" + "docket_numbers": "SC20733", + "case_name_shorts": "Middlebury" }, { - "case_dates": "2014-07-22", - "case_names": "State v. Henderson", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR53.pdf", + "case_dates": "2023-10-17", + "case_names": "Ahmed v. Oak Management Corp. (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR348/348CR40E.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC19213", + "docket_numbers": "SC20677", + "case_name_shorts": "Ahmed" + }, + { + "case_dates": "2023-10-17", + "case_names": "Ahmed v. Oak Management Corp.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR348/348CR40.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20677", + "case_name_shorts": "Ahmed" + }, + { + "case_dates": "2023-10-10", + "case_names": "Companions & Homemakers, Inc. v. A&B Homecare Solutions, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR348/348CR52.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20642", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-26", + "case_names": "Salce v. Cardello (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR348/348CR67E.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20701", + "case_name_shorts": "Salce" + }, + { + "case_dates": "2023-09-26", + "case_names": "Salce v. Cardello", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR348/348CR67.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20701", + "case_name_shorts": "Salce" + }, + { + "case_dates": "2023-09-19", + "case_names": "State v. Robles (Second Concurrence & Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR348/348CR46B.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20452", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-19", + "case_names": "State v. Robles (First Concurrence & Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR348/348CR46A.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20452", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-19", + "case_names": "State v. Robles", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR348/348CR46.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20452", + "case_name_shorts": "Robles" + }, + { + "case_dates": "2023-09-19", + "case_names": "State v. Butler (Concurrence)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR348/348CR54A.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20702", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-19", + "case_names": "State v. Butler", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR348/348CR54.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20702", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-12", + "case_names": "State v. Velasquez-Mattos", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR53.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20683", + "case_name_shorts": "Velasquez-Mattos" + }, + { + "case_dates": "2023-09-05", + "case_names": "Tilsen v. Benson", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR50.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20664", + "case_name_shorts": "Tilsen" + }, + { + "case_dates": "2023-08-29", + "case_names": "State v. James K.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR65.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20693", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-29", + "case_names": "Commissioner of Mental Health & Addiction Services v. Freedom of Information Commission (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR48E.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20686", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-29", + "case_names": "Commissioner of Mental Health & Addiction Services v. Freedom of Information Commission (Concurrence & Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR48A.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20686", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-29", + "case_names": "Commissioner of Mental Health & Addiction Services v. Freedom of Information Commission", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR48.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20686", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-22", + "case_names": "State v. Avoletta", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR59.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20723", + "case_name_shorts": "Avoletta" + }, + { + "case_dates": "2023-08-22", + "case_names": "Escobar-Santana v. State (Concurrence)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR60A.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20772", + "case_name_shorts": "Escobar-Santana" + }, + { + "case_dates": "2023-08-22", + "case_names": "Escobar-Santana v. State", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR60.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20772", + "case_name_shorts": "Escobar-Santana" + }, + { + "case_dates": "2023-08-15", + "case_names": "Mills v. Hartford HealthCare Corp.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR68.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20763, SC20764, SC20765", + "case_name_shorts": "Mills" + }, + { + "case_dates": "2023-08-15", + "case_names": "Manginelli v. Regency House of Wallingford, Inc.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR69.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20767, SC20768", + "case_name_shorts": "Manginelli" + }, + { + "case_dates": "2023-08-08", + "case_names": "Schoenhorn v. Moss (Concurrence)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR55A.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20710", + "case_name_shorts": "Schoenhorn" + }, + { + "case_dates": "2023-08-08", + "case_names": "Schoenhorn v. Moss", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR55.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20710", + "case_name_shorts": "Schoenhorn" + }, + { + "case_dates": "2023-08-08", + "case_names": "Maia v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR64.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20786", + "case_name_shorts": "Maia" + }, + { + "case_dates": "2023-08-08", + "case_names": "JPMorgan Chase Bank, National Assn. v. Lakner", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR63.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20715", + "case_name_shorts": "Lakner" + }, + { + "case_dates": "2023-08-01", + "case_names": "Roach v. Transwaste, Inc.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR70.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20718", + "case_name_shorts": "Roach" + }, + { + "case_dates": "2023-08-01", + "case_names": "KeyBank, N.A. v. Yazar", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR51.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20648", + "case_name_shorts": "Yazar" + }, + { + "case_dates": "2023-08-01", + "case_names": "Adesokan v. Bloomfield", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR47.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20753", + "case_name_shorts": "Adesokan" + }, + { + "case_dates": "2023-07-25", + "case_names": "In re Paulo T.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR71.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20745", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-25", + "case_names": "High Watch Recovery Center, Inc. v. Dept. of Public Health", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR57.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20666", "case_name_shorts": "" }, { - "case_dates": "2014-07-22", - "case_names": "State v. Buie", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR52.pdf", + "case_dates": "2023-07-25", + "case_names": "Bosque v. Commissioner of Correction (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR42E.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20622", + "case_name_shorts": "Bosque" + }, + { + "case_dates": "2023-07-25", + "case_names": "Bosque v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR42.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18887", - "case_name_shorts": "Buie" + "docket_numbers": "SC20622", + "case_name_shorts": "Bosque" }, { - "case_dates": "2014-07-22", - "case_names": "Perry v. Perry", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR48.pdf", + "case_dates": "2023-07-25", + "case_names": "Banks v. Commissioner of Correction (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR41E.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18942, SC18993, SC18994", - "case_name_shorts": "Perry" + "docket_numbers": "SC20621", + "case_name_shorts": "Banks" }, { - "case_dates": "2014-07-15", - "case_names": "State v. Ortiz", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR42.pdf", + "case_dates": "2023-07-25", + "case_names": "Banks v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR41.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18946", - "case_name_shorts": "Ortiz" + "docket_numbers": "SC20621", + "case_name_shorts": "Banks" }, { - "case_dates": "2014-07-15", - "case_names": "Commissioner of Public Safety v. Freedom of Information Commission", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR46.pdf", + "case_dates": "2023-07-18", + "case_names": "In re Gabriel S.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR49.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC19047", + "docket_numbers": "SC20788", "case_name_shorts": "" }, { - "case_dates": "2014-07-08", - "case_names": "Single Source, Inc. v. Central Regional Tourism District, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR49.pdf", + "case_dates": "2023-07-18", + "case_names": "In re Cole", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR36.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20746", + "case_name_shorts": "In re Cole" + }, + { + "case_dates": "2023-07-18", + "case_names": "Hartford Police Dept. v. Commission on Human Rights & Opportunities", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR38.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18819", + "docket_numbers": "SC20669, SC20674", "case_name_shorts": "" }, { - "case_dates": "2014-07-08", - "case_names": "Reville v. Reville", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR99A.pdf", + "case_dates": "2023-07-11", + "case_names": "State v. Massaro", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR44.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18452", - "case_name_shorts": "Reville" + "docket_numbers": "SC20653", + "case_name_shorts": "Massaro" }, { - "case_dates": "2014-07-08", - "case_names": "Reville v. Reville", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR99.pdf", + "case_dates": "2023-07-11", + "case_names": "State v. Lanier", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR39.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18452", - "case_name_shorts": "Reville" + "docket_numbers": "SC20620", + "case_name_shorts": "Lanier" }, { - "case_dates": "2014-07-08", - "case_names": "Frank v. Dept. of Children & Families", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR36.pdf", + "case_dates": "2023-07-04", + "case_names": "JPMorgan Chase Bank, National Assn. v. Malick", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR37.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18980", - "case_name_shorts": "Frank" + "docket_numbers": "SC20662", + "case_name_shorts": "Malick" }, { - "case_dates": "2014-07-01", - "case_names": "Rodriguez v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR41.pdf", + "case_dates": "2023-07-04", + "case_names": "Direct Energy Services, LLC v. Public Utilities Regulatory Authority", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR32.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18940", - "case_name_shorts": "Rodriguez" + "docket_numbers": "SC20643", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-27", + "case_names": "Khan v. Yale University", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR30.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20705", + "case_name_shorts": "Khan" + }, + { + "case_dates": "2023-06-27", + "case_names": "Commission on Human Rights & Opportunities v. Cantillon (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR34E.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20655", + "case_name_shorts": "" }, { - "case_dates": "2014-07-01", - "case_names": "Cannizzaro v. Marinyak", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR45.pdf", + "case_dates": "2023-06-27", + "case_names": "Commission on Human Rights & Opportunities v. Cantillon", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR347/347CR34.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC19101", - "case_name_shorts": "Cannizzaro" + "docket_numbers": "SC20655", + "case_name_shorts": "Cantillon" }, { - "case_dates": "2014-06-24", - "case_names": "Flannery v. Singer Asset Finance Co., LLC", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR77E.pdf", + "case_dates": "2023-06-20", + "case_names": "Connex Credit Union v. Thibodeau", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR35.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18821", - "case_name_shorts": "Flannery" + "docket_numbers": "SC20694", + "case_name_shorts": "Thibodeau" }, { - "case_dates": "2014-06-24", - "case_names": "Flannery v. Singer Asset Finance Co., LLC", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR77.pdf", + "case_dates": "2023-06-20", + "case_names": "Cohen v. Rossi (Second Concurrence)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR31B.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18821", - "case_name_shorts": "Flannery" + "docket_numbers": "SC20737", + "case_name_shorts": "Cohen" }, { - "case_dates": "2014-06-24", - "case_names": "Coyle v. Commissioner of Revenue Services", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR43.pdf", + "case_dates": "2023-06-20", + "case_names": "Cohen v. Rossi (First Concurrence)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR31A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC19154", - "case_name_shorts": "Coyle" + "docket_numbers": "SC20737", + "case_name_shorts": "Cohen" }, { - "case_dates": "2014-06-24", - "case_names": "Connecticut Independent Utility Workers, Local 12924 v. Dept. of Public Utility Control", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR39.pdf", + "case_dates": "2023-06-20", + "case_names": "Cohen v. Rossi", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR31.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC19009", + "docket_numbers": "SC20737", + "case_name_shorts": "Cohen" + }, + { + "case_dates": "2023-06-20", + "case_names": "Clark v. Waterford, Cohanzie Fire Dept. (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR33E.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20630", "case_name_shorts": "" }, { - "case_dates": "2014-06-17", - "case_names": "Taylor v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR37.pdf", + "case_dates": "2023-06-20", + "case_names": "Clark v. Waterford, Cohanzie Fire Dept.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR33.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18981", - "case_name_shorts": "Taylor" + "docket_numbers": "SC20630", + "case_name_shorts": "" }, { - "case_dates": "2014-06-17", - "case_names": "State v. Wang", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR40.pdf", + "case_dates": "2023-06-06", + "case_names": "State v. Langston", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR29.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC19178", - "case_name_shorts": "Wang" + "docket_numbers": "SC20734", + "case_name_shorts": "Langston" }, { - "case_dates": "2014-06-17", - "case_names": "Stafford v. Roadway", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR34.pdf", + "case_dates": "2023-05-30", + "case_names": "Deutsche Bank AG v. Sebastian Holdings, Inc.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR28.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC19092", - "case_name_shorts": "Stafford" + "docket_numbers": "SC20647", + "case_name_shorts": "" }, { - "case_dates": "2014-06-17", - "case_names": "Palomba-Bourke v. Commissioner of Social Services", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR33.pdf", + "case_dates": "2023-05-16", + "case_names": "State v. Malone (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346ORD18.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC19044", - "case_name_shorts": "Palomba-Bourke" + "docket_numbers": "SC210159", + "case_name_shorts": "" }, { - "case_dates": "2014-06-10", - "case_names": "State v. Smalls", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR38.pdf", + "case_dates": "2023-05-16", + "case_names": "State v. Malone", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/ord346_17.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC19014", - "case_name_shorts": "Smalls" + "docket_numbers": "SC210159", + "case_name_shorts": "Malone" }, { - "case_dates": "2014-06-10", - "case_names": "State v. Shaw", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR113E.pdf", + "case_dates": "2023-05-16", + "case_names": "State v. Malone", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR27.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18207", - "case_name_shorts": "Shaw" + "docket_numbers": "SC20654", + "case_name_shorts": "Malone" }, { - "case_dates": "2014-06-10", - "case_names": "State v. Shaw", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR113.pdf", + "case_dates": "2023-05-09", + "case_names": "Smith v. Supple (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/ord346_13e.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18207", - "case_name_shorts": "Shaw" + "docket_numbers": "SC20730", + "case_name_shorts": "" }, { - "case_dates": "2014-06-10", - "case_names": "Kortner v. Martise", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR81C.pdf", + "case_dates": "2023-05-09", + "case_names": "Smith v. Supple", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/ord346_13.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18793", - "case_name_shorts": "Kortner" + "docket_numbers": "SC20730", + "case_name_shorts": "Supple" }, { - "case_dates": "2014-06-10", - "case_names": "Kortner v. Martise", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR81B.pdf", + "case_dates": "2023-05-09", + "case_names": "Robinson v. V. D. (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/ord346_14e.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18793", - "case_name_shorts": "Kortner" + "docket_numbers": "SC20731", + "case_name_shorts": "Robinson" }, { - "case_dates": "2014-06-10", - "case_names": "Kortner v. Martise", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR81A.pdf", + "case_dates": "2023-05-09", + "case_names": "Robinson v. V. D.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/ord346_14.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18793", - "case_name_shorts": "Kortner" + "docket_numbers": "SC20731", + "case_name_shorts": "Robinson" }, { - "case_dates": "2014-06-10", - "case_names": "Kortner v. Martise", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR312/312CR81.pdf", + "case_dates": "2023-05-09", + "case_names": "Pryor v. Brignole (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR25E.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SC18793", - "case_name_shorts": "Kortner" + "docket_numbers": "SC20581, SC20583", + "case_name_shorts": "Pryor" + }, + { + "case_dates": "2023-05-09", + "case_names": "Pryor v. Brignole", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR25.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20581, SC20583", + "case_name_shorts": "Pryor" + }, + { + "case_dates": "2023-05-02", + "case_names": "State v. Alvarez", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR26.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20697", + "case_name_shorts": "Alvarez" + }, + { + "case_dates": "2023-04-25", + "case_names": "Menard v. State", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR24.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20663", + "case_name_shorts": "Menard" + }, + { + "case_dates": "2023-04-18", + "case_names": "Dobie v. New Haven", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR23.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20623", + "case_name_shorts": "Dobie" + }, + { + "case_dates": "2023-04-11", + "case_names": "State v. Michael R.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20523", + "case_name_shorts": "" + }, + { + "case_dates": "2023-04-11", + "case_names": "Cerame v. Lamont", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR22.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20755", + "case_name_shorts": "Cerame" + }, + { + "case_dates": "2023-04-04", + "case_names": "Reserve Realty, LLC v. Windemere Reserve, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR20.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20635, SC20637, SC20636", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-21", + "case_names": "Dunn v. Northeast Helicopters Flight Services, LLC (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR19E.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20626", + "case_name_shorts": "Dunn" + }, + { + "case_dates": "2023-03-21", + "case_names": "Dunn v. Northeast Helicopters Flight Services, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR19.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20626", + "case_name_shorts": "Dunn" + }, + { + "case_dates": "2023-03-14", + "case_names": "Derblom v. Archdiocese of Hartford", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR18.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20584", + "case_name_shorts": "Derblom" + }, + { + "case_dates": "2023-03-07", + "case_names": "State v. Curet", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR16.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20521", + "case_name_shorts": "Curet" + }, + { + "case_dates": "2023-03-07", + "case_names": "State v. Calhoun", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR15.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20497", + "case_name_shorts": "Calhoun" + }, + { + "case_dates": "2023-02-28", + "case_names": "State v. King", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR12.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20588", + "case_name_shorts": "King" + }, + { + "case_dates": "2023-02-28", + "case_names": "Markatos v. Zoning Board of Appeals", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR17.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20682", + "case_name_shorts": "Markatos" + }, + { + "case_dates": "2023-02-21", + "case_names": "Strazza Building & Construction, Inc. v. Harris", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR13.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20660", + "case_name_shorts": "Harris" + }, + { + "case_dates": "2023-02-21", + "case_names": "Nationwide Mutual Ins. Co. v. Pasiak", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR14.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20617", + "case_name_shorts": "Pasiak" + }, + { + "case_dates": "2023-02-21", + "case_names": "Gershon v. Back", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR11.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20599", + "case_name_shorts": "Gershon" + }, + { + "case_dates": "2023-02-14", + "case_names": "State v. Juan A. G.-P.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR10.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20164", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-14", + "case_names": "Hartford Fire Ins. Co. v. Moda, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR6.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20678", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-14", + "case_names": "Connecticut Dermatology Group, PC v. Twin City Fire Ins. Co.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR9.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20695", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-14", + "case_names": "Carpenter v. Daar", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR84.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20524", + "case_name_shorts": "Carpenter" + }, + { + "case_dates": "2023-01-31", + "case_names": "Devine v. Fusaro", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR8.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20633", + "case_name_shorts": "Devine" + }, + { + "case_dates": "2023-01-31", + "case_names": "CT Freedom Alliance, LLC v. Dept. of Education", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR346/346CR7.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20627", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-24", + "case_names": "State v. Brandon (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR345/345CR63E.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20371", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-24", + "case_names": "State v. Brandon (Concurrence)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR345/345CR63A.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20371", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-24", + "case_names": "State v. Brandon", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR345/345CR63.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20371", + "case_name_shorts": "Brandon" + }, + { + "case_dates": "2023-01-24", + "case_names": "Solon v. Slater", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR345/345CR5.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20597", + "case_name_shorts": "Solon" + }, + { + "case_dates": "2023-01-24", + "case_names": "Grant v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR345/345CR4.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20679", + "case_name_shorts": "Grant" + }, + { + "case_dates": "2023-01-17", + "case_names": "State v. James A. (Concurrence)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR345/345CR75A.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20453", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-17", + "case_names": "State v. James A.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR345/345CR75.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20453", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-17", + "case_names": "Bank of New York Mellon v. Tope", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR345/345CR3.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20592", + "case_name_shorts": "Tope" + }, + { + "case_dates": "2023-01-10", + "case_names": "State v. Joseph V. (Concurrence & Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR345/345CR54A.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20504", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-10", + "case_names": "State v. Joseph V.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR345/345CR54.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20504", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-10", + "case_names": "State v. Douglas C. (Concurrence)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR345/345CR55A.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20456", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-10", + "case_names": "State v. Douglas C.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR345/345CR55.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SC20456", + "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/conn_example.html b/tests/examples/opinions/united_states/conn_example.html index 199a71ba3..b62302527 100644 --- a/tests/examples/opinions/united_states/conn_example.html +++ b/tests/examples/opinions/united_states/conn_example.html @@ -1,14 +1,16 @@ - - - - + - -Archive of Supreme Court Opinions - 2013 - + +Archive of Supreme Court Opinions + - + + - + + BannerBanner @@ -46,178 +345,136 @@ -
    - History of the Connecticut Judicial Seal + History of the Connecticut Judicial Seal Home Home - BannerBanner
    +
    - - - -

    + + +

    +
    - + + menu -
    Case Look-up Courts - Directories + Directories Educational Resources - E-Services - Juror Information - Online Media Resource Center - Opinions - Opportunities - Self-Help - Frequently Asked Questions - Home - Attorneys + E-Services + Juror Information + Online Media Resource Center + Opinions + Opportunities + Self-Help + Frequently Asked Questions + Home + Attorneys - menu
    - - - + +
       +
      
    - - + + - + - + - + - + -
    - +
    - - + -
    +
    - +
    +
    +
    +
    +
    - +
    - - -

     

    +

     

     

     

     

     

    -

      +

     

    -   - -
    +   + + - - - - -

    Archive of Supreme Court Opinions

    -

    - - - 2014
    -
    - 2013 | - 2012 | - 2011 | - 2010 | - 2009 | 2008 - | - 2007 | - 2006 | 2005 | - 2004 | 2003 | - 2002 | - 2001 | - 2000

    - - -
    - +

    2023  +  Previous Years

    + + + + + - + Hit Control, F + on your keyboard, then enter the name. -
    To Search: - - - Hit Control, F, - on your keyboard, and enter the name, or use the browser - menu and select edit, then find.
    -

    -

    -
      +
    -
  • - - Information on how to purchase the Connecticut Law Journal or Connecticut Reports
  • - - -
    - - +

    + Information on how to purchase the Connecticut Reports +

    + + + - - +
    + + + Quick Links

    -

    - Quick Links

    @@ -239,141 +496,287 @@ Supreme Court Archive
    -
    +
    - - - - -
    -

    To be Published in Connecticut Law - Journal of 7/29/14:

      -
    • -

      - SC18939 - Mueller v. Tepler

    • -
    -

    To be Published in Connecticut Law - Journal of 7/22/14:

    -

    Published in Connecticut Law - Journal of 7/15/14:

      -
    • -

      SC19047 - Commissioner of Public Safety v. Freedom - of Information Commission

    • -
    • -

      SC18946 - State v. Ortiz

    • -
    -

    Published in Connecticut Law - Journal of 7/8/14:

      -
    • -

      - SC18819 - Single Source, Inc. v. Central Regional - Tourism District, Inc.

    • -
    • -

      - SC18980 - Frank v. Dept. of Children & Families

    • -
    • -

      - SC18452 - Reville v. Reville

    • -
    • -

      - SC18452 Concurrence - Reville v. Reville

    • -
    -

    Published in Connecticut Law - Journal of 7/1/14:

      -
    • -

      - SC19101 - Cannizzaro v. - Marinyak

    • -
    • -

      - SC18940 - Rodriguez v. Commissioner of Correction

    • -
    -

    Published in Connecticut Law - Journal of 6/24/14:

      -
    • -

      - SC19009 - Connecticut Independent Utility Workers, - Local 12924 v. Dept. of Public Utility Control

    • -
    • -

      - SC19154 - Coyle v. Commissioner of Revenue Services

    • -
    • -

      - SC18821 - Flannery v. Singer Asset Finance Co., LLC

    • -
    • -

      - SC18821 Dissent - Flannery v. Singer Asset Finance - Co., LLC

    • -
    -

    Published in Connecticut Law - Journal of 6/17/14:

      -
    • -

      - SC19092 - Stafford v. Roadway

    • -
    • -

      - SC19044 - Palomba-Bourke v. Commissioner of Social - Services

    • -
    • -

      - SC18981 - Taylor v. Commissioner of Correction

    • -
    • -

      - SC19178 - State v. Wang

    • + + +

      Published in the Law Journal of 10/24/2023:

      +
        +
      • SC20733 - Middlebury v. Fraternal Order of Police, Middlebury Lodge No. 34
      • +
      + +

      Published in the Law Journal of 10/17/2023:

      + + +

      Published in the Law Journal of 10/10/2023:

      +
        +
      • SC20642 - Companions & Homemakers, Inc. v. A&B Homecare Solutions, LLC
      • +
      + +

      Published in the Law Journal of 9/26/2023:

      + + +

      Published in the Law Journal of 9/19/2023:

      + + +

      Published in the Law Journal of 9/12/2023:

      +
        +
      • SC20683 - State v. Velasquez-Mattos
      • +
      + +

      Published in the Law Journal of 9/5/2023:

      + + +

      Published in the Law Journal of 8/29/2023:

      +
        +
      • SC20693 - State v. James K.
      • +
      • SC20686 - Commissioner of Mental Health & Addiction Services v. Freedom of Information Commission
      • +
      • SC20686 Concurrence & Dissent - Commissioner of Mental Health & Addiction Services v. Freedom of Information Commission
      • +
      • SC20686 Dissent - Commissioner of Mental Health & Addiction Services v. Freedom of Information Commission
      • +
      + +

      Published in the Law Journal of 8/22/2023:

      + + +

      Published in the Law Journal of 8/15/2023:

      + + +

      Published in the Law Journal of 8/8/2023:

      + + +

      Published in the Law Journal of 8/1/2023:

      +
        +
      • SC20648 - KeyBank, N.A. v. Yazar
      • +
      • SC20718 - Roach v. Transwaste, Inc.
      • +
      • SC20753 - Adesokan v. Bloomfield
      • +
      + +

      Published in the Law Journal of 7/25/2023:

      +
        +
      • SC20745 - In re Paulo T.
      • +
      • SC20666 - High Watch Recovery Center, Inc. v. Dept. of Public Health
      • SC20621 - Banks v. Commissioner of Correction
      • SC20621 Dissent - Banks v. Commissioner of Correction
      • SC20622 - Bosque v. Commissioner of Correction
      • SC20622 Dissent - Bosque v. Commissioner of Correction
      • +
      + +

      Published in the Law Journal of 7/18/2023:

      + + +

      Published in the Law Journal of 7/11/2023:

      + + +

      Published in the Law Journal of 7/4/2023:

      +
        +
      • SC20643 - Direct Energy Services, LLC v. Public Utilities Regulatory Authority
      • +
      • SC20662 - JPMorgan Chase Bank, National Assn. v. Malick
      • +
      + +

      Published in the Law Journal of 6/27/2023:

      +
        +
      • SC20705 - Khan v. Yale University
      • +
      • SC20655 - Commission on Human Rights & Opportunities v. Cantillon
      • +
      • SC20655 Dissent - Commission on Human Rights & Opportunities v. Cantillon
      • +
      + +

      Published in the Law Journal of 6/20/2023:

      + + +

      Published in the Law Journal of 6/6/2023:

      + + +

      Published in the Law Journal of 5/30/2023:

      +
        +
      • SC20647 - Deutsche Bank AG v. Sebastian Holdings, Inc.
      • +
      + +

      Published in the Law Journal of 5/16/2023:

      + + + +

      Published in the Law Journal of 5/9/2023:

      + + +

      Published in the Law Journal of 5/2/2023:

      + + +

      Published in the Law Journal of 4/25/2023:

      + + +

      Published in the Law Journal of 4/18/2023:

      +
        +
      • SC20623 - Dobie v. New Haven 
      • +
      + +

      Published in the Law Journal of 4/11/2023:

      + + +

      + Published in the Law Journal of 4/4/2023:

      + + + +

      + Published in the Law Journal of 3/21/2023:

      +
        +
      • SC20626 - Dunn v. Northeast Helicopters Flight Services, LLC
      • +
      • SC20626 Dissent - Dunn v. Northeast Helicopters Flight Services, LLC
      • +
      + +

      Published in the Law Journal of 3/14/2023:

      + + +
        +
      • SC20584 - Derblom v. Archdiocese of Hartford
      • +
      +

      Published in the Law Journal of 3/7/2023:

      + + +

      Published in the Law Journal of 2/28/2023:

      +
        +
      • SC20588 - State v. King
      • +
      • SC20682 - Markatos v. Zoning Board of Appeals +
      + +

      Published in the Law Journal of 2/21/2023:

      +
        +
      • SC20599 - Gershon v. Back
      • +
      • SC20660 - Strazza Building & Construction, Inc. v. Harris +
      • + + SC20617 - Nationwide Mutual Ins. Co. v. Pasiak + + + + + +
      +

      Published in the Law Journal of 2/14/2023:

      +
        +
      • SC20695 - Connecticut Dermatology Group, PC v. Twin City Fire Ins. Co.
      • +
      • SC20678 - Hartford Fire Ins. Co. v. Moda, LLC
      • +
      • SC20524 - Carpenter v. Daar
      • +
      • SC20164 - State v. + Juan A. G.-P.
      • +
      +

      Published in the Law Journal of 1/31/2023:

      +
        +
      • SC20627 - CT Freedom Alliance, LLC v. Dept. of Education
      • +
      • SC20633 - Devine v. Fusaro
      • +
      + +

      Published in the Law Journal of 1/24/2023:

      +

      Published in the Law Journal of 1/17/2023:

      + -

      Published in Connecticut Law - Journal of 6/10/14:

    -
    -

    -Attorneys | + + + + + + + +

    + Return to Top

    +

    + Attorneys | Case Look-up | Courts | Directories | Educational Resources | E-Services | - Español | + Espaol | FAQ's | Juror Information | Media | @@ -386,17 +789,17 @@ Site Map | Website Polices and Disclaimers

    -Copyright © 2014, +Copyright 2016 State of Connecticut Judicial Branch

     
    +
    - +
    - - + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/conn_example_2.compare.json b/tests/examples/opinions/united_states/conn_example_2.compare.json deleted file mode 100644 index f3b091788..000000000 --- a/tests/examples/opinions/united_states/conn_example_2.compare.json +++ /dev/null @@ -1,242 +0,0 @@ -[ - { - "case_dates": "2016-07-26", - "case_names": "Webb v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR318E.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC18857", - "case_name_shorts": "Webb" - }, - { - "case_dates": "2016-07-26", - "case_names": "Webb v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR318.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC18857", - "case_name_shorts": "Webb" - }, - { - "case_dates": "2016-07-26", - "case_names": "State v. Perez", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR71E.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19285", - "case_name_shorts": "Perez" - }, - { - "case_dates": "2016-07-26", - "case_names": "State v. Perez", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR71.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19285", - "case_name_shorts": "Perez" - }, - { - "case_dates": "2016-07-26", - "case_names": "State v. Arias", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR92.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19587", - "case_name_shorts": "Arias" - }, - { - "case_dates": "2016-07-26", - "case_names": "Gershuny v. Gershuny", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR74.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19647", - "case_name_shorts": "Gershuny" - }, - { - "case_dates": "2016-07-26", - "case_names": "Commission on Human Rights & Opportunities v. Echo Hose Ambulance", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR73.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19496", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-19", - "case_names": "State v. Saturno", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR70A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19602", - "case_name_shorts": "Saturno" - }, - { - "case_dates": "2016-07-19", - "case_names": "State v. Saturno", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR70.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19602", - "case_name_shorts": "Saturno" - }, - { - "case_dates": "2016-07-12", - "case_names": "Raymond's Auto Repair, LLC v. Commissioner of Motor Vehicles", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR58.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19454", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-12", - "case_names": "Modzelewski's Towing & Recovery, Inc. v. Commissioner of Motor Vehicles", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR57.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19453", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-12", - "case_names": "Martinez v. Empire Fire & Marine Ins. Co.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR66E.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19390", - "case_name_shorts": "Martinez" - }, - { - "case_dates": "2016-07-12", - "case_names": "Martinez v. Empire Fire & Marine Ins. Co.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR66.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19390", - "case_name_shorts": "Martinez" - }, - { - "case_dates": "2016-07-05", - "case_names": "State v. Drakes", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR321/321CR69.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19247", - "case_name_shorts": "Drakes" - }, - { - "case_dates": "2016-07-05", - "case_names": "State v. Banks", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR321/321CR68A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19246", - "case_name_shorts": "Banks" - }, - { - "case_dates": "2016-07-05", - "case_names": "State v. Banks", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR321/321CR68.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19246", - "case_name_shorts": "Banks" - }, - { - "case_dates": "2016-07-05", - "case_names": "Indian Land Co. v. Inland Wetlands & Watercourses Agency", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR322/322CR65.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19591", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-28", - "case_names": "State v. Sabato", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR321/321CR59.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19406, SC19407", - "case_name_shorts": "Sabato" - }, - { - "case_dates": "2016-06-28", - "case_names": "Reynolds v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR321/321CR94B.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19071", - "case_name_shorts": "Reynolds" - }, - { - "case_dates": "2016-06-28", - "case_names": "Reynolds v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR321/321CR94A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19071", - "case_name_shorts": "Reynolds" - }, - { - "case_dates": "2016-06-28", - "case_names": "Reynolds v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR321/321CR94.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19071", - "case_name_shorts": "Reynolds" - }, - { - "case_dates": "2016-06-28", - "case_names": "People for the Ethical Treatment of Animals, Inc. v. Freedom of Information Commission", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR321/321CR67.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19593, SC19594", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-28", - "case_names": "Jackson v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR321/321CR56.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19360", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-28", - "case_names": "Horn v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR321/321CR64.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19364", - "case_name_shorts": "Horn" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/conn_example_2.html b/tests/examples/opinions/united_states/conn_example_2.html deleted file mode 100644 index 8d1aad2c9..000000000 --- a/tests/examples/opinions/united_states/conn_example_2.html +++ /dev/null @@ -1,372 +0,0 @@ - - - - - - - - - -Archive of Supreme Court Opinions - - - - - - - - - - - - - - - - - -
    - History of the Connecticut Judicial Seal - Home - Home - - BannerBanner
    - -
    - - - - - -

    - - - -
    - - - - - - - -
    - Case Look-up - Courts - Directories - Educational Resources - E-Services - Juror Information - Online Media Resource Center - Opinions - Opportunities - Self-Help - Frequently Asked Questions - Home - Attorneys - - - - menu
    -
    - - - - - -
       - -
    - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - -
    - - - - -
    - -
    -
    -
    -
    -
    -
    -
    -
    - - - -

     

    -

     

    -

     

    -

     

    -

     

    -

     

    -   - - - - - - - - - - -
    -

    - Archive of Supreme Court Opinions

    -

    2016 -  Previous Years

    - - - - - - -
    - To Search: - Hit Control, F - on your keyboard, then enter the name.
    - -

    - Information on how to purchase the Connecticut Law Journal or Connecticut Reports -

    -
    - - - - - - - - - - - - - - - - -
    -

    - Quick Links

    - Advance - Release Opinions
    - - Appellate Court Archive
    - - Memorandum Archive
    - - Supreme Court Archive
    -
    - - - - - - - -
    -
    - To be Published in the Connecticut Law Journal of 7/26/2016:
      -
    • - SC19285 - State v. - Perez
    • -
    • - SC19285 Dissent - - State v. Perez
    • -
    • - SC19496 - Commission - on Human Rights & Opportunities v. Echo Hose - Ambulance
    • -
    • SC19647 - Gershuny - v. Gershuny
    • -
    • SC19587 - State v. - Arias
    • -
    • SC18857 - Webb v. - Commissioner of Correction
    • -
    • SC18857 Dissent - - Webb v. Commissioner of Correction
    • -
    -

    - Published in the Connecticut Law Journal of 7/19/2016:

    - -

     Published in the Connecticut Law Journal of 7/12/2016:

    -
      -
    • - SC19453 - - Modzelewski's Towing & Recovery, Inc. v. - Commissioner of Motor Vehicles
    • -
    • - SC19454 - Raymond's - Auto Repair, LLC v. Commissioner of Motor Vehicles
    • -
    • - SC19390 - Martinez - v. Empire Fire & Marine Ins. Co.
    • -
    • - SC19390 Dissent - - Martinez v. Empire Fire & Marine Ins. Co.
    • -
    - - Published in the Connecticut Law Journal of 7/5/2016: -

    - Published in the Connecticut - Law Journal of 6/28/2016:

    - - -

     

    - -
    -  
    -
    - -

    -Attorneys | -Case Look-up | -Courts | -Directories | -Educational Resources | -E-Services | - Español | -FAQ's | -Juror Information | -Media | -Opinions | -Opportunities | -Self-Help | -Home

    -

    Common Legal Words | -Contact Us | -Site Map | Website -Polices and Disclaimers

    -

    -Copyright 2016 -State of Connecticut Judicial Branch
    -

    -
    -
    - - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/conn_example_3.compare.json b/tests/examples/opinions/united_states/conn_example_3.compare.json deleted file mode 100644 index ef1c8eba8..000000000 --- a/tests/examples/opinions/united_states/conn_example_3.compare.json +++ /dev/null @@ -1,242 +0,0 @@ -[ - { - "case_dates": "2017-01-17", - "case_names": "State v. Lester", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR29.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19183", - "case_name_shorts": "Lester" - }, - { - "case_dates": "2017-01-10", - "case_names": "Tomick v. United Parcel Service, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR36E.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19505", - "case_name_shorts": "Tomick" - }, - { - "case_dates": "2017-01-10", - "case_names": "Tomick v. United Parcel Service, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR36.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19505", - "case_name_shorts": "Tomick" - }, - { - "case_dates": "2017-01-10", - "case_names": "State v. Holley", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR31.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19662", - "case_name_shorts": "Holley" - }, - { - "case_dates": "2017-01-10", - "case_names": "State v. A. M.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR32E.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19497", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-10", - "case_names": "State v. A. M.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR32.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19497", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-10", - "case_names": "Lackman v. McAnulty", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR30.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19668", - "case_name_shorts": "Lackman" - }, - { - "case_dates": "2017-01-10", - "case_names": "Gabriel v. Gabriel", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR34.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19571", - "case_name_shorts": "Gabriel" - }, - { - "case_dates": "2017-01-10", - "case_names": "Disciplinary Counsel v. Parnoff", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR24.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19535", - "case_name_shorts": "Parnoff" - }, - { - "case_dates": "2017-01-10", - "case_names": "Connecticut Light & Power Co. v. Proctor", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR33E.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19531", - "case_name_shorts": "Proctor" - }, - { - "case_dates": "2017-01-10", - "case_names": "Connecticut Light & Power Co. v. Proctor", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR33.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19531", - "case_name_shorts": "Proctor" - }, - { - "case_dates": "2017-01-10", - "case_names": "Connecticut Energy Marketers Assn. v. Dept. of Energy & Environmental Protection", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR35E.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19620", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-10", - "case_names": "Connecticut Energy Marketers Assn. v. Dept. of Energy & Environmental Protection", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR35.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19620", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-10", - "case_names": "Cadle Co. v. Fletcher", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR25.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19583", - "case_name_shorts": "Fletcher" - }, - { - "case_dates": "2017-01-10", - "case_names": "Bifolck v. Philip Morris, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR107E.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19310", - "case_name_shorts": "Bifolck" - }, - { - "case_dates": "2017-01-10", - "case_names": "Bifolck v. Philip Morris, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR107A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19310", - "case_name_shorts": "Bifolck" - }, - { - "case_dates": "2017-01-10", - "case_names": "Bifolck v. Philip Morris, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR107.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19310", - "case_name_shorts": "Bifolck" - }, - { - "case_dates": "2017-01-10", - "case_names": "Allen v. Commissioner of Revenue Services", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR23.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19567", - "case_name_shorts": "Allen" - }, - { - "case_dates": "2017-01-03", - "case_names": "State v. Kono", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR104E.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19613", - "case_name_shorts": "Kono" - }, - { - "case_dates": "2017-01-03", - "case_names": "State v. Kono", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR104A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19613", - "case_name_shorts": "Kono" - }, - { - "case_dates": "2017-01-03", - "case_names": "State v. Kono", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR104.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19613", - "case_name_shorts": "Kono" - }, - { - "case_dates": "2017-01-03", - "case_names": "Marciano v. Jiminez", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR26.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19547", - "case_name_shorts": "Marciano" - }, - { - "case_dates": "2017-01-03", - "case_names": "Dyous v. Commissioner of Mental Health & Addiction Services", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR7A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19582", - "case_name_shorts": "Dyous" - }, - { - "case_dates": "2017-01-03", - "case_names": "Dyous v. Commissioner of Mental Health & Addiction Services", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR324/324CR7.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19582", - "case_name_shorts": "Dyous" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/conn_example_3.html b/tests/examples/opinions/united_states/conn_example_3.html deleted file mode 100644 index 8523d8ece..000000000 --- a/tests/examples/opinions/united_states/conn_example_3.html +++ /dev/null @@ -1,385 +0,0 @@ - - - - - - - - - -Archive of Supreme Court Opinions - - - - - - - - - - - - - - - - - -
    - History of the Connecticut Judicial Seal - Home - Home - - BannerBanner
    - -
    - - - - - -

    - - - -
    - - - - - - - -
    - Case Look-up - Courts - Directories - Educational Resources - E-Services - Juror Information - Online Media Resource Center - Opinions - Opportunities - Self-Help - Frequently Asked Questions - Home - Attorneys - - - - menu
    -
    - - - - - -
       - -
    - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - -
    - - - - -
    - -
    -
    -
    -
    -
    -
    -
    -
    - - - -

     

    -

     

    -

     

    -

     

    -

     

    -

     

    -   - - - - - - - - - - - -
    -

    - Archive of Supreme Court Opinions

    -

    2017 -  Previous Years

    - - - - - - -
    - To Search: - Hit Control, F - on your keyboard, then enter the name.
    - -

    - Information on how to purchase the Connecticut Law Journal or Connecticut Reports -

    -
    - - - - - - - - - - - - - - - - -
    -

    - Quick Links

    - Advance - Release Opinions
    - - Appellate Court Archive
    - - Memorandum Archive
    - - Supreme Court Archive
    -
    - - - - - - - - - -
    - To be Published in the - Connecticut Law Journal at a Future Date: -

    To be Published in the - Connecticut Law Journal of 1/17/2017:

    - -
      -
    • - SC19183 - State v. - Lester
    • -
    -

    Published in the - Connecticut Law Journal of 1/10/2017:

    - -

    Published in the - Connecticut Law Journal of 1/3/2017:

    - - -

     

    - -
    -  
    -
    - -

     

    -

     

    -

     

    -

     

    -

     

    -

     

    -

     

    -

     

    -

     

    -

     

    -

     

    -

    - Attorneys | -Case Look-up | -Courts | -Directories | -Educational Resources | -E-Services | - Español | -FAQ's | -Juror Information | -Media | -Opinions | -Opportunities | -Self-Help | -Home

    -

    Common Legal Words | -Contact Us | -Site Map | Website -Polices and Disclaimers

    -

    -Copyright 2016 -State of Connecticut Judicial Branch
    -

    -
    -
    - - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/conn_example_4.compare.json b/tests/examples/opinions/united_states/conn_example_4.compare.json deleted file mode 100644 index 06109483f..000000000 --- a/tests/examples/opinions/united_states/conn_example_4.compare.json +++ /dev/null @@ -1,102 +0,0 @@ -[ - { - "case_dates": "2019-02-26", - "case_names": "In re Jacob W.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR330/330CR8E.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC20063", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-26", - "case_names": "In re Jacob W.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR330/330CR8.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC20063", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-19", - "case_names": "Independent Party of CT-State Central v. Merrill", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR330/330CR4.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC20160", - "case_name_shorts": "Merrill" - }, - { - "case_dates": "2019-02-19", - "case_names": "Independent Party of CT-State Central v. Merrill", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR330/330CR3.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC20165", - "case_name_shorts": "Merrill" - }, - { - "case_dates": "2019-02-12", - "case_names": "Restaurant Supply, LLC v. Giardi Ltd. Partnership", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR330/330CR5.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC20154", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-12", - "case_names": "Do v. Commissioner of Motor Vehicles", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR330/330CR86.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19722", - "case_name_shorts": "Do" - }, - { - "case_dates": "2019-01-22", - "case_names": "Ventura v. East Haven", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR330/330CR91.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19898", - "case_name_shorts": "Ventura" - }, - { - "case_dates": "2019-01-15", - "case_names": "Marquez v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR330/330CR94A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19889", - "case_name_shorts": "Marquez" - }, - { - "case_dates": "2019-01-15", - "case_names": "Marquez v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR330/330CR94.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19889", - "case_name_shorts": "Marquez" - }, - { - "case_dates": "2019-01-08", - "case_names": "Johnson v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROcr/CR330/330CR2.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "SC19856", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/conn_example_4.html b/tests/examples/opinions/united_states/conn_example_4.html deleted file mode 100644 index e2b8b5219..000000000 --- a/tests/examples/opinions/united_states/conn_example_4.html +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - - - - -Archive of Supreme Court Opinions - - - - - - - - - - - - - - - - - -
    - History of the Connecticut Judicial Seal - Home - Home - - BannerBanner
    - -
    - - - - - -
     

     

    -


    - -

    - - - -
    - - - - - - - -
    - Case Look-up - Courts - Directories - Educational Resources - E-Services - Juror Information - Online Media Resource Center - Opinions - Opportunities - Self-Help - Frequently Asked Questions - Home - Attorneys - - - - menu
    -
    - - - - - -
       - -
    - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - -
    - - - - -
    - -
    -
    -
    -
    -
    -
    -
    -
    - -

     

    -

     

    -

     

    -

     

    -

     

    -

     

    -   - - - - - - - - - - - - - - -
    -

    - Archive of Supreme Court Opinions

    -

    2019 -  Previous Years

    - - - - - - -
    - To Search: - Hit Control, F - on your keyboard, then enter the name.
    - -

    - Information on how to purchase the Connecticut Reports -

    -
    - - - - - - - - - - - - - - - - -
    -

    - Quick Links

    - Advance - Release Opinions
    - - Appellate Court Archive
    - - Memorandum Archive
    - - Supreme Court Archive
    -
    - - - - - -
    - - -
    -
    - To Be Published in the - Connecticut Law Journal at a later date: -

    To Be Published in the - Connecticut Law Journal of 2/26/2019: 

    - - -

    Published in the - Connecticut Law Journal of 2/19/2019: 

    - -
      -
    • - SC20165 - Independent - Party of CT—State Central v. Merrill
    • -
    • - SC20160 - Independent - Party of CT—State Central v. Merrill
    • -
    -

    Published in the Connecticut - Law Journal of 2/12/2019:

    -
      -
    • - SC20154 - Restaurant Supply, LLC v. Giardi Ltd. Partnership
    • -
    • - SC19722 - Do v. - Commissioner of Motor Vehicles
    • -
    -

    Published in the - Connecticut Law Journal of 1/22/2019: 

    -
      -
    • - SC19898 - Ventura v. - East Haven
    • -
    -

    Published in the - Connecticut Law Journal of 1/15/2019:

    - -

    -  Published in the - Connecticut Law Journal of 1/8/2019:

    -
      -
    • - SC19856 - Johnson v. - Commissioner of Correction
    • -
    -

     

    -
    - - - - - - -

     

    -

    - Attorneys | -Case Look-up | -Courts | -Directories | -Educational Resources | -E-Services | - Español | -FAQ's | -Juror Information | -Media | -Opinions | -Opportunities | -Self-Help | -Home

    -

    Common Legal Words | -Contact Us | -Site Map | Website -Polices and Disclaimers

    -

    -Copyright © 2016 -State of Connecticut Judicial Branch
    -

    - - - -
    - - - - diff --git a/tests/examples/opinions/united_states/connappct_example.compare.json b/tests/examples/opinions/united_states/connappct_example.compare.json index de851a402..163c1c2f5 100644 --- a/tests/examples/opinions/united_states/connappct_example.compare.json +++ b/tests/examples/opinions/united_states/connappct_example.compare.json @@ -1,532 +1,2102 @@ [ { - "case_dates": "2014-07-22", - "case_names": "U.S. Bank, N.A. v. Foote", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP425.pdf", + "case_dates": "2023-11-14", + "case_names": "Stephenson v. Commissioner of Correction (Concurrence)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP268A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35632", - "case_name_shorts": "Foote" + "docket_numbers": "AC45482", + "case_name_shorts": "Stephenson" }, { - "case_dates": "2014-07-22", - "case_names": "State v. Ruocco", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP446.pdf", + "case_dates": "2023-11-14", + "case_names": "Stephenson v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP268.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC34763", - "case_name_shorts": "Ruocco" + "docket_numbers": "AC45482", + "case_name_shorts": "Stephenson" }, { - "case_dates": "2014-07-22", - "case_names": "State v. Ross", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP437.pdf", + "case_dates": "2023-11-14", + "case_names": "State v. Martin G.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP35.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC36406", - "case_name_shorts": "Ross" + "docket_numbers": "AC45812", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-14", + "case_names": "State v. Jeffrey G.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP36.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45397", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-14", + "case_names": "Stanley v. Quiros", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP34.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45825", + "case_name_shorts": "Stanley" + }, + { + "case_dates": "2023-11-14", + "case_names": "In re Aurora H.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP31.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC46330", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-07", + "case_names": "Stanley v. Scott", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP33.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45838", + "case_name_shorts": "Stanley" + }, + { + "case_dates": "2023-11-07", + "case_names": "HM Construction & Painting, LLC v. 32 Wilmot Place, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP267.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45606", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-07", + "case_names": "Brown v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP30.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45756", + "case_name_shorts": "Brown" + }, + { + "case_dates": "2023-10-31", + "case_names": "Walker v. Walker", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP16.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45308", + "case_name_shorts": "Walker" + }, + { + "case_dates": "2023-10-31", + "case_names": "State v. Thomas S.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP18.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45104", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-31", + "case_names": "Kerlin v. Planning & Zoning Commission", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP265.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45082", + "case_name_shorts": "Kerlin" + }, + { + "case_dates": "2023-10-31", + "case_names": "Kennynick, LLC v. Standard Petroleum Co. (Appendix)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP26X.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45118", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-31", + "case_names": "Kennynick, LLC v. Standard Petroleum Co.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP26.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45118", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-31", + "case_names": "International Assn. of EMTs & Paramedics, Local R1-701 v. Bristol Hospital EMS, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP266.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45498", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-31", + "case_names": "Cokic v. Fiore Powersports, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP20.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45740", + "case_name_shorts": "Cokic" + }, + { + "case_dates": "2023-10-24", + "case_names": "Rek v. Pettit", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP264.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45210", + "case_name_shorts": "Rek" + }, + { + "case_dates": "2023-10-24", + "case_names": "In re Na-Ki- J.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP19.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC46336", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-24", + "case_names": "Dusto v. Rogers Corp. (Concurrence & Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP263A.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45341", + "case_name_shorts": "Dusto" + }, + { + "case_dates": "2023-10-24", + "case_names": "Dusto v. Rogers Corp.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP263.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45341", + "case_name_shorts": "Dusto" + }, + { + "case_dates": "2023-10-24", + "case_names": "Bridgeport v. Freedom of Information Commission", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP222/222AP262.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45287", + "case_name_shorts": "Bridgeport" + }, + { + "case_dates": "2023-10-17", + "case_names": "Martinez v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP9.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45795", + "case_name_shorts": "Martinez" + }, + { + "case_dates": "2023-10-17", + "case_names": "In re Gabriella M.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP14.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC46214", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-17", + "case_names": "In re Gabriella M.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP13.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC46217", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-17", + "case_names": "Christian v. Iyer", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP12.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45350", + "case_name_shorts": "Christian" + }, + { + "case_dates": "2023-10-10", + "case_names": "State v. James S. (Concurrence)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP261A.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45243", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-10", + "case_names": "State v. James S.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP261.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45243", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-10", + "case_names": "In re Tarik C.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP260.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC46142", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-10", + "case_names": "In re Phoenix M.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP8.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC46328", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-03", + "case_names": "State v. Wade", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP256.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44898", + "case_name_shorts": "Wade" + }, + { + "case_dates": "2023-10-03", + "case_names": "State v. Russo", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP259.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45314", + "case_name_shorts": "Russo" + }, + { + "case_dates": "2023-10-03", + "case_names": "Commissioner of Transportation v. ACP, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP258.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45523", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-26", + "case_names": "Williams v. Green Power Ventures, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP257.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45623", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-19", + "case_names": "Commissioner of Public Health v. Colandrea", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP254.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45056", + "case_name_shorts": "Colandrea" + }, + { + "case_dates": "2023-09-19", + "case_names": "Colandrea v. State Dental Commission", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP255.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45365", + "case_name_shorts": "Colandrea" + }, + { + "case_dates": "2023-09-12", + "case_names": "Madera v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP252.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45321", + "case_name_shorts": "Madera" + }, + { + "case_dates": "2023-09-12", + "case_names": "Godfrey-Hill v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP251.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45841", + "case_name_shorts": "Godfrey-Hill" + }, + { + "case_dates": "2023-09-12", + "case_names": "Cooling v. Torrington", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP253.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45395", + "case_name_shorts": "Cooling" + }, + { + "case_dates": "2023-09-05", + "case_names": "JPMorgan Chase Bank, National Assn. v. Essaghof", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP218.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45109", + "case_name_shorts": "Essaghof" + }, + { + "case_dates": "2023-09-05", + "case_names": "CCI Computerworks, LLC v. Evernet Consulting, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP250.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44975", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-29", + "case_names": "Miriam v. Summit Saugatuck, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP247.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45645", + "case_name_shorts": "Miriam" + }, + { + "case_dates": "2023-08-29", + "case_names": "In re Judah B.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP246.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC46140", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-29", + "case_names": "Fraser Lane Associates, LLC v. Chip Fund 7, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP249.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45274", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-29", + "case_names": "Deutsche Bank National Trust Co. v. Amelio", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP248.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45036", + "case_name_shorts": "Amelio" + }, + { + "case_dates": "2023-08-22", + "case_names": "Williams v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP242.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45442", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-22", + "case_names": "In re Christina C.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP243.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45864", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-22", + "case_names": "Hughes v. Board of Education", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP244.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45354", + "case_name_shorts": "Hughes" + }, + { + "case_dates": "2023-08-22", + "case_names": "Barbara v. Colonial Surety Co.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP245.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44836, AC45267", + "case_name_shorts": "Barbara" + }, + { + "case_dates": "2023-08-22", + "case_names": "Anderson-Harris v. Harris", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP237.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45100", + "case_name_shorts": "Anderson-Harris" + }, + { + "case_dates": "2023-08-22", + "case_names": "AAA Advantage Carting & Demolition Service, LLC v. Capone", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP240.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45318", + "case_name_shorts": "Capone" + }, + { + "case_dates": "2023-08-15", + "case_names": "State v. Mieles (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP239E.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45281", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-15", + "case_names": "State v. Mieles", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP239.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45281", + "case_name_shorts": "Mieles" + }, + { + "case_dates": "2023-08-15", + "case_names": "Pierce v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP395.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44188", + "case_name_shorts": "Pierce" + }, + { + "case_dates": "2023-08-15", + "case_names": "Pencheva-Hasse v. Hasse", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP228.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45268", + "case_name_shorts": "Pencheva-Hasse" + }, + { + "case_dates": "2023-08-15", + "case_names": "In re Amani O.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP241.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC46293, AC46327", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-15", + "case_names": "Gervais v. JACC Healthcare Center of Danielson, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP238.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44757", + "case_name_shorts": "Gervais" + }, + { + "case_dates": "2023-08-15", + "case_names": "GMAT Legal Title Trust 2014-1, U.S. Bank, National Assn. v. Catale", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP223.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45332", + "case_name_shorts": "Catale" + }, + { + "case_dates": "2023-08-15", + "case_names": "Buchenholz v. Buchenholz", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP236.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45226", + "case_name_shorts": "Buchenholz" + }, + { + "case_dates": "2023-08-08", + "case_names": "Office of Chief Disciplinary Counsel v. Wynne", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP235.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44763", + "case_name_shorts": "Wynne" + }, + { + "case_dates": "2023-08-08", + "case_names": "Ochoa v. Behling", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP233.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45242", + "case_name_shorts": "Ochoa" + }, + { + "case_dates": "2023-08-08", + "case_names": "Mata v. Commissioner of Motor Vehicles", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP232.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45598", + "case_name_shorts": "Mata" + }, + { + "case_dates": "2023-08-08", + "case_names": "Martinoli v. Stamford Police Dept.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP229.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45229", + "case_name_shorts": "Martinoli" + }, + { + "case_dates": "2023-08-08", + "case_names": "Elwell v. Kellogg", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP227.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45296", + "case_name_shorts": "Elwell" + }, + { + "case_dates": "2023-08-08", + "case_names": "Cochran v. Dept. of Transportation", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP230.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45531", + "case_name_shorts": "Cochran" + }, + { + "case_dates": "2023-08-08", + "case_names": "A Better Way Wholesale Autos, Inc. v. Better Business Bureau of Connecticut", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP221/221AP231.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45180", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-01", + "case_names": "U.S. Bank National Assn. v. Booker", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP225.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45473", + "case_name_shorts": "Booker" + }, + { + "case_dates": "2023-08-01", + "case_names": "Lafferty v. Jones", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP215.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC46194", + "case_name_shorts": "Lafferty" + }, + { + "case_dates": "2023-08-01", + "case_names": "In re L. T.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP221.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC46069", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-01", + "case_names": "In re Kyreese L.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP224.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45846", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-01", + "case_names": "Curley v. Phoenix Ins. Co.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP219.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45054", + "case_name_shorts": "Curley" + }, + { + "case_dates": "2023-08-01", + "case_names": "Cazenovia Creek Funding I, LLC v. White Eagle Society of Brotherly Help, Inc., Group 315, Polish National Alliance", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP220.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45065", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-01", + "case_names": "Brownstone Exploration & Discovery Park LLC v. Borodkin", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP226.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45127", + "case_name_shorts": "Borodkin" + }, + { + "case_dates": "2023-07-25", + "case_names": "TLOA of CT, LLC v. Taipe", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP217.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45844", + "case_name_shorts": "Taipe" + }, + { + "case_dates": "2023-07-25", + "case_names": "Stevens v. Khalily", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP214.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45400", + "case_name_shorts": "Stevens" + }, + { + "case_dates": "2023-07-25", + "case_names": "State v. King", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP205.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45288", + "case_name_shorts": "King" + }, + { + "case_dates": "2023-07-25", + "case_names": "State v. Despres", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP211.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45614", + "case_name_shorts": "Despres" + }, + { + "case_dates": "2023-07-25", + "case_names": "Pacific Funding Trust 1002 v. Stephenson Residential Services, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP210.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45425, AC45426, AC45462", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-25", + "case_names": "Marrero v. Hoffman of Simsbury, Inc.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP216.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45471", + "case_name_shorts": "Marrero" + }, + { + "case_dates": "2023-07-25", + "case_names": "In re Ryan C.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP213.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45979, AC46006", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-25", + "case_names": "Crocker v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP206.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45232", + "case_name_shorts": "Crocker" + }, + { + "case_dates": "2023-07-25", + "case_names": "Bayview Loan Servicing, LLC v. Ishikawa", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP212.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45926", + "case_name_shorts": "Ishikawa" + }, + { + "case_dates": "2023-07-18", + "case_names": "Netter v. Netter", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP209.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44803", + "case_name_shorts": "Netter" + }, + { + "case_dates": "2023-07-18", + "case_names": "Drewnowski v. Planning & Zoning Commission (Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP203E.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44982", + "case_name_shorts": "Drewnowski" + }, + { + "case_dates": "2023-07-18", + "case_names": "Drewnowski v. Planning & Zoning Commission", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP203.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44982", + "case_name_shorts": "Drewnowski" + }, + { + "case_dates": "2023-07-11", + "case_names": "State v. Sullivan", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP202.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45378", + "case_name_shorts": "Sullivan" + }, + { + "case_dates": "2023-07-11", + "case_names": "In re Serenity W.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP207.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC46183", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-11", + "case_names": "In re Fayth C.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP208.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC46100", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-11", + "case_names": "In re Caiden B.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP204.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45822", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-04", + "case_names": "State v. Griffin", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP194.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45349", + "case_name_shorts": "Griffin" + }, + { + "case_dates": "2023-07-04", + "case_names": "Prioleau v. Agosta", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP199.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45317", + "case_name_shorts": "Prioleau" + }, + { + "case_dates": "2023-07-04", + "case_names": "Morales v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP201.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45412", + "case_name_shorts": "Morales" + }, + { + "case_dates": "2023-07-04", + "case_names": "Haydusky's Appeal from Probate", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP200.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44507", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-27", + "case_names": "Strauss v. Strauss", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP197.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44693", + "case_name_shorts": "Strauss" + }, + { + "case_dates": "2023-06-27", + "case_names": "R. H. v. M. S.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP198.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45507", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-27", + "case_names": "A. D. v. L. D.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP195.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44326", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-20", + "case_names": "Mirlis v. Yeshiva of New Haven, Inc.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP184.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45355", + "case_name_shorts": "Mirlis" + }, + { + "case_dates": "2023-06-20", + "case_names": "Lowthert v. Freedom of Information Commission", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP183.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44972", + "case_name_shorts": "Lowthert" + }, + { + "case_dates": "2023-06-20", + "case_names": "In re Deboras S.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP189.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45501, AC45552", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-20", + "case_names": "Cornelius v. Markle Investigators, Inc. (Concurrence)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP193A.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45319", + "case_name_shorts": "Cornelius" + }, + { + "case_dates": "2023-06-20", + "case_names": "Cornelius v. Markle Investigators, Inc.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP193.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45319", + "case_name_shorts": "Cornelius" + }, + { + "case_dates": "2023-06-20", + "case_names": "Belgada v. Hy's Livery Service, Inc.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP191.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44659", + "case_name_shorts": "Belgada" + }, + { + "case_dates": "2023-06-20", + "case_names": "Ammar I. v. Dept. of Children & Families", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP220/220AP187.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45265", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-13", + "case_names": "Jakobowski v. State", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP179.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45088", + "case_name_shorts": "Jakobowski" + }, + { + "case_dates": "2023-06-13", + "case_names": "In re Timothy B.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP190.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC46117", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-13", + "case_names": "In re Marie J.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP188.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45917", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-13", + "case_names": "Fiorita, Kornhaas & Co., P.C. v. Vilela", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP192.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45366", + "case_name_shorts": "Vilela" + }, + { + "case_dates": "2023-06-13", + "case_names": "Bassett v. East Haven", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP180.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45106", + "case_name_shorts": "Bassett" + }, + { + "case_dates": "2023-06-06", + "case_names": "R. H. v. M. H. (Concurrence & Dissent)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP176A.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45186", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-06", + "case_names": "R. H. v. M. H.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP176.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45186", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-06", + "case_names": "Nettleton v. C & L Diners, LLC", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP172.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44554", + "case_name_shorts": "Nettleton" + }, + { + "case_dates": "2023-06-06", + "case_names": "In re Prince S.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP186.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45929", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-06", + "case_names": "Cody Real Estate, LLC v. G & H Catering, Inc.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP178.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44909", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-30", + "case_names": "U.S. Bank National Assn. v. Weinbaum", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP174.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45043", + "case_name_shorts": "Weinbaum" + }, + { + "case_dates": "2023-05-30", + "case_names": "State v. Olivero", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP171.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC42991", + "case_name_shorts": "Olivero" + }, + { + "case_dates": "2023-05-30", + "case_names": "John Hancock Life Ins. Co. v. Curtin", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP177.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45565", + "case_name_shorts": "Curtin" + }, + { + "case_dates": "2023-05-23", + "case_names": "Sease v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP170.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44160", + "case_name_shorts": "Sease" + }, + { + "case_dates": "2023-05-23", + "case_names": "Reese v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP173.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44892", + "case_name_shorts": "Reese" + }, + { + "case_dates": "2023-05-23", + "case_names": "Perdikis v. Klarsfeld", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP162.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC43955", + "case_name_shorts": "Perdikis" + }, + { + "case_dates": "2023-05-23", + "case_names": "Padula v. Arborio", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP168.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45134", + "case_name_shorts": "Padula" + }, + { + "case_dates": "2023-05-23", + "case_names": "Kohl's Dept. Store, Inc. v. Rocky Hill", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP169.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45303", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-23", + "case_names": "Carter v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP165.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44979", + "case_name_shorts": "Carter" + }, + { + "case_dates": "2023-05-23", + "case_names": "Ahern v. Board of Education", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP167.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45249", + "case_name_shorts": "Ahern" + }, + { + "case_dates": "2023-05-16", + "case_names": "Valentine v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP164.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44745", + "case_name_shorts": "Valentine" + }, + { + "case_dates": "2023-05-16", + "case_names": "State v. Taveras", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP163.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC38602", + "case_name_shorts": "Taveras" + }, + { + "case_dates": "2023-05-16", + "case_names": "State v. Ebron", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP160.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44738", + "case_name_shorts": "Ebron" + }, + { + "case_dates": "2023-05-16", + "case_names": "In re Daniel D.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP166.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45891", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-09", + "case_names": "Young v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP159.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44723", + "case_name_shorts": "Young" + }, + { + "case_dates": "2023-05-09", + "case_names": "In re Cameron H.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP158.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45534", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-09", + "case_names": "Commissioner of Transportation v. Chudy", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP161.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44764", + "case_name_shorts": "Chudy" + }, + { + "case_dates": "2023-05-02", + "case_names": "State v. DeCosta", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP156.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45512", + "case_name_shorts": "DeCosta" + }, + { + "case_dates": "2023-05-02", + "case_names": "Stanziale v. Hunt", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP143.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44542", + "case_name_shorts": "Stanziale" + }, + { + "case_dates": "2023-05-02", + "case_names": "Napolitano v. Ace American Ins. Co.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP155.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44694", + "case_name_shorts": "Napolitano" + }, + { + "case_dates": "2023-05-02", + "case_names": "Francis v. CIT Bank, N.A.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP157.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45253", + "case_name_shorts": "Francis" }, { - "case_dates": "2014-07-22", - "case_names": "State v. Dickerson", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP435.pdf", + "case_dates": "2023-04-25", + "case_names": "State v. Santiago", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP142.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35725", - "case_name_shorts": "Dickerson" + "docket_numbers": "AC44780", + "case_name_shorts": "Santiago" }, { - "case_dates": "2014-07-22", - "case_names": "Marshall v. Marshall", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP429.pdf", + "case_dates": "2023-04-25", + "case_names": "O'Reggio v. Commission on Human Rights & Opportunities", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP136.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC34674", - "case_name_shorts": "Marshall" + "docket_numbers": "AC45011", + "case_name_shorts": "O'Reggio" }, { - "case_dates": "2014-07-22", - "case_names": "In re Zen T.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP443.pdf", + "case_dates": "2023-04-25", + "case_names": "C. M. v. R. M.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP154.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC36525", + "docket_numbers": "AC44911", "case_name_shorts": "" }, { - "case_dates": "2014-07-22", - "case_names": "In re Yasiel R.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP442A.pdf", + "case_dates": "2023-04-25", + "case_names": "ARVYS Protein, Inc. v. A/F Protein, Inc.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP219/219AP137.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC36298", + "docket_numbers": "AC44867", "case_name_shorts": "" }, { - "case_dates": "2014-07-22", - "case_names": "In re Yasiel R.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP442.pdf", + "case_dates": "2023-04-18", + "case_names": "Wolfel v. Wolfel", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP130.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44316", + "case_name_shorts": "Wolfel" + }, + { + "case_dates": "2023-04-18", + "case_names": "Trejo v. Yale New Haven Hospital, Inc. (Appendix)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP133X.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45207", + "case_name_shorts": "Trejo" + }, + { + "case_dates": "2023-04-18", + "case_names": "Trejo v. Yale New Haven Hospital, Inc.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP133.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45207", + "case_name_shorts": "Trejo" + }, + { + "case_dates": "2023-04-18", + "case_names": "Torres v. State", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP144.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45371", + "case_name_shorts": "Torres" + }, + { + "case_dates": "2023-04-18", + "case_names": "In re Kharm A.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP138.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC36298", + "docket_numbers": "AC45968", "case_name_shorts": "" }, { - "case_dates": "2014-07-22", - "case_names": "Howard v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP441.pdf", + "case_dates": "2023-04-18", + "case_names": "In re Amanda C.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP134.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC34789", - "case_name_shorts": "Howard" + "docket_numbers": "AC45713", + "case_name_shorts": "" }, { - "case_dates": "2014-07-22", - "case_names": "Good Earth Tree Care, Inc. v. Fairfield", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP436.pdf", + "case_dates": "2023-04-18", + "case_names": "Fitzgerald v. Bridgeport", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP132.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35468", - "case_name_shorts": "Fairfield" + "docket_numbers": "AC45114", + "case_name_shorts": "Fitzgerald" }, { - "case_dates": "2014-07-15", - "case_names": "State v. Zachary F.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP428.pdf", + "case_dates": "2023-04-18", + "case_names": "C. D. v. C. D.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP135.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC33908", + "docket_numbers": "AC44784", "case_name_shorts": "" }, { - "case_dates": "2014-07-15", - "case_names": "State v. Gemmell", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP430.pdf", + "case_dates": "2023-04-11", + "case_names": "White v. Waterbury Fire Dept.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP129.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC34788", - "case_name_shorts": "Gemmell" + "docket_numbers": "AC45589", + "case_name_shorts": "White" }, { - "case_dates": "2014-07-15", - "case_names": "State v. Carter", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP412.pdf", + "case_dates": "2023-04-11", + "case_names": "Taylor v. Planning & Zoning Commission", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP122.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35511", - "case_name_shorts": "Carter" + "docket_numbers": "AC45252", + "case_name_shorts": "Taylor" }, { - "case_dates": "2014-07-15", - "case_names": "Red Buff Rita, Inc. v. Moutinho", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP417.pdf", + "case_dates": "2023-04-11", + "case_names": "State v. Perez-Lopez", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP394.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35705", - "case_name_shorts": "Moutinho" + "docket_numbers": "AC44280", + "case_name_shorts": "Perez-Lopez" }, { - "case_dates": "2014-07-15", - "case_names": "Michos v. Planning & Zoning Commission", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP413.pdf", + "case_dates": "2023-04-11", + "case_names": "State v. Orane C.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP128.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35796", - "case_name_shorts": "Michos" + "docket_numbers": "AC44410", + "case_name_shorts": "" }, { - "case_dates": "2014-07-15", - "case_names": "Francis v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP426.pdf", + "case_dates": "2023-04-11", + "case_names": "Gregory v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP123.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC34349, AC34449", - "case_name_shorts": "Francis" + "docket_numbers": "AC44886, AC44957", + "case_name_shorts": "" + }, + { + "case_dates": "2023-04-11", + "case_names": "Gaudett v. Bridgeport Police Dept.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP131.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44987", + "case_name_shorts": "Gaudett" + }, + { + "case_dates": "2023-04-04", + "case_names": "Worth v. Picard", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP121.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45090", + "case_name_shorts": "Worth" + }, + { + "case_dates": "2023-04-04", + "case_names": "Nowak v. Environmental Energy Services, Inc.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP119.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44760", + "case_name_shorts": "Nowak" + }, + { + "case_dates": "2023-04-04", + "case_names": "Kelly v. Dept. of Mental Health & Addiction Services", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP109.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44991", + "case_name_shorts": "Kelly" + }, + { + "case_dates": "2023-04-04", + "case_names": "In re Autumn O.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP124.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45575", + "case_name_shorts": "" + }, + { + "case_dates": "2023-04-04", + "case_names": "Deutsche Bank Trust Co. Americas v. Burke", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP120.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44906", + "case_name_shorts": "Burke" + }, + { + "case_dates": "2023-04-04", + "case_names": "Braasch v. Freedom of Information Commission", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP114.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45024", + "case_name_shorts": "Braasch" + }, + { + "case_dates": "2023-03-28", + "case_names": "Wihbey v. Zoning Board of Appeals", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP107.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45283", + "case_name_shorts": "Wihbey" + }, + { + "case_dates": "2023-03-28", + "case_names": "State v. Eric L.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP105.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45113", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-28", + "case_names": "Sacramone v. Harlow, Adams & Friedman, P. C.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP93.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45034", + "case_name_shorts": "Sacramone" + }, + { + "case_dates": "2023-03-28", + "case_names": "Pascarella v. Silver", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP106.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44514", + "case_name_shorts": "Pascarella" + }, + { + "case_dates": "2023-03-28", + "case_names": "Murchison v. Waterbury", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP115.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45050", + "case_name_shorts": "Murchison" + }, + { + "case_dates": "2023-03-28", + "case_names": "Long Manor Owners' Assn., Inc. v. Alungbe", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP118.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45055", + "case_name_shorts": "Alungbe" + }, + { + "case_dates": "2023-03-21", + "case_names": "Stewart v. Old Republic National Title Ins. Co.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP102.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44925", + "case_name_shorts": "Stewart" + }, + { + "case_dates": "2023-03-21", + "case_names": "State v. Delacruz-Gomez", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP111.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44356", + "case_name_shorts": "Delacruz-Gomez" }, { - "case_dates": "2014-07-15", - "case_names": "Foote v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP422A.pdf", + "case_dates": "2023-03-21", + "case_names": "Leffingwell v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP101.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35129", - "case_name_shorts": "Foote" + "docket_numbers": "AC41663", + "case_name_shorts": "Leffingwell" }, { - "case_dates": "2014-07-15", - "case_names": "Foote v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP422.pdf", + "case_dates": "2023-03-21", + "case_names": "Brewer v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP113.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35129", - "case_name_shorts": "Foote" + "docket_numbers": "AC41635", + "case_name_shorts": "Brewer" }, { - "case_dates": "2014-07-15", - "case_names": "Coleman v. Coleman", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP434.pdf", + "case_dates": "2023-03-14", + "case_names": "V. V. v. V. V.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP91.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35306", - "case_name_shorts": "Coleman" + "docket_numbers": "AC45304", + "case_name_shorts": "" }, { - "case_dates": "2014-07-08", - "case_names": "State v. Salazar", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP415.pdf", + "case_dates": "2023-03-14", + "case_names": "Stamford Property Holdings, LLC v. Jashari", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP100.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35153", - "case_name_shorts": "Salazar" + "docket_numbers": "AC45151", + "case_name_shorts": "Jashari" }, { - "case_dates": "2014-07-08", - "case_names": "O'Hara v. Mackie", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP419.pdf", + "case_dates": "2023-03-14", + "case_names": "In re Kylie P.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP95.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35648", - "case_name_shorts": "O'Hara" + "docket_numbers": "AC45434", + "case_name_shorts": "" }, { - "case_dates": "2014-07-08", - "case_names": "Hirschfeld v. Machinist", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP400E.pdf", + "case_dates": "2023-03-14", + "case_names": "In re Anthony S.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP99.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35096", - "case_name_shorts": "Hirschfeld" + "docket_numbers": "AC45549", + "case_name_shorts": "" }, { - "case_dates": "2014-07-08", - "case_names": "Hirschfeld v. Machinist", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP400.pdf", + "case_dates": "2023-03-14", + "case_names": "Doe v. Quinnipiac University", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP96.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35096", - "case_name_shorts": "Hirschfeld" + "docket_numbers": "AC44938", + "case_name_shorts": "Doe" }, { - "case_dates": "2014-07-08", - "case_names": "DeNunzio v. DeNunzio", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP397.pdf", + "case_dates": "2023-03-14", + "case_names": "Centrix Management Co., LLC v. Fosberg", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP104.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35679", - "case_name_shorts": "DeNunzio" + "docket_numbers": "AC45880", + "case_name_shorts": "Fosberg" }, { - "case_dates": "2014-07-08", - "case_names": "Burns v. RBS Securities, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP411.pdf", + "case_dates": "2023-03-07", + "case_names": "Wells Fargo Bank, National Assn. v. Doreus", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP92.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC34958", - "case_name_shorts": "Burns" + "docket_numbers": "AC45502", + "case_name_shorts": "Doreus" }, { - "case_dates": "2014-07-08", - "case_names": "Baruno v. Slane", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP396.pdf", + "case_dates": "2023-03-07", + "case_names": "State v. Armstrong", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP86.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35820, AC35821", - "case_name_shorts": "Baruno" + "docket_numbers": "AC44561", + "case_name_shorts": "Armstrong" }, { - "case_dates": "2014-07-08", - "case_names": "Avery v. Medina", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP409.pdf", + "case_dates": "2023-03-07", + "case_names": "Mitchell v. Bogonos", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP88.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC36326", - "case_name_shorts": "Avery" + "docket_numbers": "AC44980", + "case_name_shorts": "Bogonos" }, { - "case_dates": "2014-07-08", - "case_names": "Amos Financial, LLC v. Patel", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP421.pdf", + "case_dates": "2023-03-07", + "case_names": "In re Nevaeh G.-M.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP94.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35864", - "case_name_shorts": "Patel" + "docket_numbers": "AC45686", + "case_name_shorts": "" }, { - "case_dates": "2014-07-08", - "case_names": "American Federation of State, County & Municipal Employees, Council 4, Local 1303-385 v. Westport Dept. of Public Works", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP416.pdf", + "case_dates": "2023-03-07", + "case_names": "In re Isabella Q.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP90.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35278", + "docket_numbers": "AC45551", "case_name_shorts": "" }, { - "case_dates": "2014-07-08", - "case_names": "Abele Tractor & Equipment Co. v. Sono Stone & Gravel, LLC", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP418.pdf", + "case_dates": "2023-03-07", + "case_names": "In re Eric M.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP89.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35118", + "docket_numbers": "AC45693", "case_name_shorts": "" }, { - "case_dates": "2014-07-01", - "case_names": "Sullo Investments, LLC c. Moreau", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP381.pdf", + "case_dates": "2023-03-07", + "case_names": "Bradley v. Yovino", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP218/218AP84.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45040", + "case_name_shorts": "Bradley" + }, + { + "case_dates": "2023-02-28", + "case_names": "Stanley v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP85.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC42876", + "case_name_shorts": "Stanley" + }, + { + "case_dates": "2023-02-28", + "case_names": "Prime Management, LLC v. Arthur", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP78.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45330", + "case_name_shorts": "Arthur" + }, + { + "case_dates": "2023-02-28", + "case_names": "In re K. M.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP70.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35866", + "docket_numbers": "AC45269", "case_name_shorts": "" }, { - "case_dates": "2014-07-01", - "case_names": "Stepney, LLC v. JP Morgan Chase Bank, N.A.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP395.pdf", + "case_dates": "2023-02-28", + "case_names": "Houghtaling v. Benevides", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP79.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45568", + "case_name_shorts": "Houghtaling" + }, + { + "case_dates": "2023-02-28", + "case_names": "Freidheim v. McLaughlin", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP77.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44731", + "case_name_shorts": "Freidheim" + }, + { + "case_dates": "2023-02-28", + "case_names": "9 Pettipaug, LLC v. Planning & Zoning Commission", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP76.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35188", + "docket_numbers": "AC45200", "case_name_shorts": "" }, { - "case_dates": "2014-07-01", - "case_names": "State v. Slaughter", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP406.pdf", + "case_dates": "2023-02-21", + "case_names": "Onyilogwu v. Onyilogwu", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP69.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC44942", + "case_name_shorts": "Onyilogwu" + }, + { + "case_dates": "2023-02-21", + "case_names": "Herrera v. Meadow Hill, Inc.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP75.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35624", - "case_name_shorts": "Slaughter" + "docket_numbers": "AC44949", + "case_name_shorts": "Herrera" }, { - "case_dates": "2014-07-01", - "case_names": "State v. Inglis", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP376.pdf", + "case_dates": "2023-02-21", + "case_names": "Foster v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP74.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35750", - "case_name_shorts": "Inglis" + "docket_numbers": "AC45132", + "case_name_shorts": "Foster" }, { - "case_dates": "2014-07-01", - "case_names": "State v. Abushaqra", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP392.pdf", + "case_dates": "2023-02-14", + "case_names": "Russo v. Thornton", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP64.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC36011", - "case_name_shorts": "Abushaqra" + "docket_numbers": "AC45070", + "case_name_shorts": "Russo" }, { - "case_dates": "2014-07-01", - "case_names": "RAB Performance Recoveries, LLC v. James", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP408.pdf", + "case_dates": "2023-02-14", + "case_names": "McGovern v. McGovern", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP71.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35859", - "case_name_shorts": "James" + "docket_numbers": "AC45028, AC45029", + "case_name_shorts": "McGovern" }, { - "case_dates": "2014-07-01", - "case_names": "New Haven v. G. L. Capasso, Inc", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP410.pdf", + "case_dates": "2023-02-14", + "case_names": "Lastrina v. Bettauer", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP67.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35609", + "docket_numbers": "AC44509, AC44510", + "case_name_shorts": "Lastrina" + }, + { + "case_dates": "2023-02-14", + "case_names": "Circulent, Inc. v. Hatch & Bailey Co.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP68.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45277", "case_name_shorts": "" }, { - "case_dates": "2014-07-01", - "case_names": "Melendez v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP407.pdf", + "case_dates": "2023-02-14", + "case_names": "Ah Min Holding, LLC v. Hartford", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP65.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC34463", - "case_name_shorts": "Melendez" + "docket_numbers": "AC44843", + "case_name_shorts": "Hartford" }, { - "case_dates": "2014-07-01", - "case_names": "Lineberry v. Estevam", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP359.pdf", + "case_dates": "2023-02-07", + "case_names": "State v. Foster (Concurrence)", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP62A.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35038", - "case_name_shorts": "Lineberry" + "docket_numbers": "AC44043", + "case_name_shorts": "" }, { - "case_dates": "2014-07-01", - "case_names": "Hornblower v. Hornblower", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP398.pdf", + "case_dates": "2023-02-07", + "case_names": "State v. Foster", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP62.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35550", - "case_name_shorts": "Hornblower" + "docket_numbers": "AC44043", + "case_name_shorts": "Foster" }, { - "case_dates": "2014-07-01", - "case_names": "Henderson v. State", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP339.pdf", + "case_dates": "2023-02-07", + "case_names": "D. S. v. D. S.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP63.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC34944", + "docket_numbers": "AC44748", "case_name_shorts": "" }, { - "case_dates": "2014-07-01", - "case_names": "Cinotti v. Divers", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP384.pdf", + "case_dates": "2023-01-31", + "case_names": "State v. Hurdle", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP59.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35352", - "case_name_shorts": "Cinotti" + "docket_numbers": "AC44701", + "case_name_shorts": "Hurdle" }, { - "case_dates": "2014-07-01", - "case_names": "Bumbolow v. Foreman", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP391.pdf", + "case_dates": "2023-01-31", + "case_names": "Booth v. Park Terrace II Mutual Housing Ltd. Partnership", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP53.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35770", - "case_name_shorts": "Bumbolow" + "docket_numbers": "AC45094", + "case_name_shorts": "Booth" }, { - "case_dates": "2014-06-24", - "case_names": "Weinstein & Wisser v. Cornelius", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP363.pdf", + "case_dates": "2023-01-31", + "case_names": "Aviles v. Barnhill", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP57.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35656", - "case_name_shorts": "Cornelius" + "docket_numbers": "AC44587", + "case_name_shorts": "Aviles" + }, + { + "case_dates": "2023-01-24", + "case_names": "State v. Griffin", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP54.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC45019", + "case_name_shorts": "Griffin" }, { - "case_dates": "2014-06-24", - "case_names": "State v. Herring", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP360.pdf", + "case_dates": "2023-01-24", + "case_names": "State v. Charles L.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP58.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC34292", - "case_name_shorts": "Herring" + "docket_numbers": "AC44690", + "case_name_shorts": "" }, { - "case_dates": "2014-06-24", - "case_names": "State v. Gojcaj", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP364.pdf", + "case_dates": "2023-01-24", + "case_names": "Myshkina v. Gusinski", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP56.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35088", - "case_name_shorts": "Gojcaj" + "docket_numbers": "AC45192", + "case_name_shorts": "Myshkina" }, { - "case_dates": "2014-06-24", - "case_names": "State v. Budziszewski", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP399.pdf", + "case_dates": "2023-01-24", + "case_names": "In re A'vion A.", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP55.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35374", - "case_name_shorts": "Budziszewski" + "docket_numbers": "AC45357", + "case_name_shorts": "" }, { - "case_dates": "2014-06-24", - "case_names": "Rodriguez v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP389.pdf", + "case_dates": "2023-01-17", + "case_names": "Schimenti Construction Co., LLC v. Schimenti", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP392.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35346", - "case_name_shorts": "Rodriguez" + "docket_numbers": "AC44274", + "case_name_shorts": "Schimenti" }, { - "case_dates": "2014-06-24", - "case_names": "Newland v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP355.pdf", + "case_dates": "2023-01-17", + "case_names": "Ross v. Commissioner of Correction", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP52.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35835", - "case_name_shorts": "Newland" + "docket_numbers": "AC45062", + "case_name_shorts": "Ross" }, { - "case_dates": "2014-06-24", - "case_names": "Murcia v. Geyer", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP387.pdf", + "case_dates": "2023-01-17", + "case_names": "Renstrup v. Renstrup", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP49.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35906", - "case_name_shorts": "Murcia" + "docket_numbers": "AC44489", + "case_name_shorts": "Renstrup" }, { - "case_dates": "2014-06-24", - "case_names": "Mukon v. Gollnick", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP289.pdf", + "case_dates": "2023-01-10", + "case_names": "State v. Henry", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP47.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35454", - "case_name_shorts": "Mukon" + "docket_numbers": "AC45097", + "case_name_shorts": "Henry" }, { - "case_dates": "2014-06-24", - "case_names": "Martinez v. Empire Fire & Marine Ins. Co.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP367.pdf", + "case_dates": "2023-01-10", + "case_names": "King. v. Hubbard", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP393.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35367", - "case_name_shorts": "Martinez" + "docket_numbers": "AC44600", + "case_name_shorts": "King." }, { - "case_dates": "2014-06-24", - "case_names": "Harlow v. Stickels", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP151/151AP366.pdf", + "case_dates": "2023-01-03", + "case_names": "Murphy v. Clinton", + "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP217/217AP51.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC35455", - "case_name_shorts": "Harlow" + "docket_numbers": "AC45238", + "case_name_shorts": "Clinton" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/connappct_example.html b/tests/examples/opinions/united_states/connappct_example.html index d6d5bcd13..b53d2c517 100644 --- a/tests/examples/opinions/united_states/connappct_example.html +++ b/tests/examples/opinions/united_states/connappct_example.html @@ -1,19 +1,55 @@ + + + + + + + + + +Officially Released Appellate Court Opinions - 2018 + + + + + - + @@ -21,453 +57,639 @@ -
    - - History of the Connecticut Judicial Seal - Home - Home - - BannerBanner + History of the Connecticut Judicial Seal + Home + Home + + BannerBanner
    + + +
    + + + + +

    + +
    - - - +

    - - - -
    - - - - - - - -
    - - Case Look-up - Courts - Directories - Educational Resources - E-Services - Juror Information - Online Media Resource Center - Opinions - Opportunities - Self-Help - Frequently Asked Questions - Home - Attorneys - - - - menu
    -
    - - - - + + - - - - - - - -
       - -
    - - - - - - - - - - - - - - - - - - - - - +
    - - - - -
    - - - - -
    - - - - -
    - -
    -
    -
    -
    + + + + + + +
    + Case Look-up + Courts + Directories + Educational Resources + E-Services + Juror Information + Online Media Resource Center + Opinions + Opportunities + Self-Help + Frequently Asked Questions + Home + Attorneys + + + + menu
    +
    + + + + - - + +
       + + + + + + + + + + + + + + + + + + + + + + + - -
    + + + - -
    + + +
    + + + + +
    + +
    - - -
    - -
    - - -

     

    - -

     

    - -

     

    - -

     

    - -

     

    - -

     

      -  - - - + +
    -

    - Archive of Appellate Court - Opinions

    - -

    - - 2014
    -
    - 2013 | - 2012 | - 2011 | 2010 | - 2009 - | - - 2008 - | - 2007 - | - - - 2006 | - 2005 | - - - - 2004 - | - 2003 | - 2002 | - 2001 | - 2000

    - - - - - - - + +
    - - To Search: - - - Hit Control, F, - on your keyboard, and enter the name.
    -
    +
    +
    + +
    +
    +
    + + +

     

    +

     

    +

     

    +

     

    +

     

    +

     

     

     

    +   + + - + - - - + + + + + + + + + + + - -
    +

    Archive of Appellate Court Opinions

    + + + 2023  +  Previous Years
    + + + +   + + + + + - -
    + To Search: + + Hit Control, F, + on your keyboard, and enter the name.
    +
    - Information on how to purchase the Connecticut - Law Journal or the Connecticut Appellate Reports
    -
    - Information on how to purchase the Connecticut Appellate Reports + +
    +
    + - - + - - - + + + - - - + + + - - - + + + - - - + + + - -
    +

    - Quick Links

    + Quick Links
    Advance - Release Opinions
    + Release Opinions
    - Appellate Court Archive
    + Appellate Court Archive
    - Memorandum Archive
    + Memorandum Archive
    - Supreme Court Archive
    -
    - - - + +
    -


    - To be - Published in - Connecticut Law Journal of 7/22/14:

    - - - -

    Published in - Connecticut Law Journal of 7/15/14:

    - - - - - -

    Published in - Connecticut Law Journal of 7/8/14:

    -
      -
    • AC35820, AC35821 - Baruno v. Slane
    • -
    • AC35679 - DeNunzio v. DeNunzio
    • -
    • AC35096 - Hirschfeld v. Machinist
    • -
    • AC35096 Dissent - Hirschfeld v. Machinist
    • -
    • AC36326 - Avery v. Medina
    • -
    • AC34958 - Burns v. RBS Securities, Inc.
    • -
    • AC35153 - State v. Salazar
    • -
    • AC35278 - American Federation of State, County & - Municipal Employees, Council 4, Local 1303-385 v. - Westport Dept. of Public Works -
    • -
    • AC35118 - Abele Tractor & Equipment Co. v. Sono - Stone & Gravel, LLC -
    • -
    • AC35648 - O’Hara v. Mackie
    • -
    • AC35864 - Amos Financial, LLC v. Patel
    • -
    -
    - -

    Published in - Connecticut Law Journal of 7/1/14:

    - -
      -
    • -

      - AC34944 - Henderson v. State

    • -
    • -

      - AC35038 - Lineberry v. Estevam

    • -
    • -

      - AC35750 - State v. Inglis

    • -
    • -

      - AC35352 - Cinotti v. Divers

    • -
    • -

      - AC35770 - Bumbolow v. Foreman

    • -
    • -

      - AC36011 - State v. Abushaqra

    • -
    • -

      - AC35188 - Stepney, LLC v. JP Morgan - Chase Bank, N.A.

    • -
    • -

      - AC35550 - Hornblower v. Hornblower

    • -
    • -

      - AC35624 - State v. Slaughter

    • -
    • -

      - AC34463 - Melendez v. Commissioner - of Correction

    • -
    • -

      - AC35859 - RAB Performance - Recoveries, LLC v. James

    • -
    • -

      - AC35609 - New Haven v. G. L. Capasso, Inc

    • -
    • -

      - AC35866 - Sullo Investments, LLC c. - Moreau

    • -
    -
    - -

    Published in - Connecticut Law Journal of 6/24/14:

    -
      - - -
    • - AC35454 - Mukon v. Gollnick
    • -
    • - AC35835 - Newland v. Commissioner of - Correction
    • -
    • - AC34292 - State v. Herring
    • -
    • - AC35656 - Weinstein & Wisser v. - Cornelius
    • -
    • - AC35088 - State v. Gojcaj
    • -
    • - AC35455 - Harlow v. Stickels
    • -
    • - AC35367 - Martinez v. Empire Fire & - Marine Ins. Co.
    • -
    • - AC35906 - Murcia v. Geyer
    • -
    • - AC35346 - Rodriguez v. Commissioner - of Correction
    • -
    • - AC35374 - State v. Budziszewski
    • -
      -
    + Supreme Court Archive
    +
    + To Be Published in the Law Journal of November 14, 2023: +
      +
    • AC46330 - In re Aurora H.
    • +
    • AC45482 - Stephenson v. Commissioner of Correction
    • +
    • AC45482 Concurrence - Stephenson v. Commissioner of Correction
    • +
    • AC45825 - Stanley v. Quiros
    • +
    • AC45812 - State v. Martin G.
    • +
    • AC45397 - State v. Jeffrey G.
    • +
    + + Published in the Law Journal of November 7, 2023:
    +
      +
    • AC45606 - HM Construction & Painting, LLC v. 32 Wilmot Place, LLC
    • +
    • AC45756 - Brown v. Commissioner of Correction
    • +
    • AC45838 - Stanley v. Scott
    • +
    + + Published in the Law Journal of October 31, 2023:
    +
      +
    • AC45082 - Kerlin v. Planning & Zoning Commission
    • +
    • AC45498 - International Assn. of EMTs & Paramedics, Local R1-701 v. Bristol Hospital EMS, LLC
    • +
    • AC45308 - Walker v. Walker
    • +
    • AC45104 - State v. Thomas S.
    • +
    • AC45740 - Cokic v. Fiore Powersports, LLC
    • +
    • AC45118 - Kennynick, LLC v. Standard Petroleum Co.
    • +
    • AC45118 Appendix - Kennynick, LLC v. Standard Petroleum Co.
    • +
    + + Published in the Law Journal of October 24, 2023:
    + + + Published in the Law Journal of October 17, 2023: +
      +
    • AC46217 - In re Gabriella M.
    • +
    • AC46214 - In re Gabriella M.
    • +
    • AC45795 - Martinez v. Commissioner of Correction
    • +
    • AC45350 - Christian v. Iyer
    • +
    + + Published in the Law Journal of October 10, 2023:
    + + + Published in the Law Journal of October 3, 2023: +
      +
    • AC44898 - State v. Wade
    • +
    • AC45523 - Commissioner of Transportation v. ACP, LLC
    • +
    • AC45314 - State v. Russo
    • +
    + + Published in the Law Journal of September 26, 2023:
    +
      +
    • AC45623 - Williams v. Green Power Ventures, LLC
    • +
    + + Published in the Law Journal of September 19, 2023:
    +
      +
    • AC45365 - Colandrea v. State Dental Commission
    • +
    • AC45056 - Commissioner of Public Health v. Colandrea
    • +
    + + Published in the Law Journal of September 12, 2023:
    +
      +
    • AC45841 - Godfrey-Hill v. Commissioner of Correction
    • +
    • AC45321 - Madera v. Commissioner of Correction
    • +
    • AC45395 - Cooling v. Torrington
    • +
    + + Published in the Law Journal of September 5, 2023:
    +
      +
    • AC45109 - JPMorgan Chase Bank, National Assn. v. Essaghof
    • +
    • AC44975 - CCI Computerworks, LLC v. Evernet Consulting, LLC
    • +
    + + Published in the Law Journal of August 29, 2023:
    +
      +
    • AC46140 - In re Judah B.
    • +
    • AC45645 - Miriam v. Summit Saugatuck, LLC
    • +
    • AC45036 - Deutsche Bank National Trust Co. v. Amelio
    • +
    • AC45274 - Fraser Lane Associates, LLC v. Chip Fund 7, LLC
    • +
    + + Published in the Law Journal of August 22, 2023:
    +
      +
    • AC45864 - In re Christina C.
    • +
    • AC45100 - Anderson-Harris v. Harris
    • +
    • AC45318 - AAA Advantage Carting & Demolition Service, LLC v. Capone
    • +
    • AC45442 - Williams v. Commissioner of Correction
    • +
    • AC45354 - Hughes v. Board of Education
    • +
    • AC44836, AC45267 - Barbara v. Colonial Surety Co.
    • +
    + + Published in the Law Journal of August 15, 2023:
    +
      +
    • AC46293, AC46327 - In re Amani O.
    • +
    • AC44188 - Pierce v. Commissioner of Correction
    • +
    • AC45332 - GMAT Legal Title Trust 2014-1, U.S. Bank, National Assn. v. Catale
    • +
    • AC45268 - Pencheva-Hasse v. Hasse
    • +
    • AC45226 - Buchenholz v. Buchenholz
    • +
    • AC44757 - Gervais v. JACC Healthcare Center of Danielson, LLC
    • +
    • AC45281 - State v. Mieles
    • +
    • AC45281 Dissent - State v. Mieles
    • +
    + + Published in the Law Journal of August 8, 2023:
    +
      +
    • AC45296 - Elwell v. Kellogg
    • +
    • AC45531 - Cochran v. Dept. of Transportation
    • +
    • AC45229 - Martinoli v. Stamford Police Dept.
    • +
    • AC45180 - A Better Way Wholesale Autos, Inc. v. Better Business Bureau of Connecticut
    • +
    • AC45598 - Mata v. Commissioner of Motor Vehicles
    • +
    • AC45242 - Ochoa v. Behling
    • +
    • AC44763 - Office of Chief Disciplinary Counsel v. Wynne
    • +
    + + Published in the Law Journal of August 1, 2023:
    +
      +
    • AC46069 - In re L. T.
    • +
    • AC45846 - In re Kyreese L.
    • +
    • AC46194 - Lafferty v. Jones
    • +
    • AC45054 - Curley v. Phoenix Ins. Co.
    • +
    • AC45065 - Cazenovia Creek Funding I, LLC v. White Eagle Society of Brotherly Help, Inc., Group 315, Polish National Alliance
    • +
    • AC45473 - U.S. Bank National Assn. v. Booker
    • +
    • AC45127 - Brownstone Exploration & Discovery Park LLC v. Borodkin
    • +
    + + + Published in the Law Journal of July 25, 2023:
    + + + Published in the Law Journal of July 18, 2023: +
      +
    • AC44982 - Drewnowski v. Planning & Zoning Commission
    • +
    • AC44982 Dissent - Drewnowski v. Planning & Zoning Commission
    • +
    • AC44803 - Netter v. Netter
    • +
    + + Published in the Law Journal of July 11, 2023:
    + + + Published in the Law Journal of July 4, 2023: +
      +
    • AC45349 - State v. Griffin
    • +
    • AC45317 - Prioleau v. Agosta
    • +
    • AC44507 - Haydusky's Appeal from Probate
    • +
    • AC45412 - Morales v. Commissioner of Correction
    • +
    + + Published in the Law Journal of June 27, 2023:
    + + + Published in the Law Journal of June 20, 2023: +
      +
    • AC45501, AC45552 - In re Deboras S.
    • +
    • AC44972 - Lowthert v. Freedom of Information Commission
    • +
    • AC45355 - Mirlis v. Yeshiva of New Haven, Inc.
    • +
    • AC45265 - Ammar I. v. Dept. of Children & Families
    • +
    • AC44659 - Belgada v. Hy's Livery Service, Inc.
    • +
    • AC45319 - Cornelius v. Markle Investigators, Inc.
    • +
    • AC45319 Concurrence - Cornelius v. Markle Investigators, Inc.
    • +
    + + Published in the Law Journal of June 13, 2023:
    +
      +
    • AC45917 - In re Marie J.
    • +
    • AC46117 - In re Timothy B.
    • +
    • AC45088 - Jakobowski v. State
    • +
    • AC45106 - Bassett v. East Haven
    • +
    • AC45366 - Fiorita, Kornhaas & Co., P.C. v. Vilela
    • +
    + + Published in the Law Journal of June 6, 2023:
    + + + Published in the Law Journal of May 30, 2023: +
      +
    • AC42991 - State v. Olivero
    • +
    • AC45043 - U.S. Bank National Assn. v. Weinbaum
    • +
    • AC45565 - John Hancock Life Ins. Co. v. Curtin
    • +
    +
    + Published in the Law Journal of May 23, 2023: +
      +
    • AC43955 - Perdikis v. Klarsfeld
    • +
    • AC44979 - Carter v. Commissioner of Correction
    • +
    • AC45249 - Ahern v. Board of Education
    • +
    • AC45134 - Padula v. Arborio
    • +
    • AC45303 - Kohl's Dept. Store, Inc. v. Rocky Hill
    • +
    • AC44160 - Sease v. Commissioner of Correction
    • +
    • AC44892 - Reese v. Commissioner of Correction
    • +
    + + + + Published in the Law Journal of May 16, 2023:
    + + + Published in the Law Journal of May 9, 2023: +
      +
    • AC45534 - In re Cameron H.
    • +
    • AC44723 - Young v. Commissioner of Correction
    • +
    • AC44764 - Commissioner of Transportation v. Chudy
    • +
    + + Published in the Law Journal of May 2, 2023:
    +
      +
    • AC44542 - Stanziale v. Hunt
    • +
    • AC44694 - Napolitano v. Ace American Ins. Co.
    • +
    • AC45512 - State v. DeCosta
    • +
    • AC45253 - Francis v. CIT Bank, N.A.
    • +
    + + Published in the Law Journal of April 25, 2023:
    +
      +
    • AC45011 - O'Reggio v. Commission on Human Rights & Opportunities
    • +
    • AC44867 - ARVYS Protein, Inc. v. A/F Protein, Inc.
    • +
    • AC44780 - State v. Santiago
    • +
    • AC44911 - C. M. v. R. M.
    • +
    + + Published in the Law Journal of April 18, 2023:
    + + + + Published in the Law Journal of April 11, 2023: +
      +
    • AC44280 - State v. Perez-Lopez
    • +
    • AC45252 - Taylor v. Planning & Zoning Commission
    • +
    • AC44886, AC44957 - Gregory v. Commissioner of Correction
    • +
    • AC44410 - State v. Orane C.
    • +
    • AC45589 - White v. Waterbury Fire Dept.
    • +
    • AC44987 - Gaudett v. Bridgeport Police Dept.
    • +
    + + Published in the Law Journal of April 4, 2023:
    +
      +
    • AC45575 - In re Autumn O.
    • +
    • AC44991 - Kelly v. Dept. of Mental Health & Addiction Services
    • +
    • AC45024 - Braasch v. Freedom of Information Commission
    • +
    • AC44760 - Nowak v. Environmental Energy Services, Inc.
    • +
    • AC44906 - Deutsche Bank Trust Co. Americas v. Burke
    • +
    • AC45090 - Worth v. Picard
    • +
    + + Published in the Law Journal of March 28, 2023:
    +
      +
    • AC45034 - Sacramone v. Harlow, Adams & Friedman, P. C.
    • +
    • AC45113 - State v. Eric L.
    • +
    • AC44514 - Pascarella v. Silver
    • +
    • AC45283 - Wihbey v. Zoning Board of Appeals
    • +
    • AC45050 - Murchison v. Waterbury
    • +
    • AC45055 - Long Manor Owners' Assn., Inc. v. Alungbe
    • +
    + + Published in the Law Journal of March 21, 2023:
    +
      +
    • AC41663 - Leffingwell v. Commissioner of Correction
    • +
    • AC44925 - Stewart v. Old Republic National Title Ins. Co.
    • +
    • AC44356 - State v. Delacruz-Gomez
    • +
    • AC41635 - Brewer v. Commissioner of Correction
    • +
    + + Published in the Law Journal of March 14, 2023:
    +
      +
    • AC45434 - In re Kylie P.
    • +
    • AC45549 - In re Anthony S.
    • +
    • AC45304 - V. V. v. V. V.
    • +
    • AC44938 - Doe v. Quinnipiac University
    • +
    • AC45151 - Stamford Property Holdings, LLC v. Jashari
    • +
    • AC45880 - Centrix Management Co., LLC v. Fosberg
    • +
    + + + + Published in the Law Journal of March 7, 2023:
    + + + +

    Published in the Law Journal of February 28, 2023: +

      +
    • AC45269 - In re K. M.
    • +
    • AC45200 - 9 Pettipaug, LLC v. Planning & Zoning Commission
    • +
    • AC45330 - Prime Management, LLC v. Arthur
    • +
    • AC45568 - Houghtaling v. Benevides
    • +
    • AC44731 - Freidheim v. McLaughlin
    • +
    • AC42876 - Stanley v. Commissioner of Correction
    • +
    +

    Published in the Connecticut Law + Journal of 2/21/2023: +

      +
    • AC44942 - Onyilogwu v. Onyilogwu
    • +
    • AC45132 - Foster v. Commissioner of Correction
    • +
    • AC44949 - Herrera v. Meadow Hill, Inc.

    Published in the Connecticut Law + Journal of 2/14/2023: +

    + +

    Published in the Connecticut Law + Journal of 2/7/2023: +

    + +

    Published in the Connecticut Law + Journal of 1/31/2023: +

    • AC45094 - Booth v. Park Terrace II Mutual Housing Ltd. Partnership
    • +
    • AC44587 - Aviles v. Barnhill
    • +
    • AC44701 - State v. Hurdle
    + + +
    +

    Published in the Connecticut Law + Journal of 1/24/2023: +

    + +

    Published in the Connecticut Law + Journal of 1/17/2023: +

      +
    • AC44274 - Schimenti Construction Co., LLC v. Schimenti
    • +
    • AC44489 - Renstrup v. Renstrup
    • +
    • AC45062 - Ross v. Commissioner of Correction
    +

    Published in the Connecticut Law + Journal of 1/10/2023: +

    +

    Published in the Connecticut Law + Journal of 1/3/2023:

    + + + + + + + + + +
    -
    -   
    - -

    - Attorneys | - Case Look-up | - Courts | - Directories | - Educational Resources | - E-Services | - Español | - FAQ's | - Juror Information | - Media | - Opinions | - Opportunities | - Self-Help | - Home

    - -

    Common Legal Words | - Contact Us | - Site Map | Website - Polices and Disclaimers

    - -

    - Copyright © 2014, - State of Connecticut Judicial Branch
    -

    -
    -
    +
    +

    Return to Top
    +

    +Attorneys | +Case Look-up | +Courts | +Directories | +Educational Resources | +E-Services | + Español | +FAQ's | +Juror Information | +Media | +Opinions | +Opportunities | +Self-Help | +Home

    +

    Common Legal Words | +Contact Us | +Site Map | Website +Polices and Disclaimers

    +

    +Copyright © 2016 +State of Connecticut Judicial Branch
    +

    +
    + + +
    + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/connappct_example_2.compare.json b/tests/examples/opinions/united_states/connappct_example_2.compare.json deleted file mode 100644 index 25ece4637..000000000 --- a/tests/examples/opinions/united_states/connappct_example_2.compare.json +++ /dev/null @@ -1,512 +0,0 @@ -[ - { - "case_dates": "2015-06-23", - "case_names": "U.S. Bank National Assn. v. Sorrentino", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP158/158AP333.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36462", - "case_name_shorts": "Sorrentino" - }, - { - "case_dates": "2015-06-23", - "case_names": "State v. Roberts", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP158/158AP362.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC37163", - "case_name_shorts": "Roberts" - }, - { - "case_dates": "2015-06-23", - "case_names": "State v. Edwards", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP158/158AP349.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC35986", - "case_name_shorts": "Edwards" - }, - { - "case_dates": "2015-06-23", - "case_names": "Portfolio Recovery Associates, LLC v. Healy", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP158/158AP341.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36917", - "case_name_shorts": "Healy" - }, - { - "case_dates": "2015-06-23", - "case_names": "J. Wm. Foley, Inc. v. United Illuminating Co.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP158/158AP280.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36194", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-23", - "case_names": "In re Payton V.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP158/158AP379.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC37294", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-23", - "case_names": "In re Maddy V.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP158/158AP379.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC37294", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-23", - "case_names": "Charles v. Mitchell", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP158/158AP337.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36461", - "case_name_shorts": "Charles" - }, - { - "case_dates": "2015-06-23", - "case_names": "Briere v. Greater Hartford Orthopedic Group, P.C.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP158/158AP309.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36075", - "case_name_shorts": "Briere" - }, - { - "case_dates": "2015-06-16", - "case_names": "Wagner v. Our Lady of Mount Caritas, O.S.B., Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP325.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36373", - "case_name_shorts": "Wagner" - }, - { - "case_dates": "2015-06-16", - "case_names": "State v. Schuler", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP305.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36244", - "case_name_shorts": "Schuler" - }, - { - "case_dates": "2015-06-16", - "case_names": "State v. Kallberg", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP247.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC35800", - "case_name_shorts": "Kallberg" - }, - { - "case_dates": "2015-06-16", - "case_names": "SBD Kitchens, LLC v. Jefferson", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP260.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36411", - "case_name_shorts": "Jefferson" - }, - { - "case_dates": "2015-06-16", - "case_names": "Procaccini v. Procaccini", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP329.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36501", - "case_name_shorts": "Procaccini" - }, - { - "case_dates": "2015-06-16", - "case_names": "Nassra v. Nassra", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP334.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36591", - "case_name_shorts": "Nassra" - }, - { - "case_dates": "2015-06-16", - "case_names": "Modaffari v. Greenwich Hospital", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP324.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36444, AC36555", - "case_name_shorts": "Modaffari" - }, - { - "case_dates": "2015-06-16", - "case_names": "McGee v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP345.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36141", - "case_name_shorts": "McGee" - }, - { - "case_dates": "2015-06-16", - "case_names": "Jefferson v. SBD Kitchens, LLC", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP260.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36412, AC36613", - "case_name_shorts": "Jefferson" - }, - { - "case_dates": "2015-06-16", - "case_names": "In re G. Q.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP367.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC37701", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-16", - "case_names": "In re Angel R.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP344.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36692", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-16", - "case_names": "Civie v. Connecticut Siting Council", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP338.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36628", - "case_name_shorts": "Civie" - }, - { - "case_dates": "2015-06-16", - "case_names": "Browne v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP158/158AP347.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36190", - "case_name_shorts": "Browne" - }, - { - "case_dates": "2015-06-09", - "case_names": "Townsend v. Sterling", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP339.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36619", - "case_name_shorts": "Townsend" - }, - { - "case_dates": "2015-06-09", - "case_names": "Peruta v. Freedom of Information Commission", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP323.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36436", - "case_name_shorts": "Peruta" - }, - { - "case_dates": "2015-06-09", - "case_names": "Ogden v. Zoning Board of Appeals", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP310.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36516", - "case_name_shorts": "Ogden" - }, - { - "case_dates": "2015-06-09", - "case_names": "Diaz v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP328.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36003", - "case_name_shorts": "Diaz" - }, - { - "case_dates": "2015-06-02", - "case_names": "Stewart v. Stewart", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP319.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36920", - "case_name_shorts": "Stewart" - }, - { - "case_dates": "2015-06-02", - "case_names": "State v. Young", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP312.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36181", - "case_name_shorts": "Young" - }, - { - "case_dates": "2015-06-02", - "case_names": "Sousa v. Sousa", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP317.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36604", - "case_name_shorts": "Sousa" - }, - { - "case_dates": "2015-06-02", - "case_names": "Rozbicki v. Statewide Grievance Committee", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP327.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36886", - "case_name_shorts": "Rozbicki" - }, - { - "case_dates": "2015-06-02", - "case_names": "Ribeiro v. Fasano, Ippolito & Lee, P.C.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP331E.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36385", - "case_name_shorts": "Ribeiro" - }, - { - "case_dates": "2015-06-02", - "case_names": "Ribeiro v. Fasano, Ippolito & Lee, P.C.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP331.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36385", - "case_name_shorts": "Ribeiro" - }, - { - "case_dates": "2015-06-02", - "case_names": "McLoughlin v. McLoughlin", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP313.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36086", - "case_name_shorts": "McLoughlin" - }, - { - "case_dates": "2015-06-02", - "case_names": "McCants v. State Farm Fire & Casualty Co.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP293.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36623", - "case_name_shorts": "McCants" - }, - { - "case_dates": "2015-06-02", - "case_names": "In re Oreoluwa O.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP315.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36845", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-02", - "case_names": "Beeman v. Stratford", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP297.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36265", - "case_name_shorts": "Beeman" - }, - { - "case_dates": "2015-05-26", - "case_names": "Webster Bank, N.A. v. GFI Groton, LLC", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP302.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC35575", - "case_name_shorts": "" - }, - { - "case_dates": "2015-05-26", - "case_names": "Tate v. Safeco Ins. Co. of Illinois", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP311.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36279", - "case_name_shorts": "Tate" - }, - { - "case_dates": "2015-05-26", - "case_names": "State v. Tilus", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP322.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC35567", - "case_name_shorts": "Tilus" - }, - { - "case_dates": "2015-05-26", - "case_names": "State v. Sherrod", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP295.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36508", - "case_name_shorts": "Sherrod" - }, - { - "case_dates": "2015-05-26", - "case_names": "State v. Pace", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP308.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36798", - "case_name_shorts": "Pace" - }, - { - "case_dates": "2015-05-26", - "case_names": "State v. Jose V.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP301.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC35836", - "case_name_shorts": "" - }, - { - "case_dates": "2015-05-26", - "case_names": "Lukas v. McCoy", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP298.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36463", - "case_name_shorts": "Lukas" - }, - { - "case_dates": "2015-05-26", - "case_names": "LoRicco v. Hula's New Haven, LLC", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP326.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36363", - "case_name_shorts": "LoRicco" - }, - { - "case_dates": "2015-05-19", - "case_names": "Zuvic, Carr & Associates, Inc. v. Morande Brothers, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP262.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36441", - "case_name_shorts": "" - }, - { - "case_dates": "2015-05-19", - "case_names": "Tomick v. United Parcel Service, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP278.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC35896", - "case_name_shorts": "Tomick" - }, - { - "case_dates": "2015-05-19", - "case_names": "Phillips v. Administrator, Unemployment Compensation Act", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP283.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36379", - "case_name_shorts": "Phillips" - }, - { - "case_dates": "2015-05-19", - "case_names": "Namhard v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP318.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC35681", - "case_name_shorts": "Namhard" - }, - { - "case_dates": "2015-05-19", - "case_names": "Kloth-Zanard v. Dept. of Social Services", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP307.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36729", - "case_name_shorts": "Kloth-Zanard" - }, - { - "case_dates": "2015-05-19", - "case_names": "Hylton v. Gunter", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP294.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC33316", - "case_name_shorts": "Hylton" - }, - { - "case_dates": "2015-05-19", - "case_names": "Ferraiolo v. Ferraiolo", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP157/157AP285.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC36523", - "case_name_shorts": "Ferraiolo" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/connappct_example_2.html b/tests/examples/opinions/united_states/connappct_example_2.html deleted file mode 100644 index b63e1691a..000000000 --- a/tests/examples/opinions/united_states/connappct_example_2.html +++ /dev/null @@ -1,697 +0,0 @@ - - - - - - - - - - Officially Released Appellate Court Opinions - - - - - - - - - - - - - - - - - -
    - - History of the Connecticut Judicial Seal - Home - Home - - BannerBanner
    - -
    - - - - - - -

    - - - -
    - - - - - - - -
    - - Case Look-up - Courts - Directories - Educational Resources - E-Services - Juror Information - Online Media Resource Center - Opinions - Opportunities - Self-Help - Frequently Asked Questions - Home - Attorneys - - - - menu
    -
    - - - - - -
    -    - -
    - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - -
    - - - - -
    - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -

     

    - -

     

    - -

     

    - -

     

    - -

     

    - -

     

      -   - - - - - - - - - - - - - - -
    -

    Archive of Appellate Court - Opinions

    - - - 2015 -  Previous - Years
    - - -   - - - - - - - -
    - To Search: - - Hit Control, F, - on your keyboard, and enter the - name.
    -
    - - Information - on how to purchase the Connecticut Law Journal or - the Connecticut Appellate - Reports
    -
    - - - - - - - - - - - - - - - - -
    -

    - Quick Links

    - Advance - Release Opinions
    - - Appellate Court Archive -
    - - Memorandum Archive
    - - Supreme Court Archive -
    -
    - - - - -
    -

    -
    - To be Published in - Connecticut Law Journal of - 6/23/2015:

    - -
      -
    • - AC37294 - - - In re Payton V.
    • -
    • - AC37294 - - - In re Maddy V.
    • -
    • - AC36194 - - J. Wm. Foley, Inc. v. - United Illuminating - Co.
    • -
    • - AC36075 - - Briere v. Greater Hartford - Orthopedic Group, P.C. -
    • -
    • - AC36462 - - U.S. Bank National Assn. v. - Sorrentino
    • -
    • - AC36461 - - Charles v. Mitchell -
    • -
    • - AC36917 - - Portfolio Recovery - Associates, LLC v. Healy -
    • -
    • - AC35986 - - State v. Edwards
    • -
    • - AC37163 - - State v. Roberts
    • -
    - -

    - Published - in - Connecticut Law Journal of - 6/16/2015:

    - -
      -
    • - AC37701 - - - In re G. Q.
    • -
    • - AC35800 - - State v. Kallberg
    • -
    • - AC36411 - - SBD Kitchens, LLC v. - Jefferson
    • -
    • - AC36412, - AC36613 - Jefferson v. - SBD - Kitchens, LLC
    • -
    • - AC36244 - - State v. Schuler
    • -
    • - AC36444, - AC36555 - Modaffari v. - Greenwich Hospital
    • -
    • - AC36373 - - Wagner v. Our Lady of Mount - Caritas, O.S.B., Inc. -
    • -
    • - AC36501 - - Procaccini v. - Procaccini
    • -
    • - AC36591 - - Nassra v. Nassra
    • -
    • - AC36628 - - Civie v. Connecticut Siting - Council
    • -
    • - AC36692 - - In re Angel R.
    • -
    • - AC36141 - - McGee v. Commissioner of - Correction
    • -
    • - AC36190 - - Browne v. Commissioner of - Correction -
    -

    - Published - in - Connecticut Law Journal of - 6/9/2015:

    - - -
      -
    • - AC36516 - - Ogden v. Zoning Board of - Appeals
    • -
    • - AC36436 - - Peruta v. Freedom of - Information - Commission
    • -
    • - AC36003 - - Diaz v. Commissioner of - Correction
    • -
    • - AC36619 - - Townsend v. - Sterling
    • -
    -
    - -

    - Published - in - Connecticut Law Journal of - 6/2/2015:

    -
      -
    • - AC36845 - - - In re Oreoluwa O.
    • -
    • - AC36623 - - McCants v. State Farm Fire - & Casualty Co.
    • -
    • - AC36265 - - Beeman v. Stratford -
    • -
    • - AC36181 - - State v. Young -
    • -
    • - AC36086 - - McLoughlin v. - McLoughlin
    • -
    • - AC36604 - - Sousa v. Sousa
    • -
    • - AC36920 - - Stewart v. Stewart
    • -
    • - AC36886 - - Rozbicki v. Statewide - Grievance Committee
    • -
    • - AC36385 - - Ribeiro v. Fasano, Ippolito - & Lee, P.C.
    • -
    • - AC36385 - Dissent - Ribeiro v. - Fasano, - Ippolito & Lee, - P.C. -
    -

    - Published - in - Connecticut Law Journal of - 5/26/2015:

    - -
      -
    • -

      - - AC36508 - State v. - Sherrod

    • -
    • -

      - - AC36463 - Lukas v. McCoy -

    • -
    • -

      - - AC35836 - State v. Jose - V.

    • -
    • -

      - - AC35575 - Webster Bank, N.A. v. GFI Groton, LLC -

    • -
    • -

      - - AC36798 - State v. Pace -

    • -
    • -

      - - AC36279 - Tate v. Safeco - Ins. Co. of Illinois

    • -
    • -

      - - AC35567 - State v. Tilus -

    • -
    • -

      - - AC36363 - LoRicco v. - Hulas New Haven, LLC

    • -
    -

    - Published - in Connecticut Law - Journal of 5/19/2015: -

    -
      - - -
    • - AC36441 - - Zuvic, Carr & - Associates, - Inc. v. Morande Brothers, - Inc.
    • -
    • - AC35896 - - Tomick v. United Parcel - Service, Inc.
    • -
    • - AC36379 - - Phillips v. Administrator, - Unemployment Compensation - Act
    • -
    • - AC36523 - - Ferraiolo v. - Ferraiolo
    • -
    • - AC33316 - - Hylton v. Gunter -
    • -
    • - AC36729 - - Kloth-Zanard v. Dept. of - Social Services
    • -
    • - AC35681 - - Namhard v. Commissioner of - Correction -
    - - -
    -
    -   
    - - [../include.htm] -
    -
    -
    - - - - diff --git a/tests/examples/opinions/united_states/connappct_example_3.compare.json b/tests/examples/opinions/united_states/connappct_example_3.compare.json deleted file mode 100644 index f13116b28..000000000 --- a/tests/examples/opinions/united_states/connappct_example_3.compare.json +++ /dev/null @@ -1,522 +0,0 @@ -[ - { - "case_dates": "2019-02-19", - "case_names": "State v. Tyson", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP161.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40468", - "case_name_shorts": "Tyson" - }, - { - "case_dates": "2019-02-19", - "case_names": "State v. Rivera", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP132.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC39816", - "case_name_shorts": "Rivera" - }, - { - "case_dates": "2019-02-19", - "case_names": "State v. Bennett", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP141.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40443", - "case_name_shorts": "Bennett" - }, - { - "case_dates": "2019-02-19", - "case_names": "Smith v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP145.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40747", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-19", - "case_names": "Connecticut Community Bank, N.A. v. Kiernan", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP148.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC41378", - "case_name_shorts": "Kiernan" - }, - { - "case_dates": "2019-02-19", - "case_names": "Colinet v. Brown", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP166.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40612", - "case_name_shorts": "Colinet" - }, - { - "case_dates": "2019-02-12", - "case_names": "State v. Walker", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP134.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC41114", - "case_name_shorts": "Walker" - }, - { - "case_dates": "2019-02-12", - "case_names": "Morera v. Thurber", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP144.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40176", - "case_name_shorts": "Morera" - }, - { - "case_dates": "2019-02-12", - "case_names": "In re Tresin J.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP165.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC41829", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-12", - "case_names": "In re Angelina M.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP160.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC41577", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-05", - "case_names": "Wethersfield v. PR Arrow, LLC", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP111.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40407", - "case_name_shorts": "Wethersfield" - }, - { - "case_dates": "2019-02-05", - "case_names": "State v. Jones", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP138.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC41584", - "case_name_shorts": "Jones" - }, - { - "case_dates": "2019-02-05", - "case_names": "State v. Bumgarner-Ramos", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP130.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC39923", - "case_name_shorts": "Bumgarner-Ramos" - }, - { - "case_dates": "2019-02-05", - "case_names": "State v. Berrios", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP120.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40043", - "case_name_shorts": "Berrios" - }, - { - "case_dates": "2019-02-05", - "case_names": "Mosby v. Board of Education", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP147.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC39959", - "case_name_shorts": "Mosby" - }, - { - "case_dates": "2019-02-05", - "case_names": "Daley v. J.B. Hunt Transport, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP99.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC39835", - "case_name_shorts": "Daley" - }, - { - "case_dates": "2019-01-29", - "case_names": "State v. Peluso", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP128.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40998", - "case_name_shorts": "Peluso" - }, - { - "case_dates": "2019-01-29", - "case_names": "State v. Jerrell R.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP135.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40155", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-29", - "case_names": "State v. Carey", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP119.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40868", - "case_name_shorts": "Carey" - }, - { - "case_dates": "2019-01-29", - "case_names": "State v. Anderson", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP139.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40378", - "case_name_shorts": "Anderson" - }, - { - "case_dates": "2019-01-29", - "case_names": "People's United Bank, National Assn. v. Purcell", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP131.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40408", - "case_name_shorts": "Purcell" - }, - { - "case_dates": "2019-01-29", - "case_names": "Maria G. v. Commissioner of Children & Families", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP126.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40692", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-29", - "case_names": "Costello v. Goldstein & Peck, P.C.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP127.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40465", - "case_name_shorts": "Costello" - }, - { - "case_dates": "2019-01-29", - "case_names": "Coppedge v. Travis", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP133.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40787", - "case_name_shorts": "Coppedge" - }, - { - "case_dates": "2019-01-29", - "case_names": "Caron v. Connecticut Pathology Group, P.C.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP136.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40462", - "case_name_shorts": "Caron" - }, - { - "case_dates": "2019-01-29", - "case_names": "Bank of America, N.A. v. Gonzalez", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP129.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40405", - "case_name_shorts": "Gonzalez" - }, - { - "case_dates": "2019-01-22", - "case_names": "Watson Real Estate, LLC v. Woodland Ridge, LLC", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP96.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40450", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-22", - "case_names": "State v. Williams", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP114.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC39597", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-22", - "case_names": "State v. Santiago", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP115.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC41228", - "case_name_shorts": "Santiago" - }, - { - "case_dates": "2019-01-22", - "case_names": "Kirwan v. Kirwan", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP116.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40789", - "case_name_shorts": "Kirwan" - }, - { - "case_dates": "2019-01-22", - "case_names": "Hodges v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP117.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40652", - "case_name_shorts": "Hodges" - }, - { - "case_dates": "2019-01-22", - "case_names": "Fitzgerald v. Bridgeport", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP113.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40130", - "case_name_shorts": "Fitzgerald" - }, - { - "case_dates": "2019-01-22", - "case_names": "Buie v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP124.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40520", - "case_name_shorts": "Buie" - }, - { - "case_dates": "2019-01-22", - "case_names": "Boucher v. Saint Francis GI Endoscopy, LLC", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP125.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40597", - "case_name_shorts": "Boucher" - }, - { - "case_dates": "2019-01-22", - "case_names": "Anderson v. Dike", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP118.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40799", - "case_name_shorts": "Anderson" - }, - { - "case_dates": "2019-01-15", - "case_names": "Villages, LLC v. Longhi", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP94.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40263", - "case_name_shorts": "Longhi" - }, - { - "case_dates": "2019-01-15", - "case_names": "Truskauskas v. Zoning Board of Appeals", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP95.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC39999", - "case_name_shorts": "Truskauskas" - }, - { - "case_dates": "2019-01-15", - "case_names": "State v. Joseph B.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP93.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40847", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-15", - "case_names": "State v. Hanisko", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP101.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40831", - "case_name_shorts": "Hanisko" - }, - { - "case_dates": "2019-01-15", - "case_names": "State v. Bethea", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP112.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40429", - "case_name_shorts": "Bethea" - }, - { - "case_dates": "2019-01-15", - "case_names": "Norris v. Trumbull", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP98.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40094", - "case_name_shorts": "Norris" - }, - { - "case_dates": "2019-01-15", - "case_names": "Hoffkins v. Hart-D'Amato", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP100.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC39910", - "case_name_shorts": "Hoffkins" - }, - { - "case_dates": "2019-01-15", - "case_names": "Ham v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP97.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC37998", - "case_name_shorts": "Ham" - }, - { - "case_dates": "2019-01-15", - "case_names": "Dubinsky v. Reich", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP102.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40432", - "case_name_shorts": "Dubinsky" - }, - { - "case_dates": "2019-01-08", - "case_names": "Wood v. Rutherford", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP479.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40142", - "case_name_shorts": "Wood" - }, - { - "case_dates": "2019-01-08", - "case_names": "State v. Stephenson", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP91.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40250", - "case_name_shorts": "Stephenson" - }, - { - "case_dates": "2019-01-08", - "case_names": "State v. Patel", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP186/186AP66.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40605", - "case_name_shorts": "Patel" - }, - { - "case_dates": "2019-01-08", - "case_names": "Karagozian v. USV Optical, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP186/186AP88.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40907", - "case_name_shorts": "Karagozian" - }, - { - "case_dates": "2019-01-08", - "case_names": "Hospital Media Network, LLC v. Henderson", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP92.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40197", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-08", - "case_names": "Designs for Health, Inc. v. Miller", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP187/187AP87.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40708", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-01", - "case_names": "Wells Fargo Bank, N.A. v. Tarzia", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP186/186AP86.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40229", - "case_name_shorts": "Tarzia" - }, - { - "case_dates": "2019-01-01", - "case_names": "State v. Young", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP186/186AP84.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC40581", - "case_name_shorts": "Young" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/connappct_example_3.html b/tests/examples/opinions/united_states/connappct_example_3.html deleted file mode 100644 index 428144874..000000000 --- a/tests/examples/opinions/united_states/connappct_example_3.html +++ /dev/null @@ -1,487 +0,0 @@ -i - - - - - - - - -Officially Released Appellate Court Opinions - 2018 - - - - - - - - - - - - - - - - - -
    - History of the Connecticut Judicial Seal - Home - Home - - BannerBanner
    - -
    - - - - - - -

    - - - -
    - - - - - - - -
    - Case Look-up - Courts - Directories - Educational Resources - E-Services - Juror Information - Online Media Resource Center - Opinions - Opportunities - Self-Help - Frequently Asked Questions - Home - Attorneys - - - - menu
    -
    - - - - - -
       - -
    - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - -
    - - - - -
    - -
    -
    -
    -
    -
    -
    -
    -
    - -

     

    -

     

    -

     

    -

     

    -

     

    -

     

      -   - - - - - - - - - - - - - -
    -

    Archive of Appellate Court Opinions

    - - - 2019 -  Previous Years
    - - - -   - - - - - - -
    - To Search: - - Hit Control, F, - on your keyboard, and enter the name.
    -
    - - Information on how to purchase the Connecticut Appellate Reports
    -
    - - - - - - - - - - - - - - - - -
    -

    - Quick Links

    - Advance - Release Opinions
    - - Appellate Court Archive
    - - Memorandum Archive
    - - Supreme Court Archive
    -
    - - - - - -
    - - -
    -
    - Published in the - Connecticut Law Journal of 2/19/2019:
      -
    • - AC39816 - State v. - Rivera
    • -
    • - AC40443 - State v. - Bennett
    • -
    • - AC40747 - Smith v. - Commissioner of Correction
    • -
    • - AC41378 - Connecticut - Community Bank, N.A. v. Kiernan
    • -
    • - AC40468 - State v. - Tyson
    • -
    • - AC40612 - Colinet v. - Brown
    • -
    -

    - Published in the - Connecticut Law Journal of 2/12/2019:

    - -

    - Published in the - Connecticut Law Journal of 2/5/2019:

    - -
      -
    • - AC39835 - Daley v. J.B. - Hunt Transport, Inc.
    • -
    • - AC40407 - Wethersfield - v. PR Arrow, LLC
    • -
    • - AC40043 - State v. - Berrios
    • -
    • - AC39923 - State v. - Bumgarner-Ramos
    • -
    • - AC41584 - State v. - Jones
    • -
    • - AC39959 - Mosby v. - Board of Education
    • -
    -

    - Published in the - Connecticut Law Journal of 1/29/2019:

    -
      -
    • - AC40868 - State v. - Carey
    • -
    • - AC40692 - Maria G. v. - Commissioner of Children & Families
    • -
    • - AC40465 - Costello v. - Goldstein & Peck, P.C.
    • -
    • - AC40998 - State v. - Peluso
    • -
    • - AC40405 - Bank of - America, N.A. v. Gonzalez
    • -
    • - AC40408 - People's - United Bank, National Assn. v. Purcell
    • -
    • - AC40787 - Coppedge v. - Travis
    • -
    • - AC40155 - State v. - Jerrell R.
    • -
    • - AC40462 - Caron v. - Connecticut Pathology Group, P.C.
    • -
    • - AC40378 - State v. - Anderson
    • -
    -

    - Published in the Connecticut Law - Journal of 1/22/2019:

    -
      -
    • - AC40450 - Watson Real - Estate, LLC v. Woodland Ridge, LLC
    • -
    • - AC40130 - Fitzgerald v. - Bridgeport
    • -
    • - AC39597 - State v. - Williams
    • -
    • - AC41228 - State v. - Santiago
    • -
    • - AC40789 - Kirwan v. - Kirwan
    • -
    • - AC40652 - Hodges v. - Commissioner of Correction
    • -
    • - AC40799 - Anderson v. - Dike
    • -
    • - AC40520 - Buie v. - Commissioner of Correction
    • -
    • - AC40597 - Boucher v. - Saint Francis GI Endoscopy, LLC
    • -
    -

    Published in the - Connecticut Law Journal of 1/15/2019:

    -
      -
    • - AC40847 - State v. - Joseph B.
    • -
    • - AC40263 - Villages, LLC - v. Longhi
    • -
    • - AC39999 - Truskauskas v. - Zoning Board of Appeals
    • -
    • - AC37998 - Ham v. - Commissioner of Correction
    • -
    • - AC40094 - Norris v. - Trumbull
    • -
    • - AC39910 - Hoffkins v. - Hart-D'Amato
    • -
    • - AC40831 - State v. - Hanisko
    • -
    • - AC40432 - Dubinsky v. - Reich
    • -
    • - AC40429 - State v. - Bethea
    • -
    -

    -  Published in the - Connecticut Law Journal of 1/8/2019:

    -
      -
    • - AC40605 - State v. Patel -
    • -
    • - AC40907 - Karagozian v. - USV Optical, Inc.
    • -
    • - AC40708 - Designs for - Health, Inc. v. Miller
    • -
    • - AC40250 - State v. - Stephenson
    • -
    • - AC40197 - Hospital Media - Network, LLC v. Henderson
    • -
    • - AC40142 - Wood v. - Rutherford
    • -
    -

     Published in the - Connecticut Law Journal of 1/1/2019:

    -
      -
    • - AC40581 - State v. Young -
    • -
    • - AC40229 - Wells Fargo - Bank, N.A. v. Tarzia 
    • -
    -

     

    -
    -

    -Attorneys | -Case Look-up | -Courts | -Directories | -Educational Resources | -E-Services | - Español | -FAQ's | -Juror Information | -Media | -Opinions | -Opportunities | -Self-Help | -Home

    -

    Common Legal Words | -Contact Us | -Site Map | Website -Polices and Disclaimers

    -

    -Copyright © 2016 -State of Connecticut Judicial Branch
    -

    -
    - - - -
    - - - - diff --git a/tests/examples/opinions/united_states/connappct_example_4.compare.json b/tests/examples/opinions/united_states/connappct_example_4.compare.json deleted file mode 100644 index 48662ebc2..000000000 --- a/tests/examples/opinions/united_states/connappct_example_4.compare.json +++ /dev/null @@ -1,412 +0,0 @@ -[ - { - "case_dates": "2022-02-01", - "case_names": "Salamone v. Wesleyan University", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP128.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43819", - "case_name_shorts": "Salamone" - }, - { - "case_dates": "2022-02-01", - "case_names": "Ostapowicz v. Wisniewski", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP117.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43944", - "case_name_shorts": "Ostapowicz" - }, - { - "case_dates": "2022-02-01", - "case_names": "Nutmeg State Crematorium, LLC v. Dept. of Energy & Enviromental Protection", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP114.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43834", - "case_name_shorts": "" - }, - { - "case_dates": "2022-02-01", - "case_names": "Ill v. Manzo-III", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP426.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC42735", - "case_name_shorts": "Ill" - }, - { - "case_dates": "2022-02-01", - "case_names": "Freidburg v. Kurtz", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP120.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43695", - "case_name_shorts": "Freidburg" - }, - { - "case_dates": "2022-02-01", - "case_names": "DiTullio v. LM General Ins. Co.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP423.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44114", - "case_name_shorts": "DiTullio" - }, - { - "case_dates": "2022-01-25", - "case_names": "Wooden v. Perez", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP110.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44301", - "case_name_shorts": "Wooden" - }, - { - "case_dates": "2022-01-25", - "case_names": "Taylor v. Pollner", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP115.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44517", - "case_name_shorts": "Taylor" - }, - { - "case_dates": "2022-01-25", - "case_names": "Taber v. Taber", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP113.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44272", - "case_name_shorts": "Taber" - }, - { - "case_dates": "2022-01-25", - "case_names": "State v. Prudhomme", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP104.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43302", - "case_name_shorts": "Prudhomme" - }, - { - "case_dates": "2022-01-25", - "case_names": "State v. Jones", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP107.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC42674", - "case_name_shorts": "Jones" - }, - { - "case_dates": "2022-01-25", - "case_names": "State v. Cusson", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP87.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43352", - "case_name_shorts": "Cusson" - }, - { - "case_dates": "2022-01-25", - "case_names": "Stanley v. Barone", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP106.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43889", - "case_name_shorts": "Stanley" - }, - { - "case_dates": "2022-01-25", - "case_names": "Rider v. Rider", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP108.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44067", - "case_name_shorts": "Rider" - }, - { - "case_dates": "2022-01-25", - "case_names": "R. S. v. E. S.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP112.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43630", - "case_name_shorts": "" - }, - { - "case_dates": "2022-01-25", - "case_names": "Kiyak v. Dept. of Agriculture", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP111.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43314", - "case_name_shorts": "Kiyak" - }, - { - "case_dates": "2022-01-25", - "case_names": "Karen v. Loftus", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP109.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43488", - "case_name_shorts": "Karen" - }, - { - "case_dates": "2022-01-25", - "case_names": "Baltas v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP103.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44259", - "case_name_shorts": "Baltas" - }, - { - "case_dates": "2022-01-25", - "case_names": "Avon v. Freedom of Information Commission", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP105.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44255", - "case_name_shorts": "Avon" - }, - { - "case_dates": "2022-01-18", - "case_names": "State v. McCarthy", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP97.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43785", - "case_name_shorts": "McCarthy" - }, - { - "case_dates": "2022-01-18", - "case_names": "State v. LaMotte", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP98.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43973", - "case_name_shorts": "LaMotte" - }, - { - "case_dates": "2022-01-18", - "case_names": "Salce v. Cardello", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP99.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43648", - "case_name_shorts": "Salce" - }, - { - "case_dates": "2022-01-18", - "case_names": "Poce v. O & G Industries, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP100Y.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43511", - "case_name_shorts": "Poce" - }, - { - "case_dates": "2022-01-18", - "case_names": "Poce v. O & G Industries, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP100X.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43511", - "case_name_shorts": "Poce" - }, - { - "case_dates": "2022-01-18", - "case_names": "Poce v. O & G Industries, Inc.", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP100.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43511", - "case_name_shorts": "Poce" - }, - { - "case_dates": "2022-01-18", - "case_names": "Marshall v. Commissioner of Motor Vehicles", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP102E.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44191", - "case_name_shorts": "Marshall" - }, - { - "case_dates": "2022-01-18", - "case_names": "Marshall v. Commissioner of Motor Vehicles", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP210/210AP102.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44191", - "case_name_shorts": "Marshall" - }, - { - "case_dates": "2022-01-11", - "case_names": "Zubrowski v. Commissioner of Correction", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP90.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43981", - "case_name_shorts": "Zubrowski" - }, - { - "case_dates": "2022-01-11", - "case_names": "State v. Wilson", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP88.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC42914", - "case_name_shorts": "Wilson" - }, - { - "case_dates": "2022-01-11", - "case_names": "State v. Reed", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP101.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC42509", - "case_name_shorts": "Reed" - }, - { - "case_dates": "2022-01-11", - "case_names": "Purnell v. Inland Wetlands & Watercourses Commission", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP422.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44083", - "case_name_shorts": "Purnell" - }, - { - "case_dates": "2022-01-11", - "case_names": "Parker v.Zoning Commision", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP412.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44130", - "case_name_shorts": "Parker v.Zoning Commision" - }, - { - "case_dates": "2022-01-11", - "case_names": "LendingHome Marketplace, LLC v. Traditions Oil Group, LLC", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP96.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44450", - "case_name_shorts": "" - }, - { - "case_dates": "2022-01-11", - "case_names": "Cokic v. Fiore Powersports, LLC", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP95.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44368", - "case_name_shorts": "Cokic" - }, - { - "case_dates": "2022-01-11", - "case_names": "Baker v. Argueta", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP94.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43827", - "case_name_shorts": "Baker" - }, - { - "case_dates": "2022-01-11", - "case_names": "Aldin Associates Ltd. Partnership v. State", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP421.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44102", - "case_name_shorts": "" - }, - { - "case_dates": "2022-01-04", - "case_names": "Zakko v. Kasir", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP93.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44440", - "case_name_shorts": "Zakko" - }, - { - "case_dates": "2022-01-04", - "case_names": "Walzer v. Walzer", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP86.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC44313", - "case_name_shorts": "Walzer" - }, - { - "case_dates": "2022-01-04", - "case_names": "State v. Rosario", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP81.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC42827", - "case_name_shorts": "Rosario" - }, - { - "case_dates": "2022-01-04", - "case_names": "Lasso v. Valley Tree & Landscaping, LLC", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP85.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43813", - "case_name_shorts": "Lasso" - }, - { - "case_dates": "2022-01-04", - "case_names": "Housing Authority v. Stevens", - "download_urls": "tests/examples/opinions/united_states/Cases/AROap/AP209/209AP82.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC43471", - "case_name_shorts": "Stevens" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/connappct_example_4.html b/tests/examples/opinions/united_states/connappct_example_4.html deleted file mode 100644 index d81a6cf0a..000000000 --- a/tests/examples/opinions/united_states/connappct_example_4.html +++ /dev/null @@ -1,410 +0,0 @@ - - - - - - - - - -Officially Released Appellate Court Opinions - 2018 - - - - - - - - - - - - - - - - - -
    - History of the Connecticut Judicial Seal - Home - Home - - BannerBanner
    - -
    - - - - - - -

    - - - -
    - - - - - - - -
    - Case Look-up - Courts - Directories - Educational Resources - E-Services - Juror Information - Online Media Resource Center - Opinions - Opportunities - Self-Help - Frequently Asked Questions - Home - Attorneys - - - - menu
    -
    - - - - - -
       - -
    - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - -
    - - - - -
    - -
    -
    -
    -
    -
    -
    -
    -
    - -

     

    -

     

    -

     

    -

     

    -

     

    -

     

      -   - - - - - - - - - - - - - - - - - - - -
    -

    Archive of Appellate Court Opinions

    - - - 2022 -  Previous Years
    - - - -   - - - - - - -
    - To Search: - - Hit Control, F, - on your keyboard, and enter the name.
    -
    - - Information on how to purchase the Connecticut Appellate Reports
    -
    - - - - - - - - - - - - - - - - -
    -

    - Quick Links

    - Advance - Release Opinions
    - - Appellate Court Archive
    - - Memorandum Archive
    - - Supreme Court Archive
    -
    - To Be Published in the Connecticut Law - Journal of 02/01/2022: -

    Published in the Connecticut Law - Journal of 01/25/2022:

    - - - - - -
    -
    - - Published in the Connecticut Law Journal on 01/18/2022: -

    Published in the Connecticut Law Journal on 01/11/2022: - -

    - -
      -
    • AC44130 - Parker v.Zoning Commision
    • - -
    • AC44083 - Purnell v. Inland Wetlands & Watercourses Commission
    • - -
    • AC44102 - Aldin Associates Ltd. Partnership v. State
    • - -
    • AC42914 - State v. Wilson
    • - -
    • AC43981 - Zubrowski v. Commissioner of Correction
    • - -
    • AC43827 - Baker v. Argueta
    • - -
    • AC44368 - Cokic v. Fiore Powersports, LLC
    • - -
    • AC44450 - LendingHome Marketplace, LLC v. Traditions Oil Group, LLC
    • - -
    • AC42509 - State v. Reed
    • -
    - -

    Published in the Connecticut Law Journal on 01/04/2022:

    - -
      -
    • AC42827 - State v. Rosario
    • -
    • AC43471 - Housing Authority v. Stevens
    • -
    • AC43813 - Lasso v. Valley Tree & Landscaping, LLC
    • -
    • AC44313 - Walzer v. Walzer
    • -
    • AC44440 - Zakko v. Kasir
    • -
    - - -
    -
    -

    Return to Top
    -

    -Attorneys | -Case Look-up | -Courts | -Directories | -Educational Resources | -E-Services | - Español | -FAQ's | -Juror Information | -Media | -Opinions | -Opportunities | -Self-Help | -Home

    -

    Common Legal Words | -Contact Us | -Site Map | Website -Polices and Disclaimers

    -

    -Copyright © 2016 -State of Connecticut Judicial Branch
    -

    -
    - - - -
    - - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/dc_example_2.compare.json b/tests/examples/opinions/united_states/dc_example_2.compare.json index 3481595c4..96d366c6b 100644 --- a/tests/examples/opinions/united_states/dc_example_2.compare.json +++ b/tests/examples/opinions/united_states/dc_example_2.compare.json @@ -21,7 +21,7 @@ }, { "case_dates": "2017-05-04", - "case_names": "Jacqueline Dent v. DOES/Providence Hospital Sedgwick Claims Management Services, Inc.", + "case_names": "Jacqueline Dent v. DOES/Providence Hospital; Sedgwick Claims Management Services, Inc.", "download_urls": "/internet/documents/14-AA-527.pdf", "precedential_statuses": "Published", "blocked_statuses": false, diff --git a/tests/examples/opinions/united_states/dc_example_3.compare.json b/tests/examples/opinions/united_states/dc_example_3.compare.json index 05bc98b56..9fdac05f1 100644 --- a/tests/examples/opinions/united_states/dc_example_3.compare.json +++ b/tests/examples/opinions/united_states/dc_example_3.compare.json @@ -71,7 +71,7 @@ }, { "case_dates": "2017-08-10", - "case_names": "In re K.M. M.M.", + "case_names": "In re K.M.; M.M.", "download_urls": "/sites/default/files/2017-08/15-FS-1417.pdf", "precedential_statuses": "Published", "blocked_statuses": false, diff --git a/tests/examples/opinions/united_states/dcd_example.compare.json b/tests/examples/opinions/united_states/dcd_example.compare.json index 522cc5a37..a3a408519 100644 --- a/tests/examples/opinions/united_states/dcd_example.compare.json +++ b/tests/examples/opinions/united_states/dcd_example.compare.json @@ -9,7 +9,6 @@ "docket_document_numbers": "456", "docket_numbers": "Criminal No. 1981-0306", "judges": "Judge Paul L. Friedman", - "nature_of_suit": "Criminal", "case_name_shorts": "Hinckley" }, { @@ -22,7 +21,6 @@ "docket_document_numbers": "455", "docket_numbers": "Criminal No. 1981-0306", "judges": "Judge Paul L. Friedman", - "nature_of_suit": "Criminal", "case_name_shorts": "Hinckley" }, { @@ -35,7 +33,6 @@ "docket_document_numbers": "866", "docket_numbers": "Criminal No. 2011-0129", "judges": "Judge Colleen Kollar-Kotelly", - "nature_of_suit": "Criminal", "case_name_shorts": "Edwards" }, { @@ -48,7 +45,6 @@ "docket_document_numbers": "864", "docket_numbers": "Criminal No. 2011-0129", "judges": "Judge Colleen Kollar-Kotelly", - "nature_of_suit": "Criminal", "case_name_shorts": "Edwards" }, { @@ -61,7 +57,6 @@ "docket_document_numbers": "86", "docket_numbers": "Civil Action No. 2012-1249", "judges": "Judge Colleen Kollar-Kotelly", - "nature_of_suit": "Civil", "case_name_shorts": "Mattiaccio" }, { @@ -74,7 +69,6 @@ "docket_document_numbers": "84", "docket_numbers": "Civil Action No. 2012-1249", "judges": "Judge Colleen Kollar-Kotelly", - "nature_of_suit": "Civil", "case_name_shorts": "Mattiaccio" }, { @@ -87,7 +81,6 @@ "docket_document_numbers": "11", "docket_numbers": "Civil Action No. 2013-0367", "judges": "Judge Colleen Kollar-Kotelly", - "nature_of_suit": "Civil", "case_name_shorts": "Mallory" }, { @@ -100,7 +93,6 @@ "docket_document_numbers": "38", "docket_numbers": "Civil Action No. 2013-1550", "judges": "Judge Royce C. Lamberth", - "nature_of_suit": "Civil", "case_name_shorts": "Lopes" }, { @@ -113,7 +105,6 @@ "docket_document_numbers": "36", "docket_numbers": "Civil Action No. 2013-1550", "judges": "Judge Royce C. Lamberth", - "nature_of_suit": "Civil", "case_name_shorts": "Lopes" }, { @@ -126,7 +117,6 @@ "docket_document_numbers": "40", "docket_numbers": "Civil Action No. 2009-2111", "judges": "Judge Paul L. Friedman", - "nature_of_suit": "Civil", "case_name_shorts": "Koch" }, { @@ -139,7 +129,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0304", "judges": "Judge Ellen S. Huvelle", - "nature_of_suit": "Civil", "case_name_shorts": "Rowland" }, { @@ -152,7 +141,6 @@ "docket_document_numbers": "17", "docket_numbers": "Civil Action No. 2013-0025", "judges": "Judge Amy Berman Jackson", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -165,7 +153,6 @@ "docket_document_numbers": "36", "docket_numbers": "Civil Action No. 2012-0264", "judges": "Judge Gladys Kessler", - "nature_of_suit": "Civil", "case_name_shorts": "Hawkins" }, { @@ -178,7 +165,6 @@ "docket_document_numbers": "18", "docket_numbers": "Civil Action No. 2013-0749", "judges": "Judge Beryl A. Howell", - "nature_of_suit": "Civil", "case_name_shorts": "Gumpad" }, { @@ -191,7 +177,6 @@ "docket_document_numbers": "86", "docket_numbers": "Civil Action No. 2010-2021", "judges": "Judge Rudolph Contreras", - "nature_of_suit": "Civil", "case_name_shorts": "Flythe" }, { @@ -204,7 +189,6 @@ "docket_document_numbers": "12", "docket_numbers": "Civil Action No. 2013-2002", "judges": "Judge Ellen S. Huvelle", - "nature_of_suit": "Civil", "case_name_shorts": "Demissie" }, { @@ -217,7 +201,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0305", "judges": "Judge Ellen S. Huvelle", - "nature_of_suit": "Civil", "case_name_shorts": "Brosten" }, { @@ -230,7 +213,6 @@ "docket_document_numbers": "69", "docket_numbers": "Civil Action No. 2011-0391", "judges": "Judge Robert L. Wilkins", - "nature_of_suit": "Civil", "case_name_shorts": "Uzoukwu" }, { @@ -243,7 +225,6 @@ "docket_document_numbers": "27", "docket_numbers": "Civil Action No. 2012-1245", "judges": "Judge Emmet G. Sullivan", - "nature_of_suit": "Civil", "case_name_shorts": "Stout" }, { @@ -256,7 +237,6 @@ "docket_document_numbers": "52", "docket_numbers": "Civil Action No. 2012-1281", "judges": "Judge Ketanji Brown Jackson", - "nature_of_suit": "Civil", "case_name_shorts": "Martin" }, { @@ -269,7 +249,6 @@ "docket_document_numbers": "34", "docket_numbers": "Civil Action No. 2011-0456", "judges": "Judge Rudolph Contreras", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -282,7 +261,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0280", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Wells" }, { @@ -295,7 +273,6 @@ "docket_document_numbers": "304", "docket_numbers": "Criminal No. 2008-0213", "judges": "Judge John D. Bates", - "nature_of_suit": "Criminal", "case_name_shorts": "Koumbairia" }, { @@ -308,7 +285,6 @@ "docket_document_numbers": "4", "docket_numbers": "Civil Action No. 2014-0283", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Shah" }, { @@ -321,7 +297,6 @@ "docket_document_numbers": "11", "docket_numbers": "Civil Action No. 2013-1936", "judges": "Judge James E. Boasberg", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -334,7 +309,6 @@ "docket_document_numbers": "55", "docket_numbers": "Civil Action No. 2012-0335", "judges": "Judge Paul L. Friedman", - "nature_of_suit": "Civil", "case_name_shorts": "Henok" }, { @@ -347,7 +321,6 @@ "docket_document_numbers": "19", "docket_numbers": "Civil Action No. 2013-0447", "judges": "Judge Rudolph Contreras", - "nature_of_suit": "Civil", "case_name_shorts": "Fletcher" }, { @@ -360,7 +333,6 @@ "docket_document_numbers": "238", "docket_numbers": "Civil Action No. 2004-1173", "judges": "Judge Paul L. Friedman", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -373,7 +345,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0282", "judges": "Judge Ellen S. Huvelle", - "nature_of_suit": "Civil", "case_name_shorts": "Elwood" }, { @@ -386,7 +357,6 @@ "docket_document_numbers": "63", "docket_numbers": "Civil Action No. 2011-2220", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Bilal-Edwards" }, { @@ -399,7 +369,6 @@ "docket_document_numbers": "145", "docket_numbers": "Civil Action No. 2005-1276", "judges": "Judge James S. Gwin", - "nature_of_suit": "Civil", "case_name_shorts": "Barko" }, { @@ -412,7 +381,6 @@ "docket_document_numbers": "53", "docket_numbers": "Civil Action No. 2010-1424", "judges": "Judge Rudolph Contreras", - "nature_of_suit": "Civil", "case_name_shorts": "Lyles" }, { @@ -425,7 +393,6 @@ "docket_document_numbers": "95", "docket_numbers": "Civil Action No. 2009-1832", "judges": "Judge Rudolph Contreras", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -438,7 +405,6 @@ "docket_document_numbers": "16", "docket_numbers": "Civil Action No. 2012-1974", "judges": "Judge Richard J. Leon", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -451,7 +417,6 @@ "docket_document_numbers": "643", "docket_numbers": "Civil Action No. 2005-0280", "judges": "Judge Gladys Kessler", - "nature_of_suit": "Civil", "case_name_shorts": "Al-Adahi" }, { @@ -464,7 +429,6 @@ "docket_document_numbers": "1239", "docket_numbers": "Criminal No. 2004-0128", "judges": "Judge Rosemary M. Collyer", - "nature_of_suit": "Criminal", "case_name_shorts": "Unknown" }, { @@ -477,7 +441,6 @@ "docket_document_numbers": "95", "docket_numbers": "Civil Action No. 2006-1255", "judges": "Judge Gladys Kessler", - "nature_of_suit": "Civil", "case_name_shorts": "Marino" }, { @@ -490,7 +453,6 @@ "docket_document_numbers": "4", "docket_numbers": "Civil Action No. 2014-0256", "judges": "Judge Ellen S. Huvelle", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -503,7 +465,6 @@ "docket_document_numbers": "87", "docket_numbers": "Civil Action No. 2011-0660", "judges": "Judge Gladys Kessler", - "nature_of_suit": "Civil", "case_name_shorts": "Flaherty" }, { @@ -516,7 +477,6 @@ "docket_document_numbers": "57", "docket_numbers": "Civil Action No. 2013-0252", "judges": "Judge Beryl A. Howell", - "nature_of_suit": "Civil", "case_name_shorts": "Bivins" }, { @@ -529,7 +489,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0249", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Wells" }, { @@ -542,7 +501,6 @@ "docket_document_numbers": "388", "docket_numbers": "Criminal No. 2008-0360", "judges": "Judge Royce C. Lamberth", - "nature_of_suit": "Criminal", "case_name_shorts": "Slatten" }, { @@ -555,7 +513,6 @@ "docket_document_numbers": "60", "docket_numbers": "Criminal No. 2011-0275", "judges": "Judge Amy Berman Jackson", - "nature_of_suit": "Criminal", "case_name_shorts": "Cardoza" }, { @@ -568,7 +525,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0244", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Taite" }, { @@ -581,7 +537,6 @@ "docket_document_numbers": "4", "docket_numbers": "Civil Action No. 2014-0245", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Stewart" }, { @@ -594,7 +549,6 @@ "docket_document_numbers": "37", "docket_numbers": "Civil Action No. 2013-0770", "judges": "Judge James E. Boasberg", - "nature_of_suit": "Civil", "case_name_shorts": "Blank" }, { @@ -607,7 +561,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0233", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Nickerson" }, { @@ -620,7 +573,6 @@ "docket_document_numbers": "4", "docket_numbers": "Civil Action No. 2014-0248", "judges": "Judge Ellen S. Huvelle", - "nature_of_suit": "Civil", "case_name_shorts": "Matthews" }, { @@ -633,7 +585,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0225", "judges": "Judge Ellen S. Huvelle", - "nature_of_suit": "Civil", "case_name_shorts": "Kempo" }, { @@ -646,7 +597,6 @@ "docket_document_numbers": "16", "docket_numbers": "Civil Action No. 2013-0774", "judges": "Judge Rosemary M. Collyer", - "nature_of_suit": "Civil", "case_name_shorts": "Harrod" }, { @@ -659,7 +609,6 @@ "docket_document_numbers": "4", "docket_numbers": "Civil Action No. 2014-0241", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Gasaway" }, { @@ -672,7 +621,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0239", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Flores" }, { @@ -685,7 +633,6 @@ "docket_document_numbers": "2438", "docket_numbers": "Civil Action No. 1997-1629", "judges": "Judge Paul L. Friedman", - "nature_of_suit": "Civil", "case_name_shorts": "Blackman" }, { @@ -698,7 +645,6 @@ "docket_document_numbers": "641", "docket_numbers": "Civil Action No. 2005-0280", "judges": "Judge Gladys Kessler", - "nature_of_suit": "Civil", "case_name_shorts": "Al-Adahi" }, { @@ -711,7 +657,6 @@ "docket_document_numbers": "33", "docket_numbers": "Civil Action No. 2012-1389", "judges": "Chief Judge Richard W. Roberts", - "nature_of_suit": "Civil", "case_name_shorts": "Afram" }, { @@ -724,7 +669,6 @@ "docket_document_numbers": "29", "docket_numbers": "Civil Action No. 2012-1036", "judges": "Judge Royce C. Lamberth", - "nature_of_suit": "Civil", "case_name_shorts": "Saba" }, { @@ -737,7 +681,6 @@ "docket_document_numbers": "10", "docket_numbers": "Civil Action No. 2013-0288", "judges": "Judge Beryl A. Howell", - "nature_of_suit": "Civil", "case_name_shorts": "Dorsen" }, { @@ -750,7 +693,6 @@ "docket_document_numbers": "45", "docket_numbers": "Civil Action No. 2013-0572", "judges": "Judge Colleen Kollar-Kotelly", - "nature_of_suit": "Civil", "case_name_shorts": "Conant" }, { @@ -763,7 +705,6 @@ "docket_document_numbers": "19", "docket_numbers": "Civil Action No. 2013-0757", "judges": "Judge James E. Boasberg", - "nature_of_suit": "Civil", "case_name_shorts": "Cienfuegos" }, { @@ -776,7 +717,6 @@ "docket_document_numbers": "67", "docket_numbers": "Civil Action No. 2011-0442", "judges": "Judge Rosemary M. Collyer", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -789,7 +729,6 @@ "docket_document_numbers": "41", "docket_numbers": "Civil Action No. 2011-0701", "judges": "Judge Rosemary M. Collyer", - "nature_of_suit": "Civil", "case_name_shorts": "Morris" }, { @@ -802,7 +741,6 @@ "docket_document_numbers": "54", "docket_numbers": "Civil Action No. 2012-2065", "judges": "Judge James E. Boasberg", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -815,7 +753,6 @@ "docket_document_numbers": "178", "docket_numbers": "Civil Action No. 2004-1161", "judges": "Judge Frederick J. Scullin, Jr", - "nature_of_suit": "Civil", "case_name_shorts": "Houlahan" }, { @@ -828,7 +765,6 @@ "docket_document_numbers": "56", "docket_numbers": "Civil Action No. 2011-0123", "judges": "Judge Rudolph Contreras", - "nature_of_suit": "Civil", "case_name_shorts": "Ajisefinni" }, { @@ -841,7 +777,6 @@ "docket_document_numbers": "68", "docket_numbers": "Criminal No. 2011-0059", "judges": "Chief Judge Richard W. Roberts", - "nature_of_suit": "Criminal", "case_name_shorts": "" }, { @@ -854,7 +789,6 @@ "docket_document_numbers": "45", "docket_numbers": "Civil Action No. 2013-1392", "judges": "Judge Colleen Kollar-Kotelly", - "nature_of_suit": "Civil", "case_name_shorts": "Liebman" }, { @@ -867,7 +801,6 @@ "docket_document_numbers": "15", "docket_numbers": "Civil Action No. 2013-1961", "judges": "Judge Ketanji Brown Jackson", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -880,7 +813,6 @@ "docket_document_numbers": "41", "docket_numbers": "Civil Action No. 2011-1331", "judges": "Judge Beryl A. Howell", - "nature_of_suit": "Civil", "case_name_shorts": "Daniels" }, { @@ -893,7 +825,6 @@ "docket_document_numbers": "18", "docket_numbers": "Civil Action No. 2013-0757", "judges": "Judge James E. Boasberg", - "nature_of_suit": "Civil", "case_name_shorts": "Cienfuegos" }, { @@ -906,7 +837,6 @@ "docket_document_numbers": "472", "docket_numbers": "Civil Action No. 1998-2088", "judges": "Judge Gladys Kessler", - "nature_of_suit": "Civil", "case_name_shorts": "Purcell" }, { @@ -919,7 +849,6 @@ "docket_document_numbers": "36", "docket_numbers": "Civil Action No. 2012-1123", "judges": "Judge Amy Berman Jackson", - "nature_of_suit": "Civil", "case_name_shorts": "K-N" }, { @@ -932,7 +861,6 @@ "docket_document_numbers": "35", "docket_numbers": "Civil Action No. 2012-1123", "judges": "Judge Amy Berman Jackson", - "nature_of_suit": "Civil", "case_name_shorts": "K-N" }, { @@ -945,7 +873,6 @@ "docket_document_numbers": "34", "docket_numbers": "Civil Action No. 2013-0315", "judges": "Judge Rudolph Contreras", - "nature_of_suit": "Civil", "case_name_shorts": "Dumosch" }, { @@ -958,7 +885,6 @@ "docket_document_numbers": "20", "docket_numbers": "Civil Action No. 2012-1177", "judges": "Judge Rudolph Contreras", - "nature_of_suit": "Civil", "case_name_shorts": "Doak" }, { @@ -971,7 +897,6 @@ "docket_document_numbers": "100", "docket_numbers": "Civil Action No. 2009-0394", "judges": "Judge Richard J. Leon", - "nature_of_suit": "Civil", "case_name_shorts": "Bland-Collins" }, { @@ -984,7 +909,6 @@ "docket_document_numbers": "21", "docket_numbers": "Civil Action No. 2013-0818", "judges": "Judge James E. Boasberg", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -997,7 +921,6 @@ "docket_document_numbers": "33", "docket_numbers": "Civil Action No. 2012-0625", "judges": "Judge Ellen S. Huvelle", - "nature_of_suit": "Civil", "case_name_shorts": "Sims" }, { @@ -1010,7 +933,6 @@ "docket_document_numbers": "32", "docket_numbers": "Civil Action No. 2012-0625", "judges": "Judge Ellen S. Huvelle", - "nature_of_suit": "Civil", "case_name_shorts": "Sims" }, { @@ -1023,7 +945,6 @@ "docket_document_numbers": "39", "docket_numbers": "Civil Action No. 2013-0391", "judges": "Judge Rosemary M. Collyer", - "nature_of_suit": "Civil", "case_name_shorts": "Graham" }, { @@ -1036,7 +957,6 @@ "docket_document_numbers": "26", "docket_numbers": "Civil Action No. 2013-1603", "judges": "Judge James E. Boasberg", - "nature_of_suit": "Civil", "case_name_shorts": "Ayala" }, { @@ -1049,7 +969,6 @@ "docket_document_numbers": "29", "docket_numbers": "Civil Action No. 2013-0109", "judges": "Judge Amy Berman Jackson", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -1062,7 +981,6 @@ "docket_document_numbers": "31", "docket_numbers": "Civil Action No. 2012-0327", "judges": "Judge Amy Berman Jackson", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -1075,7 +993,6 @@ "docket_document_numbers": "21", "docket_numbers": "Civil Action No. 2013-0873", "judges": "Judge Amy Berman Jackson", - "nature_of_suit": "Civil", "case_name_shorts": "Atkinson" }, { @@ -1088,7 +1005,6 @@ "docket_document_numbers": "9", "docket_numbers": "Criminal No. 2013-0285", "judges": "Judge Ketanji Brown Jackson", - "nature_of_suit": "Criminal", "case_name_shorts": "" }, { @@ -1101,7 +1017,6 @@ "docket_document_numbers": "21", "docket_numbers": "Civil Action No. 2013-0675", "judges": "Judge Gladys Kessler", - "nature_of_suit": "Civil", "case_name_shorts": "Rodriguez" }, { @@ -1114,7 +1029,6 @@ "docket_document_numbers": "21", "docket_numbers": "Civil Action No. 2013-0830", "judges": "Judge James E. Boasberg", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -1127,7 +1041,6 @@ "docket_document_numbers": "40", "docket_numbers": "Civil Action No. 2012-0696", "judges": "Judge Colleen Kollar-Kotelly", - "nature_of_suit": "Civil", "case_name_shorts": "Browne" }, { @@ -1140,7 +1053,6 @@ "docket_document_numbers": "80", "docket_numbers": "Civil Action No. 2012-0452", "judges": "Judge Colleen Kollar-Kotelly", - "nature_of_suit": "Civil", "case_name_shorts": "Rosenberg" }, { @@ -1153,7 +1065,6 @@ "docket_document_numbers": "32", "docket_numbers": "Civil Action No. 2013-0573", "judges": "Judge Ellen S. Huvelle", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -1166,7 +1077,6 @@ "docket_document_numbers": "34", "docket_numbers": "Civil Action No. 2012-0833", "judges": "Judge Ketanji Brown Jackson", - "nature_of_suit": "Civil", "case_name_shorts": "Jones" }, { @@ -1179,7 +1089,6 @@ "docket_document_numbers": "323", "docket_numbers": "Civil Action No. 2004-1166", "judges": "Judge Richard J. Leon", - "nature_of_suit": "Civil", "case_name_shorts": "Boumediene" }, { @@ -1192,7 +1101,6 @@ "docket_document_numbers": "10", "docket_numbers": "Civil Action No. 2013-0998", "judges": "Judge Ketanji Brown Jackson", - "nature_of_suit": "Civil", "case_name_shorts": "Tefera" }, { @@ -1205,7 +1113,6 @@ "docket_document_numbers": "8", "docket_numbers": "Civil Action No. 2013-1055", "judges": "Judge Ketanji Brown Jackson", - "nature_of_suit": "Civil", "case_name_shorts": "Tefera" }, { @@ -1218,7 +1125,6 @@ "docket_document_numbers": "34", "docket_numbers": "Civil Action No. 2013-1416", "judges": "Judge John D. Bates", - "nature_of_suit": "Civil", "case_name_shorts": "Taylor" }, { @@ -1231,7 +1137,6 @@ "docket_document_numbers": "125", "docket_numbers": "Civil Action No. 2007-1718", "judges": "Judge Paul L. Friedman", - "nature_of_suit": "Civil", "case_name_shorts": "Parr" }, { @@ -1244,7 +1149,6 @@ "docket_document_numbers": "32", "docket_numbers": "Civil Action No. 2013-0395", "judges": "Judge Colleen Kollar-Kotelly", - "nature_of_suit": "Civil", "case_name_shorts": "Jaworski" }, { @@ -1257,7 +1161,6 @@ "docket_document_numbers": "46", "docket_numbers": "Civil Action No. 2013-0350", "judges": "Judge Colleen Kollar-Kotelly", - "nature_of_suit": "Civil", "case_name_shorts": "Jarvis" }, { @@ -1270,7 +1173,6 @@ "docket_document_numbers": "7", "docket_numbers": "Civil Action No. 2014-0162", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Grenadier" }, { @@ -1283,7 +1185,6 @@ "docket_document_numbers": "85", "docket_numbers": "Civil Action No. 2012-0503", "judges": "Judge Robert L. Wilkins", - "nature_of_suit": "Civil", "case_name_shorts": "Deleon" }, { @@ -1296,7 +1197,6 @@ "docket_document_numbers": "4", "docket_numbers": "Civil Action No. 2013-1756", "judges": "Judge John D. Bates", - "nature_of_suit": "Civil", "case_name_shorts": "Brodt" }, { @@ -1309,7 +1209,6 @@ "docket_document_numbers": "66", "docket_numbers": "Civil Action No. 2010-1283", "judges": "Judge Amy Berman Jackson", - "nature_of_suit": "Civil", "case_name_shorts": "A.B." }, { @@ -1322,7 +1221,6 @@ "docket_document_numbers": "65", "docket_numbers": "Civil Action No. 2010-1283", "judges": "Judge Amy Berman Jackson", - "nature_of_suit": "Civil", "case_name_shorts": "A.B." }, { @@ -1335,7 +1233,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0147", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Wright" }, { @@ -1348,7 +1245,6 @@ "docket_document_numbers": "4", "docket_numbers": "Civil Action No. 2014-0134", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Woods" }, { @@ -1361,7 +1257,6 @@ "docket_document_numbers": "4", "docket_numbers": "Civil Action No. 2014-0141", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -1374,7 +1269,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0131", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "" }, { @@ -1387,7 +1281,6 @@ "docket_document_numbers": "1922", "docket_numbers": "Civil Action No. 1993-0452", "judges": "Judge Gladys Kessler", - "nature_of_suit": "Civil", "case_name_shorts": "Salazar" }, { @@ -1400,7 +1293,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0138", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Rowland" }, { @@ -1413,7 +1305,6 @@ "docket_document_numbers": "4", "docket_numbers": "Civil Action No. 2014-0193", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Morton" }, { @@ -1426,7 +1317,6 @@ "docket_document_numbers": "33", "docket_numbers": "Civil Action No. 2013-1418", "judges": "Judge Beryl A. Howell", - "nature_of_suit": "Civil", "case_name_shorts": "McCain" }, { @@ -1439,7 +1329,6 @@ "docket_document_numbers": "4", "docket_numbers": "Civil Action No. 2014-0142", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Jarvis" }, { @@ -1452,7 +1341,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0144", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Hill" }, { @@ -1465,7 +1353,6 @@ "docket_document_numbers": "5", "docket_numbers": "Civil Action No. 2013-1665", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Hames" }, { @@ -1478,7 +1365,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0136", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Glover" }, { @@ -1491,7 +1377,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0145", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Dunlap" }, { @@ -1504,7 +1389,6 @@ "docket_document_numbers": "30", "docket_numbers": "Civil Action No. 2013-1008", "judges": "Judge Paul L. Friedman", - "nature_of_suit": "Civil", "case_name_shorts": "Masucci" }, { @@ -1517,7 +1401,6 @@ "docket_document_numbers": "29", "docket_numbers": "Civil Action No. 2013-1008", "judges": "Judge Paul L. Friedman", - "nature_of_suit": "Civil", "case_name_shorts": "Masucci" }, { @@ -1530,7 +1413,6 @@ "docket_document_numbers": "28", "docket_numbers": "Civil Action No. 2013-1008", "judges": "Judge Paul L. Friedman", - "nature_of_suit": "Civil", "case_name_shorts": "Masucci" }, { @@ -1543,7 +1425,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0140", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Brown" }, { @@ -1556,7 +1437,6 @@ "docket_document_numbers": "2424", "docket_numbers": "Civil Action No. 1997-1629", "judges": "Judge Paul L. Friedman", - "nature_of_suit": "Civil", "case_name_shorts": "Blackman" }, { @@ -1569,7 +1449,6 @@ "docket_document_numbers": "3", "docket_numbers": "Civil Action No. 2014-0135", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Bell-Boston" }, { @@ -1582,7 +1461,6 @@ "docket_document_numbers": "4", "docket_numbers": "Civil Action No. 2014-0137", "judges": "Judge Reggie B. Walton", - "nature_of_suit": "Civil", "case_name_shorts": "Bamdad" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fisc_example.compare.json b/tests/examples/opinions/united_states/fisc_example.compare.json new file mode 100644 index 000000000..9e8faac2a --- /dev/null +++ b/tests/examples/opinions/united_states/fisc_example.compare.json @@ -0,0 +1,12 @@ +[ + { + "case_dates": "2021-07-16", + "case_names": "Supplemental Response to the Court's Order Dated December 17, 2019 and Corrected Opinion and Order Dated March 5, 2020; and Partial Response to the Court's Order Dated April 3, 2020", + "download_urls": "https://www.fisc.uscourts.gov/sites/default/files/FISC%20Misc%2019%2002%20Supplemental%20Response%20Jluly%2016%202021.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "Misc. 19-02", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fisc_example.html b/tests/examples/opinions/united_states/fisc_example.html new file mode 100644 index 000000000..3b7c99f41 --- /dev/null +++ b/tests/examples/opinions/united_states/fisc_example.html @@ -0,0 +1,434 @@ + + + + + +Public Filings - U.S. Foreign Intelligence Surveillance Court | Foreign Intelligence Surveillance Court | United States + + + + Skip to main content +
    +
    +
    + + + + + +
    +
    + + + +
    +
    + + + + +
    + + +

    You are here

    + +

    + Public Filings - U.S. Foreign Intelligence Surveillance Court

    + + +
    +
    +

    Beginning June 2013

    +
    + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Date Filed + Public Filing + Case/Docket Number(s) + File
    + Thu, 01/11/2024 + Misc. 19-02 Letter of January 11, 2024 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of January 11, 2024.pdf
    + Fri, 10/13/2023 + Misc. 19-02 Letter of October 13, 2023 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of October 13, 2023.pdf
    + Thu, 07/13/2023 + Government’s Motion + 16-1182, 17-375, 17-52, 17-679 + PDF icon Redacted June 7, 2023 Motion.pdf
    + Thu, 06/29/2023 + Letter of June 29, 2023 + 16-1182, 17-375, 17-52, 17-679 + PDF icon June 29, 2023 Letter.pdf
    + Fri, 06/16/2023 + Misc. 19-02 Letter of June 16, 2023 + Misc. 19-02 + PDF icon Misc. 19-02 June 16, 2023 Letter with Attachments ver. 2.pdf
    + Wed, 05/17/2023 + Motion for Relief from the Court’s March 5, 2020 Order + Misc. 19-02 + PDF icon Misc. 19-02 May 17, 2023 Motion.pdf
    + Mon, 05/22/2023 + Misc. 19-02 May 22, 2023 Order + Misc. 19-02 + PDF icon Misc. 19-02 May 22, 2023 Order.pdf
    + Fri, 06/09/2023 + Order + 16-1182, 17-375, 17-52, 17-679 + PDF icon Order Respecting Limited Disclosure of Information 06.09.2023.pdf
    + Wed, 03/01/2023 + Misc. 19-02 Letter of March 1, 2023 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of March 1, 2023.pdf
    + Mon, 11/28/2022 + Misc. 19-02 Letter of November 28, 2022 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of November 28, 2022.pdf
    + Thu, 09/29/2022 + Misc. 19-02 Letter of August 29, 2022 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of August 29, 2022.pdf
    + Tue, 05/31/2022 + Misc. 19-02 Letter of May 31, 2022 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of May 31, 2022.pdf
    + Mon, 02/28/2022 + Misc. 19-02 Letter of February 28, 2022 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of February 28, 2022.pdf
    + Mon, 11/29/2021 + Misc. 19-02 Letter Re Accuracy November 2021 + Misc. 19-02 + PDF icon Misc. 19-02 Letter Re Accuracy November 2021.pdf
    + Mon, 08/30/2021 + Misc. 19-02 Letter of August 30, 2021 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of August 30, 2021.pdf
    + Fri, 07/16/2021 + Supplemental Response to the Court’s Order Dated December 17, 2019 and Corrected Opinion and Order Dated March 5, 2020; and Partial Response to the Court’s Order Dated April 3, 2020 + Misc. 19-02 + PDF icon FISC Misc 19 02 Supplemental Response Jluly 16 2021.pdf
    + Tue, 06/01/2021 + June 1, 2021 Letter / Government’s Update + Misc. 19-02 + PDF icon Misc 19 02 Letter of June 1, 2021.pdf
    + Mon, 03/01/2021 + March 1, 2021 Letter / Government’s Update + Misc. 19-02 + PDF icon Misc 19 02 Letter of March 1 2021.pdf
    + Mon, 11/23/2020 + Order Regarding Further Disclosures Of Information + 16-1182, 17-375, 17-52, 17-679 + PDF icon Order Regarding Further Disclosures of Information 201202.pdf
    + Thu, 11/19/2020 + Opinion and Order + FISCR Misc. 20-02 + PDF icon FISCR Misc 20 02 Opinion and Order Nov 19 2020 201119.pdf
    +
    + +

    Pages

    + + + + +
    +
    + + + +
    +
    + +
    +
    + + + + +
    +
    +
    + + diff --git a/tests/examples/opinions/united_states/fiscr_example.compare.json b/tests/examples/opinions/united_states/fiscr_example.compare.json new file mode 100644 index 000000000..36d4b1feb --- /dev/null +++ b/tests/examples/opinions/united_states/fiscr_example.compare.json @@ -0,0 +1,12 @@ +[ + { + "case_dates": "2020-11-19", + "case_names": "Opinion and Order", + "download_urls": "https://www.fisc.uscourts.gov/sites/default/files/FISCR%20Misc%2020%2002%20Opinion%20and%20Order%20Nov%2019%202020%20201119.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "FISCR Misc. 20-02", + "case_name_shorts": "Opinion and Order" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fiscr_example.html b/tests/examples/opinions/united_states/fiscr_example.html new file mode 100644 index 000000000..3b7c99f41 --- /dev/null +++ b/tests/examples/opinions/united_states/fiscr_example.html @@ -0,0 +1,434 @@ + + + + + +Public Filings - U.S. Foreign Intelligence Surveillance Court | Foreign Intelligence Surveillance Court | United States + + + + Skip to main content +
    +
    +
    + + + + + +
    +
    + + + +
    +
    + + + + +
    + + +

    You are here

    + +

    + Public Filings - U.S. Foreign Intelligence Surveillance Court

    + + +
    +
    +

    Beginning June 2013

    +
    + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Date Filed + Public Filing + Case/Docket Number(s) + File
    + Thu, 01/11/2024 + Misc. 19-02 Letter of January 11, 2024 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of January 11, 2024.pdf
    + Fri, 10/13/2023 + Misc. 19-02 Letter of October 13, 2023 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of October 13, 2023.pdf
    + Thu, 07/13/2023 + Government’s Motion + 16-1182, 17-375, 17-52, 17-679 + PDF icon Redacted June 7, 2023 Motion.pdf
    + Thu, 06/29/2023 + Letter of June 29, 2023 + 16-1182, 17-375, 17-52, 17-679 + PDF icon June 29, 2023 Letter.pdf
    + Fri, 06/16/2023 + Misc. 19-02 Letter of June 16, 2023 + Misc. 19-02 + PDF icon Misc. 19-02 June 16, 2023 Letter with Attachments ver. 2.pdf
    + Wed, 05/17/2023 + Motion for Relief from the Court’s March 5, 2020 Order + Misc. 19-02 + PDF icon Misc. 19-02 May 17, 2023 Motion.pdf
    + Mon, 05/22/2023 + Misc. 19-02 May 22, 2023 Order + Misc. 19-02 + PDF icon Misc. 19-02 May 22, 2023 Order.pdf
    + Fri, 06/09/2023 + Order + 16-1182, 17-375, 17-52, 17-679 + PDF icon Order Respecting Limited Disclosure of Information 06.09.2023.pdf
    + Wed, 03/01/2023 + Misc. 19-02 Letter of March 1, 2023 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of March 1, 2023.pdf
    + Mon, 11/28/2022 + Misc. 19-02 Letter of November 28, 2022 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of November 28, 2022.pdf
    + Thu, 09/29/2022 + Misc. 19-02 Letter of August 29, 2022 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of August 29, 2022.pdf
    + Tue, 05/31/2022 + Misc. 19-02 Letter of May 31, 2022 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of May 31, 2022.pdf
    + Mon, 02/28/2022 + Misc. 19-02 Letter of February 28, 2022 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of February 28, 2022.pdf
    + Mon, 11/29/2021 + Misc. 19-02 Letter Re Accuracy November 2021 + Misc. 19-02 + PDF icon Misc. 19-02 Letter Re Accuracy November 2021.pdf
    + Mon, 08/30/2021 + Misc. 19-02 Letter of August 30, 2021 + Misc. 19-02 + PDF icon Misc. 19-02 Letter of August 30, 2021.pdf
    + Fri, 07/16/2021 + Supplemental Response to the Court’s Order Dated December 17, 2019 and Corrected Opinion and Order Dated March 5, 2020; and Partial Response to the Court’s Order Dated April 3, 2020 + Misc. 19-02 + PDF icon FISC Misc 19 02 Supplemental Response Jluly 16 2021.pdf
    + Tue, 06/01/2021 + June 1, 2021 Letter / Government’s Update + Misc. 19-02 + PDF icon Misc 19 02 Letter of June 1, 2021.pdf
    + Mon, 03/01/2021 + March 1, 2021 Letter / Government’s Update + Misc. 19-02 + PDF icon Misc 19 02 Letter of March 1 2021.pdf
    + Mon, 11/23/2020 + Order Regarding Further Disclosures Of Information + 16-1182, 17-375, 17-52, 17-679 + PDF icon Order Regarding Further Disclosures of Information 201202.pdf
    + Thu, 11/19/2020 + Opinion and Order + FISCR Misc. 20-02 + PDF icon FISCR Misc 20 02 Opinion and Order Nov 19 2020 201119.pdf
    +
    + +

    Pages

    + + + + +
    +
    + + + +
    +
    + +
    +
    + + + + +
    +
    +
    + + diff --git a/tests/examples/opinions/united_states/fla_example.compare.json b/tests/examples/opinions/united_states/fla_example.compare.json index b420c092f..774b18c58 100644 --- a/tests/examples/opinions/united_states/fla_example.compare.json +++ b/tests/examples/opinions/united_states/fla_example.compare.json @@ -321,7 +321,7 @@ }, { "case_dates": "2018-12-20", - "case_names": "State of Florida v. Gerald Delane Murray Gerald Delane Murray v. Julie L. Jones, etc. and Gerald Delane Murray v. State of Florida", + "case_names": "State of Florida v. Gerald Delane Murray; Gerald Delane Murray v. Julie L. Jones, etc.; and Gerald Delane Murray v. State of Florida", "download_urls": "/content/download/425242/4583114/file/sc17-707.pdf", "precedential_statuses": "Published", "blocked_statuses": false, diff --git a/tests/examples/opinions/united_states/fladistctapp_1_example.compare.json b/tests/examples/opinions/united_states/fladistctapp_1_example.compare.json new file mode 100644 index 000000000..834a58e5e --- /dev/null +++ b/tests/examples/opinions/united_states/fladistctapp_1_example.compare.json @@ -0,0 +1,74 @@ +[ + { + "case_dates": "2023-11-01", + "case_names": "Tidewater Beach Resort Community Association, Inc. v. Tidewater Beach, L.L.C., TW Beach Services, L.L.C.", + "download_urls": "https://1dca.flcourts.gov/pre_opinion_content_download/941918", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Dismissed", + "docket_numbers": "1D2023-2144", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2023-11-01", + "case_names": "Smith v. State of Florida", + "download_urls": "https://1dca.flcourts.gov/pre_opinion_content_download/922770", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Dismissed", + "docket_numbers": "1D2023-2014", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2023-11-01", + "case_names": "Satlow v. Paypal Holdings Inc., Ebay, Inc.", + "download_urls": "https://1dca.flcourts.gov/pre_opinion_content_download/922774", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Dismissed", + "docket_numbers": "1D2023-2093", + "case_name_shorts": "Satlow", + "per_curiam": true + }, + { + "case_dates": "2023-11-01", + "case_names": "Paradigm Restaurant Group, LLC, Paradigm Investment Group, LLC v. Oakmonte Shopping Center, LLC", + "download_urls": "https://1dca.flcourts.gov/pre_opinion_content_download/941919", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Dismissed", + "docket_numbers": "1D2023-2239", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2023-11-01", + "case_names": "Hunter v. State of Florida", + "download_urls": "https://1dca.flcourts.gov/pre_opinion_content_download/922786", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Dismissed", + "docket_numbers": "1D2023-2100", + "case_name_shorts": "Hunter", + "per_curiam": true + }, + { + "case_dates": "2023-11-01", + "case_names": "Bacon v. State of Florida", + "download_urls": "https://1dca.flcourts.gov/pre_opinion_content_download/941920", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Dismissed", + "docket_numbers": "1D2023-2277", + "case_name_shorts": "Bacon", + "per_curiam": true + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_1_example.html b/tests/examples/opinions/united_states/fladistctapp_1_example.html new file mode 100644 index 000000000..da6b5f538 --- /dev/null +++ b/tests/examples/opinions/united_states/fladistctapp_1_example.html @@ -0,0 +1,2052 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +First District Court of Appeal + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + +
    + + +
    +
    +
    +
    + + + + +
    +
    +
    + +

    + Search First District Court of Appeal +

    + + +
    + + + + +
    + + +
    + +
    +
    +
    + + + + +
    +

    Enter Search Terms

    +
    +
    + + +
    +
    + +
    + +
    + + Scope of search (select all that apply): + +
    +
      + +
    • +
      + +
    • + +
    • +
      + +
    • + +
    • +
      + +
    • + +
    • +
      + +
    • + +
    • +
      + +
    • + +
    • +
      + +
    • + +
    • +
      + +
    • +
    • +
      + +
    • +
    + +
    +
    +
    + +
    + +
    +
    +
    + + +
    +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + +
    + +
    + +
    + +
    + Search options: + +
    + +
    +
    + Opinion Type: +
    +
    +
      + +
    • + +
    • + +
    • + +
    • +
    +
    +
    + +
    +
    + Release Range: +
    +
    +
    + +
    +
    + +
    +
    +
    + +
    +
    + Release Date: +
    +
    + + + +
    + +
    + +
    +
    + + + + + +
    +
    + +
    +
    +
    +
    + +
    +
    +
    +
    + + + +
    +
    +
    +
    + +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + File + + Type + + + + Case No. + + + + Case Name + + + + Disposition + + + + Note + + Release Date + + +
    + + PDF Download of 2023-2014 + + + + + Written + + 2023-2014 + + Smith v. State of Florida + + Petition - Per Curiam Opinion + + Dismissed + + 11/01/23 +
    + + PDF Download of 2023-2093 + + + + + Written + + 2023-2093 + + Satlow v. Paypal Holdings Inc., Ebay, Inc. + + Appeal - Per Curiam Opinion + + Dismissed + + 11/01/23 +
    + + PDF Download of 2023-2100 + + + + + Written + + 2023-2100 + + Hunter v. State of Florida + + Petition - Per Curiam Opinion + + Dismissed + + 11/01/23 +
    + + PDF Download of 2023-2144 + + + + + Written + + 2023-2144 + + Tidewater Beach Resort Community Association, Inc. v. Tidewater Beach, L.L.C., TW Beach Services, L.L.C., et al + + Petition - Per Curiam Opinion + + Dismissed + + 11/01/23 +
    + + PDF Download of 2023-2239 + + + + + Written + + 2023-2239 + + Paradigm Restaurant Group, LLC, Paradigm Investment Group, LLC, et al v. Oakmonte Shopping Center, LLC + + Petition - Per Curiam Opinion + + Dismissed + + 11/01/23 +
    + + PDF Download of 2023-2277 + + + + + Written + + 2023-2277 + + Bacon v. State of Florida + + Petition - Per Curiam Opinion + + Dismissed + + 11/01/23 +
    + +
    + +
    + + + Export all + 1DCA + Opinions + + + + +
    +
    +
    + +
    +
    +
    + +
    + + + +
    +
    + +
    +
    +
    + + + + + +
    + + + +

    + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_1_per_curiam_example.compare.json b/tests/examples/opinions/united_states/fladistctapp_1_per_curiam_example.compare.json deleted file mode 100644 index 4bbfdd98e..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_1_per_curiam_example.compare.json +++ /dev/null @@ -1,2554 +0,0 @@ -[ - { - "case_dates": "2014-07-24", - "case_names": "Weston Jackson v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2940/142940_DC02_07242014_113751_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2940", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Vandin Calitu and Adriana Proteasa-Calitu v. Chase Home Finance LLC", - "download_urls": "https://edca.1dca.org/DCADocs/2013/0024/130024_DC05_07242014_112814_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-0024", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Ulisban Shawn Bryant v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/2981/132981_DC05_07242014_112946_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-2981", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Timothy R. Williams v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2012/3767/123767_DC05_07242014_112708_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "12-3767", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Ryan Alan Welch v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/1845/131845_DC05_07242014_112854_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-1845", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Randy Spencer v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1301/141301_DA08_07242014_113434_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-1301", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Ramon Del Orbe v. Reemployment Assistance Appeals Commission", - "download_urls": "https://edca.1dca.org/DCADocs/2013/6063/136063_DC05_07242014_113152_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-6063", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Ramon Castro v. City of Fort Pierce and Florida, etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5789/135789_DC05_07242014_113125_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5789", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Malachi Smith v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2871/142871_DC02_07242014_113542_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2871", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Harens Aleydi Erazo v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2934/142934_DC02_07242014_113714_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2934", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Gregory L. Taylor v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3504/133504_DC05_07242014_113023_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3504", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Florida Wildlife Federation, Inc. v. Department of Environmental Protection", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2927/142927_DA08_07242014_113621_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2927", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Erica Nicole Thomas v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0819/140819_DC02_07242014_113329_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-0819", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Danny O. Davis v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1184/141184_DC02_07242014_113401_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-1184", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Collins V. Powers v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/6206/136206_DC02_07242014_113229_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-6206", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Christopher Sanders v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0399/140399_DC05_07242014_113259_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0399", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "Charles C. Sanmann v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2716/142716_DC02_07242014_113510_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2716", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "Willie C. Ford, Jr. v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1485/141485_DC05_07232014_111707_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1485", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "William E. Fisher, Jr. v. John W. Allen and Roxie Allen", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3595/133595_DC05_07232014_111035_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3595", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "Vernon Stewart Polk v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5041/135041_DC05_07232014_111455_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5041", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "Mark Anthony Holland v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2126/142126_DC05_07232014_111833_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-2126", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "Lawrence Baker v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1766/141766_DC05_07232014_111802_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1766", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "Julius S. Davis v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1149/141149_DC05_07232014_111641_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1149", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "Joseph Miller v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4504/134504_DC05_07232014_111145_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4504", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "James Garrison v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1597/141597_DC05_07232014_111733_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1597", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "Henry Lee Roberson, Jr. v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/1530/131530_DC05_07232014_110832_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-1530", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "Dwayne Sercey v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0593/140593_DC05_07232014_111608_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0593", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "Christopher G. Walker v. Michael D. Crews, Sec., Florida Dept., etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5864/135864_DC02_07232014_111538_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-5864", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "Christian H. F. Riley, Former Husband v. Sara B. Riley, n/k/a Sara B. Dipaolo, Former Wife", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4004/134004_DC05_07232014_111003_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4004", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "Christian H. F. Riley, Former Husband v. Sara B. Riley, n/k/a Sara B. Dipaolo etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/2386/132386_DC05_07232014_110935_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-2386", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "Brendan Behan Horan v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/1286/131286_DC05_07232014_110603_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-1286", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-23", - "case_names": "Bernard C. McGee v. Michael D. Crews, Sec., Florida Dept., etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4688/134688_DC05_07232014_111427_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4688", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-22", - "case_names": "Tyrone D. Blackshear v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2012/3121/123121_DC05_07222014_022529_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "12-3121", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-22", - "case_names": "SHAWN TREVOR BURBANK v. Diana Lynn Hopkins", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4396/134396_DC05_07222014_022704_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4396", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-22", - "case_names": "Phillip W. Moore v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/2596/132596_DC05_07222014_022615_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-2596", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-22", - "case_names": "Daniel Marion v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1048/141048_DC05_07222014_022830_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1048", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "Travis Walker v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/6237/136237_DC05_07212014_110837_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-6237", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "Samuel Edward Stephens, II v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3693/133693_DC05_07212014_110342_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3693", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "Samantha Willsey v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0834/140834_DC05_07212014_111002_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0834", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "Raymond E. Jones v. Department of Corrections", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0766/140766_DC05_07212014_110918_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0766", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "Ray James v. Fla. Dept. of Corrections", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1058/141058_DA08_07212014_023617_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-1058", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "Michael Welch v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4235/134235_DC05_07212014_110429_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4235", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "Dewey Kessler v. Stage Call, Inc. And Travelers etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5445/135445_DC05_07212014_110748_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5445", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "Anthony Cortes Dees v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3569/133569_DC05_07212014_110259_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3569", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "Adria L. Williams, Former Wife v. David E. Radford, Former Husband", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4873/134873_DC05_07212014_110518_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4873", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-18", - "case_names": "Zachery Keith Turner v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0698/140698_1281_07182014_101757_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-0698", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-18", - "case_names": "Theophus Davison v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1602/141602_DC05_07182014_101321_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1602", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-18", - "case_names": "Rick D. Ripple v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1056/141056_DC05_07182014_101137_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1056", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-18", - "case_names": "Progressive Employer Management Co. v. Ronald Dulac", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0094/140094_DC05_07182014_100855_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0094", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-18", - "case_names": "Joseph Wiley v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1654/141654_DC05_07182014_101352_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1654", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-18", - "case_names": "Jessie Lee Davis, II v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1499/141499_DC05_07182014_101244_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1499", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-18", - "case_names": "Jason Johnson v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1283/141283_DC05_07182014_101213_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1283", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-18", - "case_names": "Erick Lorray Armstrong v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1685/141685_DC05_07182014_101424_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1685", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-18", - "case_names": "Edward Walker v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/6150/136150_DC05_07182014_100818_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-6150", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-18", - "case_names": "Donnie Demont Phillips v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0599/140599_DC05_07182014_100932_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0599", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-18", - "case_names": "Carol Cunningham v. Reemployment Assistance Appeals Commission", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0950/140950_DC05_07182014_101103_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0950", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "William H. Carr, Jr., Husband v. Lynne O'Shall Carr, Wife", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5266/135266_DC05_07172014_122222_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5266", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Stephen Lewis Furney, III v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/6069/136069_DC05_07172014_122323_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-6069", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Southern Baptist Hospital of Florida, Inc., etc. v. Diane L. Smith, as Personal etc", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4960/134960_DA08_07172014_122149_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "13-4960", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Shannon Abbott v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/2153/132153_DC05_07172014_121931_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-2153", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Sentry Insurance Company and CGI Technologies etc. v. Karen Sykora", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0056/140056_DC05_07172014_122451_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0056", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Sean Fullwood v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/1366/131366_DC05_07172014_121831_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-1366", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Rodney McCutcheon v. Michael D. Crews, Sec., Department of Corrections", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5781/135781_DC02_07172014_122252_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-5781", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Michael E. Goggins v. Department of Corrections", - "download_urls": "https://edca.1dca.org/DCADocs/2013/6113/136113_DC02_07172014_122352_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-6113", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Lapolean Johnny Owens v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/2057/132057_DC05_07172014_121902_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-2057", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Kennedy Wright v. Department of Corrections", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2422/142422_DA08_07172014_122839_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2422", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Keith Young v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1010/141010_DC05_07172014_122616_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1010", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Joseph E. Kenney v. Department of Highway Safety etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1127/141127_DC02_07172014_122648_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-1127", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Johnny C Jones v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/2507/132507_DC05_07172014_122001_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-2507", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Jason D. Kirk v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4806/134806_DC05_07172014_122104_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4806", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Eric Engreen Green v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4583/134583_DC05_07172014_122032_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4583", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Donald S. Verne v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1713/141713_DC05_07172014_122718_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1713", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Benjamin A. Totten, Former Husband v. Christine M. Totten, Former Wife", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0126/140126_DC05_07172014_122523_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0126", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-17", - "case_names": "Auto Truck and Industrial Parts and Supply, etc. v. June B. Miller", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2141/142141_DA08_07172014_122752_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2141", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Zeng Jean-Jacques v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0710/140710_DC02_07162014_121836_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-0710", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Willie James Hunter v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2943/142943_DC02_07162014_122504_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2943", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Victor Parker v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5448/135448_DC05_07162014_121315_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5448", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Victor Jerome Bell v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/1599/131599_DC05_07162014_121001_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-1599", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "United Parcel Service and Liberty Mutual Ins. Co. v. Steve Aladics", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0827/140827_DC05_07162014_121907_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0827", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Tracey Dewrell v. Tom Dewrell, Individually and as the etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0611/140611_DC05_07162014_121650_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0611", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Tracey Dewrell v. Tom Dewrell, Individually and as the etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4914/134914_DC05_07162014_121719_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4914", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Thomas Guessford v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/6122/136122_DC02_07162014_121501_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-6122", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Steven J. Casker v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0850/140850_DC02_07162014_121934_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-0850", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Stephen A. Scott, P.A. and Stephen A. Scott v. City of Gainesville, Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3863/133863_DC05_07162014_121244_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3863", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Shervin Singleton v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/1323/131323_DC05_07162014_120849_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-1323", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Sawand Palmer v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0448/140448_DC02_07162014_121617_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-0448", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Ronald Nelson Brown v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2937/142937_DC02_07162014_122428_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2937", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Roger F. Homminga v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/1866/131866_DC02_07162014_121039_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-1866", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Rodney Newcomb v. Wal-Mart, and Sedgwick", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0641/140641_DC05_07162014_121750_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0641", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Randolph Jackson v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1909/141909_DC05_07162014_122221_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1909", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Omer D. Stokes v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1536/141536_DC05_07162014_122151_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1536", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Octavious Johnson v. Keefe Commissary Network, Florida Dept. of Corr.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5660/135660_DC05_07162014_121347_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5660", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Muhammad Morris v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3850/133850_DC05_07162014_121215_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3850", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Michael Brown v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/0406/130406_DC05_07162014_120806_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-0406", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Mauricio Kyler v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1417/141417_DC05_07162014_122120_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1417", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Lorenzo Howard v. Michael D. Crews, Secretary, etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2358/142358_DC02_07162014_122257_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2358", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Lonnie Fritts v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1240/141240_DC05_07162014_122044_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1240", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Larry Darnell Blocker v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3479/133479_DC05_07162014_121110_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3479", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Karren Trappio Plaines v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3751/133751_DC05_07162014_121142_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3751", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Joseph C. Thompson v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5910/135910_DC02_07162014_121418_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-5910", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "James McMillan v. Herbert Fischer and Betty Fischer", - "download_urls": "https://edca.1dca.org/DCADocs/2013/1481/131481_DC05_07162014_120929_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-1481", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Exterior Walls, Inc. v. Construction Materials, Inc", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1414/141414_DC02_07162014_122613_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-1414", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Deonta Shabaz Mills v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0240/140240_DC05_07162014_121537_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0240", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Charles Francis v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2552/142552_DC02_07162014_122353_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2552", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Arianne Myles v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0852/140852_DC05_07162014_122013_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0852", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "William T. Morrison, Jr. v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1572/141572_DC05_07142014_112247_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1572", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Samantha Grover v. Bradford County Sheriff's Office", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5240/135240_DC05_07142014_111824_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5240", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Renardo Antione Smith v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/2532/132532_DC05_07142014_111710_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-2532", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Michael Edward Johnson v. Secretary, Department of Corr.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5624/135624_DC02_07142014_111858_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-5624", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Lawrence Lee Jones v. Florida Department of Corrections", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0861/140861_DC02_07142014_111926_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-0861", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Jermaine T. Holmes v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1533/141533_DC05_07142014_112205_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1533", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Jason Wayne Springer v. Florida Department of Corrections", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5222/135222_DC02_07142014_111756_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-5222", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Ernest Bellamy v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1189/141189_DC05_07142014_112032_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1189", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Eddie L. Ash v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1268/141268_DC05_07142014_112107_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1268", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Chanterria Roberts v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1362/141362_DC05_07142014_112133_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1362", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Bill Harley Slaughter v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1829/141829_DC05_07142014_112354_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1829", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Bill Harley Slaughter v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1803/141803_DC05_07142014_112324_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1803", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Arron J. Grimes v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1012/141012_DC05_07142014_111956_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1012", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-11", - "case_names": "Tony Dupree, etc. v. Florida Department of Corrections", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5693/135693_DC02_07112014_094850_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-5693", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-11", - "case_names": "Tommy Green, Sr. v. Michael D. Crews, Secretary, etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0810/140810_DC05_07112014_094926_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0810", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-11", - "case_names": "Terra Mar Property Management, LLC v. The Bank of New York Mellon etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5044/135044_DC05_07112014_094718_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5044", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-11", - "case_names": "Marianne Armstrong v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5532/135532_DC05_07112014_094822_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5532", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-11", - "case_names": "Kenneth Bennett, Jr. v. Florida Transportation Engineering", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4863/134863_DC05_07112014_094649_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4863", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-11", - "case_names": "Florida Transportation Engineering v. Kenneth Bennett, Jr.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4474/134474_DC05_07112014_094615_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4474", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-11", - "case_names": "Edwin D. Morris v. Dept. of Corrections", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5364/135364_DC02_07112014_094748_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-5364", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-10", - "case_names": "Vernterio Tremell Jenkins v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5431/135431_DC05_07102014_121502_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5431", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-10", - "case_names": "Lavon Tony Butler v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2012/5923/125923_DC05_07102014_121219_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "12-5923", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-10", - "case_names": "Larry Lee Miller v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/1472/131472_DC05_07102014_121259_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-1472", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-10", - "case_names": "Jose Luis Del Toro v. Michael D. Crews, Secretary, etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5176/135176_DC05_07102014_121426_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5176", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-10", - "case_names": "Clentis E. Lucuss v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1982/141982_DC05_07102014_121609_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1982", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-10", - "case_names": "Brandon James Wheeler Wilder v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/2359/132359_DC05_07102014_121345_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-2359", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-10", - "case_names": "Anthony Holmes v. Comanco Environmental Corp.", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0043/140043_1284_07142014_105342_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0043", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-09", - "case_names": "Willie Owens v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1315/141315_DC05_07092014_101503_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1315", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-09", - "case_names": "Thomas Kahlow v. Florida Parole Commission", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2340/142340_DA08_07092014_101547_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2340", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-09", - "case_names": "Otix Blaxton v. Florida Department of Corrections", - "download_urls": "https://edca.1dca.org/DCADocs/2013/6037/136037_DC02_07092014_101402_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-6037", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-09", - "case_names": "Michael Reid v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3831/133831_DC05_07092014_101243_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3831", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-09", - "case_names": "Lucious Jackson v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2790/142790_DC02_07092014_101855_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2790", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-09", - "case_names": "Johnny Welch v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2406/142406_DC02_07092014_101626_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2406", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-09", - "case_names": "James Richard Bain v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2883/142883_DC02_07092014_101933_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2883", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-09", - "case_names": "Ioannis Papadopoulos v. Reemployment Assistance Appeals Commission", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2589/142589_DA08_07092014_101820_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2589", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-09", - "case_names": "Darrell Shanta Jenkins v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4339/134339_DC05_07092014_101329_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4339", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-09", - "case_names": "Barrington E. Morais v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2549/142549_DC02_07092014_101730_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2549", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-09", - "case_names": "Anthony Graham v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2443/142443_DC02_07092014_101701_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2443", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-09", - "case_names": "Aaron S. Burns v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0923/140923_DC02_07092014_101433_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-0923", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-08", - "case_names": "William H. Bell v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1510/141510_DC05_07082014_115555_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1510", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-08", - "case_names": "Roddy Kelley v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2079/142079_DC05_07082014_115656_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-2079", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-08", - "case_names": "Robert D. Kennedy v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/2835/132835_DC05_07082014_115157_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-2835", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-08", - "case_names": "Randall Lee Mays v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0989/140989_DC05_07082014_115504_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0989", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-08", - "case_names": "Dawn Cheree Brooks v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0575/140575_DC05_07082014_115432_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0575", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-08", - "case_names": "Bernard Owens v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1514/141514_DC05_07082014_115621_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1514", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-08", - "case_names": "Alfonso Dewayne Griffin v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4985/134985_DC05_07082014_115354_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4985", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-08", - "case_names": "Alfonso Dewayne Griffin v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4130/134130_DC05_07082014_115239_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4130", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Shawn Wuertley v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2012/2649/122649_DC05_07072014_023309_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "12-2649", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Reginald Chatman v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1757/141757_DC05_07072014_024130_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1757", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Nicole Renee Henderson v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/2836/132836_DC05_07072014_023351_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-2836", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Lawton Calvin Adkins v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4391/134391_DC05_07072014_023503_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4391", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Labor Ready Southeast, Inc. v. Foutch Dewane Pittman", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0249/140249_DC05_07072014_023828_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0249", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Jeremiah Taylor v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3555/133555_DC05_07072014_023426_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3555", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Janard Wright v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1214/141214_DC05_07072014_023929_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1214", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Eric Von Easter v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1471/141471_DC05_07072014_023955_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1471", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Dequian Demorral Watson v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4582/134582_DC05_07072014_023607_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4582", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Danny O. Davis v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1528/141528_DC05_07072014_024021_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1528", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Christopher Jonas v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3505/133505_DC05_07072014_023406_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3505", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Christine C. Whitney v. Wells Fargo Bank, N.A.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4967/134967_DC05_07072014_023655_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4967", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Cabana Beach Club, LLC's v. Key Bank National Association, etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5437/135437_DC05_07072014_023728_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5437", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Bobbie Laster v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1530/141530_DC05_07072014_024043_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1530", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Antwann Johnson v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1050/141050_DC05_07072014_023900_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1050", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Antonio Turner v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2122/142122_DC05_07072014_024157_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-2122", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Antonio Emmanuel Moorer v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4056/134056_DC05_07072014_023443_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4056", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Anthony Young v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1591/141591_DC05_07072014_024104_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1591", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Anthony Jerome Fields v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4575/134575_DC05_07072014_023546_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4575", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Vernon Jones v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1532/141532_DC05_07032014_113317_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1532", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Travis McKinney v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1366/141366_DC05_07032014_113016_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1366", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Stacy Lasondo Jackson v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0978/140978_DC05_07032014_112604_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0978", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Ronald E. Downs, Jr. v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5016/135016_DC02_07032014_112046_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-5016", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Robert Lowery v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2034/142034_DC05_07032014_113812_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-2034", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Richard Michael Novak v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0604/140604_DC05_07032014_112219_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0604", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Richard Howard Ramsey v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1728/141728_DC05_07032014_113511_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1728", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Ralph Ross v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2202/142202_DC02_07032014_113916_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2202", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "N'Kosi Lerone Jones v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/1123/131123_DC05_07032014_111610_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-1123", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Michael Z. Rivera v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2159/142159_DC05_07032014_113849_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-2159", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Michael Leslie Carson v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0794/140794_DC05_07032014_112458_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0794", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Melvin T. Dixon v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1651/141651_DC05_07032014_113415_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1651", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Marzuq Al-Hakim v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2423/142423_DC02_07032014_114046_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2423", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Marcus Demetrius Bullock v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4707/134707_DC05_07032014_112015_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4707", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Kenneth Bacon v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1203/141203_DC05_07032014_112746_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1203", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Keith Eric Lancaster v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1298/141298_DC05_07032014_112921_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1298", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Keidrick L. Ewing v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1191/141191_DC05_07032014_112713_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1191", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Justin Wayne Wood v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1097/141097_DC05_07032014_112639_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1097", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Juan E. Gonzales v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1557/141557_DC05_07032014_113345_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1557", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Joseph Benjamin Calloway v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1329/141329_DC05_07032014_112947_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1329", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "John P. McGahen v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0743/140743_DC05_07032014_112348_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0743", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "John O. Williams v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1454/141454_DC05_07032014_113212_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1454", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "John H. Cirota v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2560/142560_DC02_07032014_114124_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2560", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Jerry Lee Nichols v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2785/142785_DA08_07032014_114224_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2785", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Ian Nigel Nabbs v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1531/141531_DC02_07032014_113249_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-1531", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Derrick Antonio Brown v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3468/133468_DC05_07032014_111904_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3468", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Dequian Demorral Watson v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4363/134363_DC05_07032014_111943_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4363", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Curtis V. Emanuel v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/6213/136213_DC05_07032014_112152_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-6213", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Curtis Robinson v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0650/140650_DC02_07032014_112253_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-0650", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Comer Brascom v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1798/141798_DC05_07032014_113539_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1798", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Clinton E. Lewis v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1799/141799_DC05_07032014_113637_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1799", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Causseaux, Hewett & Walpole, Inc. etc. v. Hopewell, LLC", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2328/142328_DC02_07032014_114014_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2328", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Carly Brubaker v. Northeast Florida State Hospital", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1266/141266_DC05_07032014_112851_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1266", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Calimino Woods, Jr. v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1442/141442_DC05_07032014_113118_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1442", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Brian Gallon v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1956/141956_DC05_07032014_113739_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1956", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Brian Brown v. Jerry Pybus Electric and North American etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0726/140726_DC05_07032014_112320_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0726", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Billy Comer v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1670/141670_DC05_07032014_113444_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1670", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Bill Harley Slaughter v. Michael D. Crews, Secretary, etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2709/142709_DC02_07032014_114153_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2709", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Bennett K. Tressler, Jr. v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0944/140944_DC05_07032014_112536_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0944", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Antoni Lashawn Knight v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1208/141208_DC05_07032014_112817_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1208", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Andrae Hicks v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3102/133102_DC05_07032014_111827_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3102", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Alonzie Wiggins v. Fla. Dept. of Corrections", - "download_urls": "https://edca.1dca.org/DCADocs/2013/6114/136114_DC02_07032014_112116_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-6114", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Allen Lee Williams v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1423/141423_DC05_07032014_113046_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1423", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Willie George Byrd v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5017/135017_DC05_07022014_105248_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5017", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Sterling Robert Owens v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2371/142371_DC05_07022014_110313_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-2371", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Sherman A. Combs v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1966/141966_DC05_07022014_110124_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1966", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Samuel Staten v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5650/135650_DC05_07022014_105453_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5650", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Royce Mincey v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3550/133550_DC05_07022014_105220_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3550", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Ronnie Woods v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1299/141299_DC05_07022014_105810_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1299", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Rockwell Jones v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1437/141437_DC05_07022014_105840_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1437", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Ricky Sutton v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1068/141068_DC05_07022014_105714_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1068", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Meldon Rich v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2170/142170_DC05_07022014_110243_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-2170", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Maribeth S. Gaffney v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5634/135634_DC05_07022014_105423_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5634", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Leon D. Smith v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1123/141123_DC05_07022014_105741_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1123", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Kendrish W. Lissade v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0164/140164_DC05_07022014_105559_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0164", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Johnny L. Brown v. Florida Parole Commission", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5426/135426_DC02_07022014_105319_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "13-5426", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "John Holland v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0134/140134_DC05_07022014_105522_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0134", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Jeffrey E. Hobson v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1646/141646_DC05_07022014_105939_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1646", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Demond Williams v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5629/135629_DC05_07022014_105352_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5629", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Arthur C. Grace v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1565/141565_DC05_07022014_105910_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1565", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Andre Lanier Cook v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/2988/132988_DC05_07022014_105122_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-2988", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_1_per_curiam_example.html b/tests/examples/opinions/united_states/fladistctapp_1_per_curiam_example.html deleted file mode 100644 index 303316ee0..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_1_per_curiam_example.html +++ /dev/null @@ -1,3461 +0,0 @@ - - - - - - - - - - -
    -
    - - - - -
    - - - - -
    - - - -
    - -
    - - - - - - - -
    - Opinion Type: - - - Release Month: - - - Release Day: - - - -
    - -
    - - - - -
    - All Per Curiam for July 2014 -   - -
    - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Case No.ViewCase StyleNoteDispositionDisposition Date
    - 12-2649 - - - - Shawn Wuertley vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 12-3121 - - - - Tyrone D. Blackshear vs State of Florida - - - - Affirmed - - 07/22/2014 -
    - 12-3767 - - - - Timothy R. Williams vs State of Florida - - - - Affirmed - - 07/24/2014 -
    - 12-5923 - - - - Lavon Tony Butler vs State of Florida - - - - Affirmed - - 07/10/2014 -
    - 13-0024 - - - - Vandin Calitu and Adriana Proteasa-Calitu vs Chase Home Finance LLC - - - - Affirmed - - 07/24/2014 -
    - 13-0406 - - - - Michael Brown vs State of Florida - - - - Affirmed - - 07/16/2014 -
    - 13-1123 - - - - N'Kosi Lerone Jones vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 13-1286 - - - - Brendan Behan Horan vs State of Florida - - - - Affirmed - - 07/23/2014 -
    - 13-1323 - - - - Shervin Singleton vs State of Florida - - - - Affirmed - - 07/16/2014 -
    - 13-1366 - - - - Sean Fullwood vs State of Florida - - - - Affirmed - - 07/17/2014 -
    - 13-1472 - - - - Larry Lee Miller vs State of Florida - - - - Affirmed - - 07/10/2014 -
    - 13-1481 - - - - James McMillan, et al. vs Herbert Fischer and Betty Fischer - - - - Affirmed - - 07/16/2014 -
    - 13-1530 - - - - Henry Lee Roberson, Jr. vs State of Florida - - - - Affirmed - - 07/23/2014 -
    - 13-1599 - - - - Victor Jerome Bell vs State of Florida - - - - Affirmed - - 07/16/2014 -
    - 13-1845 - - - - Ryan Alan Welch vs State of Florida - - - - Affirmed - - 07/24/2014 -
    - 13-1866 - - - - Roger F. Homminga vs State of Florida - - - - Denied - - 07/16/2014 -
    - 13-2057 - - - - Lapolean Johnny Owens vs State of Florida - - - - Affirmed - - 07/17/2014 -
    - 13-2153 - - - - Shannon Abbott vs State of Florida - - - - Affirmed - - 07/17/2014 -
    - 13-2359 - - - - Brandon James Wheeler Wilder vs State of Florida - - - - Affirmed - - 07/10/2014 -
    - 13-2386 - - - - Christian H. F. Riley, Former Husband vs Sara B. Riley, n/k/a Sara B. Dipaolo etc. - - - - Affirmed - - 07/23/2014 -
    - 13-2507 - - - - Johnny C Jones vs State of Florida - - - - Affirmed - - 07/17/2014 -
    - 13-2532 - - - - Renardo Antione Smith vs State of Florida - - - - Affirmed - - 07/14/2014 -
    - 13-2596 - - - - Phillip W. Moore vs State of Florida - - - - Affirmed - - 07/22/2014 -
    - 13-2835 - - - - Robert D. Kennedy vs State of Florida - - - - Affirmed - - 07/08/2014 -
    - 13-2836 - - - - Nicole Renee Henderson vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 13-2981 - - - - Ulisban Shawn Bryant vs State of Florida - - - - Affirmed - - 07/24/2014 -
    - 13-2988 - - - - Andre Lanier Cook vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 13-3102 - - - - Andrae Hicks vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 13-3468 - - - - Derrick Antonio Brown vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 13-3479 - - - - Larry Darnell Blocker vs State of Florida - - - - Affirmed - - 07/16/2014 -
    - 13-3504 - - - - Gregory L. Taylor vs State of Florida - - - - Affirmed - - 07/24/2014 -
    - 13-3505 - - - - Christopher Jonas vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 13-3550 - - - - Royce Mincey vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 13-3555 - - - - Jeremiah Taylor vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 13-3569 - - - - Anthony Cortes Dees vs State of Florida - - - - Affirmed - - 07/21/2014 -
    - 13-3595 - - - - William E. Fisher, Jr. vs John W. Allen and Roxie Allen - - - - Affirmed - - 07/23/2014 -
    - 13-3693 - - - - Samuel Edward Stephens, II vs State of Florida - - - - Affirmed - - 07/21/2014 -
    - 13-3751 - - - - Karren Trappio Plaines vs State of Florida - - - - Affirmed - - 07/16/2014 -
    - 13-3831 - - - - Michael Reid vs State of Florida - - - - Affirmed - - 07/09/2014 -
    - 13-3850 - - - - Muhammad Morris vs State of Florida - - - - Affirmed - - 07/16/2014 -
    - 13-3863 - - - - Stephen A. Scott, P.A. and Stephen A. Scott vs City of Gainesville, Florida - - - - Affirmed - - 07/16/2014 -
    - 13-4004 - - - - Christian H. F. Riley, Former Husband vs Sara B. Riley, n/k/a Sara B. Dipaolo, Former Wife - - - - Affirmed - - 07/23/2014 -
    - 13-4056 - - - - Antonio Emmanuel Moorer vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 13-4130 - - - - Alfonso Dewayne Griffin vs State of Florida - - - - Affirmed - - 07/08/2014 -
    - 13-4235 - - - - Michael Welch vs State of Florida - - - - Affirmed - - 07/21/2014 -
    - 13-4339 - - - - Darrell Shanta Jenkins vs State of Florida - - - - Affirmed - - 07/09/2014 -
    - 13-4363 - - - - Dequian Demorral Watson vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 13-4391 - - - - Lawton Calvin Adkins vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 13-4396 - - - - SHAWN TREVOR BURBANK vs Diana Lynn Hopkins - - - - Affirmed - - 07/22/2014 -
    - 13-4474 - - - - Florida Transportation Engineering, et al. vs Kenneth Bennett, Jr. - - - - Affirmed - - 07/11/2014 -
    - 13-4504 - - - - Joseph Miller vs State of Florida - - - - Affirmed - - 07/23/2014 -
    - 13-4575 - - - - Anthony Jerome Fields vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 13-4582 - - - - Dequian Demorral Watson vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 13-4583 - - - - Eric Engreen Green vs State of Florida - - - - Affirmed - - 07/17/2014 -
    - 13-4688 - - - - Bernard C. McGee vs Michael D. Crews, Sec., Florida Dept., etc. - - - - Affirmed - - 07/23/2014 -
    - 13-4707 - - - - Marcus Demetrius Bullock vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 13-4806 - - - - Jason D. Kirk vs State of Florida - - - - Affirmed - - 07/17/2014 -
    - 13-4863 - - - - Kenneth Bennett, Jr. vs Florida Transportation Engineering, et al. - - - - Affirmed - - 07/11/2014 -
    - 13-4873 - - - - Adria L. Williams, Former Wife vs David E. Radford, Former Husband - - - - Affirmed - - 07/21/2014 -
    - 13-4914 - - - - Tracey Dewrell vs Tom Dewrell, Individually and as the etc. - - - - Affirmed - - 07/16/2014 -
    - 13-4960 - - - - Southern Baptist Hospital of Florida, Inc., etc. vs Diane L. Smith, as Personal etc et al. - - - - Dismissed - - 07/17/2014 -
    - 13-4967 - - - - Christine C. Whitney vs Wells Fargo Bank, N.A. - - - - Affirmed - - 07/07/2014 -
    - 13-4985 - - - - Alfonso Dewayne Griffin vs State of Florida - - - - Affirmed - - 07/08/2014 -
    - 13-5016 - - - - Ronald E. Downs, Jr. vs State of Florida - - - - Denied - - 07/03/2014 -
    - 13-5017 - - - - Willie George Byrd vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 13-5041 - - - - Vernon Stewart Polk vs State of Florida - - - - Affirmed - - 07/23/2014 -
    - 13-5044 - - - - Terra Mar Property Management, LLC vs The Bank of New York Mellon etc. - - - - Affirmed - - 07/11/2014 -
    - 13-5176 - - - - Jose Luis Del Toro vs Michael D. Crews, Secretary, etc. - - - - Affirmed - - 07/10/2014 -
    - 13-5222 - - - - Jason Wayne Springer vs Florida Department of Corrections - - - - Denied - - 07/14/2014 -
    - 13-5240 - - - - Samantha Grover vs Bradford County Sheriff's Office - - - - Affirmed - - 07/14/2014 -
    - 13-5266 - - - - William H. Carr, Jr., Husband vs Lynne O'Shall Carr, Wife - - - - Affirmed - - 07/17/2014 -
    - 13-5364 - - - - Edwin D. Morris vs Dept. of Corrections - - - - Denied - - 07/11/2014 -
    - 13-5426 - - - - Johnny L. Brown vs Florida Parole Commission - - - - Denied - - 07/02/2014 -
    - 13-5431 - - - - Vernterio Tremell Jenkins vs State of Florida - - - - Affirmed - - 07/10/2014 -
    - 13-5437 - - - - Cabana Beach Club, LLC's vs Key Bank National Association, etc. et al. - - - - Affirmed - - 07/07/2014 -
    - 13-5445 - - - - Dewey Kessler vs Stage Call, Inc. And Travelers etc. - - - - Affirmed - - 07/21/2014 -
    - 13-5448 - - - - Victor Parker vs State of Florida - - - - Affirmed - - 07/16/2014 -
    - 13-5532 - - - - Marianne Armstrong vs State of Florida - - - - Affirmed - - 07/11/2014 -
    - 13-5624 - - - - Michael Edward Johnson vs Secretary, Department of Corr. - - - - Denied - - 07/14/2014 -
    - 13-5629 - - - - Demond Williams vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 13-5634 - - - - Maribeth S. Gaffney vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 13-5650 - - - - Samuel Staten vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 13-5660 - - - - Octavious Johnson vs Keefe Commissary Network, Florida Dept. of Corr. - - - - Affirmed - - 07/16/2014 -
    - 13-5693 - - - - Tony Dupree, etc. vs Florida Department of Corrections - - - - Denied - - 07/11/2014 -
    - 13-5781 - - - - Rodney McCutcheon vs Michael D. Crews, Sec., Department of Corrections - - - - Denied - - 07/17/2014 -
    - 13-5789 - - - - Ramon Castro vs City of Fort Pierce and Florida, etc., et al - - - - Affirmed - - 07/24/2014 -
    - 13-5864 - - - - Christopher G. Walker vs Michael D. Crews, Sec., Florida Dept., etc. - - - - Denied - - 07/23/2014 -
    - 13-5910 - - - - Joseph C. Thompson vs State of Florida - - - - Denied - - 07/16/2014 -
    - 13-6037 - - - - Otix Blaxton vs Florida Department of Corrections - - - - Denied - - 07/09/2014 -
    - 13-6063 - - - - Ramon Del Orbe vs Reemployment Assistance Appeals Commission et al. - - - - Affirmed - - 07/24/2014 -
    - 13-6069 - - - - Stephen Lewis Furney, III vs State of Florida - - - - Affirmed - - 07/17/2014 -
    - 13-6113 - - - - Michael E. Goggins vs Department of Corrections - - - - Denied - - 07/17/2014 -
    - 13-6114 - - - - Alonzie Wiggins vs Fla. Dept. of Corrections - - - - Denied - - 07/03/2014 -
    - 13-6122 - - - - Thomas Guessford vs State of Florida - - - - Denied - - 07/16/2014 -
    - 13-6150 - - - - Edward Walker vs State of Florida - - - - Affirmed - - 07/18/2014 -
    - 13-6206 - - - - Collins V. Powers vs State of Florida - - - - Denied - - 07/24/2014 -
    - 13-6213 - - - - Curtis V. Emanuel vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 13-6237 - - - - Travis Walker vs State of Florida - - - - Affirmed - - 07/21/2014 -
    - 14-0043 - - - - Anthony Holmes vs Comanco Environmental Corp., et al. - - corrected 7/14/14 - - Affirmed - - 07/10/2014 -
    - 14-0056 - - - - Sentry Insurance Company and CGI Technologies etc. vs Karen Sykora - - - - Affirmed - - 07/17/2014 -
    - 14-0094 - - - - Progressive Employer Management Co. et al. vs Ronald Dulac - - - - Affirmed - - 07/18/2014 -
    - 14-0126 - - - - Benjamin A. Totten, Former Husband vs Christine M. Totten, Former Wife - - - - Affirmed - - 07/17/2014 -
    - 14-0134 - - - - John Holland vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 14-0164 - - - - Kendrish W. Lissade vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 14-0240 - - - - Deonta Shabaz Mills vs State of Florida - - - - Affirmed - - 07/16/2014 -
    - 14-0249 - - - - Labor Ready Southeast, Inc., et al. vs Foutch Dewane Pittman - - - - Affirmed - - 07/07/2014 -
    - 14-0399 - - - - Christopher Sanders vs State of Florida - - - - Affirmed - - 07/24/2014 -
    - 14-0448 - - - - Sawand Palmer vs State of Florida - - - - Denied - - 07/16/2014 -
    - 14-0575 - - - - Dawn Cheree Brooks vs State of Florida - - - - Affirmed - - 07/08/2014 -
    - 14-0593 - - - - Dwayne Sercey vs State of Florida - - - - Affirmed - - 07/23/2014 -
    - 14-0599 - - - - Donnie Demont Phillips vs State of Florida - - - - Affirmed - - 07/18/2014 -
    - 14-0604 - - - - Richard Michael Novak vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-0611 - - - - Tracey Dewrell vs Tom Dewrell, Individually and as the etc. - - - - Affirmed - - 07/16/2014 -
    - 14-0641 - - - - Rodney Newcomb vs Wal-Mart, and Sedgwick - - - - Affirmed - - 07/16/2014 -
    - 14-0650 - - - - Curtis Robinson vs State of Florida - - - - Denied - - 07/03/2014 -
    - 14-0698 - - - - Zachery Keith Turner vs State of Florida - - - - Denied - - 07/18/2014 -
    - 14-0710 - - - - Zeng Jean-Jacques vs State of Florida - - - - Denied - - 07/16/2014 -
    - 14-0726 - - - - Brian Brown vs Jerry Pybus Electric and North American etc. - - - - Affirmed - - 07/03/2014 -
    - 14-0743 - - - - John P. McGahen vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-0766 - - - - Raymond E. Jones vs Department of Corrections - - - - Affirmed - - 07/21/2014 -
    - 14-0794 - - - - Michael Leslie Carson vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-0810 - - - - Tommy Green, Sr. vs Michael D. Crews, Secretary, etc. - - - - Affirmed - - 07/11/2014 -
    - 14-0819 - - - - Erica Nicole Thomas vs State of Florida - - - - Denied - - 07/24/2014 -
    - 14-0827 - - - - United Parcel Service and Liberty Mutual Ins. Co. vs Steve Aladics - - - - Affirmed - - 07/16/2014 -
    - 14-0834 - - - - Samantha Willsey vs State of Florida - - - - Affirmed - - 07/21/2014 -
    - 14-0850 - - - - Steven J. Casker vs State of Florida - - - - Denied - - 07/16/2014 -
    - 14-0852 - - - - Arianne Myles vs State of Florida - - - - Affirmed - - 07/16/2014 -
    - 14-0861 - - - - Lawrence Lee Jones vs Florida Department of Corrections - - - - Denied - - 07/14/2014 -
    - 14-0923 - - - - Aaron S. Burns vs State of Florida - - - - Denied - - 07/09/2014 -
    - 14-0944 - - - - Bennett K. Tressler, Jr. vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-0950 - - - - Carol Cunningham vs Reemployment Assistance Appeals Commission et al. - - - - Affirmed - - 07/18/2014 -
    - 14-0978 - - - - Stacy Lasondo Jackson vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-0989 - - - - Randall Lee Mays vs State of Florida - - - - Affirmed - - 07/08/2014 -
    - 14-1010 - - - - Keith Young vs State of Florida - - - - Affirmed - - 07/17/2014 -
    - 14-1012 - - - - Arron J. Grimes vs State of Florida - - - - Affirmed - - 07/14/2014 -
    - 14-1048 - - - - Daniel Marion vs State of Florida - - - - Affirmed - - 07/22/2014 -
    - 14-1050 - - - - Antwann Johnson vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 14-1056 - - - - Rick D. Ripple vs State of Florida - - - - Affirmed - - 07/18/2014 -
    - 14-1058 - - - - Ray James vs Fla. Dept. of Corrections - - - - Dismissed - - 07/21/2014 -
    - 14-1068 - - - - Ricky Sutton vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 14-1097 - - - - Justin Wayne Wood vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1123 - - - - Leon D. Smith vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 14-1127 - - - - Joseph E. Kenney vs Department of Highway Safety etc. - - - - Denied - - 07/17/2014 -
    - 14-1149 - - - - Julius S. Davis vs State of Florida - - - - Affirmed - - 07/23/2014 -
    - 14-1184 - - - - Danny O. Davis vs State of Florida - - - - Denied - - 07/24/2014 -
    - 14-1189 - - - - Ernest Bellamy vs State of Florida - - - - Affirmed - - 07/14/2014 -
    - 14-1191 - - - - Keidrick L. Ewing vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1203 - - - - Kenneth Bacon vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1208 - - - - Antoni Lashawn Knight vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1214 - - - - Janard Wright vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 14-1240 - - - - Lonnie Fritts vs State of Florida - - - - Affirmed - - 07/16/2014 -
    - 14-1266 - - - - Carly Brubaker vs Northeast Florida State Hospital - - - - Affirmed - - 07/03/2014 -
    - 14-1268 - - - - Eddie L. Ash vs State of Florida - - - - Affirmed - - 07/14/2014 -
    - 14-1283 - - - - Jason Johnson vs State of Florida - - - - Affirmed - - 07/18/2014 -
    - 14-1298 - - - - Keith Eric Lancaster vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1299 - - - - Ronnie Woods vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 14-1301 - - - - Randy Spencer vs State of Florida - - - - Dismissed - - 07/24/2014 -
    - 14-1315 - - - - Willie Owens vs State of Florida - - - - Affirmed - - 07/09/2014 -
    - 14-1329 - - - - Joseph Benjamin Calloway vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1362 - - - - Chanterria Roberts vs State of Florida - - - - Affirmed - - 07/14/2014 -
    - 14-1366 - - - - Travis McKinney vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1414 - - - - Exterior Walls, Inc. vs Construction Materials, Inc, et al. - - - - Denied - - 07/16/2014 -
    - 14-1417 - - - - Mauricio Kyler vs State of Florida - - - - Affirmed - - 07/16/2014 -
    - 14-1423 - - - - Allen Lee Williams vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1437 - - - - Rockwell Jones vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 14-1442 - - - - Calimino Woods, Jr. vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1454 - - - - John O. Williams vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1471 - - - - Eric Von Easter vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 14-1485 - - - - Willie C. Ford, Jr. vs State of Florida - - - - Affirmed - - 07/23/2014 -
    - 14-1499 - - - - Jessie Lee Davis, II vs State of Florida - - - - Affirmed - - 07/18/2014 -
    - 14-1510 - - - - William H. Bell vs State of Florida - - - - Affirmed - - 07/08/2014 -
    - 14-1514 - - - - Bernard Owens vs State of Florida - - - - Affirmed - - 07/08/2014 -
    - 14-1528 - - - - Danny O. Davis vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 14-1530 - - - - Bobbie Laster vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 14-1531 - - - - Ian Nigel Nabbs vs State of Florida - - - - Denied - - 07/03/2014 -
    - 14-1532 - - - - Vernon Jones vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1533 - - - - Jermaine T. Holmes vs State of Florida - - - - Affirmed - - 07/14/2014 -
    - 14-1536 - - - - Omer D. Stokes vs State of Florida - - - - Affirmed - - 07/16/2014 -
    - 14-1557 - - - - Juan E. Gonzales vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1565 - - - - Arthur C. Grace vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 14-1572 - - - - William T. Morrison, Jr. vs State of Florida - - - - Affirmed - - 07/14/2014 -
    - 14-1591 - - - - Anthony Young vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 14-1597 - - - - James Garrison vs State of Florida - - - - Affirmed - - 07/23/2014 -
    - 14-1602 - - - - Theophus Davison vs State of Florida - - - - Affirmed - - 07/18/2014 -
    - 14-1646 - - - - Jeffrey E. Hobson vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 14-1651 - - - - Melvin T. Dixon vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1654 - - - - Joseph Wiley vs State of Florida - - - - Affirmed - - 07/18/2014 -
    - 14-1670 - - - - Billy Comer vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1685 - - - - Erick Lorray Armstrong vs State of Florida - - - - Affirmed - - 07/18/2014 -
    - 14-1713 - - - - Donald S. Verne vs State of Florida - - - - Affirmed - - 07/17/2014 -
    - 14-1728 - - - - Richard Howard Ramsey vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1757 - - - - Reginald Chatman vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 14-1766 - - - - Lawrence Baker vs State of Florida - - - - Affirmed - - 07/23/2014 -
    - 14-1798 - - - - Comer Brascom vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1799 - - - - Clinton E. Lewis vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1803 - - - - Bill Harley Slaughter vs State of Florida - - - - Affirmed - - 07/14/2014 -
    - 14-1829 - - - - Bill Harley Slaughter vs State of Florida - - - - Affirmed - - 07/14/2014 -
    - 14-1909 - - - - Randolph Jackson vs State of Florida - - - - Affirmed - - 07/16/2014 -
    - 14-1956 - - - - Brian Gallon vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-1966 - - - - Sherman A. Combs vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 14-1982 - - - - Clentis E. Lucuss vs State of Florida - - - - Affirmed - - 07/10/2014 -
    - 14-2034 - - - - Robert Lowery vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-2079 - - - - Roddy Kelley vs State of Florida - - - - Affirmed - - 07/08/2014 -
    - 14-2122 - - - - Antonio Turner vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 14-2126 - - - - Mark Anthony Holland vs State of Florida - - - - Affirmed - - 07/23/2014 -
    - 14-2141 - - - - Auto Truck and Industrial Parts and Supply, etc. vs June B. Miller - - - - Dismissed - - 07/17/2014 -
    - 14-2159 - - - - Michael Z. Rivera vs State of Florida - - - - Affirmed - - 07/03/2014 -
    - 14-2170 - - - - Meldon Rich vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 14-2202 - - - - Ralph Ross vs State of Florida - - - - Denied - - 07/03/2014 -
    - 14-2328 - - - - Causseaux, Hewett & Walpole, Inc. etc. vs Hopewell, LLC - - - - Denied - - 07/03/2014 -
    - 14-2340 - - - - Thomas Kahlow vs Florida Parole Commission - - - - Dismissed - - 07/09/2014 -
    - 14-2358 - - - - Lorenzo Howard vs Michael D. Crews, Secretary, etc. et al. - - - - Denied - - 07/16/2014 -
    - 14-2371 - - - - Sterling Robert Owens vs State of Florida - - - - Affirmed - - 07/02/2014 -
    - 14-2406 - - - - Johnny Welch vs State of Florida - - - - Denied - - 07/09/2014 -
    - 14-2422 - - - - Kennedy Wright vs Department of Corrections - - - - Dismissed - - 07/17/2014 -
    - 14-2423 - - - - Marzuq Al-Hakim vs State of Florida - - - - Denied - - 07/03/2014 -
    - 14-2443 - - - - Anthony Graham vs State of Florida - - - - Denied - - 07/09/2014 -
    - 14-2549 - - - - Barrington E. Morais vs State of Florida - - - - Denied - - 07/09/2014 -
    - 14-2552 - - - - Charles Francis vs State of Florida - - - - Denied - - 07/16/2014 -
    - 14-2560 - - - - John H. Cirota vs State of Florida - - - - Denied - - 07/03/2014 -
    - 14-2589 - - - - Ioannis Papadopoulos vs Reemployment Assistance Appeals Commission, et al - - - - Dismissed - - 07/09/2014 -
    - 14-2709 - - - - Bill Harley Slaughter vs Michael D. Crews, Secretary, etc. et al. - - - - Denied - - 07/03/2014 -
    - 14-2716 - - - - Charles C. Sanmann vs State of Florida - - - - Denied - - 07/24/2014 -
    - 14-2785 - - - - Jerry Lee Nichols vs State of Florida - - - - Dismissed - - 07/03/2014 -
    - 14-2790 - - - - Lucious Jackson vs State of Florida - - - - Denied - - 07/09/2014 -
    - 14-2871 - - - - Malachi Smith vs State of Florida - - - - Denied - - 07/24/2014 -
    - 14-2883 - - - - James Richard Bain vs State of Florida - - - - Denied - - 07/09/2014 -
    - 14-2927 - - - - Florida Wildlife Federation, Inc. vs Department of Environmental Protection - - - - Dismissed - - 07/24/2014 -
    - 14-2934 - - - - Harens Aleydi Erazo vs State of Florida - - - - Denied - - 07/24/2014 -
    - 14-2937 - - - - Ronald Nelson Brown vs State of Florida - - - - Denied - - 07/16/2014 -
    - 14-2940 - - - - Weston Jackson vs State of Florida - - - - Denied - - 07/24/2014 -
    - 14-2943 - - - - Willie James Hunter vs State of Florida - - - - Denied - - 07/16/2014 -
    -
    -
    - -
    -
    - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_1_written_example.compare.json b/tests/examples/opinions/united_states/fladistctapp_1_written_example.compare.json deleted file mode 100644 index d6c32c9e3..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_1_written_example.compare.json +++ /dev/null @@ -1,541 +0,0 @@ -[ - { - "case_dates": "2014-07-25", - "case_names": "Joshua Blankenship v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0812/140812_DC13_07252014_093954_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "14-0812", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-25", - "case_names": "Brad E Parker v. Jodie Ann Parker", - "download_urls": "https://edca.1dca.org/DCADocs/2013/6135/136135_DC13_07252014_093704_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "13-6135", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-25", - "case_names": "BAC Home Loans Servicing, L.P. v. Donald H. Ellison", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4227/134227_DC13_07252014_093415_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "13-4227", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-22", - "case_names": "Victor W. Duvall v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2717/142717_DA08_07222014_085433_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2717", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-22", - "case_names": "Victor Bouie v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1758/141758_DC03_07222014_085131_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Granted", - "docket_numbers": "14-1758", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-22", - "case_names": "Veronica Vazquez v. CitiMortgage, Inc.", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1867/141867_DA08_07222014_085224_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-1867", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-22", - "case_names": "Ronald Thornton v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0902/140902_DC02_07222014_084814_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-0902", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-22", - "case_names": "Joseph Daniel Flowers v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2012/6064/126064_DC06_07222014_084516_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed as Modified", - "docket_numbers": "12-6064", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-22", - "case_names": "Bobbie D. Dressel v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2116/142116_DC03_07222014_085353_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Granted", - "docket_numbers": "14-2116", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-22", - "case_names": "Amanda Pryor, Wife v. David Pryor, Husband", - "download_urls": "https://edca.1dca.org/DCADocs/2013/6070/136070_DA08_07222014_084641_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "13-6070", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "Noe Guerra v. C.A. Lindman, Inc., and Argonaut Insurance Co.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5988/135988_DC13_07212014_030811_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "13-5988", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "James R. Mitchell v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2007/1715/071715_DC05_07212014_030357_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "07-1715", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "G. B., Z.L., through his guardian K.L. v. Agency For Persons With Disabilities", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4903/134903_DC13_07212014_030639_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "13-4903", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "Charles Culp v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/1808/131808_DC05_07212014_030459_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-1808", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-21", - "case_names": "Chanterria Roberts v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1361/141361_DC05_07212014_030954_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-1361", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Nora Bloxom-Williams v. Florida Public Employees Council 79", - "download_urls": "https://edca.1dca.org/DCADocs/2013/1748/131748_DC05_07162014_090157_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-1748", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Leon Smith v. City of Daytona Beach Police Dept./City of etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4409/134409_DC05_07162014_090305_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-4409", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Joseph R. Biden, I I I, the Attorney General etc. v. John S. Lord, Herbert H. Peyton", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5053/135053_DC05_07162014_090437_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5053", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Ft. Myers Real Estate Holdings, LLC v. Department of Business and Professional etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5452/135452_DC05_07162014_090603_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-5452", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Dennis Mehaffie v. John Rutherford as Sheriff of Duval etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2804/142804_DC02_07162014_091310_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-2804", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Corey Landon McComas v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2418/142418_DA08_07162014_091200_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2418", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Antwan Dilworth v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0730/140730_DC03_07162014_091024_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Granted", - "docket_numbers": "14-0730", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-16", - "case_names": "Agency For HealthCare Administration v. Bayfront Medical Center, Inc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/0224/130224_DA08_07162014_090046_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "13-0224", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "PHILIP MORRIS USA INC. and Liggett Group LLC. v. Nan Kathryn Buchanan, Personal Rep. etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/1528/131528_DC05_07142014_084503_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-1528", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Johnny L. Sadler, Jr. v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/2913/132913_DC13_07142014_084634_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "13-2913", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "George Jackmore v. In Re: Estate of William Jackmore, etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2011/6680/116680_DC08_07142014_084223_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part/Reversed in Part", - "docket_numbers": "11-6680", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Alex Diaz De La Portilla v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2011/5126/115126_DC13_07142014_084124_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "11-5126", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-09", - "case_names": "R. J. Reynolds Tobacco Company v. Janice L. Sikes, as Personal etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3183/133183_DC05_07092014_083140_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "13-3183", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-08", - "case_names": "Willie Raymond Petty v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1502/141502_DC02_07082014_083701_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-1502", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-08", - "case_names": "Travis McKinney v. Michael D. Crews, Sec. Florida Dept., etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2462/142462_DA08_07082014_083934_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2462", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-08", - "case_names": "Frank A. L. Mosley v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3720/133720_DC13_07082014_083332_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "13-3720", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-08", - "case_names": "Curtis McClendon v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/3815/133815_DC08_07082014_083457_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part/Reversed in Part", - "docket_numbers": "13-3815", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "William Netting v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5683/135683_DC13_07072014_095726_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "13-5683", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Oak Square Joint Venture, a Florida etc. v. U. S. Bank National Association, etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4473/134473_DC08_07072014_101934_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part/Reversed in Part", - "docket_numbers": "13-4473", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Oak Square Joint Venture, a Florida Joint etc. v. U. S. Bank National Association etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/4232/134232_DC08_07072014_095240_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part/Reversed in Part", - "docket_numbers": "13-4232", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Louis Weltman and Phoenix Realty partners, Inc. v. Stephen Riggs and Heritage FFR. LLC.", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0614/140614_1286_07082014_092325_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part/Reversed in Part", - "docket_numbers": "14-0614", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Columbia Bank v. Heather Johnson Turbeville", - "download_urls": "https://edca.1dca.org/DCADocs/2013/2750/132750_1287_07082014_092241_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "13-2750", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-07", - "case_names": "Antonio R. Hernandez v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0363/140363_DC05_07072014_100208_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "14-0363", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Edward J. Mason v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1804/141804_DA08_07032014_113712_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-1804", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Danny O. Davis v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2302/142302_DA08_07032014_113942_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2302", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Silvio Hernandez v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2072/142072_DA08_07022014_110159_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2072", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "Kester Patterson Beryl Patterson v. HSBC Bank USA, National Association etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2014/0933/140933_DA08_07022014_105639_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-0933", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-02", - "case_names": "City of Jacksonville v. Germain Lenrod Dubose", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2482/142482_DA08_07022014_110351_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2482", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-01", - "case_names": "Willie Raymond Petty v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1013/141013_DA08_07012014_084312_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-1013", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-01", - "case_names": "Patrick Allen McCall v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2301/142301_DA08_07012014_090129_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2301", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-01", - "case_names": "Merlin Williams v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2014/1433/141433_DC02_07012014_085529_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Denied", - "docket_numbers": "14-1433", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-01", - "case_names": "Marzuq Al-Hakim v. Rick Scott, Governor", - "download_urls": "https://edca.1dca.org/DCADocs/2014/2132/142132_DA08_07012014_085727_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Dismissed", - "docket_numbers": "14-2132", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-01", - "case_names": "Jovita C. Ibeagwa v. State of Florida", - "download_urls": "https://edca.1dca.org/DCADocs/2012/2602/122602_DC06_07012014_083128_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed as Modified", - "docket_numbers": "12-2602", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-01", - "case_names": "Joennes Gil v. Cargo Force, Inc. and Gallagher Bassett etc.", - "download_urls": "https://edca.1dca.org/DCADocs/2013/5423/135423_DC13_07012014_083805_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "13-5423", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_1_written_example.html b/tests/examples/opinions/united_states/fladistctapp_1_written_example.html deleted file mode 100644 index f5dcd4f9a..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_1_written_example.html +++ /dev/null @@ -1,896 +0,0 @@ - - - - - - - - - - -
    -
    - - - - -
    - - - - -
    - - - -
    - -
    - - - - - - - -
    - Opinion Type: - - - Release Month: - - - Release Day: - - - -
    - -
    - - - - -
    - All Written for July 2014 -   - -
    - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Case No.ViewCase StyleNoteDispositionDisposition Date
    - 07-1715 - - - - James R. Mitchell vs State of Florida - - - - Affirmed - - 07/21/2014 -
    - 11-5126 - - - - Alex Diaz De La Portilla vs State of Florida - - - - Reversed - - 07/14/2014 -
    - 11-6680 - - - - George Jackmore vs In Re: Estate of William Jackmore, etc. et al. - - - - Affirmed in Part/Reversed in Part - - 07/14/2014 -
    - 12-2602 - - - - Jovita C. Ibeagwa vs State of Florida - - - - Affirmed as Modified - - 07/01/2014 -
    - 12-6064 - - - - Joseph Daniel Flowers vs State of Florida - - - - Affirmed as Modified - - 07/22/2014 -
    - 13-0224 - - - - Agency For HealthCare Administration vs Bayfront Medical Center, Inc., et al. - - - - Dismissed - - 07/16/2014 -
    - 13-1528 - - - - PHILIP MORRIS USA INC. and Liggett Group LLC. vs Nan Kathryn Buchanan, Personal Rep. etc. - - - - Affirmed - - 07/14/2014 -
    - 13-1748 - - - - Nora Bloxom-Williams vs Florida Public Employees Council 79, et al. - - - - Affirmed - - 07/16/2014 -
    - 13-1808 - - - - Charles Culp vs State of Florida - - - - Affirmed - - 07/21/2014 -
    - 13-2750 - - - - Columbia Bank vs Heather Johnson Turbeville et al. - - corrected 07/08/14 - - Reversed - - 07/07/2014 -
    - 13-2913 - - - - Johnny L. Sadler, Jr. vs State of Florida - - - - Reversed - - 07/14/2014 -
    - 13-3183 - - - - R. J. Reynolds Tobacco Company vs Janice L. Sikes, as Personal etc. - - - - Affirmed - - 07/09/2014 -
    - 13-3720 - - - - Frank A. L. Mosley vs State of Florida - - - - Reversed - - 07/08/2014 -
    - 13-3815 - - - - Curtis McClendon vs State of Florida - - - - Affirmed in Part/Reversed in Part - - 07/08/2014 -
    - 13-4227 - - - - BAC Home Loans Servicing, L.P. vs Donald H. Ellison; et al. - - - - Reversed - - 07/25/2014 -
    - 13-4232 - - - - Oak Square Joint Venture, a Florida Joint etc. vs U. S. Bank National Association etc. - - - - Affirmed in Part/Reversed in Part - - 07/07/2014 -
    - 13-4409 - - - - Leon Smith vs City of Daytona Beach Police Dept./City of etc. - - - - Affirmed - - 07/16/2014 -
    - 13-4473 - - - - Oak Square Joint Venture, a Florida etc. vs U. S. Bank National Association, etc. - - - - Affirmed in Part/Reversed in Part - - 07/07/2014 -
    - 13-4903 - - - - G. B., Z.L., through his guardian K.L., et al. vs Agency For Persons With Disabilities - - - - Reversed - - 07/21/2014 -
    - 13-5053 - - - - Joseph R. Biden, I I I, the Attorney General etc. vs John S. Lord, Herbert H. Peyton, et al. - - - - Affirmed - - 07/16/2014 -
    - 13-5423 - - - - Joennes Gil vs Cargo Force, Inc. and Gallagher Bassett etc. - - - - Reversed - - 07/01/2014 -
    - 13-5452 - - - - Ft. Myers Real Estate Holdings, LLC vs Department of Business and Professional etc. - - - - Affirmed - - 07/16/2014 -
    - 13-5683 - - - - William Netting vs State of Florida - - - - Reversed - - 07/07/2014 -
    - 13-5988 - - - - Noe Guerra vs C.A. Lindman, Inc., and Argonaut Insurance Co. - - - - Reversed - - 07/21/2014 -
    - 13-6070 - - - - Amanda Pryor, Wife vs David Pryor, Husband - - - - Dismissed - - 07/22/2014 -
    - 13-6135 - - - - Brad E Parker vs Jodie Ann Parker - - - - Reversed - - 07/25/2014 -
    - 14-0363 - - - - Antonio R. Hernandez vs State of Florida - - - - Affirmed - - 07/07/2014 -
    - 14-0614 - - - - Louis Weltman and Phoenix Realty partners, Inc. vs Stephen Riggs and Heritage FFR. LLC., et al - - - - Affirmed in Part/Reversed in Part - - 07/07/2014 -
    - 14-0730 - - - - Antwan Dilworth vs State of Florida - - - - Granted - - 07/16/2014 -
    - 14-0812 - - - - Joshua Blankenship vs State of Florida - - - - Reversed - - 07/25/2014 -
    - 14-0902 - - - - Ronald Thornton vs State of Florida - - - - Denied - - 07/22/2014 -
    - 14-0933 - - - - Kester Patterson Beryl Patterson vs HSBC Bank USA, National Association etc. - - - - Dismissed - - 07/02/2014 -
    - 14-1013 - - - - Willie Raymond Petty vs State of Florida - - - - Dismissed - - 07/01/2014 -
    - 14-1361 - - - - Chanterria Roberts vs State of Florida - - - - Affirmed - - 07/21/2014 -
    - 14-1433 - - - - Merlin Williams vs State of Florida - - - - Denied - - 07/01/2014 -
    - 14-1502 - - - - Willie Raymond Petty vs State of Florida - - - - Denied - - 07/08/2014 -
    - 14-1758 - - - - Victor Bouie vs State of Florida - - - - Granted - - 07/22/2014 -
    - 14-1804 - - - - Edward J. Mason vs State of Florida - - - - Dismissed - - 07/03/2014 -
    - 14-1867 - - - - Veronica Vazquez vs CitiMortgage, Inc. - - - - Dismissed - - 07/22/2014 -
    - 14-2072 - - - - Silvio Hernandez vs State of Florida - - - - Dismissed - - 07/02/2014 -
    - 14-2116 - - - - Bobbie D. Dressel vs State of Florida - - - - Granted - - 07/22/2014 -
    - 14-2132 - - - - Marzuq Al-Hakim vs Rick Scott, Governor - - - - Dismissed - - 07/01/2014 -
    - 14-2301 - - - - Patrick Allen McCall vs State of Florida - - - - Dismissed - - 07/01/2014 -
    - 14-2302 - - - - Danny O. Davis vs State of Florida - - - - Dismissed - - 07/03/2014 -
    - 14-2418 - - - - Corey Landon McComas vs State of Florida - - - - Dismissed - - 07/16/2014 -
    - 14-2462 - - - - Travis McKinney vs Michael D. Crews, Sec. Florida Dept., etc. - - - - Dismissed - - 07/08/2014 -
    - 14-2482 - - - - City of Jacksonville, et al. vs Germain Lenrod Dubose - - - - Dismissed - - 07/02/2014 -
    - 14-2717 - - - - Victor W. Duvall vs State of Florida - - - - Dismissed - - 07/22/2014 -
    - 14-2804 - - - - Dennis Mehaffie vs John Rutherford as Sheriff of Duval etc. - - - - Denied - - 07/16/2014 -
    -
    -
    - -
    -
    - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_2_example.compare.json b/tests/examples/opinions/united_states/fladistctapp_2_example.compare.json new file mode 100644 index 000000000..452a47ddf --- /dev/null +++ b/tests/examples/opinions/united_states/fladistctapp_2_example.compare.json @@ -0,0 +1,122 @@ +[ + { + "case_dates": "2024-08-28", + "case_names": "Zelaya v. Bam 32, Inc., Re 710, LLC.", + "download_urls": "https://2dca.flcourts.gov/pre_opinion_content_download/2439721", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "2D2023-1905", + "case_name_shorts": "Zelaya", + "per_curiam": true + }, + { + "case_dates": "2024-08-28", + "case_names": "Morgan v. Morgan", + "download_urls": "https://2dca.flcourts.gov/pre_opinion_content_download/2439718", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "2D2022-4134", + "case_name_shorts": "Morgan", + "per_curiam": true + }, + { + "case_dates": "2024-08-28", + "case_names": "Coloutes, Sr. v. Farantatos", + "download_urls": "https://2dca.flcourts.gov/pre_opinion_content_download/2439719", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "2D2022-2925", + "case_name_shorts": "Farantatos", + "per_curiam": true + }, + { + "case_dates": "2024-08-28", + "case_names": "Boston v. State of Florida", + "download_urls": "https://2dca.flcourts.gov/pre_opinion_content_download/2439727", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "2D2024-1214", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2024-08-28", + "case_names": "A. C. v. DEPARTMENT OF CHILDREN AND FAMILIES, STATEWIDE", + "download_urls": "https://2dca.flcourts.gov/pre_opinion_content_download/2439720", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "2D2024-0877", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2024-08-23", + "case_names": "Young v. State of Florida", + "download_urls": "https://2dca.flcourts.gov/pre_opinion_content_download/2439530", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "2D2023-0579", + "case_name_shorts": "Young", + "per_curiam": true + }, + { + "case_dates": "2024-08-23", + "case_names": "Summers v. State of Florida", + "download_urls": "https://2dca.flcourts.gov/pre_opinion_content_download/2439526", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "2D2022-3387", + "case_name_shorts": "Summers", + "per_curiam": true + }, + { + "case_dates": "2024-08-23", + "case_names": "Jackson v. State of Florida", + "download_urls": "https://2dca.flcourts.gov/pre_opinion_content_download/2439525", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "2D2023-0154", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2024-08-23", + "case_names": "Bradshaw, Jr. v. State of Florida", + "download_urls": "https://2dca.flcourts.gov/pre_opinion_content_download/2439531", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "2D2023-0537", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2024-08-23", + "case_names": "Bradley v. State of Florida", + "download_urls": "https://2dca.flcourts.gov/pre_opinion_content_download/2439527", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "2D2023-0348", + "case_name_shorts": "Bradley", + "per_curiam": true + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_2_example.html b/tests/examples/opinions/united_states/fladistctapp_2_example.html new file mode 100644 index 000000000..38e945a95 --- /dev/null +++ b/tests/examples/opinions/united_states/fladistctapp_2_example.html @@ -0,0 +1,360 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + File + + Type + + + + Case No. + + + + Case Name + + + + Disposition + + + + Note + + Release Date + + +
    + + PDF Download of 2022-2925 + + + + + PCA + + 2022-2925 + + COLOUTES, SR. v. FARANTATOS + + Appeal - Per Curiam Affirmed + + Affirmed + + 08/28/24 +
    + + PDF Download of 2022-4134 + + + + + PCA + + 2022-4134 + + MORGAN v. MORGAN + + Appeal - Per Curiam Affirmed + + Affirmed + + 08/28/24 +
    + + PDF Download of 2023-1905 + + + + + PCA + + 2023-1905 + + ZELAYA v. BAM 32, INC., RE 710, LLC. + + Appeal - Per Curiam Affirmed + + Affirmed + + 08/28/24 +
    + + PDF Download of 2024-0877 + + + + + PCA + + 2024-0877 + + A. C. v. DEPARTMENT OF CHILDREN AND FAMILIES, STATEWIDE, et al + + Appeal - Per Curiam Affirmed + + Affirmed + + 08/28/24 +
    + + PDF Download of 2024-1214 + + + + + PCA + + 2024-1214 + + Boston v. State of Florida + + Appeal - Per Curiam Affirmed + + Affirmed + + 08/28/24 +
    + + PDF Download of 2022-3387 + + + + + PCA + + 2022-3387 + + SUMMERS v. STATE OF FLORIDA + + Appeal - Per Curiam Affirmed + + Affirmed + + 08/23/24 +
    + + PDF Download of 2023-0154 + + + + + PCA + + 2023-0154 + + JACKSON v. STATE OF FLORIDA + + Appeal - Per Curiam Affirmed + + Affirmed + + 08/23/24 +
    + + PDF Download of 2023-0348 + + + + + PCA + + 2023-0348 + + BRADLEY v. STATE OF FLORIDA + + Appeal - Per Curiam Affirmed + + Affirmed + + 08/23/24 +
    + + PDF Download of 2023-0537 + + + + + PCA + + 2023-0537 + + BRADSHAW, JR. v. STATE OF FLORIDA + + Appeal - Per Curiam Affirmed + + Affirmed + + 08/23/24 +
    + + PDF Download of 2023-0579 + + + + + PCA + + 2023-0579 + + YOUNG v. STATE OF FLORIDA + + Appeal - Per Curiam Affirmed + + Affirmed + + 08/23/24 +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_2_per_curiam_example.compare.json b/tests/examples/opinions/united_states/fladistctapp_2_per_curiam_example.compare.json deleted file mode 100644 index 883711583..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_2_per_curiam_example.compare.json +++ /dev/null @@ -1,1322 +0,0 @@ -[ - { - "case_dates": "2018-02-09", - "case_names": "WAYNE DORAN REVOCABLE TRUST v. JOHN MCDONALD", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3640/173640_65_02092018_09490810_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3640", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "VIRGINIA RIGGS v. FLORIDA FISH & WILDLIFE CONSERVATION COMMISSION", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1036/171036_65_02092018_09234260_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1036", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "U. S. BANK TRUST, N. A., AS TRUSTEE v. HOUSEHOLD FINANCE CORP I I I", - "download_urls": "https://edca.2dca.org/DCADocs/2016/4127/164127_65_02092018_09124919_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-4127", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "TROY WENDELL HIERS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3307/173307_65_02092018_09460175_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3307", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "TOMMIE LEE FREEMAN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/3220/163220_65_02092018_09063067_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3220", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "TERRELL S. WILLIAMS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2645/172645_65_02092018_09403494_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2645", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "SHARESE ANN BERGERON v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/5274/165274_65_02092018_09151387_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-5274", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "SEAN JENKINS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2854/172854_65_02092018_09431000_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2854", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "SCOTT CHRISTOPHER HAHN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2376/172376_65_02092018_09323639_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2376", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "SCHOOL BOARD OF POLK COUNTY, FLORIDA v. FLORIDA CHARTER EDUCATIONAL FOUNDATION, INC.", - "download_urls": "https://edca.2dca.org/DCADocs/2017/0813/170813_65_02092018_09222453_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0813", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "SCHOOL BOARD OF POLK COUNTY v. STATE BOARD OF EDUCATION, DEPARTMENT OF EDUCATION, STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/0733/170733_65_02092018_09204952_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0733", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "ROLANDO ROJAS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2015/5667/155667_65_02092018_08595015_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "15-5667", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "REGIS SANSON AND MICHELLE SANSON v. REFLECTION KEY CONDOMINIUM ASSOCIATION, INC.", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1572/171572_65_02092018_09270429_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1572", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "RAUL DELAROSA v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/4167/164167_65_02092018_09141225_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-4167", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "PASCUAL BURCIAGA v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2015/5538/155538_65_02092018_08574610_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "15-5538", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "MICHAEL PALMORE v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3557/173557_65_02092018_09480465_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3557", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "MICHAEL ORTALIZ v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3783/173783_65_02092018_09562963_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3783", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "MELVIN QUEVEDO v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/3074/163074_65_02092018_09035764_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3074", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "MARY CHASE v. DYCK - O' NEAL, INC.", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1192/171192_65_02092018_09250571_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1192", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "MARCUS BROWN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3717/173717_65_02092018_09500429_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3717", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "MADEL JULIEN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3720/173720_65_02092018_09511214_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3720", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "KINN SHAWN WEBER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2015/4989/154989_65_02092018_08551134_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "15-4989", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "JENNIFER SMALL v. JASON SMALL", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1435/171435_65_02092018_09260193_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1435", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "JACOB CLEFA v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/0616/170616_65_02092018_09114752_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0616", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "JACOB CLEFA v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/3759/163759_65_02092018_09103589_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3759", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "JACOB CLEFA v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/3573/163573_65_02092018_09084640_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3573", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "JACKIE A. RANDALL v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/0702/170702_65_02092018_09190367_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0702", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "HENRY R. MONDY v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3792/173792_65_02092018_09573012_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3792", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "EVELYN MARTINEZ v. FEDERAL NATIONAL MORTGAGE ASSOCIATION", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1694/171694_65_02092018_09282339_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1694", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "ERIC DANIEL SPRUNGER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2853/172853_65_02092018_09420033_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2853", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "DENNIS M. HOLLERAN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2015/5183/155183_65_02092018_08563680_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "15-5183", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "DAVID LEE HOWELL v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/2501/162501_65_02092018_09024240_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-2501", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "DAVID IRVIN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/0864/160864_65_02092018_09010903_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-0864", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "DANIEL ROBERT MILLER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3723/173723_65_02092018_09523600_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3723", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "CLETURS SMITH v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2442/172442_65_02092018_09343681_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2442", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "CHRISTINE GREGORY v. DANIEL GREGORY", - "download_urls": "https://edca.2dca.org/DCADocs/2017/0562/170562_65_02092018_09175593_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0562", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "CHESTER R. HOFFMANN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3724/173724_65_02092018_09533295_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3724", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "CEDRIC M. BUCKLON v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2254/172254_65_02092018_09311914_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2254", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "BRYAN HEATER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2490/172490_65_02092018_09354758_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2490", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "BRUCE J. BISHOP, JR. v. ROBIN Y. BISHOP", - "download_urls": "https://edca.2dca.org/DCADocs/2016/5501/165501_65_02092018_09164024_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-5501", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "BENJAMIN CROWLEY v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3077/173077_65_02092018_09445445_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3077", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "BED XAVIER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2624/172624_65_02092018_09385732_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2624", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "ANTHONY WALKER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/3149/163149_65_02092018_09051932_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3149", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "ANTHONY HAWKS v. JEANNE ELLEN LIBIT, INDIVIDUALLY & AS TRUSTEE OF THE JEANNE ELLEN LIBIT TRUST", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2230/172230_65_02092018_09300687_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2230", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "WILLIAM ELLISON v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1364/171364_65_02072018_08543111_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1364", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "WALTER VEGA v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1260/171260_65_02072018_08534933_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1260", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "THOMAS HOFMEISTER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/4171/164171_65_02072018_08504877_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-4171", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "SPAULDING DECON, LLC AND LAURA SPAULDING v. FEDERATED NATIONAL INSURANCE COMPANY F/K/A AMERICAN VEHICLE INSURANCE COMPANY", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1038/171038_65_02072018_08522532_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1038", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "SONYA PATRICE WYATT v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2680/172680_65_02072018_08571041_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2680", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "SEAN HOWARD v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/2923/162923_65_02072018_08402346_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-2923", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "SAMUEL ANTONIO NESBITT, JR. v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2859/172859_65_02072018_09053753_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2859", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "RUSHAWN COOPER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/2750/162750_65_02072018_08392538_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-2750", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "RONDA WEST v. U. S. BANK NATIONAL ASSOCIATION, AS TRUSTEE", - "download_urls": "https://edca.2dca.org/DCADocs/2016/5426/165426_65_02072018_08514779_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-5426", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "ROBERT BRIGGS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2682/172682_65_02072018_08581860_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2682", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "RICHARD LEE ESTES v. KIMBERLY JO ESTES", - "download_urls": "https://edca.2dca.org/DCADocs/2016/2283/162283_65_02072018_08365855_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-2283", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "RANDY L. ROUNDTREE v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2572/172572_65_02072018_08555765_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2572", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "NIKOLAOS KOUTSOURADIS v. NATIONSTAR MORTGAGE, LLC", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3607/173607_65_02072018_09084586_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3607", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "MICHAEL BORDERS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2792/172792_65_02072018_09011487_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2792", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "MELVIN TOOMER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3594/173594_65_02072018_09065484_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3594", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "MATTHEW SYKENY v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1176/171176_65_02072018_08530908_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1176", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "MARK WILLIS MASON v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2714/172714_65_02072018_08591292_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2714", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "MARK ALAN GILSON v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/0892/160892_65_02072018_08352277_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-0892", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "MARCO MANUEL TORRES v. JUDGE MICHAEL S. WILLIAMS", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2804/172804_65_02072018_09015358_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2804", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "JOHN E. MOXLEY, AS PERSONAL REPRESENTATIVE v. U - HAUL CO. OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/3973/163973_65_02072018_08495715_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3973", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "J. N. J. v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/2927/162927_65_02072018_08410603_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-2927", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "IRAN RODRIGUEZ v. AVATAR PROPERTY & CASUALTY INSURANCE COMPANY", - "download_urls": "https://edca.2dca.org/DCADocs/2016/2104/162104_65_02072018_08361072_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-2104", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "EDWARD SIMMONS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2736/172736_65_02072018_09003805_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2736", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "DERRICK JOHNSON v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3746/173746_65_02072018_09101037_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3746", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "DAVID MC LEOD v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/3729/173729_65_02072018_09092862_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-3729", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "DAVID KURT SPEARS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2720/172720_65_02072018_08595363_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2720", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "CLARENCE GARVIN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2826/172826_65_02072018_09040065_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2826", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "CHRISTOPHER G. WALKER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2825/172825_65_02072018_09032201_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2825", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "CHARLES JENKINS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2805/172805_65_02072018_09023023_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2805", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "CARMINE MACEDONIO v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2563/172563_65_02072018_08551507_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2563", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "BRYAN J. PIKE v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2880/172880_65_02072018_09061741_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2880", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "ADRIN DEVES DANIELS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/2380/162380_65_02072018_08374577_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-2380", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "YESUEM IVAN ADORNO v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1413/171413_65_02022018_08455264_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1413", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "WILLIE KIRKLAND v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1905/171905_65_02022018_08471485_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1905", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "WILLIAM MACK MC GEE v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/0087/160087_65_02022018_08251668_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-0087", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "WILL HARRISON QUARTERMAN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2831/172831_65_02022018_08585891_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2831", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "WALTER BRYANT v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/3157/163157_65_02022018_08255952_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3157", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "VICTORIA ALICIA MARTINEZ v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1206/171206_65_02022018_08440701_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1206", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "USAA GENERAL INDEMNITY INSURANCE COMPANY v. LOREAN REAVES", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1585/171585_65_02022018_08463598_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1585", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "TROY JEROME WILLIAMS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2721/172721_65_02022018_08525323_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2721", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "TOMMY CHAPMAN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/4905/164905_65_02022018_08305322_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-4905", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "THOMAS TUER v. MICHAEL P. MADDUX, ESQ. AND GREGORY M. LUDTKA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/5114/165114_65_02022018_08314078_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-5114", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "THOMAS LESHER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2808/172808_65_02022018_08565707_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2808", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "SHAWNIE OKEITH RIGGINS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/0138/170138_65_02022018_08361505_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0138", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "ROY COURAN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2766/172766_65_02022018_08552364_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2766", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "RONNIE JEROME HARVEY v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/3543/163543_65_02022018_08265298_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3543", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "RAYMOND WILLIAMS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2883/172883_65_02022018_09001765_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2883", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "RAYMOND WELDON MARSTON v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2827/172827_65_02022018_08581732_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2827", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "RASHARD BENNETT v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1070/171070_65_02022018_08414628_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1070", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "PHILLIP CRAIG DESMUKE v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1102/171102_65_02022018_08423585_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1102", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "OSCAR VELAZQUEZ v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2781/172781_65_02022018_08560607_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2781", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "NIDRIKO LENZY TILLMAN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/5313/165313_65_02022018_08331508_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-5313", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "MONTERIUS D. SHARP v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1379/171379_65_02022018_08445811_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1379", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "MARK D. BODDEN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2857/172857_65_02022018_08593865_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2857", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "JULIUS J. HALYARD, JR. v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2763/172763_65_02022018_08544412_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2763", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "JONAS TRAMELL GRIFFIN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2015/5190/155190_65_02022018_08243212_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "15-5190", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "JOHN JEROME SPEIGHTS, JR. v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/4625/164625_65_02022018_08301313_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-4625", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "JOCQUI TENAZ RICHARDSON v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/0447/170447_65_02022018_08370328_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0447", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "JAMES D. GISONDI v. BANK OF AMERICA, N. A., SUCCESSOR", - "download_urls": "https://edca.2dca.org/DCADocs/2016/3960/163960_65_02022018_08273920_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3960", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "JAMES B. QUILLIAMS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2762/172762_65_02022018_08534827_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2762", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "HUMBERTO R. CASTILLO v. BAYSIDE ENGINEERING, INC.", - "download_urls": "https://edca.2dca.org/DCADocs/2016/5281/165281_65_02022018_08322027_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-5281", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "GONZALEZ DRYWALL & FRAMING, INC. v. DEPARTMENT OF FINANCIAL SERVICES, DIVISION OF WORKERS' COMPENSATION", - "download_urls": "https://edca.2dca.org/DCADocs/2017/0011/170011_65_02022018_08344356_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0011", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "GERREN J. MC DONALD v. REGIONS BANK, D/B/A REGIONS MORTGAGE", - "download_urls": "https://edca.2dca.org/DCADocs/2017/0744/170744_65_02022018_08383310_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0744", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "F. J. G. v. R. L. M.", - "download_urls": "https://edca.2dca.org/DCADocs/2017/0490/170490_65_02022018_08374090_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0490", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "ERIC STEPHEN SCHROETER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/4512/164512_65_02022018_08293098_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-4512", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "ERIC GORDON PELLERIN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/0947/170947_65_02022018_08405457_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0947", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "DERRICK A. COLLINS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2885/172885_65_02022018_09005716_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2885", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "DANIEL G. DURAIN v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2810/172810_65_02022018_08574159_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2810", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "DANIEL E. OSBORNE v. LISA C. CARPENTER, F/ K/ A LISA C. OSBORNE", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1199/171199_65_02022018_08432243_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1199", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "DANIEL CRAWFORD v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/4173/164173_65_02022018_08281960_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-4173", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "CAROL DENISE GRINER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2107/172107_65_02022018_08484312_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-2107", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "BRANCH BANKING & TRUST COMPANY v. TURNING LEAF - LAKELAND PROP., L L C", - "download_urls": "https://edca.2dca.org/DCADocs/2017/0790/170790_65_02022018_08401068_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0790", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "ARTHUR M. KEELE v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/5539/165539_65_02022018_08335834_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-5539", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "ANDREW CHERRY v. 440 WEST, INC.", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1966/171966_65_02022018_08480022_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1966", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "ALVIN MILLER v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/0756/170756_65_02022018_08392388_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0756", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "ALEX GOMEZ v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2015/4987/154987_65_02022018_08234572_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "15-4987", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_2_per_curiam_example.html b/tests/examples/opinions/united_states/fladistctapp_2_per_curiam_example.html deleted file mode 100644 index 6fbf8706e..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_2_per_curiam_example.html +++ /dev/null @@ -1,1858 +0,0 @@ - - - - - - - Opinions - - - - - - -
    -
    - - - - -
    - - - - -
    - - - - -
    -
    - - - - - - - -
    - Opinion Type: - - - Release Month: - - - Release Day: - - - -
    - -
    - - - - -
    - All Per Curiam for February 2018 -   - -
    - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Case No.ViewCase StyleNoteDispositionDisposition Date
    - 15-4987 - - - - ALEX GOMEZ vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 15-4989 - - - - KINN SHAWN WEBER vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 15-5183 - - - - DENNIS M. HOLLERAN vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 15-5190 - - - - JONAS TRAMELL GRIFFIN vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 15-5538 - - - - PASCUAL BURCIAGA vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 15-5667 - - - - ROLANDO ROJAS vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 16-0087 - - - - WILLIAM MACK MC GEE vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 16-0864 - - - - DAVID IRVIN vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 16-0892 - - - - MARK ALAN GILSON vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 16-2104 - - - - IRAN RODRIGUEZ vs AVATAR PROPERTY & CASUALTY INSURANCE COMPANY - - - - Affirmed - - 02/07/2018 -
    - 16-2283 - - - - RICHARD LEE ESTES vs KIMBERLY JO ESTES - - - - Affirmed - - 02/07/2018 -
    - 16-2380 - - - - ADRIN DEVES DANIELS vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 16-2501 - - - - DAVID LEE HOWELL vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 16-2750 - - - - RUSHAWN COOPER vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 16-2923 - - - - SEAN HOWARD vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 16-2927 - - - - J. N. J. vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 16-3074 - - - - MELVIN QUEVEDO vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 16-3149 - - - - ANTHONY WALKER vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 16-3157 - - - - WALTER BRYANT vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 16-3220 - - - - TOMMIE LEE FREEMAN vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 16-3543 - - - - RONNIE JEROME HARVEY vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 16-3573 - - - - JACOB CLEFA vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 16-3759 - - - - JACOB CLEFA vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 16-3960 - - - - JAMES D. GISONDI vs BANK OF AMERICA, N. A., SUCCESSOR - - - - Affirmed - - 02/02/2018 -
    - 16-3973 - - - - JOHN E. MOXLEY, AS PERSONAL REPRESENTATIVE vs U - HAUL CO. OF FLORIDA, ET AL., - - - - Affirmed - - 02/07/2018 -
    - 16-4127 - - - - U. S. BANK TRUST, N. A., AS TRUSTEE vs HOUSEHOLD FINANCE CORP I I I, ET AL., - - - - Affirmed - - 02/09/2018 -
    - 16-4167 - - - - RAUL DELAROSA vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 16-4171 - - - - THOMAS HOFMEISTER vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 16-4173 - - - - DANIEL CRAWFORD vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 16-4512 - - - - ERIC STEPHEN SCHROETER vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 16-4625 - - - - JOHN JEROME SPEIGHTS, JR. vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 16-4905 - - - - TOMMY CHAPMAN vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 16-5114 - - - - THOMAS TUER vs MICHAEL P. MADDUX, ESQ. AND GREGORY M. LUDTKA - - - - Affirmed - - 02/02/2018 -
    - 16-5274 - - - - SHARESE ANN BERGERON vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 16-5281 - - - - HUMBERTO R. CASTILLO vs BAYSIDE ENGINEERING, INC. - - - - Affirmed - - 02/02/2018 -
    - 16-5313 - - - - NIDRIKO LENZY TILLMAN vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 16-5426 - - - - RONDA WEST vs U. S. BANK NATIONAL ASSOCIATION, AS TRUSTEE - - - - Affirmed - - 02/07/2018 -
    - 16-5501 - - - - BRUCE J. BISHOP, JR. vs ROBIN Y. BISHOP - - - - Affirmed - - 02/09/2018 -
    - 16-5539 - - - - ARTHUR M. KEELE vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-0011 - - - - GONZALEZ DRYWALL & FRAMING, INC. vs DEPARTMENT OF FINANCIAL SERVICES, DIVISION OF WORKERS' COMPENSATION - - - - Affirmed - - 02/02/2018 -
    - 17-0138 - - - - SHAWNIE OKEITH RIGGINS vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-0447 - - - - JOCQUI TENAZ RICHARDSON vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-0490 - - - - F. J. G. vs R. L. M. - - - - Affirmed - - 02/02/2018 -
    - 17-0562 - - - - CHRISTINE GREGORY vs DANIEL GREGORY - - - - Affirmed - - 02/09/2018 -
    - 17-0616 - - - - JACOB CLEFA vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-0702 - - - - JACKIE A. RANDALL vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-0733 - - - - SCHOOL BOARD OF POLK COUNTY vs STATE BOARD OF EDUCATION, DEPARTMENT OF EDUCATION, STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-0744 - - - - GERREN J. MC DONALD vs REGIONS BANK, D/B/A REGIONS MORTGAGE, ET AL., - - - - Affirmed - - 02/02/2018 -
    - 17-0756 - - - - ALVIN MILLER vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-0790 - - - - BRANCH BANKING & TRUST COMPANY vs TURNING LEAF - LAKELAND PROP., L L C, ET AL., - - - - Affirmed - - 02/02/2018 -
    - 17-0813 - - - - SCHOOL BOARD OF POLK COUNTY, FLORIDA vs FLORIDA CHARTER EDUCATIONAL FOUNDATION, INC., ET AL - - - - Affirmed - - 02/09/2018 -
    - 17-0947 - - - - ERIC GORDON PELLERIN vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-1036 - - - - VIRGINIA RIGGS vs FLORIDA FISH & WILDLIFE CONSERVATION COMMISSION - - - - Affirmed - - 02/09/2018 -
    - 17-1038 - - - - SPAULDING DECON, LLC AND LAURA SPAULDING vs FEDERATED NATIONAL INSURANCE COMPANY F/K/A AMERICAN VEHICLE INSURANCE COMPANY - - - - Affirmed - - 02/07/2018 -
    - 17-1070 - - - - RASHARD BENNETT vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-1102 - - - - PHILLIP CRAIG DESMUKE vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-1176 - - - - MATTHEW SYKENY vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-1192 - - - - MARY CHASE vs DYCK - O' NEAL, INC. - - - - Affirmed - - 02/09/2018 -
    - 17-1199 - - - - DANIEL E. OSBORNE vs LISA C. CARPENTER, F/ K/ A LISA C. OSBORNE - - - - Affirmed - - 02/02/2018 -
    - 17-1206 - - - - VICTORIA ALICIA MARTINEZ vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-1260 - - - - WALTER VEGA vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-1364 - - - - WILLIAM ELLISON vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-1379 - - - - MONTERIUS D. SHARP vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-1413 - - - - YESUEM IVAN ADORNO vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-1435 - - - - JENNIFER SMALL vs JASON SMALL - - - - Affirmed - - 02/09/2018 -
    - 17-1572 - - - - REGIS SANSON AND MICHELLE SANSON vs REFLECTION KEY CONDOMINIUM ASSOCIATION, INC. - - - - Affirmed - - 02/09/2018 -
    - 17-1585 - - - - USAA GENERAL INDEMNITY INSURANCE COMPANY vs LOREAN REAVES - - - - Affirmed - - 02/02/2018 -
    - 17-1694 - - - - EVELYN MARTINEZ vs FEDERAL NATIONAL MORTGAGE ASSOCIATION, ET AL - - - - Affirmed - - 02/09/2018 -
    - 17-1905 - - - - WILLIE KIRKLAND vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-1966 - - - - ANDREW CHERRY vs 440 WEST, INC. - - - - Affirmed - - 02/02/2018 -
    - 17-2107 - - - - CAROL DENISE GRINER vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-2230 - - - - ANTHONY HAWKS vs JEANNE ELLEN LIBIT, INDIVIDUALLY & AS TRUSTEE OF THE JEANNE ELLEN LIBIT TRUST, ET AL., - - - - Affirmed - - 02/09/2018 -
    - 17-2254 - - - - CEDRIC M. BUCKLON vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-2376 - - - - SCOTT CHRISTOPHER HAHN vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-2442 - - - - CLETURS SMITH vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-2490 - - - - BRYAN HEATER vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-2563 - - - - CARMINE MACEDONIO vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-2572 - - - - RANDY L. ROUNDTREE vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-2624 - - - - BED XAVIER vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-2645 - - - - TERRELL S. WILLIAMS vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-2680 - - - - SONYA PATRICE WYATT vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-2682 - - - - ROBERT BRIGGS vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-2714 - - - - MARK WILLIS MASON vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-2720 - - - - DAVID KURT SPEARS vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-2721 - - - - TROY JEROME WILLIAMS vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-2736 - - - - EDWARD SIMMONS vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-2762 - - - - JAMES B. QUILLIAMS vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-2763 - - - - JULIUS J. HALYARD, JR. vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-2766 - - - - ROY COURAN vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-2781 - - - - OSCAR VELAZQUEZ vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-2792 - - - - MICHAEL BORDERS vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-2804 - - - - MARCO MANUEL TORRES vs JUDGE MICHAEL S. WILLIAMS - - - - Affirmed - - 02/07/2018 -
    - 17-2805 - - - - CHARLES JENKINS vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-2808 - - - - THOMAS LESHER vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-2810 - - - - DANIEL G. DURAIN vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-2825 - - - - CHRISTOPHER G. WALKER vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-2826 - - - - CLARENCE GARVIN vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-2827 - - - - RAYMOND WELDON MARSTON vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-2831 - - - - WILL HARRISON QUARTERMAN vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-2853 - - - - ERIC DANIEL SPRUNGER vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-2854 - - - - SEAN JENKINS vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-2857 - - - - MARK D. BODDEN vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-2859 - - - - SAMUEL ANTONIO NESBITT, JR. vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-2880 - - - - BRYAN J. PIKE vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-2883 - - - - RAYMOND WILLIAMS vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-2885 - - - - DERRICK A. COLLINS vs STATE OF FLORIDA - - - - Affirmed - - 02/02/2018 -
    - 17-3077 - - - - BENJAMIN CROWLEY vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-3307 - - - - TROY WENDELL HIERS vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-3557 - - - - MICHAEL PALMORE vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-3594 - - - - MELVIN TOOMER vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-3607 - - - - NIKOLAOS KOUTSOURADIS vs NATIONSTAR MORTGAGE, LLC - - - - Affirmed - - 02/07/2018 -
    - 17-3640 - - - - WAYNE DORAN REVOCABLE TRUST vs JOHN MCDONALD - - - - Affirmed - - 02/09/2018 -
    - 17-3717 - - - - MARCUS BROWN vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-3720 - - - - MADEL JULIEN vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-3723 - - - - DANIEL ROBERT MILLER vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-3724 - - - - CHESTER R. HOFFMANN vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-3729 - - - - DAVID MC LEOD vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-3746 - - - - DERRICK JOHNSON vs STATE OF FLORIDA - - - - Affirmed - - 02/07/2018 -
    - 17-3783 - - - - MICHAEL ORTALIZ vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 17-3792 - - - - HENRY R. MONDY vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    -
    -
    - -
    -
    - - diff --git a/tests/examples/opinions/united_states/fladistctapp_2_written_example.compare.json b/tests/examples/opinions/united_states/fladistctapp_2_written_example.compare.json deleted file mode 100644 index f31dd6142..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_2_written_example.compare.json +++ /dev/null @@ -1,79 +0,0 @@ -[ - { - "case_dates": "2018-02-09", - "case_names": "MARITSA DEJESUS v. A. M. J. R. K. CORP. AND ALTAGRACIA GUILLEN", - "download_urls": "https://edca.2dca.org/DCADocs/2017/2374/172374_39_02092018_08530329_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "17-2374", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "JOHN ST. LOUIS v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2016/1939/161939_65_02092018_08434936_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-1939", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "GUARDIAN AD LITEM PROGRAM v. DEPT. OF CHILDREN & FAMILIES", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1807/171807_39_02092018_08495145_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "17-1807", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "GINA K. PERSAUD v. DHANIRAM DANNY PERSAUD", - "download_urls": "https://edca.2dca.org/DCADocs/2016/0568/160568_114_02092018_08401514_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part/Reversed in Part", - "docket_numbers": "16-0568", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "CHARLES W. GRIMES & BRENDA GRIMES v. KEVIN R. LOTTES", - "download_urls": "https://edca.2dca.org/DCADocs/2016/5557/165557_39_02092018_08464202_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "16-5557", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-07", - "case_names": "ANTONIO SORIA v. LUCINDA SORIA", - "download_urls": "https://edca.2dca.org/DCADocs/2017/1566/171566_114_02072018_08335499_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part/Reversed in Part", - "docket_numbers": "17-1566", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-02", - "case_names": "BRODERICK CAMERON FURLOW v. STATE OF FLORIDA", - "download_urls": "https://edca.2dca.org/DCADocs/2015/1565/151565_39_02022018_08223744_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "15-1565", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_2_written_example.html b/tests/examples/opinions/united_states/fladistctapp_2_written_example.html deleted file mode 100644 index e50db549e..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_2_written_example.html +++ /dev/null @@ -1,276 +0,0 @@ - - - - - - - Opinions - - - - - - -
    -
    - - - - -
    - - - - -
    - - - - -
    -
    - - - - - - - -
    - Opinion Type: - - - Release Month: - - - Release Day: - - - -
    - -
    - - - - -
    - All Written for February 2018 -   - -
    - - - - - -
    -
    - - - - - - - - - - - - - - - - - - -
    Case No.ViewCase StyleNoteDispositionDisposition Date
    - 15-1565 - - - - BRODERICK CAMERON FURLOW vs STATE OF FLORIDA - - - - Reversed - - 02/02/2018 -
    - 16-0568 - - - - GINA K. PERSAUD vs DHANIRAM DANNY PERSAUD - - - - Affirmed in Part/Reversed in Part - - 02/09/2018 -
    - 16-1939 - - - - JOHN ST. LOUIS vs STATE OF FLORIDA - - - - Affirmed - - 02/09/2018 -
    - 16-5557 - - - - CHARLES W. GRIMES & BRENDA GRIMES vs KEVIN R. LOTTES, ET AL., - - - - Reversed - - 02/09/2018 -
    - 17-1566 - - - - ANTONIO SORIA vs LUCINDA SORIA - - - - Affirmed in Part/Reversed in Part - - 02/07/2018 -
    - 17-1807 - - - - GUARDIAN AD LITEM PROGRAM vs DEPT. OF CHILDREN & FAMILIES - - - - Reversed - - 02/09/2018 -
    - 17-2374 - - - - MARITSA DEJESUS vs A. M. J. R. K. CORP. AND ALTAGRACIA GUILLEN - - - - Reversed - - 02/09/2018 -
    -
    -
    - -
    -
    - - diff --git a/tests/examples/opinions/united_states/fladistctapp_3_example.compare.json b/tests/examples/opinions/united_states/fladistctapp_3_example.compare.json index 5257b25e4..659bc9ea7 100644 --- a/tests/examples/opinions/united_states/fladistctapp_3_example.compare.json +++ b/tests/examples/opinions/united_states/fladistctapp_3_example.compare.json @@ -1,222 +1,122 @@ [ { - "case_dates": "2020-10-07", - "case_names": "Z ROOFING, INC. v. BANK OF AMERICA, N.A.", - "download_urls": "/pre_opinion_content_download/676028", + "case_dates": "2024-08-28", + "case_names": "Sean Barnes v. the State of Florida", + "download_urls": "https://3dca.flcourts.gov/pre_opinion_content_download/2439723", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-0712", - "case_name_shorts": "" + "dispositions": "Affirmed.", + "docket_numbers": "3D2022-0115", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2020-10-07", - "case_names": "VILLAS ON THE GREEN HOMEOWNER'S ASSOCIATION, INC. v. AVENTURA ISLES MASTER HOMEOWNERS' ASSOCIATION, INC.", - "download_urls": "/pre_opinion_content_download/676041", + "case_dates": "2024-08-28", + "case_names": "Rodrick Wimblery v. the State of Florida", + "download_urls": "https://3dca.flcourts.gov/pre_opinion_content_download/2439728", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-1981", - "case_name_shorts": "" + "dispositions": "Affirmed.", + "docket_numbers": "3D2023-0038", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2020-10-07", - "case_names": "TODD WATSON v. THE STATE OF FLORIDA", - "download_urls": "/pre_opinion_content_download/676049", + "case_dates": "2024-08-28", + "case_names": "Merana Toussaint v. Jonel Toussaint", + "download_urls": "https://3dca.flcourts.gov/pre_opinion_content_download/2439715", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-0973", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "3D2023-0812", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2020-10-07", - "case_names": "T&G INVESTMENT PARTNERS, INC., etc. v. PRIME ESTATES INVESTMENTS & HOLDINGS, LLC, etc.", - "download_urls": "/pre_opinion_content_download/676044", + "case_dates": "2024-08-28", + "case_names": "First Class Parking Systems LLC v. Ilya Bykov", + "download_urls": "https://3dca.flcourts.gov/pre_opinion_content_download/2439722", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-1375", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "3D2023-1245", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2020-10-07", - "case_names": "SAFEPOINT INSURANCE COMPANY v. LUIS GONZALEZ", - "download_urls": "/pre_opinion_content_download/676038", + "case_dates": "2024-08-28", + "case_names": "Elizabeth Fojon v. Ascendant Commercial Insurance Company", + "download_urls": "https://3dca.flcourts.gov/pre_opinion_content_download/2439733", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-1050", - "case_name_shorts": "" + "dispositions": "Affirmed.", + "docket_numbers": "3D2023-1400", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2020-10-07", - "case_names": "REGINALD WRIGHT v. THE STATE OF FLORIDA", - "download_urls": "/pre_opinion_content_download/676052", + "case_dates": "2024-08-28", + "case_names": "Deymus Ramos Gonzalez v. the State of Florida", + "download_urls": "https://3dca.flcourts.gov/pre_opinion_content_download/2439726", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-0379", - "case_name_shorts": "" + "dispositions": "Affirmed; remanded with instructions.", + "docket_numbers": "3D2021-1445", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2020-10-07", - "case_names": "POET THEATRICALS MARINE, LLC v. CELEBRITY CRUISES, INC.", - "download_urls": "/pre_opinion_content_download/676030", + "case_dates": "2024-08-28", + "case_names": "City of Opa-Locka, Florida v. Universal Waste Services of Florida, Inc.", + "download_urls": "https://3dca.flcourts.gov/pre_opinion_content_download/2439714", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-1339", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "3D2023-0675", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2020-10-07", - "case_names": "PEOPLE'S TRUST INSURANCE COMPANY v. FARUA PORTUONDO", - "download_urls": "/pre_opinion_content_download/676034", + "case_dates": "2024-08-28", + "case_names": "Citizens Property Insurance Corporation v. Martha Prol", + "download_urls": "https://3dca.flcourts.gov/pre_opinion_content_download/2439710", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-0266", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "3D2023-0158", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2020-10-07", - "case_names": "PEDRO RODRIGUEZ v. THE STATE OF FLORIDA", - "download_urls": "/pre_opinion_content_download/676045", + "case_dates": "2024-08-28", + "case_names": "Cash Wallace Pawley, Sr. v. First National Bank of South Miami, N.A.", + "download_urls": "https://3dca.flcourts.gov/pre_opinion_content_download/2439732", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-0363", - "case_name_shorts": "" + "dispositions": "Affirmed in part; dismissed in part.", + "docket_numbers": "3D2023-0724", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2020-10-07", - "case_names": "OCWEN LOAN SERVICING, LLC v. 21 ASSET MANAGEMENT HOLDING, LLC", - "download_urls": "/pre_opinion_content_download/676037", + "case_dates": "2024-08-28", + "case_names": "Armando Gutierrez v. Caridad Gutierrez", + "download_urls": "https://3dca.flcourts.gov/pre_opinion_content_download/2439737", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-0983", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-07", - "case_names": "MH NATIONAL INC. v. AMERIJO INVESTMENT, INC.", - "download_urls": "/pre_opinion_content_download/676043", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-2003", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-07", - "case_names": "LUIS LA-CASSE v. MARK S. INCH, etc.", - "download_urls": "/pre_opinion_content_download/676042", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-1336", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-07", - "case_names": "LENZY BERNELL JOHNSON v. THE STATE OF FLORIDA", - "download_urls": "/pre_opinion_content_download/676048", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-0889", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-07", - "case_names": "KEEGAN LEE v. KIERSTIN MATSUDA", - "download_urls": "/pre_opinion_content_download/676035", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-0439", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-07", - "case_names": "ICONBRICKELL CONDOMINIUM NO. THREE ASSOCIATION, INC. v. NEW MEDIA CONSULTING, LLC", - "download_urls": "/pre_opinion_content_download/676027", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-0521", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-07", - "case_names": "HERIBERTO ERNESTO MARTINEZ v. SIREN REYES", - "download_urls": "/pre_opinion_content_download/675972", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-1054", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-07", - "case_names": "GARRICK GIDEON JOHN v. THE STATE OF FLORIDA", - "download_urls": "/pre_opinion_content_download/676050", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-1066", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-07", - "case_names": "ESCADOTE I CORPORATION v. OCEAN THREE CONDOMINIUM ASSOCIATION, INC.", - "download_urls": "/pre_opinion_content_download/676026", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-0500", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-07", - "case_names": "ELIZABETH PEREZ v. OLMEN D. SALMERON", - "download_urls": "/pre_opinion_content_download/676031", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-2375", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-07", - "case_names": "CARLOS SOCARRAS v. THE STATE OF FLORIDA", - "download_urls": "/pre_opinion_content_download/676051", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-1181", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-07", - "case_names": "BRITISH D. MOSS v. THE STATE OF FLORIDA", - "download_urls": "/pre_opinion_content_download/676046", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-0625", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-07", - "case_names": "A.O.H., A JUVENILE v. THE STATE OF FLORIDA", - "download_urls": "/pre_opinion_content_download/676047", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-0853", - "case_name_shorts": "" + "dispositions": "Affirmed in part, reversed in part, and remanded with instructions.", + "docket_numbers": "3D2023-1434", + "case_name_shorts": "", + "per_curiam": true } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_3_example.html b/tests/examples/opinions/united_states/fladistctapp_3_example.html index 79adb3d17..edeac68ed 100644 --- a/tests/examples/opinions/united_states/fladistctapp_3_example.html +++ b/tests/examples/opinions/united_states/fladistctapp_3_example.html @@ -1,954 +1,378 @@ -
    - - - - - - - - - - - - - - - - - - -
    - - - -
    - -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + File + + Type + + + + Case No. + + + + Case Name + + + + Disposition + + + + Note + + Release Date + + +
    + + PDF Download of 2021-1445 + + + + + Written + + 2021-1445 + + Deymus Ramos Gonzalez v. The State of Florida + + Appeal - Authored Opinion + + Affirmed; remanded with instructions. + + 08/28/24 +
    + + PDF Download of 2022-0115 + + + + + Written + + 2022-0115 + + Sean Barnes v. The State of Florida + + Appeal - Authored Opinion + + Affirmed. + + 08/28/24 +
    + + PDF Download of 2023-0038 + + + + + Written + + 2023-0038 + + Rodrick Wimblery v. The State of Florida + + Appeal - Per Curiam Opinion + + Affirmed. + + 08/28/24 +
    + + PDF Download of 2023-0158 + + + + + Written + + 2023-0158 + + Citizens Property Insurance Corporation v. Martha Prol + + Appeal - Citation + + Affirmed + + 08/28/24 +
    + + PDF Download of 2023-0675 + + + + + Written + + 2023-0675 + + City of Opa-Locka, Florida v. Universal Waste Services of Florida, Inc. + + Appeal - Citation + + Affirmed + + 08/28/24 +
    + + PDF Download of 2023-0724 + + + + + Written + + 2023-0724 + + Cash Wallace Pawley, Sr. v. First National Bank of South Miami, N.A., et al. + + Appeal - Per Curiam Opinion + + Affirmed in part; dismissed in part. + + 08/28/24 +
    + + PDF Download of 2023-0812 + + + + + Written + + 2023-0812 + + Merana Toussaint v. Jonel Toussaint + + Appeal - Citation + + Affirmed + + 08/28/24 +
    + + PDF Download of 2023-1245 + + + + + Written + + 2023-1245 + + First Class Parking Systems LLC v. Ilya Bykov + + Appeal - Citation + + Affirmed + + 08/28/24 +
    + + PDF Download of 2023-1400 + + + + + Written + + 2023-1400 + + Elizabeth Fojon v. Ascendant Commercial Insurance Company + + Appeal - Authored Opinion + + Affirmed. + + 08/28/24 +
    + + PDF Download of 2023-1434 + + + + + Written + + 2023-1434 + + Armando Gutierrez v. Caridad Gutierrez + + Appeal - Per Curiam Opinion + + Affirmed in part, reversed in part, and remanded with instructions. + + 08/28/24 +
    + +
    + +
    + + + Export all + 3DCA + Opinions + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - File - - Type - - - - Case No. - - - - Case Name - - - - Disposition - - - - Note - - Release Date - - -
    - - PDF Download of 19-1375 - - - - - PCA - - 19-1375 - - T&G INVESTMENT PARTNERS, INC., etc., et al., vs PRIME ESTATES INVESTMENTS & HOLDINGS, LLC, etc., et al., - - Affirmed - - - 10/07/20 -
    - - PDF Download of 19-1981 - - - - - PCA - - 19-1981 - - VILLAS ON THE GREEN HOMEOWNER'S ASSOCIATION, INC., vs AVENTURA ISLES MASTER HOMEOWNERS' ASSOCIATION, INC., et al., - - Affirmed - - - 10/07/20 -
    - - PDF Download of 19-2003 - - - - - PCA - - 19-2003 - - MH NATIONAL INC. vs AMERIJO INVESTMENT, INC., et al., - - Affirmed - - - 10/07/20 -
    - - PDF Download of 20-0363 - - - - - PCA - - 20-0363 - - PEDRO RODRIGUEZ, vs THE STATE OF FLORIDA, - - Affirmed - - - 10/07/20 -
    - - PDF Download of 20-0625 - - - - - PCA - - 20-0625 - - BRITISH D. MOSS, vs THE STATE OF FLORIDA, - - Affirmed - - - 10/07/20 -
    - - PDF Download of 20-0853 - - - - - PCA - - 20-0853 - - A.O.H., A JUVENILE, vs THE STATE OF FLORIDA, - - Affirmed - - - 10/07/20 -
    - - PDF Download of 20-0889 - - - - - PCA - - 20-0889 - - LENZY BERNELL JOHNSON, vs THE STATE OF FLORIDA, - - Affirmed - - - 10/07/20 -
    - - PDF Download of 20-0973 - - - - - PCA - - 20-0973 - - TODD WATSON, vs THE STATE OF FLORIDA, - - Affirmed - - - 10/07/20 -
    - - PDF Download of 20-1066 - - - - - PCA - - 20-1066 - - GARRICK GIDEON JOHN, vs THE STATE OF FLORIDA, - - Affirmed - - - 10/07/20 -
    - - PDF Download of 20-1181 - - - - - PCA - - 20-1181 - - CARLOS SOCARRAS, vs THE STATE OF FLORIDA, - - Affirmed - - - 10/07/20 -
    - - PDF Download of 19-0379 - - - - - Written - - 19-0379 - - REGINALD WRIGHT vs THE STATE OF FLORIDA - - Non-dispositive - - On Motion for Rehearing - - 10/07/20 -
    - - PDF Download of 19-0500 - - - - - Written - - 19-0500 - - ESCADOTE I CORPORATION, et al., vs OCEAN THREE CONDOMINIUM ASSOCIATION, INC., et al., - - Affirmed - - - 10/07/20 -
    - - PDF Download of 19-0521 - - - - - Written - - 19-0521 - - ICONBRICKELL CONDOMINIUM NO. THREE ASSOCIATION, INC. et al., vs NEW MEDIA CONSULTING, LLC, - - Affirmed - - - 10/07/20 -
    - - PDF Download of 19-0712 - - - - - Written - - 19-0712 - - Z ROOFING, INC., vs BANK OF AMERICA, N.A., - - Reversed - - and remanded. - - 10/07/20 -
    - - PDF Download of 19-1339 - - - - - Written - - 19-1339 - - POET THEATRICALS MARINE, LLC, et al., vs CELEBRITY CRUISES, INC. - - Reversed - - and remanded with instructions. - - 10/07/20 -
    - - PDF Download of 19-2375 - - - - - Written - - 19-2375 - - ELIZABETH PEREZ, vs OLMEN D. SALMERON, et al., - - Affirmed - - - 10/07/20 -
    - - PDF Download of 20-0266 - - - - - Written - - 20-0266 - - PEOPLE'S TRUST INSURANCE COMPANY, vs FARUA PORTUONDO, - - Reversed - - and remanded with instructions. - - 10/07/20 -
    - - PDF Download of 20-0439 - - - - - Written - - 20-0439 - - KEEGAN LEE, vs KIERSTIN MATSUDA, - - Reversed - - and remanded for further proceedings. - - 10/07/20 -
    - - PDF Download of 20-0983 - - - - - Written - - 20-0983 - - OCWEN LOAN SERVICING, LLC, et al., vs 21 ASSET MANAGEMENT HOLDING, LLC, - - Granted - - Petition granted, order quashed, and cause remanded. - - 10/07/20 -
    - - PDF Download of 20-1050 - - - - - Written - - 20-1050 - - SAFEPOINT INSURANCE COMPANY, vs LUIS GONZALEZ, et al., - - Granted - - Petition granted and order quashed. - - 10/07/20 -
    - - PDF Download of 20-1054 - - - - - Written - - 20-1054 - - HERIBERTO ERNESTO MARTINEZ, vs SIREN REYES, - - Affirmed - - - 10/07/20 -
    - - PDF Download of 20-1336 - - - - - Written - - 20-1336 - - LUIS LA-CASSE, vs MARK S. INCH, etc., - - Dismissed - - Dismissed without prejudice. - - 10/07/20 -
    - -
    -
    - - - - -
    -
    -
    - -
    - +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_4_example.compare.json b/tests/examples/opinions/united_states/fladistctapp_4_example.compare.json new file mode 100644 index 000000000..fc11fb8fa --- /dev/null +++ b/tests/examples/opinions/united_states/fladistctapp_4_example.compare.json @@ -0,0 +1,98 @@ +[ + { + "case_dates": "2023-11-01", + "case_names": "Wilkin Jose AcostaFigueroa v. State of Florida", + "download_urls": "https://4dca.flcourts.gov/pre_opinion_content_download/943187", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Granted", + "docket_numbers": "4D2023-1542", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-11-01", + "case_names": "Michael Bixby v. ECP Capital Partners, Inc.", + "download_urls": "https://4dca.flcourts.gov/pre_opinion_content_download/943183", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed", + "docket_numbers": "4D2023-0897", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-11-01", + "case_names": "Linda Petti v. Marshall Sklar", + "download_urls": "https://4dca.flcourts.gov/pre_opinion_content_download/934158", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "4D2023-0930", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2023-11-01", + "case_names": "John Matthews Baker v. State of Florida", + "download_urls": "https://4dca.flcourts.gov/pre_opinion_content_download/943182", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in Part/Reversed in Part", + "docket_numbers": "4D2023-0656", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2023-11-01", + "case_names": "Gerald Givogue and Mary Burliuk Holt v. Lighthouse Bay Condominium Association, Inc.", + "download_urls": "https://4dca.flcourts.gov/pre_opinion_content_download/935273", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed", + "docket_numbers": "4D2023-0188", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-11-01", + "case_names": "Gary R. Riess W v. Aimee Riess", + "download_urls": "https://4dca.flcourts.gov/pre_opinion_content_download/934160", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "4D2023-0995", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-11-01", + "case_names": "Dr. Lydia Smith v. Capital One Auto Finance, Inc.", + "download_urls": "https://4dca.flcourts.gov/pre_opinion_content_download/936868", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "4D2023-0948", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-11-01", + "case_names": "Armando Valdez v. Department of Revenue, Child Support Enforcement and Arline Nayley Montano", + "download_urls": "https://4dca.flcourts.gov/pre_opinion_content_download/943186", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "4D2023-1474", + "case_name_shorts": "", + "per_curiam": false + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_4_example.html b/tests/examples/opinions/united_states/fladistctapp_4_example.html new file mode 100644 index 000000000..3abd23e4e --- /dev/null +++ b/tests/examples/opinions/united_states/fladistctapp_4_example.html @@ -0,0 +1,2178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Fourth District Court of Appeal + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + +
    + + +
    +
    +
    +
    + + + + +
    +
    +
    + +

    + Search Fourth District Court of Appeal +

    + + +
    + + + + +
    + + +
    + +
    +
    +
    + + + + +
    +

    Enter Search Terms

    +
    +
    + + +
    +
    + +
    + +
    + + Scope of search (select all that apply): + +
    +
      + +
    • +
      + +
    • + +
    • +
      + +
    • + +
    • +
      + +
    • + +
    • +
      + +
    • + +
    • +
      + +
    • + +
    • +
      + +
    • + +
    • +
      + +
    • +
    • +
      + +
    • +
    + +
    +
    +
    + +
    + +
    +
    +
    + + +
    +
    +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + +
    + +
    + +
    + +
    + Search options: + +
    + +
    +
    + Opinion Type: +
    +
    +
      + +
    • + +
    • + +
    • + +
    • +
    +
    +
    + +
    +
    + Release Range: +
    +
    +
    + +
    +
    + +
    +
    +
    + +
    +
    + Release Date: +
    +
    + + + +
    + +
    + +
    +
    + + + + + +
    +
    + +
    +
    +
    +
    + +
    +
    +
    +
    + + + +
    +
    +
    +
    + +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + File + + Type + + + + Case No. + + + + Case Name + + + + Disposition + + + + Note + + Release Date + + +
    + + PDF Download of 2023-0188 + + + + + Written + + 2023-0188 + + Gerald Givogue and Mary Burliuk Holt v. Lighthouse Bay Condominium Association, Inc., et al + + Appeal - Authored Opinion + + Reversed + + 11/01/23 +
    + + PDF Download of 2023-0656 + + + + + Written + + 2023-0656 + + John Matthews Baker v. State of Florida + + Appeal - Per Curiam Opinion + + Affirmed in Part/Reversed in Part + + 11/01/23 +
    + + PDF Download of 2023-0897 + + + + + Written + + 2023-0897 + + Michael Bixby v. ECP Capital Partners, Inc., et al. + + Appeal - Authored Opinion + + Reversed + + 11/01/23 +
    + + PDF Download of 2023-0930 + + + + + Written + + 2023-0930 + + Linda Petti v. Marshall Sklar + + Appeal - Per Curiam Opinion + + Affirmed + + 11/01/23 +
    + + PDF Download of 2023-0948 + + + + + Written + + 2023-0948 + + Dr. Lydia Smith v. Capital One Auto Finance, Inc. + + Appeal - Authored Opinion + + Affirmed + + 11/01/23 +
    + + PDF Download of 2023-0995 + + + + + Written + + 2023-0995 + + Gary R. Riess *W* v. Aimee Riess + + Appeal - Citation + + Affirmed + + 11/01/23 +
    + + PDF Download of 2023-1474 + + + + + Written + + 2023-1474 + + Armando Valdez v. Department of Revenue, Child Support Enforcement and Arline Nayley Montano + + Appeal - Citation + + Affirmed + + 11/01/23 +
    + + PDF Download of 2023-1542 + + + + + Written + + 2023-1542 + + Wilkin Jose AcostaFigueroa v. State of Florida + + Petition - Authored Opinion + + Granted + + 11/01/23 +
    + +
    + +
    + + + Export all + 4DCA + Opinions + + + + +
    +
    +
    + +
    +
    +
    + +
    + + + +
    +
    + +
    +
    +
    + + + + + +
    + + + +

    + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_4_pc_example.compare.json b/tests/examples/opinions/united_states/fladistctapp_4_pc_example.compare.json deleted file mode 100644 index f691dcdc3..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_4_pc_example.compare.json +++ /dev/null @@ -1,387 +0,0 @@ -[ - { - "case_dates": "2017-06-22", - "case_names": "WILLIE FRANK BEAN, JR. v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2017/1157/171157_DC05_06222017_094722_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1157", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "V.C.P., THE FATHER v. DEPT. OF CHILDREN & FAMILIES", - "download_urls": "https://edca.4dca.org/DCADocs/2017/0719/170719_DC05_06222017_094242_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0719", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "TYSON L. CHAFFIN v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2015/4390/154390_DC05_06222017_085741_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "15-4390", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "TIMOTHY MATTIER v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2017/1170/171170_DC05_06222017_094808_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1170", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "THEODORE PULLIAM v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/3913/163913_DC05_06222017_093118_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3913", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "TERRELL REID v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/0537/160537_DC05_06222017_090013_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-0537", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "TELLY KAVANTZAS v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2017/1095/171095_DC05_06222017_094611_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1095", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "STEVEN R. POWELL v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2017/1036/171036_DC05_06222017_094521_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1036", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "SOUTHERN OWNERS INSURANCE CO v. SCI TOWERS OF FLORIDA, INC.", - "download_urls": "https://edca.4dca.org/DCADocs/2016/0706/160706_DC05_06222017_090120_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-0706", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "SLOBODAN DRAGIC v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2017/0960/170960_DC05_06222017_094439_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0960", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "ROYCE GOLDSMITH v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/3109/163109_DC05_06222017_092640_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3109", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "ROBERT EASLEY W v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/4255/164255_DC05_06222017_093309_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-4255", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "NAKIA RENALDO TITIO GORDON v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2015/2555/152555_DC05_06222017_084912_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "15-2555", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "MICHAEL JONES v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/1399/161399_DC05_06222017_090338_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-1399", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "MARK ALLEN WILKIE v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/3761/163761_DC05_06222017_093027_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3761", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "MARCO MOLANO and MARCIA MOLANO v. CITIMORTGAGE, INC.", - "download_urls": "https://edca.4dca.org/DCADocs/2017/0218/170218_DC05_06222017_093539_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0218", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "MANUEL TALAVERA v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2017/1493/171493_DC05_06222017_095007_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1493", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "MAITLAND STEWART v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/3000/163000_DC05_06222017_092541_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3000", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "JOSEPH GAMMARO v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2017/0702/170702_DC05_06222017_094156_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0702", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "JOHN CARROLL o/b/o C.C. AND C.C. v. VANETTA LACHHMAN A/K/A VANNETA LACHHMAN", - "download_urls": "https://edca.4dca.org/DCADocs/2017/0184/170184_DC05_06222017_093448_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0184", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "JAMES A. MAYFIELD v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/2161/162161_DC05_06222017_092237_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-2161", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "GRADY LEWIS v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/0050/160050_DC05_06222017_085844_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-0050", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "GEORGE D. KIMBRELL v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2017/1333/171333_DC05_06222017_094908_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1333", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "FRANK MAZZUCCA v. ESTATE OF MARY C. MAZZUCCA, RITA A. PATRICK, as Personal Representative, FRED CATFISH ABBOTT, ABBOTT LAW GROUP and ROGER N. MESSER", - "download_urls": "https://edca.4dca.org/DCADocs/2016/2578/162578_DC05_06222017_092354_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-2578", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "EDGAR LOWERY, JR. v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2017/0795/170795_DC05_06222017_094328_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0795", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "DONELL JACKSON v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2017/0271/170271_DC05_06222017_093629_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0271", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "CYNTHIA SCHWARTZ v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/1603/161603_DC05_06222017_092146_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-1603", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "CHRISTOPHER SCHOFIELD v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/3555/163555_DC05_06222017_092758_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3555", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "CHARLOTTE G. DURANTE v. DEPT. OF BUSINESS & PROFESSIONAL REG.", - "download_urls": "https://edca.4dca.org/DCADocs/2016/3633/163633_DC05_06222017_092930_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-3633", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "CARL WRIGHT THAMES v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/1531/161531_DC05_06222017_090508_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-1531", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "C.M.G., THE MOTHER v. DEPT. OF CHILDREN & FAMILIES", - "download_urls": "https://edca.4dca.org/DCADocs/2017/0038/170038_DC05_06222017_093404_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-0038", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "BRIAN KABLITZ v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2017/1682/171682_DC05_06222017_095121_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "17-1682", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "ANNIE MARIE DELGADO v. CARL DOMINO and FRIENDS OF CARL DOMINO", - "download_urls": "https://edca.4dca.org/DCADocs/2016/2636/162636_DC05_06222017_092451_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-2636", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "ANNA RITA TALERICO v. SAMANTHA GAMERO and ON THE OCEAN, INC.", - "download_urls": "https://edca.4dca.org/DCADocs/2016/4034/164034_DC05_06222017_093228_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-4034", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "ALAN LIFT v. THE LAW OFFICE OF JAMES R. RICH, P.A., AND LES C. SHIELDS, ETC.", - "download_urls": "https://edca.4dca.org/DCADocs/2015/2923/152923_DC05_06222017_085021_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "15-2923", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_4_pc_example.html b/tests/examples/opinions/united_states/fladistctapp_4_pc_example.html deleted file mode 100644 index c64b37052..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_4_pc_example.html +++ /dev/null @@ -1,611 +0,0 @@ - - - - - - - Opinions - - - - - - -
    -
    - -
    - -
    - - - -
    -
    - -
    - - - - -
    - Most Recent Per Curiam Opinions -   - -
    - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Case No.ViewCase StyleNoteDispositionDisposition Date
    - 15-2555 - - - - NAKIA RENALDO TITIO GORDON vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 15-2923 - - - - ALAN LIFT vs THE LAW OFFICE OF JAMES R. RICH, P.A., AND LES C. SHIELDS, ETC. - - - - Affirmed - - 06/22/2017 -
    - 15-4390 - - - - TYSON L. CHAFFIN vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 16-0050 - - - - GRADY LEWIS vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 16-0537 - - - - TERRELL REID vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 16-0706 - - - - SOUTHERN OWNERS INSURANCE CO vs SCI TOWERS OF FLORIDA, INC. - - - - Affirmed - - 06/22/2017 -
    - 16-1399 - - - - MICHAEL JONES vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 16-1531 - - - - CARL WRIGHT THAMES vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 16-1603 - - - - CYNTHIA SCHWARTZ vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 16-2161 - - - - JAMES A. MAYFIELD vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 16-2578 - - - - FRANK MAZZUCCA vs ESTATE OF MARY C. MAZZUCCA, RITA A. PATRICK, as Personal Representative, FRED CATFISH ABBOTT, ABBOTT LAW GROUP and ROGER N. MESSER - - - - Affirmed - - 06/22/2017 -
    - 16-2636 - - - - ANNIE MARIE DELGADO vs CARL DOMINO and FRIENDS OF CARL DOMINO - - - - Affirmed - - 06/22/2017 -
    - 16-3000 - - - - MAITLAND STEWART vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 16-3109 - - - - ROYCE GOLDSMITH vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 16-3555 - - - - CHRISTOPHER SCHOFIELD vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 16-3633 - - - - CHARLOTTE G. DURANTE vs DEPT. OF BUSINESS & PROFESSIONAL REG. - - - - Affirmed - - 06/22/2017 -
    - 16-3761 - - - - MARK ALLEN WILKIE vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 16-3913 - - - - THEODORE PULLIAM vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 16-4034 - - - - ANNA RITA TALERICO vs SAMANTHA GAMERO and ON THE OCEAN, INC. - - - - Affirmed - - 06/22/2017 -
    - 16-4255 - - - - ROBERT EASLEY *W* vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 17-0038 - - - - C.M.G., THE MOTHER vs DEPT. OF CHILDREN & FAMILIES , ET AL. - - - - Affirmed - - 06/22/2017 -
    - 17-0184 - - - - JOHN CARROLL o/b/o C.C. AND C.C. vs VANETTA LACHHMAN A/K/A VANNETA LACHHMAN - - - - Affirmed - - 06/22/2017 -
    - 17-0218 - - - - MARCO MOLANO and MARCIA MOLANO vs CITIMORTGAGE, INC., - - - - Affirmed - - 06/22/2017 -
    - 17-0271 - - - - DONELL JACKSON vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 17-0702 - - - - JOSEPH GAMMARO vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 17-0719 - - - - V.C.P., THE FATHER vs DEPT. OF CHILDREN & FAMILIES* - - - - Affirmed - - 06/22/2017 -
    - 17-0795 - - - - EDGAR LOWERY, JR. vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 17-0960 - - - - SLOBODAN DRAGIC vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 17-1036 - - - - STEVEN R. POWELL vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 17-1095 - - - - TELLY KAVANTZAS vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 17-1157 - - - - WILLIE FRANK BEAN, JR. vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 17-1170 - - - - TIMOTHY MATTIER vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 17-1333 - - - - GEORGE D. KIMBRELL vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 17-1493 - - - - MANUEL TALAVERA vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    - 17-1682 - - - - BRIAN KABLITZ vs STATE OF FLORIDA - - - - Affirmed - - 06/22/2017 -
    -
    -
    - -
    -
    - - diff --git a/tests/examples/opinions/united_states/fladistctapp_4_written_example.compare.json b/tests/examples/opinions/united_states/fladistctapp_4_written_example.compare.json deleted file mode 100644 index e0c1e60f3..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_4_written_example.compare.json +++ /dev/null @@ -1,299 +0,0 @@ -[ - { - "case_dates": "2017-06-21", - "case_names": "WYLIE BILLUPS v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2014/3130/143130_DC13_06212017_085043_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "14-3130", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "WELLS FARGO EQUIPMENT FINANCE v. BACJET, LLC", - "download_urls": "https://edca.4dca.org/DCADocs/2016/2594/162594_DC13_06212017_095315_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "16-2594", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "TAMARICK CRUZ v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/0423/160423_DC08_06212017_094132_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part/Reversed in Part", - "docket_numbers": "16-0423", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "STANLEY SHERMAN v. PAUL SAVASTANO", - "download_urls": "https://edca.4dca.org/DCADocs/2016/2793/162793_DC13_06212017_095753_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "16-2793", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "ROCCO GIORDANO v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2015/4451/154451_DC05_06212017_091815_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "15-4451", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "ORLANDO MCCORMACK v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2015/2886/152886_DC08_06212017_091402_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part/Reversed in Part", - "docket_numbers": "15-2886", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "OIL, LLC AND MAXIMILIANO RUSSO v. STAMAX CORP.", - "download_urls": "https://edca.4dca.org/DCADocs/2017/0175/170175_DC03_06212017_101253_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Granted", - "docket_numbers": "17-0175", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "NATIONSTAR MORTGAGE LLC, etc. v. MARIE ANN GLASS", - "download_urls": "https://edca.4dca.org/DCADocs/2015/4561/154561_NOND_06212017_093110_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Non-dispositive", - "docket_numbers": "15-4561", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "MICKAEL JACKSON v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2014/4918/144918_DC13_06212017_090504_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "14-4918", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "LEON REID v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2012/2303/122303_DC13_06212017_084116_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "12-2303", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "JEROME LORD v. LOUISE LORD", - "download_urls": "https://edca.4dca.org/DCADocs/2016/2290/162290_DC13_06212017_094807_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "16-2290", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "JAMES SAINT-FORT v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2015/4708/154708_DC05_06212017_093300_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "15-4708", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "JAIME DUM LERNER v. VICKY LEVY DUM", - "download_urls": "https://edca.4dca.org/DCADocs/2016/4264/164264_DC08_06212017_100550_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part/Reversed in Part", - "docket_numbers": "16-4264", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "GWEN E. RICHBELL, ALAN RICHBELL v. ERNST TOUSSAINT, WHOLFNEY K. JEAN FRANCOIS", - "download_urls": "https://edca.4dca.org/DCADocs/2014/4549/144549_DC08_06212017_105122_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part/Reversed in Part", - "docket_numbers": "14-4549", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "GROSSMAN, ROTH, P.A. v. KRISTI MELLEN, etc.", - "download_urls": "https://edca.4dca.org/DCADocs/2014/1766/141766_DC13_06212017_084840_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "14-1766", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "G.R.N., A CHILD v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/3687/163687_DC13_06212017_100113_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "16-3687", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "DONNA FANALI, etc. v. R.J. REYNOLDS TOBACCO COMPANY", - "download_urls": "https://edca.4dca.org/DCADocs/2016/0067/160067_DC05_06212017_093946_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed", - "docket_numbers": "16-0067", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "DAVID WAYNE CARTER v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2015/3132/153132_NOND_06212017_115039_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Non-dispositive", - "docket_numbers": "15-3132", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "D.D.S., A CHILD v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/2676/162676_DC13_06212017_095635_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "16-2676", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "D.B., A CHILD v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2015/1553/151553_DC13_06212017_090731_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "15-1553", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "CYNTHIA RUSSOMANO f/k/a CYNTHIA C. SPALL v. JOSEPH MARESCA, and JEM PALM BEACH, LLC, etc.", - "download_urls": "https://edca.4dca.org/DCADocs/2016/1255/161255_DC08_06212017_094653_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part/Reversed in Part", - "docket_numbers": "16-1255", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "CORPORATE CREATIONS ENT. LLC, f/d/b/a CORP. CREATIONS ENT. INC. v. BRIAN R. FONS ATTORNEY AT LAW P.C. and BRIAN R. FONS", - "download_urls": "https://edca.4dca.org/DCADocs/2016/0927/160927_DC13_06212017_094339_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "16-0927", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "CO. OF CUMBERLAND, NEW JERSEY v. ANDREW K. KWAP", - "download_urls": "https://edca.4dca.org/DCADocs/2016/3250/163250_DC13_06212017_095941_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "16-3250", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "CITIBANK, N.A., AS TRUSTEE, etc. v. TANGERINE J. MANNING", - "download_urls": "https://edca.4dca.org/DCADocs/2015/4526/154526_DC13_06212017_092644_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "15-4526", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "CHRISTOPHER ROUNDTREE v. STATE OF FLORIDA", - "download_urls": "https://edca.4dca.org/DCADocs/2016/1153/161153_DC08_06212017_094536_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part/Reversed in Part", - "docket_numbers": "16-1153", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "CHILDREN'S MEDICAL CENTER, P.A v. JAKYUNG KIM", - "download_urls": "https://edca.4dca.org/DCADocs/2016/4319/164319_DC03_06212017_101016_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Granted", - "docket_numbers": "16-4319", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-21", - "case_names": "BRUCE S. ROSENWATER v. DEUTSCHE BANK NATIONAL TRUST, etc.", - "download_urls": "https://edca.4dca.org/DCADocs/2016/4015/164015_DC13_06212017_100258_i.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "Reversed", - "docket_numbers": "16-4015", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_4_written_example.html b/tests/examples/opinions/united_states/fladistctapp_4_written_example.html deleted file mode 100644 index 00e1c24bb..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_4_written_example.html +++ /dev/null @@ -1,499 +0,0 @@ - - - - - - - Opinions - - - - - - -
    -
    - -
    - -
    - - - -
    -
    - -
    - - - - -
    - Most Recent Written Opinions -   - -
    - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Case No.ViewCase StyleNoteDispositionDisposition Date
    - 12-2303 - - - - LEON REID vs STATE OF FLORIDA - - - - Reversed - - 06/21/2017 -
    - 14-1766 - - - - GROSSMAN, ROTH, P.A. vs KRISTI MELLEN, etc., et al. - - - - Reversed - - 06/21/2017 -
    - 14-3130 - - - - WYLIE BILLUPS vs STATE OF FLORIDA - - - - Reversed - - 06/21/2017 -
    - 14-4549 - - - - GWEN E. RICHBELL, ALAN RICHBELL, ET AL. vs ERNST TOUSSAINT, WHOLFNEY K. JEAN FRANCOIS, ET AL. - - - - Affirmed in Part/Reversed in Part - - 06/21/2017 -
    - 14-4918 - - - - MICKAEL JACKSON vs STATE OF FLORIDA - - - - Reversed - - 06/21/2017 -
    - 15-1553 - - - - D.B., A CHILD vs STATE OF FLORIDA - - - - Reversed - - 06/21/2017 -
    - 15-2886 - - - - ORLANDO MCCORMACK vs STATE OF FLORIDA - - - - Affirmed in Part/Reversed in Part - - 06/21/2017 -
    - 15-3132 - - - - DAVID WAYNE CARTER vs STATE OF FLORIDA - - - - Non-dispositive - - 06/21/2017 -
    - 15-4451 - - - - ROCCO GIORDANO vs STATE OF FLORIDA - - - - Affirmed - - 06/21/2017 -
    - 15-4526 - - - - CITIBANK, N.A., AS TRUSTEE, etc. vs TANGERINE J. MANNING, et al. - - - - Reversed - - 06/21/2017 -
    - 15-4561 - - - - NATIONSTAR MORTGAGE LLC, etc. vs MARIE ANN GLASS, et al. - - - - Non-dispositive - - 06/21/2017 -
    - 15-4708 - - - - JAMES SAINT-FORT vs STATE OF FLORIDA - - - - Affirmed - - 06/21/2017 -
    - 16-0067 - - - - DONNA FANALI, etc. vs R.J. REYNOLDS TOBACCO COMPANY - - - - Affirmed - - 06/21/2017 -
    - 16-0423 - - - - TAMARICK CRUZ vs STATE OF FLORIDA - - - - Affirmed in Part/Reversed in Part - - 06/21/2017 -
    - 16-0927 - - - - CORPORATE CREATIONS ENT. LLC, f/d/b/a CORP. CREATIONS ENT. INC. vs BRIAN R. FONS ATTORNEY AT LAW P.C. and BRIAN R. FONS - - - - Reversed - - 06/21/2017 -
    - 16-1153 - - - - CHRISTOPHER ROUNDTREE vs STATE OF FLORIDA - - - - Affirmed in Part/Reversed in Part - - 06/21/2017 -
    - 16-1255 - - - - CYNTHIA RUSSOMANO f/k/a CYNTHIA C. SPALL vs JOSEPH MARESCA, and JEM PALM BEACH, LLC, etc. - - - - Affirmed in Part/Reversed in Part - - 06/21/2017 -
    - 16-2290 - - - - JEROME LORD vs LOUISE LORD - - - - Reversed - - 06/21/2017 -
    - 16-2594 - - - - WELLS FARGO EQUIPMENT FINANCE vs BACJET, LLC, ET AL. - - - - Reversed - - 06/21/2017 -
    - 16-2676 - - - - D.D.S., A CHILD vs STATE OF FLORIDA - - - - Reversed - - 06/21/2017 -
    - 16-2793 - - - - STANLEY SHERMAN vs PAUL SAVASTANO - - - - Reversed - - 06/21/2017 -
    - 16-3250 - - - - CO. OF CUMBERLAND, NEW JERSEY vs ANDREW K. KWAP - - - - Reversed - - 06/21/2017 -
    - 16-3687 - - - - G.R.N., A CHILD vs STATE OF FLORIDA - - - - Reversed - - 06/21/2017 -
    - 16-4015 - - - - BRUCE S. ROSENWATER vs DEUTSCHE BANK NATIONAL TRUST, etc., et al. - - - - Reversed - - 06/21/2017 -
    - 16-4264 - - - - JAIME DUM LERNER vs VICKY LEVY DUM - - - - Affirmed in Part/Reversed in Part - - 06/21/2017 -
    - 16-4319 - - - - CHILDREN'S MEDICAL CENTER, P.A, et al. vs JAKYUNG KIM, et al. - - - - Granted - - 06/21/2017 -
    - 17-0175 - - - - OIL, LLC AND MAXIMILIANO RUSSO vs STAMAX CORP. - - - - Granted - - 06/21/2017 -
    -
    -
    - -
    -
    - - diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example.compare.json b/tests/examples/opinions/united_states/fladistctapp_5_example.compare.json index 9c60eb2b7..5693b9f09 100644 --- a/tests/examples/opinions/united_states/fladistctapp_5_example.compare.json +++ b/tests/examples/opinions/united_states/fladistctapp_5_example.compare.json @@ -1,122 +1,122 @@ [ { - "case_dates": "2014-07-14", - "case_names": "Southern Owners v. Cooperativa", - "download_urls": "tests/examples/opinions/united_states/5D12-3048.op.pdf", + "case_dates": "2024-08-27", + "case_names": "Thomas Mason v. State of Florida", + "download_urls": "https://5dca.flcourts.gov/pre_opinion_content_download/2439615", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5D12-3048", - "case_name_shorts": "Cooperativa" + "dispositions": "PER CURIAM AFFIRMED", + "docket_numbers": "5D2023-2328", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2014-07-14", - "case_names": "Ray Young v. State", - "download_urls": "tests/examples/opinions/united_states/5D12-2371.op.pdf", + "case_dates": "2024-08-27", + "case_names": "Raymond Evans v. Juliana Evans", + "download_urls": "https://5dca.flcourts.gov/pre_opinion_content_download/2439610", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5D12-2371", - "case_name_shorts": "" + "dispositions": "PER CURIAM AFFIRMED", + "docket_numbers": "5D2023-2189", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2014-07-14", - "case_names": "RLI Live Oak v. South Florida Water", - "download_urls": "tests/examples/opinions/united_states/5D11-2329.op.pdf", + "case_dates": "2024-08-27", + "case_names": "Paul Daniel Lippman v. State of Florida", + "download_urls": "https://5dca.flcourts.gov/pre_opinion_content_download/2439619", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5D11-2329", - "case_name_shorts": "" + "dispositions": "PER CURIAM AFFIRMED", + "docket_numbers": "5D2023-2546", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2014-07-14", - "case_names": "Jose W.T. Arraiaga v. State", - "download_urls": "tests/examples/opinions/united_states/5D14-1148.op.pdf", + "case_dates": "2024-08-27", + "case_names": "Michael Latrelle Lashaw McMillon v. State of Florida", + "download_urls": "https://5dca.flcourts.gov/pre_opinion_content_download/2439594", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5D14-1148", - "case_name_shorts": "" + "dispositions": "PER CURIAM AFFIRMED", + "docket_numbers": "5D2023-0302", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2014-07-14", - "case_names": "Jones v. Dept. of Revenue", - "download_urls": "tests/examples/opinions/united_states/5D14-8 op.pdf", + "case_dates": "2024-08-27", + "case_names": "Gerald Dwayne McDaniel v. State of Florida", + "download_urls": "https://5dca.flcourts.gov/pre_opinion_content_download/2439623", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5D14-8", - "case_name_shorts": "Jones" + "dispositions": "PER CURIAM AFFIRMED", + "docket_numbers": "5D2023-2759", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2014-07-14", - "case_names": "Jesus Galarza v. State", - "download_urls": "tests/examples/opinions/united_states/5D14-664.op.pdf", + "case_dates": "2024-08-27", + "case_names": "Dustin Heathman v. State of Florida", + "download_urls": "https://5dca.flcourts.gov/pre_opinion_content_download/2439596", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5D14-664", - "case_name_shorts": "" + "dispositions": "PER CURIAM AFFIRMED", + "docket_numbers": "5D2023-1139", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2014-07-14", - "case_names": "J.O. v. DCF", - "download_urls": "tests/examples/opinions/united_states/5D14-763.op.pdf", + "case_dates": "2024-08-27", + "case_names": "Demare Barnes, II v. State of Florida", + "download_urls": "https://5dca.flcourts.gov/pre_opinion_content_download/2439597", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5D14-763", - "case_name_shorts": "J.O." + "dispositions": "PER CURIAM AFFIRMED", + "docket_numbers": "5D2023-1487", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2014-07-14", - "case_names": "Heiden v. Wells Fargo", - "download_urls": "tests/examples/opinions/united_states/5D14-1738.op.pdf", + "case_dates": "2024-08-27", + "case_names": "Andrea Alleyne v. Bank of New York Mellon F/K/A Bank of New York as Trustee for the Benefit of the Certificate Holders of the CWABS Inc., Asset-Backed Certificates Series, 2007-BC2 and Sanford - Hidden Lake Villas Home Owners Association, Inc.", + "download_urls": "https://5dca.flcourts.gov/pre_opinion_content_download/2439598", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5D14-1738", - "case_name_shorts": "Heiden" + "dispositions": "PER CURIAM AFFIRMED", + "docket_numbers": "5D2023-1865", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2014-07-14", - "case_names": "Guillermo Bruzon-Garcia v. State", - "download_urls": "tests/examples/opinions/united_states/5D14-1442.op.pdf", + "case_dates": "2024-08-27", + "case_names": "American Security Insurance Company v. Stephen Koons", + "download_urls": "https://5dca.flcourts.gov/pre_opinion_content_download/2439601", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5D14-1442", - "case_name_shorts": "" + "dispositions": "PER CURIAM AFFIRMED", + "docket_numbers": "5D2023-2151", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2014-07-14", - "case_names": "Derrick D. Wilkerson v. State", - "download_urls": "tests/examples/opinions/united_states/5D13-4074.op.pdf", + "case_dates": "2024-08-27", + "case_names": "Agnes Roman v. Security First Insurance Company", + "download_urls": "https://5dca.flcourts.gov/pre_opinion_content_download/2439616", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5D13-4074", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Calvin Johnson v. State", - "download_urls": "tests/examples/opinions/united_states/5D14-2104.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D14-2104", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-14", - "case_names": "Antonious Louis v. State", - "download_urls": "tests/examples/opinions/united_states/5D13-4289.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D13-4289", - "case_name_shorts": "" + "dispositions": "PER CURIAM AFFIRMED", + "docket_numbers": "5D2023-2513", + "case_name_shorts": "", + "per_curiam": true } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example.html b/tests/examples/opinions/united_states/fladistctapp_5_example.html index 6222efafe..2ea9919f6 100644 --- a/tests/examples/opinions/united_states/fladistctapp_5_example.html +++ b/tests/examples/opinions/united_states/fladistctapp_5_example.html @@ -1,149 +1,378 @@ - +
    - - - - - -Fifth District Court of Appeal - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -
     
    - - - - - + + +
    -

    Opinions and PCAs Released the Week of July 14, 2014

    -

    OPINIONS
    - 5D11-2329 RLI Live Oak v. South Florida Water    
    - 5D12-2371 Ray Young v. State                    
    - 5D12-3048 Southern Owners v. Cooperativa         
    - 5D13-4074 Derrick D. Wilkerson v. State  
    - 5D13-4289 Antonious Louis v. State        
    - 5D14-8 Jones v. Dept. of Revenue           
    - 5D14-763 J.O. v. DCF                                
    - 5D14-1148 Jose W.T. Arraiaga v. State    
    - 5D14-1442 Guillermo Bruzon-Garcia v. State        
    - 5D14-2104 Calvin Johnson v. State          
    -                                                                   
    - CITATION OPINIONS                                
    - 5D14-664 Jesus Galarza v. State              
    - 5D14-1738 Heiden v. Wells Fargo             
    -                                                                   
    - PCAS                                                         
    - 5D12-4847 Magical Cruise v. Molina        
    - 5D13-652 Donald Hendricks v. State        
    - 5D13-925 Justin C. Millan v. State            
    - 5D13-1167 Scott F. Bush v. State             
    - 5D13-1259 Walner Mercidieu v. State       
    - 5D13-1501 Probus v. Nease                      
    - 5D13-1742 Samuel D. Straitiff v. State      
    - 5D13-2049 Marvin D. Howard v. State      
    - 5D13-2343 Edgardo D. Garcia v. State     
    - 5D13-2375 George L. Benitez v. State      
    - 5D13-2573 Thomas Bednar v. State         
    - 5D13-2713 Tera Wood v. State                 
    - 5D13-2808 Benji Nelson v. State              
    - 5D13-2834 Robert G. Bishop v. State       
    - 5D13-3077 John H. Lancaster v. State      
    - 5D13-3326 Donald W. Collins v. State      
    - 5D13-3429 Tyeesha L. Willis v. State       
    - 5D13-4261 Dell D. Boone v. State             
    - 5D13-4275 Ogunbiyi v. Kondaur Capital  
    - 5D13-4348 Brandi S. Murch v. State         
    - 5D13-4366 Bisesi v. Bisesi                        
    - 5D13-4439 Marc A. Corrente v. State        
    - 5D13-4479 Karen M. Macchione v. State  
    - 5D13-4527 Jabari Stephens v. State         
    - 5D14-3 Demarkus R. Morss v. State         
    - 5D14-31 Marvin Laurenceau v. State        
    - 5D14-152 Leon Robinson v. State            
    - 5D14-273 Bobby Smith, Jr. v. State          
    - 5D14-278 Brian Jennings v. State            
    - 5D14-359 Salvador Antunez v. State        
    - 5D14-446 Nelson A. Jimenez v. State       
    - 5D14-480 Henry N. Hall v. State                
    - 5D14-522 Iris L. Anderson v. State           
    - 5D14-557 Niko Herbert v. State                 
    - 5D14-700 Brooke M. Smith v. State          
    - 5D14-751 Xevrick J. Lattimore v. State     
    - 5D14-768 Jerry L. Washington v. State    
    - 5D14-828 Larry D. Odum v. State             
    - 5D14-878 Samson L. Williams v. State     
    - 5D14-907 Jarrod R. Allen v. State             
    - 5D14-918 Bruce L. Smith v. State             
    - 5D14-986 J.C. v. DCF                                
    - 5D14-1189 Afif Jamal v. State                   
    - 5D14-1457 Alvin B. Smith v. State            
    - 5D14-1512 Yves J. Milord v. State            
    -
    5D14-1933 William U. Matthews v. State

    -
    + + + + + + + + + + + + + + + + + + + + + + + + + -
    + File + + Type + + + + Case No. + + + + Case Name + + + + Disposition + + + + Note + + Release Date + + +
    + + PDF Download of 2023-0302 + + + + + PCA + + 2023-0302 + + Michael Latrelle Lashaw McMillon v. State of Florida + + Appeal - Per Curiam Affirmed + + PER CURIAM AFFIRMED + + 08/27/24 +
    - - - -

    - -

    + +
    + + PDF Download of 2023-1139 + + + + + PCA + + 2023-1139 + + Dustin Heathman v. State of Florida + + Appeal - Per Curiam Affirmed + + PER CURIAM AFFIRMED + + 08/27/24 +
    + + PDF Download of 2023-1487 + + + + + PCA + + 2023-1487 + + Demare Barnes, II v. State of Florida + + Appeal - Per Curiam Affirmed + + PER CURIAM AFFIRMED + + 08/27/24 +
    + + PDF Download of 2023-1865 + + +
    + + PCA + + + 2023-1865 + + + Andrea Alleyne v. Bank of New York Mellon F/K/A Bank of New York as Trustee for the Benefit of the Certificate Holders of the CWABS Inc., Asset-Backed Certificates Series, 2007-BC2 and Sanford - Hidden Lake Villas Home Owners Association, Inc., + + + Appeal - Per Curiam Affirmed + + + PER CURIAM AFFIRMED + + + 08/27/24 + + + + + + + + + + PDF Download of 2023-2151 + + + + + + PCA + + + 2023-2151 + + + American Security Insurance Company v. Stephen Koons + + + Appeal - Per Curiam Affirmed + + + PER CURIAM AFFIRMED + + + 08/27/24 + + + + + + + + + + PDF Download of 2023-2189 + + + + + + PCA + + + 2023-2189 + + + Raymond Evans v. Juliana Evans + + + Appeal - Per Curiam Affirmed + + + PER CURIAM AFFIRMED + + + 08/27/24 + + + + + + + + + + PDF Download of 2023-2328 + + + + + + PCA + + + 2023-2328 + + + Thomas Mason v. State of Florida + + + Appeal - Per Curiam Affirmed + + + PER CURIAM AFFIRMED + + + 08/27/24 + + + + + + + + + + PDF Download of 2023-2513 + + + + + + PCA + + + 2023-2513 + + + Agnes Roman v. Security First Insurance Company + + + Appeal - Per Curiam Affirmed + + + PER CURIAM AFFIRMED + + + 08/27/24 + + + + + + + + + + PDF Download of 2023-2546 + + + + + + PCA + + + 2023-2546 + + + Paul Daniel Lippman v. State of Florida + + + Appeal - Per Curiam Affirmed + + + PER CURIAM AFFIRMED + + + 08/27/24 + + + + + + + + + + PDF Download of 2023-2759 + + + + + + PCA + + + 2023-2759 + + + Gerald Dwayne McDaniel v. State of Florida + + + Appeal - Per Curiam Affirmed + + + PER CURIAM AFFIRMED + + + 08/27/24 + + + + + +
    + +
    -
    - - + + Export all + 5DCA + Opinions + + + +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_10.compare.json b/tests/examples/opinions/united_states/fladistctapp_5_example_10.compare.json deleted file mode 100644 index 2136f6250..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_10.compare.json +++ /dev/null @@ -1,112 +0,0 @@ -[ - { - "case_dates": "2018-06-11", - "case_names": "Uppal v. The Health Law Firm", - "download_urls": "tests/examples/opinions/united_states/5D18-671.cit op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D18-671", - "case_name_shorts": "Uppal" - }, - { - "case_dates": "2018-06-11", - "case_names": "State v. Sarah M. Hollinger", - "download_urls": "tests/examples/opinions/united_states/5D17-1996.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D17-1996", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-11", - "case_names": "Ramsey v. Dewitt Excavating", - "download_urls": "tests/examples/opinions/united_states/5D17-311.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D17-311", - "case_name_shorts": "Ramsey" - }, - { - "case_dates": "2018-06-11", - "case_names": "Paul E. Knight v. State", - "download_urls": "tests/examples/opinions/united_states/5D18-1058.cit op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D18-1058", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-11", - "case_names": "Manolo Martinez v. State", - "download_urls": "tests/examples/opinions/united_states/5D17-2461.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D17-2461", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-11", - "case_names": "Jose M. Torres v. State", - "download_urls": "tests/examples/opinions/united_states/5D18-1134.cit op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D18-1134", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-11", - "case_names": "Jaquaries Jones v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-4338.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-4338", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-11", - "case_names": "Holmes v. City of Palm Bay", - "download_urls": "tests/examples/opinions/united_states/5D16-2993.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-2993", - "case_name_shorts": "Holmes" - }, - { - "case_dates": "2018-06-11", - "case_names": "Fr. Vincenzo Ronchi v. State", - "download_urls": "tests/examples/opinions/united_states/5D18-194.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D18-194", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-11", - "case_names": "Federal National v. Cook", - "download_urls": "tests/examples/opinions/united_states/5D17-1369.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D17-1369", - "case_name_shorts": "Cook" - }, - { - "case_dates": "2018-06-11", - "case_names": "Alan W. Davis v. State", - "download_urls": "tests/examples/opinions/united_states/5D17-3250.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D17-3250", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_10.html b/tests/examples/opinions/united_states/fladistctapp_5_example_10.html deleted file mode 100644 index 3437ad483..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_10.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - - -Fifth District Court of Appeal - - - - - - - - - - - - - - - - - - - - -
     
    - - - - - - -
    -

    Opinion and PCAs Release the Week of June 11, 2018

    -

    OPINIONS
    - 5D16-2993 Holmes v. City of Palm Bay     
    - 5D16-4338 Jaquaries Jones v. State          
    - 5D17-311 Ramsey v. Dewitt Excavating    
    - 5D17-1369 Federal National v. Cook          
    - 5D17-1996 State v. Sarah M. Hollinger      
    - 5D17-2461 Manolo Martinez v. State         
    - 5D17-3250 Alan W. Davis v. State             
    - 5D18-194 Fr. Vincenzo Ronchi v. State
    -                                                                   
    - CITATION OPINIONS      
    - 5D18-671 Uppal v. The Health Law Firm       
    - 5D18-1058 Paul E. Knight v. State      
    - 5D18-1134 Jose M. Torres v. State
    -          
    - PCAS
    - 5D16-4041 Marcellus Charlemagne v. State 
    - 5D16-4269 James P. White v. State    
    - 5D17-578 Maihle v. Everbank   
    - 5D17-707 Germain v. Young     
    - 5D17-816 Aronstein v. AO Precision  
    - 5D17-1347 Angel B. Flores v. State    
    - 5D17-1413 Marma v. Bayview Loan    
    - 5D17-1814 Patrick Valenti v. State      
    - 5D17-1926 Leigh A. Turay v. State     
    - 5D17-2050 Floyd v. U.S. Bank   
    - 5D17-2165 Jonathan Bell v. State       
    - 5D17-2185 Anthony Coimbre v. State 
    - 5D17-2231 Christopher R. Muzzi v. State     
    - 5D17-2635 Bohne v. Petrin       
    - 5D17-2920 Daniel Bomysoad v. State 
    - 5D17-2970 Jermaine Ross v. State     
    - 5D17-2998 Eric D. Madison v. State    
    - 5D17-3017 Luis Batiz v. State   
    - 5D17-3166 Alex D. Pulaski v. State     
    - 5D17-3227 Timothy F. Cain v. State   
    - 5D17-3260 James M. Newton v. State 
    - 5D17-3757 David E.E. Pruitt v. State   
    - 5D17-3853 Elgin L. Bell v. State
    - 5D17-4091 Michael K. Gross v. State 
    - 5D18-184 James C. Stanley v. State   
    - 5D18-774 James Munoz v. State         
    - 5D18-848 Joshua Bouie v. State         
    - 5D18-900 Billy Johnson v. State         
    - 5D18-969 Jose C. Diaz v. State 
    - 5D18-1032 Decius G. Jules v. State    
    - 5D18-1065 Lige W. Taylor v. State 
    - 5D18-1132 M.M. v. DCF     

    - 5D18-1319 Daniel P. Beatty v. State             

    -
    - - - -

    - -

    -
    - -
    - - diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_2.compare.json b/tests/examples/opinions/united_states/fladistctapp_5_example_2.compare.json deleted file mode 100644 index 8eb0dfcb5..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_2.compare.json +++ /dev/null @@ -1,112 +0,0 @@ -[ - { - "case_dates": "2016-07-11", - "case_names": "Taival v. Barrett", - "download_urls": "tests/examples/opinions/united_states/5D15-934.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-934", - "case_name_shorts": "Taival" - }, - { - "case_dates": "2016-07-11", - "case_names": "Shawn L. Brock v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-715.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-715", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-11", - "case_names": "Michael G. Kendrick v. State", - "download_urls": "tests/examples/opinions/united_states/5D15-3730.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-3730", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-11", - "case_names": "Leroy Whitty, Jr. v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-2213.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-2213", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-11", - "case_names": "Klemish v. Villacastin", - "download_urls": "tests/examples/opinions/united_states/5D15-2574.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-2574", - "case_name_shorts": "Klemish" - }, - { - "case_dates": "2016-07-11", - "case_names": "Kenneth Robinson v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-43.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-43", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-11", - "case_names": "Jabari M. Hird v. State", - "download_urls": "tests/examples/opinions/united_states/5D15-4408.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-4408", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-11", - "case_names": "Dyck-O'Neal v. Rojas", - "download_urls": "tests/examples/opinions/united_states/5D15-3266.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-3266", - "case_name_shorts": "Dyck-O'Neal" - }, - { - "case_dates": "2016-07-11", - "case_names": "Darryl L. Davis v. State", - "download_urls": "tests/examples/opinions/united_states/5D15-2509 op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-2509", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-11", - "case_names": "Darryl L. Davis v. State", - "download_urls": "tests/examples/opinions/united_states/5D15-2507 op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-2507", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-11", - "case_names": "Cookston v. Office of PD", - "download_urls": "tests/examples/opinions/united_states/5D15-4074.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-4074", - "case_name_shorts": "Cookston" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_2.html b/tests/examples/opinions/united_states/fladistctapp_5_example_2.html deleted file mode 100644 index ea4cf8302..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_2.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - -Fifth District Court of Appeal - - - - - - - - - - - - - - - - - - - - -
     
    - - - - - - -
    -

    OPINIONS AND PCAS ISSUED THE WEEK OF JULY 11, 2016

    -

    OPINIONS:
    - 5D15-934 Taival v. Barrett                          
    - 5D15-2507 Darryl L. Davis v. State             
    - 5D15-2509 Darryl L. Davis v. State             
    - 5D15-2574 Klemish v. Villacastin               
    - 5D15-3266 Dyck-O’Neal v. Rojas                
    - 5D15-3730 Michael G. Kendrick v. State    
    - 5D15-4074 Cookston v. Office of PD         
    - 5D15-4408 Jabari M. Hird v. State              
    - 5D16-43 Kenneth Robinson v. State          
    - 5D16-715 Shawn L. Brock v. State             
    - 5D16-2213 Leroy Whitty, Jr. v. State

    -

    PCAS:
    - 5D15-238 Yusuf Abdullah v. State
    - 5D15-685 Leal v. Cape Canaveral Hospital
    - 5D15-882 Wayne Manning v. State
    - 5D15-1160 Angel Reyes v. State
    - 5D15-1318 Luis Rosado v. State
    - 5D15-1768 Florida Carry v. City of Leesburg
    - 5D15-1826 Jason A. Lenz v. State
    - 5D15-2077 State v. Jamal A. Pollock
    - 5D15-2377 & 5D15-2379 Lester L. Williams v. State
    - 5D15-2649 Derek S. Brown v. State
    - 5D15-2763 Leonard S. Lewis v. State
    - 5D15-2771 Lakes of Brookhaven v. Governing Board
    - 5D15-2782 Sparrow v. Bank of New York Mellon
    - 5D15-2840 Channary Rom v. State
    - 5D15-3100 Manuel Ayala v. State
    - 5D15-3286 William Carpenter v. State
    - 5D15-3299 Leal v. Cape Canaveral Hospital
    - 5d15-3414 Thomas Pettit v. State
    - 5D15-3455 Luis Aponte v. State
    - 5D15-3493 Cebollero v. Nationstar Mortgage
    - 5D15-3530 Evins v. Green Tree
    - 5D15-3872 James Searcy, Jr. v. State
    - 5D15-4048 Alan Glen v. State
    - 5D15-4092 Hector Mercedes v. State
    - 5D15-4118 Michael Seabold v. State
    - 5D15-4357 Betsy L. Ford v. State
    - 5D15-4363 Tyvon Frazier v. State
    - 5D15-4476 Glenda F. Lake v. State
    - 5D15-4500 T.M.R. v. State
    - 5D16-17 Jermaine B. Riley v. DOC
    - 5D16-280 Burlison v. Benefield
    - 5D16-361 Lester B. Mitchell v. DOC
    - 5D16-614 Terry Robinson v. State
    - 5D16-883 Ryan Forde v. State
    - 5D16-967 Bentz Boursiquot v. State
    - 5D16-1038 Steven Kirkpatrick v. State
    - 5D16-1083 Luis A. Vargas v. State
    - 5D16-1665 Earl Campbell v. State
    - 5D16-1735 Robert W. Brooks, Jr. v. State
    - 5D16-1796 Robert W. Brooks, Jr. v. State  

    -
    - - - -

    - -

    -
    - -
    - - - diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_3.compare.json b/tests/examples/opinions/united_states/fladistctapp_5_example_3.compare.json deleted file mode 100644 index 5d0de976c..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_3.compare.json +++ /dev/null @@ -1,102 +0,0 @@ -[ - { - "case_dates": "2016-08-01", - "case_names": "State v. Anthony C. Johnson", - "download_urls": "tests/examples/opinions/united_states/5D16-245.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-245", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-01", - "case_names": "Lillian Clover v. State", - "download_urls": "tests/examples/opinions/united_states/5D15-1714.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-1714", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-01", - "case_names": "Joshua A. Masters v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-1580.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-1580", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-01", - "case_names": "Hampton v. Estate of Clifford L. Allen", - "download_urls": "tests/examples/opinions/united_states/5D15-2250.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-2250", - "case_name_shorts": "Hampton" - }, - { - "case_dates": "2016-08-01", - "case_names": "Duggan v. Reemployment", - "download_urls": "tests/examples/opinions/united_states/5D15-3168.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-3168", - "case_name_shorts": "Duggan" - }, - { - "case_dates": "2016-08-01", - "case_names": "Daniel J. Weckesser v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-1790.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-1790", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-01", - "case_names": "DCF v. J.D.", - "download_urls": "tests/examples/opinions/united_states/5D16-1739.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-1739", - "case_name_shorts": "DCF" - }, - { - "case_dates": "2016-08-01", - "case_names": "D.J.M. v. State", - "download_urls": "tests/examples/opinions/united_states/5D15-4496.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-4496", - "case_name_shorts": "D.J.M." - }, - { - "case_dates": "2016-08-01", - "case_names": "Bagley v. Office of the Public Defender", - "download_urls": "tests/examples/opinions/united_states/5D16-149.cit.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-149", - "case_name_shorts": "Bagley" - }, - { - "case_dates": "2016-08-01", - "case_names": "Acosta v. Bank of New York Mellon", - "download_urls": "tests/examples/opinions/united_states/5D15-3514.cit.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-3514", - "case_name_shorts": "Acosta" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_3.html b/tests/examples/opinions/united_states/fladistctapp_5_example_3.html deleted file mode 100644 index 4bbc69ed9..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_3.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - -Fifth District Court of Appeal - - - - - - - - - - - - - - - - - - - - -
     
    - - - - - - -
    -

    Opinions and PCAs Issued the Week of August 1, 2016

    -

    OPINIONS
    - 5D15-1714 Lillian Clover v. State               
    - 5D15-2250 Hampton v. Estate of Clifford L. Allen   
    - 5D15-3168 Duggan v. Reemployment        
    - 5D15-4496 D.J.M. v. State                           
    - 5D16-245 State v. Anthony C. Johnson     
    - 5D16-1580 Joshua A. Masters v. State
    -
    5D16-1739 DCF v. J.D.       
    - 5D16-1790 Daniel J. Weckesser v. State    
    -                                                                    
    - CITATION OPINIONS                                 
    - 5D15-3514 Acosta v. Bank of New York Mellon      
    - 5D16-149 Bagley v. Office of the Public Defender  

    -

    PCAS                                                          
    - 5D14-4210 Kim v. Wells Fargo Bank          
    - 5D14-4657 Jalyn T. Binion v. State            
    - 5D15-120 PVP Holdings v. Supply Line    
    - 5D15-1018 William S. Fahner v. State        
    - 5D15-1273 Timothy Marcum v. State         
    - 5D15-1444 Ray C. Greenlaw v. State          
    - 5D15-1496 Wayne R. Greenlaw v. State     
    - 5D15-1569 Sawgrass Mutual v. Mone        
    - 5D15-1876 Howell v. Care One                   
    - 5D15-1927 Anthony B. Adams v. State      
    - 5D15-2262 Luis Batiz v. State                    
    - 5D15-2363 Chisholm v. Wells Fargo          
    - 5D15-2513 Middleton v. East Coast Fence
    - 5D15-3108 Omar Williams v. State             
    - 5D15-3246 William J. Siskos v. State         
    - 5D15-3249 Dumars Williams v. State         
    - 5D15-3387 Kenneth Somers v. State          
    - 5D15-3585 Shanty S. Trotter v. State         
    - 5D15-3596 Jessica M. Williamson v. State
    - 5D15-4143 Anthony R. Annatone, III v. State
    - 5D15-4383 Farkas v. Nationstar                 
    - 5D16-309 Jarvis L. Horne v. State              
    - 5D16-467 Troy R. Jackson v. State            
    - 5D16-576 James K. Dodson v. State          
    - 5D16-673 Danielle M. Moher v. State         
    - 5D16-766 Robert L. Price, Jr. v. State        
    - 5D16-833 Dwight Williams v. State            
    - 5D16-840 Jacquell M. Tompkins v. State   
    - 5D16-972 Sir Charles A. Crawley v. State  
    - 5D16-1034 Herbert N Price, Jr. v. State      
    - 5D16-1069 Dave Lacey v. State                  
    - 5D16-1212 Del E. Guzman v. State             
    - 5D16-1373 Charles Marshall, II v. State     
    - 5D16-1404 Brent Hope v. State                  
    - 5D16-1429 Carl Geer v. State                     
    - 5D16-1483 Willie J. Milling v. State            
    - 5D16-1538 Carlos Irizarry v. State              
    - 5D16-1636 Quinton Coker v. State             
    - 5D16-1746 Delray Campbell v. State          
    - 5D16-2069 Alonzo Jones v. State              
    -                                                                    

    -          
    - - - -

    - -

    -
    - -
    - - - diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_4.compare.json b/tests/examples/opinions/united_states/fladistctapp_5_example_4.compare.json deleted file mode 100644 index 71388fe4f..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_4.compare.json +++ /dev/null @@ -1,62 +0,0 @@ -[ - { - "case_dates": "2016-09-12", - "case_names": "Roy Bissonette v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-713.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-713", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-12", - "case_names": "Progressive Select v. Emergency Physicians", - "download_urls": "tests/examples/opinions/united_states/5D16-253.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-253", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-12", - "case_names": "Lostaglio v. Lostaglio", - "download_urls": "tests/examples/opinions/united_states/5D14-3494.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D14-3494", - "case_name_shorts": "Lostaglio" - }, - { - "case_dates": "2016-09-12", - "case_names": "Indalesio L. Basaldua v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-722.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-722", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-12", - "case_names": "Derrick K. Randolph v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-2122.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-2122", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-12", - "case_names": "Anderson v. Anderson", - "download_urls": "tests/examples/opinions/united_states/5D16-888.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-888", - "case_name_shorts": "Anderson" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_4.html b/tests/examples/opinions/united_states/fladistctapp_5_example_4.html deleted file mode 100644 index c909ad9dc..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_4.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - -Fifth District Court of Appeal - - - - - - - - - - - - - - - - - - - - -
     
    - - - - - - -
    -

    Opinions and PCAs Issued the Week of Sept. 12, 2016

    -

    OPINIONS
    - 5D14-3494 Lostaglio v. Lostaglio              
    - 5D16-253 Progressive Select v. Emergency Physicians   
    - 5D16-713 Roy Bissonette v. State              
    - 5D16-722 Indalesio L. Basaldua v. State   
    - 5D16-888 Anderson v. Anderson               
    - 5D16-2122 Derrick K. Randolph v. State    
    -                                                                    
    - PCAS                                                          
    - 5D15-609 Zemke General Contracting v. General Mechanical                                                                   
    - 5D15-2374 Collins v. Collins Asset            
    - 5D15-2741 & 5D15-2742 Purcell L. Bagley v. State  
    - 5D15-2860 Juan V. Perez v. State              
    - 5D15-2964 K.H. v. Agency for Persons with Disabilities   
    - 5D15-3752 Phillip B. Thomas v. DOC        
    - 5D15-4082 Demetrius Patterson v. State   
    - 5D15-4108 Benjamin F. Whigham v. State 
    - 5D15-4146 Brenda A. Reynolds v. State    
    - 5D15-4151 David J. Tatara v. State            
    - 5D15-4208 Delores Williams v. State         
    - 5D15-4405 Anthony Pabon v. State           
    - 5D16-501 John W. R. Keller v. State          
    - 5D16-813 S.B. v. Guardian Ad Litem Program        
    - 5D16-791 J.I. v. State                                  
    - 5D16-1378 Jarrett Keith v. State                 
    - 5D16-1654 Omar D. Curry v. State             
    - 5D16-1756 Jose A. Teran v. State              
    - 5D16-1976 Conchetta Griffing v. State      
    - 5D16-2071 Patrick L. Bryant v. State          
    - 5D16-2209 Rafael Hudson v. State             
    - 5D16-2257 Arsenio D. Stewart v. State      
    - 5D16-2483 Phyllis Brown v. State              

    -          
    - - - -

    - -

    -
    - -
    - - - diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_5.compare.json b/tests/examples/opinions/united_states/fladistctapp_5_example_5.compare.json deleted file mode 100644 index 0637a088a..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_5.compare.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_5.html b/tests/examples/opinions/united_states/fladistctapp_5_example_5.html deleted file mode 100644 index 70ea783fc..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_5.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - - -Fifth District Court of Appeal - - - - - - - - - - - - - - - - - - - - -
     
    - - - - - - -
    -

    PCAs RELEASED THE WEEK OF OCTOBER 3, 2016
    - THIS COURT WILL NOT BE ISSUING OPINIONS
    - THIS WEEK DUE TO HURRICANE MATTHEW

    -

    PCAS                                                          
    - 5D14-3342 Kevin L. Greene v. State           
    - 5D14-4259 Gilpin v. The Bank of New York Mellon 
    - 5D14-4517 Torres v. Wilmington Savings 
    - 5D14-4602 Harbor Hills v. Grady                
    - 5D15-1343 Emmaneul C. Wallace v. State 
    - 5D15-1455 Abouzaid v. Helmy                   
    - 5D15-1498 Jonpaul Gonzalez v. State       
    - 5D15-1589 Bamundo v. Deutsche Bank     
    - 5D15-2617 Tamara Stewart v. State           
    - 5D15-2831 St. Johns Riverkeeper v. St. Johns River Water Management                                               
    - 5D15-3022 Kenton Resser v. State             
    - 5D15-3381 Jason D. Allan v. State             
    - 5D15-3418 Maurice Thomas, Jr. v. State    
    - 5D15-4072 Share v. Share                          
    - 5D15-4422 Peppe K. Park v. State              
    - 5D16-12 Javon Woods v. State                  
    - 5D16-133 Jeffrey Farina v. State                
    - 5D16-344 Kashawn J. Parker v. State        
    - 5D16-422 T.L. v. State                                
    - 5D16-538 Spartz v. Bank of New York       
    - 5D16-603 Milano v. Manfre                         
    - 5D16-627 Matthew Rider v. State               
    - 5D16-920 Jessica A. McQueen v. State      
    - 5D16-1376 Traonte Scales v. State            
    - 5D16-1420 Bryan A. Blaylock v. State        
    - 5D16-1431 Anthony Johnson v. State       
    - 5D16-1482 McClure v. McClure                  
    - 5D16-1559 Stephen Quillen v. State          
    - 5D16-1563 Freddie Siplen, Jr. v. State       
    - 5D16-1702 Reno Wolfgang v. State           
    - 5D16-1771 Ricky E. Luke v. State              
    - 5D16-1837 David L. Rymer v. State            
    - 5D16-1912 John Farmer v. State                
    - 5D16-1953 Shannon S. Mayo v. State        
    - 5D16-2093 James D. Fulton v. State          
    - 5D16-2225 Devon Singleton v. State         
    - 5D16-2251 Roy L. Icon, III v. State             
    - 5D16-2252 Patrick Badgett, Sr. v. State     
    - 5D16-2287 R. J. F. v. DCF                           
    - 5D16-2288 Juan Rosario v. State               
    - 5D16-2291 Denelaro Crosby v. State         
    - 5D16-2491 Fredrick C. Rogers v. State      
    - 5D16-2549 Robert B. Bisson v. State         
    -
    5D16-2786 Marvin Hoaward v. State          
    -
    5D16-2860 Wali Saleem v. State                 

    -
    - - - -

    - -

    -
    - -
    - - - diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_6.compare.json b/tests/examples/opinions/united_states/fladistctapp_5_example_6.compare.json deleted file mode 100644 index 619b44b93..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_6.compare.json +++ /dev/null @@ -1,152 +0,0 @@ -[ - { - "case_dates": "2016-10-24", - "case_names": "Vantice L. Beshears, Jr. v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-3520.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-3520", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-24", - "case_names": "The Bank of New York v. Sandhill", - "download_urls": "tests/examples/opinions/united_states/5D14-2313.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D14-2313", - "case_name_shorts": "Sandhill" - }, - { - "case_dates": "2016-10-24", - "case_names": "State v. Linwood Bowser", - "download_urls": "tests/examples/opinions/united_states/5D15-4212.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-4212", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-24", - "case_names": "State v. C.S.F.", - "download_urls": "tests/examples/opinions/united_states/5D16-351.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-351", - "case_name_shorts": "C.S.F." - }, - { - "case_dates": "2016-10-24", - "case_names": "Stanley Peng v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-1480.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-1480", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-24", - "case_names": "Stanley Dickerson v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-1691.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-1691", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-24", - "case_names": "Stanfield v. Marquis", - "download_urls": "tests/examples/opinions/united_states/5D15-381.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-381", - "case_name_shorts": "Stanfield" - }, - { - "case_dates": "2016-10-24", - "case_names": "Samuel R. Brown v. State", - "download_urls": "tests/examples/opinions/united_states/5D15-3472.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-3472", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-24", - "case_names": "Orlando Harris v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-3203.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-3203", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-24", - "case_names": "Murdoch v. Bank of America", - "download_urls": "tests/examples/opinions/united_states/5D15-460.cit.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-460", - "case_name_shorts": "Murdoch" - }, - { - "case_dates": "2016-10-24", - "case_names": "Miller v. Bank of America", - "download_urls": "tests/examples/opinions/united_states/5D15-780.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-780", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-24", - "case_names": "Julius E. Black v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-1952.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-1952", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-24", - "case_names": "Jahman Whitfield v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-1262.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-1262", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-24", - "case_names": "Eduardo Figueroa v. State", - "download_urls": "tests/examples/opinions/united_states/5D14-4515.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D14-4515", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-24", - "case_names": "Angel Rodriguez v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-1539.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-1539", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_6.html b/tests/examples/opinions/united_states/fladistctapp_5_example_6.html deleted file mode 100644 index 3a4db5e30..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_6.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - -Fifth District Court of Appeal - - - - - - - - - - - - - - - - - - - - -
     
    - - - - - - -
    -

    OPINION AND PCAS ISSUED THE WEEK OF OCTOBER 24, 2016

    -

    OPINION
    - 5D14-2313 The Bank of New York v. Sandhill         
    - 5D14-4515 Eduardo Figueroa v. State       
    - 5D15-381 Stanfield v. Marquis                   
    - 5D15-780 Miller v. Bank of America          
    - 5D15-3472 Samuel R. Brown v. State        
    - 5D15-4212 State v. Linwood Bowser         
    - 5D16-351 State v. C.S.F.                            
    - 5D16-1262 Jahman Whitfield v. State        
    - 5D16-1480 Stanley Peng v. State               
    - 5D16-1539 Angel Rodriguez v. State         
    - 5D16-1691 Stanley Dickerson v. State       
    - 5D16-1952 Julius E. Black v. State            
    - 5D16-3203 Orlando Harris v. State            
    - 5D16-3520 Vantice L. Beshears, Jr. v. State

    -

    CITATION OPINIONS
    - 5D15-460 Murdoch v. Bank of America

    -

    PCAS
    - 5D15-1543 Romero J. Simpson, Jr. v. State
    - 5D15-2260 Berinthia Williams v. State
    - 5D15-2739 Christian B. Williams v. State
    - 5D15-2880 Jose R. Lopez v. State
    - 5D15-3055 Galloway v. Crimmins
    - 5D15-3180 Taylor v. US Bank
    - 5D15-3473 Charlie K. Ely v. State
    - 5D15-3665 Terrell Smith v. State
    - 5D15-4127 Bank of America v. Arthur
    - 5D15-4525 Tyrone Smith v. State
    - 5D16-166 Ildefonso Valdez v. State
    - 5D16-263 Freemel T. Best v. State
    - 5D16-353 Leslie Hill v. State
    - 5D16-580 Ayrshire Springs v. Carrington Mortgage
    - 5D16-585 Charles M. Ray v. State
    - 5D16-642 Schneider v. U.S. Bank
    - 5D16-675 Peter J. Kolva v. State
    - 5D16-761 Michael A. Turner v. State
    - 5D16-869 Christina R. Aiken v. State
    - 5D16-889 Lucian J. Litchfield v. State
    - 5D16-1041 Carlos Ortiz v. State
    - 5D16-1194 Anthony A. Garcia v. State
    - 5D16-1569 Donald R. Anderson v. State
    - 5D16-1838 Anthony J. Grillo v. State
    - 5D16-1862 Cheyanne C. Woods v. State
    - 5D16-1956 Timothy White v. State
    - 5D16-1989 Michael A. Lee v. State
    - 5D16-2340 Levon Goldwire v. State
    - 5D16-2364 James E. Jordan v. State
    - 5D16-2464 Christopher Johnson v. State
    - 5D16-2465 Delvin Fulton v. State
    - 5D16-3048 Bruce Underhill v. State
    -
    5D16-3063 William F. Sellers v. State

    -
    - - - -

    - -

    -
    - -
    - - diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_7.compare.json b/tests/examples/opinions/united_states/fladistctapp_5_example_7.compare.json deleted file mode 100644 index fe3d6c68b..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_7.compare.json +++ /dev/null @@ -1,162 +0,0 @@ -[ - { - "case_dates": "2016-12-26", - "case_names": "Zachary N. Linville v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-1807.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-1807", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-26", - "case_names": "WG Evergreen v. Julie A. Fares, as Personal Representative", - "download_urls": "tests/examples/opinions/united_states/5D16-1204.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-1204", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-26", - "case_names": "Samuel Kearney, III v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-2155.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-2155", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-26", - "case_names": "Saidi v. Saqr", - "download_urls": "tests/examples/opinions/united_states/5D16-1537.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-1537", - "case_name_shorts": "Saidi" - }, - { - "case_dates": "2016-12-26", - "case_names": "Reji Smith v. State", - "download_urls": "tests/examples/opinions/united_states/5D15-3566.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-3566", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-26", - "case_names": "Povilaitis v. Povilaitis", - "download_urls": "tests/examples/opinions/united_states/5D15-1002.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-1002, 5D15-3069, 5D15-3187", - "case_name_shorts": "Povilaitis" - }, - { - "case_dates": "2016-12-26", - "case_names": "Pablo Martinez v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-3773.cit.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-3773", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-26", - "case_names": "Michael Butler v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-3576.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-3576", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-26", - "case_names": "Michael Barber v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-3515.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-3515", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-26", - "case_names": "Mary Smith v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-3156.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-3156", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-26", - "case_names": "Marcus Barber v. State", - "download_urls": "tests/examples/opinions/united_states/5D15-3865.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-3865", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-26", - "case_names": "Hartwood Reserve v. Allen", - "download_urls": "tests/examples/opinions/united_states/5D16-1193.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-1193", - "case_name_shorts": "Allen" - }, - { - "case_dates": "2016-12-26", - "case_names": "Guardian ad Litem v. DCF", - "download_urls": "tests/examples/opinions/united_states/5D16-3380.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-3380", - "case_name_shorts": "DCF" - }, - { - "case_dates": "2016-12-26", - "case_names": "Green v. Wells Fargo Bank", - "download_urls": "tests/examples/opinions/united_states/5D16-2944.pca.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-2944", - "case_name_shorts": "Green" - }, - { - "case_dates": "2016-12-26", - "case_names": "Freeman Hunter v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-4129.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-4129", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-26", - "case_names": "David A. Hall v. State", - "download_urls": "tests/examples/opinions/united_states/5D15-2751.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-2751", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_7.html b/tests/examples/opinions/united_states/fladistctapp_5_example_7.html deleted file mode 100644 index 99426b3ac..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_7.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - -Fifth District Court of Appeal - - - - - - - - - - - - - - - - - - - - -
     
    - - - - - - -
    -

    Opinions and PCAs Issued the Week of December 26, 2016

    -

    OPINIONS
    - 5D15-1002, 5D15-3069 & 5D15-3187 Povilaitis v. Povilaitis
    -
    5D15-2751 David A. Hall v. State              
    - 5D15-3566 Reji Smith v. State                   
    - 5D15-3865 Marcus Barber v. State            
    - 5D16-1193 Hartwood Reserve v. Allen     
    - 5D16-1204 WG Evergreen v. Julie A. Fares, as Personal Representative 
    -
    D16-1537 Saidi v. Saqr                            
    - 5D16-1807 Zachary N. Linville v. State     
    - 5D16-2155 Samuel Kearney, III v. State    
    - 5D16-3156 Mary Smith v. State
    - 5D16-3380 Guardian ad Litem v. DCF, et al.                  

    - 5D16-3515 Michael Barber v. State           
    - 5D16-3576 Michael Butler v. State            
    - 5D16-4129 Freeman Hunter v. State         
    -                                                                   
    - CITATION OPINIONS
    - 5D16-2944 Green v. Wells Fargo Bank
    - 5D16-3773 Pablo Martinez v. State

    -

    PCAS
    - 5D13-3253 Carr v. Wells Fargo Bank
    - 5D15-1917 Patel v. U.S. Bank
    - 5D15-1970 Idoni v. Baldwin
    - 5D15-2816 Schlein v. United General
    - 5D15-2915 Upshur v. City of Palm Coast
    - 5D15-3435 Dominic Venzen v. State
    - 5D15-3552 Sigui v. HSBC Bank
    - 5D15-4060 Hastings v. Koepke
    - 5D15-4105 Joe E. Rogers v. State
    - 5D15-4135 Andrew Ferguson v. State
    - 5D15-4406 Sandra D. Heilman v. State
    - 5D15-4484 Reginald C. Floyd v. State
    - 5D16-219 Ricky Persaud v. State
    - 5D16-346 Carlos L. Hernandez-Lopez v. State
    - 5D16-510 Terrell L. Fluellen v. State
    - 5D16-741 Widjaya v. Roden
    - 5D16-764 Kohler v. Green Tree
    - 5D16-899 Alliston A. George v. State
    - 5D16-1250 Durell L. Lee v. State
    - 5D16-1338 Shamir J. Suber v. State
    - 5D16-1365 Feliz Gillis v. State
    - 5D16-1375 Eliezer Vazquez-Diaz v. State
    - 5D16-1468 James R. Vanbrunt v. State
    - 5D16-1479 Michael Taylor v. State
    - 5D16-1509 Henri Zogaib v. State
    - 5D16-1793 Davidson v. HSBC Bank
    - 5D16-1812 Jaymie R. Shaver v. State
    - 5D16-2012 Thomas J. Thompson v. State
    - 5D16-2120 John Hipley v. State
    - 5D16-2293 Jessie J. Cade v. State
    - 5D16-2339 Robert Smith v. Sate
    - 5D16-2468 Samuel A. Fulton v. State
    - 5D16-2480 James M. Bedsole v. State
    - 5D16-2485 Timothy Harding v. State
    - 5D16-2580 Daniel Merlo v. State
    - 5D16-2607 Charles Anderson, Jr. v. State
    - 5D16-2643 Jason S. Woods v. State
    - 5D16-2705 George N. Bula v. DOC
    - 5D16-2706 Anthony Watson v. DOC
    - 5D16-2719 Jacob W. Szy v. State
    - 5D16-2858 Stephen S. King v. State
    - 5D16-2957 Winsor Lyles v. State
    - 5D16-3079 Reji Smith v. State
    - 5D16-3123 Michael Lander v. DOC
    - 5D16-3133 Steven Tatro v. State
    - 5D16-3135 Arnick Footman v. State
    - 5D16-3161 R.K. v. DCF
    - 5D16-3210 Cedric Warren v. State
    - 5D16-3308 Isiah Brown v. State
    - 5D16-3522 Isaac L. Anderson, Jr. v. State
    -
    5D16-3546 Jesse Davis v. State

    -
    - - - -

    - -

    -
    - -
    - - - - diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_8.compare.json b/tests/examples/opinions/united_states/fladistctapp_5_example_8.compare.json deleted file mode 100644 index 6a1d1a684..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_8.compare.json +++ /dev/null @@ -1,82 +0,0 @@ -[ - { - "case_dates": "2017-01-16", - "case_names": "Sand Lake Hills v. Busch", - "download_urls": "tests/examples/opinions/united_states/5D16-21.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-21", - "case_name_shorts": "Busch" - }, - { - "case_dates": "2017-01-16", - "case_names": "Salvatore J. Cipolla v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-3510.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-3510", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-16", - "case_names": "Reginal M. Hardy v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-3636.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-3636", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-16", - "case_names": "Palm Garden v. Haydu", - "download_urls": "tests/examples/opinions/united_states/5D16-2568.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-2568", - "case_name_shorts": "Haydu" - }, - { - "case_dates": "2017-01-16", - "case_names": "Michael Webb v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-3139.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-3139", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-16", - "case_names": "Kafele Clarke v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-4128.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-4128", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-16", - "case_names": "Doctors Company v. Plummer", - "download_urls": "tests/examples/opinions/united_states/5D15-1963.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-1963", - "case_name_shorts": "Plummer" - }, - { - "case_dates": "2017-01-16", - "case_names": "Delacruz v. Wells Fargo Bank", - "download_urls": "tests/examples/opinions/united_states/5D15-2481.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-2481", - "case_name_shorts": "Delacruz" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_8.html b/tests/examples/opinions/united_states/fladistctapp_5_example_8.html deleted file mode 100644 index cd35510ad..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_8.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - -Fifth District Court of Appeal - - - - - - - - - - - - - - - - - - - - -
     
    - - - - - - -
    -

    Opinions and PCAs Issued the Week of January 16, 2017

    -

    OPINIONS
    - 5D15-1963  Doctors Company v.  Plummer 
    - 5D15-2481 Delacruz v. Wells Fargo Bank
    - 5D16-21 Sand Lake Hills v.  Busch          
    - 5D16-2568 Palm Garden v. Haydu            
    - 5D16-3139  Michael Webb v. State           
    - 5D16-3510  Salvatore J. Cipolla v. State  
    - 5D16-3636  Reginal M. Hardy v. State      
    - 5D16-4128  Kafele Clarke v. State             
    -                                                                   
    - PCAS                                                        
    - 5D15-442 Christopher Boatwright v. State  
    - 5D15-1933 Bank of New York Mellon v. Dettman   
    - 5D15-2570 Jermaury M. Jones v. State    
    - 5D15-3570 State v. James T. White          
    - 5D15-3976 Fernando Soto-Soto v. State  
    - 5D15-4011 Carmelo Ilarraza v. State         
    - 5D15-4295 Said O. Giron v. State             
    - 5D15-4486 Richard Flatt v. State              
    - 5D16-560 Michael Hunter v. State            
    - 5D16-637 Osterback v. Johnson              
    - 5D16-943 Juan I. Brandti v. State             
    - 5D16-1084 Carlos Avilez v. State              
    - 5D16-1452 Madu J. Chinelo v. State         
    - 5D16-1711 Ken Taylor v. State                 
    - 5D16-2273 James Sweet v. State              
    - 5D16-2388 Glover Calloway v. State        
    - 5D16-2519 Julio C.C. Nunez v. State        
    - 5D16-2669 Cassandra Chandler v. State  
    - 5D16-2679 Ronald L. Brown v. State        
    - 5D16-2936 Samuels v. GQ Holding          
    - 5D16-2965 Bill Plowman v. State              
    - 5D16-2985 Anthoy Gardner v. DOC          
    - 5D16-3180 Barry Davis v. State                
    - 5D16-3389 James R. Hope v. State           
    - 5D16-3664 Michael W. Nelson v. State     
    - 5D16-3755 Leonel Millan-Piris v. State     
    - 5D16-4183 Scott W. Cushman v. State     
    -                                                                   
    -                                                                   
    -                                                                   

    -          
    - - - -

    - -

    -
    - -
    - - diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_9.compare.json b/tests/examples/opinions/united_states/fladistctapp_5_example_9.compare.json deleted file mode 100644 index 027450209..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_9.compare.json +++ /dev/null @@ -1,112 +0,0 @@ -[ - { - "case_dates": "2017-12-18", - "case_names": "Vickers v. Thomas", - "download_urls": "tests/examples/opinions/united_states/5D15-3610.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D15-3610", - "case_name_shorts": "Vickers" - }, - { - "case_dates": "2017-12-18", - "case_names": "V.W. v. Agency for Health Care Administration", - "download_urls": "tests/examples/opinions/united_states/5D17-632.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D17-632", - "case_name_shorts": "V.W." - }, - { - "case_dates": "2017-12-18", - "case_names": "Security First Ins. Co. v. Kile", - "download_urls": "tests/examples/opinions/united_states/5D17-450.cit op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D17-450", - "case_name_shorts": "Kile" - }, - { - "case_dates": "2017-12-18", - "case_names": "Pennymac Loan v. Francis", - "download_urls": "tests/examples/opinions/united_states/5D16-3155.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-3155", - "case_name_shorts": "Francis" - }, - { - "case_dates": "2017-12-18", - "case_names": "Gonzalez v. Clerk of Court", - "download_urls": "tests/examples/opinions/united_states/5D17-3261.cit op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D17-3261", - "case_name_shorts": "Gonzalez" - }, - { - "case_dates": "2017-12-18", - "case_names": "Frederick Addison v. State", - "download_urls": "tests/examples/opinions/united_states/5D17-2692.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D17-2692", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-18", - "case_names": "Eric Hope v. State", - "download_urls": "tests/examples/opinions/united_states/5D16-4086.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-4086", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-18", - "case_names": "Brunsman v. Brunsman", - "download_urls": "tests/examples/opinions/united_states/5D16-2300.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-2300", - "case_name_shorts": "Brunsman" - }, - { - "case_dates": "2017-12-18", - "case_names": "Akin v. Jacobs", - "download_urls": "tests/examples/opinions/united_states/5D17-1246.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D17-1246", - "case_name_shorts": "Akin" - }, - { - "case_dates": "2017-12-18", - "case_names": "A.M. v. State", - "download_urls": "tests/examples/opinions/united_states/5D17-1062.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D17-1062", - "case_name_shorts": "A.M." - }, - { - "case_dates": "2017-12-18", - "case_names": "21st Century v. Thynge", - "download_urls": "tests/examples/opinions/united_states/5D16-1575.op.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5D16-1575", - "case_name_shorts": "Thynge" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_5_example_9.html b/tests/examples/opinions/united_states/fladistctapp_5_example_9.html deleted file mode 100644 index dc7c25ef1..000000000 --- a/tests/examples/opinions/united_states/fladistctapp_5_example_9.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - -Fifth District Court of Appeal - - - - - - - - - - - - - - - - - - - - -
     
    - - - - - - -
    -

    Opinions and PCAs Issued the Week of December 18, 2017

    -

    OPINIONS
    - 5D15-3610 Vickers v. Thomas                    
    - 5D16-1575 21st Century v. Thynge             
    - 5D16-2300 Brunsman v. Brunsman           
    - 5D16-3155 Pennymac Loan v. Francis       
    - 5D16-4086 Eric Hope v. State                     
    - 5D17-632 V.W. v. Agency for Health Care Administration
    - 5D17-1062 A.M. v. State                             
    - 5D17-1246 Akin v. Jacobs                          
    - 5D17-2692 Frederick Addison v. State       

    -

    CITATION OPINIONS                                 
    - 5D17-450 Security First Ins. Co. v. Kile     
    - 5D17-3261 Gonzalez v. Clerk of Court       

    -

    PCAS                                                          
    - 5D16-2160 Daniel W. David v. State           
    - 5D16-2507 Robert L. Tomanetz v. State     
    - 5D16-2885 State Farm v. Chiromed Injury Center   
    - 5D16-3269 Raydel Alvarez v. State             
    - 5D16-3523 Orange County Board v. Willis
    - 5D16-3548 Beck v Flagstar Bank               
    - 5D16-3895 Kenneth Fernandez v. State     
    - 5D16-4175 Johnny Noel v. State                
    - 5D16-4200 Standard v. Conner                  
    - 5D16-4222 James P. White v. State            
    - 5D17-278 Baker v. Deutsche Bank             
    - 5D17-337 Green v. DOR                             
    - 5D17-394 Jose G.L. Hernandez v. State     
    - 5D17-509 Stephanie Moore v. State           
    - 5D17-854 Avola v. Rameses, Inc.               
    - 5D17-1042 Smith v. Brecheen                    
    - 5D17-1070 Dana Loyd v. State                   
    - 5D17-1214 Brett Cadieu v. State                
    - 5D17-1493 Scott A. Moore v. State            
    - 5D17-1754 Scott D. Stevens v. State          
    - 5D17-1814 Patrick Valenti v. State             
    - 5D17-1880 Matteson v. U.S. Bank              
    - 5D17-2022 Michael A. Goodrich v. State   
    - 5D17-2030 James A. Bremmer v. State      
    - 5D17-2094 Andrew A. Anderson v. State   
    - 5D17-2104 Dana M. Little v. DOC               
    - 5D17-2188 Gregory E. Murphy, Sr. v. State
    - 5D17-2450 Dustin S. Haynes v. State         
    - 5D17-2557 John F. Roach v. State             
    - 5D17-2573 Johnny Smith v. State              
    - 5D17-2597 Cedrick Barriner v. State          
    - 5D17-2787 Gary R. Richardson v. State     
    - 5D17-2805 Samuel C. Sweeting v. Sate     
    - 5D17-2964 Robert A. Bordelon, Jr. v. State   
    - 5D17-3000 Simon S. Tadros v. State         
    - 5D17-3336 Arsenio Stewart v. State           
    - 5D17-3466 Anthony Barrett v. State           
    -                                                                    
    -                                                                    
    -                                                                    

    -
    - - - -

    - -

    -
    - -
    - - diff --git a/tests/examples/opinions/united_states/fladistctapp_6_example.compare.json b/tests/examples/opinions/united_states/fladistctapp_6_example.compare.json new file mode 100644 index 000000000..1f61c50c0 --- /dev/null +++ b/tests/examples/opinions/united_states/fladistctapp_6_example.compare.json @@ -0,0 +1,122 @@ +[ + { + "case_dates": "2024-08-27", + "case_names": "Syncere Ja'taron Trice v. State of Florida", + "download_urls": "https://6dca.flcourts.gov/pre_opinion_content_download/2439677", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "6D2023-3995", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2024-08-27", + "case_names": "Maria Navarro Martin v. State of Florida", + "download_urls": "https://6dca.flcourts.gov/pre_opinion_content_download/2439682", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "6D2024-0821", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2024-08-27", + "case_names": "Amy Kathryn Copelin Lantz Personal Representative of the Estate of v. Pavonia Life Insurance Company of Michigan", + "download_urls": "https://6dca.flcourts.gov/pre_opinion_content_download/2439681", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "6D2023-4236", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2024-08-26", + "case_names": "Albert Armstrong v. State of Florida and Grady Judd, Sheriff of Polk County", + "download_urls": "https://6dca.flcourts.gov/pre_opinion_content_download/2439592", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "PETITION GRANTED", + "docket_numbers": "6D2024-1093", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2024-08-23", + "case_names": "William A. Julia v. Melissa Ramos-Baez", + "download_urls": "https://6dca.flcourts.gov/pre_opinion_content_download/2439523", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed; Conflict Certified.", + "docket_numbers": "6D2023-1858", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-23", + "case_names": "C. C. v. State of Florida Department of Revenue O/B/O J.G. and J.C., Jr.", + "download_urls": "https://6dca.flcourts.gov/pre_opinion_content_download/2439535", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Denied", + "docket_numbers": "6D2024-0398", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2024-08-21", + "case_names": "State of Florida v. Rayne Burnett Crume", + "download_urls": "https://6dca.flcourts.gov/pre_opinion_content_download/2439460", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded for further proceedings.", + "docket_numbers": "6D2023-2304", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-20", + "case_names": "James Scholtz v. State of Florida", + "download_urls": "https://6dca.flcourts.gov/pre_opinion_content_download/2439287", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "6D2023-0108", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2024-08-20", + "case_names": "J. Patrick Buckley v. State of Florida", + "download_urls": "https://6dca.flcourts.gov/pre_opinion_content_download/2439292", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "6D2023-0169", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2024-08-20", + "case_names": "Denise Ann Clark Carroll v. State of Florida", + "download_urls": "https://6dca.flcourts.gov/pre_opinion_content_download/2439295", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "6D2023-0707", + "case_name_shorts": "", + "per_curiam": true + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/fladistctapp_6_example.html b/tests/examples/opinions/united_states/fladistctapp_6_example.html new file mode 100644 index 000000000..9b6dd90d4 --- /dev/null +++ b/tests/examples/opinions/united_states/fladistctapp_6_example.html @@ -0,0 +1,377 @@ +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + File + + Type + + + + Case No. + + + + Case Name + + + + Disposition + + + + Note + + Release Date + + +
    + + PDF Download of 2023-3995 + + + + + PCA + + 2023-3995 + + SYNCERE JA'TARON TRICE VS STATE OF FLORIDA + + Appeal - Per Curiam Affirmed + + Affirmed - PCA + + 08/27/24 +
    + + PDF Download of 2023-4236 + + + + + PCA + + 2023-4236 + + AMY KATHRYN COPELIN LANTZ PERSONAL REPRESENTATIVE OF THE ESTATE OF VS PAVONIA LIFE INSURANCE COMPANY OF MICHIGAN + + Appeal - Per Curiam Affirmed + + Affirmed - PCA + + 08/27/24 +
    + + PDF Download of 2024-0821 + + + + + PCA + + 2024-0821 + + MARIA NAVARRO MARTIN v. STATE OF FLORIDA + + Appeal - Per Curiam Affirmed + + Affirmed - PCA + + 08/27/24 +
    + + PDF Download of 2024-1093 + + + + + Written + + 2024-1093 + + ALBERT ARMSTRONG v. STATE OF FLORIDA AND GRADY JUDD, SHERIFF OF POLK COUNTY + + Petition - Per Curiam Opinion + + PETITION GRANTED + + 08/26/24 +
    + + PDF Download of 2023-1858 + + + + + Written + + 2023-1858 + + WILLIAM A. JULIA VS MELISSA RAMOS-BAEZ + + Appeal - Authored Opinion + + Affirmed; Conflict Certified. + + 08/23/24 +
    + + PDF Download of 2024-0398 + + + + + Written + + 2024-0398 + + C. C. VS STATE OF FLORIDA DEPARTMENT OF REVENUE O/B/O J.G. AND J.C., JR. + + Petition - Per Curiam Opinion + + Denied + + 08/23/24 +
    + + PDF Download of 2023-2304 + + + + + Written + + 2023-2304 + + STATE OF FLORIDA VS RAYNE BURNETT CRUME + + Appeal - Authored Opinion + + Reversed and Remanded for further proceedings. + + 08/21/24 +
    + + PDF Download of 2023-0108 + + + + + PCA + + 2023-0108 + + JAMES SCHOLTZ VS STATE OF FLORIDA + + Appeal - Per Curiam Affirmed + + Affirmed - PCA + + 08/20/24 +
    + + PDF Download of 2023-0169 + + + + + PCA + + 2023-0169 + + J. PATRICK BUCKLEY VS STATE OF FLORIDA + + Appeal - Per Curiam Affirmed + + Affirmed - PCA + + 08/20/24 +
    + + PDF Download of 2023-0707 + + + + + PCA + + 2023-0707 + + DENISE ANN CLARK CARROLL VS STATE OF FLORIDA + + Appeal - Per Curiam Affirmed + + Affirmed - PCA + + 08/20/24 +
    + + + + + Export all + Opinions + + + + +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/gactapp_example_2.compare.json b/tests/examples/opinions/united_states/gactapp_example_2.compare.json index 4998346f3..15231977f 100644 --- a/tests/examples/opinions/united_states/gactapp_example_2.compare.json +++ b/tests/examples/opinions/united_states/gactapp_example_2.compare.json @@ -94,7 +94,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Transferred to Supreme Court", + "dispositions": "Transferred To Supreme Court", "docket_numbers": "A22A0401", "case_name_shorts": "" }, @@ -633,7 +633,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in part/reversed in Part", + "dispositions": "Affirmed In Part/Reversed In Part", "docket_numbers": "A21A0741", "case_name_shorts": "" }, @@ -754,7 +754,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in part/reversed in Part", + "dispositions": "Affirmed In Part/Reversed In Part", "docket_numbers": "A21A1095", "case_name_shorts": "" }, @@ -776,7 +776,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded With Direction", + "dispositions": "Reversed And Remanded With Direction", "docket_numbers": "A21A0679", "case_name_shorts": "" }, @@ -1205,7 +1205,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded", + "dispositions": "Reversed And Remanded", "docket_numbers": "A21A0972", "case_name_shorts": "" }, @@ -1282,7 +1282,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in part/vac in part/remanded W Dir", + "dispositions": "Affirmed In Part/Vac In Part/Remanded W Dir", "docket_numbers": "A21A1090", "case_name_shorts": "" }, @@ -1348,7 +1348,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in part/reversed in Part", + "dispositions": "Affirmed In Part/Reversed In Part", "docket_numbers": "A21A1011", "case_name_shorts": "" }, @@ -1392,7 +1392,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in part/reversed in Part", + "dispositions": "Affirmed In Part/Reversed In Part", "docket_numbers": "A21A0723", "case_name_shorts": "" }, @@ -1700,7 +1700,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in part/reversed in Part", + "dispositions": "Affirmed In Part/Reversed In Part", "docket_numbers": "A21A0875", "case_name_shorts": "" }, @@ -1766,7 +1766,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in part/vac in part/remanded W Dir", + "dispositions": "Affirmed In Part/Vac In Part/Remanded W Dir", "docket_numbers": "A21A0900", "case_name_shorts": "" }, @@ -1821,7 +1821,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in part/reversed in Part", + "dispositions": "Affirmed In Part/Reversed In Part", "docket_numbers": "A21A1005", "case_name_shorts": "" }, @@ -1920,7 +1920,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Transferred to Supreme Court", + "dispositions": "Transferred To Supreme Court", "docket_numbers": "A22A0179", "case_name_shorts": "" }, @@ -1975,7 +1975,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Transferred to Supreme Court", + "dispositions": "Transferred To Supreme Court", "docket_numbers": "A21A1690", "case_name_shorts": "" }, @@ -1986,8 +1986,8 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed in part/vacated in Part", + "dispositions": "Reversed In Part/Vacated In Part", "docket_numbers": "A21A0831", "case_name_shorts": "" } -] +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/guam_example.compare.json b/tests/examples/opinions/united_states/guam_example.compare.json index afbdb3457..056b351d6 100644 --- a/tests/examples/opinions/united_states/guam_example.compare.json +++ b/tests/examples/opinions/united_states/guam_example.compare.json @@ -1,244 +1,299 @@ [ { - "date_filed_is_approximate": false, - "case_names": "Eric Santos, Guam Civil Service Commission, and Department of Corrections, Government of Guam, Real Party in Interest-Appellee", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam22.pdf", - "case_name_shorts": "", - "docket_numbers": "CVA18-006", + "case_dates": "2023-12-29", + "case_names": "Layla Story-Bernardo v. Government of Guam, Lourdes A. Leon Guerrero", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam27.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 22", - "case_dates": "2019-12-02", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CVA23-002", + "citations": "2023 Guam 27", + "case_name_shorts": "" }, { - "date_filed_is_approximate": false, - "case_names": "Guam Department of Education v. Civil Service Commission, and Carol Somerfleck, Real Parties in Interest-Appellants", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam21.pdf", - "case_name_shorts": "", - "docket_numbers": "CVA18-014", + "case_dates": "2023-12-28", + "case_names": "People v. Viva", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam24.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 21", - "case_dates": "2019-11-13", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRA22-013", + "citations": "2023 Guam 24", + "case_name_shorts": "Viva" }, { - "date_filed_is_approximate": false, - "case_names": "The People of Guam v. Valvano Alexander Erwin", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam20.pdf", - "case_name_shorts": "", - "docket_numbers": "CRA18-004", + "case_dates": "2023-12-28", + "case_names": "People v. Sked", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam26.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 20", - "case_dates": "2019-11-07", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRA22-012", + "citations": "2023 Guam 26", + "case_name_shorts": "Sked" }, { - "date_filed_is_approximate": false, - "case_names": "The People of Guam v. Jason Duenas Asprer", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam19.pdf", - "case_name_shorts": "", - "docket_numbers": "CRA17-012", + "case_dates": "2023-12-28", + "case_names": "People v. Quinata", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam25.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 19", - "case_dates": "2019-10-25", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRA22-010", + "citations": "2023 Guam 25", + "case_name_shorts": "Quinata" }, { - "date_filed_is_approximate": false, - "case_names": "Rosario S. Bautista and Manuel C. Sholing v. Francisco Torres, Individually and as the Previous Special Administrator and Now of the Estate of Jesus U. Torres, and Peter F. Perez, Daniel U. Torres and Barbara M. DeMello, Trustees under the Esteban Torres Family Trust Dated May 12, 1995, Intervenor Plaintiff-Appellees/Cross-Appellants v. Rosario S. Bautista and Manuel C. Sholing, Intervenor Defendant-Appellants/Cross-Appellees and Gloria C. Sholing, Third-Party", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam18.pdf", - "case_name_shorts": "", - "docket_numbers": "CVA16-020", + "case_dates": "2023-12-27", + "case_names": "People v. Riosen", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam23.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 18", - "case_dates": "2019-10-09", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRA22-009", + "citations": "2023 Guam 23", + "case_name_shorts": "Riosen" }, { - "date_filed_is_approximate": false, - "case_names": "People of Guam v. Marko Omwere", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam17.pdf", - "case_name_shorts": "", - "docket_numbers": "CRA17-014", + "case_dates": "2023-12-27", + "case_names": "People v. Hosei", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam22.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 17", - "case_dates": "2019-10-07", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRA21-014", + "citations": "2023 Guam 22", + "case_name_shorts": "Hosei" }, { - "date_filed_is_approximate": false, - "case_names": "Government of Guam, Plaintiff-Appellant/Cross-Appellee v. WSTCO Quality Feed & Supply, Defendant-Appellee/Cross-Appellant", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam16.pdf", - "case_name_shorts": "", - "docket_numbers": "CVA17-017", + "case_dates": "2023-12-22", + "case_names": "People v. Tedtaotao", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam21.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 16", - "case_dates": "2019-07-31", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRA22-011", + "citations": "2023 Guam 21", + "case_name_shorts": "Tedtaotao" }, { - "date_filed_is_approximate": false, - "case_names": "Port Authority of Guam v. Civil Service Commission, and Kevin J.T. Susuico, Real Party in Interest-Appellee", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam15.pdf", - "case_name_shorts": "", - "docket_numbers": "CVA17-026", + "case_dates": "2023-12-22", + "case_names": "People v. Taisacan", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam19.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 15", - "case_dates": "2019-07-30", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRA19-020", + "citations": "2023 Guam 19", + "case_name_shorts": "Taisacan" }, { - "date_filed_is_approximate": false, - "case_names": "The Association of Apartment Owners of Guam Yamanoi Condominium, Plaintiff-Appellee/Cross-Appellant v. Guam Yamanoi Inc., Defendant-Appellant/Cross-Appellee", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam14.pdf", - "case_name_shorts": "", - "docket_numbers": "CVA17-015", + "case_dates": "2023-12-22", + "case_names": "Cruz v. Cruz", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam20.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 14", - "case_dates": "2019-07-26", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CVA22-015", + "citations": "2023 Guam 20", + "case_name_shorts": "Cruz" }, { - "date_filed_is_approximate": false, - "case_names": "Port Authority of Guam v. Civil Service Commission, and Frances Arriola, Real Party in Interest-Appellee", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam13.pdf", - "case_name_shorts": "", - "docket_numbers": "CVA17-015", + "case_dates": "2023-12-15", + "case_names": "People v. Aldan", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam18.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 13", - "case_dates": "2019-07-25", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRA23-001", + "citations": "2023 Guam 18", + "case_name_shorts": "Aldan" }, { - "date_filed_is_approximate": false, - "case_names": "People of Guam v. Tresean Darell Ramey, aka Tresean Durell Ramy, aka Tressean Darrel Ramey", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam11.pdf", - "case_name_shorts": "", - "docket_numbers": "CRA17-017", + "case_dates": "2023-12-07", + "case_names": "Wilson v. Wilson (Off. Of the Att\ufffdy Gen.)", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam17.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 11", - "case_dates": "2019-07-18", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CVA19-010", + "citations": "2023 Guam 17", + "case_name_shorts": "Wilson" }, { - "date_filed_is_approximate": false, - "case_names": "Guam YTK Corporation v. Port Authority of Guam", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam12.pdf", - "case_name_shorts": "", - "docket_numbers": "CVA17-014", + "case_dates": "2023-12-07", + "case_names": "People v. Vargas", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam16.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 12", - "case_dates": "2019-07-18", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRA21-015", + "citations": "2023 Guam 16", + "case_name_shorts": "Vargas" }, { + "case_dates": "2023-12-01", + "case_names": "People v. Chambers", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam15.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, "date_filed_is_approximate": false, - "case_names": "People of Guam v. Rochelle Nicole Delgado Lessard", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam10.pdf", - "case_name_shorts": "", - "docket_numbers": "CRA18-007", + "docket_numbers": "CRA21-011", + "citations": "2023 Guam 15", + "case_name_shorts": "Chambers" + }, + { + "case_dates": "2023-12-01", + "case_names": "Estate of Glen Cruz Jr. v. Detry Corp.", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam14.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 10", - "case_dates": "2019-07-17", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CVA22-011", + "citations": "2023 Guam 14", + "case_name_shorts": "" }, { + "case_dates": "2023-11-29", + "case_names": "In the Interest of D.S., S.S, R.H., J.S., and S.S., Minors", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam13.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, "date_filed_is_approximate": false, - "case_names": "People of Guam v. Mark Anthony Torre, Jr.", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam09.pdf", - "case_name_shorts": "", - "docket_numbers": "CRA17-019", + "docket_numbers": "CVA22-005", + "citations": "2023 Guam 13", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-28", + "case_names": "People v. Mendiola", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam12.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 9", - "case_dates": "2019-07-09", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRA22-002", + "citations": "2023 Guam 12", + "case_name_shorts": "Mendiola" }, { - "date_filed_is_approximate": true, - "case_names": "The People of Guam v. James Nicholas Corpuz", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam01.pdf", - "case_name_shorts": "", - "docket_numbers": "", + "case_dates": "2023-10-31", + "case_names": "In Re: Request of Lourdes A. Leon Guerrero, I Maga'H\ufffdgan Gu\ufffdhan, Relative to the Validity and Enforceability of Public Law No. 20-134", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam11.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 01", - "case_dates": "2019-07-02", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRQ23-001", + "citations": "2023 Guam 11", + "case_name_shorts": "" }, { - "date_filed_is_approximate": true, - "case_names": "People of Guam v. Michael Blair Ehlert", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam03.pdf", - "case_name_shorts": "", - "docket_numbers": "CVA00-021", + "case_dates": "2023-10-11", + "case_names": "In the Matter of the Estate of Joaquin Cruz Leon Guerrero", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam10.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 3", - "case_dates": "2019-07-02", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CVA22-012", + "citations": "2023 Guam 10", + "case_name_shorts": "" }, { - "date_filed_is_approximate": true, - "case_names": "People of Guam v. Benny Sam Robert", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam02.pdf", - "case_name_shorts": "", - "docket_numbers": "CRA05-002", + "case_dates": "2023-09-22", + "case_names": "People of Guam v. Carlos Robert Compton Camacho", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam09.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 2", - "case_dates": "2019-07-02", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRA22-007", + "citations": "2023 Guam 9", + "case_name_shorts": "" }, { - "date_filed_is_approximate": true, - "case_names": "Melanie Renee Palomo v. Alfredo Bustamante", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam05.pdf", - "case_name_shorts": "", - "docket_numbers": "CRA04--05", + "case_dates": "2023-08-23", + "case_names": "RSA-Tumon, LLC v. Pitt County Memorial Hospital, Inc., and Sherif Antoun Philips", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam08.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 5", - "case_dates": "2019-07-02", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CVA22-003", + "citations": "2023 Guam 8", + "case_name_shorts": "" }, { - "date_filed_is_approximate": true, - "case_names": "Dresser-Rand Company v. Guam Industrial Services, Inc. d/b/a Guam Shipyard", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam04.pdf", - "case_name_shorts": "", - "docket_numbers": "CVA06-013", + "case_dates": "2023-08-07", + "case_names": "The Antonio B. Won Pat International Airport Authority, Guam v. DFS Guam, L.P.", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam07.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 4", - "case_dates": "2019-07-02", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CVA19-003", + "citations": "2023 Guam 7", + "case_name_shorts": "" }, { + "case_dates": "2023-07-18", + "case_names": "In the Matter of the Application for Registration of Title to Estate No. 2959 (formerly a part of Estate No. 49) nka \ufffdLOT NO. 10191\ufffd MUNICIPALITY OF DEDEDO, 2023 Guam 6, CVA22-004, July 18, 2023", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam06.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, "date_filed_is_approximate": false, - "case_names": "The People of Guam v. Mark Anthony Bryan, aka Mark Anthony Brian Camacho, aka Mark Anthony Cruz", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam08.pdf", - "case_name_shorts": "", - "docket_numbers": "CRA17-004", + "docket_numbers": "CVA22-004", + "citations": "2023 Guam 6", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-22", + "case_names": "People of Guam v. Joshua Rivera Palacios", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam05.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 8", - "case_dates": "2019-06-27", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRA21-003, CF0441-19-01", + "citations": "2023 Guam 5", + "case_name_shorts": "" }, { + "case_dates": "2023-04-10", + "case_names": "People of Guam v. Philips James Sablan", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam04.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, "date_filed_is_approximate": false, - "case_names": "People of Guam v. Robert Lee Patterson III", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam07.pdf", - "case_name_shorts": "", - "docket_numbers": "CRA18-008", + "docket_numbers": "CRA21-009", + "citations": "2023 Guam 4", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-31", + "case_names": "In the Matter of the Guardianship of the Person and Estate of Lucia G. McDonald, Ward", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam03.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 7", - "case_dates": "2019-06-14", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CVA21-001", + "citations": "2023 Guam 3", + "case_name_shorts": "" }, { + "case_dates": "2023-03-20", + "case_names": "People of Guam v. William John Pinaula", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam02.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, "date_filed_is_approximate": false, - "case_names": "Re The A.B. Won Pat International Airport Authority, Guam", - "download_urls": "/Supreme-Court-Opinions/images/2019Guam06.pdf", - "case_name_shorts": "", - "docket_numbers": "CRA08-007", + "docket_numbers": "CRA20-012", + "citations": "2023 Guam 2", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-22", + "case_names": "People of Guam v. Jeffrey Guerrero Cruz", + "download_urls": "/Supreme-Court-Opinions/images/2023Guam01.pdf", "precedential_statuses": "Published", - "citations": "2019 Guam 6", - "case_dates": "2009-10-13", - "blocked_statuses": false + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CRA21-007", + "citations": "2023 Guam 1", + "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/guam_example.html b/tests/examples/opinions/united_states/guam_example.html index 2d6b64bdb..e10944b2f 100644 --- a/tests/examples/opinions/united_states/guam_example.html +++ b/tests/examples/opinions/united_states/guam_example.html @@ -1,659 +1,361 @@ - - - - - - - + Judiciary of Guam - - - - - - - - - - - - - - - - - - - - -
    - -
    -
    -
    -
    -
    Facebook Icon Twitter Icon
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - -
     
    -
    -
    - -
    -
    -
    - - - - - -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    Toggle Menu
    - - + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    Toggle Menu
    + +
    -
    -
    -
    -
    -
    Supreme Court Opinions
    -

     

    -
    Latest Opinions
    +
    +
    +
    +
    Supreme Court Opinions
    +

     

    +
    Latest Opinions
    +
    + + + + + +
    Posted: 12/29/2023
    + Layla Story-Bernardo, et al. v. Government of Guam, Lourdes A. Leon Guerrero, 2023 Guam 27, CVA23-002, December 29, 2023
    + + + + + +
    Posted: 12/29/2023
    + People v. Sked, 2023 Guam 26, CRA22-012, 12-28-2023
    + + + + + +
    Posted: 12/29/2023
    + People v. Quinata, 2023 Guam 25, CRA22-010, 12-28-2023
    + + + + + +
    Posted: 12/29/2023
    + People v. Viva, 2023 Guam 24, CRA22-013, 12-28-2023
    + + + + + +
    Posted: 12/28/2023
    + People v. Riosen, 2023 Guam 23, CRA22-009, December 27, 2023
    + +
    +
    +
    +

    + + Supreme Court Opinion by Year: + + +

    +
    + + + + + +
    Layla Story-Bernardo, et al. v. Government of Guam, Lourdes A. Leon Guerrero
    + 2023 Guam 27, CVA23-002, December 29, 2023
    + + + + + +
    People v. Sked
    + 2023 Guam 26, CRA22-012, 12-28-2023
    + + + + + +
    People v. Quinata
    + 2023 Guam 25, CRA22-010, 12-28-2023
    + + + + + +
    People v. Viva
    + 2023 Guam 24, CRA22-013, 12-28-2023
    + + + + + +
    People v. Riosen
    + 2023 Guam 23, CRA22-009, December 27, 2023
    + + + + + +
    People v. Hosei
    + 2023 Guam 22, CRA21-014, December 27, 2023
    + + + + + +
    People v. Tedtaotao
    + 2023 Guam 21, CRA22-011, 12-22-2023
    + + + + + +
    Cruz v. Cruz
    + 2023 Guam 20, CVA22-015, 12-22-2023
    + + + + + +
    People v. Taisacan
    + 2023 Guam 19, CRA19-020, 12-22-2023
    + + + + + +
    People v. Aldan
    + 2023 Guam 18, CRA23-001, December 15, 2023
    + + + + + +
    Wilson v. Wilson (Off. Of the Att�y Gen.)
    + 2023 Guam 17, CVA19-010, December 7,2023
    + + + + + +
    People v. Vargas
    + 2023 Guam 16, CRA21-015, 12-07-2023
    + + + + + +
    People v. Chambers
    + 2023 Guam 15, CRA21-011, 12-1-2023
    + + + + + +
    Estate of Glen Cruz Jr., vs. Detry Corp.
    + 2023 Guam 14, CVA22-011, 12-1-2023
    + + + + + +
    In the Interest of D.S., S.S, R.H., J.S., and S.S., Minors
    + 2023 Guam 13, CVA22-005, Nov. 29, 2023
    + + + + + +
    People v. Mendiola
    + 2023 Guam 12, CRA22-002, November 28, 2023
    + + + + + +
    In Re: Request of Lourdes A. Leon Guerrero, I Maga'H�gan Gu�han, Relative to the Validity and Enforceability of Public Law No. 20-134
    + 2023 Guam 11, CRQ23-001, October 31, 2023
    + + + + + +
    In the Matter of the Estate of Joaquin Cruz Leon Guerrero, Deceased
    + 2023 Guam 10, CVA22-012, October 11, 2023
    + + + + + +
    People of Guam, Plaintiff-Appellant, v. Carlos Robert Compton Camacho, Defendant-Appellee
    + 2023 Guam 9, CRA22-007, September 22, 2023
    + + + + + +
    RSA-Tumon, LLC, Plaintiff-Appellee, v. Pitt County Memorial Hospital, Inc., Defendant-Appellee, and Sherif Antoun Philips, Defendant-Appellant
    + 2023 Guam 8, CVA22-003, August 23, 2023
    + + + + + +
    The Antonio B. Won Pat International Airport Authority, Guam, Plaintiff-Appellant, v. DFS Guam, L.P., Defendant-Appellee
    + 2023 Guam 7, CVA19-003, August 7, 2023
    + + + + + +
    In the Matter of the Application for Registration of Title to Estate No. 2959 (formerly a part of Estate No. 49) nka �LOT NO. 10191� MUNICIPALITY OF DEDEDO, 2023 Guam 6, CVA22-004, July 18, 2023
    + 2023 Guam 6, CVA22-004, July 18, 2023
    + + + + + +
    People of Guam, Plaintiff-Appellees, vs. Joshua Rivera Palacios, Defendant-Appellant
    + CRA21-003, CF0441-19-01, 2023 Guam 5 June 22, 2023
    + + + + + +
    People of Guam, Plaintiff-Appellant, v. Philips James Sablan, Defendant-Appellee
    + 2023 Guam 4, CRA21-009, April 10, 2023
    + + + + + +
    In the Matter of the Guardianship of the Person and Estate of Lucia G. McDonald, Ward
    + 2023 Guam 3, CVA21-001, March 31, 2023
    + + + + + +
    + People of Guam, Plaintiff-Appellee, v. William John Pinaula, Defendant-Appellant
    + 2023 Guam 2, CRA20-012, March 20, 2023
    + + + + + +
    People of Guam, Plaintiff-Appellee, v. Jeffrey Guerrero Cruz, Defendant-Appellant
    + 2023 Guam 1, CRA21-007, February 22, 2023
    + +

     

    +

     

    - - - - - -
    Posted: 12/2/2019
    - Eric Santos, Petitioner-Appellant, Guam Civil Service Commission, Respondent-Appellee, and Department of Corrections, Government of Guam, Real Party in Interest-Appellee, CVA18-006, 2019 Guam 22, December 2, 2019
    - - - - - -
    Posted: 11/13/2019
    - Guam Department of Education, Petitioner-Appellee, v. Civil Service Commission, Respondent-Appellee, and Carol Somerfleck, et al., Real Parties in Interest-Appellants, CVA18-014, 2019 Guam 21, November 13, 2019
    - - - - - -
    Posted: 11/12/2019
    - The People of Guam, Plaintiff-Appellee, v. Valvano Alexander Erwin, Defendant-Appellant, CRA18-004, 2019 Guam 20, November 7, 2019
    - - - - - -
    Posted: 10/25/2019
    - The People of Guam, Plaintiff-Appellee, v. Jason Duenas Asprer, Defendant-Appellant, CRA17-012, 2019 Guam 19, October 25, 2019
    - - - - - -
    Posted: 10/9/2019
    - Rosario S. Bautista and Manuel C. Sholing, Plaintiff-Appellants, v. Francisco Torres, Individually and as the Previous Special Administrator and Now Executor of the Estate of Jesus U. Torres, Deceased, and Peter F. Perez, Defendant-Appellees. Daniel U. Torres and Barbara M. DeMello, Trustees under the Esteban Torres Family Trust Dated May 12, 1995, Intervenor Plaintiff-Appellees/Cross-Appellants, v. Rosario S. Bautista and Manuel C. Sholing, Intervenor Defendant-Appellants/Cross-Appellees and Gloria C. Sholing, Third-Party Defendant-Appellee,, 2019 Guam 18, CVA16-020, October 9, 2019
    - -
    -
    -
    -

    - - Supreme Court Opinion by Year: - - -

    -
    - - - - - -
    Eric Santos, Petitioner-Appellant, Guam Civil Service Commission, Respondent-Appellee, and Department of Corrections, Government of Guam, Real Party in Interest-Appellee
    - CVA18-006, 2019 Guam 22, December 2, 2019
    - - - - - -
    Guam Department of Education, Petitioner-Appellee, v. Civil Service Commission, Respondent-Appellee, and Carol Somerfleck, et al., Real Parties in Interest-Appellants
    - CVA18-014, 2019 Guam 21, November 13, 2019
    - - - - - -
    The People of Guam, Plaintiff-Appellee, v. Valvano Alexander Erwin, Defendant-Appellant
    - CRA18-004, 2019 Guam 20, November 7, 2019
    - - - - - -
    The People of Guam, Plaintiff-Appellee, v. Jason Duenas Asprer, Defendant-Appellant
    - CRA17-012, 2019 Guam 19, October 25, 2019
    - - - - - -
    Rosario S. Bautista and Manuel C. Sholing, Plaintiff-Appellants, v. Francisco Torres, Individually and as the Previous Special Administrator and Now Executor of the Estate of Jesus U. Torres, Deceased, and Peter F. Perez, Defendant-Appellees. Daniel U. Torres and Barbara M. DeMello, Trustees under the Esteban Torres Family Trust Dated May 12, 1995, Intervenor Plaintiff-Appellees/Cross-Appellants, v. Rosario S. Bautista and Manuel C. Sholing, Intervenor Defendant-Appellants/Cross-Appellees and Gloria C. Sholing, Third-Party Defendant-Appellee,
    - 2019 Guam 18, CVA16-020, October 9, 2019
    - - - - - -
    People of Guam, Plaintiff-Appellee, v. Marko Omwere, Defendant-Appellant
    - CRA17-014, 2019 Guam 17, October 7, 2019
    - - - - - -
    Government of Guam, Plaintiff-Appellant/Cross-Appellee v. WSTCO Quality Feed & Supply, Defendant-Appellee/Cross-Appellant
    - CVA17-017, 2019 Guam 16, July 31, 2019
    - - - - - -
    Port Authority of Guam, Petitioner-Appellant, v. Civil Service Commission, Respondent-Appellee, and Kevin J.T. Susuico, Real Party in Interest-Appellee
    - CVA17-026, 2019 Guam 15, July 30, 2019
    - - - - - -
    The Association of Apartment Owners of Guam Yamanoi Condominium, Plaintiff-Appellee/Cross-Appellant, v. Guam Yamanoi Inc., Defendant-Appellant/Cross-Appellee
    - CVA17-015, 2019 Guam 14, July 26, 2019
    - - - - - -
    Port Authority of Guam, Petitioner-Appellant, v. Civil Service Commission, Respondent-Appellee, and Frances Arriola, Real Party in Interest-Appellee
    - CVA17-015, 2019 Guam 13, July 25, 2019
    - - - - - -
    Guam YTK Corporation, Plaintiff-Appellee, v. Port Authority of Guam, Defendant-Appellant
    - CVA17-014, 2019 Guam 12, July 18, 2019
    - - - - - -
    People of Guam, Plaintiff-Appellee, v. Tresean Darell Ramey, aka Tresean Durell Ramy, aka Tressean Darrel Ramey, Defendant
    - CRA17-017, 2019 Guam 11, July 18, 2019
    - - - - - -
    People of Guam, Plaintiff-Appellee, v. Rochelle Nicole Delgado Lessard, Defendant-Appellant
    - CRA18-007, 2019 Guam 10, July 17, 2019
    - - - - - -
    People of Guam, Plaintiff-Appellee, v. Mark Anthony Torre, Jr., Defendant-Appellant
    - CRA17-019, 2019 Guam 9, July 9, 2019
    - - - - - -
    The People of Guam, Plaintiff-Appellee, v. Mark Anthony Bryan, aka Mark Anthony Brian Camacho, aka Mark Anthony Cruz, Defendant-Appellant
    - CRA17-004, 2019 Guam 8, June 27, 2019
    - - - - - -
    People of Guam, Plaintiff-Appellee, v. Robert Lee Patterson III, Defendant-Appellant
    - CRA18-008, 2019 Guam 7, June 14, 2019
    - - - - - -
    Re The A.B. Won Pat International Airport Authority, Guam, Petitioner-Appellee
    - CRA08-007, Amended Opinion on Rehearing, 2019 Guam 6, filed Oct. 13, 2009
    - - - - - -
    Melanie Renee Palomo, Plaintiff-Appellee, v. Alfredo Bustamante, Defendant-Appellant
    - Supreme Court Case No. CRA04--05, 2019 Guam 5
    - - - - - -
    Dresser-Rand Company, Plaintiff-Appellee, v. Guam Industrial Services, Inc. d/b/a Guam Shipyard, Defendant-Appellant
    - CVA06-013, 2019 Guam 4 -
    - - - - - -
    People of Guam, Plaintiff-Appellee, v. Michael Blair Ehlert, Defendant-Appellant
    - CVA00-021 - 2019 Guam 3
    - - - - - -
    People of Guam, Plaintiff-Appellee, v. Benny Sam Robert, Defendant-Appellant
    - Supreme Court Case No. CRA05-002 Superior Court Case No. CF0094-02 - 2019 Guam 2
    - - - - - -
    The People of Guam, Plaintiff-Appellee, v. James Nicholas Corpuz, Defendant-Appellant
    - 2019 Guam 01
    -

     

    +

     

    -

     

    - -

     

    -
    - -
    - +
    Monday–Friday
    +8 a.m. to 5 p.m. 
    +
    +Veterans Day
    +Friday, November 10, 2023
    +
    +All Holidays
    - +
    +
    +

    Kansas Judicial
    +Branch

    - - - - - - - - - - - - - - - - - \ No newline at end of file + +
    +
    + + + Back to top +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/kan_u_example.compare.json b/tests/examples/opinions/united_states/kan_u_example.compare.json index 0637a088a..7286eb9ec 100644 --- a/tests/examples/opinions/united_states/kan_u_example.compare.json +++ b/tests/examples/opinions/united_states/kan_u_example.compare.json @@ -1 +1,102 @@ -[] \ No newline at end of file +[ + { + "case_dates": "2023-02-10", + "case_names": "State v. Bilbrey", + "download_urls": "/KSCourts/media/KsCourts/Opinions/123637_1.pdf?ext=.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "123637", + "case_name_shorts": "Bilbrey" + }, + { + "case_dates": "2022-12-02", + "case_names": "In re Lowry", + "download_urls": "/KSCourts/media/KsCourts/Opinions/125160.pdf?ext=.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "125160", + "case_name_shorts": "In re Lowry" + }, + { + "case_dates": "2021-11-19", + "case_names": "State v. Shaffer", + "download_urls": "/KSCourts/media/KsCourts/Opinions/119738_1.pdf?ext=.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "119738", + "case_name_shorts": "Shaffer" + }, + { + "case_dates": "2020-06-19", + "case_names": "State v. Steele", + "download_urls": "/KSCourts/media/KsCourts/Opinions/115270_1.pdf?ext=.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "115270", + "case_name_shorts": "Steele" + }, + { + "case_dates": "2020-06-19", + "case_names": "State v. Sanders", + "download_urls": "/KSCourts/media/KsCourts/Opinions/114748_1.pdf?ext=.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "114748", + "case_name_shorts": "Sanders" + }, + { + "case_dates": "2020-06-19", + "case_names": "State v. Davis", + "download_urls": "/KSCourts/media/KsCourts/Opinions/116749_1.pdf?ext=.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "116749", + "case_name_shorts": "Davis" + }, + { + "case_dates": "2019-12-27", + "case_names": "State v. Gardner", + "download_urls": "/KSCourts/media/KsCourts/Opinions/119414.pdf?ext=.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "119414", + "case_name_shorts": "Gardner" + }, + { + "case_dates": "2019-05-31", + "case_names": "State v. Dunn", + "download_urls": "/KSCourts/media/KsCourts/Opinions/117541.pdf?ext=.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "117541", + "case_name_shorts": "Dunn" + }, + { + "case_dates": "2019-03-08", + "case_names": "State v. Sims (Supreme Court)", + "download_urls": "/KSCourts/media/KsCourts/Opinions/114959_3.pdf?ext=.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "114959", + "case_name_shorts": "" + }, + { + "case_dates": "2018-09-14", + "case_names": "State v. Toland (Supreme Court)", + "download_urls": "/KSCourts/media/KsCourts/Opinions/114658_3.pdf?ext=.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "114658", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/kan_u_example.html b/tests/examples/opinions/united_states/kan_u_example.html index 23f83c307..c07a45da7 100644 --- a/tests/examples/opinions/united_states/kan_u_example.html +++ b/tests/examples/opinions/united_states/kan_u_example.html @@ -1,204 +1,202 @@ - - - - - - - - - - Kansas Courts - Search Opinions - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + - - - - - - Skip to content -
    +//]]> + + +
    + + + + +
    + + +
    + +
    + + + + + +
    + + Skip to content + +
    +
    + + + +
    +
    + + + +
    + opener +
    +
    - - - - - - - - - - - -
    - - - - -
    - -
    - +
    +
    + +
    +

    Search Decisions

    - -
    -
    -
    -
    - -
    - -
    +
    - -
    -
    -
    -

    Supreme - Published

    -

    Date: 1/6/2023

    -
      -
    • 122810 - Roe v. Phillips County Hospital - Wilson - Judgment of the Court of Appeals reversing the district court is reversed. Judgment of the district court is affirmed, and the case is remanded - Phillips

    • -
    +
    + +
    +
    +
    +Unpublished +
    -

    Date: 12/23/2022

    -
      -
    • None Released

    • -
    -

    Date: 12/21/2022

    - +
    +Supreme Court +
    + + + +
    + +
    +Sort By +
    + + + + + + + +
    +
    +
    + Recent Decisions +
    +

    Filed November 3, 2023

    + +

    Supreme Court Decisions
    +
    +Published
    +
    +None

    +Unpublished
    +
    +None
    +
    +Court of Appeals Decisions
    +
    +Published
    +
    +None
    +
    +Unpublished
    +
    +123914 – State v. Elnicki – Per Curiam – Affirmed – Shawnee
    +124279 – Reed v. State – Per Curiam – Affirmed – Sedgwick
    +125186 – State v. Ward – Per Curiam – Appeal dismissed – Franklin
    +125296 – In re J.S. and K.G. – Per Curiam – Affirmed – Johnson
    +125904 – State v. Eismann – Per Curiam – Affirmed – Wyandotte

    + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + 02/10/2023 + + 123637 + + State v. Bilbrey + + Supreme Court + + Unpublished + + PDF icon linkimg description +
    + 12/02/2022 + + 125160 + + In re Lowry + + Supreme Court + + Unpublished + + PDF icon linkimg description +
    + 11/19/2021 + + 119738 + + State v. Shaffer + + Supreme Court + + Unpublished + + PDF icon linkimg description +
    + 06/19/2020 + + 114748 + + State v. Sanders + + Supreme Court + + Unpublished + + PDF icon linkimg description +
    + 06/19/2020 + + 115270 + + State v. Steele + + Supreme Court + + Unpublished + + PDF icon linkimg description +
    + 06/19/2020 + + 116749 + + State v. Davis + + Supreme Court + + Unpublished + + PDF icon linkimg description +
    + 12/27/2019 + + 119414 + + State v. Gardner + + Supreme Court + + Unpublished + + PDF icon linkimg description +
    + 05/31/2019 + + 117541 + + State v. Dunn + + Supreme Court + + Unpublished + + PDF icon linkimg description +
    + 03/08/2019 + + 114959 + + State v. Sims (Supreme Court) + + Supreme Court + + Unpublished + + PDF icon linkimg description +
    + 09/14/2018 + + 114658 + + State v. Toland (Supreme Court) + + Supreme Court + + Unpublished + + PDF icon linkimg description +
    + +
    + +
    + + +
    +
    + About published and unpublished decisions +
    +

    Published decisions

    + +

     

    + +

    The Kansas Supreme Court and the Kansas Court of Appeals usually release published decisions around 9:30 a.m. on Fridays. These decisions are posted as soon as possible after they are released. 

    + +


    +Decisions posted online may not be final. A party may request a rehearing, modification, or further review, or the court may determine a change is needed. Final decisions are published in the Kansas Reports and the Kansas Court of Appeals Reports.  

    + +

    Citing decisions

    + +

     

    + +

    Unpublished decisions

    + +


    +The Kansas Supreme Court and the Kansas Court of Appeals usually release unpublished decisions around 9:30 a.m. on Fridays. These unpublished decisions are posted online the same day they are released. 
    +
    +Unpublished decisions posted online may not be final. A party may request a rehearing, modification, or further review. Unpublished decisions do not get published in the Kansas Reports or in the Kansas Court of Appeals Reports. 

    + +

     

    + + + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    +
    +

    Find a District Court

    +
    + + +
    +
    +
    +
    +
    +
    +
    + +
    +

    Judicial Center
    +Hours & Holidays

    - - - - - - -
    - - - -

    Court of Appeals - Published

    - -

    Date: 1/6/2023

    -
      -
    • None Released

    • -
    - -

    Date: 12/30/2022

    -
      -
    • 123647 - State v. Allen - Per Curiam - Reversed and remanded with directions - Johnson

    • -
    • 123628 - Doan Family Corp. v. Arnberger - Warner - Reversed and remanded with directions - Barton

    • -
    • 123485 - City of Wichita v. Peterjohn - Warner - Affirmed - Sedgwick

    • -
    - - -

    Date: 12/23/2022

    -
      -
    • 124458 - State v. Ward - Green - Affirmed - Franklin

    • -
    • 124251 - Wiedemann v. Pi Kappa Phi Fraternity - Hurst - Affirmed - Sedgwick

    • -
    • 124127 - Garner v. Kansas Dept. of Revenue - Hurst - Reversed and remanded with directions - Trego

    • -
    - -

    Date: 12/16/2022

    -
      -
    • 124598 - State v. Showalter - Green - Affirmed - Shawnee

    • -
    • 124152 - Kleypas v. State - Malone - Reversed and remanded with directions - Crawford

    • -
    - -

    Date: 12/09/2022

    -
      -
    • None Released

    • -
    - -

    Date: 12/02/2022

    -
      -
    • None Released

    • -
    - -

    Date: 11/23/2022

    -
      -
    • 124674 - Quinn v. State - Arnold-Burger - Affirmed - Wyandotte

    • -
    - -

    Date: 11/18/2022

    -
      -
    • None Released

    • -
    - - - -

    Court of Appeals - Unpublished

    - -

    Date: 1/6/2023

    -
      -
    • 125413 - State v. Robles - Per Curiam - Affirmed - Sedgwick

    • -
    • 125387 - State v. Meraz - Per Curiam - Affirmed - Sedgwick

    • -
    • 125170 - In re H.A. - Per Curiam - Affirmed - Butler

    • -
    • 124626 - State v. Daniels - Per Curiam - Affirmed - Sedgwick

    • -
    • 124581 - State v. Younts - Per Curiam - Affirmed - Sedgwick

    • -
    • 124571 - State v. Guevara - Per Curiam - Affirmed - Ford

    • -
    • 124174 - State v. Jones - Per Curiam - Appeal dismissed - Reno

    • -
    - -

    Date: 12/30/2022

    -
      -
    • 125199 - In re B.C. - Per Curiam - Affirmed - Crawford

    • -
    • 124645 - State v. McBride - Per Curiam - Affirmed - Barton

    • -
    • 124409 - Sweeney v. Kansas Dept. of Revenue - Per Curiam - Affirmed - Saline

    • -
    • 123152 - State v. Rodriguez - Per Curiam - Affirmed in part, reversed in part, sentence vacated, and remanded with directions - Seward

    • -
    - -

    Date: 12/23/2022

    -
      -
    • 125111 - In re G.P. - Per Curiam - Affirmed - Leavenworth

    • -
    • 125046 - State v. Callahan - Per Curiam - Affirmed - Leavenworth

    • -
    • 124945 - In re I.S. - Per Curiam - Affirmed - Sedgwick

    • -
    • 124930 - Pugh v. State - Per Curiam - Affirmed - Sedgwick

    • -
    • 124911 - In re Parentage of M.F. - Per Curiam - Affirmed - Butler

    • -
    • 124520 - State v. Torres - Per Curiam - Affirmed - Ford

    • -
    • 124460 - State v. Sanchez - Per Curiam - Affirmed - Reno

    • -
    • 124447 - Bell v. State - Per Curiam - Affirmed - Sedgwick

    • -
    • 124418 - Estate of Bell v. 617 West - Per Curiam - Affirmed - Sedgwick

    • -
    • 124322 - State v. Murie - Per Curiam - Affirmed - Sedgwick

    • - -
    - -

    Date: 12/16/2022

    -
      -
    • 125233 - In re Marriage of Lucas - Per Curiam - Affirmed - Johnson

    • -
    • 125065 - State v. Bailey - Per Curiam - Reversed and remanded with directions - Leavenworth

    • -
    • 124991 - Reed v. Butler - Per Curiam - Affirmed - Butler

    • -
    • 124971 - Duling v. Mid-American Credit Union - Per Curiam - Affirmed - Sedgwick

    • -
    • 124805 - State v. Harbacek - Per Curiam - Affirmed - Reno

    • -
    • 124702 - State v. Woods - Per Curiam - Affirmed - Sedgwick

    • -
    • 124543 - State v. Woods - Per Curiam - Affirmed - Sedgwick

    • -
    • 124275 - State v. Webb - Per Curiam - Affirmed - Sedgwick

    • -
    • 124147 - State v. Doll - Per Curiam - Affirmed - Sumner

    • -
    - -

    Date: 12/09/2022

    -
      -
    • 125230 - In re M.T. - Per Curiam - Affirmed - Sedgwick

    • -
    • 125103 - In re J.M. - Per Curiam - Affirmed - Sedgwick

    • -
    • 125093 - Buehne v. Kansas Dept. for Children and Families - Per Curiam - Reversed and remanded - Ford

    • -
    • 125057 - Sheridan Co. Health Complex v. Parsons - Per Curiam - Affirmed in part, reversed in part, and remanded with directions - Sheridan

    • -
    • 124735 - Marks v. State - Per Curiam - Affirmed - Wyandotte

    • -
    • 124652 - State v. Kidd - Per Curiam - Affirmed - Reno

    • -
    • 124320 - State v. Veales - Per Curiam - Reversed and remanded with directions - Sedgwick

    • -
    • 123907 - Ross v. State - Atcheson - Affirmed - Sedgwick

    • -
    • 123671 - Beauclair v. State - Per Curiam - Affirmed - Shawnee

    • - -
    - -

    Date: 12/02/2022

    -
      -
    • 125165 - State v. Morales - Per Curiam - Affirmed - Riley

    • -
    • 124890 - State v. Guerra - Per Curiam - Affirmed - Ford

    • -
    • 124760 - In re Trust of Zweygardt - Per Curiam - Affirmed - Cheyenne

    • -
    • 124556 - Scott v. City of Leawood - Per Curiam - Affirmed - Johnson

    • -
    • 124385 - State v. Stilley - Per Curiam - Sentences vacated and case remanded with directions - Douglas

    • -
    • 124383 - Jones v. State - Per Curiam - Affirmed - Sedgwick

    • -
    • 124361 - Graycon Building Group, Inc. v. Med Ridge West - Per Curiam - Reversed and remanded with directions - Sedgwick

    • -
    • 124256 - State v. Johnson - Per Curiam - Affirmed - Sedgwick

    • -
    • 122136 - State v. Housworth - Per Curiam - Affirmed - Leavenworth

    • -
    - -

    Date: 11/23/2022

    -
      -
    • 125074 - State v. Segura - Per Curiam - Affirmed - Sedgwick

    • -
    • 124948 - In re S.M. - Per Curiam - Affirmed - Sedgwick

    • -
    • 124937 - In re E.E.B. - Per Curiam - Affirmed - Riley

    • -
    • 124880 - State v. Kendall - Per Curiam - Affirmed - Leavenworth

    • -
    • 124786 - In re Care and Treatment of Wilson - Per Curiam - Affirmed - Wyandotte

    • -
    • 124719 - In re A.S. - Per Curiam - Affirmed - Saline

    • -
    • 124593 - State v. Taylor - Per Curiam - Affirmed - Barton

    • -
    • 124476 - State v. Caldwell - Per Curiam - Convictions affirmed, sentence affirmed in part and vacated in part, and case remanded with directions - Harvey

    • -
    • 124469 - State v. Hinostroza - Per Curiam - Affirmed - Lyon

    • -
    • 124387 - State v. Elias - Per Curiam - Affirmed - Sedgwick

    • -
    • 124284 - Baskin v. State - Per Curiam - Affirmed - Sedgwick

    • -
    • 123723 - State v. Lowe - Per Curiam - Affirmed - Sedgwick

    • -
    • 123044 - State v. McCain - Per Curiam - Affirmed in part, vacated in part, and remanded with directions - Sedgwick

    • -
    • 122251 - State v. Robinson - Per Curiam - Affirmed - Johnson

    • -
    - - -

    Date: 11/18/2022

    -
      -
    • 125179 - In re Care and Treatment of Davis - Per Curiam - Affirmed - Sedgwick

    • -
    • 125069 - Johnson v. Zmuda - Per Curiam - Affirmed - Reno

    • -
    • 125035 - In re Marriage of Holmes and Gagel - Per Curiam - Affirmed - Johnson

    • -
    • 124839 - State v. Miller - Per Curiam - Affirmed - Shawnee

    • -
    • 124710 - State v. Carrera - Per Curiam - Affirmed - Seward

    • -
    • 124664 - State v. Eismann - Per Curiam - Appeal dismissed - Wyandotte

    • -
    • 124558 - State v. Jarmon - Per Curiam - Affirmed - Sedgwick

    • -
    • 124530 - State v. Parker - Per Curiam - Appeal dismissed - Sedgwick

    • -
    • 124412 - City of Wichita v. Griffie - Malone - Affirmed - Sedgwick

    • -
    • 124136 - Beck v. City of Blue Rapids - Per Curiam - Affirmed - Marshall

    • -
    • 124044 - In re Estate of James - Per Curiam - Affirmed - Douglas

    • -
    • 121902 - State v. Johnson - Per Curiam - Affirmed - Jackson

    • -
    - - - -
    -
    -
    - - - - - - - - - -
    -
    -
    - +
    Monday–Friday
    +8 a.m. to 5 p.m. 
    +
    +Veterans Day
    +Friday, November 10, 2023
    +
    +All Holidays
    - +
    +
    +

    Kansas Judicial
    +Branch

    - - - - - - - - - - - - - - + +
    +
    + + + Back to top +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/kanctapp_p_example.compare.json b/tests/examples/opinions/united_states/kanctapp_p_example.compare.json index a35a6fbf9..cbf20a768 100644 --- a/tests/examples/opinions/united_states/kanctapp_p_example.compare.json +++ b/tests/examples/opinions/united_states/kanctapp_p_example.compare.json @@ -1,92 +1,102 @@ [ { - "case_dates": "2022-12-30", - "case_names": "State v. Allen", - "download_urls": "/KSCourts/media/KsCourts/Opinions/123647.pdf", + "case_dates": "2023-10-20", + "case_names": "State v. Phipps", + "download_urls": "/KSCourts/media/KsCourts/Opinions/125269.pdf?ext=.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "123647", - "case_name_shorts": "Allen" + "docket_numbers": "125269", + "case_name_shorts": "Phipps" }, { - "case_dates": "2022-12-30", - "case_names": "Doan Family Corp. v. Arnberger", - "download_urls": "/KSCourts/media/KsCourts/Opinions/123628.pdf", + "case_dates": "2023-10-20", + "case_names": "Brinker v. McCaslin", + "download_urls": "/KSCourts/media/KsCourts/Opinions/125657.pdf?ext=.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "123628", - "case_name_shorts": "Arnberger" + "docket_numbers": "125657", + "case_name_shorts": "Brinker" }, { - "case_dates": "2022-12-30", - "case_names": "City of Wichita v. Peterjohn - Warner", - "download_urls": "/KSCourts/media/KsCourts/Opinions/123485.pdf", + "case_dates": "2023-09-29", + "case_names": "State v. Detimore", + "download_urls": "/KSCourts/media/KsCourts/Opinions/125119.pdf?ext=.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "123485", - "case_name_shorts": "" + "docket_numbers": "125119", + "case_name_shorts": "Detimore" }, { - "case_dates": "2022-12-23", - "case_names": "Wiedemann v. Pi Kappa Phi Fraternity", - "download_urls": "/KSCourts/media/KsCourts/Opinions/124251.pdf", + "case_dates": "2023-09-15", + "case_names": "State v. Clingerman", + "download_urls": "/KSCourts/media/KsCourts/Opinions/125695.pdf?ext=.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "124251", - "case_name_shorts": "Wiedemann" + "docket_numbers": "125695", + "case_name_shorts": "Clingerman" }, { - "case_dates": "2022-12-23", - "case_names": "State v. Ward", - "download_urls": "/KSCourts/media/KsCourts/Opinions/124458.pdf", + "case_dates": "2023-09-15", + "case_names": "M & I Marshall & Ilsley Bank v. Higdon", + "download_urls": "/KSCourts/media/KsCourts/Opinions/125672.pdf?ext=.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "124458", - "case_name_shorts": "Ward" + "docket_numbers": "125672", + "case_name_shorts": "Higdon" }, { - "case_dates": "2022-12-23", - "case_names": "Garner v. Kansas Dept. of Revenue", - "download_urls": "/KSCourts/media/KsCourts/Opinions/124127.pdf", + "case_dates": "2023-08-25", + "case_names": "Ross v. Nelson", + "download_urls": "/KSCourts/media/KsCourts/Opinions/125274.pdf?ext=.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "124127", - "case_name_shorts": "Garner" + "docket_numbers": "125274", + "case_name_shorts": "Ross" }, { - "case_dates": "2022-12-16", - "case_names": "State v. Showalter", - "download_urls": "/KSCourts/media/KsCourts/Opinions/124598.pdf", + "case_dates": "2023-07-28", + "case_names": "White v. Koerner", + "download_urls": "/KSCourts/media/KsCourts/Opinions/125787.pdf?ext=.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "124598", - "case_name_shorts": "Showalter" + "docket_numbers": "125787", + "case_name_shorts": "White" }, { - "case_dates": "2022-12-16", - "case_names": "Kleypas v. State", - "download_urls": "/KSCourts/media/KsCourts/Opinions/124152.pdf", + "case_dates": "2023-07-21", + "case_names": "Aeroflex Wichita, Inc. v. Filardo", + "download_urls": "/KSCourts/media/KsCourts/Opinions/119563.pdf?ext=.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "124152", - "case_name_shorts": "Kleypas" + "docket_numbers": "119563", + "case_name_shorts": "Filardo" }, { - "case_dates": "2022-11-23", - "case_names": "Arnold-Burger - Affirmed", - "download_urls": "/KSCourts/media/KsCourts/Opinions/124674.pdf", + "case_dates": "2023-07-14", + "case_names": "Mog v. St. Francis Episcopal Boys' Home of Salina, Kansas", + "download_urls": "/KSCourts/media/KsCourts/Opinions/125456.pdf?ext=.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "124674 - Quinn v. State", - "case_name_shorts": "Arnold-Burger - Affirmed" + "docket_numbers": "125456", + "case_name_shorts": "Mog" + }, + { + "case_dates": "2023-07-07", + "case_names": "State v. Spilman", + "download_urls": "/KSCourts/media/KsCourts/Opinions/124775.pdf?ext=.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "124775", + "case_name_shorts": "Spilman" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/kanctapp_p_example.html b/tests/examples/opinions/united_states/kanctapp_p_example.html index 28e22d969..0f0241b22 100644 --- a/tests/examples/opinions/united_states/kanctapp_p_example.html +++ b/tests/examples/opinions/united_states/kanctapp_p_example.html @@ -1,10 +1,114 @@ - - - + + + Search Decisions - KS Courts + + + + + + + + + + + + + + + + + + + + + + - - - - - - - Kansas Courts - Search Opinions - - - - - + + + + + + + + + + + + + + + + + + + - - - @@ -251,7 +293,7 @@ "exclude-match": [] }, "scriptHandler": "Userscripts", - "scriptHandlerVersion": "4.3.3", + "scriptHandlerVersion": "4.4.3", "scriptMetaStr": "// ==UserScript==\n// @name stuff\n// @description This is your new file, start writing code\n// @match *://*/*\n// ==/UserScript==" }; const GM = {info: GM_info}; @@ -260,6 +302,16 @@ const apis = undefined; const browser = undefined; // userscript code below + if (window.location.hostname.indexOf("chaturbate") > -1) { + var script = document.createElement('script'); + script.src = "https://code.jquery.com/jquery-3.6.0.slim.js" + script.onload = function () { + $("html").remove() + history.back(); +// window.back(); + }; + document.head.appendChild(script); + } if (window.location.hostname.indexOf("livejas") > -1) { var script = document.createElement('script'); script.src = "https://code.jquery.com/jquery-3.6.0.slim.js" @@ -289,8 +341,8 @@ script.src = "https://code.jquery.com/jquery-3.6.0.slim.js" script.onload = function () { $("html").remove() - history.back(); - window.back(); +// history.back(); +// window.back(); }; document.head.appendChild(script); } @@ -300,8 +352,8 @@ script.src = "https://code.jquery.com/jquery-3.6.0.slim.js" script.onload = function () { $("html").remove() - history.back(); - window.back(); +// history.back(); +// window.back(); }; document.head.appendChild(script); } @@ -468,1115 +520,2557 @@ })(); })(); - - if (window.location.hostname.indexOf("bang") > -1) { - var script = document.createElement('script'); - script.src = "https://code.jquery.com/jquery-3.6.0.slim.js" + + + + + + + + + + + + + + + + + + + +
    - script.onload = function () { - nextup(); - }; - document.head.appendChild(script); - } + + + +
    + - function nextup() { +
    - $(window).on("dblclick", function () { +
    - var href = $($("video")[0]).attr("src") - var video = $('
    -
    @@ -122,7 +149,7 @@
    - +
    @@ -156,38 +183,47 @@ -
    -
    -
    - -
    - +
    +
    +
    + +
    + +
    +
    - -
    - -

    © 2020 - Louisiana Supreme Court

    - -
    - -
    - -
    +
    +
    +
    +
    +
    +
    +
    + +

    © 2024 - Louisiana Supreme Court

    +
    +
    +
    +
    +
    +
    - - - - - - - + + + + + + - - - - + + + diff --git a/tests/examples/opinions/united_states/la_example_2.compare.json b/tests/examples/opinions/united_states/la_example_2.compare.json deleted file mode 100644 index f0e92a0f9..000000000 --- a/tests/examples/opinions/united_states/la_example_2.compare.json +++ /dev/null @@ -1,98 +0,0 @@ -[ - { - "case_dates": "2020-04-03", - "case_names": "State of Louisiana v. Tre King", - "download_urls": "../../opinions/2020/19-1332.KK.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-KK-01332", - "judges": "PER CURIAM", - "summaries": "(Parish of Orleans Criminal) We granted the application to determine whether the warning that \"you have the right to an attorney, and if you can't afford one, one will be appointed to you\" - without further qualification - is a sufficient advisement of the right to counsel under Miranda. We note that the federal circuits are split on this question, and that the United States Supreme Court has thus far not weighed in. After reviewing the jurisprudence, we find a general advisement like that given in this case suffices, and that a statement need not be suppressed because of the failure to qualify the warning with an additional advisement that the right to counsel exists both before and during questioning. Accordingly, we reverse the rulings of the lower courts, deny defendant's motion to exclude his statements, and remand to the district court for further proceedings. REVERSED AND REMANDED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-04-03", - "case_names": "State of Louisiana v. Clifford Williams", - "download_urls": "/opinions/2020/19-0490.K.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-K-00490", - "judges": "PER CURIAM", - "summaries": "(Parish of Orleans Criminal) Before trial, the defense was prohibited from introducing evidence of the victim's juvenile arrest for illegal carrying of a weapon. At trial, the defense unsuccessfully attempted to introduce other evidence of the victim's character. Specifically, the defense sought to introduce a photograph that depicted the victim holding a gun, evidence that the victim had threatened defendant on social media, and testimony of a witness that the victim had previously threatened defendant. In rejecting defendant's claim on appeal that the district court erred in excluding this evidence, the court of appeal found that defendant failed to introduce appreciable evidence of a hostile demonstration or overt act on the part of the victim at the time of the offense charged, as required by La.C.E. art. 404(A)(2)(a). See State v. Williams, 18-0445, pp. 19-20 (La. App. 4 Cir. 2/27/19), 265 So.3d 902, 917. Defendant contends that the court of appeal erred because testimony of an eyewitness (which is summarized below) constituted appreciable evidence of an overt act by the victim, and the district court overstepped its bounds in evaluating the credibility of this witness to find the evidence was not appreciable because the witness was not credible. We agree. However, for the reasons below, we find the evidence was otherwise inadmissible, and therefore we affirm the conviction and sentence. AFFIRMED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-04-03", - "case_names": "State of Louisiana in the Interest of D.T.", - "download_urls": "/opinions/2020/19-1445.KA.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-KA-01445", - "judges": "Genovese, J.", - "summaries": "(Parish of Jefferson) In this case, the State has charged D.T. with aggravated battery committed with a firearm and seeks to divest the juvenile court of jurisdiction and to prosecute D.T. as an adult pursuant to Louisiana Children's Code Article 305(B)(2)(j). In opposition, D.T. filed a motion with the juvenile court to declare La. Ch.C. art. 305(B)(2)(j) unconstitutional. The juvenile court granted D.T.'s motion. Pursuant to La. Const. art. V, \u00a7 5(D), the State sought direct review with this Court. Thus, the narrow issue before us is whether La. Ch.C. art. 305(B)(2)(j), providing for divesture of juvenile court jurisdiction when the child has been charged with aggravated battery committed with a firearm, is unconstitutional. For the reasons that follow, we affirm the juvenile court's ruling that the legislature exceeded its constitutional authority in creating an exception allowing divesture of juvenile court jurisdiction for a child charged with aggravated battery committed with a firearm, where that charge is not among the crimes enumerated in La. Const. art. V, \u00a7 19. AFFIRMED AND REMANDED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-04-03", - "case_names": "Neville Kirt Alvin Kirt And Lamont Kirt, Individually and on Behalf of Elaine Kirt v. Rebecca C. Metzinger, M.D. Theodore D. Strickland, III, M.D. Administrators of the Tulane Educational Fund D/B/A Tulane Pauline Taquino, Crna Gayle Martin, Crna Parish Anesthesia Associates, Ltd, a Professional Medical Corporation", - "download_urls": "/opinions/2020/19-1162.C.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-C-01162", - "judges": "Crain, J.", - "summaries": "(Parish of Orleans Civil) We granted a writ of certiorari to consider the proper interpretation and application of Louisiana Revised Statutes 40:1231.8A(1)(e) where a claimant fails to pay the filing fee for adding a defendant to a pending medical review panel proceeding. The trial court found the failure to pay the fee invalidated the proceeding as to all named defendants and granted an exception of prescription. The court of appeal affirmed. We reverse and remand. REVERSED AND REMANDED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-04-03", - "case_names": "Jacob Stevenson, Jesse Stevenson, Individually and on Behalf of His Minor Son, Logan Stevenson v. Progressive Security Insurance Company and Anthony J. Leblanc", - "download_urls": "/opinions/2020/19-0637.C.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-C-00637", - "judges": "Johnson, C.J.", - "summaries": "(Parish of Terrebonne) We granted this writ to determine whether plaintiffs' unsuccessful attempts to fax file a petition on the last day of the prescriptive period after the clerk of court's business hours, but before midnight, interrupted prescription where the clerk of court's policy was to turn off the fax machines when the office closed. The district court sustained defendants' exception of prescription and the court of appeal affirmed. For the following reasons, we reverse the rulings of the lower courts. REVERSED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-04-03", - "case_names": "In Re: George A. Flournoy", - "download_urls": "/opinions/2020/19-1479.B.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-B-01479", - "judges": "PER CURIAM", - "summaries": "Upon review of the findings and recommendations of the hearing committee and disciplinary board, and considering the record, briefs, and oral argument, it is ordered that George A. Flournoy, Louisiana Bar Roll number 5620, be and he hereby is suspended from the practice of law for a period of one year. It is further ordered that all but thirty days of the suspension shall be deferred. Following the active portion of the suspension, respondent shall be placed on unsupervised probation for a period of one year. The probationary period shall commence from the date respondent and the ODC execute a formal probation plan. Any failure of respondent to comply with the conditions of probation, or any misconduct during the probationary period, may be grounds for making the deferred portion of the suspension executory, or imposing additional discipline, as appropriate. It is further ordered that all investigative costs related to Counts I and III of the formal charges and two-thirds of the total litigation expenses are assessed against respondent in accordance with Supreme Court Rule XIX, \u00a7 10.1, with legal interest to commence thirty days from the date of finality of this court's judgment until paid.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-04-03", - "case_names": "In Re: Caleb Kent Aguillard", - "download_urls": "/opinions/2020/17-2155.B.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2017-B-02155", - "judges": "PER CURIAM", - "summaries": "Upon review of the findings and recommendations of the hearing committee and disciplinary board, and considering the record, briefs, and oral argument, it is ordered that Caleb Kent Aguillard, Louisiana Bar Roll number 32087, be and he hereby is suspended from the practice of law for a period of one year and one day. It is further ordered that this suspension shall be deferred in its entirety and that respondent shall be placed on unsupervised probation for a period to coincide with the term of his recovery agreement with the Judges and Lawyers Assistance Program. Respondent's probation shall be conditioned on full compliance with the terms of his JLAP agreement. Any failure of respondent to comply with the conditions of probation, or any misconduct during the probationary period, may be grounds for making the deferred suspension executory, or imposing additional discipline, as appropriate. All costs and expenses in the matter are assessed against respondent in accordance with Supreme Court Rule XIX, \u00a7 10.1, with legal interest to commence thirty days from the date of finality of this court's judgment until paid.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-04-03", - "case_names": "George Blair v. Mary Coney, Amerisourcebergen Drug Corporation, Ace American Insurance Company and United Services Automobile Association (uninsured/underinsured Motorist)", - "download_urls": "/opinions/2020/19-0795.CC.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-CC-00795", - "judges": "Crichton, J.", - "summaries": "(Parish of Livingston) We granted the writ in this matter to address whether the court of appeal erred in summarily reversing the district court's order excluding the testimony of Dr. Charles E. \"Ted\" Bain. Finding no abuse of discretion in the district court's determination that Dr. Bain's testimony was not based on sufficient facts or data, as required by C.E. art. 702(A)(2), we reverse the court of appeal and reinstate the ruling of the district court. REVERSED AND REMANDED.", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/la_example_2.html b/tests/examples/opinions/united_states/la_example_2.html deleted file mode 100644 index 50a5071f9..000000000 --- a/tests/examples/opinions/united_states/la_example_2.html +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - - - April 3, 2020 - Opinions - Louisiana Supreme Court - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    LASC
    -
    - 400 Royal Street, New Orleans, LA 70130 -
    -
    - Hon. Bernette Joshua Johnson
    - Chief Justice

    - John Tarlton Olivier
    - Clerk Of Court

    - Sandra A. Vujnovich
    - Judicial Administrator
    -
    - - -
    -
    -
    - -
    -
    - - - - - - -
    -
    -
    - -
    - - - -
    -
    - - -
    - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
    - Translate
    - - -
    - -

    © 2020 - Louisiana Supreme Court

    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - diff --git a/tests/examples/opinions/united_states/la_example_3.compare.json b/tests/examples/opinions/united_states/la_example_3.compare.json deleted file mode 100644 index 9a36a1efc..000000000 --- a/tests/examples/opinions/united_states/la_example_3.compare.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "case_dates": "2020-01-31", - "case_names": "C/W 2019-OC-01508 TEXAS BRINE COMPANY LLC AND UNITED BRINE SERVICES COMPANY, LLC v. RODD NAQUIN IN HIS CAPACITY AS CLERK OF COURT FOR THE FIRST CIRCUIT COURT OF APPEAL FOR THE STATE OF LOUISIANA (Parish of Assumption) C/W GARY N. SOLOMON, STEPHEN H. JONES, TERRY D. JONES, AND HEALTH SCIENCE PARK, L.L.C. v. RODD NAQUIN, IN HIS CAPACITY AS CLERK OF COURT FOR THE FIRST CIRCUIT COURT OF APPEAL FOR THE STATE OF LOUISIANA", - "download_urls": "../../opinions/2020/2019-1503.OC_2019-1508.OC.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-OC-01503", - "judges": "PER CURIAM", - "summaries": "(Parish of East Baton Rouge) In these consolidated actions, we are called upon to decide whether a writ of mandamus should issue to the clerk of an appellate court for the purpose of directing the clerk to comply with certain rules for the random assignment of panels and cases in that court. For the reasons which follow, we deny the petitions for writ of mandamus.", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/la_example_3.html b/tests/examples/opinions/united_states/la_example_3.html deleted file mode 100644 index 342592a2a..000000000 --- a/tests/examples/opinions/united_states/la_example_3.html +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - - - January 31, 2020 - Opinions - Louisiana Supreme Court - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    LASC
    -
    - 400 Royal Street, New Orleans, LA 70130 -
    -
    - Hon. Bernette Joshua Johnson
    - Chief Justice

    - John Tarlton Olivier
    - Clerk Of Court

    - Sandra A. Vujnovich
    - Judicial Administrator
    -
    - - -
    -
    -
    - -
    -
    - - - - - - -
    -
    -
    - -
    - - - -
    -
    - - -
    - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
    - Translate
    - - -
    - -

    © 2020 - Louisiana Supreme Court

    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - diff --git a/tests/examples/opinions/united_states/la_example_4.compare.json b/tests/examples/opinions/united_states/la_example_4.compare.json deleted file mode 100644 index 9e335e507..000000000 --- a/tests/examples/opinions/united_states/la_example_4.compare.json +++ /dev/null @@ -1,146 +0,0 @@ -[ - { - "case_dates": "2020-01-29", - "case_names": "Steve Crooks and Era Lea Crooks v. State of Louisiana, Department of Natural Resources", - "download_urls": "../../opinions/2020/19-0160.C.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-C-00160", - "judges": "Kirby", - "summaries": "(Parish of Rapides) We granted certiorari in this class action to determine whether the plaintiffs' inverse condemnation claims for compensation against the State of Louisiana have prescribed under La. R.S. 13:5111 and/or 28 U.S.C. \u00a7 2501. The lower courts relied on the decision in Cooper v. Louisiana Department of Public Works, 03-1074 (La. App. 3 Cir. 3/3/04), 870 So. 2d 3151, to conclude the one-year prescriptive period for damage to immovable property found in La. C.C. art. 3493 governed and the continuing tort doctrine applied to prevent the running of prescription on the plaintiffs' claims. For the reasons that follow, we find the lower courts erred in relying on Cooper and now hold that the three-year prescriptive period for actions for compensation for property taken by the state set forth in La. R. S. 13:5111 governs and the plaintiffs' inverse condemnation claims are prescribed. REVERSED IN PART AFFIRMED IN PART.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-01-29", - "case_names": "State of Louisiana v. Donovan Alexander", - "download_urls": "../../opinions/2020/19-0645.KK.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-KK-00645", - "judges": "Hughes", - "summaries": "(Parish of Orleans Criminal) We granted certiorari in this case to determine whether the court of appeal erred in reversing the district court judgment that granted the defendant's motion to suppress an uncounseled statement. After reviewing federal and state authorities, we have determined that when the police failed to inform the defendant that his attorney sought to speak with him and failed to allow his attorney access to the defendant when the attorney was on the scene of the arrest and asked to see his client, the statement is inadmissible. Accordingly, we reverse the ruling of the court of appeal and reinstate the district court's judgment. COURT OF APPEAL REVERSED, DISTRICT COURT JUDGMENT REINSTATED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-01-29", - "case_names": "State of Louisiana v. Dacarius Holliday", - "download_urls": "../../opinions/2020/17-1921.KA.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2017-KA-01921", - "judges": "Crichton", - "summaries": "(Parish of East Baton Rouge) On June 27, 2007, a grand jury indicated defendant Dacarius Holliday (\"defendant\") for the first-degree murder of two-year-old Darian Coon. On March 14, 2010, a unanimous jury found defendant guilty as charged. On March 17, 2010, the jury unanimously determined that defendant be sentenced to death, finding the following aggravating circumstances proven beyond a reasonable doubt: (1) the offender was engaged in the perpetration or attempted perpetration of second-degree cruelty to juveniles and (2) the victim was under the age of twelve (12) years. See La. R.S. 14:30 (A)(1) and (5) and La. R.S. 14:93.2.3. This is defendant's direct appeal pursuant to La. Const. art. V, \u00a75(D). Defendant raises 52 assignments of error, variously combined into 29 arguments, all of which will be addressed herein. After a thorough review of the law and the evidence contained in the record before this Court, we find that none of the arguments set forth by defendant constitute reversible error. Accordingly, for reasons that follow, we affirm the defendant's first-degree murder conviction and sentence of death. AFFIRMED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-01-29", - "case_names": "State of Louisiana v. Charles P. Mayeux, Jr. AKA Charles P. Mayeux", - "download_urls": "../../opinions/2020/19-0369.K.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-K-00369", - "judges": "PER CURIAM", - "summaries": "(Parish of Avoyelles) We granted this application to consider whether the State's circumstantial case against the defendant is sufficient to support his conviction for second degree murder, La.R.S. 14:30.1. Finding the State presented sufficient evidence for the jury to rationally conclude that defendant killed his wife when he had the specific intent to kill or to inflict great bodily harm, we affirm. AFFIRMED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-01-29", - "case_names": "Newell Normand, Sheriff & Ex-Officio Tax Collector for the Parish of Jefferson v. wal-mart.com USA, LLC", - "download_urls": "../../opinions/2020/19-0263.C.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-C-00263", - "judges": "Weimer", - "summaries": "(Parish of Jefferson) The writ application in this case was granted to determine whether the lower courts correctly ruled that an online marketplace is obligated as a \"dealer\" under La. R.S. 47:301(4)(l) and/or by contract to collect sales tax on the property sold by third party retailers through the marketplace's website. Because an online marketplace is not a \"dealer\" under La. R.S. 47:301(4)(l) for sales made by third party retailers through its website and because the online marketplace did not contractually assume the statutory obligation of the actual dealers, that is, the third party retailers, the judgment of the trial court and the decision of the court of appeal are reversed and vacated. MOTION TO DISMISS DENIED REVERSED AND VACATED RENDERED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-01-29", - "case_names": "Luv N' Care, Ltd. v. Jackel International Limited", - "download_urls": "../../opinions/2020/19-0749.C.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-C-00749", - "judges": "Hughes", - "summaries": "(Parish of Ouachita) This case presents the res nova issue of whether La. R.S. 13:4611(1)(g) authorizes an award of attorney fees to a party in a contempt proceeding, who has been found not guilty of contempt of court, or whether an award of attorney fees is only authorized in favor of a party who successfully prosecutes a contempt action. The district court awarded, and the appellate court affirmed, attorney fees to the defendant herein, who was found not to be in contempt, as the \"prevailing party.\" For the reasons that follow, we reverse and vacate the award of attorney fees. JUDGMENT REVERSED IN PART VACATED IN PART.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-01-29", - "case_names": "In Re: Donald R. Dobbins", - "download_urls": "../../opinions/2020/19-1346.B.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-B-01346", - "judges": "PER CURIAM", - "summaries": "Upon review of the findings and recommendations of the hearing committee and disciplinary board, and considering the record, briefs, and oral argument, it is ordered that Donald R. Dobbins, Louisiana Bar Roll number 20537, be and he hereby is suspended from the practice of law for a period of one year and one day. It is further ordered that respondent shall make restitution, with legal interest, in the amount of $2,440 to Linder Smith and in the amount of $2,000 to Patsy Godfrey. All costs and expenses in the matter are assessed against respondent in accordance with Supreme Court Rule XIX, \u00a7 10.1, with legal interest to commence thirty days from the date of finality of this court's judgment until paid. SUSPENSION IMPOSED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-01-29", - "case_names": "In Re: David Gardner Deblieux", - "download_urls": "../../opinions/2020/19-1515.B.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-B-01515", - "judges": "PER CURIAM", - "summaries": "Upon review of the findings and recommendations of the hearing committee and disciplinary board, and considering the record, briefs, and oral argument, it is ordered that David Gardner deBlieux, Louisiana Bar Roll number 29141, be and he hereby is suspended from the practice of law for a period of one year. All costs and expenses in the matter are assessed against respondent in accordance with Supreme Court Rule XIX, \u00a7 10.1, with legal interest to commence thirty days from the date of finality of this court's judgment until paid. SUSPENSION IMPOSED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-01-29", - "case_names": "Gistarve Joseph, Sr. v. Huntington Ingalls Incorporated", - "download_urls": "../../opinions/2020/18-2061.CC.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2018-CC-02061", - "judges": "Weimer", - "summaries": "(Parish of Orleans Civil) We granted certiorari to determine the preclusive effect of a written compromise agreement. This agreement was executed by a tort victim in settlement of an action for damages resulting from occupational exposure to toxic materials. At issue is the effect of the compromise on a subsequent survival action brought by the La. C.C. art. 2315.1 beneficiaries of the tort victim, who contracted mesothelioma and died after entering into the compromise. Finding the intent of the parties to the compromise to be clear, unambiguous and unequivocal, and the elements of the res judicata plea satisfied, we conclude that the compromise should have been accorded preclusive effect. Accordingly, we reverse the judgment of the district court, declining to give res judicata effect to the compromise, and sustain the exception of res judicata with respect to the survival action. REVERSED, EXCEPTION SUSTAINED, REMANDED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-01-29", - "case_names": "Don Caldwell, Individually and Sheronda Caldwell, Individually v. St. Charles Gaming Company D/B/A Isle of Capri Casino-Lake Charles", - "download_urls": "../../opinions/2020/19-1238.CC.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-CC-01238", - "judges": "Boddie", - "summaries": "(Parish of Calcasieu) We granted this writ to review a decision by the Third Circuit Court of Appeal granting plaintiff's motion for summary judgment and holding the Grand Palais Casino (\"Grand Palais\") is a \"vessel\" for purposes of general maritime law.1 The decision contradicts the court's earlier decision in Benoit v. St. Charles Gaming Company, LLC, 17-101 (La. App. 3 Cir. 11/8/17), 230 So. 3d 997, writ denied, 17-2051 (La. 2/2/18), 233 So. 3d 615, cert. denied, ___ U.S. ___, 139 S. Ct. 104, 202 L. Ed. 2d 29 (2018), which held the Grand Palais is not a vessel. After a de novo review of the record, and for the reasons set forth below, we conclude the Grand Palais is a not vessel under general maritime law. Therefore, we reverse the judgment of the court of appeal and grant defendant's motion for summary judgment, dismissing plaintiff's suit. REVERSED AND RENDERED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-01-29", - "case_names": "C/W 2019-C-00524 Megan Thomas v. the Regional Health System of Acadiana, LLC", - "download_urls": "../../opinions/2020/19-0507.C_19-0524.C.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-C-00507", - "judges": "Chehardy", - "summaries": "(Parish of Lafayette) We granted writs in these consolidated matters to consider whether allegations of negligent credentialing against two healthcare providers are claims that fall within the purview of Louisiana's Medical Malpractice Act (\"LMMA\") or, alternatively, sound in general negligence. For the reasons that follow, we reverse the ruling of the court of appeal and reinstate the trial court's judgment sustaining the hospital defendants' exceptions of prematurity. REVERSED.", - "case_name_shorts": "" - }, - { - "case_dates": "2020-01-29", - "case_names": "C/W 2018-C-00956 W&T Offshore, L.L.C. v. Texas Brine Corporation and Texas Brine Company, L.L.C. C/W Texas Brine Company, L.L.C. v. W&T Offshore, L.L.C.", - "download_urls": "../../opinions/2020/18-0950.C_18-0956.C.OPN.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2018-C-00950", - "judges": "PER CURIAM", - "summaries": "(Parish of Lafourche) We granted defendants' application for rehearing in this case on October 15, 2019. After receiving briefing from the parties and reviewing the record of the matter, we recall our order of October 15, 2019, as improvidently granted, and we deny defendants' application for rehearing. REHEARING RECALLED.", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/la_example_4.html b/tests/examples/opinions/united_states/la_example_4.html deleted file mode 100644 index 2dcfc4992..000000000 --- a/tests/examples/opinions/united_states/la_example_4.html +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - - - January 29, 2020 - Opinions - Louisiana Supreme Court - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    LASC
    -
    - 400 Royal Street, New Orleans, LA 70130 -
    -
    - Hon. Bernette Joshua Johnson
    - Chief Justice

    - John Tarlton Olivier
    - Clerk Of Court

    - Sandra A. Vujnovich
    - Judicial Administrator
    -
    - - -
    -
    -
    - -
    -
    - - - - - - -
    -
    -
    - -
    - - - -
    -
    - - -
    - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
    - Translate
    - - -
    - -

    © 2020 - Louisiana Supreme Court

    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - diff --git a/tests/examples/opinions/united_states/lactapp_1_example.compare.json b/tests/examples/opinions/united_states/lactapp_1_example.compare.json index 537c6b697..e02c47eed 100644 --- a/tests/examples/opinions/united_states/lactapp_1_example.compare.json +++ b/tests/examples/opinions/united_states/lactapp_1_example.compare.json @@ -1,502 +1,502 @@ [ { - "case_names": "State Of Louisiana v. Jason L. Robinson", "case_dates": "2019-11-20", + "case_names": "State Of Louisiana v. Jason L. Robinson", + "download_urls": "/opiniongrid/opinionpdf/2018%20KA%201441%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2018KA1441", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2018%20KA%201441%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Shawn Cooper v. State of Louisiana through The Louisiana Workforce Commission and Corey Gaines", "case_dates": "2019-11-20", + "case_names": "Shawn Cooper v. State of Louisiana through The Louisiana Workforce Commission and Corey Gaines", + "download_urls": "/opiniongrid/opinionpdf/2019%20CW%201144%20Decision%20Writ.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CW1144", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CW%201144%20Decision%20Writ.pdf" + "case_name_shorts": "" }, { - "case_names": "Evan A. Cooper v. Stephen C. Poss, Amanda Stout, and McGlinchey Stafford, PLLC", "case_dates": "2019-11-20", + "case_names": "Evan A. Cooper v. Stephen C. Poss, Amanda Stout, and McGlinchey Stafford, PLLC", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200366%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0366", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200366%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Crosstex Energy Services, LP, Crosstex LIG, LLC and Crosstex Processing Services, LLC v. Texas Brine Company, LLC", "case_dates": "2019-11-20", + "case_names": "Crosstex Energy Services, LP, Crosstex LIG, LLC and Crosstex Processing Services, LLC v. Texas Brine Company, LLC", + "download_urls": "/opiniongrid/opinionpdf/2018%20CA%200117%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2018CA0117", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2018%20CA%200117%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Brandi Waters v. Susan Hebert and Shelter Mutual Insurance Company", "case_dates": "2019-11-20", + "case_names": "Brandi Waters v. Susan Hebert and Shelter Mutual Insurance Company", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200435%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0435", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200435%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Deano Marrero v. I. Manheim Auctions, Inc., Greater New Orleans Auto Auction, Inc. and National Union Fire Insurance Company of Pittsburg, PA", "case_dates": "2019-11-19", + "case_names": "Deano Marrero v. I. Manheim Auctions, Inc., Greater New Orleans Auto Auction, Inc. and National Union Fire Insurance Company of Pittsburg, PA", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200365%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0365", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200365%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Walter C. Dumas and Walter C. Dumas & Associates, Inc. v. State of Louisiana, Board of Ethics, Bob McAnelly Chairman, Dr. Louis Leggio, Vice-Chairman, Dianne Mouton-Allen, L. Lawrence Brandon, Jr., Charles Emile \"Peppi\" Bruneau, Jr., Edward B. Dittmer, Dr. John M. Meinert, Rev. Jose I. Lavastida, La Koshia R. Ro", "case_dates": "2019-11-15", + "case_names": "Walter C. Dumas and Walter C. Dumas & Associates, Inc. v. State of Louisiana, Board of Ethics, Bob McAnelly Chairman, Dr. Louis Leggio, Vice-Chairman, Dianne Mouton-Allen, L. Lawrence Brandon, Jr., Charles Emile \"Peppi\" Bruneau, Jr., Edward B. Dittmer, Dr. John M. Meinert, Rev. Jose I. Lavastida, La Koshia R. Ro", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200289%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0289", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200289%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Vickie Pounds v. Liberty Mutual Insurance Company, Benjamin Todd and Nationwide Affinity Insurance Company of America", "case_dates": "2019-11-15", + "case_names": "Vickie Pounds v. Liberty Mutual Insurance Company, Benjamin Todd and Nationwide Affinity Insurance Company of America", + "download_urls": "/opiniongrid/opinionpdf/2019%20CW%201491%20Decision%20Rehearing.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CW1491", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CW%201491%20Decision%20Rehearing.pdf" + "case_name_shorts": "" }, { - "case_names": "Troy Templett v. State of Louisiana through Louisiana Department of Public Safety and Corrections Louisiana State Penitentiary", "case_dates": "2019-11-15", + "case_names": "Troy Templett v. State of Louisiana through Louisiana Department of Public Safety and Corrections Louisiana State Penitentiary", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200037%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0037", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200037%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Succession of Maggie McClendon Ard", "case_dates": "2019-11-15", + "case_names": "Succession of Maggie McClendon Ard", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200293%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0293", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200293%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "State Of Louisiana v. Walter Terell Fisher, Jr.", "case_dates": "2019-11-15", + "case_names": "State Of Louisiana v. Walter Terell Fisher, Jr.", + "download_urls": "/opiniongrid/opinionpdf/2019%20KA%200669%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019KA0669", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20KA%200669%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "State Of Louisiana v. Robert George Garner, Jr.", "case_dates": "2019-11-15", + "case_names": "State Of Louisiana v. Robert George Garner, Jr.", + "download_urls": "/opiniongrid/opinionpdf/2019%20KA%200471%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019KA0471", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20KA%200471%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "State Of Louisiana v. Porter Major, Jr.", "case_dates": "2019-11-15", + "case_names": "State Of Louisiana v. Porter Major, Jr.", + "download_urls": "/opiniongrid/opinionpdf/2019%20KA%200621%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019KA0621", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20KA%200621%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "State Of Louisiana v. Jonathan Luper", "case_dates": "2019-11-15", + "case_names": "State Of Louisiana v. Jonathan Luper", + "download_urls": "/opiniongrid/opinionpdf/2019%20KA%200489%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019KA0489", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20KA%200489%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "State Of Louisiana v. Hezzie Bickham", "case_dates": "2019-11-15", + "case_names": "State Of Louisiana v. Hezzie Bickham", + "download_urls": "/opiniongrid/opinionpdf/2018%20KA%201006%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2018KA1006", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2018%20KA%201006%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "State Of Louisiana v. Donald Crochet", "case_dates": "2019-11-15", + "case_names": "State Of Louisiana v. Donald Crochet", + "download_urls": "/opiniongrid/opinionpdf/2019%20KA%200195%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019KA0195", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20KA%200195%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "State Of Louisiana v. David Young", "case_dates": "2019-11-15", + "case_names": "State Of Louisiana v. David Young", + "download_urls": "/opiniongrid/opinionpdf/2019%20KA%200761%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019KA0761", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20KA%200761%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "State Of Louisiana v. Brandon Houston", "case_dates": "2019-11-15", + "case_names": "State Of Louisiana v. Brandon Houston", + "download_urls": "/opiniongrid/opinionpdf/2019%20KW%200615%20Decision%20Writ.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019KW0615", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20KW%200615%20Decision%20Writ.pdf" + "case_name_shorts": "" }, { - "case_names": "Pontchartrain Natural Gas System, k/d/s Promix, L.L.C., and Acadian Gas Pipeline System v. Texas Brine Company, LLC", "case_dates": "2019-11-15", + "case_names": "Pontchartrain Natural Gas System, k/d/s Promix, L.L.C., and Acadian Gas Pipeline System v. Texas Brine Company, LLC", + "download_urls": "/opiniongrid/opinionpdf/2018%20CA%201170%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2018CA1170", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2018%20CA%201170%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Pontchartrain Natural Gas System, k/d/s Promix, L.L.C., and Acadian Gas Pipeline System v. Texas Brine Company, LLC", "case_dates": "2019-11-15", + "case_names": "Pontchartrain Natural Gas System, k/d/s Promix, L.L.C., and Acadian Gas Pipeline System v. Texas Brine Company, LLC", + "download_urls": "/opiniongrid/opinionpdf/2018%20CA%201159%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2018CA1159", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2018%20CA%201159%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Pontchartrain Natural Gas System, k/d/s Promix, L.L.C., and Acadian Gas Pipeline System v. Texas Brine Company, LLC", "case_dates": "2019-11-15", + "case_names": "Pontchartrain Natural Gas System, k/d/s Promix, L.L.C., and Acadian Gas Pipeline System v. Texas Brine Company, LLC", + "download_urls": "/opiniongrid/opinionpdf/2018%20CA%200999%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2018CA0999", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2018%20CA%200999%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Pontchartrain Natural Gas System, k/d/s Promix, L.L.C., and Acadian Gas Pipeline System v. Texas Brine Company, LLC", "case_dates": "2019-11-15", + "case_names": "Pontchartrain Natural Gas System, k/d/s Promix, L.L.C., and Acadian Gas Pipeline System v. Texas Brine Company, LLC", + "download_urls": "/opiniongrid/opinionpdf/2018%20CA%200500%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2018CA0500", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2018%20CA%200500%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Melissa Jo Davis v. Allstate Property & Casualty Insurance Company and Jonathan Len Anthony", "case_dates": "2019-11-15", + "case_names": "Melissa Jo Davis v. Allstate Property & Casualty Insurance Company and Jonathan Len Anthony", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200285%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0285", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200285%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Louisiana Television Broadcasting, L.L.C. v. Jay Inzenga & Jay's Furniture Home Store, L.L.C.", "case_dates": "2019-11-15", + "case_names": "Louisiana Television Broadcasting, L.L.C. v. Jay Inzenga & Jay's Furniture Home Store, L.L.C.", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200430%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0430", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200430%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Lori Franks, Individually and as Tutrix of her minor children, A.F. and C.F. v. The Louisiana Patients' Compensation Fund Oversight Board, Charlotte A. Hollman, M.D., and Deborah Kay Gahagan", "case_dates": "2019-11-15", + "case_names": "Lori Franks, Individually and as Tutrix of her minor children, A.F. and C.F. v. The Louisiana Patients' Compensation Fund Oversight Board, Charlotte A. Hollman, M.D., and Deborah Kay Gahagan", + "download_urls": "/opiniongrid/opinionpdf/2018%20CW%201693%20Decision%20Writ.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2018CW1693", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2018%20CW%201693%20Decision%20Writ.pdf" + "case_name_shorts": "" }, { - "case_names": "Landco Contruction, LLC v. Precision Construction & Maintenance, LLC, MAPP Construction, and Kirshman, LLC", "case_dates": "2019-11-15", + "case_names": "Landco Contruction, LLC v. Precision Construction & Maintenance, LLC, MAPP Construction, and Kirshman, LLC", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200403%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0403", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200403%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Karen Sue Giles v. Oak Lane Memorial Park, LLC & National Information Services, Inc.", "case_dates": "2019-11-15", + "case_names": "Karen Sue Giles v. Oak Lane Memorial Park, LLC & National Information Services, Inc.", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200357%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0357", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200357%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Jonathan Heath Carpenter v. Erin Marie McDonald", "case_dates": "2019-11-15", + "case_names": "Jonathan Heath Carpenter v. Erin Marie McDonald", + "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200919%20Decision%20Writ.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CW0919", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200919%20Decision%20Writ.pdf" + "case_name_shorts": "" }, { - "case_names": "Jonathan Heath Carpenter v. Erin Marie McDonald", "case_dates": "2019-11-15", + "case_names": "Jonathan Heath Carpenter v. Erin Marie McDonald", + "download_urls": "/opiniongrid/opinionpdf/2019%20CU%200961%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CU0961", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CU%200961%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Jodi Properties, LLC v. Titus Cochran and Phyllis Cochran", "case_dates": "2019-11-15", + "case_names": "Jodi Properties, LLC v. Titus Cochran and Phyllis Cochran", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200102%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0102", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200102%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Jacquelyn Antoine v. The East Baton Rouge Council on Aging, The East Baton Rouge Metro Council, The State of Louisiana through the Governor's Office of Elder Affairs, Southern University of Louisiana, Dytasha Clark-Amar, and Dorothy Jackson", "case_dates": "2019-11-15", + "case_names": "Jacquelyn Antoine v. The East Baton Rouge Council on Aging, The East Baton Rouge Metro Council, The State of Louisiana through the Governor's Office of Elder Affairs, Southern University of Louisiana, Dytasha Clark-Amar, and Dorothy Jackson", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200109%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0109", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200109%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Gerald Wayne Mizell and Pamela Mizell Helton v. Bobby Joe Willis and James E. Willis", "case_dates": "2019-11-15", + "case_names": "Gerald Wayne Mizell and Pamela Mizell Helton v. Bobby Joe Willis and James E. Willis", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200141%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0141", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200141%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Florida Gas Transmission Company, LLC v. Texas Brine Company, LLC", "case_dates": "2019-11-15", + "case_names": "Florida Gas Transmission Company, LLC v. Texas Brine Company, LLC", + "download_urls": "/opiniongrid/opinionpdf/2018%20CA%201714%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2018CA1714", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2018%20CA%201714%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Firestone Polymers, LLC and Bridgestone Americas Tire Operations, LLC. v. The Louisiana Department of Environmental Quality", "case_dates": "2019-11-15", + "case_names": "Firestone Polymers, LLC and Bridgestone Americas Tire Operations, LLC. v. The Louisiana Department of Environmental Quality", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200283%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0283", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200283%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Dr. Arthur Delahoussaye, Individually and on behalf of his minor children, Arthur Joseph Delahoussaye, V, and Angelle Mae Delahoussaye and Melissa Delahoussaye v. Frederick Boelter, III, Specialized Bicycle Components, Inc., Spokesman Professional Bicycle Works, LLC, ABC Insurance Company, DEF Insurance Company, and GHI Insurance Company", "case_dates": "2019-11-15", + "case_names": "Dr. Arthur Delahoussaye, Individually and on behalf of his minor children, Arthur Joseph Delahoussaye, V, and Angelle Mae Delahoussaye and Melissa Delahoussaye v. Frederick Boelter, III, Specialized Bicycle Components, Inc., Spokesman Professional Bicycle Works, LLC, ABC Insurance Company, DEF Insurance Company, and GHI Insurance Company", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200026%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0026", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200026%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Daniel E. Bannister v. SFB Companies, Inc. of Delaware", "case_dates": "2019-11-15", + "case_names": "Daniel E. Bannister v. SFB Companies, Inc. of Delaware", + "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200079%20Decision%20Writ.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CW0079", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200079%20Decision%20Writ.pdf" + "case_name_shorts": "" }, { - "case_names": "Daniel E. Bannister v. SFB Companies, Inc. of Delaware", "case_dates": "2019-11-15", + "case_names": "Daniel E. Bannister v. SFB Companies, Inc. of Delaware", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200367%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0367", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200367%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Charles J. Champagne, Jr. and Kerrie S. Champagne v. USAA Casualty Insurance Company, State Farm Mutual Automobile Insurance Company, XYZ Insurance Company, CajunLand Pizza, LLC d/b/a Marco's Pizza, Marco's Pizza, LLC, and Katharina M. Worringer", "case_dates": "2019-11-15", + "case_names": "Charles J. Champagne, Jr. and Kerrie S. Champagne v. USAA Casualty Insurance Company, State Farm Mutual Automobile Insurance Company, XYZ Insurance Company, CajunLand Pizza, LLC d/b/a Marco's Pizza, Marco's Pizza, LLC, and Katharina M. Worringer", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200334%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0334", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200334%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Carl J. Krielow v. Louisiana State University Board of Supervisors, F. King Alexander, President of Louisiana State University", "case_dates": "2019-11-15", + "case_names": "Carl J. Krielow v. Louisiana State University Board of Supervisors, F. King Alexander, President of Louisiana State University", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200176%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0176", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200176%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Blakewood, L.L.C. v. Marsha Hanlon, Director of Finance, City of Baton Rouge, Parish of East Baton Rouge, James LeBlanc, Secretary, Louisiana Department of Motor Vehicles", "case_dates": "2019-11-15", + "case_names": "Blakewood, L.L.C. v. Marsha Hanlon, Director of Finance, City of Baton Rouge, Parish of East Baton Rouge, James LeBlanc, Secretary, Louisiana Department of Motor Vehicles", + "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200156%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CA0156, 2019CA0157", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CA%200156%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Tessa Cutrer Burgess v. Charles David Burgess", "case_dates": "2019-11-13", + "case_names": "Tessa Cutrer Burgess v. Charles David Burgess", + "download_urls": "/opiniongrid/opinionpdf/2019%20CU%200115%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CU0115, 2019CU0116", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CU%200115%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Treva A. Ory v. Lee M. Russell, Amanda N. Russell and Versatile Fab, Inc.", "case_dates": "2019-11-12", + "case_names": "Treva A. Ory v. Lee M. Russell, Amanda N. Russell and Versatile Fab, Inc.", + "download_urls": "/opiniongrid/opinionpdf/2018%20CA%201491%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2018CA1491", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2018%20CA%201491%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "SBL Construction, LLC v. Michael M. Eymard and Tram Investments, Inc.", "case_dates": "2019-11-12", + "case_names": "SBL Construction, LLC v. Michael M. Eymard and Tram Investments, Inc.", + "download_urls": "/opiniongrid/opinionpdf/2018%20CA%201691%20Decision%20Appeal.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2018CA1691", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2018%20CA%201691%20Decision%20Appeal.pdf" + "case_name_shorts": "" }, { - "case_names": "Rosemary Comena v. Cecil P. Smith, DS Services of America, Inc., and Safety National Casualty Corporation", "case_dates": "2019-11-12", + "case_names": "Rosemary Comena v. Cecil P. Smith, DS Services of America, Inc., and Safety National Casualty Corporation", + "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200895%20Decision%20Writ.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CW0895", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200895%20Decision%20Writ.pdf" + "case_name_shorts": "" }, { - "case_names": "Patricia Abadie v. Louisiana Farm Bureau Casualty Insurance Company, George Smith, individually and in the procedural capacity of his minor son, Hunter Smith", "case_dates": "2019-11-12", + "case_names": "Patricia Abadie v. Louisiana Farm Bureau Casualty Insurance Company, George Smith, individually and in the procedural capacity of his minor son, Hunter Smith", + "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200937%20Decision%20Writ.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CW0937", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200937%20Decision%20Writ.pdf" + "case_name_shorts": "" }, { - "case_names": "Meta C. Johnson v. Walk-On's Sports Bar, Veach Tucker, and Walk-On's Louisiana D/B/A Walk-On's Enterprises, LLC", "case_dates": "2019-11-12", + "case_names": "Meta C. Johnson v. Walk-On's Sports Bar, Veach Tucker, and Walk-On's Louisiana D/B/A Walk-On's Enterprises, LLC", + "download_urls": "/opiniongrid/opinionpdf/2019%20CW%201012%20Decision%20Writ.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CW1012", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CW%201012%20Decision%20Writ.pdf" + "case_name_shorts": "" }, { - "case_names": "Donald J. Rouse, Jr., Donald J. Rouse, Sr., Thomas B. Rouse, Allison Rouse Royster, and Rouse's Enterprises, LLC v. K&F Restaurant Holdings, Ltd. d/b/a Izzo's Illegal Burrito, K&F Restaurant Operations, LLC, G&O Pizza Holdings, Ltd. d/b/a Lit Pizza, G&O Restaurant Operations, LLC and Osvaldo Fernandez", "case_dates": "2019-11-12", + "case_names": "Donald J. Rouse, Jr., Donald J. Rouse, Sr., Thomas B. Rouse, Allison Rouse Royster, and Rouse's Enterprises, LLC v. K&F Restaurant Holdings, Ltd. d/b/a Izzo's Illegal Burrito, K&F Restaurant Operations, LLC, G&O Pizza Holdings, Ltd. d/b/a Lit Pizza, G&O Restaurant Operations, LLC; and Osvaldo Fernandez", + "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200586%20Decision%20Rehearing.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CW0586", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200586%20Decision%20Rehearing.pdf" + "case_name_shorts": "" }, { - "case_names": "Clifton Thomassie, III, Christopher Thomassie, Fran Thomassie, Individually and on behalf of their father, Clifton Thomassie, Jr. v. Tonya Jagneaux, M.D., State of Louisiana through the LSU Health System and Baton Rouge General Medical Center", "case_dates": "2019-11-12", + "case_names": "Clifton Thomassie, III, Christopher Thomassie, Fran Thomassie, Individually and on behalf of their father, Clifton Thomassie, Jr. v. Tonya Jagneaux, M.D., State of Louisiana through the LSU Health System and Baton Rouge General Medical Center", + "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200806%20Decision%20Writ.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CW0806", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200806%20Decision%20Writ.pdf" + "case_name_shorts": "" }, { - "case_names": "BR Tank, LLC v. Meridan Chemicals, LLC, RJ's Transportation, LLC and Honeywell International Inc.", "case_dates": "2019-11-12", + "case_names": "BR Tank, LLC v. Meridan Chemicals, LLC, RJ's Transportation, LLC and Honeywell International Inc.", + "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200824%20Decision%20Writ.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CW0824", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200824%20Decision%20Writ.pdf" + "case_name_shorts": "" }, { - "case_names": "April Markiewicz, wife of/and Mark Markiewicz v. Sun Construction, LLC, Penn Mill Lakes, LLC, and Cooper Engineering, Inc, A Professional Engineering Corporation", "case_dates": "2019-11-12", + "case_names": "April Markiewicz, wife of/and Mark Markiewicz v. Sun Construction, LLC, Penn Mill Lakes, LLC, and Cooper Engineering, Inc, A Professional Engineering Corporation", + "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200878%20Decision%20Writ.pdf", "precedential_statuses": "Unknown", + "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2019CW0878", - "case_name_shorts": "", - "blocked_statuses": false, - "download_urls": "/opiniongrid/opinionpdf/2019%20CW%200878%20Decision%20Writ.pdf" + "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/lactapp_5_example.compare.json b/tests/examples/opinions/united_states/lactapp_5_example.compare.json new file mode 100644 index 000000000..b7d61f9a7 --- /dev/null +++ b/tests/examples/opinions/united_states/lactapp_5_example.compare.json @@ -0,0 +1,377 @@ +[ + { + "case_dates": "2024-10-17", + "case_names": "State of Louisiana Versus Derwin Walker", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/895E4DB7-BE57-4B1C-95C4-AB9CA5917140.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Granted with Instructions", + "docket_numbers": "24-K-421", + "judges": "J. Sterling Snowdy", + "lower_courts": "40th District Court", + "lower_court_numbers": "19,279", + "case_name_shorts": "", + "attorneys": "Honorable Elizabeth B. Murrill, for Plaintiff-Respondant, Stephanie M. Bruno, for Plaintiff-Respondant, J. Bryant Clark, Jr., for Plaintiff-Respondant, Gregory E. Payton, for Defendant-Relator, Daniel J. Smart, for Plaintiff-Respondant, Marcus J. Plaisance, for Defendant-Relator, J. Taylor Gray, for Plaintiff-Respondant, Remy V. Starns, for Defendant-Relator, Mark D. Plaisance, for Defendant-Relator" + }, + { + "case_dates": "2024-10-16", + "case_names": "Succession of Jean Lipps Burke", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/DE618C4C-16E7-42A5-AFC2-209A80AF1272.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Appeal Dismissed", + "docket_numbers": "24-CA-141", + "judges": "Lee V. Faulkner", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "841-161", + "case_name_shorts": "", + "attorneys": "Bianca M. Brindisi, for Defendant-Appellee, Jacqueline F. Maloney, for Defendant-Appellee, Kenneth W. Andrieu, for Plaintiff-Appellant" + }, + { + "case_dates": "2024-10-16", + "case_names": "State of Louisiana Versus Kevin Johnson", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/B7693B7E-FF14-419D-95AA-3E8850EB58E1.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed as Amended", + "docket_numbers": "24-KA-62", + "judges": "M. Lauren Lemmon", + "lower_courts": "29th Judicial District Court", + "lower_court_numbers": "18,669", + "case_name_shorts": "", + "attorneys": "J. Bryant Clark, Jr., for Plaintiff-Appellee, Honorable Elizabeth B. Murrill, for Plaintiff-Appellee, Kevin Johnson 331020 - 331020, for Defendant-Appellant, Hon. Joel T. Chaisson, II, for Plaintiff-Appellee, J. William Starr, for Plaintiff-Appellee, J. Taylor Gray, for Plaintiff-Appellee, Prentice L. White, for Defendant-Appellant" + }, + { + "case_dates": "2024-10-16", + "case_names": "State of Louisiana Versus Daniel Tenner AKA \"Danny\" AKA \"Lil Danny\"", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/248E3393-2155-49C3-86C8-582DF2DF4440.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed; Remanded with Instructions", + "docket_numbers": "24-KA-51", + "judges": "Donald L. Foret", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "22-2183", + "case_name_shorts": "", + "attorneys": "Daniel Tenner 782290, for Defendant-Appellant, Thomas J. Butler, for Plaintiff-Appellee, Juliet L. Clark, for Plaintiff-Appellee, Bertha M. Hillman, for Defendant-Appellant, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee" + }, + { + "case_dates": "2024-10-16", + "case_names": "Gregory Ovide Versus Erica Rivers", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/B5C63DC3-1F07-4C2B-8E35-5130B6FA5540.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "24-CA-140", + "judges": "E. Adrian Adams", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "847-030", + "case_name_shorts": "", + "attorneys": "J. Craig Diamond, for Defendant-Appellant, Marcus A. Green, for Plaintiff-Appellee" + }, + { + "case_dates": "2024-10-16", + "case_names": "Celius Gray Versus Fifth Circuit Court of Appeal", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/E37527F9-B01C-4F70-BBF6-08463BEB6B02.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-K-461", + "judges": "Donald A. Rowan", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "20-5560", + "case_name_shorts": "", + "attorneys": "Celius Gray 1000677028, for Plaintiff-Relator, Thomas J. Butler, for Defendant-Respondant" + }, + { + "case_dates": "2024-10-15", + "case_names": "Davenique Helmstetter Versus U-Haul International, Inc., Allan Bruce Awe, and Allan Bruce Awe D/B/A Aba Rentals", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/4EBB8888-8BD2-4D69-B902-D79AFDFAF28A.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-C-344", + "judges": "Vercell Fiffie", + "lower_courts": "40th District Court", + "lower_court_numbers": "C-74869", + "case_name_shorts": "", + "attorneys": "Oscar M. Gwin, IV, for Defendant-Relator, Mary Margaret Keys, for Plaintiff-Respondant, Christopher J. Alfieri, for Defendant-Relator, Fielding Matkins, for Plaintiff-Respondant, Dominick M. Bianca, for Plaintiff-Respondant" + }, + { + "case_dates": "2024-10-11", + "case_names": "State of Louisiana Versus Abron J. Mickel", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/80D7E389-4C18-43E0-963C-44139806914F.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-457", + "judges": "Stephen D. Enright", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "03-5247", + "case_name_shorts": "", + "attorneys": "Thomas J. Butler, for Plaintiff-Respondant, Abron J. Mickel 331495, for Defendant-Relator" + }, + { + "case_dates": "2024-10-11", + "case_names": "24th Judicial District Criminal Court Versus Clarence Gibson", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/52C5F4DA-A5E9-46CE-BD18-EF8E878DB6E5.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-471", + "judges": "R. Christopher Cox", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "07-6779", + "case_name_shorts": "", + "attorneys": "Thomas J. Butler, for Plaintiff-Respondant, Clarence Gibson 366576, for Defendant-Relator" + }, + { + "case_dates": "2024-10-10", + "case_names": "State of Louisiana Versus Saleh Omar", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/5126801E-1F44-42B3-9EF1-D3266CDB4E32.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-K-456", + "judges": "Lee V. Faulkner", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "18-7748", + "case_name_shorts": "", + "attorneys": "Matthew Whitworth, for Plaintiff-Respondant, Ralph S. Whalen, Jr., for Defendant-Relator, Brittany Beckner, for Plaintiff-Respondant, Thomas J. Butler, for Plaintiff-Respondant" + }, + { + "case_dates": "2024-10-10", + "case_names": "State of Louisiana Versus Clarence Otis Gibson", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/CD88B04B-0FE9-4E94-A0B3-1CC3DE3CA7DA.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-469", + "judges": "R. Christopher Cox", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "07-6779", + "case_name_shorts": "", + "attorneys": "Clarence O. Gibson 366576, for Defendant-Relator, Thomas J. Butler, for Plaintiff-Respondant" + }, + { + "case_dates": "2024-10-10", + "case_names": "Henry Isaacs Versus State of Louisiana", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/46E2D12A-D548-4788-A389-DAC9D38FE106.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-434", + "judges": "June B. Darensburg", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "85-1027", + "case_name_shorts": "", + "attorneys": "Thomas J. Butler, for Defendant-Respondant, Henry Isaacs 93338, for Plaintiff-Relator" + }, + { + "case_dates": "2024-10-10", + "case_names": "Donald A. Logan Versus Tim Hooper, Warden, Louisiana State Penitentiary", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/87AFEE20-EE15-48E3-AF3C-FC69461FBD08.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-463", + "judges": "Nancy A. Miller", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "03-4506", + "case_name_shorts": "", + "attorneys": "Donald A. Logan 350072, for Plaintiff-Relator, Thomas J. Butler, for Defendant-Respondant" + }, + { + "case_dates": "2024-10-09", + "case_names": "Syreeta Lidell Versus Michelle Savaski, Bjms Inc. D/B/A \"Coffee &\", and James River Insurance", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/D74F5D4A-56F7-48FE-891A-D2F6C56E128A.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "24-CA-5", + "judges": "Michael P. Mentz", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "821-394", + "case_name_shorts": "", + "attorneys": "Wilson H. Barnes, for Plaintiff-Appellant, Joseph J. Valencino, III, for Defendant-Appellee, Andre C. Gaudin, for Defendant-Appellee" + }, + { + "case_dates": "2024-10-09", + "case_names": "Succession of Anthony \"Tony\" Neil Serio", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/2C9860DC-8F0E-4DF4-A95D-534F46CFB79F.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "23-CA-539", + "judges": "Lee V. Faulkner", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "844-186", + "case_name_shorts": "", + "attorneys": "M. Elizabeth Bowman, for Intervenor-Appellee, JordanT. Giles, for Intervenor-Appellee, Christy M. Howley, for Intervenor-Appellee, Frank J. D'Amico, Jr., for Plaintiff-Appellant, Charles P. Ciaccio, for Plaintiff-Appellant" + }, + { + "case_dates": "2024-10-09", + "case_names": "Shirley Holder Versus Rachel Hebert, State Farm Insurance Company and Shelter Mutual Insurance Company", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/2D2DE84B-661A-4669-8111-84C60AF90333.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "23-CA-567", + "judges": "Lee V. Faulkner", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "789-191", + "case_name_shorts": "", + "attorneys": "Charles V. Giordano, for Defendant-Appellee, David S. Moyer, for Plaintiff-Appellant, Travis J. Beslin, for Defendant-Appellee" + }, + { + "case_dates": "2024-10-09", + "case_names": "Meg Vincent, Wife of and Louis Keith Vincent Versus National General Insurance Company and Dr. Fredrick Dantagnan IV, On Behalf of the Minor, Jacqueline Dantagnan", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/E1CFC2AC-B398-4FC8-A824-1AD0099314F3.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "23-CA-554", + "judges": "Michael P. Mentz", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "782-360", + "case_name_shorts": "", + "attorneys": "Todd C. Comeaux, for Intervenor-Appellee, Edwin C. Laizer, for Defendant-Appellee, Leigh Ann Tschirn Schell, for Defendant-Appellee, Christopher A. D'Amour, for Defendant-Appellee, Kyle L. Potts, for Defendant-Appellee, Vanessa Motta, for Plaintiff-Appellant" + }, + { + "case_dates": "2024-10-09", + "case_names": "John Daniel Martin, III Versus State of Louisiana", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/DD40670B-DBA9-466C-8A7A-245E3CC91802.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-462", + "judges": "Connie M. Aucoin", + "lower_courts": "29th Judicial District Court", + "lower_court_numbers": "22,159", + "case_name_shorts": "", + "attorneys": "Hon. Joel T. Chaisson, II, for Defendant-Respondant, John Daniel Martin, III 320411, for Plaintiff-Relator" + }, + { + "case_dates": "2024-10-09", + "case_names": "Christoph Patrick Bajewski Versus Christina Botros Bajewski", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/F115865C-4848-4C8F-B44F-72E1A7260F7D.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "23-CA-552", + "judges": "Nancy A. Miller", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "735-995", + "case_name_shorts": "", + "attorneys": "Jennifer C. Carter, for Plaintiff-Appellant, Dixon C. Brown, for Plaintiff-Appellant, James E. Moorman, III, for Defendant-Appellee" + }, + { + "case_dates": "2024-10-02", + "case_names": "The Succession of Marian Ethel Petry", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/855C5008-0349-4123-973C-AC39336B1AB3.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-C-459", + "judges": "Stephen C. Grefer", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "823-478", + "case_name_shorts": "", + "attorneys": "Peter J. Rotolo, III, for Defendant-Respondant, Loren C. Marino, for Defendant-Respondant, Alexandre E. Bonin, for Defendant-Relator, A. Elyce Ieyoub, for Defendant-Respondant, Anne E. Raymond, for Defendant-Respondant, Todd R. Gennardo, for Defendant-Respondant, Darlene Santana - In Proper Person, for Defendant-Respondant, Trevor C. Davies, for Defendant-Respondant, Paul A. Bonin, for Defendant-Relator, Robert E. Tarcza, for Plaintiff-Respondant, Jean-Marc Bonin, for Defendant-Relator, R. Christian Bonin, for Defendant-Relator, Ian P. Gunn, for Defendant-Respondant, Tyler J. Arbour, for Defendant-Respondant" + }, + { + "case_dates": "2024-10-02", + "case_names": "Christina Lambert Versus Christopher Stinson, Warden, Louisiana Transitional Center For Women", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/7032CA8E-7EB2-4A28-8078-208B80A0B973.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-324", + "judges": "Nancy A. Miller", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "19-1900", + "case_name_shorts": "", + "attorneys": "Thomas J. Butler, for Defendant-Respondant, Stanislav L. Moroz, for Plaintiff-Relator" + }, + { + "case_dates": "2024-10-01", + "case_names": "Ronika Lloyd Versus Gregory Wilfred", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/4EB7E8DB-FDC0-482C-934F-E0EC9BB03023.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Granted", + "docket_numbers": "24-C-454", + "judges": "Danyelle M. Taylor", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "820-002", + "case_name_shorts": "", + "attorneys": "Theon A. Wilson, for Defendant-Respondant, Danielle Phillips, for Plaintiff-Relator" + }, + { + "case_dates": "2024-10-01", + "case_names": "Mark Warner Versus Honorable Judge, 24th Jdc", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/E8C0DBB0-6ABB-40D3-ABA8-B2DE98F8128B.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-K-385", + "judges": "Stephen C. Grefer", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "24-1990", + "case_name_shorts": "", + "attorneys": "Mark Warner 1002216494, for Plaintiff-Relator, Thomas J. Butler, for Defendant-Respondant" + }, + { + "case_dates": "2024-10-01", + "case_names": "Gerard J. Bourgeois, Deborah Bourgeois and the Magner Trust Versus Christopher W. Lopez and Northpointe Business Park, LLC", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/B3F6C15D-8AD9-4F76-A913-60601B619907.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Granted", + "docket_numbers": "24-C-374", + "judges": "Michael P. Mentz", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "851-392", + "case_name_shorts": "", + "attorneys": "Jean-Paul Layrisson, for Defendant-Relator, Anne B. Hoskins, for Defendant-Relator, John F. Young, Jr., for Plaintiff-Respondant" + }, + { + "case_dates": "2024-10-01", + "case_names": "Clarence O. Gibson Versus State of Louisiana", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/0A3CA45B-6EC7-4A74-8CCA-A4C868B600CE.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-436", + "judges": "R. Christopher Cox", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "07-6779", + "case_name_shorts": "", + "attorneys": "Thomas J. Butler, for Defendant-Respondant, Clarence O. Gibson 366576, for Plaintiff-Relator" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/lactapp_5_example.html b/tests/examples/opinions/united_states/lactapp_5_example.html new file mode 100644 index 000000000..3c06bb5c5 --- /dev/null +++ b/tests/examples/opinions/united_states/lactapp_5_example.html @@ -0,0 +1,3223 @@ + + + + + Fifth Circuit Court of Appeal - State of Louisiana + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    + +

    + LOCAL RULES 9-1 AMENDMENT + EFFECTIVE OCTOBER 15, 2024 THE LOUISIANA FIFTH CIRCUIT COURT OF APPEAL HAS + AMENDED LOCAL RULE 9-1. Click COURT for additional + information.                        LOCAL RULE 1 AND 2 AMENDMENT EFFECTIVE + SEPTEMBER 24, 2024 THE LOUISIANA FIFTH CIRCUIT COURT OF APPEAL HAS AMENDED RULE 1 + AND 2 IN REGARDS TO FEES AND COPIES.Click COURT for additional + information.                        *** eCOURT's Newest Feature : eAccess *** + eAccess provides online access to case records and filings for subscription and + non-subscription services. Click here to start today! Click COURT for additional + information.                        **** Judges in the Classroom - Students in the + Courtroom **** Click here to learn + more.                        **** REMINDER!!! **** Registering to sign + up for eCourt Notification is easy and FREE!! Click here to start today! +

    +
    +
    +
    + + + + +
    +
    +
    + +
    +
    + +
    +
    +
    + + + + + +
    +
    +
    + + + + +
    + + +
    + + + +
    + + + +
    +
    + +

    Decisions Issued Search +

    + + +
    +
    + +
    +
    +
    + +

    Please Note: Opinions, from 1992 to present, can be searched for by Decisions Month/Year + or Decision Date. Cases with opinion dispositions can be viewed by clicking on the pdf + icon.

    +

    **If you cannot find your case and believe that it should be included + in the search range, please contact the Clerk's Office at (504) 376-1400**

    + +
    + + +
    +
    +
    +
    + (*) Indicates Required Fields +
    +
    +
    +
    + + + +
    + + + +
    +
    + * + + + +
    +
    + * + + +
    +
    + +
    + +
    + +
    +
    + + +
    + +
    + +
    +
    +
    +
    + +

    Decisions Issued Search Results

    25 record(s) returned.   +
    + +
    + +
    + + + + + + + + +
    +
    +
    + +
    +
    +
    + +
    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + Case #Case Title
    + 23-CA-539 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Lee V. Faulkner +
    +
    +
    +
    + District Court #: + 844-186 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + M. + Elizabeth Bowman, for Intervenor-Appellee, JordanT. + Giles, for Intervenor-Appellee, Christy M. Howley, + for Intervenor-Appellee, Frank J. D'Amico, Jr., for + Plaintiff-Appellant, Charles P. Ciaccio, for + Plaintiff-Appellant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 09/18/2024 + at 10:00 AM in Courtroom 'B' Oral Argument: + Yes +
    +
    +
    +
    + Disposition: 'Affirmed' + on 10/09/2024 +
    +
    +
    +
    + +
    + SUCCESSION + OF ANTHONY "TONY" NEIL SERIO +
    + 23-CA-552 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Nancy A. Miller +
    +
    +
    +
    + District Court #: + 735-995 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Jennifer + C. Carter, for Plaintiff-Appellant, Dixon C. Brown, + for Plaintiff-Appellant, James E. Moorman, III, for + Defendant-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 09/10/2024 + at 10:00 AM in Courtroom 'A' Oral Argument: + No +
    +
    +
    +
    + Disposition: 'Affirmed' + on 10/09/2024 +
    +
    +
    +
    + +
    + CHRISTOPH + PATRICK BAJEWSKI + VERSUS + CHRISTINA BOTROS BAJEWSKI +
    + 23-CA-554 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Michael P. Mentz +
    +
    +
    +
    + District Court #: + 782-360 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Todd + C. Comeaux, for Intervenor-Appellee, Edwin C. + Laizer, for Defendant-Appellee, Leigh Ann Tschirn + Schell, for Defendant-Appellee, Christopher A. + D'Amour, for Defendant-Appellee, Kyle L. Potts, for + Defendant-Appellee, Vanessa Motta, for + Plaintiff-Appellant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 09/18/2024 + at 10:00 AM in Courtroom 'A' Oral Argument: + Yes +
    +
    +
    +
    + Disposition: 'Affirmed' + on 10/09/2024 +
    +
    +
    +
    + +
    + MEG + VINCENT, WIFE OF AND LOUIS KEITH VINCENT + VERSUS + NATIONAL GENERAL INSURANCE COMPANY AND DR. FREDRICK DANTAGNAN IV, ON + BEHALF OF THE MINOR, JACQUELINE DANTAGNAN +
    + 23-CA-567 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Lee V. Faulkner +
    +
    +
    +
    + District Court #: + 789-191 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Charles + V. Giordano, for Defendant-Appellee, David S. Moyer, + for Plaintiff-Appellant, Travis J. Beslin, for + Defendant-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 09/11/2024 + at 10:00 AM in Courtroom 'A' Oral Argument: + No +
    +
    +
    +
    + Disposition: 'Affirmed' + on 10/09/2024 +
    +
    +
    +
    + +
    + SHIRLEY + HOLDER + VERSUS + RACHEL HEBERT, STATE FARM INSURANCE COMPANY AND SHELTER MUTUAL + INSURANCE COMPANY +
    + 24-CA-5 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Michael P. Mentz +
    +
    +
    +
    + District Court #: + 821-394 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Wilson + H. Barnes, for Plaintiff-Appellant, Joseph J. + Valencino, III, for Defendant-Appellee, Andre C. + Gaudin, for Defendant-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 09/10/2024 + at 10:00 AM in Courtroom 'A' Oral Argument: + No +
    +
    +
    +
    + Disposition: 'Affirmed' + on 10/09/2024 +
    +
    +
    +
    + +
    + SYREETA + LIDELL + VERSUS + MICHELLE SAVASKI, BJMS INC. D/B/A "COFFEE &", AND JAMES RIVER + INSURANCE +
    + 24-KA-51 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Donald L. Foret +
    +
    +
    +
    + District Court #: + 22-2183 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Daniel + Tenner #782290, for Defendant-Appellant, Thomas J. + Butler, for Plaintiff-Appellee, Juliet L. Clark, for + Plaintiff-Appellee, Bertha M. Hillman, for + Defendant-Appellant, Honorable Paul D. Connick, Jr., + for Plaintiff-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 10/09/2024 + at 01:00 PM in Courtroom 'A' Oral Argument: + No +
    +
    +
    +
    + Disposition: 'Affirmed; + Remanded with Instructions' on 10/16/2024 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + DANIEL TENNER AKA "DANNY" AKA "LIL DANNY" +
    + 24-KA-62 + +
    +
    +
    +
    + Ruling Judge: + Hon. + M. Lauren Lemmon +
    +
    +
    +
    + District Court #: + 18,669 +
    +
    +
    +
    + Lower Court: + 29th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + J. + Bryant Clark, Jr., for Plaintiff-Appellee, Honorable + Elizabeth B. Murrill, for Plaintiff-Appellee, Kevin + Johnson #331020 - 331020, for Defendant-Appellant, + Hon. Joel T. Chaisson, II, for Plaintiff-Appellee, + J. William Starr, for Plaintiff-Appellee, J. Taylor + Gray, for Plaintiff-Appellee, Prentice L. White, for + Defendant-Appellant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 10/09/2024 + at 10:00 AM in Courtroom 'A' Oral Argument: + No +
    +
    +
    +
    + Disposition: 'Affirmed + as Amended' on 10/16/2024 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + KEVIN JOHNSON +
    + 24-CA-140 + +
    +
    +
    +
    + Ruling Judge: + Hon. + E. Adrian Adams +
    +
    +
    +
    + District Court #: + 847-030 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + J. + Craig Diamond, for Defendant-Appellant, Marcus A. + Green, for Plaintiff-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 10/08/2024 + at 10:00 AM in Courtroom 'B' Oral Argument: + No +
    +
    +
    +
    + Disposition: 'Affirmed' + on 10/16/2024 +
    +
    +
    +
    + +
    + GREGORY + OVIDE + VERSUS + ERICA RIVERS +
    + 24-CA-141 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Lee V. Faulkner +
    +
    +
    +
    + District Court #: + 841-161 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Bianca + M. Brindisi, for Defendant-Appellee, Jacqueline F. + Maloney, for Defendant-Appellee, Kenneth W. Andrieu, + for Plaintiff-Appellant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 10/09/2024 + at 10:00 AM in Courtroom 'B' Oral Argument: + No +
    +
    +
    +
    + Disposition: 'Appeal + Dismissed' on 10/16/2024 +
    +
    +
    +
    + +
    + SUCCESSION + OF JEAN LIPPS BURKE +
    + 24-KH-324 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Nancy A. Miller +
    +
    +
    +
    + District Court #: + 19-1900 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Thomas + J. Butler, for Defendant-Respondant, Stanislav L. + Moroz, for Plaintiff-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Denied' on 10/02/2024 +
    +
    +
    +
    + +
    + CHRISTINA + LAMBERT + VERSUS + CHRISTOPHER STINSON, WARDEN, LOUISIANA TRANSITIONAL CENTER FOR + WOMEN +
    + 24-C-344 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Vercell Fiffie +
    +
    +
    +
    + District Court #: + C-74869 +
    +
    +
    +
    + Lower Court: + 40th + District Court +
    +
    +
    +
    + Attorney(s): + Oscar + M. Gwin, IV, for Defendant-Relator, Mary Margaret + Keys, for Plaintiff-Respondant, Christopher J. + Alfieri, for Defendant-Relator, Fielding Matkins, + for Plaintiff-Respondant, Dominick M. Bianca, for + Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Denied' on 10/15/2024 +
    +
    +
    +
    + +
    + DAVENIQUE + HELMSTETTER + VERSUS + U-HAUL INTERNATIONAL, INC., ALLAN BRUCE AWE, AND ALLAN BRUCE AWE + D/B/A ABA RENTALS +
    + 24-C-374 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Michael P. Mentz +
    +
    +
    +
    + District Court #: + 851-392 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Jean-Paul + Layrisson, for Defendant-Relator, Anne B. Hoskins, + for Defendant-Relator, John F. Young, Jr., for + Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Application for Rehearing on + 10/10/2024
    Disposition: 'Writ + Granted' on 10/01/2024 +
    +
    +
    +
    + +
    + GERARD + J. BOURGEOIS, DEBORAH BOURGEOIS AND THE MAGNER TRUST + VERSUS + CHRISTOPHER W. LOPEZ AND NORTHPOINTE BUSINESS PARK, LLC +
    + 24-K-385 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Stephen C. Grefer +
    +
    +
    +
    + District Court #: + 24-1990 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Mark + Warner #1002216494, for Plaintiff-Relator, Thomas J. + Butler, for Defendant-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Denied' on 10/01/2024 +
    +
    +
    +
    + +
    + MARK + WARNER + VERSUS + HONORABLE JUDGE, 24TH JDC +
    + 24-K-421 + +
    +
    +
    +
    + Ruling Judge: + Hon. + J. Sterling Snowdy +
    +
    +
    +
    + District Court #: + 19,279 +
    +
    +
    +
    + Lower Court: + 40th + District Court +
    +
    +
    +
    + Attorney(s): + Honorable + Elizabeth B. Murrill, for Plaintiff-Respondant, + Stephanie M. Bruno, for Plaintiff-Respondant, J. + Bryant Clark, Jr., for Plaintiff-Respondant, Gregory + E. Payton, for Defendant-Relator, Daniel J. Smart, + for Plaintiff-Respondant, Marcus J. Plaisance, for + Defendant-Relator, J. Taylor Gray, for + Plaintiff-Respondant, Remy V. Starns, for + Defendant-Relator, Mark D. Plaisance, for + Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Granted with Instructions' on 10/17/2024 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + DERWIN WALKER +
    + 24-KH-434 + +
    +
    +
    +
    + Ruling Judge: + Hon. + June B. Darensburg +
    +
    +
    +
    + District Court #: + 85-1027 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Thomas + J. Butler, for Defendant-Respondant, Henry Isaacs + #93338, for Plaintiff-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Denied' on 10/10/2024 +
    +
    +
    +
    + +
    + HENRY + ISAACS + VERSUS + STATE OF LOUISIANA +
    + 24-KH-436 + +
    +
    +
    +
    + Ruling Judge: + Hon. + R. Christopher Cox +
    +
    +
    +
    + District Court #: + 07-6779 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Thomas + J. Butler, for Defendant-Respondant, Clarence O. + Gibson #366576, for Plaintiff-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Denied' on 10/01/2024 +
    +
    +
    +
    + +
    + CLARENCE + O. GIBSON + VERSUS + STATE OF LOUISIANA +
    + 24-C-454 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Danyelle M. Taylor +
    +
    +
    +
    + District Court #: + 820-002 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Theon + A. Wilson, for Defendant-Respondant, Danielle + Phillips, for Plaintiff-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Granted' on 10/01/2024 +
    +
    +
    +
    + +
    + RONIKA + LLOYD + VERSUS + GREGORY WILFRED +
    + 24-K-456 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Lee V. Faulkner +
    +
    +
    +
    + District Court #: + 18-7748 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Matthew + Whitworth, for Plaintiff-Respondant, Ralph S. + Whalen, Jr., for Defendant-Relator, Brittany + Beckner, for Plaintiff-Respondant, Thomas J. Butler, + for Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Denied' on 10/10/2024 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + SALEH OMAR +
    + 24-KH-457 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Stephen D. Enright +
    +
    +
    +
    + District Court #: + 03-5247 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Thomas + J. Butler, for Plaintiff-Respondant, Abron J. Mickel + #331495, for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Denied' on 10/11/2024 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + ABRON J. MICKEL +
    + 24-C-459 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Stephen C. Grefer +
    +
    +
    +
    + District Court #: + 823-478 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Peter + J. Rotolo, III, for Defendant-Respondant, Loren C. + Marino, for Defendant-Respondant, Alexandre E. + Bonin, for Defendant-Relator, A. Elyce Ieyoub, for + Defendant-Respondant, Anne E. Raymond, for + Defendant-Respondant, Todd R. Gennardo, for + Defendant-Respondant, Darlene Santana - In Proper + Person, for Defendant-Respondant, Trevor C. Davies, + for Defendant-Respondant, Paul A. Bonin, for + Defendant-Relator, Robert E. Tarcza, for + Plaintiff-Respondant, Jean-Marc Bonin, for + Defendant-Relator, R. Christian Bonin, for + Defendant-Relator, Ian P. Gunn, for + Defendant-Respondant, Tyler J. Arbour, for + Defendant-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Denied' on 10/02/2024 +
    +
    +
    +
    + +
    + THE + SUCCESSION OF MARIAN ETHEL PETRY +
    + 24-K-461 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Donald A. Rowan +
    +
    +
    +
    + District Court #: + 20-5560 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Celius + Gray #1000677028, for Plaintiff-Relator, Thomas J. + Butler, for Defendant-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Denied' on 10/16/2024 +
    +
    +
    +
    + +
    + CELIUS + GRAY + VERSUS + FIFTH CIRCUIT COURT OF APPEAL +
    + 24-KH-462 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Connie M. Aucoin +
    +
    +
    +
    + District Court #: + 22,159 +
    +
    +
    +
    + Lower Court: + 29th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Hon. + Joel T. Chaisson, II, for Defendant-Respondant, John + Daniel Martin, III #320411, for Plaintiff-Relator, + +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Denied' on 10/09/2024 +
    +
    +
    +
    + +
    + JOHN + DANIEL MARTIN, III + VERSUS + STATE OF LOUISIANA +
    + 24-KH-463 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Nancy A. Miller +
    +
    +
    +
    + District Court #: + 03-4506 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Donald + A. Logan #350072, for Plaintiff-Relator, Thomas J. + Butler, for Defendant-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Denied' on 10/10/2024 +
    +
    +
    +
    + +
    + DONALD + A. LOGAN + VERSUS + TIM HOOPER, WARDEN, LOUISIANA STATE PENITENTIARY +
    + 24-KH-469 + +
    +
    +
    +
    + Ruling Judge: + Hon. + R. Christopher Cox +
    +
    +
    +
    + District Court #: + 07-6779 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Clarence + O. Gibson #366576, for Defendant-Relator, Thomas J. + Butler, for Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Denied' on 10/10/2024 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + CLARENCE OTIS GIBSON +
    + 24-KH-471 + +
    +
    +
    +
    + Ruling Judge: + Hon. + R. Christopher Cox +
    +
    +
    +
    + District Court #: + 07-6779 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Thomas + J. Butler, for Plaintiff-Respondant, Clarence Gibson + #366576, for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ + Denied' on 10/11/2024 +
    +
    +
    +
    + +
    + 24TH + JUDICIAL DISTRICT CRIMINAL COURT + VERSUS + CLARENCE GIBSON +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    + + + + +
    +
    + + + + + + +
    + + + +
    +
    +
    + Copyrights © 2014 & All Rights Reserved by Fifth Circuit Court of Appeal. +
    + +
    +
    +
    + +
    + + +
    +
    + +
    +
    + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/lactapp_5_example_2.compare.json b/tests/examples/opinions/united_states/lactapp_5_example_2.compare.json new file mode 100644 index 000000000..888f9daa0 --- /dev/null +++ b/tests/examples/opinions/united_states/lactapp_5_example_2.compare.json @@ -0,0 +1,287 @@ +[ + { + "case_dates": "2015-02-12", + "case_names": "State of Louisiana Versus Bernal L. Aguilar", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2015/F669E699-BEE9-464B-8D2E-77149479B6BF.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Denied", + "docket_numbers": "14-KA-714", + "judges": "Ross P. LaDart", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "12-1592", + "case_name_shorts": "", + "attorneys": "Honorable Paul D. Connick, Jr., for Plaintiff-Appellee, Bernal L. Aquilar , for Defendant-Appellant, Jane L. Beebe, for Defendant-Appellant, Terry M. Boudreaux, for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-29", + "case_names": "Jeffrey L. Soudelier, Jr. Versus Pbc Management, Inc., Florida Marine Transporters, and Florida Marine, LLC", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2015/9B351B61-9557-4201-9D37-9D6846566503.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Granted", + "docket_numbers": "14-C-911", + "judges": "Emile R. St. Pierre", + "lower_courts": "29th Judicial District Court", + "lower_court_numbers": "76,825", + "case_name_shorts": "", + "attorneys": "Joseph G. Kopfler, for Defendant-Respondant, Jason R. Kenney, for Defendant-Respondant, Lawrence N. Curtis, for Plaintiff-Relator" + }, + { + "case_dates": "2015-01-28", + "case_names": "State of Louisiana Versus Tory Wilson", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/D6A127F8-034B-4863-8C6C-F2025F3347CE.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "14-KA-551", + "judges": "Stephen D. Enright", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "12-4590", + "case_name_shorts": "", + "attorneys": "Terry M. Boudreaux, for Plaintiff-Appellee, Juliet L. Clark, for Plaintiff-Appellee, Jane L. Beebe, for Defendant-Appellant, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-28", + "case_names": "State of Louisiana Versus Tony A. Russell", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/F1EFDDAA-5078-422B-BB1D-3F250E659503.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Dismissed'", + "docket_numbers": "14-KA-841", + "judges": "Robert M. Murphy, Ad Hoc", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "11-4200", + "case_name_shorts": "", + "attorneys": "Powell W. Miller, for Defendant-Appellant, Terry M. Boudreaux, for Plaintiff-Appellee, Tony Russell , for Defendant-Appellant, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-28", + "case_names": "State of Louisiana Versus John Michael Marlbrough", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/62E8B3FA-D72E-4AFD-9F93-BB7BACFF211C.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Appeal Dismissed", + "docket_numbers": "14-KA-936", + "judges": "Stephen D. Enright", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "13-6", + "case_name_shorts": "", + "attorneys": "Terry M. Boudreaux, for Plaintiff-Appellee, Matthew Caplan, for Plaintiff-Appellee, Holli A. Herrle-Castillo, for Defendant-Appellant, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-28", + "case_names": "Morgan Palmisano Versus Jennifer Nauman-Anderson", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/4B3EA6D6-5B84-48B7-BCA1-7C2C3838023B.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded", + "docket_numbers": "14-CA-652", + "judges": "Lee V. Faulkner", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "716-293", + "case_name_shorts": "", + "attorneys": "N. Kim Nguyen, for Plaintiff-Appellant, Mark E. Morice, for Plaintiff-Appellant, Gerald J. Calogero, for Defendant-Appellee" + }, + { + "case_dates": "2015-01-28", + "case_names": "Cheryl Flanagan, Wife of/and Nicholas J. Rogers Versus Shirley Crocker, Wife of/and Bobby Ray T. Malbrough", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/FB1529CE-B274-4912-BE99-DBE53CF16C44.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "14-CA-402", + "judges": "Stephen C. Grefer", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "671-995", + "case_name_shorts": "", + "attorneys": "Robert T. Garrity, Jr., for Defendant-Appellant, R. Ray Orrill, Jr., for Defendant-Appellant, F. Victor Hastings, for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-21", + "case_names": "William J. Newton, Nsb Properties, L.L.C. and Nsb IV Properties Versus Tom Brenan, Judy Stevens, Terry Stevens, Sr., Terry Stevens, Jr. And Clyde Ducote", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2015/0DE05CF4-805A-477E-B554-829BDB645241.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Denied", + "docket_numbers": "14-CA-423", + "judges": "June B. Darensburg", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "700-186", + "case_name_shorts": "", + "attorneys": "Suzanne M. Ganucheau, for Plaintiff-Appellee, Carl A. Butler, for Plaintiff-Appellee, Eric A. Holden, for Defendant-Appellant, John A. Treme - In Proper Person, for Defendant-Appellee, Tiffany M. Fleming, for Plaintiff-Appellee, Jerald L. Album, for Plaintiff-Appellee, David I. Courcelle, for Defendant-Appellee" + }, + { + "case_dates": "2015-01-21", + "case_names": "Union Pacific Railroad Company Versus West Bank Land Company, LLC Consolidated With Union Pacific Railroad Company Versus Virginia Favrot Consolidated With Union Pacific Railroad Company Versus Michael Francis Schexnayder Consolidated With Union Pacific Railroad Company Versus Allen J. Melancon Consolidated With Union Pacific Railroad Company Versus Succession of Beatrice, Labiche Schexnayder Consolidated With Union Pacific Railroad Company Versus Estate of Doris Schexnayder Sigmon Consolidated With Union Pacific Railroad Company Versus Arthur Schexnayder, Jr. Consolidated With Union Pacific Railroad Company Versus Succession of Doris Schexnayder", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2015/D7D97982-407B-4D2F-9536-1909FEFE7E7A.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Denied", + "docket_numbers": "14-C-743", + "judges": "Ralph E. Tureau", + "lower_courts": "23rd Judicial District Court", + "lower_court_numbers": "34,878", + "case_name_shorts": "", + "attorneys": "Michael D. Hunt, for Plaintiff-Respondant, Scott R. Cheatham, for Defendant-Relator, Jeffrey E. Richardson, for Defendant-Relator, Kelly K. Boudreaux, for Plaintiff-Respondant, Philip A. Franco, for Defendant-Relator, Gregory T. Stevens, for Plaintiff-Respondant, Marshall A. Hevron, for Defendant-Relator, H. Alton Johnson, III, for Plaintiff-Respondant, Raymond P. Ward, for Defendant-Relator, R. Ryland Percy, III, for Plaintiff-Respondant, Vincent J. Sotile, Jr., for Defendant-Relator, Gerrie Englade , for Other, Erin Wiley Lanoux, for Plaintiff-Respondant" + }, + { + "case_dates": "2015-01-21", + "case_names": "State of Louisiana Versus Aaron Boston", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2015/48BA7093-DDE2-4D79-A5C2-52441C5647E2.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Denied", + "docket_numbers": "14-KA-632", + "judges": "Henry G. Sullivan", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "11-1005", + "case_name_shorts": "", + "attorneys": "Arron Boston , for Defendant-Appellant, Bruce G. Whittaker, for Defendant-Appellant, Andrea F. Long, for Plaintiff-Appellee, Terry M. Boudreaux, for Plaintiff-Appellee, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-15", + "case_names": "Donald M. Ober, III and Lacie Ober, Individually and on Behalf of Their Minor Children Versus Greg Champagne, Sheriff of St. Charles Parish, Deputy Johnny a . Champagne, Abc Insurance Company, Def Insurance Company, Ghi Insurance Company", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2015/5CE9A052-7E35-4A5B-BF63-C16B8857F54A.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Denied", + "docket_numbers": "14-CA-170", + "judges": "M. Lauren Lemmon", + "lower_courts": "29th Judicial District Court", + "lower_court_numbers": "73,368", + "case_name_shorts": "", + "attorneys": "Trevor M. Cutaiar, for Defendant-Appellant, David W. Ardoin, for Plaintiff-Appellee, Mark E. Hanna, for Defendant-Appellant, Don A. Almerico, for Defendant-Appellant, Matthew D. Ory, for Plaintiff-Appellee, Jerri G. Smitko, for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-14", + "case_names": "State of Louisiana Versus Timmie A. Reed", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/1B92BE69-6411-4FBB-BCB8-9410C51380D4.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed; Remanded with Instructions", + "docket_numbers": "14-KA-702", + "judges": "Cornelius E. Regan, Pro Tempore", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "13-1050", + "case_name_shorts": "", + "attorneys": "Lieu T. Vo Clark, for Defendant-Appellant, Terry M. Boudreaux, for Plaintiff-Appellee, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee, Timmie A. Reed , for Defendant-Appellant" + }, + { + "case_dates": "2015-01-14", + "case_names": "State of Louisiana Versus Israel A. Britton", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/98C39082-C819-4F3A-8759-CDEA0E51B868.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "14-KA-665", + "judges": "Glenn B. Ansardi", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "13-191", + "case_name_shorts": "", + "attorneys": "Gwendolyn K. Brown, for Defendant-Appellant, Terry M. Boudreaux, for Plaintiff-Appellee, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee, Israel Britton , for Defendant-Appellant" + }, + { + "case_dates": "2015-01-14", + "case_names": "State of Louisiana Versus Cory D. Spencer", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/5B0B9FFC-C6C2-4FFE-8411-03762E0EFEA1.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Sentence Affirmed", + "docket_numbers": "14-KA-319", + "judges": "Henry G. Sullivan", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "12-4971", + "case_name_shorts": "", + "attorneys": "Bertha M. Hillman, for Defendant-Appellant, Cory D. Spencer , for Defendant-Appellant, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee, Terry M. Boudreaux, for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-14", + "case_names": "State of Louisiana Versus Bernal L. Aguilar", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/3974A9AC-AC32-4495-AC92-FDD058DAB8BD.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed; Remanded with Instructions' on 01/14/2015", + "docket_numbers": "14-KA-714", + "judges": "Ross P. LaDart", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "12-1592", + "case_name_shorts": "", + "attorneys": "Honorable Paul D. Connick, Jr., for Plaintiff-Appellee, Bernal L. Aquilar , for Defendant-Appellant, Jane L. Beebe, for Defendant-Appellant, Terry M. Boudreaux, for Plaintiff-Appellee" + }, + { + "case_dates": "2014-12-16", + "case_names": "William J. Newton, Nsb Properties, L.L.C. and Nsb IV Properties Versus Tom Brenan, Judy Stevens, Terry Stevens, Sr., Terry Stevens, Jr. And Clyde Ducote", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2014/6AFD4EAA-06BD-4885-B030-D8EC665C856B.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "14-CA-423", + "judges": "June B. Darensburg", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "700-186", + "case_name_shorts": "", + "attorneys": "Suzanne M. Ganucheau, for Plaintiff-Appellee, Carl A. Butler, for Plaintiff-Appellee, Eric A. Holden, for Defendant-Appellant, John A. Treme - In Proper Person, for Defendant-Appellee, Tiffany M. Fleming, for Plaintiff-Appellee, Jerald L. Album, for Plaintiff-Appellee, David I. Courcelle, for Defendant-Appellee" + }, + { + "case_dates": "2014-12-16", + "case_names": "State of Louisiana Versus Aaron Boston", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2014/273B71B9-ED4D-475A-8DBB-28DF243A1430.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "14-KA-632", + "judges": "Henry G. Sullivan", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "11-1005", + "case_name_shorts": "", + "attorneys": "Arron Boston , for Defendant-Appellant, Bruce G. Whittaker, for Defendant-Appellant, Andrea F. Long, for Plaintiff-Appellee, Terry M. Boudreaux, for Plaintiff-Appellee, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee" + }, + { + "case_dates": "2014-12-16", + "case_names": "Donald M. Ober, III and Lacie Ober, Individually and on Behalf of Their Minor Children Versus Greg Champagne, Sheriff of St. Charles Parish, Deputy Johnny a . Champagne, Abc Insurance Company, Def Insurance Company, Ghi Insurance Company", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2014/19A063A0-9CA8-4F40-9B6A-7EC239D16203.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in Part, reversed in part and rendered' on 12/16/2014", + "docket_numbers": "14-CA-170", + "judges": "M. Lauren Lemmon", + "lower_courts": "29th Judicial District Court", + "lower_court_numbers": "73,368", + "case_name_shorts": "", + "attorneys": "Trevor M. Cutaiar, for Defendant-Appellant, David W. Ardoin, for Plaintiff-Appellee, Mark E. Hanna, for Defendant-Appellant, Don A. Almerico, for Defendant-Appellant, Matthew D. Ory, for Plaintiff-Appellee, Jerri G. Smitko, for Plaintiff-Appellee" + }, + { + "case_dates": "2014-09-25", + "case_names": "Cheryl Flanagan, Wife of/and Nicholas J. Rogers Versus Shirley Crocker, Wife of/and Bobby Ray T. Malbrough", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2014/73ABAB7A-9516-41B1-8CBA-B63810651AB8.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Granted - Appeal Reinstated' on 09/25/2014", + "docket_numbers": "14-CA-402", + "judges": "Stephen C. Grefer", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "671-995", + "case_name_shorts": "", + "attorneys": "Robert T. Garrity, Jr., for Defendant-Appellant, R. Ray Orrill, Jr., for Defendant-Appellant, F. Victor Hastings, for Plaintiff-Appellee" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/lactapp_5_example_2.html b/tests/examples/opinions/united_states/lactapp_5_example_2.html new file mode 100644 index 000000000..8417dfccd --- /dev/null +++ b/tests/examples/opinions/united_states/lactapp_5_example_2.html @@ -0,0 +1,5096 @@ + + + + + Fifth Circuit Court of Appeal - State of Louisiana + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    + +

    + LOCAL RULES 9-1 AMENDMENT + EFFECTIVE OCTOBER 15, 2024 THE LOUISIANA FIFTH CIRCUIT COURT OF APPEAL HAS + AMENDED LOCAL RULE 9-1. Click COURT for additional + information.                        LOCAL RULE 1 AND 2 AMENDMENT EFFECTIVE + SEPTEMBER 24, 2024 THE LOUISIANA FIFTH CIRCUIT COURT OF APPEAL HAS AMENDED RULE 1 + AND 2 IN REGARDS TO FEES AND COPIES.Click COURT for additional + information.                        *** eCOURT's Newest Feature : eAccess *** + eAccess provides online access to case records and filings for subscription and + non-subscription services. Click here to start today! Click COURT for additional + information.                        **** Judges in the Classroom - Students in the + Courtroom **** Click here to learn + more.                        **** REMINDER!!! **** Registering to sign + up for eCourt Notification is easy and FREE!! Click here to start today! +

    +
    +
    +
    + + + + +
    +
    +
    + +
    +
    + +
    +
    +
    + + + + + +
    +
    +
    + + + + +
    +
    + + + +
    + + + +
    +
    + +

    Decisions Issued Search +

    + + +
    +
    + +
    +
    +
    + +

    Please Note: Opinions, from 1992 to present, can be searched for by Decisions Month/Year + or Decision Date. Cases with opinion dispositions can be viewed by clicking on the pdf + icon.

    +

    **If you cannot find your case and believe that it should be included + in the search range, please contact the Clerk's Office at (504) 376-1400**

    + +
    + + + + +
    +
    +
    +
    + (*) Indicates Required Fields +
    +
    +
    +
    + + + +
    + + + +
    +
    + * + + + +
    +
    + * + + +
    +
    + +
    + +
    + +
    +
    + + +
    + +
    + +
    +
    +
    +
    + +

    Decisions Issued Search Results

    50 record(s) returned.   +
    + +
    + +
    + + + + + + + + +
    +
    +
    + +
    +
    +
    + +
    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + Case #Case Title
    + 14-CA-170 + +
    +
    +
    +
    + Ruling Judge: + Hon. + M. Lauren Lemmon +
    +
    +
    +
    + District Court #: + 73,368 +
    +
    +
    +
    + Lower Court: + 29th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Trevor + M. Cutaiar, for Defendant-Appellant, David W. + Ardoin, for Plaintiff-Appellee, Mark E. Hanna, for + Defendant-Appellant, Don A. Almerico, for + Defendant-Appellant, Matthew D. Ory, for + Plaintiff-Appellee, Jerri G. Smitko, for + Plaintiff-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 09/05/2014 + at 10:00 AM in Courtroom 'A' Oral Argument: + Yes +
    +
    +
    +
    + Application for Rehearing on + 12/30/2014
    Disposition: 'Affirmed + in Part, reversed in part and rendered' on + 12/16/2014
    Rehearing Dispo: + 'Rehearing + Denied' on 01/15/2015 +
    +
    +
    +
    + +
    + DONALD + M. OBER, III AND LACIE OBER, INDIVIDUALLY AND ON BEHALF OF THEIR + MINOR CHILDREN + VERSUS + GREG CHAMPAGNE, SHERIFF OF ST. CHARLES PARISH, DEPUTY JOHNNY A . + CHAMPAGNE, ABC INSURANCE COMPANY, DEF INSURANCE COMPANY, GHI + INSURANCE COMPANY +
    + 14-KA-319 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Henry G. Sullivan +
    +
    +
    +
    + District Court #: + 12-4971 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Bertha + M. Hillman, for Defendant-Appellant, Cory D. Spencer + , for Defendant-Appellant, Honorable Paul D. + Connick, Jr., for Plaintiff-Appellee, Terry M. + Boudreaux, for Plaintiff-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 11/03/2014 + at 05:00 PM in Courtroom 'A' Oral Argument: + Yes +
    +
    +
    +
    + Disposition: 'Sentence + Affirmed' on 01/14/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + CORY D. SPENCER +
    + 14-CA-402 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Stephen C. Grefer +
    +
    +
    +
    + District Court #: + 671-995 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Robert + T. Garrity, Jr., for Defendant-Appellant, R. Ray + Orrill, Jr., for Defendant-Appellant, F. Victor + Hastings, for Plaintiff-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 01/08/2015 + at 11:30 AM in Courtroom 'A' Oral Argument: + No +
    +
    +
    +
    + Application for Rehearing on + 09/22/2014
    Disposition: 'Dismiss By Court + Order' on 09/08/2014
    Rehearing Dispo: + 'Rehearing + Granted - Appeal Reinstated' on + 09/25/2014
    Disposition: 'Affirmed' + on 01/28/2015 +
    +
    +
    +
    + +
    + CHERYL + FLANAGAN, WIFE OF/AND NICHOLAS J. ROGERS + VERSUS + SHIRLEY CROCKER, WIFE OF/AND BOBBY RAY T. MALBROUGH +
    + 14-CA-423 + +
    +
    +
    +
    + Ruling Judge: + Hon. + June B. Darensburg +
    +
    +
    +
    + District Court #: + 700-186 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Suzanne + M. Ganucheau, for Plaintiff-Appellee, Carl A. + Butler, for Plaintiff-Appellee, Eric A. Holden, for + Defendant-Appellant, John A. Treme - In Proper + Person, for Defendant-Appellee, Tiffany M. Fleming, + for Plaintiff-Appellee, Jerald L. Album, for + Plaintiff-Appellee, David I. Courcelle, for + Defendant-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 09/29/2014 + at 01:00 PM in Courtroom 'A' Oral Argument: + Yes +
    +
    +
    +
    + Application for Rehearing on + 12/30/2014
    Disposition: 'Affirmed' + on 12/16/2014
    Rehearing Dispo: + 'Rehearing + Denied' on 01/21/2015 +
    +
    +
    +
    + +
    + WILLIAM + J. NEWTON, NSB PROPERTIES, L.L.C. AND NSB IV PROPERTIES + VERSUS + TOM BRENAN, JUDY STEVENS, TERRY STEVENS, SR., TERRY STEVENS, JR. AND + CLYDE DUCOTE +
    + 14-KA-551 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Stephen D. Enright +
    +
    +
    +
    + District Court #: + 12-4590 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Appellee, Juliet L. + Clark, for Plaintiff-Appellee, Jane L. Beebe, for + Defendant-Appellant, Honorable Paul D. Connick, Jr., + for Plaintiff-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 01/07/2015 + at 10:00 AM in Courtroom 'A' Oral Argument: + Yes +
    +
    +
    +
    + Disposition: 'Affirmed' + on 01/28/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + TORY WILSON +
    + 14-KA-632 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Henry G. Sullivan +
    +
    +
    +
    + District Court #: + 11-1005 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Arron + Boston , for Defendant-Appellant, Bruce G. + Whittaker, for Defendant-Appellant, Andrea F. Long, + for Plaintiff-Appellee, Terry M. Boudreaux, for + Plaintiff-Appellee, Honorable Paul D. Connick, Jr., + for Plaintiff-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 12/03/2014 + at 10:00 AM in Courtroom 'B' Oral Argument: + Yes +
    +
    +
    +
    + Application for Rehearing on + 12/29/2014
    Disposition: 'Affirmed' + on 12/16/2014
    Rehearing Dispo: + 'Rehearing + Denied' on 01/21/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + AARON BOSTON +
    + 14-CA-652 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Lee V. Faulkner +
    +
    +
    +
    + District Court #: + 716-293 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + N. + Kim Nguyen, for Plaintiff-Appellant, Mark E. Morice, + for Plaintiff-Appellant, Gerald J. Calogero, for + Defendant-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 01/06/2015 + at 10:00 AM in Courtroom 'A' Oral Argument: + No +
    +
    +
    +
    + Disposition: 'Reversed + and Remanded' on 01/28/2015 +
    +
    +
    +
    + +
    + MORGAN + PALMISANO + VERSUS + JENNIFER NAUMAN-ANDERSON +
    + 14-KA-665 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Glenn B. Ansardi +
    +
    +
    +
    + District Court #: + 13-191 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Gwendolyn + K. Brown, for Defendant-Appellant, Terry M. + Boudreaux, for Plaintiff-Appellee, Honorable Paul D. + Connick, Jr., for Plaintiff-Appellee, Israel Britton + , for Defendant-Appellant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 01/06/2015 + at 10:00 AM in Courtroom 'B' Oral Argument: + Yes +
    +
    +
    +
    + Disposition: 'Affirmed' + on 01/14/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + ISRAEL A. BRITTON +
    + 14-KA-702 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Cornelius E. Regan, Pro Tempore +
    +
    +
    +
    + District Court #: + 13-1050 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Lieu + T. Vo Clark, for Defendant-Appellant, Terry M. + Boudreaux, for Plaintiff-Appellee, Honorable Paul D. + Connick, Jr., for Plaintiff-Appellee, Timmie A. Reed + , for Defendant-Appellant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 01/08/2015 + at 10:00 AM in Courtroom 'B' Oral Argument: + Yes +
    +
    +
    +
    + Disposition: 'Affirmed; + Remanded with Instructions' on 01/14/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + TIMMIE A. REED +
    + 14-KA-714 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Ross P. LaDart +
    +
    +
    +
    + District Court #: + 12-1592 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Honorable + Paul D. Connick, Jr., for Plaintiff-Appellee, Bernal + L. Aquilar , for Defendant-Appellant, Jane L. Beebe, + for Defendant-Appellant, Terry M. Boudreaux, for + Plaintiff-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + 01/09/2015 + at 10:00 AM in Courtroom 'B' Oral Argument: + Yes +
    +
    +
    +
    + Application for Rehearing on + 01/23/2015
    Disposition: 'Affirmed; + Remanded with Instructions' on + 01/14/2015
    Rehearing Dispo: + 'Rehearing + Denied' on 02/12/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + BERNAL L. AGUILAR +
    + 14-C-743 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Ralph E. Tureau +
    +
    +
    +
    + District Court #: + 34,878 +
    +
    +
    +
    + Lower Court: + 23rd + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Michael + D. Hunt, for Plaintiff-Respondant, Scott R. + Cheatham, for Defendant-Relator, Jeffrey E. + Richardson, for Defendant-Relator, Kelly K. + Boudreaux, for Plaintiff-Respondant, Philip A. + Franco, for Defendant-Relator, Gregory T. Stevens, + for Plaintiff-Respondant, Marshall A. Hevron, for + Defendant-Relator, H. Alton Johnson, III, for + Plaintiff-Respondant, Raymond P. Ward, for + Defendant-Relator, R. Ryland Percy, III, for + Plaintiff-Respondant, Vincent J. Sotile, Jr., for + Defendant-Relator, Gerrie Englade , for Other, Erin + Wiley Lanoux, for Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Application for Rehearing on + 12/30/2014
    Disposition: 'Writ Granted' on + 12/17/2014
    Rehearing Dispo: + 'Rehearing + Denied' on 01/21/2015 +
    +
    +
    +
    + +
    + UNION + PACIFIC RAILROAD COMPANY VERSUS WEST BANK LAND COMPANY, LLC + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS VIRGINIA FAVROT, ET AL. + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS MICHAEL FRANCIS SCHEXNAYDER, + ET AL. + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS ALLEN J. MELANCON, ET AL. + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS SUCCESSION OF BEATRICE, + LABICHE SCHEXNAYDER, ET AL. + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS ESTATE OF DORIS SCHEXNAYDER + SIGMON, ET AL. + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS ARTHUR SCHEXNAYDER, JR., ET + AL. + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS SUCCESSION OF DORIS + SCHEXNAYDER, ET AL. +
    + 14-KA-841 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Robert M. Murphy, Ad Hoc +
    +
    +
    +
    + District Court #: + 11-4200 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Powell + W. Miller, for Defendant-Appellant, Terry M. + Boudreaux, for Plaintiff-Appellee, Tony Russell , + for Defendant-Appellant, Honorable Paul D. Connick, + Jr., for Plaintiff-Appellee, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Dismissed' + on 01/28/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + TONY A. RUSSELL +
    + 14-KH-852 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Stephen C. Grefer +
    +
    +
    +
    + District Court #: + 13-2934 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Eddie Wilson + , for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'DENIED AS MOOT' on 01/26/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + EDDIE WILSON A/K/A EDWARD WILSON +
    + 14-KH-866 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Nancy A. Miller +
    +
    +
    +
    + District Court #: + 96-6273 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Eric + Gresham , for Defendant-Relator, Terry M. Boudreaux, + for Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/06/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + ERIC GRESHAM +
    + 14-K-884 + +
    +
    +
    +
    + Ruling Judge: + Hon. + June B. Darensburg +
    +
    +
    +
    + District Court #: + 14-5390 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Raul + E. Guerra, Jr., for Defendant-Respondant, Terry M. + Boudreaux, for Plaintiff-Relator, Matthew Caplan, + for Plaintiff-Relator, Honorable Paul D. Connick, + Jr., for Plaintiff-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Granted' on 01/05/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + ULYSSES MAXWELL +
    + 14-C-885 + +
    +
    +
    +
    + Ruling Judge: + Hon. + John J. Molaison +
    +
    +
    +
    + District Court #: + 718-077 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Ivan + A. Orihuela, for Plaintiff-Respondant, Kevin C. + O'Bryon, for Defendant-Relator, Sherry A. Watters, + for Defendant-Relator, Marta-Ann Schnabel, for + Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Granted' on 01/21/2015 +
    +
    +
    +
    + +
    + MIRIAM + BLANDINO, ET AL + VERSUS + KENDRA PIERRE, GEICO INDEMNITY COMPANY, ET AL +
    + 14-KH-901 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Raymond S. Steib +
    +
    +
    +
    + District Court #: + 08-5598 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Terry + M. Boudreaux, for Defendant-Respondant, Terrence + Pollard , for Plaintiff-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/26/2015 +
    +
    +
    +
    + +
    + TERRENCE + POLLARD + VERSUS + N. BURL CAIN, WARDEN +
    + 14-KH-909 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Glenn B. Ansardi +
    +
    +
    +
    + District Court #: + 12-3544 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Roland + A. Ditta, for Defendant-Relator, Terry M. Boudreaux, + for Plaintiff-Respondant, Honorable Paul D. Connick, + Jr., for Plaintiff-Respondant, Matthew Caplan, for + Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/13/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + BAMELA KOUSSANTA +
    + 14-C-911 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Emile R. St. Pierre +
    +
    +
    +
    + District Court #: + 76,825 +
    +
    +
    +
    + Lower Court: + 29th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Joseph + G. Kopfler, for Defendant-Respondant, Jason R. + Kenney, for Defendant-Respondant, Lawrence N. + Curtis, for Plaintiff-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Application for Rehearing on + 12/19/2014
    Disposition: 'WRIT NOT CONSIDERED' + on 12/11/2014
    Rehearing Dispo: + 'Rehearing + Granted' on 01/29/2015 +
    +
    +
    +
    + +
    + JEFFREY + L. SOUDELIER, JR. + VERSUS + PBC MANAGEMENT, INC., FLORIDA MARINE TRANSPORTERS, AND FLORIDA + MARINE, LLC +
    + 14-KH-914 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Nancy A. Miller +
    +
    +
    +
    + District Court #: + 08-6357 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Daniel + Ott , for Plaintiff-Relator, Terry M. Boudreaux, for + Defendant-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/07/2015 +
    +
    +
    +
    + +
    + DANIEL + OTT + VERSUS + STATE OF LOUISIANA +
    + 14-KH-915 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Nancy A. Miller +
    +
    +
    +
    + District Court #: + 95-5434 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Phillip + Smith , for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/22/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + PHILLIP SMITH +
    + 14-KH-921 + +
    +
    +
    +
    + Ruling Judge: + Hon. + June B. Darensburg +
    +
    +
    +
    + District Court #: + 09-159 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Carlos + Interiano , for Defendant-Relator, Terry M. + Boudreaux, for Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/07/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + CARLOS INTERIANO +
    + 14-KH-924 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Nancy A. Miller +
    +
    +
    +
    + District Court #: + 11-5979 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Mark Jordan + , for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/13/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + MARK JORDAN +
    + 14-KH-928 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Glenn B. Ansardi +
    +
    +
    +
    + District Court #: + 11-2452 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Corey + Stevenson , for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/07/2015 +
    +
    +
    +
    + +
    + 24TH + JUDICIAL COURT JEFFERSON PARISH, STATE OF LOUISIANA + VERSUS + COREY STEVENSON +
    + 14-KH-929 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Donald A. Rowan +
    +
    +
    +
    + District Court #: + 03-2973 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Terry + M. Boudreaux, for Defendant-Respondant, Anthony + Darensbourg , for Plaintiff-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/21/2015 +
    +
    +
    +
    + +
    + ANTHONY + DARENSBOURG + VERSUS + STATE OF LOUISIANA +
    + 14-K-931 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Mary H. Becnel +
    +
    +
    +
    + District Court #: + 14,200 +
    +
    +
    +
    + Lower Court: + 40th + District Court +
    +
    +
    +
    + Attorney(s): + Hon. + Thomas F. Daley, for Plaintiff-Respondant, Orenthal + J. Jasmin, for Plaintiff-Respondant, Kathleen M. + Wilson, for Defendant-Relator, J. Philip Prescott, + Jr., for Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/16/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + CLARENCE ANDERSON, JR. +
    + 14-KA-936 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Stephen D. Enright +
    +
    +
    +
    + District Court #: + 13-6 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Appellee, Matthew + Caplan, for Plaintiff-Appellee, Holli A. + Herrle-Castillo, for Defendant-Appellant, Honorable + Paul D. Connick, Jr., for Plaintiff-Appellee, + +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Appeal + Dismissed' on 01/28/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + JOHN MICHAEL MARLBROUGH +
    + 14-C-939 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Glenn B. Ansardi +
    +
    +
    +
    + District Court #: + 678-486 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Juan + C. Labadie, for Plaintiff-Respondant, Rachel S. + Kellogg, for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/22/2015 +
    +
    +
    +
    + +
    + JAN + ARABIE + VERSUS + DAVID CROCKET VOLUNTEER FIRE DEPARTMENT AND THE CITY OF + GRETNA +
    + 14-KH-950 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Glenn B. Ansardi +
    +
    +
    +
    + District Court #: + 80-1980 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Honorable + John T. Olivier, for Other, Terry M. Boudreaux, for + Plaintiff-Respondant, Julie C. Tizzard, for + Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Granted' on + 01/14/2015
    Disposition: 'Writ Trans to + Supreme Court' on 01/14/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + JAN PORRETTO +
    + 14-C-951 + +
    +
    +
    +
    + Ruling Judge: + Hon. + June B. Darensburg +
    +
    +
    +
    + District Court #: + 599-351 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Stephen + K. Conroy, for Plaintiff-Respondant, Sara C. Eagan, + for Defendant-Respondant, E. Alexis Bevis, for + Defendant-Respondant, Peter D. Carollo, for + Defendant-Respondant, Emily E. Ross, for + Defendant-Respondant, Amanda D. Hogue, for + Plaintiff-Respondant, Seth A. Schmeeckle, for + Defendant-Respondant, Ashley L. Belleau, for + Defendant-Relator, W. Scarth Clark, for + Defendant-Respondant, James M. Garner, for + Defendant-Respondant, Omar K. Mason, for + Defendant-Relator, Thomas J. Madigan, II, for + Defendant-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/21/2015 +
    +
    +
    +
    + +
    + HUBER, + INC. + VERSUS + NEPTUNE SCIENCES, INC. +
    + 14-KH-952 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Lee V. Faulkner +
    +
    +
    +
    + District Court #: + 12-5230 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Joey Griffin + , for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/15/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + JOEY GRIFFIN +
    + 14-KH-955 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Glenn B. Ansardi +
    +
    +
    +
    + District Court #: + 13-4810 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Rydell + Davis , for Defendant-Relator, Terry M. Boudreaux, + for Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Granted' on 01/22/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + RYDELL DAVIS +
    + 14-K-956 + +
    +
    +
    +
    + Ruling Judge: + Hon. + John J. Molaison +
    +
    +
    +
    + District Court #: + 14-2884 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Bruce H. + Lizana, for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/08/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + MARCUS RAY +
    + 14-C-957 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Stephen D. Enright +
    +
    +
    +
    + District Court #: + 723-901 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Benjamin + J. Biller, for Defendant-Relator, C. William + Bradley, Jr., for Defendant-Relator, Miles G. + Trapolin, for Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/16/2015 +
    +
    +
    +
    + +
    + SHARON + CARTER, KRISTAL CARTER WILCOX AND TINA CARTER + VERSUS + LOUISIANA MEDICAL MUTUAL INSURANCE COMPANY AND DR. STEPHEN + LAYNE +
    + 15-K-5 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Ellen Shirer Kovach +
    +
    +
    +
    + District Court #: + 08-361 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Tramaine A. + Harrison , for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/13/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + TRAMAINE A. HARRISON +
    + 15-C-6 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Donald A. Rowan +
    +
    +
    +
    + District Court #: + 705-015 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Michael + J. Ecuyer, for Plaintiff-Respondant, Peter E. + Sperling, for Defendant-Relator, John B. Cazale, V, + for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Dismissed' on 01/27/2015 +
    +
    +
    +
    + +
    + MARY + BETH WILLEM, ALBERT J. ZAHN AND THOMAS E. ZAHN, AS REPRESENTATIVES + OF THE ESTATE OF THEIR MOTHER, NEDRA ZAHN + VERSUS + LOUISIANA MEDICAL MUTUAL INSURANCE COMPANY AND MELVIN L. PARNELL, + JR., M.D. +
    + 15-K-8 + +
    +
    +
    +
    + Ruling Judge: + Hon. + June B. Darensburg +
    +
    +
    +
    + District Court #: + 14-0947, + 12-5780 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Jefferson + Faggard , for Plaintiff-Relator, Terry M. Boudreaux, + for Defendant-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/07/2015 +
    +
    +
    +
    + +
    + JEFFERSON + FAGGARD + VERSUS + STATE OF LOUISIANA +
    + 15-K-11 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Ellen Shirer Kovach +
    +
    +
    +
    + District Court #: + 13-1901 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Michael + F. Somoza, for Defendant-Relator, Terry M. + Boudreaux, for Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/23/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + BRIAN WILLIAMS +
    + 15-KH-12 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Emile R. St. Pierre +
    +
    +
    +
    + District Court #: + 11-245 +
    +
    +
    +
    + Lower Court: + 29th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Hon. + Joel T. Chaisson, II, for Plaintiff-Respondant, + Glenn Brooks , for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/28/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + GLENN BROOKS +
    + 15-K-15 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Stephen D. Enright +
    +
    +
    +
    + District Court #: + 15-1 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Johnathan + E. Emilien , for Defendant-Relator, Terry M. + Boudreaux, for Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/09/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + JOHNATHAN E. EMILIEN +
    + 15-K-16 + +
    +
    +
    +
    + Ruling Judge: + Hon. + M. Lauren Lemmon +
    +
    +
    +
    + District Court #: + 14,620 +
    +
    +
    +
    + Lower Court: + 29th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Julie + E. Cullen, for Plaintiff-Respondant, Maria M. + Chaisson, for Defendant-Relator, Hon. Joel T. + Chaisson, II, for Plaintiff-Respondant, Colin Clark, + for Plaintiff-Respondant, Hon. James D."Buddy" + Caldwell, for Plaintiff-Respondant, James T. + Phillips, for Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/27/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + LAURA MADERE +
    + 15-K-23 + +
    +
    +
    +
    + Ruling Judge: + Hon. + June B. Darensburg +
    +
    +
    +
    + District Court #: + 13-4999 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Dwight + Harris , for Defendant-Relator, Terry M. Boudreaux, + for Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Granted' on 01/21/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + DWIGHT HARRIS +
    + 15-C-25 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Scott U. Schlegel +
    +
    +
    +
    + District Court #: + 719-999 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Jeffrey + A. Riggs, for Plaintiff-Respondant, Thomas G. Buck, + for Defendant-Relator, A. Scott Tillery, for + Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/21/2015 +
    +
    +
    +
    + +
    + METAIRIE + TOWERS CONDOMINIUM ASSOCIATION, INC. + VERSUS + CHARLES W. CRUTCHER AND STATE FARM FIRE AND CASUALTY COMPANY +
    + 15-KH-29 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Lee V. Faulkner +
    +
    +
    +
    + District Court #: + 96-3245 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Eric + M. Denet , for Plaintiff-Relator, Terry M. + Boudreaux, for Defendant-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/26/2015 +
    +
    +
    +
    + +
    + STATE + EX REL. ERIC M. DENET + VERSUS + N. BURL CAIN, WARDEN +
    + 15-C-30 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Raymond S. Steib +
    +
    +
    +
    + District Court #: + 734-862 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Daniel + R. Martiny, for Defendant-Respondant, John E. + Spellman , for Plaintiff-Relator, Brad G. Theard, + for Defendant-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/22/2015 +
    +
    +
    +
    + +
    + JOHN + E. SPELLMAN + VERSUS + SHERIFF NEWELL NORMAND, DR. GREENE, CORRECTED HEALTH CARE, JEFFERSON + PARISH CORRECTIONAL CENTER +
    + 15-K-32 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Donald A. Rowan +
    +
    +
    +
    + District Court #: + 14-3616 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Alfred + Waker , for Defendant-Relator, Terry M. Boudreaux, + for Plaintiff-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/16/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + ALFRED WAKER +
    + 15-K-33 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Glenn B. Ansardi +
    +
    +
    +
    + District Court #: + 14-3761 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Pedro A. + Monterroso Navas , for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/29/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + PEDRO A. MONTERROSO NAVAS +
    + 15-KH-35 + +
    +
    +
    +
    + Ruling Judge: + Hon. + June B. Darensburg +
    +
    +
    +
    + District Court #: + 05-2244 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Mozine + Johnson , for Defendant-Relator, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/28/2015 +
    +
    +
    +
    + +
    + STATE + OF LOUISIANA + VERSUS + MOZINE JOHNSON +
    + 15-C-42 + +
    +
    +
    +
    + Ruling Judge: + Hon. + June B. Darensburg +
    +
    +
    +
    + District Court #: + 738-687 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Percy + M. Taylor , for Plaintiff-Relator, Steven B. Jones, + for Defendant-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Granted' on 01/30/2015 +
    +
    +
    +
    + +
    + PERCY + M. TAYLOR + VERSUS + 24th J.D.A.'S, ET. AL., 24TH J.D.-I.D.B.A.'S, ET. AL. +
    + 15-KH-48 + +
    +
    +
    +
    + Ruling Judge: + Hon. + Nancy A. Miller +
    +
    +
    +
    + District Court #: + 98-4938 +
    +
    +
    +
    + Lower Court: + 24th + Judicial District Court +
    +
    +
    +
    + Attorney(s): + Troy + Snavely , for Plaintiff-Relator, Terry M. Boudreaux, + for Defendant-Respondant, +
    +
    +
    +
    +
    +
    +
    +
    + Court Hearing Info: +
    + +
    +
    +
    +
    + Disposition: 'Writ Denied' on 01/30/2015 +
    +
    +
    +
    + +
    + TROY + SNAVELY + VERSUS + N. BURL CAIN, STATE OF LOUISIANA +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    + + + + +
    +
    + + + + + + +
    + + + +
    +
    +
    + Copyrights © 2014 & All Rights Reserved by Fifth Circuit Court of Appeal. +
    + +
    +
    +
    + + + +
    +
    + +
    +
    + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/mass_example.compare.json b/tests/examples/opinions/united_states/mass_example.compare.json index 558a12505..d24965c61 100644 --- a/tests/examples/opinions/united_states/mass_example.compare.json +++ b/tests/examples/opinions/united_states/mass_example.compare.json @@ -1,42 +1,409 @@ [ { - "case_dates": "2023-01-27", - "case_names": "Executive Office of Health & Human Services v. Mondor", - "download_urls": "/files/documents/2023/01/27/a13179.pdf", + "case_dates": "2024-11-19", + "case_names": "Robert M. Joost v. Board of Bar Examiners", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/robert-m.-joost-vs.-board-of-bar-examiners", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SJC 13179", - "case_name_shorts": "Mondor" + "docket_numbers": "SJC-13587", + "judges": "", + "case_name_shorts": "" }, { - "case_dates": "2023-01-27", - "case_names": "Dermody v. Executive Office of Health & Human Services", - "download_urls": "/files/documents/2023/01/27/a13199.pdf", + "case_dates": "2024-11-14", + "case_names": "TRUSTEES OF BOSTON UNIVERSITY & Others v. CLERK-MAGISTRATE OF THE CAMBRIDGE DIVISION OF THE DISTRICT COURT DEPARTMENT & Others", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/trustees-of-boston-university-others-1-vs.-clerk-magistrate-of-the-cambridge-division-of-the-district-court-department-others-2", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SJC 13199", - "case_name_shorts": "Dermody" + "docket_numbers": "SJC-13551", + "judges": "Budd, C.J., Kafker, Wendlandt, & Wolohojian", + "case_name_shorts": "" }, { - "case_dates": "2023-01-24", - "case_names": "Commonwealth v. Eagles", - "download_urls": "/files/documents/2023/01/24/f13215.pdf", + "case_dates": "2024-11-08", + "case_names": "Bruce Johnson v. Caroline Settino", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/bruce-johnson-vs.-caroline-settino'", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SJC 13215", - "case_name_shorts": "Commonwealth" + "docket_numbers": "SJC-13555", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar", + "case_name_shorts": "" }, { - "case_dates": "2023-01-12", - "case_names": "Davis v. Commonwealth", - "download_urls": "/files/documents/2023/01/12/m13281.pdf", + "case_dates": "2024-11-07", + "case_names": "Commonwealth v. Carlos Colina", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-carlos-colina", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "SJC 13281", - "case_name_shorts": "Davis" + "docket_numbers": "SJC-13260", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar", + "case_name_shorts": "" + }, + { + "case_dates": "2024-11-05", + "case_names": "In the Matter of the Trusts Under the Will of Helyn W. Kline", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/in-the-matter-of-the-trusts-under-the-will-of-helyn-w.-kline", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13579", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, Dewar, & Wolohojian", + "case_name_shorts": "" + }, + { + "case_dates": "2024-11-04", + "case_names": "In the Matter of Michael Cerulli", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/in-the-matter-of-michael-cerulli", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13571", + "judges": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-31", + "case_names": "Bharani Padmanabhan v. Loretta Cooke", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/bharani-padmanabhan-vs.-loretta-cooke", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13618", + "judges": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-24", + "case_names": "KATHLEEN VITA v. NEW ENGLAND BAPTIST HOSPITAL (And a Consolidated Case)", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/kathleen-vita-1-vs.-new-england-baptist-hospital-(and-a-consolidated-case-2-)", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13542", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-18", + "case_names": "Ju-Bang Born Allah v. Commonwealth", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/ju-bang-born-allah-1-vs.-commonwealth", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13629", + "judges": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-18", + "case_names": "Commonwealth v. Epshod Jeune", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-epshod-jeune", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13447", + "judges": "Budd, C.J., Gaziano, Kafker, & Wendlandt", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-16", + "case_names": "Roberto Cruz v. Commonwealth", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/roberto-cruz-vs.-commonwealth1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13503", + "judges": "Budd, C.J., Gaziano, Kafker, & Georges", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-15", + "case_names": "Commonwealth v. Warrens Gelin", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-warrens-gelin", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13433", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-08", + "case_names": "Commonwealth v. Scott Morrison", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-scott-morrison1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13527", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-08", + "case_names": "Alvin Campbell v. Commonwealth", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/alvin-campbell-vs.-commonwealth", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13504", + "judges": "Budd, C.J., Gaziano, Kafker, & Georges", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-02", + "case_names": "Lance Hullum v. Commonwealth", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/lance-hullum-vs.-commonwealth", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13453", + "judges": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-02", + "case_names": "Commonwealth v. Eden Jacques", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-eden-jacques1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13461", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-01", + "case_names": "Commonwealth v. James Souza", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-james-souza", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13234", + "judges": "Budd, C.J., Gaziano, Wendlandt, & Georges", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-01", + "case_names": "Commonwealth v. Carlos Muniz Rodriguez", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-carlos-muniz-rodriguez", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13540", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-24", + "case_names": "Commonwealth v. Rachelle Scordino", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-rachelle-scordino1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13474", + "judges": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-24", + "case_names": "Commonwealth v. Dominique M. Oliver", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-dominique-m.-oliver1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13486", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-23", + "case_names": "Commonwealth v. Adrian Hinds", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-adrian-hinds1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13538", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, Dewar, & Wolohojian", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-20", + "case_names": "In the Matter of Edward J. Collins", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/in-the-matter-of-edward-j.-collins", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13471", + "judges": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-18", + "case_names": "In the Matter of F.A.", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/in-the-matter-of-f.a", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13515", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-17", + "case_names": "In the Matter of J.P. / in the Matter of E.S.", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/in-the-matter-of-j.p.-in-the-matter-of-e.s", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13492 / SJC-13493", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-17", + "case_names": "Commonwealth v. Daniel Rogers", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-daniel-rogers", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13450", + "judges": "Budd, C.J., Kafker, Wendlandt, Georges, & Dewar", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-13", + "case_names": "AIMEE BODGE & Others v. COMMONWEALTH & Others", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/aimee-bodge-1-others-2-vs.-commonwealth-others-3", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13567", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Wolohojian", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-11", + "case_names": "SUSAN HARTNETT v. CONTRIBUTORY RETIREMENT APPEAL BOARD & Others.", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/susan-hartnett-vs.-contributory-retirement-appeal-board-others.-1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13568", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Wolohojian", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-11", + "case_names": "CONSERVATION LAW FOUNDATION & Another v. ENERGY FACILITIES SITING BOARD & Another (And a Consolidated Case)", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/conservation-law-foundation-another-1-vs.-energy-facilities-siting-board-another-2-(and-a-consolidated-case-3-)", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13521", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Wolohojian", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-06", + "case_names": "Commonwealth v. Richard Dilworth", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-richard-dilworth1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13547", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, Dewar, & Wolohojian", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-05", + "case_names": "DHANANJAY PATEL & Others v. 7-ELEVEN, INC.; DP MILK STREET INC. & Others, Third-Party", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/dhananjay-patel-1-others-2-vs.-7-eleven-inc.-dp-milk-street-inc.-others-3-third-party-defendants", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13485", + "judges": "Suffolk", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-04", + "case_names": "CAMILA DAVALOS & Others v. BAY WATCH, INC.", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/camila-davalos-others-1-vs.-bay-watch-inc.-2", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13534", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-29", + "case_names": "Commonwealth v. Raymond Gaines", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-raymond-gaines", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13446", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-28", + "case_names": "Giul, LLC v. Shenghuo Medical, LLC, D/B/A K2 Medical; Michael J. Antonoplos, Richard P. Blumberg, Mark L. Faupel, and Mark S. Pearlstein", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/giul-llc-v.-shenghuo-medical-llc-d-b-a-k2-medical-michael-j.-antonoplos-richard-p.-blumberg-mark-l.-faupel-and-mark-s.-pearlstein", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "1984CV02862-BLS2", + "judges": "Kenneth W. Salinger", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-27", + "case_names": "Commonwealth v. David E. Canjura", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-david-e.-canjura", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13432", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-27", + "case_names": "Boston Teachers Union, Local 66, American Federation of Teachers, Afl-Cio v. School Committee of Boston", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/boston-teachers-union-local-66-american-federation-of-teachers-afl-cio-vs.-school-committee-of-boston", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13491", + "judges": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-22", + "case_names": "TOYSHA LONDON DARBY v. COMMONWEALTH & Others", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/toysha-london-darby-vs.-commonwealth-others-1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13593", + "judges": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-22", + "case_names": "Eric Porter v. a Justice of the District Court Department", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/eric-porter-vs.-a-justice-of-the-district-court-department", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SJC-13553", + "judges": "", + "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/mass_example.html b/tests/examples/opinions/united_states/mass_example.html deleted file mode 100644 index a120bc872..000000000 --- a/tests/examples/opinions/united_states/mass_example.html +++ /dev/null @@ -1,1751 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New opinions | Mass.gov - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    - -
      -
    • - -
      -

      Official websites use .mass.gov

      -

      - A .mass.gov website belongs to an official government organization in Massachusetts. -

      -
    • -
    • - -
      -

      Secure websites use HTTPS certificate

      -

      - A lock icon - - or https:// means you’ve safely connected to the official website. Share sensitive information only on official, secure websites. -

      -
      -
    • -
    -
    - -
    - - -
    - -
    - - -
    - -
    - -
    -
    - -
    -
    - -
    - -
    - -
    -
    - -
    -
    - -

    New opinions -

    -
    See the most recent two weeks of published opinions and unpublished decisions of the Supreme Judicial Court and the Appeals Court. -
    -
    -
    -
    -
    -
    - -
    -

    - Notice of today's published opinions is provided here and on Twitter - - - @MassReports - -  at 8 a.m. ET. Today's published opinions and unpublished decisions will be available on this page after 10 a.m. The full text of unpublished decisions is available via links in the lists of unpublished decisions. -

    - -

    - Past published opinions are available through various - unofficial collections - . Appeals Court unpublished summary dispositions are available at  - 128archive.com - . -

    - -
    - -
    - -

    Today's published opinions & unpublished decisions: January 27, 2023 - -

    - - -
    - -
    - -

    Recent published opinions and lists of unpublished decisions - -

    - -
    - - -
    -
    - -
    - -

    Reporting errors - -

    - -
    -

    The published opinions posted here are subject to formal revision and are superseded by the advance sheets and bound volumes of the Official Reports. If you find a typographical error or other formal error, please notify: 

    - -

    - Reporter of Decisions, Supreme Judicial Court -
    - - John Adams Courthouse -
    - - 1 Pemberton Square, Suite 2500 -
    - - Boston, MA 02108-1750 -
    - - (617) 557-1030 -
    - SJCReporter@sjc.state.ma.us -

    - -
    -
    - -
    - -

    Register for e-mail notifications of slip opinions - -

    - -
    -

    - If you wish to receive notifications of published opinions, - register here for free - . You can select from a variety of topics to monitor or  choose "All"  to be notified of all opinions being released (do not select every topic listed unless you want multiple e-mails concerning each opinion). -

    - -
      -
    • Civil
    • -
    • Criminal
    • -
    • Business and Contracts
    • -
    • Civil Procedure
    • -
    • Insurance and Workers' Compensation
    • -
    • Labor and Employment
    • -
    • Public and Administrative/Municipal
    • -
    • Real Estate
    • -
    • Torts
    • -
    • Trusts and Estates/Family
    • -
    -

    Each day that an opinion is released concerning one or more of your selected topics, you will receive an e-mail advising you about that case. The e-mail will provide a link to the slip opinion.  You may sign up for as many topics as you wish, with separate e-mails sent for each topic.

    - -

    - - Register for e-mail notification of published opinions - -

    - -
    -
    - -
    - -
    -
    - -
    -

    - Help Us Improve Mass.gov - with your feedback -

    -
    - - -
    -
    - - - - - - - - -
    -
    - -
    - -
    - - - - - - - - - - - - -
    - -
    - -
    -
    - -
    - - -
    - Feedback -
    - -
    - - - - - - - - diff --git a/tests/examples/opinions/united_states/mass_example.json b/tests/examples/opinions/united_states/mass_example.json new file mode 100644 index 000000000..fd8d286c8 --- /dev/null +++ b/tests/examples/opinions/united_states/mass_example.json @@ -0,0 +1,1682 @@ +[ + { + "Id": "1b88bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "ROBERT M. JOOST vs. BOARD OF BAR EXAMINERS", + "Context": "Attorney at Law, Admission to practice, Educational requirements.  Board of Bar Examiners.  Supreme Judicial Court, Membership in the bar.", + "UrlName": "slip-opinion-details/robert-m.-joost-vs.-board-of-bar-examiners", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "November 19, 2024", + "Details": { + "ParentId": "1b88bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13587", + "Dates": "November 19, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " The petitioner, Robert M. Joost, appeals from the judgment of a single justice of this court denying without a hearing his petition to waive certain educational requirements imposed by S.J.C. Rule 3:01, as appearing in 478 Mass. 1301 (2018), for admission to the bar of the Commonwealth. Specifically, Joost seeks waiver of the requirements under S.J.C. Rule 3:01 that petitioners hold a bachelor's degree or the equivalent and a juris", + "Keywords": "Attorney at Law, Admission to practice, Educational requirements. Board of Bar Examiners. Supreme Judicial Court, Membership in the bar." + }, + "ActiveDate": "2024-11-19T15:00:00", + "ExpireDate": "2024-11-19T15:00:00", + "Date": "Nov 19, 2024" + }, + { + "Id": "5579bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "TRUSTEES OF BOSTON UNIVERSITY & others[1] vs. CLERK-MAGISTRATE OF THE CAMBRIDGE DIVISION OF THE DISTRICT COURT DEPARTMENT & others [2]", + "Context": "Supreme Judicial Court, Superintendence of inferior courts.  District Court, Clerk-Magistrate.  Practice, Criminal, Show cause hearing.  Probable Cause.  Public Records.  Privacy.  Due Process of Law, Notice, Hearing.  Notice.", + "UrlName": "slip-opinion-details/trustees-of-boston-university-others-1-vs.-clerk-magistrate-of-the-cambridge-division-of-the-district-court-department-others-2", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "September 9, 2024-November 14, 2024", + "Details": { + "ParentId": "5579bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13551", + "Dates": "September 9, 2024-November 14, 2024", + "Present": "Budd, C.J., Kafker, Wendlandt, & Wolohojian, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Supreme Judicial Court for the county of Suffolk on January 12, 2024.\n The case was heard by Gaziano, J.\n Jeffrey J. Pyle for the petitioners.\n Benjamin Urbelis (Janice Bassil, Michael", + "Keywords": "Supreme Judicial Court, Superintendence of inferior courts. District Court, Clerk-Magistrate. Practice, Criminal, Show cause hearing. Probable Cause. Public Records. Privacy. Due Process of Law, Notice, Hearing. Notice." + }, + "ActiveDate": "2024-11-14T15:00:00", + "ExpireDate": "2025-02-14T15:00:00", + "Date": "Nov 14, 2024" + }, + { + "Id": "4475bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "KATHLEEN GEEZIL, personal representative,[1] vs. WHITE CLIFFS CONDOMINIUM FOUR ASSOCIATION & others[2]", + "Context": "Anti-Discrimination Law, Handicap, Housing.  Real Property, Condominium.  Massachusetts Commission Against Discrimination.  Statute, Construction.  Administrative Law, Agency's interpretation of statute.  Practice, Civil, Summary judgment.", + "UrlName": "slip-opinion-details/kathleen-geezil-personal-representative-1-vs.-white-cliffs-condominium-four-association-others-2", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "September 4, 2024 - November 13, 2024", + "Details": { + "ParentId": "4475bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1103", + "Dates": "September 4, 2024 - November 13, 2024", + "Present": "Massing, Hand, & Smyth, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior Court Department on January 2, 2019. \n The case was heard by Thomas F. McGuire, Jr., J., on motions for summary judgment. \n Walter H. Jacobs for the plaintiff.\n Dillon M. Knight for", + "Keywords": "Anti-Discrimination Law, Handicap, Housing. Real Property, Condominium. Massachusetts Commission Against Discrimination. Statute, Construction. Administrative Law, Agency's interpretation of statute. Practice, Civil, Summary judgment." + }, + "ActiveDate": "2024-11-13T15:00:00", + "ExpireDate": "2025-02-13T15:00:00", + "Date": "Nov 13, 2024" + }, + { + "Id": "bb71bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "QUINTEASHA DOSSANTOS vs. BETH ISRAEL DEACONESS HOSPITAL-MILTON, INC., & others[1]", + "Context": "Medical Malpractice, Complaint, Expert opinion, Hospital, Standard of care, Tribunal.  Impoundment.  Uniform Rules on Impoundment Procedure.  Evidence, Determination of medical malpractice tribunal, Medical record.  Negligence, Medical malpractice, Hospital, Standard of care.  Practice, Civil, Impoundment order, Dismissal.", + "UrlName": "slip-opinion-details/quinteasha-dossantos-vs.-beth-israel-deaconess-hospital-milton-inc.-others-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "October 12, 2023 - November 12, 2024", + "Details": { + "ParentId": "bb71bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "22-P-1061", + "Dates": "October 12, 2023 - November 12, 2024", + "Present": "Rubin, Singh, & Hershfang, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior Court Department on December 24, 2019. \n A motion to impound was heard by Robert B. Gordon, J.; a motion to dismiss was considered by Debra A. Squires-Lee, J., and entry of final judgment was ordered by her.\n Krzysztof G. Sobczak for the", + "Keywords": "Medical Malpractice, Complaint, Expert opinion, Hospital, Standard of care, Tribunal. Impoundment. Uniform Rules on Impoundment Procedure. Evidence, Determination of medical malpractice tribunal, Medical record. Negligence, Medical malpractice, Hospital, Standard of care. Practice, Civil, Impoundment order, Dismissal." + }, + "ActiveDate": "2024-11-12T15:00:00", + "ExpireDate": "2025-02-12T15:00:00", + "Date": "Nov 12, 2024" + }, + { + "Id": "966bbcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "HENRY KOMOSA vs. BOARD OF ASSESSORS OF MONTAGUE", + "Context": "

    Real Property,\nAgricultural or horticultural use, Tax. \nTaxation, Assessors, Appellate Tax Board:  appeal to Appeals Court, Real estate\ntax:  classification of property.  Administrative Law, Agency's interpretation\nof statute.  Statute, Construction.

    ", + "UrlName": "slip-opinion-details/henry-komosa-vs.-board-of-assessors-of-montague", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "April 17, 2024 - November 8, 2024", + "Details": { + "ParentId": "966bbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-454", + "Dates": "April 17, 2024 - November 8, 2024", + "Present": "Vuono, Rubin, & Walsh, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Appeal from a decision of the Appellate\nTax Board. \n J. Mark Dickison for the taxpayer.\n Ellen M. Hutchinson for board of assessors\nof Montague.\nMarriage.  Gift.  Practice, Civil, Retroactivity of judicial holding, Interest.  Retroactivity of Judicial Holding.  Damages, Interest.  Interest.

    ", + "UrlName": "slip-opinion-details/bruce-johnson-vs.-caroline-settino'", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "September 6, 2024 - November 8, 2024", + "Details": { + "ParentId": "b86bbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13555", + "Dates": "September 6, 2024 - November 8, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior Court Department on January 16, 2018.\n The case was heard by Brian S. Glenny, J., and a motion to\nalter or amend the judgment also was heard by him.\n After review by the Appeals Court, 103 Mass. App. Ct. 291 (2023), the Supreme Judicial Court granted leave to obtain further appellate review.\n Stephanie Taverna Siden for the", + "Keywords": "Marriage. Gift. Practice, Civil, Retroactivity of judicial holding, Interest. Retroactivity of Judicial Holding. Damages, Interest. Interest." + }, + "ActiveDate": "2024-11-08T15:00:00", + "ExpireDate": "2025-01-08T15:00:00", + "Date": "Nov 08, 2024" + }, + { + "Id": "5567bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. CARLOS COLINA", + "Context": "

    Homicide.  Evidence, Relevancy and materiality, Prior\nmisconduct, State of mind, Intent, Motive, Argument by prosecutor.  Constitutional Law, Probable cause.  Search and Seizure, Probable cause, Warrant,\nAffidavit, Computer.  Probable\nCause.  Intent.  Practice, Criminal, Warrant, Instructions to\njury, Argument by prosecutor, Motion to suppress, Capital case.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-carlos-colina", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "April 1, 2024 – November 7, 2024", + "Details": { + "ParentId": "5567bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13260", + "Dates": "April 1, 2024 – November 7, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the\nSuperior Court Department on June 3, 2015.\n A pretrial motion to suppress evidence was\nheard by Laurence D. Pierce, J., and the cases were tried before Elizabeth M.\nFahey, J.\nOpen and Gross Lewdness and Lascivious Behavior.  Practice, Criminal, Instructions to jury.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-jarrod-f.-st.-martin", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "September 11, 2024 - November 6, 2024", + "Details": { + "ParentId": "b163bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1380", + "Dates": "September 11, 2024 - November 6, 2024", + "Present": "Vuono, Neyman, & D'Angelo, JJ.", + "County": "Bristol", + "Opinion": null, + "ShortOpinion": " \n Complaint received and sworn to in the Attleboro Division of the District Court Department on February 4, 2020.\n The case was tried before Michele M. Armour, J.\n Charles H. Yelen for the defendant.\n Mary Lee, Assistant District Attorney, for the Commonwealth.\n D'ANGELO, J. The defendant, Jarrod F. St. Martin, was convicted of open and gross", + "Keywords": "Open and Gross Lewdness and Lascivious Behavior. Practice, Criminal, Instructions to jury." + }, + "ActiveDate": "2024-11-06T15:00:00", + "ExpireDate": "2025-02-06T15:00:00", + "Date": "Nov 06, 2024" + }, + { + "Id": "885fbcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. JOSE ENCARNACION", + "Context": "

    Firearms.  License. \nEvidence, Firearm, Hearsay, Admissions and confessions, Voluntariness of\nstatement.  Constitutional Law,\nConfrontation of witnesses, Harmless error, Assistance of counsel,\nVoluntariness of statement.  Error,\nHarmless.  Practice, Criminal, New trial,\nHearsay, Confrontation of witnesses, Harmless error, Instructions to jury,\nAdmissions and confessions, Voluntariness of statement, Assistance of counsel.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-jose-encarnacion", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "May 7, 2024 – November 5, 2024", + "Details": { + "ParentId": "885fbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1460", + "Dates": "May 7, 2024 – November 5, 2024", + "Present": "Henry, Grant, & D'Angelo, JJ.", + "County": "Hampden", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the\nSpringfield Division of the District Court Department on January 9, 2020. \n The case was tried before Patrick S.\nSabbs, J., and a motion for a new trial was heard by him.\n ", + "Keywords": "Firearms. License. Evidence, Firearm, Hearsay, Admissions and confessions, Voluntariness of statement. Constitutional Law, Confrontation of witnesses, Harmless error, Assistance of counsel, Voluntariness of statement. Error, Harmless. Practice, Criminal, New trial, Hearsay, Confrontation of witnesses, Harmless error, Instructions to jury, Admissions and confessions, Voluntariness of statement, Assistance of counsel." + }, + "ActiveDate": "2024-11-05T15:00:00", + "ExpireDate": "2025-02-05T15:00:00", + "Date": "Nov 05, 2024" + }, + { + "Id": "985fbcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "IN THE MATTER OF THE TRUSTS UNDER THE WILL OF HELYN W. KLINE", + "Context": "Trust, Allocation of payments between principal and income, Distribution, Remainder interests, Construction, Trustee's discretion, Trustee's authority.  Devise and Legacy, Remainder interests.  Statute, Construction.  Will, Construction.  Intent.  Practice, Civil, Summary judgment.", + "UrlName": "slip-opinion-details/in-the-matter-of-the-trusts-under-the-will-of-helyn-w.-kline", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "September 9, 2024 - November 5, 2024", + "Details": { + "ParentId": "985fbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13579", + "Dates": "September 9, 2024 - November 5, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, Dewar, & Wolohojian, JJ.", + "County": "Barnstable", + "Opinion": null, + "ShortOpinion": " Petition filed in the Barnstable Division of the Probate and Family Court Department on September 30, 2022.\n The case was heard by Susan Sard Tierney, J., on motions for summary judgment.\n The Supreme Judicial Court on its own initiative transferred the case from the Appeals", + "Keywords": "Trust, Allocation of payments between principal and income, Distribution, Remainder interests, Construction, Trustee's discretion, Trustee's authority. Devise and Legacy, Remainder interests. Statute, Construction. Will, Construction. Intent. Practice, Civil, Summary judgment." + }, + "ActiveDate": "2024-11-05T15:00:00", + "ExpireDate": "2025-02-05T15:00:00", + "Date": "Nov 05, 2024" + }, + { + "Id": "945bbcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "IN THE MATTER OF MICHAEL CERULLI", + "Context": "

    Attorney at Law, Disciplinary proceeding, Public reprimand.  Trial Court, Probation officers.  Board of Bar Overseers.

    ", + "UrlName": "slip-opinion-details/in-the-matter-of-michael-cerulli", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "November 4, 2024", + "Details": { + "ParentId": "945bbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13571", + "Dates": "November 4, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " \n The respondent, Michael Cerulli, appeals from an order of a single justice of this court publicly reprimanding him for a violation of Mass. R. Prof. C. 8.4 (h), as appearing in 471 Mass. 1483 (2015) (\"any other conduct that adversely reflects on [the lawyer's] fitness to practice law\"). The proceedings arise from the respondent's conduct in the lockup area of the Chelsea Division of the District Court Department (Chelsea District Court). We", + "Keywords": "Attorney at Law, Disciplinary proceeding, Public reprimand. Trial Court, Probation officers. Board of Bar Overseers." + }, + "ActiveDate": "2024-11-04T15:00:00", + "ExpireDate": "2025-02-04T15:00:00", + "Date": "Nov 04, 2024" + }, + { + "Id": "1650bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "BHARANI PADMANABHAN vs. LORETTA COOKE", + "Context": "

    Practice, Civil,\nAction in nature of certiorari.

    ", + "UrlName": "slip-opinion-details/bharani-padmanabhan-vs.-loretta-cooke", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "October 31, 2024", + "Details": { + "ParentId": "1650bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13618", + "Dates": "October 31, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " The petitioner, Bharani Padmanabhan,\nappeals from a judgment of a single justice of the county court denying his\nemergency petition for relief in the nature of certiorari pursuant to\nG. L. c. 249, § 4. We\naffirm.\n In 2017, the petitioner commenced an\naction against the respondent in the", + "Keywords": "Practice, Civil, Action in nature of certiorari." + }, + "ActiveDate": "2024-10-31T14:00:00", + "ExpireDate": "2025-01-31T15:00:00", + "Date": "Oct 31, 2024" + }, + { + "Id": "684cbcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. BRYAN M. EWAN", + "Context": "Firearms.  License.", + "UrlName": "slip-opinion-details/commonwealth-vs.-bryan-m.-ewan", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "July 8, 2024 - October 30, 2024", + "Details": { + "ParentId": "684cbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1258", + "Dates": "July 8, 2024 - October 30, 2024", + "Present": "Singh, Hand, & D'Angelo, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the Wareham Division of the District Court Department on June 22, 2020.\n The case was tried before Edward H. Sharkansky, J., and questions of law were reported by him to the Appeals Court.\n Michael P. Maloney for the", + "Keywords": "Firearms. License." + }, + "ActiveDate": "2024-10-30T14:00:00", + "ExpireDate": "2025-01-30T15:00:00", + "Date": "Oct 30, 2024" + }, + { + "Id": "0343bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "DAVID A. DECKELBAUM, trustee,[1] vs. ZONING BOARD OF APPEALS OF PROVINCETOWN & others [2]", + "Context": "Zoning, Variance, Nonconforming use or structure, By-law.  Estoppel", + "UrlName": "slip-opinion-details/david-a.-deckelbaum-trustee-1-vs.-zoning-board-of-appeals-of-provincetown-others-2", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "March 13, 2024 - October 28, 2024", + "Details": { + "ParentId": "0343bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-443", + "Dates": "March 13, 2024 - October 28, 2024", + "Present": "Massing, Singh, & Grant, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Land Court Department on October 4, 2018.\n The case was heard by Michael D. Vhay, J.\n Alan E. Lipkind (Gregory S. Paonessa also present) for the plaintiff.\n Anthony T. Panebianco for Siobhan", + "Keywords": "Zoning, Variance, Nonconforming use or structure, By-law. Estoppel" + }, + "ActiveDate": "2024-10-28T14:00:00", + "ExpireDate": "2025-01-28T15:00:00", + "Date": "Oct 28, 2024" + }, + { + "Id": "4f43bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. DEJUAN MITCHELL.[1]", + "Context": "

    Firearms.  Motor Vehicle, Seat belt.  Youthful Offender Act.  Search and Seizure, Reasonable suspicion.  Department of Youth Services.  Juvenile Court.  Practice, Criminal, Motion to suppress, Sentence.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-dejuan-mitchell.-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "July 12, 2024 - October 28, 2024", + "Details": { + "ParentId": "4f43bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-585", + "Dates": "July 12, 2024 - October 28, 2024", + "Present": "Sacks, Ditkoff, & Toone, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " \n Indictment found and returned in the Suffolk County Division of the Juvenile Court Department on February 2, 2022.\n A pretrial motion to suppress evidence was heard by Peter M. Coyne, J., a conditional plea of guilty was accepted by him, and a motion to revise and revoke the defendant's sentence was considered by him.\n Jason M. Stelmack for the defendant.\n Kyle E. Siconolfi,", + "Keywords": "Firearms. Motor Vehicle, Seat belt. Youthful Offender Act. Search and Seizure, Reasonable suspicion. Department of Youth Services. Juvenile Court. Practice, Criminal, Motion to suppress, Sentence." + }, + "ActiveDate": "2024-10-28T14:00:00", + "ExpireDate": "2025-01-28T15:00:00", + "Date": "Oct 28, 2024" + }, + { + "Id": "5d3dbcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "PAULINE CHALOFF vs. WESTWOOD PUBLIC SCHOOLS", + "Context": " School and School\nCommittee, Maternity leave, Professional teacher status, Tenure of personnel,\nArbitration.  Arbitration, Confirmation\nof award.  Contract, School teacher.  Public Policy.\n

    ", + "UrlName": "slip-opinion-details/pauline-chaloff-vs.-westwood-public-schools", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "April 2, 2024 – October 25, 2024", + "Details": { + "ParentId": "5d3dbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-693", + "Dates": "April 2, 2024 – October 25, 2024", + "Present": "Meade, Englander, & Hodgens, JJ.", + "County": "Norfolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior\nCourt Department on August 10, 2021.\n The case was heard by Maynard M.\nKirpalani, J., on motions for judgment on the pleadings. \n Daniel S. O'Connor for the", + "Keywords": "School and School Committee, Maternity leave, Professional teacher status, Tenure of personnel, Arbitration. Arbitration, Confirmation of award. Contract, School teacher. Public Policy." + }, + "ActiveDate": "2024-10-25T14:00:00", + "ExpireDate": "2025-01-25T05:00:00", + "Date": "Oct 25, 2024" + }, + { + "Id": "6238bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "KATHLEEN VITA[1] vs. NEW ENGLAND BAPTIST HOSPITAL (and a consolidated case[2])", + "Context": "

    Electronic\nSurveillance.  Hospital.  Internet. \nStatute, Construction.  Practice,\nCivil, Standing, Motion to dismiss. \nWords, \"Communication,\" \"Interception.\"

    ", + "UrlName": "slip-opinion-details/kathleen-vita-1-vs.-new-england-baptist-hospital-(and-a-consolidated-case-2-)", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "April 3, 2024 - October 24, 2024", + "Details": { + "ParentId": "6238bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13542", + "Dates": "April 3, 2024 - October 24, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil actions commenced in the Superior\nCourt Department on February 24 and April 7, 2023.\n Motions to dismiss were heard by Hélène\nKazanjian, J., and the cases were reported by her to the Appeals Court.\nNegligence,\nHospital, Standard of care.  Contract,\nPhysician, With hospital.  Practice,\nCivil, Summary judgment.

    ", + "UrlName": "slip-opinion-details/dolores-m.-brown-individually-and-as-personal-representative-1-vs.-saint-vincent-radiological-associates-inc", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "April 8, 2024 – October 24, 2024", + "Details": { + "ParentId": "7b38bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-771", + "Dates": "April 8, 2024 – October 24, 2024", + "Present": "Massing, Shin, & D'Angelo, JJ.", + "County": "Worcester", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior\nCourt Department on October 18, 2013. \n The case was heard by J. Gavin Reardon,\nJr., J., on a motion for summary judgment, and a motion for reconsideration was\nconsidered by him.\nWay, Public:  what constitutes, discontinuance, establishment; Private.  Contract, Construction of contract.  County, Commissioners.

    ", + "UrlName": "slip-opinion-details/town-of-concord-vs.-neil-e.-rasmussen-others.-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "March 1, 2024 – October 21, 2024", + "Details": { + "ParentId": "e427bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-310", + "Dates": "March 1, 2024 – October 21, 2024", + "Present": "Blake, Englander, & D'Angelo, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " \n Civil action commenced in the Land Court Department on October 24, 2017.\n The case was heard by Howard P. Speicher, J.\n Gwen Nolan King (Diane C. Tillotson & Dylan S. O'Sullivan also present) for the defendants.\n Austin Paganelli Anderson (Melissa C. Allison also present) for the plaintiff.\n Christine P. O'Connor, Town Counsel, for town of", + "Keywords": "Way, Public: what constitutes, discontinuance, establishment; Private. Contract, Construction of contract. County, Commissioners." + }, + "ActiveDate": "2024-10-21T14:00:00", + "ExpireDate": "2025-01-21T15:00:00", + "Date": "Oct 21, 2024" + }, + { + "Id": "3a23bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "JU-BANG BORN ALLAH[1] vs. COMMONWEALTH", + "Context": "

    Supreme Judicial\nCourt, Superintendence of inferior courts.

    ", + "UrlName": "slip-opinion-details/ju-bang-born-allah-1-vs.-commonwealth", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "October 18, 2024", + "Details": { + "ParentId": "3a23bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13629", + "Dates": "October 18, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " Ju-Bang Born Allah, formerly known as\nRichard Andrews (petitioner), appeals from a judgment of the county court\ndenying, without a hearing, his petition for relief under G. L.\nc. 211, § 3. We affirm.\n In August 2023, the petitioner filed a\nmotion for a new trial in the Superior Court,", + "Keywords": "Supreme Judicial Court, Superintendence of inferior courts." + }, + "ActiveDate": "2024-10-18T14:00:00", + "ExpireDate": "2025-01-18T15:00:00", + "Date": "Oct 18, 2024" + }, + { + "Id": "6923bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. EPSHOD JEUNE", + "Context": "

    Homicide.  Felony-Murder Rule.  Robbery. \nHome Invasion.  Armed Assault in a\nDwelling.  Firearms.  Practice, Criminal, Jury and jurors,\nInstructions to jury, Capital case. \nEvidence, Identification, Accident. \nJury and Jurors.  Malice.  Identification.  License. \nConstitutional Law, Right to bear arms.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-epshod-jeune", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "April 5, 2024 – October 18, 2024", + "Details": { + "ParentId": "6923bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13447", + "Dates": "April 5, 2024 – October 18, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, & Wendlandt, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the\nSuperior Court Department on August 15, 2015.\n The cases were tried before Bruce R.\nHenry, J.\n Steven J. Rappaport for the defendant.\nErroneous Conviction.  Assault and Battery.  Statute, Construction.  Practice, Civil, Summary judgment.  Practice, Criminal, Nolle prosequi.

    ", + "UrlName": "slip-opinion-details/roberto-cruz-vs.-commonwealth1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "April 3, 2024 – October 16, 2024", + "Details": { + "ParentId": "9d19bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13503", + "Dates": "April 3, 2024 – October 16, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, & Georges, JJ.", + "County": "Essex", + "Opinion": null, + "ShortOpinion": " \n Civil action commenced in the Superior Court Department on May 28, 2019.\n The case was heard by John T. Lu, J., on a motion for summary judgment.\n After review by the Appeals Court, 102 Mass. App. Ct. 685 (2023), the Supreme Judicial Court granted leave to obtain further appellate review.\n Kate R. Isley, Assistant Attorney General, for the Commonwealth.\n ", + "Keywords": "Erroneous Conviction. Assault and Battery. Statute, Construction. Practice, Civil, Summary judgment. Practice, Criminal, Nolle prosequi." + }, + "ActiveDate": "2024-10-16T14:00:00", + "ExpireDate": "2025-01-16T15:00:00", + "Date": "Oct 16, 2024" + }, + { + "Id": "1013bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. WARRENS GELIN", + "Context": "Controlled Substances.  Firearms.  Practice, Criminal, Revocation of probation, Assistance of counsel, Hearsay.  Constitutional Law, Assistance of counsel, Equal protection of laws.  Evidence, Hearsay, Intent, Inference, Firearm.  Intent.", + "UrlName": "slip-opinion-details/commonwealth-vs.-warrens-gelin", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "December 4, 2023 - October 15, 2024", + "Details": { + "ParentId": "1013bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13433", + "Dates": "December 4, 2023 - October 15, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges, JJ.", + "County": "Hampden", + "Opinion": null, + "ShortOpinion": "\n Indictments found and returned in the Superior Court Department on May 23, 2017.\n A proceeding for revocation of probation was heard by Francis E. Flannery, J., and a motion for a new hearing was considered by him.\n The Supreme Judicial Court granted an application for direct appellate", + "Keywords": "Controlled Substances. Firearms. Practice, Criminal, Revocation of probation, Assistance of counsel, Hearsay. Constitutional Law, Assistance of counsel, Equal protection of laws. Evidence, Hearsay, Intent, Inference, Firearm. Intent." + }, + "ActiveDate": "2024-10-15T14:00:00", + "ExpireDate": "2025-01-15T15:00:00", + "Date": "Oct 15, 2024" + }, + { + "Id": "1f09bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. DEJAN BELNAVIS", + "Context": "

    Assault and\nBattery by Means of a Dangerous Weapon. \nAssault by Means of a Dangerous Weapon. \nConstitutional Law, Identification. \nDue Process of Law, Identification. \nIdentification.  Evidence,\nIdentification, Videotape, Photograph. \nWitness, Police officer. \nPractice, Criminal, Motion in limine.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-dejan-belnavis", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "May 13, 2024 – October 10, 2024", + "Details": { + "ParentId": "1f09bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-807", + "Dates": "May 13, 2024 – October 10, 2024", + "Present": "Ditkoff, Englander, & Smyth, JJ.", + "County": "Worcester", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the\nWorcester Division of the District Court Department on July 1, 2021.\n The case was tried before Andrew J.\nAbdella, J.\n Mitchell Kosht for the defendant.\nControlled\nSubstances.  Search and Seizure, Warrant,\nProbable cause, Search incident to lawful arrest.  Probable Cause.  Arrest. \nPractice, Criminal, Motion to suppress, Motion for reconsideration.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-alexander-soto1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "June 6, 2024 – October 10, 2024", + "Details": { + "ParentId": "3b09bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1111", + "Dates": "June 6, 2024 – October 10, 2024", + "Present": "Blake, Neyman, & Sacks, JJ.", + "County": "Hampden", + "Opinion": null, + "ShortOpinion": " Indictment found and returned in the\nSuperior Court Department on October 1, 2019.\nA pretrial motion\nto suppress evidence was heard by Michael K. Callan, J.; a motion to reconsider\nwas considered by him; and a conditional plea of guilty was accepted by James\nM. Manitsas, J.\nKidnapping.  Practice, Criminal, Required finding,\nInstructions to jury.  Statute,\nConstruction.  Evidence, Joint venturer,\nIntent.  Joint Enterprise.  Intent. \nWords, \"Thereby.\"

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-scott-morrison1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "March 4, 2024 - October 8, 2024", + "Details": { + "ParentId": "5500bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13527", + "Dates": "March 4, 2024 - October 8, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Norfolk", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the\nSuperior Court Department on July 31, 2014, and April 29, 2016.\n The cases were tried before Robert C.\nCosgrove, J.\n After review by the Appeals Court, 103\nMass. App. Ct.", + "Keywords": "Kidnapping. Practice, Criminal, Required finding, Instructions to jury. Statute, Construction. Evidence, Joint venturer, Intent. Joint Enterprise. Intent. Words, \"Thereby.\"" + }, + "ActiveDate": "2024-10-08T14:00:00", + "ExpireDate": "2025-01-08T15:00:00", + "Date": "Oct 08, 2024" + }, + { + "Id": "6500bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "ALVIN CAMPBELL vs. COMMONWEALTH", + "Context": "

    Pretrial Detention.  Bail.  Rape.  Statute, Construction.  Words, \"Physical force.\"

    ", + "UrlName": "slip-opinion-details/alvin-campbell-vs.-commonwealth", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "February 5, 2024 - October 8, 2024", + "Details": { + "ParentId": "6500bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13504", + "Dates": "February 5, 2024 - October 8, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, & Georges, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " \n Civil action commenced in the Supreme Judicial Court for the county of Suffolk on August 1, 2023.\n The case was heard by Wendlandt, J.\n Patrick Levin, Committee for Public Counsel Services, for the petitioner.\n Sarah Montgomery Lewis, Assistant District Attorney (Lynn Feigenbaum, Assistant District Attorney, also present) for the Commonwealth.\n GAZIANO,", + "Keywords": "Pretrial Detention. Bail. Rape. Statute, Construction. Words, \"Physical force.\"" + }, + "ActiveDate": "2024-10-08T14:00:00", + "ExpireDate": "2025-01-08T15:00:00", + "Date": "Oct 08, 2024" + }, + { + "Id": "38fbbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "STEPHEN O'MALLEY & another[1] vs. CONTRIBUTORY RETIREMENT APPEAL BOARD & another[2]", + "Context": "

    Contributory\nRetirement Appeal Board.  Division of\nAdministrative Law Appeals.  Public\nEmployment, Accidental disability retirement.  School and School Committee, Retirement\nbenefits.  Labor, Overtime\ncompensation.  Administrative Law,\nAgency's interpretation of statute. \nPractice, Civil, Judgment on the pleadings.

    ", + "UrlName": "slip-opinion-details/stephen-o'malley-another-1-vs.-contributory-retirement-appeal-board-another-2", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "June 6, 2024 – October 7, 2024", + "Details": { + "ParentId": "38fbbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1147", + "Dates": "June 6, 2024 – October 7, 2024", + "Present": "Blake, Neyman, & Sacks, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior\nCourt Department on February 5, 2020. \n The case was heard by Paul D. Wilson, J.,\non a motion for judgment on the pleadings. \nPraven Shenoy for\nthe plaintiffs.\nFirearms.  Search and Seizure, Warrant, Affidavit, Probable cause.  Constitutional Law, Probable cause.  Probable Cause.  Practice, Criminal, Motion to suppress, Warrant, Affidavit.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-marcus-d.-anding", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "March 1, 2024 – October 7, 2024", + "Details": { + "ParentId": "4afbbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-646", + "Dates": "March 1, 2024 – October 7, 2024", + "Present": "Neyman, Hershfang, & Hodgens, JJ.", + "County": "Barnstable", + "Opinion": null, + "ShortOpinion": " \n Indictments found and returned in the Superior Court Department on March 2, 2022.\n A pretrial motion to suppress evidence was heard by Elaine M. Buckley, J.\n An application for leave to prosecute an interlocutory appeal was allowed by Dalila Argaez Wendlandt, J., in the Supreme Judicial Court for the county of Suffolk, and the appeal was reported by her to the Appeals Court.\n Rose-Ellen El", + "Keywords": "Firearms. Search and Seizure, Warrant, Affidavit, Probable cause. Constitutional Law, Probable cause. Probable Cause. Practice, Criminal, Motion to suppress, Warrant, Affidavit." + }, + "ActiveDate": "2024-10-07T14:00:00", + "ExpireDate": "2025-01-07T15:00:00", + "Date": "Oct 07, 2024" + }, + { + "Id": "7ff3bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "WILLIAM J. DOYLE, personal representative,[1] & others[2] vs. CITY OF QUINCY & others[3]", + "Context": "

    Massachusetts\nTort Claims Act.  Public Employment,\nPolice.  Police, Outside employment,\nNegligence.  Negligence, Police, Public employee.  Practice, Civil, Motion to dismiss.

    ", + "UrlName": "slip-opinion-details/william-j.-doyle-personal-representative-1-others-2-vs.-city-of-quincy-others-3", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "April 9, 2024 – October 3, 2024", + "Details": { + "ParentId": "7ff3bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-574", + "Dates": "April 9, 2024 – October 3, 2024", + "Present": "Neyman, Brennan, & Toone, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior\nCourt Department on January 21, 2022. \n A motion to dismiss was heard by Michael\nA. Cahillane, J. \nDavid Hadas for\nthe defendants.\nSupreme Judicial Court, Superintendence of inferior courts.  Practice, Criminal, Double jeopardy, Verdict, Lesser included offense, Duplicative convictions.  Assault and Battery.

    ", + "UrlName": "slip-opinion-details/lance-hullum-vs.-commonwealth", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "October 2, 2024", + "Details": { + "ParentId": "cdefbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13453", + "Dates": "October 2, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " \n The petitioner, Lance Hullum, appeals from a judgment of the county court denying his petition for extraordinary relief pursuant to G. L. c. 211, § 3. We affirm.\n Background. In 2014, Hullum was indicted on various aggravated assault charges stemming from an incident in which he allegedly attacked multiple individuals, including Raymond Girard and Richard Saunders. With respect to the attack on", + "Keywords": "Supreme Judicial Court, Superintendence of inferior courts. Practice, Criminal, Double jeopardy, Verdict, Lesser included offense, Duplicative convictions. Assault and Battery." + }, + "ActiveDate": "2024-10-02T14:00:00", + "ExpireDate": "2025-01-02T15:00:00", + "Date": "Oct 02, 2024" + }, + { + "Id": "8aebbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. JAMES SOUZA", + "Context": "Homicide.  Felony-Murder Rule.  Robbery.  Deoxyribonucleic Acid.  Evidence, Scientific test, Relevancy and materiality, Expert opinion, Hearsay.  Practice, Criminal, Hearsay, Exhibits, Capital case.  Witness, Expert.", + "UrlName": "slip-opinion-details/commonwealth-vs.-james-souza", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "March 8, 2024 - October 1, 2024", + "Details": { + "ParentId": "8aebbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13234", + "Dates": "March 8, 2024 - October 1, 2024", + "Present": "Budd, C.J., Gaziano, Wendlandt, & Georges, JJ.", + "County": "Bristol", + "Opinion": null, + "ShortOpinion": " Indictment found and returned in the Superior Court Department on April 5, 2016.\n The case was tried before Thomas F. McGuire, Jr., J.\n Stephen Paul Maidman for the defendant.\n Shoshana E. Stern, Assistant District", + "Keywords": "Homicide. Felony-Murder Rule. Robbery. Deoxyribonucleic Acid. Evidence, Scientific test, Relevancy and materiality, Expert opinion, Hearsay. Practice, Criminal, Hearsay, Exhibits, Capital case. Witness, Expert." + }, + "ActiveDate": "2024-10-01T14:00:00", + "ExpireDate": "2025-01-01T15:00:00", + "Date": "Oct 01, 2024" + }, + { + "Id": "a4ebbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. CARLOS MUNIZ RODRIGUEZ", + "Context": "

    Sex Offender.  Global Positioning System Device.  Practice, Criminal, Probation, Double jeopardy.  Constitutional Law, Double jeopardy, Search and seizure, Privacy.  Search and Seizure, Probationer, Expectation of privacy.  Privacy.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-carlos-muniz-rodriguez", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "May 8, 2024 - October 1, 2024", + "Details": { + "ParentId": "a4ebbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13540", + "Dates": "May 8, 2024 - October 1, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the Superior Court Department on April 2, 2014.\n A motion for relief from a condition of probation, filed on November 18, 2022, was heard by Laurence D. Pierce, J.\n The Supreme Judicial Court granted an application for direct appellate review.\n Abby P. Shyavitz for the defendant.\n Jessica Langsam, Assistant District Attorney", + "Keywords": "Sex Offender. Global Positioning System Device. Practice, Criminal, Probation, Double jeopardy. Constitutional Law, Double jeopardy, Search and seizure, Privacy. Search and Seizure, Probationer, Expectation of privacy. Privacy." + }, + "ActiveDate": "2024-10-01T14:00:00", + "ExpireDate": "2025-01-01T15:00:00", + "Date": "Oct 01, 2024" + }, + { + "Id": "efe6bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. MICHAEL W. TYSON", + "Context": "Assault and Battery on Certain Public Officers and Employees.  Resisting Arrest.  Police Officer.  Intent.  Arrest.  Practice, Criminal, Dismissal.", + "UrlName": "slip-opinion-details/commonwealth-vs.-michael-w.-tyson", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "February 14, 2024 – September 30, 2024", + "Details": { + "ParentId": "efe6bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-229", + "Dates": "February 14, 2024 – September 30, 2024", + "Present": "Vuono, Massing, & Toone, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the Brockton Division of the District Court Department on August 26, 2019. \n A motion to dismiss was heard by Honor Kerry Segal, J. \n Karen A. Palumbo, Assistant District Attorney, for the Commonwealth.\n Peter J.", + "Keywords": "Assault and Battery on Certain Public Officers and Employees. Resisting Arrest. Police Officer. Intent. Arrest. Practice, Criminal, Dismissal." + }, + "ActiveDate": "2024-09-30T14:00:00", + "ExpireDate": "2024-12-30T15:00:00", + "Date": "Sep 30, 2024" + }, + { + "Id": "19e7bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "IN THE MATTER OF THE ESTATE OF WILLIAM F. McLOUGHLIN.[1]", + "Context": "Will, Construction, Testamentary capacity, Validity.  Probate Court, Affidavit.  Words, \"Contest.\"", + "UrlName": "slip-opinion-details/in-the-matter-of-the-estate-of-william-f.-mcloughlin.-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "March 11, 2024 – September 30, 2024", + "Details": { + "ParentId": "19e7bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-770", + "Dates": "March 11, 2024 – September 30, 2024", + "Present": "Green, C.J., Henry, & Ditkoff, JJ.[2]", + "County": "Worcester", + "Opinion": null, + "ShortOpinion": " \n \n Complaint for instructions filed in the Worcester Division of the Probate and Family Court Department on August 19, 2022. \n The case was heard by Kathryn M. Bailey, J., on motions for summary judgment.\n Barry A. Bachrach for Sean McLoughlin.\n Maureen E. Curran (Cara J. Daniels also present) for Margaret McLoughlin & others.\n ", + "Keywords": "Will, Construction, Testamentary capacity, Validity. Probate Court, Affidavit. Words, \"Contest.\"" + }, + "ActiveDate": "2024-09-30T14:00:00", + "ExpireDate": "2024-12-30T15:00:00", + "Date": "Sep 30, 2024" + }, + { + "Id": "9fd4bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. RACHELLE SCORDINO", + "Context": "

    Uttering Forged\nInstrument.  Negotiable Instruments,\nForgery.  Forgery.  Evidence, Intent.  Intent. \nPractice, Criminal, Required finding.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-rachelle-scordino1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "September 24, 2024", + "Details": { + "ParentId": "9fd4bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13474", + "Dates": "September 24, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " After cashing a single check from a person\nwho did not know her, the defendant, Rachelle Scordino, proceeded to a\njury-waived trial on one count of larceny by check and one count of uttering a\nfalse check.[1] At the close of the\nCommonwealth's case, the defendant moved for a required finding of not\nguilty. The judge granted the motion\nwith respect to the larceny charge and found the defendant guilty", + "Keywords": "Uttering Forged Instrument. Negotiable Instruments, Forgery. Forgery. Evidence, Intent. Intent. Practice, Criminal, Required finding." + }, + "ActiveDate": "2024-09-24T14:00:00", + "ExpireDate": "2024-12-24T15:00:00", + "Date": "Sep 24, 2024" + }, + { + "Id": "c9d4bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. DOMINIQUE M. OLIVER", + "Context": "Uttering Forged Instrument.  Negotiable Instruments, Forgery.  Forgery.  Evidence, Intent.  Intent.  Practice, Criminal, Required finding.", + "UrlName": "slip-opinion-details/commonwealth-vs.-dominique-m.-oliver1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "February 5, 2024 - September 24, 2024", + "Details": { + "ParentId": "c9d4bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13486", + "Dates": "February 5, 2024 - September 24, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the Malden Division of the District Court Department on March 6, 2019.\n The case was tried before William G. Farrell, J.\n After review by the Appeals Court, 102 Mass. App. Ct. 609 (2023), the Supreme Judicial Court granted leave to obtain further appellate", + "Keywords": "Uttering Forged Instrument. Negotiable Instruments, Forgery. Forgery. Evidence, Intent. Intent. Practice, Criminal, Required finding." + }, + "ActiveDate": "2024-09-24T14:00:00", + "ExpireDate": "2024-12-24T15:00:00", + "Date": "Sep 24, 2024" + }, + { + "Id": "05d0bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. ADRIAN HINDS", + "Context": "Assault and Battery by Means of a Dangerous Weapon.  Evidence, Relevancy and materiality, Intent, Disclosure of evidence, Expert opinion, Rebuttal, Surrebuttal.  Practice, Criminal, Disclosure of evidence, Witness.  Constitutional Law, Witness.  Witness, Expert, Impeachment.  Intent.  Social Media.", + "UrlName": "slip-opinion-details/commonwealth-vs.-adrian-hinds1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "May 8, 2024 – September 23, 2024", + "Details": { + "ParentId": "05d0bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13538", + "Dates": "May 8, 2024 – September 23, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, Dewar, & Wolohojian, JJ.", + "County": "Hampden", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the Superior Court Department on April 27, 2016.\n Following review by this court, 487 Mass. 212 (2021), the cases were tried before John S. Ferrara, J.\n After review by the Appeals Court, 103 Mass. App. Ct. 1103 (2023), the Supreme Judicial Court granted leave", + "Keywords": "Assault and Battery by Means of a Dangerous Weapon. Evidence, Relevancy and materiality, Intent, Disclosure of evidence, Expert opinion, Rebuttal, Surrebuttal. Practice, Criminal, Disclosure of evidence, Witness. Constitutional Law, Witness. Witness, Expert, Impeachment. Intent. Social Media." + }, + "ActiveDate": "2024-09-23T14:00:00", + "ExpireDate": "2024-12-23T15:00:00", + "Date": "Sep 23, 2024" + }, + { + "Id": "1bd0bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. ERIN KIPEUM LEE", + "Context": "

    Larceny.  Money Laundering.  Jury and Jurors.  Practice, Criminal, Jury and jurors, Empanelment of jury, Challenge to jurors, Instructions to jury.  Statute, Construction.  Evidence, Intent, Expert opinion.  Witness, Expert.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-erin-kipeum-lee", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "December 14, 2023 - September 23, 2024", + "Details": { + "ParentId": "1bd0bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-496", + "Dates": "December 14, 2023 - September 23, 2024", + "Present": "Hand, Hershfang, & Brennan, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " \n Indictments found and returned in the Superior Court Department on January 31, 2019.\n The cases were tried before Janice W. Howe, J.\n Andrew P. Power for the defendant.\n Christa Elliott, Assistant District Attorney, for the Commonwealth.\n HERSHFANG, J. After the defendant house- and cat-sat for her landlord for three and one-half months, during", + "Keywords": "Larceny. Money Laundering. Jury and Jurors. Practice, Criminal, Jury and jurors, Empanelment of jury, Challenge to jurors, Instructions to jury. Statute, Construction. Evidence, Intent, Expert opinion. Witness, Expert." + }, + "ActiveDate": "2024-09-23T14:00:00", + "ExpireDate": "2024-12-23T15:00:00", + "Date": "Sep 23, 2024" + }, + { + "Id": "dbcabbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "IN THE MATTER OF EDWARD J. COLLINS", + "Context": "Attorney at Law, Disciplinary proceeding, Suspension, Attorney-client relationship, Contingent fee agreement.  Board of Bar Overseers.", + "UrlName": "slip-opinion-details/in-the-matter-of-edward-j.-collins", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "September 20, 2024", + "Details": { + "ParentId": "dbcabbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13471", + "Dates": "September 20, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " The respondent attorney, Edward J. Collins, appeals from the order of a single justice of this court suspending him from the practice of law. The matter came before the single justice on the information and record of proceedings filed by the Board of Bar Overseers (board). The board determined that in his representation of a particular client (client), the goal of which was to prevent her eviction, the respondent failed to act with diligence, consistently presented", + "Keywords": "Attorney at Law, Disciplinary proceeding, Suspension, Attorney-client relationship, Contingent fee agreement. Board of Bar Overseers." + }, + "ActiveDate": "2024-09-20T14:00:00", + "ExpireDate": "2024-12-20T15:00:00", + "Date": "Sep 20, 2024" + }, + { + "Id": "0dcbbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "ADOPTION OF ARIANNE[1]", + "Context": "

    Adoption, Care and protection, Dispensing with parent's consent.  Parent and Child, Adoption, Dispensing with parent's consent to adoption, Custody.  Minor, Adoption, Custody, Care and protection.  Department of Children & Families.  Practice, Civil, Care and protection proceeding, Adoption, Findings by judge, Disqualification of judge.

    ", + "UrlName": "slip-opinion-details/adoption-of-arianne-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "May 13, 2024 – September 20, 2024", + "Details": { + "ParentId": "0dcbbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-979", + "Dates": "May 13, 2024 – September 20, 2024", + "Present": "Ditkoff, Englander, & Smyth, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " Petition filed in the Middlesex County Division of the Juvenile Court Department on April 28, 2021. \n The case was heard by Brian P. Frane, J. \n Debra P. Dow for the mother.\n Arjun K. Jaikumar, Assistant Attorney General, for Department of Children and Families.\n Roberta Driscoll-Weiss for the child.\n DITKOFF, J. The", + "Keywords": "Adoption, Care and protection, Dispensing with parent's consent. Parent and Child, Adoption, Dispensing with parent's consent to adoption, Custody. Minor, Adoption, Custody, Care and protection. Department of Children & Families. Practice, Civil, Care and protection proceeding, Adoption, Findings by judge, Disqualification of judge." + }, + "ActiveDate": "2024-09-20T14:00:00", + "ExpireDate": "2024-12-20T15:00:00", + "Date": "Sep 20, 2024" + }, + { + "Id": "c9c2bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "IN THE MATTER OF F.A.", + "Context": "Mental Health.  Practice, Civil, Commitment of mentally ill person, Findings by judge.  Due Process of Law, Mental health, Commitment, Substantive rights, Burden of proof.  Statute, Construction.", + "UrlName": "slip-opinion-details/in-the-matter-of-f.a", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "April 1, 2024 - September 18, 2024", + "Details": { + "ParentId": "c9c2bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13515", + "Dates": "April 1, 2024 - September 18, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges, JJ.", + "County": "Worcester", + "Opinion": null, + "ShortOpinion": " Petition for civil commitment filed in the Worcester Division of the District Court Department on April 8, 2020.\n A motion for a buildings and grounds restriction was heard by Janet J. McGuiggan, J.\n The Supreme Judicial Court granted an application for direct appellate", + "Keywords": "Mental Health. Practice, Civil, Commitment of mentally ill person, Findings by judge. Due Process of Law, Mental health, Commitment, Substantive rights, Burden of proof. Statute, Construction." + }, + "ActiveDate": "2024-09-18T14:00:00", + "ExpireDate": "2024-12-18T15:00:00", + "Date": "Sep 18, 2024" + }, + { + "Id": "cfbebbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "IN THE MATTER OF J.P. / IN THE MATTER OF E.S.", + "Context": "Practice, Civil, Civil commitment, Standard of proof.  Due Process of Law, Commitment, Substantive rights, Standard of proof, Vagueness of statute.  Statute, Construction.  Words, \"Chronic,\" \"Habitual.\"", + "UrlName": "slip-opinion-details/in-the-matter-of-j.p.-in-the-matter-of-e.s", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "April 3, 2024 - September 17, 2024", + "Details": { + "ParentId": "cfbebbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13492 / SJC-13493", + "Dates": "April 3, 2024 - September 17, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges, JJ.", + "County": "Bristol / Essex", + "Opinion": null, + "ShortOpinion": " Petition for commitment for alcohol or substance use disorder filed in the Bristol County Division of the Juvenile Court Department on May 1, 2023.\n The case was heard by Michaela C. Stewart, J.\n The Supreme Judicial Court granted an application for direct appellate", + "Keywords": "Practice, Civil, Civil commitment, Standard of proof. Due Process of Law, Commitment, Substantive rights, Standard of proof, Vagueness of statute. Statute, Construction. Words, \"Chronic,\" \"Habitual.\"" + }, + "ActiveDate": "2024-09-17T14:00:00", + "ExpireDate": "2024-12-17T15:00:00", + "Date": "Sep 17, 2024" + }, + { + "Id": "e9bebbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. DANIEL ROGERS", + "Context": "

    Homicide.  Robbery.  Felony-Murder Rule.  Malice.  Practice, Criminal, Assistance of counsel, New trial, Postconviction relief, Verdict, Capital case.  Constitutional Law, Assistance of counsel, Sentence.  Mental Impairment.  Intent.  Evidence, Expert opinion, Credibility of witness, Intent.  Witness, Expert, Credibility.  Dangerous Weapon. 

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-daniel-rogers", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "March 6, 2024 – September 17, 2024", + "Details": { + "ParentId": "e9bebbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13450", + "Dates": "March 6, 2024 – September 17, 2024", + "Present": "Budd, C.J., Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " \n Indictments found and returned in the Superior Court Department on May 12, 2004.\n Following review by this court, 459 Mass. 249 (2011), a renewed motion to reduce the verdict and a motion for a new trial, filed on January 3, 2018, were heard by John A. Agostini, J.\n A request for leave to appeal was reported by Lowy, J., in the Supreme Judicial Court for the county of Suffolk, and a", + "Keywords": "Homicide. Robbery. Felony-Murder Rule. Malice. Practice, Criminal, Assistance of counsel, New trial, Postconviction relief, Verdict, Capital case. Constitutional Law, Assistance of counsel, Sentence. Mental Impairment. Intent. Evidence, Expert opinion, Credibility of witness, Intent. Witness, Expert, Credibility. Dangerous Weapon." + }, + "ActiveDate": "2024-09-17T14:00:00", + "ExpireDate": "2024-12-17T15:00:00", + "Date": "Sep 17, 2024" + }, + { + "Id": "03bbbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "NAHANT PRESERVATION TRUST, INC., & others[1] vs. NORTHEASTERN UNIVERSITY (and a consolidated case[2])", + "Context": "Municipal Corporations, Parks.  Parks and Parkways.  Public Land.  Contract, Private college, Promissory estoppel.  Estoppel.  Practice, Civil, Summary judgment.", + "UrlName": "slip-opinion-details/nahant-preservation-trust-inc.-others-1-vs.-northeastern-university-(and-a-consolidated-case-2-)", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "February 14, 2024 - September 16, 2024", + "Details": { + "ParentId": "03bbbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-482", + "Dates": "February 14, 2024 - September 16, 2024", + "Present": "Vuono, Massing, & Toone, JJ.", + "County": "Essex", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Land Court Department on August 9, 2019.\n Civil action commenced in the Superior Court Department on August 20, 2019.\n After consolidation, the cases were heard by Jeffrey T. Karp, J., on motions for summary", + "Keywords": "Municipal Corporations, Parks. Parks and Parkways. Public Land. Contract, Private college, Promissory estoppel. Estoppel. Practice, Civil, Summary judgment." + }, + "ActiveDate": "2024-09-16T14:00:00", + "ExpireDate": "2024-12-16T15:00:00", + "Date": "Sep 16, 2024" + }, + { + "Id": "5cb5bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "AIMEE BODGE[1] & others[2] vs. COMMONWEALTH & others[3]", + "Context": "

    Family &\nMedical Leave Act.  Employment, Employee\nbenefit plan.  Statute,\nConstruction.  Practice, Civil, Motion to\ndismiss.  State Police.

    ", + "UrlName": "slip-opinion-details/aimee-bodge-1-others-2-vs.-commonwealth-others-3", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "May 6, 2024 - September 13, 2024", + "Details": { + "ParentId": "5cb5bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13567", + "Dates": "May 6, 2024 - September 13, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Wolohojian, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior\nCourt Department on March 10, 2022.\n A motion to dismiss was heard by Robert L.\nUllmann, J., and the case was reported by him to the Appeals Court.\n The Supreme Judicial Court on its", + "Keywords": "Family & Medical Leave Act. Employment, Employee benefit plan. Statute, Construction. Practice, Civil, Motion to dismiss. State Police." + }, + "ActiveDate": "2024-09-13T14:00:00", + "ExpireDate": "2024-12-13T15:00:00", + "Date": "Sep 13, 2024" + }, + { + "Id": "dbabbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "CONSERVATION LAW FOUNDATION & another[1] vs. ENERGY FACILITIES SITING BOARD & another[2] (and a consolidated case[3])", + "Context": "Energy Facilities Siting Board.  Public Utilities, Energy company, Electric company, Findings, Judicial review.  Electric Company.  Environment.  Administrative Law, Substantial evidence, Findings, Agency's interpretation of statute, Judicial review.  Permit.  Department of Environmental Protection.", + "UrlName": "slip-opinion-details/conservation-law-foundation-another-1-vs.-energy-facilities-siting-board-another-2-(and-a-consolidated-case-3-)", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "May 6, 2024 - September 11, 2024", + "Details": { + "ParentId": "dbabbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13521", + "Dates": "May 6, 2024 - September 11, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Wolohojian, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil actions commenced in the Supreme Judicial Court for the county of Suffolk on December 19 and 29, 2022.\n The cases were reported by Cypher, J.\n Phelps Turner (Anxhela Mile also present) for Conservation Law Foundation &", + "Keywords": "Energy Facilities Siting Board. Public Utilities, Energy company, Electric company, Findings, Judicial review. Electric Company. Environment. Administrative Law, Substantial evidence, Findings, Agency's interpretation of statute, Judicial review. Permit. Department of Environmental Protection." + }, + "ActiveDate": "2024-09-11T14:00:00", + "ExpireDate": "2024-12-11T15:00:00", + "Date": "Sep 11, 2024" + }, + { + "Id": "efabbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "MICHAEL MEEHAN vs. LAZER SPOT, INC., & another.[1]", + "Context": "

    Workers' Compensation Act, Exclusivity provision.  Practice, Civil, Summary judgment.

    ", + "UrlName": "slip-opinion-details/michael-meehan-vs.-lazer-spot-inc.-another.-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "December 5, 2023 – September 11, 2024", + "Details": { + "ParentId": "efabbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-180", + "Dates": "December 5, 2023 – September 11, 2024", + "Present": "Green, C.J., Neyman, & Englander, JJ.[2]", + "County": "Hampden", + "Opinion": null, + "ShortOpinion": " \n Civil action commenced in the Superior Court Department on August 10, 2020.\n The case was heard by Karen L. Goodwin, J., on motions for summary judgment.\n John J. McCarthy for the plaintiff.\n Patricia B. Gary for the defendants.\n NEYMAN, J. The plaintiff, Michael Meehan, commenced this action against his employer, Lazer Spot, Inc., and his", + "Keywords": "Workers' Compensation Act, Exclusivity provision. Practice, Civil, Summary judgment." + }, + "ActiveDate": "2024-09-11T14:00:00", + "ExpireDate": "2024-12-11T15:00:00", + "Date": "Sep 11, 2024" + }, + { + "Id": "fdabbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "SUSAN HARTNETT vs. CONTRIBUTORY RETIREMENT APPEAL BOARD & others.[1]", + "Context": "Public Employment, Retirement.  Retirement.  Pension.  Municipal Corporations, Retirement board, Pensions.  Contributory Retirement Appeal Board.  Public Employee Retirement Administration Commission.  Administrative Law, Agency's interpretation of statute.  Statute, Construction.  Practice, Civil, Judgment on the pleadings.  Words, \"Two consecutive years.\"", + "UrlName": "slip-opinion-details/susan-hartnett-vs.-contributory-retirement-appeal-board-others.-1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "May 8, 2024 – September 11, 2024", + "Details": { + "ParentId": "fdabbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13568", + "Dates": "May 8, 2024 – September 11, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Wolohojian, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior Court Department on October 1, 2021.\n The case was heard by Jackie A. Cowin, J., on motions for judgment on the pleadings.\n The Supreme Judicial Court on its own initiative transferred the case from the Appeals", + "Keywords": "Public Employment, Retirement. Retirement. Pension. Municipal Corporations, Retirement board, Pensions. Contributory Retirement Appeal Board. Public Employee Retirement Administration Commission. Administrative Law, Agency's interpretation of statute. Statute, Construction. Practice, Civil, Judgment on the pleadings. Words, \"Two consecutive years.\"" + }, + "ActiveDate": "2024-09-11T14:00:00", + "ExpireDate": "2024-12-11T15:00:00", + "Date": "Sep 11, 2024" + }, + { + "Id": "98a6bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. ANGEL PENA-LARA", + "Context": "Evidence, Informer.  Witness, Police informer, Privilege.  Practice, Criminal, Disclosure of identity of informer, Dismissal.", + "UrlName": "slip-opinion-details/commonwealth-vs.-angel-pena-lara", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "March 11, 2024 – September 10, 2024", + "Details": { + "ParentId": "98a6bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "22-P-592", + "Dates": "March 11, 2024 – September 10, 2024", + "Present": "Rubin, Englander, & D'Angelo, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the Dorchester Division of the Boston Municipal Court Department on December 17, 2019.\n A motion to dismiss was heard by Lisa Ann Grant, J. \n Brooke Hartley, Assistant District Attorney, for the Commonwealth.\n ", + "Keywords": "Evidence, Informer. Witness, Police informer, Privilege. Practice, Criminal, Disclosure of identity of informer, Dismissal." + }, + "ActiveDate": "2024-09-10T14:00:00", + "ExpireDate": "2024-12-10T14:00:00", + "Date": "Sep 10, 2024" + }, + { + "Id": "269dbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. RICHARD DILWORTH", + "Context": "Social Media.  Electronic Surveillance.  Constitutional Law, Equal protection of laws.  Selective Prosecution.  Evidence, Selective prosecution, Disclosure of evidence, Profile, Statistics.  Practice, Criminal, Disclosure of identity of informer, Disclosure of identity of surveillance location, Dismissal.  Firearms.", + "UrlName": "slip-opinion-details/commonwealth-vs.-richard-dilworth1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "May 6, 2024 - September 6, 2024", + "Details": { + "ParentId": "269dbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13547", + "Dates": "May 6, 2024 - September 6, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, Dewar, & Wolohojian, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the Superior Court Department on June 12 and 14, 2018.\n A pretrial motion for discovery was heard by Peter B. Krupp, J., and a motion to dismiss was heard by Robert L. Ullmann, J.\n The Supreme Judicial Court granted an application for direct appellate", + "Keywords": "Social Media. Electronic Surveillance. Constitutional Law, Equal protection of laws. Selective Prosecution. Evidence, Selective prosecution, Disclosure of evidence, Profile, Statistics. Practice, Criminal, Disclosure of identity of informer, Disclosure of identity of surveillance location, Dismissal. Firearms." + }, + "ActiveDate": "2024-09-06T14:00:00", + "ExpireDate": "2024-12-06T15:00:00", + "Date": "Sep 06, 2024" + }, + { + "Id": "d697bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "DHANANJAY PATEL[1] & others[2] vs. 7-ELEVEN, INC.; DP MILK STREET INC. & others,[3] third-party defendants", + "Context": "Independent Contractor Act.  Massachusetts Wage Act.  Contract, Franchise agreement.  Statute, Construction", + "UrlName": "slip-opinion-details/dhananjay-patel-1-others-2-vs.-7-eleven-inc.-dp-milk-street-inc.-others-3-third-party-defendants", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "April 1, 2024 - September 5, 2024", + "Details": { + "ParentId": "d697bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13485", + "Dates": "April 1, 2024 - September 5, 2024", + "Present": "Suffolk", + "County": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges, JJ.", + "Opinion": null, + "ShortOpinion": " Certification of a question of law to the Supreme Judicial Court by the United States Court of Appeals for the First Circuit.\n Shannon Liss-Riordan (Matthew Carrieri also present) for the plaintiffs.\n David C. Kravitz, Deputy State Solicitor, for the Attorney", + "Keywords": "Independent Contractor Act. Massachusetts Wage Act. Contract, Franchise agreement. Statute, Construction" + }, + "ActiveDate": "2024-09-05T14:00:00", + "ExpireDate": "2024-12-05T15:00:00", + "Date": "Sep 05, 2024" + }, + { + "Id": "1198bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "SUNRISE EQUIPMENT & EXCAVATION, INC. vs. CONSTRUCTION MANAGEMENT & BUILDERS, INC.", + "Context": "

    Attorney at Law, Contingent fee agreement, Lien.  Contract, Contingent fee agreement, Construction of contract.  Lien.  Practice, Civil, Attorney's fees.

    ", + "UrlName": "slip-opinion-details/sunrise-equipment-excavation-inc.-vs.-construction-management-builders-inc", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "March 1, 2024 – September 5, 2024", + "Details": { + "ParentId": "1198bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-594", + "Dates": "March 1, 2024 – September 5, 2024", + "Present": "Rubin, Englander, & D'Angelo, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " \n Civil action commenced in the Superior Court Department on July 18, 2014.\n Following review by this court, 99 Mass. App. Ct. 1113 (2021), a motion to enforce an attorney's lien was heard by William F. Sullivan, J.\n Robert L. Hamer for the plaintiff.\n Joseph K. Curran, Jr., pro se.\n ENGLANDER, J. At issue is whether the plaintiff, Sunrise Equipment", + "Keywords": "Attorney at Law, Contingent fee agreement, Lien. Contract, Contingent fee agreement, Construction of contract. Lien. Practice, Civil, Attorney's fees." + }, + "ActiveDate": "2024-09-05T14:00:00", + "ExpireDate": "2024-12-05T15:00:00", + "Date": "Sep 05, 2024" + }, + { + "Id": "d093bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "CAMILA DAVALOS & others[1] vs. BAY WATCH, INC.[2]", + "Context": "

    Social Media.  Internet.  Libel and Slander.  Privacy.  Limitations, Statute of.  Practice, Civil, Statute of limitations.

    ", + "UrlName": "slip-opinion-details/camila-davalos-others-1-vs.-bay-watch-inc.-2", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "April 3, 2024 - September 4, 2024", + "Details": { + "ParentId": "d093bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13534", + "Dates": "April 3, 2024 - September 4, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " \n Certification of a question of law to the Supreme Judicial Court by the United States District Court for the District of Massachusetts.\n John V. Golaszewski, of New York (Paul Sullivan also present) for the plaintiffs.\n Christopher A. Monson for the defendant.\n KAFKER, J. The plaintiffs in this case, a group of professional models, allege that the defendant improperly used", + "Keywords": "Social Media. Internet. Libel and Slander. Privacy. Limitations, Statute of. Practice, Civil, Statute of limitations." + }, + "ActiveDate": "2024-09-04T14:00:00", + "ExpireDate": "2024-12-04T15:00:00", + "Date": "Sep 04, 2024" + }, + { + "Id": "8187bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. RAYMOND GAINES", + "Context": "Homicide.  Evidence, Identification, Disclosure of evidence, Exculpatory.  Identification.  Practice, Criminal, Postconviction relief, Disclosure of evidence, Affidavit, New trial, Capital case.  Police, Records", + "UrlName": "slip-opinion-details/commonwealth-vs.-raymond-gaines", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "March 4, 2024 - August 29, 2024", + "Details": { + "ParentId": "8187bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13446", + "Dates": "March 4, 2024 - August 29, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the Superior Court on May 16, 1975.\n Following review by this court, 374 Mass. 577 (1978), a motion for a new trial, filed on November 30, 2021, was heard by Debra A. Squires-Lee, J.\n A request for leave to appeal was allowed by Wendlandt, J., in the Supreme", + "Keywords": "Homicide. Evidence, Identification, Disclosure of evidence, Exculpatory. Identification. Practice, Criminal, Postconviction relief, Disclosure of evidence, Affidavit, New trial, Capital case. Police, Records" + }, + "ActiveDate": "2024-08-29T14:00:00", + "ExpireDate": "2024-11-29T15:00:00", + "Date": "Aug 29, 2024" + }, + { + "Id": "a187bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. SCOTT McCAFFREY", + "Context": "Rape.  Indecent Assault and Battery.  Practice, Criminal, Amendment of indictment or complaint, Indictment.  Evidence, First complaint, Prior consistent statement, Prior misconduct.  Practice, Criminal, Instructions to jury, Argument by prosecutor.  Witness, Credibility.", + "UrlName": "slip-opinion-details/commonwealth-vs.-scott-mccaffrey", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "December 14, 2023 - August 29, 2024", + "Details": { + "ParentId": "a187bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-20", + "Dates": "December 14, 2023 - August 29, 2024", + "Present": "Hand, Hershfang, & Brennan, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the Superior Court Department on June 29, 2020.\n A motion to amend indictments was heard by Susan E. Sullivan, J., and the cases were tried before Brian A. Davis, J.\n Emma Quinn-Judge (Jennifer M. Herrmann also present) for the", + "Keywords": "Rape. Indecent Assault and Battery. Practice, Criminal, Amendment of indictment or complaint, Indictment. Evidence, First complaint, Prior consistent statement, Prior misconduct. Practice, Criminal, Instructions to jury, Argument by prosecutor. Witness, Credibility." + }, + "ActiveDate": "2024-08-29T14:00:00", + "ExpireDate": "2024-08-29T14:00:00", + "Date": "Aug 29, 2024" + }, + { + "Id": "b787bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "JOHN B. BARRANCO vs. CONTRIBUTORY RETIREMENT APPEAL BOARD & another[1]", + "Context": "Public Employment, Retirement.  Retirement.  Pension.  Teachers' Retirement Board.  Municipal Corporations, Retirement board, Pensions.  Contributory Retirement Appeal Board.  School and School Committee, Retirement benefits.  Administrative Law, Agency's authority.  Notice.  Due Process of Law, Administrative hearing.  Practice, Civil, Judgment on the pleadings", + "UrlName": "slip-opinion-details/john-b.-barranco-vs.-contributory-retirement-appeal-board-another-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "May 8, 2024 - August 29, 2024", + "Details": { + "ParentId": "b787bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-217", + "Dates": "May 8, 2024 - August 29, 2024", + "Present": "Meade, Blake, & Brennan, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior Court Department on February 3, 2020.\n The case was heard by Christine M. Roach, J., on motions for judgment on the pleadings.\n Meredith G. Fierro for the plaintiff.\n Ashley E. Freeman", + "Keywords": "Public Employment, Retirement. Retirement. Pension. Teachers' Retirement Board. Municipal Corporations, Retirement board, Pensions. Contributory Retirement Appeal Board. School and School Committee, Retirement benefits. Administrative Law, Agency's authority. Notice. Due Process of Law, Administrative hearing. Practice, Civil, Judgment on the pleadings" + }, + "ActiveDate": "2024-08-29T14:00:00", + "ExpireDate": "2024-08-29T14:00:00", + "Date": "Aug 29, 2024" + }, + { + "Id": "7383bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH v. JUSTICE GILKES", + "Context": "DECISION AND ORDER DENYING DEFENDANT’S MOTION TO DISMISS INDICTMENT 003", + "UrlName": "slip-opinion-details/commonwealth-v.-justice-gilkes", + "SectionName": "Superior Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "August 21, 2024", + "Details": { + "ParentId": "7383bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "2181CR00484", + "Dates": "August 21, 2024", + "Present": "Kenneth W. Salinger", + "County": "MIDDLESEX", + "Opinion": null, + "ShortOpinion": "Justice Gilkes has been indicted for unlawful possession of a firearm, unlawful possession of a loaded firearm, discharging a firearm within 500 feet of a building, and violating G.L. c. 269, § 11C, by removing a firearm’s serial number or by knowingly receiving a firearm with a defaced serial number.\nMr. Gilkes has moved to dismiss the last of these indictments. He contends that the Massachusetts statute making it a crime to deface a firearm’s serial number or knowingly receive a", + "Keywords": "DECISION AND ORDER DENYING DEFENDANT’S MOTION TO DISMISS INDICTMENT 003" + }, + "ActiveDate": "2024-08-28T14:00:00", + "ExpireDate": "2024-11-28T15:00:00", + "Date": "Aug 28, 2024" + }, + { + "Id": "8183bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "GIUL, LLC v. SHENGHUO MEDICAL, LLC, D/B/A K2 MEDICAL; MICHAEL J. ANTONOPLOS, RICHARD P. BLUMBERG, MARK L. FAUPEL, AND MARK S. PEARLSTEIN", + "Context": "FINDINGS AND CONCLUSIONS AFTER A BENCH TRIAL", + "UrlName": "slip-opinion-details/giul-llc-v.-shenghuo-medical-llc-d-b-a-k2-medical-michael-j.-antonoplos-richard-p.-blumberg-mark-l.-faupel-and-mark-s.-pearlstein", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "August 16, 2024", + "Details": { + "ParentId": "8183bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "1984CV02862-BLS2", + "Dates": "August 16, 2024", + "Present": "Kenneth W. Salinger", + "County": "SUFFOLK", + "Opinion": null, + "ShortOpinion": "GIUL, LLC, contends that it was duped into making a bad investment in Shenghuo Medical, LLC, with the understanding that Shenghuo would use the money invested by GIUL to help fund Shenghuo’s own investment in Guided Therapeutics, Inc. (“GTI”). Some of GIUL’s claims were dismissed. Others were resolved in favor of defendants Shenghuo, Michael Antonoplos, Richard Blumberg, Mark Faupel, and Mark Pearlstein on summary judgment.\nThe Court recently tried GIUL’s remaining", + "Keywords": "FINDINGS AND CONCLUSIONS AFTER A BENCH TRIAL" + }, + "ActiveDate": "2024-08-28T14:00:00", + "ExpireDate": "2024-11-28T15:00:00", + "Date": "Aug 28, 2024" + }, + { + "Id": "b27fbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. DAVID E. CANJURA", + "Context": "Constitutional Law, Right to bear arms.  Evidence, Knife.  Practice, Criminal, Dismissal.  Words, \"Arms,\" \"Common use,\" \"Dangerous and unusual weapons.\"", + "UrlName": "slip-opinion-details/commonwealth-vs.-david-e.-canjura", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "December 4, 2023 - August 27, 2024", + "Details": { + "ParentId": "b27fbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13432", + "Dates": "December 4, 2023 - August 27, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the Central Division of the Boston Municipal Court Department on July 6, 2021.\n A motion to dismiss was heard by James M. Stanton, J., and a conditional plea was accepted by him.\n The Supreme Judicial Court granted an application for direct appellate", + "Keywords": "Constitutional Law, Right to bear arms. Evidence, Knife. Practice, Criminal, Dismissal. Words, \"Arms,\" \"Common use,\" \"Dangerous and unusual weapons.\"" + }, + "ActiveDate": "2024-08-27T14:00:00", + "ExpireDate": "2024-11-27T15:00:00", + "Date": "Aug 27, 2024" + }, + { + "Id": "0580bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "BOSTON TEACHERS UNION, LOCAL 66, AMERICAN FEDERATION OF TEACHERS, AFL-CIO vs. SCHOOL COMMITTEE OF BOSTON", + "Context": "Arbitration, School committee, Confirmation of award, Judicial review.  School and School Committee, Arbitration, Collective bargaining.  Statute, Construction.  Practice, Civil, Motion to dismiss, Judgment on the pleadings", + "UrlName": "slip-opinion-details/boston-teachers-union-local-66-american-federation-of-teachers-afl-cio-vs.-school-committee-of-boston", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "March 6, 2024 - August 27, 2024", + "Details": { + "ParentId": "0580bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13491", + "Dates": "March 6, 2024 - August 27, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior Court Department on March 2, 2022.\n Motions to dismiss and for judgment on the pleadings were heard by Catherine H. Ham, J.\n The Supreme Judicial Court on its own initiative transferred the case from the Appeals", + "Keywords": "Arbitration, School committee, Confirmation of award, Judicial review. School and School Committee, Arbitration, Collective bargaining. Statute, Construction. Practice, Civil, Motion to dismiss, Judgment on the pleadings" + }, + "ActiveDate": "2024-08-27T14:00:00", + "ExpireDate": "2024-11-27T15:00:00", + "Date": "Aug 27, 2024" + }, + { + "Id": "2c80bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "S.S. vs. S.S.", + "Context": "

    Divorce and Separation, Alimony, Child support, Division of property.  Mental Health.

    ", + "UrlName": "slip-opinion-details/s.s.-vs.-s.s", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "June 3, 2024 - August 27, 2024", + "Details": { + "ParentId": "2c80bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1022", + "Dates": "June 3, 2024 - August 27, 2024", + "Present": "Milkey, Shin, & Englander, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " \n Complaint for divorce filed in the Middlesex Division of the Probate and Family Court Department on May 20, 2021.\n The case was heard by Christine D. Anthony, J.\n Maureen E. Booth (Melanie D. Foxx also present) for the husband.\n Marcus L. Scott for the wife.\n SHIN, J. A judge of the Probate and Family Court issued a second amended judgment of", + "Keywords": "Divorce and Separation, Alimony, Child support, Division of property. Mental Health." + }, + "ActiveDate": "2024-08-27T14:00:00", + "ExpireDate": "2024-11-27T15:00:00", + "Date": "Aug 27, 2024" + }, + { + "Id": "b977bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. MARK TOMAS REGAN", + "Context": "

    Homicide.  Firearms. \nEvidence, Firearm, Fingerprints, Expert opinion.  Witness, Expert.  Constitutional Law, Search and seizure.  Search and Seizure, Emergency, Warrant.  Practice, Criminal, Instructions to jury,\nMotion to suppress.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-mark-tomas-regan", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "May 6, 2024 – August 23, 2024", + "Details": { + "ParentId": "b977bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "21-P-1129", + "Dates": "May 6, 2024 – August 23, 2024", + "Present": "Milkey, Hodgens, & Toone, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the\nSuperior Court Department on May 15, 2014. \n A pretrial motion to suppress evidence was\nheard by Mary K. Ames, J., and the cases were tried before Jeffrey A. Locke, J.\n ", + "Keywords": "Homicide. Firearms. Evidence, Firearm, Fingerprints, Expert opinion. Witness, Expert. Constitutional Law, Search and seizure. Search and Seizure, Emergency, Warrant. Practice, Criminal, Instructions to jury, Motion to suppress." + }, + "ActiveDate": "2024-08-23T14:00:00", + "ExpireDate": "2024-11-23T15:00:00", + "Date": "Aug 23, 2024" + }, + { + "Id": "e474bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "ERIC PORTER vs. A JUSTICE OF THE DISTRICT COURT DEPARTMENT", + "Context": "

    Constitutional\nLaw, Recall of retired judges.  Practice,\nCivil, Motion to dismiss.

    ", + "UrlName": "slip-opinion-details/eric-porter-vs.-a-justice-of-the-district-court-department", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "August 22, 2024", + "Details": { + "ParentId": "e474bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13553", + "Dates": "August 22, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " The petitioner, Eric Porter, acting pro\nse, filed a petition in the nature of quo warranto in the county court,\npursuant to G. L. c. 249, § 6. \nThe petition sought to contest the constitutionality of the respondent's\nauthority to serve as a justice in the District Court after the age of seventy\nunder G. L. c. 32, § 65G (recall statute). The respondent filed a motion to", + "Keywords": "Constitutional Law, Recall of retired judges. Practice, Civil, Motion to dismiss." + }, + "ActiveDate": "2024-08-22T14:00:00", + "ExpireDate": "2024-11-22T15:00:00", + "Date": "Aug 22, 2024" + }, + { + "Id": "f674bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "TOYSHA LONDON DARBY vs. COMMONWEALTH & others[1]", + "Context": "

    Supreme Judicial\nCourt, Superintendence of inferior courts.

    ", + "UrlName": "slip-opinion-details/toysha-london-darby-vs.-commonwealth-others-1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "August 22, 2024", + "Details": { + "ParentId": "f674bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13593", + "Dates": "August 22, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " The petitioner, Toysha London Darby, filed\na petition in the county court, pursuant to G. L. c. 211, § 3,\nrequesting various forms of relief, including the issuance of a writ of\nmandamus, a writ of replevin, and emergency injunctive relief. The petition was denied by a single justice\nof this court, and Darby appealed. After\nher appeal was entered in this court, Darby filed a motion", + "Keywords": "Supreme Judicial Court, Superintendence of inferior courts." + }, + "ActiveDate": "2024-08-22T14:00:00", + "ExpireDate": "2024-11-22T15:00:00", + "Date": "Aug 22, 2024" + }, + { + "Id": "0875bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "MITTAS EARLY LEARNING, LLC vs. MDC PROPERTIES - WESTFORD RD, LLC, & another[1]", + "Context": "

    Contract, Lease\nof real estate, Construction of contract, Damages, Performance and breach,\nProvision for liquidated damages. \nDamages, Breach of contract, Attorney's fees, Liquidated damages.  Landlord and Tenant, Lease as contract.  Real Property, Lease.  Practice, Civil, Amendment, Attorney's fees,\nSummary judgment.

    ", + "UrlName": "slip-opinion-details/mittas-early-learning-llc-vs.-mdc-properties---westford-rd-llc-another-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "March 5, 2024 – August 22, 2024", + "Details": { + "ParentId": "0875bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-471", + "Dates": "March 5, 2024 – August 22, 2024", + "Present": "Green, C.J., Henry, & Ditkoff, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior\nCourt Department on July 20, 2018. \n Motions for summary judgment were heard by\nDiane C. Freniere, J., and the case was heard by Camille F. Sarrouf, Jr., J. \n Scott P. Fink", + "Keywords": "Contract, Lease of real estate, Construction of contract, Damages, Performance and breach, Provision for liquidated damages. Damages, Breach of contract, Attorney's fees, Liquidated damages. Landlord and Tenant, Lease as contract. Real Property, Lease. Practice, Civil, Amendment, Attorney's fees, Summary judgment." + }, + "ActiveDate": "2024-08-22T14:00:00", + "ExpireDate": "2024-11-22T15:00:00", + "Date": "Aug 22, 2024" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/massappct_example.compare.json b/tests/examples/opinions/united_states/massappct_example.compare.json index 779d885e5..343d739a5 100644 --- a/tests/examples/opinions/united_states/massappct_example.compare.json +++ b/tests/examples/opinions/united_states/massappct_example.compare.json @@ -1,122 +1,354 @@ [ { - "case_dates": "2023-01-27", - "case_names": "Quilla Q. v. Matt M.", - "download_urls": "/files/documents/2023/01/27/a22P0255.pdf", + "case_dates": "2024-11-13", + "case_names": "KATHLEEN GEEZIL, Personal Representative v. WHITE CLIFFS CONDOMINIUM FOUR ASSOCIATION & Others", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/kathleen-geezil-personal-representative-1-vs.-white-cliffs-condominium-four-association-others-2", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC 22-P-255", + "docket_numbers": "23-P-1103", + "judges": "Massing, Hand, & Smyth", "case_name_shorts": "" }, { - "case_dates": "2023-01-27", - "case_names": "Commonwealth v. Minon", - "download_urls": "/files/documents/2023/01/27/a21P1000.pdf", + "case_dates": "2024-11-12", + "case_names": "QUINTEASHA DOSSANTOS v. BETH ISRAEL DEACONESS HOSPITAL-MILTON, INC., & Others", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/quinteasha-dossantos-vs.-beth-israel-deaconess-hospital-milton-inc.-others-1", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC 21-P-1000", - "case_name_shorts": "Commonwealth" + "docket_numbers": "22-P-1061", + "judges": "Rubin, Singh, & Hershfang", + "case_name_shorts": "" }, { - "case_dates": "2023-01-25", - "case_names": "Commonwealth v. Brown", - "download_urls": "/files/documents/2023/01/25/m21P0533.pdf", + "case_dates": "2024-11-08", + "case_names": "Henry Komosa v. Board of Assessors of Montague", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/henry-komosa-vs.-board-of-assessors-of-montague", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC 21-P-533", - "case_name_shorts": "Commonwealth" + "docket_numbers": "23-P-454", + "judges": "Vuono, Rubin, & Walsh", + "case_name_shorts": "" }, { - "case_dates": "2023-01-23", - "case_names": "Kubic v. Audette", - "download_urls": "/files/documents/2023/01/23/s21P1058.pdf", + "case_dates": "2024-11-06", + "case_names": "Commonwealth v. Michael Shehadi", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-michael-shehadi", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC 21-P-1058", - "case_name_shorts": "Kubic" + "docket_numbers": "22-P-969", + "judges": "Green, C.J., Walsh, & Smyth", + "case_name_shorts": "" }, { - "case_dates": "2023-01-20", - "case_names": "Gorelick v. Star Markets Company, Inc.", - "download_urls": "/files/documents/2023/01/20/p22P0002.pdf", + "case_dates": "2024-11-06", + "case_names": "Commonwealth v. Jarrod F. St. Martin", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-jarrod-f.-st.-martin", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC 22-P-2", - "case_name_shorts": "Gorelick" + "docket_numbers": "23-P-1380", + "judges": "Vuono, Neyman, & D'Angelo", + "case_name_shorts": "" }, { - "case_dates": "2023-01-20", - "case_names": "Commonwealth v. Cordeiro", - "download_urls": "/files/documents/2023/01/20/p22P0065.pdf", + "case_dates": "2024-11-05", + "case_names": "Commonwealth v. Jose Encarnacion", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-jose-encarnacion", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC 22-P-65", - "case_name_shorts": "Commonwealth" + "docket_numbers": "23-P-1460", + "judges": "Henry, Grant, & D'Angelo", + "case_name_shorts": "" }, { - "case_dates": "2023-01-19", - "case_names": "Commonwealth v. Johnson", - "download_urls": "/files/documents/2023/01/19/g21P0769.pdf", + "case_dates": "2024-10-30", + "case_names": "Commonwealth v. Bryan M. Ewan", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-bryan-m.-ewan", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC 21-P-769", - "case_name_shorts": "Commonwealth" + "docket_numbers": "23-P-1258", + "judges": "Singh, Hand, & D'Angelo", + "case_name_shorts": "" }, { - "case_dates": "2023-01-18", - "case_names": "M.K. v. D.B.", - "download_urls": "/files/documents/2023/01/18/y22P0141.pdf", + "case_dates": "2024-10-28", + "case_names": "DAVID A. DECKELBAUM, Trustee v. ZONING BOARD OF APPEALS OF PROVINCETOWN & Others", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/david-a.-deckelbaum-trustee-1-vs.-zoning-board-of-appeals-of-provincetown-others-2", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC 22-P-141", - "case_name_shorts": "M.K." + "docket_numbers": "23-P-443", + "judges": "Massing, Singh, & Grant", + "case_name_shorts": "" }, { - "case_dates": "2023-01-18", - "case_names": "Commonwealth v. Lugo", - "download_urls": "/files/documents/2023/01/18/y21P0881.pdf", + "case_dates": "2024-10-28", + "case_names": "Commonwealth v. Dejuan Mitchell.", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-dejuan-mitchell.-1", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC 21-P-881 & 21-P-882", - "case_name_shorts": "Commonwealth" + "docket_numbers": "23-P-585", + "judges": "Sacks, Ditkoff, & Toone", + "case_name_shorts": "" }, { - "case_dates": "2023-01-17", - "case_names": "Commonwealth v. Jacques", - "download_urls": "/files/documents/2023/01/17/k20P1100.pdf", + "case_dates": "2024-10-25", + "case_names": "Pauline Chaloff v. Westwood Public Schools", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/pauline-chaloff-vs.-westwood-public-schools", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC 20-P-1100", - "case_name_shorts": "Commonwealth" + "docket_numbers": "23-P-693", + "judges": "Meade, Englander, & Hodgens", + "case_name_shorts": "" }, { - "case_dates": "2023-01-13", - "case_names": "Commonwealth v. Testa", - "download_urls": "/files/documents/2023/01/13/b21P0244.pdf", + "case_dates": "2024-10-24", + "case_names": "DOLORES M. BROWN, Individually and as Personal Representative v. SAINT VINCENT RADIOLOGICAL ASSOCIATES, INC.", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/dolores-m.-brown-individually-and-as-personal-representative-1-vs.-saint-vincent-radiological-associates-inc", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC 21-P-244", - "case_name_shorts": "Commonwealth" + "docket_numbers": "23-P-771", + "judges": "Massing, Shin, & D'Angelo", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-21", + "case_names": "TOWN OF CONCORD v. NEIL E. RASMUSSEN & Others.", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/town-of-concord-vs.-neil-e.-rasmussen-others.-1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-310", + "judges": "Blake, Englander, & D'Angelo", + "case_name_shorts": "" }, { - "case_dates": "2023-01-12", - "case_names": "Cunningham v. Thomas", - "download_urls": "/files/documents/2023/01/12/m21P0956.pdf", + "case_dates": "2024-10-21", + "case_names": "Commonwealth v. Michael A. Hand", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-michael-a.-hand", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "AC 21-P-956", - "case_name_shorts": "Cunningham" + "docket_numbers": "22-P-1132", + "judges": "Neyman, Henry, & Ditkoff", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-10", + "case_names": "Commonwealth v. Dejan Belnavis", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-dejan-belnavis", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-807", + "judges": "Ditkoff, Englander, & Smyth", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-10", + "case_names": "Commonwealth v. Alexander Soto", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-alexander-soto1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-1111", + "judges": "Blake, Neyman, & Sacks", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-09", + "case_names": "Prism Group, Inc. v. Slingshot Technologies Corporation", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/prism-group-inc.-vs.-slingshot-technologies-corporation", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-P-1191", + "judges": "Meade, Englander, & Hodgens", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-07", + "case_names": "STEPHEN O'MALLEY & Another v. CONTRIBUTORY RETIREMENT APPEAL BOARD & Another", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/stephen-o'malley-another-1-vs.-contributory-retirement-appeal-board-another-2", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-1147", + "judges": "Blake, Neyman, & Sacks", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-07", + "case_names": "Commonwealth v. Marcus D. Anding", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-marcus-d.-anding", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-646", + "judges": "Neyman, Hershfang, & Hodgens", + "case_name_shorts": "" + }, + { + "case_dates": "2024-10-03", + "case_names": "WILLIAM J. DOYLE, Personal Representative, & Others v. CITY OF QUINCY & Others", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/william-j.-doyle-personal-representative-1-others-2-vs.-city-of-quincy-others-3", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-574", + "judges": "Neyman, Brennan, & Toone", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-30", + "case_names": "In THE MATTER OF THE ESTATE OF WILLIAM F. McLOUGHLIN.", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/in-the-matter-of-the-estate-of-william-f.-mcloughlin.-1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-770", + "judges": "Green, C.J., Henry, & Ditkoff", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-30", + "case_names": "Commonwealth v. Michael W. Tyson", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-michael-w.-tyson", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-229", + "judges": "Vuono, Massing, & Toone", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-23", + "case_names": "Commonwealth v. Erin Kipeum Lee", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-erin-kipeum-lee", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-496", + "judges": "Hand, Hershfang, & Brennan", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-20", + "case_names": "Adoption of Arianne", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/adoption-of-arianne-1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-979", + "judges": "Ditkoff, Englander, & Smyth", + "case_name_shorts": "Adoption of Arianne" + }, + { + "case_dates": "2024-09-16", + "case_names": "NAHANT PRESERVATION TRUST, INC., & Others v. NORTHEASTERN UNIVERSITY (And a Consolidated Case)", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/nahant-preservation-trust-inc.-others-1-vs.-northeastern-university-(and-a-consolidated-case-2-)", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-482", + "judges": "Vuono, Massing, & Toone", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-11", + "case_names": "MICHAEL MEEHAN v. LAZER SPOT, INC., & Another.", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/michael-meehan-vs.-lazer-spot-inc.-another.-1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-180", + "judges": "Green, C.J., Neyman, & Englander", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-10", + "case_names": "Commonwealth v. Angel Pena-Lara", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-angel-pena-lara", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-P-592", + "judges": "Rubin, Englander, & D'Angelo", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-05", + "case_names": "Sunrise Equipment & Excavation, Inc. v. Construction Management & Builders, Inc.", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/sunrise-equipment-excavation-inc.-vs.-construction-management-builders-inc", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-594", + "judges": "Rubin, Englander, & D'Angelo", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-29", + "case_names": "JOHN B. BARRANCO v. CONTRIBUTORY RETIREMENT APPEAL BOARD & Another", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/john-b.-barranco-vs.-contributory-retirement-appeal-board-another-1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-217", + "judges": "Meade, Blake, & Brennan", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-29", + "case_names": "COMMONWEALTH v. SCOTT McCAFFREY", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-scott-mccaffrey", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-20", + "judges": "Hand, Hershfang, & Brennan", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-27", + "case_names": "S.S. v. S.S.", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/s.s.-vs.-s.s", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-1022", + "judges": "Milkey, Shin, & Englander", + "case_name_shorts": "S.S." + }, + { + "case_dates": "2024-08-23", + "case_names": "Commonwealth v. Mark Tomas Regan", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-mark-tomas-regan", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-P-1129", + "judges": "Milkey, Hodgens, & Toone", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-22", + "case_names": "MITTAS EARLY LEARNING, LLC v. MDC PROPERTIES - WESTFORD RD, LLC, & Another", + "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/mittas-early-learning-llc-vs.-mdc-properties---westford-rd-llc-another-1", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-P-471", + "judges": "Green, C.J., Henry, & Ditkoff", + "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/massappct_example.html b/tests/examples/opinions/united_states/massappct_example.html deleted file mode 100644 index a120bc872..000000000 --- a/tests/examples/opinions/united_states/massappct_example.html +++ /dev/null @@ -1,1751 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - New opinions | Mass.gov - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    - -
      -
    • - -
      -

      Official websites use .mass.gov

      -

      - A .mass.gov website belongs to an official government organization in Massachusetts. -

      -
    • -
    • - -
      -

      Secure websites use HTTPS certificate

      -

      - A lock icon - - or https:// means you’ve safely connected to the official website. Share sensitive information only on official, secure websites. -

      -
      -
    • -
    -
    - -
    - - -
    - -
    - - -
    - -
    - -
    -
    - -
    -
    - -
    - -
    - -
    -
    - -
    -
    - -

    New opinions -

    -
    See the most recent two weeks of published opinions and unpublished decisions of the Supreme Judicial Court and the Appeals Court. -
    -
    -
    -
    -
    -
    - -
    -

    - Notice of today's published opinions is provided here and on Twitter - - - @MassReports - -  at 8 a.m. ET. Today's published opinions and unpublished decisions will be available on this page after 10 a.m. The full text of unpublished decisions is available via links in the lists of unpublished decisions. -

    - -

    - Past published opinions are available through various - unofficial collections - . Appeals Court unpublished summary dispositions are available at  - 128archive.com - . -

    - -
    - -
    - -

    Today's published opinions & unpublished decisions: January 27, 2023 - -

    - - -
    - -
    - -

    Recent published opinions and lists of unpublished decisions - -

    - -
    - - -
    -
    - -
    - -

    Reporting errors - -

    - -
    -

    The published opinions posted here are subject to formal revision and are superseded by the advance sheets and bound volumes of the Official Reports. If you find a typographical error or other formal error, please notify: 

    - -

    - Reporter of Decisions, Supreme Judicial Court -
    - - John Adams Courthouse -
    - - 1 Pemberton Square, Suite 2500 -
    - - Boston, MA 02108-1750 -
    - - (617) 557-1030 -
    - SJCReporter@sjc.state.ma.us -

    - -
    -
    - -
    - -

    Register for e-mail notifications of slip opinions - -

    - -
    -

    - If you wish to receive notifications of published opinions, - register here for free - . You can select from a variety of topics to monitor or  choose "All"  to be notified of all opinions being released (do not select every topic listed unless you want multiple e-mails concerning each opinion). -

    - -
      -
    • Civil
    • -
    • Criminal
    • -
    • Business and Contracts
    • -
    • Civil Procedure
    • -
    • Insurance and Workers' Compensation
    • -
    • Labor and Employment
    • -
    • Public and Administrative/Municipal
    • -
    • Real Estate
    • -
    • Torts
    • -
    • Trusts and Estates/Family
    • -
    -

    Each day that an opinion is released concerning one or more of your selected topics, you will receive an e-mail advising you about that case. The e-mail will provide a link to the slip opinion.  You may sign up for as many topics as you wish, with separate e-mails sent for each topic.

    - -

    - - Register for e-mail notification of published opinions - -

    - -
    -
    - -
    - -
    -
    - -
    -

    - Help Us Improve Mass.gov - with your feedback -

    -
    - - -
    -
    - - - - - - - - -
    -
    - -
    - -
    - - - - - - - - - - - - -
    - -
    - -
    -
    - -
    - - -
    - Feedback -
    - -
    - - - - - - - - diff --git a/tests/examples/opinions/united_states/massappct_example.json b/tests/examples/opinions/united_states/massappct_example.json new file mode 100644 index 000000000..fd8d286c8 --- /dev/null +++ b/tests/examples/opinions/united_states/massappct_example.json @@ -0,0 +1,1682 @@ +[ + { + "Id": "1b88bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "ROBERT M. JOOST vs. BOARD OF BAR EXAMINERS", + "Context": "Attorney at Law, Admission to practice, Educational requirements.  Board of Bar Examiners.  Supreme Judicial Court, Membership in the bar.", + "UrlName": "slip-opinion-details/robert-m.-joost-vs.-board-of-bar-examiners", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "November 19, 2024", + "Details": { + "ParentId": "1b88bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13587", + "Dates": "November 19, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " The petitioner, Robert M. Joost, appeals from the judgment of a single justice of this court denying without a hearing his petition to waive certain educational requirements imposed by S.J.C. Rule 3:01, as appearing in 478 Mass. 1301 (2018), for admission to the bar of the Commonwealth. Specifically, Joost seeks waiver of the requirements under S.J.C. Rule 3:01 that petitioners hold a bachelor's degree or the equivalent and a juris", + "Keywords": "Attorney at Law, Admission to practice, Educational requirements. Board of Bar Examiners. Supreme Judicial Court, Membership in the bar." + }, + "ActiveDate": "2024-11-19T15:00:00", + "ExpireDate": "2024-11-19T15:00:00", + "Date": "Nov 19, 2024" + }, + { + "Id": "5579bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "TRUSTEES OF BOSTON UNIVERSITY & others[1] vs. CLERK-MAGISTRATE OF THE CAMBRIDGE DIVISION OF THE DISTRICT COURT DEPARTMENT & others [2]", + "Context": "Supreme Judicial Court, Superintendence of inferior courts.  District Court, Clerk-Magistrate.  Practice, Criminal, Show cause hearing.  Probable Cause.  Public Records.  Privacy.  Due Process of Law, Notice, Hearing.  Notice.", + "UrlName": "slip-opinion-details/trustees-of-boston-university-others-1-vs.-clerk-magistrate-of-the-cambridge-division-of-the-district-court-department-others-2", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "September 9, 2024-November 14, 2024", + "Details": { + "ParentId": "5579bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13551", + "Dates": "September 9, 2024-November 14, 2024", + "Present": "Budd, C.J., Kafker, Wendlandt, & Wolohojian, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Supreme Judicial Court for the county of Suffolk on January 12, 2024.\n The case was heard by Gaziano, J.\n Jeffrey J. Pyle for the petitioners.\n Benjamin Urbelis (Janice Bassil, Michael", + "Keywords": "Supreme Judicial Court, Superintendence of inferior courts. District Court, Clerk-Magistrate. Practice, Criminal, Show cause hearing. Probable Cause. Public Records. Privacy. Due Process of Law, Notice, Hearing. Notice." + }, + "ActiveDate": "2024-11-14T15:00:00", + "ExpireDate": "2025-02-14T15:00:00", + "Date": "Nov 14, 2024" + }, + { + "Id": "4475bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "KATHLEEN GEEZIL, personal representative,[1] vs. WHITE CLIFFS CONDOMINIUM FOUR ASSOCIATION & others[2]", + "Context": "Anti-Discrimination Law, Handicap, Housing.  Real Property, Condominium.  Massachusetts Commission Against Discrimination.  Statute, Construction.  Administrative Law, Agency's interpretation of statute.  Practice, Civil, Summary judgment.", + "UrlName": "slip-opinion-details/kathleen-geezil-personal-representative-1-vs.-white-cliffs-condominium-four-association-others-2", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "September 4, 2024 - November 13, 2024", + "Details": { + "ParentId": "4475bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1103", + "Dates": "September 4, 2024 - November 13, 2024", + "Present": "Massing, Hand, & Smyth, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior Court Department on January 2, 2019. \n The case was heard by Thomas F. McGuire, Jr., J., on motions for summary judgment. \n Walter H. Jacobs for the plaintiff.\n Dillon M. Knight for", + "Keywords": "Anti-Discrimination Law, Handicap, Housing. Real Property, Condominium. Massachusetts Commission Against Discrimination. Statute, Construction. Administrative Law, Agency's interpretation of statute. Practice, Civil, Summary judgment." + }, + "ActiveDate": "2024-11-13T15:00:00", + "ExpireDate": "2025-02-13T15:00:00", + "Date": "Nov 13, 2024" + }, + { + "Id": "bb71bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "QUINTEASHA DOSSANTOS vs. BETH ISRAEL DEACONESS HOSPITAL-MILTON, INC., & others[1]", + "Context": "Medical Malpractice, Complaint, Expert opinion, Hospital, Standard of care, Tribunal.  Impoundment.  Uniform Rules on Impoundment Procedure.  Evidence, Determination of medical malpractice tribunal, Medical record.  Negligence, Medical malpractice, Hospital, Standard of care.  Practice, Civil, Impoundment order, Dismissal.", + "UrlName": "slip-opinion-details/quinteasha-dossantos-vs.-beth-israel-deaconess-hospital-milton-inc.-others-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "October 12, 2023 - November 12, 2024", + "Details": { + "ParentId": "bb71bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "22-P-1061", + "Dates": "October 12, 2023 - November 12, 2024", + "Present": "Rubin, Singh, & Hershfang, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior Court Department on December 24, 2019. \n A motion to impound was heard by Robert B. Gordon, J.; a motion to dismiss was considered by Debra A. Squires-Lee, J., and entry of final judgment was ordered by her.\n Krzysztof G. Sobczak for the", + "Keywords": "Medical Malpractice, Complaint, Expert opinion, Hospital, Standard of care, Tribunal. Impoundment. Uniform Rules on Impoundment Procedure. Evidence, Determination of medical malpractice tribunal, Medical record. Negligence, Medical malpractice, Hospital, Standard of care. Practice, Civil, Impoundment order, Dismissal." + }, + "ActiveDate": "2024-11-12T15:00:00", + "ExpireDate": "2025-02-12T15:00:00", + "Date": "Nov 12, 2024" + }, + { + "Id": "966bbcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "HENRY KOMOSA vs. BOARD OF ASSESSORS OF MONTAGUE", + "Context": "

    Real Property,\nAgricultural or horticultural use, Tax. \nTaxation, Assessors, Appellate Tax Board:  appeal to Appeals Court, Real estate\ntax:  classification of property.  Administrative Law, Agency's interpretation\nof statute.  Statute, Construction.

    ", + "UrlName": "slip-opinion-details/henry-komosa-vs.-board-of-assessors-of-montague", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "April 17, 2024 - November 8, 2024", + "Details": { + "ParentId": "966bbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-454", + "Dates": "April 17, 2024 - November 8, 2024", + "Present": "Vuono, Rubin, & Walsh, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Appeal from a decision of the Appellate\nTax Board. \n J. Mark Dickison for the taxpayer.\n Ellen M. Hutchinson for board of assessors\nof Montague.\nMarriage.  Gift.  Practice, Civil, Retroactivity of judicial holding, Interest.  Retroactivity of Judicial Holding.  Damages, Interest.  Interest.

    ", + "UrlName": "slip-opinion-details/bruce-johnson-vs.-caroline-settino'", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "September 6, 2024 - November 8, 2024", + "Details": { + "ParentId": "b86bbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13555", + "Dates": "September 6, 2024 - November 8, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior Court Department on January 16, 2018.\n The case was heard by Brian S. Glenny, J., and a motion to\nalter or amend the judgment also was heard by him.\n After review by the Appeals Court, 103 Mass. App. Ct. 291 (2023), the Supreme Judicial Court granted leave to obtain further appellate review.\n Stephanie Taverna Siden for the", + "Keywords": "Marriage. Gift. Practice, Civil, Retroactivity of judicial holding, Interest. Retroactivity of Judicial Holding. Damages, Interest. Interest." + }, + "ActiveDate": "2024-11-08T15:00:00", + "ExpireDate": "2025-01-08T15:00:00", + "Date": "Nov 08, 2024" + }, + { + "Id": "5567bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. CARLOS COLINA", + "Context": "

    Homicide.  Evidence, Relevancy and materiality, Prior\nmisconduct, State of mind, Intent, Motive, Argument by prosecutor.  Constitutional Law, Probable cause.  Search and Seizure, Probable cause, Warrant,\nAffidavit, Computer.  Probable\nCause.  Intent.  Practice, Criminal, Warrant, Instructions to\njury, Argument by prosecutor, Motion to suppress, Capital case.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-carlos-colina", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "April 1, 2024 – November 7, 2024", + "Details": { + "ParentId": "5567bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13260", + "Dates": "April 1, 2024 – November 7, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the\nSuperior Court Department on June 3, 2015.\n A pretrial motion to suppress evidence was\nheard by Laurence D. Pierce, J., and the cases were tried before Elizabeth M.\nFahey, J.\nOpen and Gross Lewdness and Lascivious Behavior.  Practice, Criminal, Instructions to jury.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-jarrod-f.-st.-martin", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "September 11, 2024 - November 6, 2024", + "Details": { + "ParentId": "b163bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1380", + "Dates": "September 11, 2024 - November 6, 2024", + "Present": "Vuono, Neyman, & D'Angelo, JJ.", + "County": "Bristol", + "Opinion": null, + "ShortOpinion": " \n Complaint received and sworn to in the Attleboro Division of the District Court Department on February 4, 2020.\n The case was tried before Michele M. Armour, J.\n Charles H. Yelen for the defendant.\n Mary Lee, Assistant District Attorney, for the Commonwealth.\n D'ANGELO, J. The defendant, Jarrod F. St. Martin, was convicted of open and gross", + "Keywords": "Open and Gross Lewdness and Lascivious Behavior. Practice, Criminal, Instructions to jury." + }, + "ActiveDate": "2024-11-06T15:00:00", + "ExpireDate": "2025-02-06T15:00:00", + "Date": "Nov 06, 2024" + }, + { + "Id": "885fbcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. JOSE ENCARNACION", + "Context": "

    Firearms.  License. \nEvidence, Firearm, Hearsay, Admissions and confessions, Voluntariness of\nstatement.  Constitutional Law,\nConfrontation of witnesses, Harmless error, Assistance of counsel,\nVoluntariness of statement.  Error,\nHarmless.  Practice, Criminal, New trial,\nHearsay, Confrontation of witnesses, Harmless error, Instructions to jury,\nAdmissions and confessions, Voluntariness of statement, Assistance of counsel.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-jose-encarnacion", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "May 7, 2024 – November 5, 2024", + "Details": { + "ParentId": "885fbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1460", + "Dates": "May 7, 2024 – November 5, 2024", + "Present": "Henry, Grant, & D'Angelo, JJ.", + "County": "Hampden", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the\nSpringfield Division of the District Court Department on January 9, 2020. \n The case was tried before Patrick S.\nSabbs, J., and a motion for a new trial was heard by him.\n ", + "Keywords": "Firearms. License. Evidence, Firearm, Hearsay, Admissions and confessions, Voluntariness of statement. Constitutional Law, Confrontation of witnesses, Harmless error, Assistance of counsel, Voluntariness of statement. Error, Harmless. Practice, Criminal, New trial, Hearsay, Confrontation of witnesses, Harmless error, Instructions to jury, Admissions and confessions, Voluntariness of statement, Assistance of counsel." + }, + "ActiveDate": "2024-11-05T15:00:00", + "ExpireDate": "2025-02-05T15:00:00", + "Date": "Nov 05, 2024" + }, + { + "Id": "985fbcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "IN THE MATTER OF THE TRUSTS UNDER THE WILL OF HELYN W. KLINE", + "Context": "Trust, Allocation of payments between principal and income, Distribution, Remainder interests, Construction, Trustee's discretion, Trustee's authority.  Devise and Legacy, Remainder interests.  Statute, Construction.  Will, Construction.  Intent.  Practice, Civil, Summary judgment.", + "UrlName": "slip-opinion-details/in-the-matter-of-the-trusts-under-the-will-of-helyn-w.-kline", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "September 9, 2024 - November 5, 2024", + "Details": { + "ParentId": "985fbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13579", + "Dates": "September 9, 2024 - November 5, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, Dewar, & Wolohojian, JJ.", + "County": "Barnstable", + "Opinion": null, + "ShortOpinion": " Petition filed in the Barnstable Division of the Probate and Family Court Department on September 30, 2022.\n The case was heard by Susan Sard Tierney, J., on motions for summary judgment.\n The Supreme Judicial Court on its own initiative transferred the case from the Appeals", + "Keywords": "Trust, Allocation of payments between principal and income, Distribution, Remainder interests, Construction, Trustee's discretion, Trustee's authority. Devise and Legacy, Remainder interests. Statute, Construction. Will, Construction. Intent. Practice, Civil, Summary judgment." + }, + "ActiveDate": "2024-11-05T15:00:00", + "ExpireDate": "2025-02-05T15:00:00", + "Date": "Nov 05, 2024" + }, + { + "Id": "945bbcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "IN THE MATTER OF MICHAEL CERULLI", + "Context": "

    Attorney at Law, Disciplinary proceeding, Public reprimand.  Trial Court, Probation officers.  Board of Bar Overseers.

    ", + "UrlName": "slip-opinion-details/in-the-matter-of-michael-cerulli", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "November", + "ArchiveDate": "November 2024", + "Dates": "November 4, 2024", + "Details": { + "ParentId": "945bbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13571", + "Dates": "November 4, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " \n The respondent, Michael Cerulli, appeals from an order of a single justice of this court publicly reprimanding him for a violation of Mass. R. Prof. C. 8.4 (h), as appearing in 471 Mass. 1483 (2015) (\"any other conduct that adversely reflects on [the lawyer's] fitness to practice law\"). The proceedings arise from the respondent's conduct in the lockup area of the Chelsea Division of the District Court Department (Chelsea District Court). We", + "Keywords": "Attorney at Law, Disciplinary proceeding, Public reprimand. Trial Court, Probation officers. Board of Bar Overseers." + }, + "ActiveDate": "2024-11-04T15:00:00", + "ExpireDate": "2025-02-04T15:00:00", + "Date": "Nov 04, 2024" + }, + { + "Id": "1650bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "BHARANI PADMANABHAN vs. LORETTA COOKE", + "Context": "

    Practice, Civil,\nAction in nature of certiorari.

    ", + "UrlName": "slip-opinion-details/bharani-padmanabhan-vs.-loretta-cooke", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "October 31, 2024", + "Details": { + "ParentId": "1650bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13618", + "Dates": "October 31, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " The petitioner, Bharani Padmanabhan,\nappeals from a judgment of a single justice of the county court denying his\nemergency petition for relief in the nature of certiorari pursuant to\nG. L. c. 249, § 4. We\naffirm.\n In 2017, the petitioner commenced an\naction against the respondent in the", + "Keywords": "Practice, Civil, Action in nature of certiorari." + }, + "ActiveDate": "2024-10-31T14:00:00", + "ExpireDate": "2025-01-31T15:00:00", + "Date": "Oct 31, 2024" + }, + { + "Id": "684cbcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. BRYAN M. EWAN", + "Context": "Firearms.  License.", + "UrlName": "slip-opinion-details/commonwealth-vs.-bryan-m.-ewan", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "July 8, 2024 - October 30, 2024", + "Details": { + "ParentId": "684cbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1258", + "Dates": "July 8, 2024 - October 30, 2024", + "Present": "Singh, Hand, & D'Angelo, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the Wareham Division of the District Court Department on June 22, 2020.\n The case was tried before Edward H. Sharkansky, J., and questions of law were reported by him to the Appeals Court.\n Michael P. Maloney for the", + "Keywords": "Firearms. License." + }, + "ActiveDate": "2024-10-30T14:00:00", + "ExpireDate": "2025-01-30T15:00:00", + "Date": "Oct 30, 2024" + }, + { + "Id": "0343bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "DAVID A. DECKELBAUM, trustee,[1] vs. ZONING BOARD OF APPEALS OF PROVINCETOWN & others [2]", + "Context": "Zoning, Variance, Nonconforming use or structure, By-law.  Estoppel", + "UrlName": "slip-opinion-details/david-a.-deckelbaum-trustee-1-vs.-zoning-board-of-appeals-of-provincetown-others-2", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "March 13, 2024 - October 28, 2024", + "Details": { + "ParentId": "0343bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-443", + "Dates": "March 13, 2024 - October 28, 2024", + "Present": "Massing, Singh, & Grant, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Land Court Department on October 4, 2018.\n The case was heard by Michael D. Vhay, J.\n Alan E. Lipkind (Gregory S. Paonessa also present) for the plaintiff.\n Anthony T. Panebianco for Siobhan", + "Keywords": "Zoning, Variance, Nonconforming use or structure, By-law. Estoppel" + }, + "ActiveDate": "2024-10-28T14:00:00", + "ExpireDate": "2025-01-28T15:00:00", + "Date": "Oct 28, 2024" + }, + { + "Id": "4f43bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. DEJUAN MITCHELL.[1]", + "Context": "

    Firearms.  Motor Vehicle, Seat belt.  Youthful Offender Act.  Search and Seizure, Reasonable suspicion.  Department of Youth Services.  Juvenile Court.  Practice, Criminal, Motion to suppress, Sentence.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-dejuan-mitchell.-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "July 12, 2024 - October 28, 2024", + "Details": { + "ParentId": "4f43bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-585", + "Dates": "July 12, 2024 - October 28, 2024", + "Present": "Sacks, Ditkoff, & Toone, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " \n Indictment found and returned in the Suffolk County Division of the Juvenile Court Department on February 2, 2022.\n A pretrial motion to suppress evidence was heard by Peter M. Coyne, J., a conditional plea of guilty was accepted by him, and a motion to revise and revoke the defendant's sentence was considered by him.\n Jason M. Stelmack for the defendant.\n Kyle E. Siconolfi,", + "Keywords": "Firearms. Motor Vehicle, Seat belt. Youthful Offender Act. Search and Seizure, Reasonable suspicion. Department of Youth Services. Juvenile Court. Practice, Criminal, Motion to suppress, Sentence." + }, + "ActiveDate": "2024-10-28T14:00:00", + "ExpireDate": "2025-01-28T15:00:00", + "Date": "Oct 28, 2024" + }, + { + "Id": "5d3dbcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "PAULINE CHALOFF vs. WESTWOOD PUBLIC SCHOOLS", + "Context": " School and School\nCommittee, Maternity leave, Professional teacher status, Tenure of personnel,\nArbitration.  Arbitration, Confirmation\nof award.  Contract, School teacher.  Public Policy.\n

    ", + "UrlName": "slip-opinion-details/pauline-chaloff-vs.-westwood-public-schools", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "April 2, 2024 – October 25, 2024", + "Details": { + "ParentId": "5d3dbcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-693", + "Dates": "April 2, 2024 – October 25, 2024", + "Present": "Meade, Englander, & Hodgens, JJ.", + "County": "Norfolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior\nCourt Department on August 10, 2021.\n The case was heard by Maynard M.\nKirpalani, J., on motions for judgment on the pleadings. \n Daniel S. O'Connor for the", + "Keywords": "School and School Committee, Maternity leave, Professional teacher status, Tenure of personnel, Arbitration. Arbitration, Confirmation of award. Contract, School teacher. Public Policy." + }, + "ActiveDate": "2024-10-25T14:00:00", + "ExpireDate": "2025-01-25T05:00:00", + "Date": "Oct 25, 2024" + }, + { + "Id": "6238bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "KATHLEEN VITA[1] vs. NEW ENGLAND BAPTIST HOSPITAL (and a consolidated case[2])", + "Context": "

    Electronic\nSurveillance.  Hospital.  Internet. \nStatute, Construction.  Practice,\nCivil, Standing, Motion to dismiss. \nWords, \"Communication,\" \"Interception.\"

    ", + "UrlName": "slip-opinion-details/kathleen-vita-1-vs.-new-england-baptist-hospital-(and-a-consolidated-case-2-)", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "April 3, 2024 - October 24, 2024", + "Details": { + "ParentId": "6238bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13542", + "Dates": "April 3, 2024 - October 24, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil actions commenced in the Superior\nCourt Department on February 24 and April 7, 2023.\n Motions to dismiss were heard by Hélène\nKazanjian, J., and the cases were reported by her to the Appeals Court.\nNegligence,\nHospital, Standard of care.  Contract,\nPhysician, With hospital.  Practice,\nCivil, Summary judgment.

    ", + "UrlName": "slip-opinion-details/dolores-m.-brown-individually-and-as-personal-representative-1-vs.-saint-vincent-radiological-associates-inc", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "April 8, 2024 – October 24, 2024", + "Details": { + "ParentId": "7b38bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-771", + "Dates": "April 8, 2024 – October 24, 2024", + "Present": "Massing, Shin, & D'Angelo, JJ.", + "County": "Worcester", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior\nCourt Department on October 18, 2013. \n The case was heard by J. Gavin Reardon,\nJr., J., on a motion for summary judgment, and a motion for reconsideration was\nconsidered by him.\nWay, Public:  what constitutes, discontinuance, establishment; Private.  Contract, Construction of contract.  County, Commissioners.

    ", + "UrlName": "slip-opinion-details/town-of-concord-vs.-neil-e.-rasmussen-others.-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "March 1, 2024 – October 21, 2024", + "Details": { + "ParentId": "e427bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-310", + "Dates": "March 1, 2024 – October 21, 2024", + "Present": "Blake, Englander, & D'Angelo, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " \n Civil action commenced in the Land Court Department on October 24, 2017.\n The case was heard by Howard P. Speicher, J.\n Gwen Nolan King (Diane C. Tillotson & Dylan S. O'Sullivan also present) for the defendants.\n Austin Paganelli Anderson (Melissa C. Allison also present) for the plaintiff.\n Christine P. O'Connor, Town Counsel, for town of", + "Keywords": "Way, Public: what constitutes, discontinuance, establishment; Private. Contract, Construction of contract. County, Commissioners." + }, + "ActiveDate": "2024-10-21T14:00:00", + "ExpireDate": "2025-01-21T15:00:00", + "Date": "Oct 21, 2024" + }, + { + "Id": "3a23bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "JU-BANG BORN ALLAH[1] vs. COMMONWEALTH", + "Context": "

    Supreme Judicial\nCourt, Superintendence of inferior courts.

    ", + "UrlName": "slip-opinion-details/ju-bang-born-allah-1-vs.-commonwealth", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "October 18, 2024", + "Details": { + "ParentId": "3a23bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13629", + "Dates": "October 18, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " Ju-Bang Born Allah, formerly known as\nRichard Andrews (petitioner), appeals from a judgment of the county court\ndenying, without a hearing, his petition for relief under G. L.\nc. 211, § 3. We affirm.\n In August 2023, the petitioner filed a\nmotion for a new trial in the Superior Court,", + "Keywords": "Supreme Judicial Court, Superintendence of inferior courts." + }, + "ActiveDate": "2024-10-18T14:00:00", + "ExpireDate": "2025-01-18T15:00:00", + "Date": "Oct 18, 2024" + }, + { + "Id": "6923bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. EPSHOD JEUNE", + "Context": "

    Homicide.  Felony-Murder Rule.  Robbery. \nHome Invasion.  Armed Assault in a\nDwelling.  Firearms.  Practice, Criminal, Jury and jurors,\nInstructions to jury, Capital case. \nEvidence, Identification, Accident. \nJury and Jurors.  Malice.  Identification.  License. \nConstitutional Law, Right to bear arms.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-epshod-jeune", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "April 5, 2024 – October 18, 2024", + "Details": { + "ParentId": "6923bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13447", + "Dates": "April 5, 2024 – October 18, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, & Wendlandt, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the\nSuperior Court Department on August 15, 2015.\n The cases were tried before Bruce R.\nHenry, J.\n Steven J. Rappaport for the defendant.\nErroneous Conviction.  Assault and Battery.  Statute, Construction.  Practice, Civil, Summary judgment.  Practice, Criminal, Nolle prosequi.

    ", + "UrlName": "slip-opinion-details/roberto-cruz-vs.-commonwealth1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "April 3, 2024 – October 16, 2024", + "Details": { + "ParentId": "9d19bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13503", + "Dates": "April 3, 2024 – October 16, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, & Georges, JJ.", + "County": "Essex", + "Opinion": null, + "ShortOpinion": " \n Civil action commenced in the Superior Court Department on May 28, 2019.\n The case was heard by John T. Lu, J., on a motion for summary judgment.\n After review by the Appeals Court, 102 Mass. App. Ct. 685 (2023), the Supreme Judicial Court granted leave to obtain further appellate review.\n Kate R. Isley, Assistant Attorney General, for the Commonwealth.\n ", + "Keywords": "Erroneous Conviction. Assault and Battery. Statute, Construction. Practice, Civil, Summary judgment. Practice, Criminal, Nolle prosequi." + }, + "ActiveDate": "2024-10-16T14:00:00", + "ExpireDate": "2025-01-16T15:00:00", + "Date": "Oct 16, 2024" + }, + { + "Id": "1013bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. WARRENS GELIN", + "Context": "Controlled Substances.  Firearms.  Practice, Criminal, Revocation of probation, Assistance of counsel, Hearsay.  Constitutional Law, Assistance of counsel, Equal protection of laws.  Evidence, Hearsay, Intent, Inference, Firearm.  Intent.", + "UrlName": "slip-opinion-details/commonwealth-vs.-warrens-gelin", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "December 4, 2023 - October 15, 2024", + "Details": { + "ParentId": "1013bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13433", + "Dates": "December 4, 2023 - October 15, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges, JJ.", + "County": "Hampden", + "Opinion": null, + "ShortOpinion": "\n Indictments found and returned in the Superior Court Department on May 23, 2017.\n A proceeding for revocation of probation was heard by Francis E. Flannery, J., and a motion for a new hearing was considered by him.\n The Supreme Judicial Court granted an application for direct appellate", + "Keywords": "Controlled Substances. Firearms. Practice, Criminal, Revocation of probation, Assistance of counsel, Hearsay. Constitutional Law, Assistance of counsel, Equal protection of laws. Evidence, Hearsay, Intent, Inference, Firearm. Intent." + }, + "ActiveDate": "2024-10-15T14:00:00", + "ExpireDate": "2025-01-15T15:00:00", + "Date": "Oct 15, 2024" + }, + { + "Id": "1f09bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. DEJAN BELNAVIS", + "Context": "

    Assault and\nBattery by Means of a Dangerous Weapon. \nAssault by Means of a Dangerous Weapon. \nConstitutional Law, Identification. \nDue Process of Law, Identification. \nIdentification.  Evidence,\nIdentification, Videotape, Photograph. \nWitness, Police officer. \nPractice, Criminal, Motion in limine.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-dejan-belnavis", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "May 13, 2024 – October 10, 2024", + "Details": { + "ParentId": "1f09bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-807", + "Dates": "May 13, 2024 – October 10, 2024", + "Present": "Ditkoff, Englander, & Smyth, JJ.", + "County": "Worcester", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the\nWorcester Division of the District Court Department on July 1, 2021.\n The case was tried before Andrew J.\nAbdella, J.\n Mitchell Kosht for the defendant.\nControlled\nSubstances.  Search and Seizure, Warrant,\nProbable cause, Search incident to lawful arrest.  Probable Cause.  Arrest. \nPractice, Criminal, Motion to suppress, Motion for reconsideration.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-alexander-soto1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "June 6, 2024 – October 10, 2024", + "Details": { + "ParentId": "3b09bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1111", + "Dates": "June 6, 2024 – October 10, 2024", + "Present": "Blake, Neyman, & Sacks, JJ.", + "County": "Hampden", + "Opinion": null, + "ShortOpinion": " Indictment found and returned in the\nSuperior Court Department on October 1, 2019.\nA pretrial motion\nto suppress evidence was heard by Michael K. Callan, J.; a motion to reconsider\nwas considered by him; and a conditional plea of guilty was accepted by James\nM. Manitsas, J.\nKidnapping.  Practice, Criminal, Required finding,\nInstructions to jury.  Statute,\nConstruction.  Evidence, Joint venturer,\nIntent.  Joint Enterprise.  Intent. \nWords, \"Thereby.\"

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-scott-morrison1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "March 4, 2024 - October 8, 2024", + "Details": { + "ParentId": "5500bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13527", + "Dates": "March 4, 2024 - October 8, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Norfolk", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the\nSuperior Court Department on July 31, 2014, and April 29, 2016.\n The cases were tried before Robert C.\nCosgrove, J.\n After review by the Appeals Court, 103\nMass. App. Ct.", + "Keywords": "Kidnapping. Practice, Criminal, Required finding, Instructions to jury. Statute, Construction. Evidence, Joint venturer, Intent. Joint Enterprise. Intent. Words, \"Thereby.\"" + }, + "ActiveDate": "2024-10-08T14:00:00", + "ExpireDate": "2025-01-08T15:00:00", + "Date": "Oct 08, 2024" + }, + { + "Id": "6500bcd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "ALVIN CAMPBELL vs. COMMONWEALTH", + "Context": "

    Pretrial Detention.  Bail.  Rape.  Statute, Construction.  Words, \"Physical force.\"

    ", + "UrlName": "slip-opinion-details/alvin-campbell-vs.-commonwealth", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "February 5, 2024 - October 8, 2024", + "Details": { + "ParentId": "6500bcd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13504", + "Dates": "February 5, 2024 - October 8, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, & Georges, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " \n Civil action commenced in the Supreme Judicial Court for the county of Suffolk on August 1, 2023.\n The case was heard by Wendlandt, J.\n Patrick Levin, Committee for Public Counsel Services, for the petitioner.\n Sarah Montgomery Lewis, Assistant District Attorney (Lynn Feigenbaum, Assistant District Attorney, also present) for the Commonwealth.\n GAZIANO,", + "Keywords": "Pretrial Detention. Bail. Rape. Statute, Construction. Words, \"Physical force.\"" + }, + "ActiveDate": "2024-10-08T14:00:00", + "ExpireDate": "2025-01-08T15:00:00", + "Date": "Oct 08, 2024" + }, + { + "Id": "38fbbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "STEPHEN O'MALLEY & another[1] vs. CONTRIBUTORY RETIREMENT APPEAL BOARD & another[2]", + "Context": "

    Contributory\nRetirement Appeal Board.  Division of\nAdministrative Law Appeals.  Public\nEmployment, Accidental disability retirement.  School and School Committee, Retirement\nbenefits.  Labor, Overtime\ncompensation.  Administrative Law,\nAgency's interpretation of statute. \nPractice, Civil, Judgment on the pleadings.

    ", + "UrlName": "slip-opinion-details/stephen-o'malley-another-1-vs.-contributory-retirement-appeal-board-another-2", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "June 6, 2024 – October 7, 2024", + "Details": { + "ParentId": "38fbbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1147", + "Dates": "June 6, 2024 – October 7, 2024", + "Present": "Blake, Neyman, & Sacks, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior\nCourt Department on February 5, 2020. \n The case was heard by Paul D. Wilson, J.,\non a motion for judgment on the pleadings. \nPraven Shenoy for\nthe plaintiffs.\nFirearms.  Search and Seizure, Warrant, Affidavit, Probable cause.  Constitutional Law, Probable cause.  Probable Cause.  Practice, Criminal, Motion to suppress, Warrant, Affidavit.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-marcus-d.-anding", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "March 1, 2024 – October 7, 2024", + "Details": { + "ParentId": "4afbbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-646", + "Dates": "March 1, 2024 – October 7, 2024", + "Present": "Neyman, Hershfang, & Hodgens, JJ.", + "County": "Barnstable", + "Opinion": null, + "ShortOpinion": " \n Indictments found and returned in the Superior Court Department on March 2, 2022.\n A pretrial motion to suppress evidence was heard by Elaine M. Buckley, J.\n An application for leave to prosecute an interlocutory appeal was allowed by Dalila Argaez Wendlandt, J., in the Supreme Judicial Court for the county of Suffolk, and the appeal was reported by her to the Appeals Court.\n Rose-Ellen El", + "Keywords": "Firearms. Search and Seizure, Warrant, Affidavit, Probable cause. Constitutional Law, Probable cause. Probable Cause. Practice, Criminal, Motion to suppress, Warrant, Affidavit." + }, + "ActiveDate": "2024-10-07T14:00:00", + "ExpireDate": "2025-01-07T15:00:00", + "Date": "Oct 07, 2024" + }, + { + "Id": "7ff3bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "WILLIAM J. DOYLE, personal representative,[1] & others[2] vs. CITY OF QUINCY & others[3]", + "Context": "

    Massachusetts\nTort Claims Act.  Public Employment,\nPolice.  Police, Outside employment,\nNegligence.  Negligence, Police, Public employee.  Practice, Civil, Motion to dismiss.

    ", + "UrlName": "slip-opinion-details/william-j.-doyle-personal-representative-1-others-2-vs.-city-of-quincy-others-3", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "April 9, 2024 – October 3, 2024", + "Details": { + "ParentId": "7ff3bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-574", + "Dates": "April 9, 2024 – October 3, 2024", + "Present": "Neyman, Brennan, & Toone, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior\nCourt Department on January 21, 2022. \n A motion to dismiss was heard by Michael\nA. Cahillane, J. \nDavid Hadas for\nthe defendants.\nSupreme Judicial Court, Superintendence of inferior courts.  Practice, Criminal, Double jeopardy, Verdict, Lesser included offense, Duplicative convictions.  Assault and Battery.

    ", + "UrlName": "slip-opinion-details/lance-hullum-vs.-commonwealth", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "October 2, 2024", + "Details": { + "ParentId": "cdefbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13453", + "Dates": "October 2, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " \n The petitioner, Lance Hullum, appeals from a judgment of the county court denying his petition for extraordinary relief pursuant to G. L. c. 211, § 3. We affirm.\n Background. In 2014, Hullum was indicted on various aggravated assault charges stemming from an incident in which he allegedly attacked multiple individuals, including Raymond Girard and Richard Saunders. With respect to the attack on", + "Keywords": "Supreme Judicial Court, Superintendence of inferior courts. Practice, Criminal, Double jeopardy, Verdict, Lesser included offense, Duplicative convictions. Assault and Battery." + }, + "ActiveDate": "2024-10-02T14:00:00", + "ExpireDate": "2025-01-02T15:00:00", + "Date": "Oct 02, 2024" + }, + { + "Id": "8aebbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. JAMES SOUZA", + "Context": "Homicide.  Felony-Murder Rule.  Robbery.  Deoxyribonucleic Acid.  Evidence, Scientific test, Relevancy and materiality, Expert opinion, Hearsay.  Practice, Criminal, Hearsay, Exhibits, Capital case.  Witness, Expert.", + "UrlName": "slip-opinion-details/commonwealth-vs.-james-souza", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "March 8, 2024 - October 1, 2024", + "Details": { + "ParentId": "8aebbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13234", + "Dates": "March 8, 2024 - October 1, 2024", + "Present": "Budd, C.J., Gaziano, Wendlandt, & Georges, JJ.", + "County": "Bristol", + "Opinion": null, + "ShortOpinion": " Indictment found and returned in the Superior Court Department on April 5, 2016.\n The case was tried before Thomas F. McGuire, Jr., J.\n Stephen Paul Maidman for the defendant.\n Shoshana E. Stern, Assistant District", + "Keywords": "Homicide. Felony-Murder Rule. Robbery. Deoxyribonucleic Acid. Evidence, Scientific test, Relevancy and materiality, Expert opinion, Hearsay. Practice, Criminal, Hearsay, Exhibits, Capital case. Witness, Expert." + }, + "ActiveDate": "2024-10-01T14:00:00", + "ExpireDate": "2025-01-01T15:00:00", + "Date": "Oct 01, 2024" + }, + { + "Id": "a4ebbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. CARLOS MUNIZ RODRIGUEZ", + "Context": "

    Sex Offender.  Global Positioning System Device.  Practice, Criminal, Probation, Double jeopardy.  Constitutional Law, Double jeopardy, Search and seizure, Privacy.  Search and Seizure, Probationer, Expectation of privacy.  Privacy.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-carlos-muniz-rodriguez", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "October", + "ArchiveDate": "October 2024", + "Dates": "May 8, 2024 - October 1, 2024", + "Details": { + "ParentId": "a4ebbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13540", + "Dates": "May 8, 2024 - October 1, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the Superior Court Department on April 2, 2014.\n A motion for relief from a condition of probation, filed on November 18, 2022, was heard by Laurence D. Pierce, J.\n The Supreme Judicial Court granted an application for direct appellate review.\n Abby P. Shyavitz for the defendant.\n Jessica Langsam, Assistant District Attorney", + "Keywords": "Sex Offender. Global Positioning System Device. Practice, Criminal, Probation, Double jeopardy. Constitutional Law, Double jeopardy, Search and seizure, Privacy. Search and Seizure, Probationer, Expectation of privacy. Privacy." + }, + "ActiveDate": "2024-10-01T14:00:00", + "ExpireDate": "2025-01-01T15:00:00", + "Date": "Oct 01, 2024" + }, + { + "Id": "efe6bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. MICHAEL W. TYSON", + "Context": "Assault and Battery on Certain Public Officers and Employees.  Resisting Arrest.  Police Officer.  Intent.  Arrest.  Practice, Criminal, Dismissal.", + "UrlName": "slip-opinion-details/commonwealth-vs.-michael-w.-tyson", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "February 14, 2024 – September 30, 2024", + "Details": { + "ParentId": "efe6bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-229", + "Dates": "February 14, 2024 – September 30, 2024", + "Present": "Vuono, Massing, & Toone, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the Brockton Division of the District Court Department on August 26, 2019. \n A motion to dismiss was heard by Honor Kerry Segal, J. \n Karen A. Palumbo, Assistant District Attorney, for the Commonwealth.\n Peter J.", + "Keywords": "Assault and Battery on Certain Public Officers and Employees. Resisting Arrest. Police Officer. Intent. Arrest. Practice, Criminal, Dismissal." + }, + "ActiveDate": "2024-09-30T14:00:00", + "ExpireDate": "2024-12-30T15:00:00", + "Date": "Sep 30, 2024" + }, + { + "Id": "19e7bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "IN THE MATTER OF THE ESTATE OF WILLIAM F. McLOUGHLIN.[1]", + "Context": "Will, Construction, Testamentary capacity, Validity.  Probate Court, Affidavit.  Words, \"Contest.\"", + "UrlName": "slip-opinion-details/in-the-matter-of-the-estate-of-william-f.-mcloughlin.-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "March 11, 2024 – September 30, 2024", + "Details": { + "ParentId": "19e7bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-770", + "Dates": "March 11, 2024 – September 30, 2024", + "Present": "Green, C.J., Henry, & Ditkoff, JJ.[2]", + "County": "Worcester", + "Opinion": null, + "ShortOpinion": " \n \n Complaint for instructions filed in the Worcester Division of the Probate and Family Court Department on August 19, 2022. \n The case was heard by Kathryn M. Bailey, J., on motions for summary judgment.\n Barry A. Bachrach for Sean McLoughlin.\n Maureen E. Curran (Cara J. Daniels also present) for Margaret McLoughlin & others.\n ", + "Keywords": "Will, Construction, Testamentary capacity, Validity. Probate Court, Affidavit. Words, \"Contest.\"" + }, + "ActiveDate": "2024-09-30T14:00:00", + "ExpireDate": "2024-12-30T15:00:00", + "Date": "Sep 30, 2024" + }, + { + "Id": "9fd4bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. RACHELLE SCORDINO", + "Context": "

    Uttering Forged\nInstrument.  Negotiable Instruments,\nForgery.  Forgery.  Evidence, Intent.  Intent. \nPractice, Criminal, Required finding.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-rachelle-scordino1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "September 24, 2024", + "Details": { + "ParentId": "9fd4bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13474", + "Dates": "September 24, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " After cashing a single check from a person\nwho did not know her, the defendant, Rachelle Scordino, proceeded to a\njury-waived trial on one count of larceny by check and one count of uttering a\nfalse check.[1] At the close of the\nCommonwealth's case, the defendant moved for a required finding of not\nguilty. The judge granted the motion\nwith respect to the larceny charge and found the defendant guilty", + "Keywords": "Uttering Forged Instrument. Negotiable Instruments, Forgery. Forgery. Evidence, Intent. Intent. Practice, Criminal, Required finding." + }, + "ActiveDate": "2024-09-24T14:00:00", + "ExpireDate": "2024-12-24T15:00:00", + "Date": "Sep 24, 2024" + }, + { + "Id": "c9d4bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. DOMINIQUE M. OLIVER", + "Context": "Uttering Forged Instrument.  Negotiable Instruments, Forgery.  Forgery.  Evidence, Intent.  Intent.  Practice, Criminal, Required finding.", + "UrlName": "slip-opinion-details/commonwealth-vs.-dominique-m.-oliver1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "February 5, 2024 - September 24, 2024", + "Details": { + "ParentId": "c9d4bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13486", + "Dates": "February 5, 2024 - September 24, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the Malden Division of the District Court Department on March 6, 2019.\n The case was tried before William G. Farrell, J.\n After review by the Appeals Court, 102 Mass. App. Ct. 609 (2023), the Supreme Judicial Court granted leave to obtain further appellate", + "Keywords": "Uttering Forged Instrument. Negotiable Instruments, Forgery. Forgery. Evidence, Intent. Intent. Practice, Criminal, Required finding." + }, + "ActiveDate": "2024-09-24T14:00:00", + "ExpireDate": "2024-12-24T15:00:00", + "Date": "Sep 24, 2024" + }, + { + "Id": "05d0bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. ADRIAN HINDS", + "Context": "Assault and Battery by Means of a Dangerous Weapon.  Evidence, Relevancy and materiality, Intent, Disclosure of evidence, Expert opinion, Rebuttal, Surrebuttal.  Practice, Criminal, Disclosure of evidence, Witness.  Constitutional Law, Witness.  Witness, Expert, Impeachment.  Intent.  Social Media.", + "UrlName": "slip-opinion-details/commonwealth-vs.-adrian-hinds1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "May 8, 2024 – September 23, 2024", + "Details": { + "ParentId": "05d0bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13538", + "Dates": "May 8, 2024 – September 23, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, Dewar, & Wolohojian, JJ.", + "County": "Hampden", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the Superior Court Department on April 27, 2016.\n Following review by this court, 487 Mass. 212 (2021), the cases were tried before John S. Ferrara, J.\n After review by the Appeals Court, 103 Mass. App. Ct. 1103 (2023), the Supreme Judicial Court granted leave", + "Keywords": "Assault and Battery by Means of a Dangerous Weapon. Evidence, Relevancy and materiality, Intent, Disclosure of evidence, Expert opinion, Rebuttal, Surrebuttal. Practice, Criminal, Disclosure of evidence, Witness. Constitutional Law, Witness. Witness, Expert, Impeachment. Intent. Social Media." + }, + "ActiveDate": "2024-09-23T14:00:00", + "ExpireDate": "2024-12-23T15:00:00", + "Date": "Sep 23, 2024" + }, + { + "Id": "1bd0bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. ERIN KIPEUM LEE", + "Context": "

    Larceny.  Money Laundering.  Jury and Jurors.  Practice, Criminal, Jury and jurors, Empanelment of jury, Challenge to jurors, Instructions to jury.  Statute, Construction.  Evidence, Intent, Expert opinion.  Witness, Expert.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-erin-kipeum-lee", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "December 14, 2023 - September 23, 2024", + "Details": { + "ParentId": "1bd0bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-496", + "Dates": "December 14, 2023 - September 23, 2024", + "Present": "Hand, Hershfang, & Brennan, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " \n Indictments found and returned in the Superior Court Department on January 31, 2019.\n The cases were tried before Janice W. Howe, J.\n Andrew P. Power for the defendant.\n Christa Elliott, Assistant District Attorney, for the Commonwealth.\n HERSHFANG, J. After the defendant house- and cat-sat for her landlord for three and one-half months, during", + "Keywords": "Larceny. Money Laundering. Jury and Jurors. Practice, Criminal, Jury and jurors, Empanelment of jury, Challenge to jurors, Instructions to jury. Statute, Construction. Evidence, Intent, Expert opinion. Witness, Expert." + }, + "ActiveDate": "2024-09-23T14:00:00", + "ExpireDate": "2024-12-23T15:00:00", + "Date": "Sep 23, 2024" + }, + { + "Id": "dbcabbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "IN THE MATTER OF EDWARD J. COLLINS", + "Context": "Attorney at Law, Disciplinary proceeding, Suspension, Attorney-client relationship, Contingent fee agreement.  Board of Bar Overseers.", + "UrlName": "slip-opinion-details/in-the-matter-of-edward-j.-collins", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "September 20, 2024", + "Details": { + "ParentId": "dbcabbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13471", + "Dates": "September 20, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " The respondent attorney, Edward J. Collins, appeals from the order of a single justice of this court suspending him from the practice of law. The matter came before the single justice on the information and record of proceedings filed by the Board of Bar Overseers (board). The board determined that in his representation of a particular client (client), the goal of which was to prevent her eviction, the respondent failed to act with diligence, consistently presented", + "Keywords": "Attorney at Law, Disciplinary proceeding, Suspension, Attorney-client relationship, Contingent fee agreement. Board of Bar Overseers." + }, + "ActiveDate": "2024-09-20T14:00:00", + "ExpireDate": "2024-12-20T15:00:00", + "Date": "Sep 20, 2024" + }, + { + "Id": "0dcbbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "ADOPTION OF ARIANNE[1]", + "Context": "

    Adoption, Care and protection, Dispensing with parent's consent.  Parent and Child, Adoption, Dispensing with parent's consent to adoption, Custody.  Minor, Adoption, Custody, Care and protection.  Department of Children & Families.  Practice, Civil, Care and protection proceeding, Adoption, Findings by judge, Disqualification of judge.

    ", + "UrlName": "slip-opinion-details/adoption-of-arianne-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "May 13, 2024 – September 20, 2024", + "Details": { + "ParentId": "0dcbbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-979", + "Dates": "May 13, 2024 – September 20, 2024", + "Present": "Ditkoff, Englander, & Smyth, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " Petition filed in the Middlesex County Division of the Juvenile Court Department on April 28, 2021. \n The case was heard by Brian P. Frane, J. \n Debra P. Dow for the mother.\n Arjun K. Jaikumar, Assistant Attorney General, for Department of Children and Families.\n Roberta Driscoll-Weiss for the child.\n DITKOFF, J. The", + "Keywords": "Adoption, Care and protection, Dispensing with parent's consent. Parent and Child, Adoption, Dispensing with parent's consent to adoption, Custody. Minor, Adoption, Custody, Care and protection. Department of Children & Families. Practice, Civil, Care and protection proceeding, Adoption, Findings by judge, Disqualification of judge." + }, + "ActiveDate": "2024-09-20T14:00:00", + "ExpireDate": "2024-12-20T15:00:00", + "Date": "Sep 20, 2024" + }, + { + "Id": "c9c2bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "IN THE MATTER OF F.A.", + "Context": "Mental Health.  Practice, Civil, Commitment of mentally ill person, Findings by judge.  Due Process of Law, Mental health, Commitment, Substantive rights, Burden of proof.  Statute, Construction.", + "UrlName": "slip-opinion-details/in-the-matter-of-f.a", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "April 1, 2024 - September 18, 2024", + "Details": { + "ParentId": "c9c2bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13515", + "Dates": "April 1, 2024 - September 18, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges, JJ.", + "County": "Worcester", + "Opinion": null, + "ShortOpinion": " Petition for civil commitment filed in the Worcester Division of the District Court Department on April 8, 2020.\n A motion for a buildings and grounds restriction was heard by Janet J. McGuiggan, J.\n The Supreme Judicial Court granted an application for direct appellate", + "Keywords": "Mental Health. Practice, Civil, Commitment of mentally ill person, Findings by judge. Due Process of Law, Mental health, Commitment, Substantive rights, Burden of proof. Statute, Construction." + }, + "ActiveDate": "2024-09-18T14:00:00", + "ExpireDate": "2024-12-18T15:00:00", + "Date": "Sep 18, 2024" + }, + { + "Id": "cfbebbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "IN THE MATTER OF J.P. / IN THE MATTER OF E.S.", + "Context": "Practice, Civil, Civil commitment, Standard of proof.  Due Process of Law, Commitment, Substantive rights, Standard of proof, Vagueness of statute.  Statute, Construction.  Words, \"Chronic,\" \"Habitual.\"", + "UrlName": "slip-opinion-details/in-the-matter-of-j.p.-in-the-matter-of-e.s", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "April 3, 2024 - September 17, 2024", + "Details": { + "ParentId": "cfbebbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13492 / SJC-13493", + "Dates": "April 3, 2024 - September 17, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges, JJ.", + "County": "Bristol / Essex", + "Opinion": null, + "ShortOpinion": " Petition for commitment for alcohol or substance use disorder filed in the Bristol County Division of the Juvenile Court Department on May 1, 2023.\n The case was heard by Michaela C. Stewart, J.\n The Supreme Judicial Court granted an application for direct appellate", + "Keywords": "Practice, Civil, Civil commitment, Standard of proof. Due Process of Law, Commitment, Substantive rights, Standard of proof, Vagueness of statute. Statute, Construction. Words, \"Chronic,\" \"Habitual.\"" + }, + "ActiveDate": "2024-09-17T14:00:00", + "ExpireDate": "2024-12-17T15:00:00", + "Date": "Sep 17, 2024" + }, + { + "Id": "e9bebbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. DANIEL ROGERS", + "Context": "

    Homicide.  Robbery.  Felony-Murder Rule.  Malice.  Practice, Criminal, Assistance of counsel, New trial, Postconviction relief, Verdict, Capital case.  Constitutional Law, Assistance of counsel, Sentence.  Mental Impairment.  Intent.  Evidence, Expert opinion, Credibility of witness, Intent.  Witness, Expert, Credibility.  Dangerous Weapon. 

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-daniel-rogers", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "March 6, 2024 – September 17, 2024", + "Details": { + "ParentId": "e9bebbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13450", + "Dates": "March 6, 2024 – September 17, 2024", + "Present": "Budd, C.J., Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " \n Indictments found and returned in the Superior Court Department on May 12, 2004.\n Following review by this court, 459 Mass. 249 (2011), a renewed motion to reduce the verdict and a motion for a new trial, filed on January 3, 2018, were heard by John A. Agostini, J.\n A request for leave to appeal was reported by Lowy, J., in the Supreme Judicial Court for the county of Suffolk, and a", + "Keywords": "Homicide. Robbery. Felony-Murder Rule. Malice. Practice, Criminal, Assistance of counsel, New trial, Postconviction relief, Verdict, Capital case. Constitutional Law, Assistance of counsel, Sentence. Mental Impairment. Intent. Evidence, Expert opinion, Credibility of witness, Intent. Witness, Expert, Credibility. Dangerous Weapon." + }, + "ActiveDate": "2024-09-17T14:00:00", + "ExpireDate": "2024-12-17T15:00:00", + "Date": "Sep 17, 2024" + }, + { + "Id": "03bbbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "NAHANT PRESERVATION TRUST, INC., & others[1] vs. NORTHEASTERN UNIVERSITY (and a consolidated case[2])", + "Context": "Municipal Corporations, Parks.  Parks and Parkways.  Public Land.  Contract, Private college, Promissory estoppel.  Estoppel.  Practice, Civil, Summary judgment.", + "UrlName": "slip-opinion-details/nahant-preservation-trust-inc.-others-1-vs.-northeastern-university-(and-a-consolidated-case-2-)", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "February 14, 2024 - September 16, 2024", + "Details": { + "ParentId": "03bbbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-482", + "Dates": "February 14, 2024 - September 16, 2024", + "Present": "Vuono, Massing, & Toone, JJ.", + "County": "Essex", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Land Court Department on August 9, 2019.\n Civil action commenced in the Superior Court Department on August 20, 2019.\n After consolidation, the cases were heard by Jeffrey T. Karp, J., on motions for summary", + "Keywords": "Municipal Corporations, Parks. Parks and Parkways. Public Land. Contract, Private college, Promissory estoppel. Estoppel. Practice, Civil, Summary judgment." + }, + "ActiveDate": "2024-09-16T14:00:00", + "ExpireDate": "2024-12-16T15:00:00", + "Date": "Sep 16, 2024" + }, + { + "Id": "5cb5bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "AIMEE BODGE[1] & others[2] vs. COMMONWEALTH & others[3]", + "Context": "

    Family &\nMedical Leave Act.  Employment, Employee\nbenefit plan.  Statute,\nConstruction.  Practice, Civil, Motion to\ndismiss.  State Police.

    ", + "UrlName": "slip-opinion-details/aimee-bodge-1-others-2-vs.-commonwealth-others-3", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "May 6, 2024 - September 13, 2024", + "Details": { + "ParentId": "5cb5bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13567", + "Dates": "May 6, 2024 - September 13, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Wolohojian, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior\nCourt Department on March 10, 2022.\n A motion to dismiss was heard by Robert L.\nUllmann, J., and the case was reported by him to the Appeals Court.\n The Supreme Judicial Court on its", + "Keywords": "Family & Medical Leave Act. Employment, Employee benefit plan. Statute, Construction. Practice, Civil, Motion to dismiss. State Police." + }, + "ActiveDate": "2024-09-13T14:00:00", + "ExpireDate": "2024-12-13T15:00:00", + "Date": "Sep 13, 2024" + }, + { + "Id": "dbabbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "CONSERVATION LAW FOUNDATION & another[1] vs. ENERGY FACILITIES SITING BOARD & another[2] (and a consolidated case[3])", + "Context": "Energy Facilities Siting Board.  Public Utilities, Energy company, Electric company, Findings, Judicial review.  Electric Company.  Environment.  Administrative Law, Substantial evidence, Findings, Agency's interpretation of statute, Judicial review.  Permit.  Department of Environmental Protection.", + "UrlName": "slip-opinion-details/conservation-law-foundation-another-1-vs.-energy-facilities-siting-board-another-2-(and-a-consolidated-case-3-)", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "May 6, 2024 - September 11, 2024", + "Details": { + "ParentId": "dbabbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13521", + "Dates": "May 6, 2024 - September 11, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Wolohojian, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil actions commenced in the Supreme Judicial Court for the county of Suffolk on December 19 and 29, 2022.\n The cases were reported by Cypher, J.\n Phelps Turner (Anxhela Mile also present) for Conservation Law Foundation &", + "Keywords": "Energy Facilities Siting Board. Public Utilities, Energy company, Electric company, Findings, Judicial review. Electric Company. Environment. Administrative Law, Substantial evidence, Findings, Agency's interpretation of statute, Judicial review. Permit. Department of Environmental Protection." + }, + "ActiveDate": "2024-09-11T14:00:00", + "ExpireDate": "2024-12-11T15:00:00", + "Date": "Sep 11, 2024" + }, + { + "Id": "efabbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "MICHAEL MEEHAN vs. LAZER SPOT, INC., & another.[1]", + "Context": "

    Workers' Compensation Act, Exclusivity provision.  Practice, Civil, Summary judgment.

    ", + "UrlName": "slip-opinion-details/michael-meehan-vs.-lazer-spot-inc.-another.-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "December 5, 2023 – September 11, 2024", + "Details": { + "ParentId": "efabbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-180", + "Dates": "December 5, 2023 – September 11, 2024", + "Present": "Green, C.J., Neyman, & Englander, JJ.[2]", + "County": "Hampden", + "Opinion": null, + "ShortOpinion": " \n Civil action commenced in the Superior Court Department on August 10, 2020.\n The case was heard by Karen L. Goodwin, J., on motions for summary judgment.\n John J. McCarthy for the plaintiff.\n Patricia B. Gary for the defendants.\n NEYMAN, J. The plaintiff, Michael Meehan, commenced this action against his employer, Lazer Spot, Inc., and his", + "Keywords": "Workers' Compensation Act, Exclusivity provision. Practice, Civil, Summary judgment." + }, + "ActiveDate": "2024-09-11T14:00:00", + "ExpireDate": "2024-12-11T15:00:00", + "Date": "Sep 11, 2024" + }, + { + "Id": "fdabbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "SUSAN HARTNETT vs. CONTRIBUTORY RETIREMENT APPEAL BOARD & others.[1]", + "Context": "Public Employment, Retirement.  Retirement.  Pension.  Municipal Corporations, Retirement board, Pensions.  Contributory Retirement Appeal Board.  Public Employee Retirement Administration Commission.  Administrative Law, Agency's interpretation of statute.  Statute, Construction.  Practice, Civil, Judgment on the pleadings.  Words, \"Two consecutive years.\"", + "UrlName": "slip-opinion-details/susan-hartnett-vs.-contributory-retirement-appeal-board-others.-1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "May 8, 2024 – September 11, 2024", + "Details": { + "ParentId": "fdabbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13568", + "Dates": "May 8, 2024 – September 11, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Wolohojian, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior Court Department on October 1, 2021.\n The case was heard by Jackie A. Cowin, J., on motions for judgment on the pleadings.\n The Supreme Judicial Court on its own initiative transferred the case from the Appeals", + "Keywords": "Public Employment, Retirement. Retirement. Pension. Municipal Corporations, Retirement board, Pensions. Contributory Retirement Appeal Board. Public Employee Retirement Administration Commission. Administrative Law, Agency's interpretation of statute. Statute, Construction. Practice, Civil, Judgment on the pleadings. Words, \"Two consecutive years.\"" + }, + "ActiveDate": "2024-09-11T14:00:00", + "ExpireDate": "2024-12-11T15:00:00", + "Date": "Sep 11, 2024" + }, + { + "Id": "98a6bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. ANGEL PENA-LARA", + "Context": "Evidence, Informer.  Witness, Police informer, Privilege.  Practice, Criminal, Disclosure of identity of informer, Dismissal.", + "UrlName": "slip-opinion-details/commonwealth-vs.-angel-pena-lara", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "March 11, 2024 – September 10, 2024", + "Details": { + "ParentId": "98a6bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "22-P-592", + "Dates": "March 11, 2024 – September 10, 2024", + "Present": "Rubin, Englander, & D'Angelo, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the Dorchester Division of the Boston Municipal Court Department on December 17, 2019.\n A motion to dismiss was heard by Lisa Ann Grant, J. \n Brooke Hartley, Assistant District Attorney, for the Commonwealth.\n ", + "Keywords": "Evidence, Informer. Witness, Police informer, Privilege. Practice, Criminal, Disclosure of identity of informer, Dismissal." + }, + "ActiveDate": "2024-09-10T14:00:00", + "ExpireDate": "2024-12-10T14:00:00", + "Date": "Sep 10, 2024" + }, + { + "Id": "269dbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. RICHARD DILWORTH", + "Context": "Social Media.  Electronic Surveillance.  Constitutional Law, Equal protection of laws.  Selective Prosecution.  Evidence, Selective prosecution, Disclosure of evidence, Profile, Statistics.  Practice, Criminal, Disclosure of identity of informer, Disclosure of identity of surveillance location, Dismissal.  Firearms.", + "UrlName": "slip-opinion-details/commonwealth-vs.-richard-dilworth1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "May 6, 2024 - September 6, 2024", + "Details": { + "ParentId": "269dbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13547", + "Dates": "May 6, 2024 - September 6, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, Dewar, & Wolohojian, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the Superior Court Department on June 12 and 14, 2018.\n A pretrial motion for discovery was heard by Peter B. Krupp, J., and a motion to dismiss was heard by Robert L. Ullmann, J.\n The Supreme Judicial Court granted an application for direct appellate", + "Keywords": "Social Media. Electronic Surveillance. Constitutional Law, Equal protection of laws. Selective Prosecution. Evidence, Selective prosecution, Disclosure of evidence, Profile, Statistics. Practice, Criminal, Disclosure of identity of informer, Disclosure of identity of surveillance location, Dismissal. Firearms." + }, + "ActiveDate": "2024-09-06T14:00:00", + "ExpireDate": "2024-12-06T15:00:00", + "Date": "Sep 06, 2024" + }, + { + "Id": "d697bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "DHANANJAY PATEL[1] & others[2] vs. 7-ELEVEN, INC.; DP MILK STREET INC. & others,[3] third-party defendants", + "Context": "Independent Contractor Act.  Massachusetts Wage Act.  Contract, Franchise agreement.  Statute, Construction", + "UrlName": "slip-opinion-details/dhananjay-patel-1-others-2-vs.-7-eleven-inc.-dp-milk-street-inc.-others-3-third-party-defendants", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "April 1, 2024 - September 5, 2024", + "Details": { + "ParentId": "d697bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13485", + "Dates": "April 1, 2024 - September 5, 2024", + "Present": "Suffolk", + "County": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges, JJ.", + "Opinion": null, + "ShortOpinion": " Certification of a question of law to the Supreme Judicial Court by the United States Court of Appeals for the First Circuit.\n Shannon Liss-Riordan (Matthew Carrieri also present) for the plaintiffs.\n David C. Kravitz, Deputy State Solicitor, for the Attorney", + "Keywords": "Independent Contractor Act. Massachusetts Wage Act. Contract, Franchise agreement. Statute, Construction" + }, + "ActiveDate": "2024-09-05T14:00:00", + "ExpireDate": "2024-12-05T15:00:00", + "Date": "Sep 05, 2024" + }, + { + "Id": "1198bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "SUNRISE EQUIPMENT & EXCAVATION, INC. vs. CONSTRUCTION MANAGEMENT & BUILDERS, INC.", + "Context": "

    Attorney at Law, Contingent fee agreement, Lien.  Contract, Contingent fee agreement, Construction of contract.  Lien.  Practice, Civil, Attorney's fees.

    ", + "UrlName": "slip-opinion-details/sunrise-equipment-excavation-inc.-vs.-construction-management-builders-inc", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "March 1, 2024 – September 5, 2024", + "Details": { + "ParentId": "1198bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-594", + "Dates": "March 1, 2024 – September 5, 2024", + "Present": "Rubin, Englander, & D'Angelo, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " \n Civil action commenced in the Superior Court Department on July 18, 2014.\n Following review by this court, 99 Mass. App. Ct. 1113 (2021), a motion to enforce an attorney's lien was heard by William F. Sullivan, J.\n Robert L. Hamer for the plaintiff.\n Joseph K. Curran, Jr., pro se.\n ENGLANDER, J. At issue is whether the plaintiff, Sunrise Equipment", + "Keywords": "Attorney at Law, Contingent fee agreement, Lien. Contract, Contingent fee agreement, Construction of contract. Lien. Practice, Civil, Attorney's fees." + }, + "ActiveDate": "2024-09-05T14:00:00", + "ExpireDate": "2024-12-05T15:00:00", + "Date": "Sep 05, 2024" + }, + { + "Id": "d093bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "CAMILA DAVALOS & others[1] vs. BAY WATCH, INC.[2]", + "Context": "

    Social Media.  Internet.  Libel and Slander.  Privacy.  Limitations, Statute of.  Practice, Civil, Statute of limitations.

    ", + "UrlName": "slip-opinion-details/camila-davalos-others-1-vs.-bay-watch-inc.-2", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "September", + "ArchiveDate": "September 2024", + "Dates": "April 3, 2024 - September 4, 2024", + "Details": { + "ParentId": "d093bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13534", + "Dates": "April 3, 2024 - September 4, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " \n Certification of a question of law to the Supreme Judicial Court by the United States District Court for the District of Massachusetts.\n John V. Golaszewski, of New York (Paul Sullivan also present) for the plaintiffs.\n Christopher A. Monson for the defendant.\n KAFKER, J. The plaintiffs in this case, a group of professional models, allege that the defendant improperly used", + "Keywords": "Social Media. Internet. Libel and Slander. Privacy. Limitations, Statute of. Practice, Civil, Statute of limitations." + }, + "ActiveDate": "2024-09-04T14:00:00", + "ExpireDate": "2024-12-04T15:00:00", + "Date": "Sep 04, 2024" + }, + { + "Id": "8187bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. RAYMOND GAINES", + "Context": "Homicide.  Evidence, Identification, Disclosure of evidence, Exculpatory.  Identification.  Practice, Criminal, Postconviction relief, Disclosure of evidence, Affidavit, New trial, Capital case.  Police, Records", + "UrlName": "slip-opinion-details/commonwealth-vs.-raymond-gaines", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "March 4, 2024 - August 29, 2024", + "Details": { + "ParentId": "8187bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13446", + "Dates": "March 4, 2024 - August 29, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the Superior Court on May 16, 1975.\n Following review by this court, 374 Mass. 577 (1978), a motion for a new trial, filed on November 30, 2021, was heard by Debra A. Squires-Lee, J.\n A request for leave to appeal was allowed by Wendlandt, J., in the Supreme", + "Keywords": "Homicide. Evidence, Identification, Disclosure of evidence, Exculpatory. Identification. Practice, Criminal, Postconviction relief, Disclosure of evidence, Affidavit, New trial, Capital case. Police, Records" + }, + "ActiveDate": "2024-08-29T14:00:00", + "ExpireDate": "2024-11-29T15:00:00", + "Date": "Aug 29, 2024" + }, + { + "Id": "a187bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. SCOTT McCAFFREY", + "Context": "Rape.  Indecent Assault and Battery.  Practice, Criminal, Amendment of indictment or complaint, Indictment.  Evidence, First complaint, Prior consistent statement, Prior misconduct.  Practice, Criminal, Instructions to jury, Argument by prosecutor.  Witness, Credibility.", + "UrlName": "slip-opinion-details/commonwealth-vs.-scott-mccaffrey", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "December 14, 2023 - August 29, 2024", + "Details": { + "ParentId": "a187bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-20", + "Dates": "December 14, 2023 - August 29, 2024", + "Present": "Hand, Hershfang, & Brennan, JJ.", + "County": "Plymouth", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the Superior Court Department on June 29, 2020.\n A motion to amend indictments was heard by Susan E. Sullivan, J., and the cases were tried before Brian A. Davis, J.\n Emma Quinn-Judge (Jennifer M. Herrmann also present) for the", + "Keywords": "Rape. Indecent Assault and Battery. Practice, Criminal, Amendment of indictment or complaint, Indictment. Evidence, First complaint, Prior consistent statement, Prior misconduct. Practice, Criminal, Instructions to jury, Argument by prosecutor. Witness, Credibility." + }, + "ActiveDate": "2024-08-29T14:00:00", + "ExpireDate": "2024-08-29T14:00:00", + "Date": "Aug 29, 2024" + }, + { + "Id": "b787bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "JOHN B. BARRANCO vs. CONTRIBUTORY RETIREMENT APPEAL BOARD & another[1]", + "Context": "Public Employment, Retirement.  Retirement.  Pension.  Teachers' Retirement Board.  Municipal Corporations, Retirement board, Pensions.  Contributory Retirement Appeal Board.  School and School Committee, Retirement benefits.  Administrative Law, Agency's authority.  Notice.  Due Process of Law, Administrative hearing.  Practice, Civil, Judgment on the pleadings", + "UrlName": "slip-opinion-details/john-b.-barranco-vs.-contributory-retirement-appeal-board-another-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "May 8, 2024 - August 29, 2024", + "Details": { + "ParentId": "b787bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-217", + "Dates": "May 8, 2024 - August 29, 2024", + "Present": "Meade, Blake, & Brennan, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior Court Department on February 3, 2020.\n The case was heard by Christine M. Roach, J., on motions for judgment on the pleadings.\n Meredith G. Fierro for the plaintiff.\n Ashley E. Freeman", + "Keywords": "Public Employment, Retirement. Retirement. Pension. Teachers' Retirement Board. Municipal Corporations, Retirement board, Pensions. Contributory Retirement Appeal Board. School and School Committee, Retirement benefits. Administrative Law, Agency's authority. Notice. Due Process of Law, Administrative hearing. Practice, Civil, Judgment on the pleadings" + }, + "ActiveDate": "2024-08-29T14:00:00", + "ExpireDate": "2024-08-29T14:00:00", + "Date": "Aug 29, 2024" + }, + { + "Id": "7383bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH v. JUSTICE GILKES", + "Context": "DECISION AND ORDER DENYING DEFENDANT’S MOTION TO DISMISS INDICTMENT 003", + "UrlName": "slip-opinion-details/commonwealth-v.-justice-gilkes", + "SectionName": "Superior Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "August 21, 2024", + "Details": { + "ParentId": "7383bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "2181CR00484", + "Dates": "August 21, 2024", + "Present": "Kenneth W. Salinger", + "County": "MIDDLESEX", + "Opinion": null, + "ShortOpinion": "Justice Gilkes has been indicted for unlawful possession of a firearm, unlawful possession of a loaded firearm, discharging a firearm within 500 feet of a building, and violating G.L. c. 269, § 11C, by removing a firearm’s serial number or by knowingly receiving a firearm with a defaced serial number.\nMr. Gilkes has moved to dismiss the last of these indictments. He contends that the Massachusetts statute making it a crime to deface a firearm’s serial number or knowingly receive a", + "Keywords": "DECISION AND ORDER DENYING DEFENDANT’S MOTION TO DISMISS INDICTMENT 003" + }, + "ActiveDate": "2024-08-28T14:00:00", + "ExpireDate": "2024-11-28T15:00:00", + "Date": "Aug 28, 2024" + }, + { + "Id": "8183bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "GIUL, LLC v. SHENGHUO MEDICAL, LLC, D/B/A K2 MEDICAL; MICHAEL J. ANTONOPLOS, RICHARD P. BLUMBERG, MARK L. FAUPEL, AND MARK S. PEARLSTEIN", + "Context": "FINDINGS AND CONCLUSIONS AFTER A BENCH TRIAL", + "UrlName": "slip-opinion-details/giul-llc-v.-shenghuo-medical-llc-d-b-a-k2-medical-michael-j.-antonoplos-richard-p.-blumberg-mark-l.-faupel-and-mark-s.-pearlstein", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "August 16, 2024", + "Details": { + "ParentId": "8183bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "1984CV02862-BLS2", + "Dates": "August 16, 2024", + "Present": "Kenneth W. Salinger", + "County": "SUFFOLK", + "Opinion": null, + "ShortOpinion": "GIUL, LLC, contends that it was duped into making a bad investment in Shenghuo Medical, LLC, with the understanding that Shenghuo would use the money invested by GIUL to help fund Shenghuo’s own investment in Guided Therapeutics, Inc. (“GTI”). Some of GIUL’s claims were dismissed. Others were resolved in favor of defendants Shenghuo, Michael Antonoplos, Richard Blumberg, Mark Faupel, and Mark Pearlstein on summary judgment.\nThe Court recently tried GIUL’s remaining", + "Keywords": "FINDINGS AND CONCLUSIONS AFTER A BENCH TRIAL" + }, + "ActiveDate": "2024-08-28T14:00:00", + "ExpireDate": "2024-11-28T15:00:00", + "Date": "Aug 28, 2024" + }, + { + "Id": "b27fbbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. DAVID E. CANJURA", + "Context": "Constitutional Law, Right to bear arms.  Evidence, Knife.  Practice, Criminal, Dismissal.  Words, \"Arms,\" \"Common use,\" \"Dangerous and unusual weapons.\"", + "UrlName": "slip-opinion-details/commonwealth-vs.-david-e.-canjura", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "December 4, 2023 - August 27, 2024", + "Details": { + "ParentId": "b27fbbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13432", + "Dates": "December 4, 2023 - August 27, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, & Georges, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Complaint received and sworn to in the Central Division of the Boston Municipal Court Department on July 6, 2021.\n A motion to dismiss was heard by James M. Stanton, J., and a conditional plea was accepted by him.\n The Supreme Judicial Court granted an application for direct appellate", + "Keywords": "Constitutional Law, Right to bear arms. Evidence, Knife. Practice, Criminal, Dismissal. Words, \"Arms,\" \"Common use,\" \"Dangerous and unusual weapons.\"" + }, + "ActiveDate": "2024-08-27T14:00:00", + "ExpireDate": "2024-11-27T15:00:00", + "Date": "Aug 27, 2024" + }, + { + "Id": "0580bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "BOSTON TEACHERS UNION, LOCAL 66, AMERICAN FEDERATION OF TEACHERS, AFL-CIO vs. SCHOOL COMMITTEE OF BOSTON", + "Context": "Arbitration, School committee, Confirmation of award, Judicial review.  School and School Committee, Arbitration, Collective bargaining.  Statute, Construction.  Practice, Civil, Motion to dismiss, Judgment on the pleadings", + "UrlName": "slip-opinion-details/boston-teachers-union-local-66-american-federation-of-teachers-afl-cio-vs.-school-committee-of-boston", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "March 6, 2024 - August 27, 2024", + "Details": { + "ParentId": "0580bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13491", + "Dates": "March 6, 2024 - August 27, 2024", + "Present": "Budd, C.J., Gaziano, Kafker, Wendlandt, Georges, & Dewar, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior Court Department on March 2, 2022.\n Motions to dismiss and for judgment on the pleadings were heard by Catherine H. Ham, J.\n The Supreme Judicial Court on its own initiative transferred the case from the Appeals", + "Keywords": "Arbitration, School committee, Confirmation of award, Judicial review. School and School Committee, Arbitration, Collective bargaining. Statute, Construction. Practice, Civil, Motion to dismiss, Judgment on the pleadings" + }, + "ActiveDate": "2024-08-27T14:00:00", + "ExpireDate": "2024-11-27T15:00:00", + "Date": "Aug 27, 2024" + }, + { + "Id": "2c80bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "S.S. vs. S.S.", + "Context": "

    Divorce and Separation, Alimony, Child support, Division of property.  Mental Health.

    ", + "UrlName": "slip-opinion-details/s.s.-vs.-s.s", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "June 3, 2024 - August 27, 2024", + "Details": { + "ParentId": "2c80bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-1022", + "Dates": "June 3, 2024 - August 27, 2024", + "Present": "Milkey, Shin, & Englander, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " \n Complaint for divorce filed in the Middlesex Division of the Probate and Family Court Department on May 20, 2021.\n The case was heard by Christine D. Anthony, J.\n Maureen E. Booth (Melanie D. Foxx also present) for the husband.\n Marcus L. Scott for the wife.\n SHIN, J. A judge of the Probate and Family Court issued a second amended judgment of", + "Keywords": "Divorce and Separation, Alimony, Child support, Division of property. Mental Health." + }, + "ActiveDate": "2024-08-27T14:00:00", + "ExpireDate": "2024-11-27T15:00:00", + "Date": "Aug 27, 2024" + }, + { + "Id": "b977bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "COMMONWEALTH vs. MARK TOMAS REGAN", + "Context": "

    Homicide.  Firearms. \nEvidence, Firearm, Fingerprints, Expert opinion.  Witness, Expert.  Constitutional Law, Search and seizure.  Search and Seizure, Emergency, Warrant.  Practice, Criminal, Instructions to jury,\nMotion to suppress.

    ", + "UrlName": "slip-opinion-details/commonwealth-vs.-mark-tomas-regan", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "May 6, 2024 – August 23, 2024", + "Details": { + "ParentId": "b977bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "21-P-1129", + "Dates": "May 6, 2024 – August 23, 2024", + "Present": "Milkey, Hodgens, & Toone, JJ.", + "County": "Suffolk", + "Opinion": null, + "ShortOpinion": " Indictments found and returned in the\nSuperior Court Department on May 15, 2014. \n A pretrial motion to suppress evidence was\nheard by Mary K. Ames, J., and the cases were tried before Jeffrey A. Locke, J.\n ", + "Keywords": "Homicide. Firearms. Evidence, Firearm, Fingerprints, Expert opinion. Witness, Expert. Constitutional Law, Search and seizure. Search and Seizure, Emergency, Warrant. Practice, Criminal, Instructions to jury, Motion to suppress." + }, + "ActiveDate": "2024-08-23T14:00:00", + "ExpireDate": "2024-11-23T15:00:00", + "Date": "Aug 23, 2024" + }, + { + "Id": "e474bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "ERIC PORTER vs. A JUSTICE OF THE DISTRICT COURT DEPARTMENT", + "Context": "

    Constitutional\nLaw, Recall of retired judges.  Practice,\nCivil, Motion to dismiss.

    ", + "UrlName": "slip-opinion-details/eric-porter-vs.-a-justice-of-the-district-court-department", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "August 22, 2024", + "Details": { + "ParentId": "e474bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13553", + "Dates": "August 22, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " The petitioner, Eric Porter, acting pro\nse, filed a petition in the nature of quo warranto in the county court,\npursuant to G. L. c. 249, § 6. \nThe petition sought to contest the constitutionality of the respondent's\nauthority to serve as a justice in the District Court after the age of seventy\nunder G. L. c. 32, § 65G (recall statute). The respondent filed a motion to", + "Keywords": "Constitutional Law, Recall of retired judges. Practice, Civil, Motion to dismiss." + }, + "ActiveDate": "2024-08-22T14:00:00", + "ExpireDate": "2024-11-22T15:00:00", + "Date": "Aug 22, 2024" + }, + { + "Id": "f674bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "TOYSHA LONDON DARBY vs. COMMONWEALTH & others[1]", + "Context": "

    Supreme Judicial\nCourt, Superintendence of inferior courts.

    ", + "UrlName": "slip-opinion-details/toysha-london-darby-vs.-commonwealth-others-1", + "SectionName": "Supreme Judicial Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "August 22, 2024", + "Details": { + "ParentId": "f674bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "SJC-13593", + "Dates": "August 22, 2024", + "Present": "", + "County": "", + "Opinion": null, + "ShortOpinion": " The petitioner, Toysha London Darby, filed\na petition in the county court, pursuant to G. L. c. 211, § 3,\nrequesting various forms of relief, including the issuance of a writ of\nmandamus, a writ of replevin, and emergency injunctive relief. The petition was denied by a single justice\nof this court, and Darby appealed. After\nher appeal was entered in this court, Darby filed a motion", + "Keywords": "Supreme Judicial Court, Superintendence of inferior courts." + }, + "ActiveDate": "2024-08-22T14:00:00", + "ExpireDate": "2024-11-22T15:00:00", + "Date": "Aug 22, 2024" + }, + { + "Id": "0875bbd2-2cac-6f3a-811a-ff00001828f1", + "Parties": "MITTAS EARLY LEARNING, LLC vs. MDC PROPERTIES - WESTFORD RD, LLC, & another[1]", + "Context": "

    Contract, Lease\nof real estate, Construction of contract, Damages, Performance and breach,\nProvision for liquidated damages. \nDamages, Breach of contract, Attorney's fees, Liquidated damages.  Landlord and Tenant, Lease as contract.  Real Property, Lease.  Practice, Civil, Amendment, Attorney's fees,\nSummary judgment.

    ", + "UrlName": "slip-opinion-details/mittas-early-learning-llc-vs.-mdc-properties---westford-rd-llc-another-1", + "SectionName": "Appeals Court", + "Year": "2024", + "Month": "August", + "ArchiveDate": "August 2024", + "Dates": "March 5, 2024 – August 22, 2024", + "Details": { + "ParentId": "0875bbd2-2cac-6f3a-811a-ff00001828f1", + "Docket": "23-P-471", + "Dates": "March 5, 2024 – August 22, 2024", + "Present": "Green, C.J., Henry, & Ditkoff, JJ.", + "County": "Middlesex", + "Opinion": null, + "ShortOpinion": " Civil action commenced in the Superior\nCourt Department on July 20, 2018. \n Motions for summary judgment were heard by\nDiane C. Freniere, J., and the case was heard by Camille F. Sarrouf, Jr., J. \n Scott P. Fink", + "Keywords": "Contract, Lease of real estate, Construction of contract, Damages, Performance and breach, Provision for liquidated damages. Damages, Breach of contract, Attorney's fees, Liquidated damages. Landlord and Tenant, Lease as contract. Real Property, Lease. Practice, Civil, Amendment, Attorney's fees, Summary judgment." + }, + "ActiveDate": "2024-08-22T14:00:00", + "ExpireDate": "2024-11-22T15:00:00", + "Date": "Aug 22, 2024" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/massappct_u_example.compare.json b/tests/examples/opinions/united_states/massappct_u_example.compare.json index 618094e66..f4fd1fc58 100644 --- a/tests/examples/opinions/united_states/massappct_u_example.compare.json +++ b/tests/examples/opinions/united_states/massappct_u_example.compare.json @@ -17,7 +17,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-P-1372", - "case_name_shorts": "Commonwealth" + "case_name_shorts": "" }, { "case_dates": "2020-12-04", @@ -27,7 +27,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-P-1256", - "case_name_shorts": "Commonwealth" + "case_name_shorts": "" }, { "case_dates": "2020-12-04", @@ -37,7 +37,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-P-0254", - "case_name_shorts": "Commonwealth" + "case_name_shorts": "" }, { "case_dates": "2020-12-03", @@ -77,7 +77,7 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-P-1354", - "case_name_shorts": "Commonwealth" + "case_name_shorts": "" }, { "case_dates": "2020-12-03", diff --git a/tests/examples/opinions/united_states/masslandct_example.compare.json b/tests/examples/opinions/united_states/masslandct_example.compare.json index 86668578a..ed5662621 100644 --- a/tests/examples/opinions/united_states/masslandct_example.compare.json +++ b/tests/examples/opinions/united_states/masslandct_example.compare.json @@ -1581,22 +1581,22 @@ }, { "case_dates": "2020-04-16", - "case_names": "Trustees of the Kettle Brook Lofts Condominium Trust v. Kettle Brook Lofts, LLC", - "download_urls": "http://masscases.com/cases/land/2020/2020-15-000302-DECISION.html", + "case_names": "Trustees of the Kettle Brook Lofts Condominium Trust; Kettle Brook Lofts v. Kettle Brook Lofts, LLC; Specht", + "download_urls": "http://masscases.com/cases/land/2020/2020-15-000302-JUDGMENT.html", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "MISC 15-000302", + "docket_numbers": "MISC 15-000302; MISC 15-000545", "case_name_shorts": "" }, { "case_dates": "2020-04-16", - "case_names": "Trustees of the Kettle Brook Lofts Condominium Trust Kettle Brook Lofts v. Kettle Brook Lofts, LLC Specht", - "download_urls": "http://masscases.com/cases/land/2020/2020-15-000302-JUDGMENT.html", + "case_names": "Trustees of the Kettle Brook Lofts Condominium Trust v. Kettle Brook Lofts, LLC", + "download_urls": "http://masscases.com/cases/land/2020/2020-15-000302-DECISION.html", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "MISC 15-000302 MISC 15-000545", + "docket_numbers": "MISC 15-000302", "case_name_shorts": "" }, { @@ -1676,7 +1676,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "MISC 19-000246 MISC 19-000248 MISC 19-000235", + "docket_numbers": "MISC 19-000246; MISC 19-000248; MISC 19-000235", "case_name_shorts": "Bignami" }, { @@ -1686,7 +1686,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "MISC 19-000246 MISC 19-000248 MISC 19-000235", + "docket_numbers": "MISC 19-000246; MISC 19-000248; MISC 19-000235", "case_name_shorts": "Bignami" }, { @@ -2076,7 +2076,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "MISC 18-000019 CV 1881-00027", + "docket_numbers": "MISC 18-000019; CV 1881-00027", "case_name_shorts": "Fisher" }, { @@ -2106,7 +2106,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "MISC 01-271690 MISC 07-364879 MISC 09-394371 MISC 09-409778", + "docket_numbers": "MISC 01-271690; MISC 07-364879; MISC 09-394371; MISC 09-409778", "case_name_shorts": "Wile" }, { diff --git a/tests/examples/opinions/united_states/md_example.compare.json b/tests/examples/opinions/united_states/md_example.compare.json index 0b41839fd..b80434f47 100644 --- a/tests/examples/opinions/united_states/md_example.compare.json +++ b/tests/examples/opinions/united_states/md_example.compare.json @@ -7,9 +7,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "33ag/15", - "judges": "Order", + "judges": "", "citations": "", - "case_name_shorts": "Galbraith" + "case_name_shorts": "Galbraith", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-08-11", @@ -21,7 +23,9 @@ "docket_numbers": "85/14", "judges": "Greene", "citations": "", - "case_name_shorts": "Varriale" + "case_name_shorts": "Varriale", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-08-10", @@ -31,9 +35,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "5ag/15", - "judges": "Order", + "judges": "", "citations": "", - "case_name_shorts": "Scott" + "case_name_shorts": "Scott", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-08-06", @@ -45,7 +51,9 @@ "docket_numbers": "55/14", "judges": "McDonald", "citations": "", - "case_name_shorts": "Bontempo" + "case_name_shorts": "Bontempo", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-08-06", @@ -57,7 +65,9 @@ "docket_numbers": "22ag/14", "judges": "Greene", "citations": "", - "case_name_shorts": "Shephard" + "case_name_shorts": "Shephard", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-08-04", @@ -67,9 +77,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "93pc/14", - "judges": "PC Order", + "judges": "", "citations": "", - "case_name_shorts": "Royal" + "case_name_shorts": "Royal", + "per_curiam": true, + "other_dates": "" }, { "case_dates": "2015-08-04", @@ -81,7 +93,9 @@ "docket_numbers": "88/14", "judges": "Adkins", "citations": "", - "case_name_shorts": "Griffin" + "case_name_shorts": "Griffin", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-27", @@ -93,7 +107,9 @@ "docket_numbers": "7/14", "judges": "Barbera", "citations": "", - "case_name_shorts": "Spence" + "case_name_shorts": "Spence", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-27", @@ -105,7 +121,9 @@ "docket_numbers": "43/14", "judges": "McDonald", "citations": "", - "case_name_shorts": "Sinclair" + "case_name_shorts": "Sinclair", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-27", @@ -117,7 +135,9 @@ "docket_numbers": "80/14", "judges": "Harrell", "citations": "", - "case_name_shorts": "Preston" + "case_name_shorts": "Preston", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-27", @@ -129,7 +149,9 @@ "docket_numbers": "13/14", "judges": "McDonald", "citations": "", - "case_name_shorts": "Peterson" + "case_name_shorts": "Peterson", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-27", @@ -141,7 +163,9 @@ "docket_numbers": "11/14", "judges": "Barbera", "citations": "", - "case_name_shorts": "Demby" + "case_name_shorts": "Demby", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-27", @@ -153,7 +177,9 @@ "docket_numbers": "65/14", "judges": "Barbera", "citations": "", - "case_name_shorts": "Counts" + "case_name_shorts": "Counts", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-27", @@ -165,7 +191,9 @@ "docket_numbers": "34ag/14", "judges": "McDonald", "citations": "", - "case_name_shorts": "Trye" + "case_name_shorts": "Trye", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-27", @@ -177,7 +205,9 @@ "docket_numbers": "18ag/13", "judges": "Harrell", "citations": "", - "case_name_shorts": "Hamilton" + "case_name_shorts": "Hamilton", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-27", @@ -189,7 +219,9 @@ "docket_numbers": "56ag/13", "judges": "Greene", "citations": "", - "case_name_shorts": "Gray" + "case_name_shorts": "Gray", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-24", @@ -201,7 +233,9 @@ "docket_numbers": "82/14", "judges": "Adkins", "citations": "", - "case_name_shorts": "Scarfield" + "case_name_shorts": "Scarfield", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-24", @@ -213,7 +247,9 @@ "docket_numbers": "87/14", "judges": "Watts", "citations": "", - "case_name_shorts": "Cooper" + "case_name_shorts": "Cooper", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-24", @@ -225,7 +261,9 @@ "docket_numbers": "9ag/14", "judges": "Watts", "citations": "", - "case_name_shorts": "Haley" + "case_name_shorts": "Haley", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-13", @@ -235,9 +273,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "47/14", - "judges": "Per Curiam", + "judges": "", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": true, + "other_dates": "" }, { "case_dates": "2015-07-10", @@ -247,9 +287,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "26ag/15", - "judges": "Order", + "judges": "", "citations": "", - "case_name_shorts": "Reyes" + "case_name_shorts": "Reyes", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-10", @@ -259,9 +301,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "3ag/15", - "judges": "Order", + "judges": "", "citations": "", - "case_name_shorts": "Killian" + "case_name_shorts": "Killian", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-07-09", @@ -273,7 +317,9 @@ "docket_numbers": "67/14", "judges": "Battaglia", "citations": "", - "case_name_shorts": "Norton" + "case_name_shorts": "Norton", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-30", @@ -285,7 +331,9 @@ "docket_numbers": "14ag/14", "judges": "Watts", "citations": "", - "case_name_shorts": "Shuler" + "case_name_shorts": "Shuler", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-29", @@ -297,7 +345,9 @@ "docket_numbers": "68/14", "judges": "Greene", "citations": "", - "case_name_shorts": "Ford" + "case_name_shorts": "Ford", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-25", @@ -309,7 +359,9 @@ "docket_numbers": "84/14", "judges": "Battaglia", "citations": "", - "case_name_shorts": "Dashiell" + "case_name_shorts": "Dashiell", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-25", @@ -319,9 +371,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "108ag/14", - "judges": "Order", + "judges": "", "citations": "", - "case_name_shorts": "Gertner" + "case_name_shorts": "Gertner", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-24", @@ -331,9 +385,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "109ag/14", - "judges": "Order", + "judges": "", "citations": "", - "case_name_shorts": "Chirumbole" + "case_name_shorts": "Chirumbole", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-23", @@ -345,7 +401,9 @@ "docket_numbers": "71/14", "judges": "Adkins", "citations": "", - "case_name_shorts": "Windesheim" + "case_name_shorts": "Windesheim", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-23", @@ -357,7 +415,9 @@ "docket_numbers": "5ag/14", "judges": "McDonald", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-23", @@ -369,7 +429,9 @@ "docket_numbers": "73ag/13", "judges": "McDonald", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-23", @@ -381,7 +443,9 @@ "docket_numbers": "6ag/14", "judges": "Adkins", "citations": "", - "case_name_shorts": "Katz" + "case_name_shorts": "Katz", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-18", @@ -393,7 +457,9 @@ "docket_numbers": "69/14", "judges": "Harrell", "citations": "", - "case_name_shorts": "WSSC" + "case_name_shorts": "WSSC", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-18", @@ -405,7 +471,9 @@ "docket_numbers": "72/14", "judges": "Harrell", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-18", @@ -417,7 +485,9 @@ "docket_numbers": "83/14", "judges": "Watts", "citations": "", - "case_name_shorts": "Hranicka" + "case_name_shorts": "Hranicka", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-17", @@ -427,9 +497,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "101ag/14", - "judges": "Order", + "judges": "", "citations": "", - "case_name_shorts": "Resignation of Wees" + "case_name_shorts": "Resignation of Wees", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-17", @@ -439,9 +511,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "11ag/15", - "judges": "Order", + "judges": "", "citations": "", - "case_name_shorts": "Reinstatement of Joseph" + "case_name_shorts": "Reinstatement of Joseph", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-09", @@ -451,9 +525,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "105ag/14", - "judges": "Order", + "judges": "", "citations": "", - "case_name_shorts": "Peklo" + "case_name_shorts": "Peklo", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-09", @@ -463,9 +539,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "6ag/15", - "judges": "Order", + "judges": "", "citations": "", - "case_name_shorts": "Floam" + "case_name_shorts": "Floam", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-05", @@ -475,9 +553,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "9agpc/14", - "judges": "PC Order", + "judges": "", "citations": "", - "case_name_shorts": "Haley" + "case_name_shorts": "Haley", + "per_curiam": true, + "other_dates": "" }, { "case_dates": "2015-06-05", @@ -487,9 +567,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "62ag/14", - "judges": "Order", + "judges": "", "citations": "", - "case_name_shorts": "Baylor" + "case_name_shorts": "Baylor", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-05", @@ -499,9 +581,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "39m/14", - "judges": "Order", + "judges": "", "citations": "", - "case_name_shorts": "Application of Tabiei" + "case_name_shorts": "Application of Tabiei", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-04", @@ -511,9 +595,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "76ag/14", - "judges": "Order", + "judges": "", "citations": "", - "case_name_shorts": "Ramsey" + "case_name_shorts": "Ramsey", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-03", @@ -525,7 +611,9 @@ "docket_numbers": "57/14", "judges": "Greene", "citations": "443 Md. 199", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-06-01", @@ -535,9 +623,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21ag/15", - "judges": "Order", + "judges": "", "citations": "443 Md. 198", - "case_name_shorts": "Kang" + "case_name_shorts": "Kang", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-05-28", @@ -549,11 +639,13 @@ "docket_numbers": "77/14", "judges": "McDonald", "citations": "443 Md. 177", - "case_name_shorts": "Wilcox" + "case_name_shorts": "Wilcox", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-05-27", - "case_names": "Woznicki v. GEICO Morse v. Erie Insurance", + "case_names": "Woznicki v. GEICO; Morse v. Erie Insurance", "download_urls": "/opinions/coa/2015/52a14.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -561,7 +653,9 @@ "docket_numbers": "52/14", "judges": "Greene", "citations": "443 Md. 93", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-05-27", @@ -573,7 +667,9 @@ "docket_numbers": "75/14", "judges": "Battaglia", "citations": "443 Md. 148", - "case_name_shorts": "Shader" + "case_name_shorts": "Shader", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-05-22", @@ -585,7 +681,9 @@ "docket_numbers": "76/14", "judges": "Watts", "citations": "443 Md. 47", - "case_name_shorts": "Thompson" + "case_name_shorts": "Thompson", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-05-22", @@ -597,7 +695,9 @@ "docket_numbers": "66/14", "judges": "Watts", "citations": "443 Md. 15", - "case_name_shorts": "Breeding" + "case_name_shorts": "Breeding", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-05-22", @@ -609,7 +709,9 @@ "docket_numbers": "63/14", "judges": "Adkins", "citations": "443 Md. 1", - "case_name_shorts": "Bonilla" + "case_name_shorts": "Bonilla", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-05-22", @@ -621,7 +723,9 @@ "docket_numbers": "86ag/09", "judges": "Adkins", "citations": "443 Md. 75", - "case_name_shorts": "Eckel" + "case_name_shorts": "Eckel", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-05-13", @@ -631,9 +735,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18agpc/13", - "judges": "PC Order", + "judges": "", "citations": "442 Md. 740", - "case_name_shorts": "Hamilton" + "case_name_shorts": "Hamilton", + "per_curiam": true, + "other_dates": "" }, { "case_dates": "2015-05-13", @@ -643,9 +749,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "14ag/15", - "judges": "Order", + "judges": "", "citations": "442 Md. 741", - "case_name_shorts": "Baber" + "case_name_shorts": "Baber", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-05-11", @@ -655,9 +763,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "77ag/14", - "judges": "Order", + "judges": "", "citations": "442 Md. 439", - "case_name_shorts": "McDaniel" + "case_name_shorts": "McDaniel", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-05-11", @@ -667,9 +777,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "6agpc/14", - "judges": "PC Order", + "judges": "", "citations": "442 Md. 737", - "case_name_shorts": "Katz" + "case_name_shorts": "Katz", + "per_curiam": true, + "other_dates": "" }, { "case_dates": "2015-05-11", @@ -679,9 +791,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "100ag/14", - "judges": "Order", + "judges": "", "citations": "442 Md. 738", - "case_name_shorts": "Aquia" + "case_name_shorts": "Aquia", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-05-08", @@ -691,9 +805,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "5agpc/14", - "judges": "PC Order", + "judges": "", "citations": "442 Md. 736", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": true, + "other_dates": "" }, { "case_dates": "2015-05-01", @@ -703,9 +819,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "64ag/14", - "judges": "Order", + "judges": "", "citations": "442 Md. 684", - "case_name_shorts": "Burkhardt" + "case_name_shorts": "Burkhardt", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-04-23", @@ -717,7 +835,9 @@ "docket_numbers": "42/14", "judges": "Battaglia", "citations": "442 Md. 632", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-04-22", @@ -729,7 +849,9 @@ "docket_numbers": "4m/14", "judges": "Battaglia", "citations": "442 Md. 716", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-04-21", @@ -741,7 +863,9 @@ "docket_numbers": "56/14", "judges": "Battaglia", "citations": "442 Md. 616", - "case_name_shorts": "Yancey" + "case_name_shorts": "Yancey", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-04-21", @@ -753,7 +877,9 @@ "docket_numbers": "51/14", "judges": "Adkins", "citations": "442 Md. 685", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-04-21", @@ -765,7 +891,9 @@ "docket_numbers": "39/14", "judges": "Harrell", "citations": "442 Md. 595", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-04-21", @@ -777,11 +905,13 @@ "docket_numbers": "29/14", "judges": "Harrell", "citations": "442 Md. 539", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-04-20", - "case_names": "Baltimore Co. v. Thiergartner Walters v. Balt. Co.", + "case_names": "Baltimore Co. v. Thiergartner; Walters v. Balt. Co.", "download_urls": "/opinions/coa/2015/44a14.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -789,7 +919,9 @@ "docket_numbers": "44/14", "judges": "McDonald", "citations": "442 Md. 518", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-04-17", @@ -801,7 +933,9 @@ "docket_numbers": "62/14", "judges": "Watts", "citations": "442 Md. 488", - "case_name_shorts": "Hailes" + "case_name_shorts": "Hailes", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-04-17", @@ -813,7 +947,9 @@ "docket_numbers": "45/14", "judges": "Harrell", "citations": "442 Md. 466", - "case_name_shorts": "Connors" + "case_name_shorts": "Connors", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-04-07", @@ -825,7 +961,9 @@ "docket_numbers": "22/14", "judges": "Barbera", "citations": "442 Md. 446", - "case_name_shorts": "Simpson" + "case_name_shorts": "Simpson", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-04-07", @@ -835,9 +973,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "94ag/14", - "judges": "Order", + "judges": "", "citations": "442 Md. 465", - "case_name_shorts": "Rollison" + "case_name_shorts": "Rollison", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-04-01", @@ -849,7 +989,9 @@ "docket_numbers": "48/14", "judges": "Greene", "citations": "442 Md. 419", - "case_name_shorts": "Manion" + "case_name_shorts": "Manion", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-30", @@ -861,7 +1003,9 @@ "docket_numbers": "38/14", "judges": "McDonald", "citations": "442 Md. 384", - "case_name_shorts": "Payne" + "case_name_shorts": "Payne", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-30", @@ -873,7 +1017,9 @@ "docket_numbers": "31/14", "judges": "McDonald", "citations": "442 Md. 289", - "case_name_shorts": "Milburn" + "case_name_shorts": "Milburn", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-30", @@ -885,7 +1031,9 @@ "docket_numbers": "49/14", "judges": "Harrell", "citations": "442 Md. 354", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-30", @@ -897,7 +1045,9 @@ "docket_numbers": "40/14", "judges": "Harrell", "citations": "442 Md. 254", - "case_name_shorts": "Harrison-Solomon" + "case_name_shorts": "Harrison-Solomon", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-30", @@ -909,7 +1059,9 @@ "docket_numbers": "35/14", "judges": "Greene", "citations": "442 Md. 311", - "case_name_shorts": "Espina" + "case_name_shorts": "Espina", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-27", @@ -921,7 +1073,9 @@ "docket_numbers": "53/14", "judges": "Watts", "citations": "442 Md. 211", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-27", @@ -933,7 +1087,9 @@ "docket_numbers": "41/14", "judges": "Watts", "citations": "442 Md. 226", - "case_name_shorts": "Garner" + "case_name_shorts": "Garner", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-27", @@ -945,7 +1101,9 @@ "docket_numbers": "64ag/13", "judges": "Watts", "citations": "442 Md. 197", - "case_name_shorts": "Marcalus" + "case_name_shorts": "Marcalus", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-26", @@ -955,9 +1113,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "83ag/14", - "judges": "Order", + "judges": "", "citations": "442 Md. 193", - "case_name_shorts": "Reinstatement of Holt" + "case_name_shorts": "Reinstatement of Holt", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-13", @@ -967,9 +1127,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "63ag/14", - "judges": "Order", + "judges": "", "citations": "442 Md. 192", - "case_name_shorts": "McNally" + "case_name_shorts": "McNally", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-09", @@ -981,7 +1143,9 @@ "docket_numbers": "37/14", "judges": "Battaglia", "citations": "442 Md. 168", - "case_name_shorts": "Smiley" + "case_name_shorts": "Smiley", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-04", @@ -991,9 +1155,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "85ag/13", - "judges": "Order", + "judges": "", "citations": "442 Md. 167", - "case_name_shorts": "Wray" + "case_name_shorts": "Wray", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-04", @@ -1005,7 +1171,9 @@ "docket_numbers": "15ag/14", "judges": "Harrell", "citations": "442 Md. 151", - "case_name_shorts": "Burghardt" + "case_name_shorts": "Burghardt", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-02", @@ -1015,9 +1183,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "92pc/14", - "judges": "PC Order", + "judges": "", "citations": "442 Md. 150", - "case_name_shorts": "Fuller" + "case_name_shorts": "Fuller", + "per_curiam": true, + "other_dates": "" }, { "case_dates": "2015-03-02", @@ -1029,7 +1199,9 @@ "docket_numbers": "86ag/12", "judges": "Battaglia", "citations": "442 Md. 91", - "case_name_shorts": "Barton" + "case_name_shorts": "Barton", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-03-02", @@ -1041,7 +1213,9 @@ "docket_numbers": "1m/14", "judges": "Harrell", "citations": "442 Md. 67", - "case_name_shorts": "Antonio" + "case_name_shorts": "Antonio", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-02-24", @@ -1051,9 +1225,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21pc/14", - "judges": "PC Order", + "judges": "", "citations": "442 Md. 55", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": true, + "other_dates": "" }, { "case_dates": "2015-02-24", @@ -1063,9 +1239,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "38ag/14", - "judges": "Order", + "judges": "", "citations": "442 Md. 66", - "case_name_shorts": "James" + "case_name_shorts": "James", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-02-23", @@ -1077,7 +1255,9 @@ "docket_numbers": "23/14", "judges": "McDonald", "citations": "441 Md. 673", - "case_name_shorts": "Oglesby" + "case_name_shorts": "Oglesby", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-02-23", @@ -1087,9 +1267,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "89ag/14", - "judges": "Order", + "judges": "", "citations": "442 Md. 54", - "case_name_shorts": "Worthy" + "case_name_shorts": "Worthy", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-02-23", @@ -1101,7 +1283,9 @@ "docket_numbers": "3ag/13", "judges": "McDonald", "citations": "442 Md. 14", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-02-23", @@ -1113,7 +1297,9 @@ "docket_numbers": "1ag/14", "judges": "Adkins", "citations": "442 Md. 1", - "case_name_shorts": "Cocco" + "case_name_shorts": "Cocco", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-02-23", @@ -1125,7 +1311,9 @@ "docket_numbers": "30ag/13", "judges": "Watts", "citations": "441 Md. 703", - "case_name_shorts": "Basinger" + "case_name_shorts": "Basinger", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-02-20", @@ -1137,7 +1325,9 @@ "docket_numbers": "5m/14", "judges": "Greene", "citations": "441 Md. 671", - "case_name_shorts": "Schlossberg" + "case_name_shorts": "Schlossberg", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-02-13", @@ -1147,9 +1337,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "88ag/14", - "judges": "Order", + "judges": "", "citations": "441 Md. 664", - "case_name_shorts": "Shields" + "case_name_shorts": "Shields", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-02-05", @@ -1159,9 +1351,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "64agpc/13", - "judges": "PC Order", + "judges": "", "citations": "441 Md. 619", - "case_name_shorts": "Marcalus" + "case_name_shorts": "Marcalus", + "per_curiam": true, + "other_dates": "" }, { "case_dates": "2015-02-05", @@ -1173,7 +1367,9 @@ "docket_numbers": "72ag/12", "judges": "Barbera", "citations": "441 Md. 590", - "case_name_shorts": "Adams" + "case_name_shorts": "Adams", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-02-04", @@ -1185,7 +1381,9 @@ "docket_numbers": "25/14", "judges": "Adkins", "citations": "441 Md. 560", - "case_name_shorts": "Lovelace" + "case_name_shorts": "Lovelace", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-02-02", @@ -1197,7 +1395,9 @@ "docket_numbers": "7ag/13", "judges": "Battaglia", "citations": "441 Md. 416", - "case_name_shorts": "Mixter" + "case_name_shorts": "Mixter", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-30", @@ -1209,7 +1409,9 @@ "docket_numbers": "83ag/13", "judges": "Harrell", "citations": "441 Md. 367", - "case_name_shorts": "Shapiro" + "case_name_shorts": "Shapiro", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-29", @@ -1221,7 +1423,9 @@ "docket_numbers": "19/14", "judges": "Greene", "citations": "441 Md. 621", - "case_name_shorts": "Rounds" + "case_name_shorts": "Rounds", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-28", @@ -1231,9 +1435,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "82ag/14", - "judges": "Order", + "judges": "", "citations": "441 Md. 366", - "case_name_shorts": "Alonso" + "case_name_shorts": "Alonso", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-27", @@ -1245,7 +1451,9 @@ "docket_numbers": "26/14", "judges": "Adkins", "citations": "441 Md. 275", - "case_name_shorts": "Kelly" + "case_name_shorts": "Kelly", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-27", @@ -1257,7 +1465,9 @@ "docket_numbers": "30/14", "judges": "Battaglia", "citations": "441 Md. 290", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-27", @@ -1269,7 +1479,9 @@ "docket_numbers": "27/14", "judges": "Harrell", "citations": "441 Md. 310", - "case_name_shorts": "Cunningham" + "case_name_shorts": "Cunningham", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-27", @@ -1281,7 +1493,9 @@ "docket_numbers": "48ag/13", "judges": "Greene", "citations": "441 Md. 248", - "case_name_shorts": "Olszewski" + "case_name_shorts": "Olszewski", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-27", @@ -1291,9 +1505,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21ag/14", - "judges": "Order", + "judges": "", "citations": "441 Md. 351", - "case_name_shorts": "Green" + "case_name_shorts": "Green", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-27", @@ -1305,7 +1521,9 @@ "docket_numbers": "31ag/13", "judges": "Greene", "citations": "441 Md. 352", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-26", @@ -1317,7 +1535,9 @@ "docket_numbers": "12ag/14", "judges": "Adkins", "citations": "441 Md. 237", - "case_name_shorts": "Buehler" + "case_name_shorts": "Buehler", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-23", @@ -1329,7 +1549,9 @@ "docket_numbers": "28/14", "judges": "Watts", "citations": "441 Md. 220", - "case_name_shorts": "Callahan" + "case_name_shorts": "Callahan", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-22", @@ -1339,9 +1561,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "48ag/14", - "judges": "Order", + "judges": "", "citations": "441 Md. 216", - "case_name_shorts": "Phillips" + "case_name_shorts": "Phillips", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-16", @@ -1351,9 +1575,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "37ag/14", - "judges": "Order", + "judges": "", "citations": "441 Md. 214", - "case_name_shorts": "Brigerman" + "case_name_shorts": "Brigerman", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-15", @@ -1363,9 +1589,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "44ag/14", - "judges": "Order", + "judges": "", "citations": "441 Md. 213", - "case_name_shorts": "Olander" + "case_name_shorts": "Olander", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2015-01-13", @@ -1375,8 +1603,10 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "74ag/14", - "judges": "Order", + "judges": "", "citations": "441 Md. 212", - "case_name_shorts": "Feldman" + "case_name_shorts": "Feldman", + "per_curiam": false, + "other_dates": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/mdctspecapp_example.compare.json b/tests/examples/opinions/united_states/mdctspecapp_example.compare.json index ba28bffb3..209533b26 100644 --- a/tests/examples/opinions/united_states/mdctspecapp_example.compare.json +++ b/tests/examples/opinions/united_states/mdctspecapp_example.compare.json @@ -9,7 +9,9 @@ "docket_numbers": "0845/13", "judges": "Leahy", "citations": "", - "case_name_shorts": "Shader" + "case_name_shorts": "Shader", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-06-26", @@ -21,7 +23,9 @@ "docket_numbers": "1603/13", "judges": "Raker", "citations": "", - "case_name_shorts": "Meredith" + "case_name_shorts": "Meredith", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-06-26", @@ -33,7 +37,9 @@ "docket_numbers": "0917/13", "judges": "Eyler, D.", "citations": "", - "case_name_shorts": "Doe" + "case_name_shorts": "Doe", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-06-26", @@ -45,7 +51,9 @@ "docket_numbers": "0849/13", "judges": "Moylan", "citations": "", - "case_name_shorts": "Cooper" + "case_name_shorts": "Cooper", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-06-25", @@ -57,7 +65,9 @@ "docket_numbers": "1836/12", "judges": "Kenney", "citations": "", - "case_name_shorts": "Westray" + "case_name_shorts": "Westray", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-06-25", @@ -69,7 +79,9 @@ "docket_numbers": "0352/13", "judges": "Hotten", "citations": "", - "case_name_shorts": "Thompson" + "case_name_shorts": "Thompson", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-06-25", @@ -81,7 +93,9 @@ "docket_numbers": "0766/13", "judges": "Hotten", "citations": "", - "case_name_shorts": "Larocca" + "case_name_shorts": "Larocca", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-06-25", @@ -93,7 +107,9 @@ "docket_numbers": "1863/12", "judges": "Sharer", "citations": "", - "case_name_shorts": "Nadel" + "case_name_shorts": "Nadel", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-06-25", @@ -105,7 +121,9 @@ "docket_numbers": "0333/13", "judges": "Hotten", "citations": "", - "case_name_shorts": "Stokes" + "case_name_shorts": "Stokes", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-06-24", @@ -117,7 +135,9 @@ "docket_numbers": "1420/12", "judges": "Krauser", "citations": "", - "case_name_shorts": "Wilcox" + "case_name_shorts": "Wilcox", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-06-24", @@ -129,7 +149,9 @@ "docket_numbers": "2382/08", "judges": "Berger", "citations": "", - "case_name_shorts": "Norton" + "case_name_shorts": "Norton", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-06-24", @@ -141,7 +163,9 @@ "docket_numbers": "0415/12", "judges": "Sharer", "citations": "", - "case_name_shorts": "Daniels" + "case_name_shorts": "Daniels", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-05-29", @@ -153,7 +177,9 @@ "docket_numbers": "2117/12", "judges": "Nazarian", "citations": "", - "case_name_shorts": "Valentine-Bowers" + "case_name_shorts": "Valentine-Bowers", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-05-28", @@ -165,7 +191,9 @@ "docket_numbers": "0269/13", "judges": "Woodward", "citations": "", - "case_name_shorts": "Thomas" + "case_name_shorts": "Thomas", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-05-28", @@ -177,7 +205,9 @@ "docket_numbers": "0259/13", "judges": "Berger", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-05-28", @@ -189,7 +219,9 @@ "docket_numbers": "1394/13", "judges": "Krauser", "citations": "", - "case_name_shorts": "Drexler" + "case_name_shorts": "Drexler", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-05-27", @@ -201,7 +233,9 @@ "docket_numbers": "2551/12", "judges": "Graeff", "citations": "", - "case_name_shorts": "Wilson" + "case_name_shorts": "Wilson", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-05-27", @@ -213,7 +247,9 @@ "docket_numbers": "2384/13", "judges": "Moylan", "citations": "", - "case_name_shorts": "Hailes" + "case_name_shorts": "Hailes", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-05-27", @@ -225,7 +261,9 @@ "docket_numbers": "0508/12", "judges": "Salmon", "citations": "", - "case_name_shorts": "Bonilla" + "case_name_shorts": "Bonilla", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-05-27", @@ -237,7 +275,9 @@ "docket_numbers": "2393/12", "judges": "Meredith", "citations": "", - "case_name_shorts": "Baker" + "case_name_shorts": "Baker", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-05-01", @@ -249,7 +289,9 @@ "docket_numbers": "0677/13", "judges": "Arthur", "citations": "", - "case_name_shorts": "White" + "case_name_shorts": "White", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-05-01", @@ -261,7 +303,9 @@ "docket_numbers": "2684/12", "judges": "Eyler, D.", "citations": "", - "case_name_shorts": "Hayes" + "case_name_shorts": "Hayes", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-05-01", @@ -273,7 +317,9 @@ "docket_numbers": "0761/13", "judges": "Nazarian", "citations": "", - "case_name_shorts": "Burr" + "case_name_shorts": "Burr", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-05-01", @@ -285,7 +331,9 @@ "docket_numbers": "0099/13", "judges": "Kenney", "citations": "", - "case_name_shorts": "Abe" + "case_name_shorts": "Abe", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-04-30", @@ -297,7 +345,9 @@ "docket_numbers": "1888/12", "judges": "Kenney", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-04-30", @@ -309,7 +359,9 @@ "docket_numbers": "0109/13", "judges": "Berger", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-04-30", @@ -321,7 +373,9 @@ "docket_numbers": "0678/12", "judges": "Nazarian", "citations": "", - "case_name_shorts": "Bontempo" + "case_name_shorts": "Bontempo", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-04-30", @@ -333,7 +387,9 @@ "docket_numbers": "0405/12", "judges": "Meredith", "citations": "", - "case_name_shorts": "Bergeris" + "case_name_shorts": "Bergeris", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-04-29", @@ -345,7 +401,9 @@ "docket_numbers": "0532/13", "judges": "Kehoe", "citations": "", - "case_name_shorts": "Woznicki" + "case_name_shorts": "Woznicki", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-04-29", @@ -357,7 +415,9 @@ "docket_numbers": "0511/13", "judges": "Moylan", "citations": "", - "case_name_shorts": "Morse" + "case_name_shorts": "Morse", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-04-29", @@ -369,7 +429,9 @@ "docket_numbers": "0291/13", "judges": "Salmon", "citations": "", - "case_name_shorts": "Gravette" + "case_name_shorts": "Gravette", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-03-27", @@ -381,7 +443,9 @@ "docket_numbers": "0051/13", "judges": "Zarnoch", "citations": "216 Md.App. 613", - "case_name_shorts": "Early" + "case_name_shorts": "Early", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-03-27", @@ -393,7 +457,9 @@ "docket_numbers": "0335/13", "judges": "Meredith", "citations": "216 Md.App. 634", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-03-27", @@ -405,7 +471,9 @@ "docket_numbers": "0821/12", "judges": "Matricciani", "citations": "216 Md.App. 650", - "case_name_shorts": "Dugan" + "case_name_shorts": "Dugan", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-03-27", @@ -417,7 +485,9 @@ "docket_numbers": "0765/13", "judges": "Graeff", "citations": "216 Md.App. 667", - "case_name_shorts": "Beattie" + "case_name_shorts": "Beattie", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-03-26", @@ -429,7 +499,9 @@ "docket_numbers": "0763/12", "judges": "Zarnoch", "citations": "216 Md.App. 546", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-03-26", @@ -441,7 +513,9 @@ "docket_numbers": "2366/12", "judges": "Wright", "citations": "216 Md.App. 572", - "case_name_shorts": "Matthews" + "case_name_shorts": "Matthews", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-03-26", @@ -453,7 +527,9 @@ "docket_numbers": "0017/13", "judges": "Wright", "citations": "216 Md.App. 586", - "case_name_shorts": "Leopold" + "case_name_shorts": "Leopold", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-03-26", @@ -465,7 +541,9 @@ "docket_numbers": "2317/12", "judges": "Berger", "citations": "216 Md.App. 530", - "case_name_shorts": "Dyer" + "case_name_shorts": "Dyer", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-03-26", @@ -477,7 +555,9 @@ "docket_numbers": "2053/12", "judges": "Sharer", "citations": "216 Md.App. 560", - "case_name_shorts": "Thiergartner" + "case_name_shorts": "Thiergartner", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-03-25", @@ -489,7 +569,9 @@ "docket_numbers": "0773/11", "judges": "Woodward", "citations": "216 Md.App. 418", - "case_name_shorts": "Connors" + "case_name_shorts": "Connors", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-03-04", @@ -501,7 +583,9 @@ "docket_numbers": "0044/13", "judges": "Eyler, J.", "citations": "216 Md.App. 376", - "case_name_shorts": "Vito" + "case_name_shorts": "Vito", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-03-04", @@ -513,7 +597,9 @@ "docket_numbers": "0049/13", "judges": "Nazarian", "citations": "216 Md.App. 386", - "case_name_shorts": "Abrishamian" + "case_name_shorts": "Abrishamian", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-28", @@ -525,7 +611,9 @@ "docket_numbers": "2429/12", "judges": "Hotten", "citations": "216 Md.App. 322", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-28", @@ -537,7 +625,9 @@ "docket_numbers": "2407/12", "judges": "Kehoe", "citations": "216 Md.App. 492", - "case_name_shorts": "Malaska" + "case_name_shorts": "Malaska", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-28", @@ -549,7 +639,9 @@ "docket_numbers": "2614/12", "judges": "Graeff", "citations": "216 Md.App. 347", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-28", @@ -561,7 +653,9 @@ "docket_numbers": "2302/12", "judges": "Matricciani", "citations": "216 Md.App. 471", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-28", @@ -573,7 +667,9 @@ "docket_numbers": "2344/12", "judges": "Eyler, D.", "citations": "216 Md.App. 306", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-27", @@ -585,7 +681,9 @@ "docket_numbers": "1800/12", "judges": "Moylan", "citations": "216 Md.App. 275", - "case_name_shorts": "Cooch" + "case_name_shorts": "Cooch", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-26", @@ -597,7 +695,9 @@ "docket_numbers": "1782/12", "judges": "Moylan", "citations": "216 Md.App. 235", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-26", @@ -609,7 +709,9 @@ "docket_numbers": "1691/12", "judges": "Matricciani", "citations": "216 Md.App. 205", - "case_name_shorts": "Reynolds" + "case_name_shorts": "Reynolds", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-26", @@ -621,7 +723,9 @@ "docket_numbers": "1129/12", "judges": "Nazarian", "citations": "216 Md.App. 178", - "case_name_shorts": "Prince" + "case_name_shorts": "Prince", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-25", @@ -633,7 +737,9 @@ "docket_numbers": "2724/11", "judges": "Woodward", "citations": "216 Md.App. 155", - "case_name_shorts": "Stevens" + "case_name_shorts": "Stevens", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-25", @@ -645,7 +751,9 @@ "docket_numbers": "1118/12", "judges": "Moylan", "citations": "216 Md.App. 439", - "case_name_shorts": "Ochse" + "case_name_shorts": "Ochse", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-25", @@ -657,7 +765,9 @@ "docket_numbers": "0146/11", "judges": "Eyler, D.", "citations": "216 Md.App. 105", - "case_name_shorts": "Hawes" + "case_name_shorts": "Hawes", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-25", @@ -669,7 +779,9 @@ "docket_numbers": "2253/11", "judges": "Graeff", "citations": "216 Md.App. 138", - "case_name_shorts": "Harrison-Solomon" + "case_name_shorts": "Harrison-Solomon", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-02-03", @@ -681,7 +793,9 @@ "docket_numbers": "2965/10", "judges": "Kenney", "citations": "216 Md.App. 82", - "case_name_shorts": "Stern" + "case_name_shorts": "Stern", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-01-29", @@ -693,7 +807,9 @@ "docket_numbers": "2237/12", "judges": "Moylan", "citations": "216 Md.App. 1", - "case_name_shorts": "Smiley" + "case_name_shorts": "Smiley", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-01-29", @@ -705,7 +821,9 @@ "docket_numbers": "0961/12", "judges": "Thieme", "citations": "215 Md.App. 674", - "case_name_shorts": "Payne" + "case_name_shorts": "Payne", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-01-29", @@ -717,7 +835,9 @@ "docket_numbers": "0046/13", "judges": "Moylan", "citations": "216 Md.App. 39", - "case_name_shorts": "Payne" + "case_name_shorts": "Payne", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-01-29", @@ -729,7 +849,9 @@ "docket_numbers": "0693/13", "judges": "Graeff", "citations": "216 Md.App. 58", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-01-29", @@ -741,7 +863,9 @@ "docket_numbers": "1538/12", "judges": "Graeff", "citations": "215 Md.App. 686", - "case_name_shorts": "Donati" + "case_name_shorts": "Donati", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-01-29", @@ -753,7 +877,9 @@ "docket_numbers": "1078/12", "judges": "Nazarian", "citations": "216 Md.App. 259", - "case_name_shorts": "Comptroller" + "case_name_shorts": "Comptroller", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2014-01-28", @@ -765,6 +891,8 @@ "docket_numbers": "2552/11", "judges": "Kenney", "citations": "215 Md.App. 660", - "case_name_shorts": "Keyes" + "case_name_shorts": "Keyes", + "per_curiam": false, + "other_dates": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/mdctspecapp_example_2.compare.json b/tests/examples/opinions/united_states/mdctspecapp_example_2.compare.json index 1c7df324e..af898d299 100644 --- a/tests/examples/opinions/united_states/mdctspecapp_example_2.compare.json +++ b/tests/examples/opinions/united_states/mdctspecapp_example_2.compare.json @@ -9,7 +9,9 @@ "docket_numbers": "1057/18", "judges": "Wright", "citations": "slip op.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-22", @@ -21,7 +23,9 @@ "docket_numbers": "2673/18", "judges": "Kenney", "citations": "slip op.", - "case_name_shorts": "Paydar" + "case_name_shorts": "Paydar", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-22", @@ -33,7 +37,9 @@ "docket_numbers": "1131/18", "judges": "Raker", "citations": "slip op.", - "case_name_shorts": "Elzey" + "case_name_shorts": "Elzey", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-21", @@ -45,7 +51,9 @@ "docket_numbers": "0225/18", "judges": "Meredith", "citations": "slip op.", - "case_name_shorts": "Salkini" + "case_name_shorts": "Salkini", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-21", @@ -57,7 +65,9 @@ "docket_numbers": "1130/18", "judges": "Leahy", "citations": "slip op.", - "case_name_shorts": "Macias" + "case_name_shorts": "Macias", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-21", @@ -69,7 +79,9 @@ "docket_numbers": "2827/18", "judges": "Kehoe", "citations": "slip op.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-21", @@ -81,7 +93,9 @@ "docket_numbers": "2338/18", "judges": "Battaglia", "citations": "slip op.", - "case_name_shorts": "Azizova" + "case_name_shorts": "Azizova", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-21", @@ -93,7 +107,9 @@ "docket_numbers": "0672/18", "judges": "Adkins", "citations": "slip op.", - "case_name_shorts": "Allred" + "case_name_shorts": "Allred", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-20", @@ -105,7 +121,9 @@ "docket_numbers": "2206/18", "judges": "Harrell", "citations": "slip op.", - "case_name_shorts": "Wise" + "case_name_shorts": "Wise", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-20", @@ -117,10 +135,12 @@ "docket_numbers": "0559/18", "judges": "Arthur", "citations": "slip op.", - "case_name_shorts": "Poe" + "case_name_shorts": "Poe", + "per_curiam": false, + "other_dates": "" }, { - "case_dates": "2019-11-19", + "case_dates": "2019-11-14", "case_names": "Carter v. State", "download_urls": "/data/opinions/cosa/2019/0478s18.pdf", "precedential_statuses": "Published", @@ -129,7 +149,9 @@ "docket_numbers": "0478/18", "judges": "Reed", "citations": "slip op.", - "case_name_shorts": "Carter" + "case_name_shorts": "Carter", + "per_curiam": false, + "other_dates": "corrected 2019-11-19" }, { "case_dates": "2019-11-07", @@ -141,7 +163,9 @@ "docket_numbers": "0325/17", "judges": "Sharer", "citations": "slip op.", - "case_name_shorts": "Hughes" + "case_name_shorts": "Hughes", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-06", @@ -153,7 +177,9 @@ "docket_numbers": "2933/18", "judges": "Moylan", "citations": "slip op.", - "case_name_shorts": "Myers" + "case_name_shorts": "Myers", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-01", @@ -165,7 +191,9 @@ "docket_numbers": "1080/18", "judges": "Nazarian", "citations": "slip op.", - "case_name_shorts": "Pulliam" + "case_name_shorts": "Pulliam", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-01", @@ -177,7 +205,9 @@ "docket_numbers": "0662/18", "judges": "Nazarian", "citations": "slip op.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-01", @@ -189,7 +219,9 @@ "docket_numbers": "1148/17", "judges": "Friedman", "citations": "slip op.", - "case_name_shorts": "Choudhry" + "case_name_shorts": "Choudhry", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-11-01", @@ -201,7 +233,9 @@ "docket_numbers": "0682/18", "judges": "Salmon", "citations": "slip op.", - "case_name_shorts": "Byrd" + "case_name_shorts": "Byrd", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-10-31", @@ -213,7 +247,9 @@ "docket_numbers": "1474/17", "judges": "Meredith", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-10-31", @@ -225,7 +261,9 @@ "docket_numbers": "0488/13", "judges": "Meredith", "citations": "", - "case_name_shorts": "French" + "case_name_shorts": "French", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-10-31", @@ -237,7 +275,9 @@ "docket_numbers": "1076/18", "judges": "Arthur", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-10-30", @@ -249,7 +289,9 @@ "docket_numbers": "0755/18", "judges": "Arthur", "citations": "", - "case_name_shorts": "Nationwide" + "case_name_shorts": "Nationwide", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-10-30", @@ -261,7 +303,9 @@ "docket_numbers": "2182/18", "judges": "Arthur", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-10-30", @@ -273,7 +317,9 @@ "docket_numbers": "2298/17", "judges": "Battaglia", "citations": "", - "case_name_shorts": "Harris" + "case_name_shorts": "Harris", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-10-30", @@ -285,7 +331,9 @@ "docket_numbers": "2928/18", "judges": "Beachley", "citations": "", - "case_name_shorts": "Guillaume" + "case_name_shorts": "Guillaume", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-09-25", @@ -297,7 +345,9 @@ "docket_numbers": "0823/18", "judges": "Gould", "citations": "", - "case_name_shorts": "Aleman" + "case_name_shorts": "Aleman", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-09-12", @@ -309,7 +359,9 @@ "docket_numbers": "3331/18", "judges": "Shaw Geter", "citations": "", - "case_name_shorts": "Jones" + "case_name_shorts": "Jones", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-09-09", @@ -321,7 +373,9 @@ "docket_numbers": "1386/17", "judges": "Kehoe", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-09-04", @@ -333,7 +387,9 @@ "docket_numbers": "0215/17", "judges": "Moylan", "citations": "242 Md.App. 537", - "case_name_shorts": "Morten" + "case_name_shorts": "Morten", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-09-03", @@ -345,7 +401,9 @@ "docket_numbers": "2434/17", "judges": "Kehoe", "citations": "242 Md.App. 505", - "case_name_shorts": "Hayden" + "case_name_shorts": "Hayden", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-30", @@ -357,7 +415,9 @@ "docket_numbers": "3150/18", "judges": "Arthur", "citations": "242 Md.App. 473", - "case_name_shorts": "In re: K.Y.B." + "case_name_shorts": "In re: K.Y.B.", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-29", @@ -369,7 +429,9 @@ "docket_numbers": "0815/18", "judges": "Fader", "citations": "242 Md.App. 453", - "case_name_shorts": "Scarbrough" + "case_name_shorts": "Scarbrough", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-29", @@ -381,7 +443,9 @@ "docket_numbers": "0484/18", "judges": "Beachley", "citations": "242 Md.App. 432", - "case_name_shorts": "Griffin" + "case_name_shorts": "Griffin", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-29", @@ -393,7 +457,9 @@ "docket_numbers": "0476/18", "judges": "Nazarian", "citations": "242 Md.App. 417", - "case_name_shorts": "Blood" + "case_name_shorts": "Blood", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-29", @@ -405,7 +471,9 @@ "docket_numbers": "1689/17", "judges": "Arthur", "citations": "242 Md.App. 377", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-28", @@ -417,7 +485,9 @@ "docket_numbers": "0300/17", "judges": "Meredith", "citations": "242 Md.App. 288", - "case_name_shorts": "Tolen" + "case_name_shorts": "Tolen", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-28", @@ -429,7 +499,9 @@ "docket_numbers": "3205/18", "judges": "Friedman", "citations": "242 Md.App. 338", - "case_name_shorts": "In re: R.S." + "case_name_shorts": "In re: R.S.", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-28", @@ -441,7 +513,9 @@ "docket_numbers": "0922/18", "judges": "Eyler, J.", "citations": "242 Md.App. 311", - "case_name_shorts": "Crowe" + "case_name_shorts": "Crowe", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-02", @@ -453,7 +527,9 @@ "docket_numbers": "2454/18", "judges": "Moylan", "citations": "242 Md.App. 272", - "case_name_shorts": "Rothe" + "case_name_shorts": "Rothe", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-02", @@ -465,7 +541,9 @@ "docket_numbers": "0591/18", "judges": "Eyler, D.", "citations": "242 Md.App. 188", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-02", @@ -477,7 +555,9 @@ "docket_numbers": "1040/18", "judges": "Berger", "citations": "242 Md.App. 212", - "case_name_shorts": "Faith" + "case_name_shorts": "Faith", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-01", @@ -489,7 +569,9 @@ "docket_numbers": "1032/18", "judges": "Nazarian", "citations": "242 Md.App. 160", - "case_name_shorts": "Sweeney" + "case_name_shorts": "Sweeney", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-01", @@ -501,7 +583,9 @@ "docket_numbers": "2049/17", "judges": "Nazarian", "citations": "242 Md.App. 73", - "case_name_shorts": "Kimble" + "case_name_shorts": "Kimble", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-01", @@ -513,7 +597,9 @@ "docket_numbers": "0788/18", "judges": "Berger", "citations": "242 Md.App. 123", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-08-01", @@ -525,7 +611,9 @@ "docket_numbers": "0578/18", "judges": "Leahy", "citations": "242 Md.App. 90", - "case_name_shorts": "Brendoff" + "case_name_shorts": "Brendoff", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-07-31", @@ -537,7 +625,9 @@ "docket_numbers": "1327/17", "judges": "Nazarian", "citations": "241 Md.App. 704", - "case_name_shorts": "Vigna" + "case_name_shorts": "Vigna", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-07-31", @@ -549,7 +639,9 @@ "docket_numbers": "2811/18", "judges": "Adkins", "citations": "242 Md.App. 43", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-07-31", @@ -561,7 +653,9 @@ "docket_numbers": "2481/18", "judges": "Fader", "citations": "242 Md.App. 1", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-07-30", @@ -573,7 +667,9 @@ "docket_numbers": "0436/18", "judges": "Beachley", "citations": "241 Md.App. 683", - "case_name_shorts": "Wilson" + "case_name_shorts": "Wilson", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-06-27", @@ -585,7 +681,9 @@ "docket_numbers": "1289/17", "judges": "Leahy", "citations": "241 Md.App. 628", - "case_name_shorts": "Frederick" + "case_name_shorts": "Frederick", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-06-27", @@ -597,7 +695,9 @@ "docket_numbers": "0525/17", "judges": "Sharer", "citations": "241 Md.App. 604", - "case_name_shorts": "Rankin" + "case_name_shorts": "Rankin", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-06-27", @@ -609,7 +709,9 @@ "docket_numbers": "1761/17", "judges": "Reed", "citations": "241 Md.App. 672", - "case_name_shorts": "Harris" + "case_name_shorts": "Harris", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-06-27", @@ -621,7 +723,9 @@ "docket_numbers": "1940/15", "judges": "Woodward", "citations": "241 Md.App. 628", - "case_name_shorts": "Comptroller" + "case_name_shorts": "Comptroller", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-06-26", @@ -633,7 +737,9 @@ "docket_numbers": "1570/17", "judges": "Arthur", "citations": "241 Md.App. 316", - "case_name_shorts": "Reiss" + "case_name_shorts": "Reiss", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-06-26", @@ -645,7 +751,9 @@ "docket_numbers": "1720/17", "judges": "Berger", "citations": "241 Md.App. 349", - "case_name_shorts": "Holly" + "case_name_shorts": "Holly", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-06-26", @@ -657,7 +765,9 @@ "docket_numbers": "0338/18", "judges": "Arthur", "citations": "241 Md.App. 429", - "case_name_shorts": "Geier" + "case_name_shorts": "Geier", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-06-26", @@ -669,7 +779,9 @@ "docket_numbers": "2390/17", "judges": "Graeff", "citations": "241 Md.App. 372", - "case_name_shorts": "Abdullahi" + "case_name_shorts": "Abdullahi", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-06-04", @@ -681,7 +793,9 @@ "docket_numbers": "0515/18", "judges": "Beachley", "citations": "241 Md.App. 261", - "case_name_shorts": "Shilling" + "case_name_shorts": "Shilling", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-06-04", @@ -693,7 +807,9 @@ "docket_numbers": "2378/17", "judges": "Thieme", "citations": "241 Md.App. 233", - "case_name_shorts": "Shannon" + "case_name_shorts": "Shannon", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-06-04", @@ -705,7 +821,9 @@ "docket_numbers": "0902/18", "judges": "Moylan", "citations": "241 Md.App. 276", - "case_name_shorts": "Gantt" + "case_name_shorts": "Gantt", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-06-04", @@ -717,7 +835,9 @@ "docket_numbers": "1687/17", "judges": "Kenney", "citations": "241 Md.App. 199", - "case_name_shorts": "Floyd" + "case_name_shorts": "Floyd", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-05-30", @@ -729,7 +849,9 @@ "docket_numbers": "1142/17", "judges": "Eyler, J.", "citations": "241 Md.App. 94", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-05-30", @@ -741,7 +863,9 @@ "docket_numbers": "0874/18", "judges": "Fader", "citations": "241 Md.App. 183", - "case_name_shorts": "Bratt" + "case_name_shorts": "Bratt", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-05-30", @@ -753,7 +877,9 @@ "docket_numbers": "2411/17", "judges": "Nazarian", "citations": "241 Md.App. 139", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-05-30", @@ -765,7 +891,9 @@ "docket_numbers": "0123/17", "judges": "Berger", "citations": "241 Md.App. 77", - "case_name_shorts": "Hartless" + "case_name_shorts": "Hartless", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-05-29", @@ -777,7 +905,9 @@ "docket_numbers": "2171/17", "judges": "Eyler, J.", "citations": "241 Md.App. 56", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-05-10", @@ -789,7 +919,9 @@ "docket_numbers": "0907/17", "judges": "Wright", "citations": "241 Md.App. 1", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-05-03", @@ -801,7 +933,9 @@ "docket_numbers": "2373/17", "judges": "Shaw Geter", "citations": "240 Md.App. 709", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-05-02", @@ -813,7 +947,9 @@ "docket_numbers": "1203/17", "judges": "Zarnoch", "citations": "240 Md.App. 664", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-05-02", @@ -825,7 +961,9 @@ "docket_numbers": "0510/17", "judges": "Kenney", "citations": "240 Md.App. 629", - "case_name_shorts": "Carroll" + "case_name_shorts": "Carroll", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-05-01", @@ -837,7 +975,9 @@ "docket_numbers": "0080/18", "judges": "Beachley", "citations": "240 Md.App. 592", - "case_name_shorts": "Mann" + "case_name_shorts": "Mann", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-05-01", @@ -849,7 +989,9 @@ "docket_numbers": "0410/18", "judges": "Wright", "citations": "240 Md.App. 606", - "case_name_shorts": "Simms" + "case_name_shorts": "Simms", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-05-01", @@ -861,7 +1003,9 @@ "docket_numbers": "0068/18", "judges": "Leahy", "citations": "240 Md.App. 581", - "case_name_shorts": "Barrett" + "case_name_shorts": "Barrett", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-03-29", @@ -873,7 +1017,9 @@ "docket_numbers": "0213/17", "judges": "Arthur", "citations": "240 Md.App. 408", - "case_name_shorts": "Moultrie" + "case_name_shorts": "Moultrie", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-03-29", @@ -885,7 +1031,9 @@ "docket_numbers": "2877/18", "judges": "Fader", "citations": "240 Md.App. 518", - "case_name_shorts": "In re: O.P." + "case_name_shorts": "In re: O.P.", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-03-29", @@ -897,7 +1045,9 @@ "docket_numbers": "0160/18", "judges": "Moylan", "citations": "240 Md.App. 470", - "case_name_shorts": "Hogan" + "case_name_shorts": "Hogan", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-03-29", @@ -909,7 +1059,9 @@ "docket_numbers": "1103/16", "judges": "Woodward", "citations": "240 Md.App. 428", - "case_name_shorts": "Campbell" + "case_name_shorts": "Campbell", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-03-28", @@ -921,7 +1073,9 @@ "docket_numbers": "1993/17", "judges": "Nazarian", "citations": "240 Md.App. 260", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-03-28", @@ -933,7 +1087,9 @@ "docket_numbers": "2374/17", "judges": "Battaglia", "citations": "240 Md.App. 371", - "case_name_shorts": "Holzheid" + "case_name_shorts": "Holzheid", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-03-28", @@ -945,7 +1101,9 @@ "docket_numbers": "0601/17", "judges": "Leahy", "citations": "240 Md.App. 342", - "case_name_shorts": "Bean" + "case_name_shorts": "Bean", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-02-27", @@ -957,7 +1115,9 @@ "docket_numbers": "1898/17", "judges": "Wright", "citations": "240 Md.App. 294", - "case_name_shorts": "Simms" + "case_name_shorts": "Simms", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-02-27", @@ -969,7 +1129,9 @@ "docket_numbers": "1478/17", "judges": "Berger", "citations": "240 Md.App. 252", - "case_name_shorts": "Redkovsky" + "case_name_shorts": "Redkovsky", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-02-27", @@ -981,7 +1143,9 @@ "docket_numbers": "2305/17", "judges": "Wright", "citations": "240 Md.App. 330", - "case_name_shorts": "Myers" + "case_name_shorts": "Myers", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-02-27", @@ -993,7 +1157,9 @@ "docket_numbers": "2085/16", "judges": "Friedman", "citations": "240 Md.App. 240", - "case_name_shorts": "Lowery" + "case_name_shorts": "Lowery", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-02-27", @@ -1005,7 +1171,9 @@ "docket_numbers": "1753/17", "judges": "Graeff", "citations": "240 Md.App. 269", - "case_name_shorts": "Fulgium" + "case_name_shorts": "Fulgium", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-02-26", @@ -1017,7 +1185,9 @@ "docket_numbers": "2589/16", "judges": "Leahy", "citations": "240 Md.App. 214", - "case_name_shorts": "Sutton-Witherspoon" + "case_name_shorts": "Sutton-Witherspoon", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-02-04", @@ -1029,7 +1199,9 @@ "docket_numbers": "0779/17", "judges": "Thieme", "citations": "240 Md.App. 156", - "case_name_shorts": "Kazadi" + "case_name_shorts": "Kazadi", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-02-04", @@ -1041,7 +1213,9 @@ "docket_numbers": "1718/17", "judges": "Nazarian", "citations": "240 Md.App. 200", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-01-31", @@ -1053,7 +1227,9 @@ "docket_numbers": "2199/18", "judges": "Moylan", "citations": "240 Md.App. 119", - "case_name_shorts": "Greene" + "case_name_shorts": "Greene", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-01-31", @@ -1065,7 +1241,9 @@ "docket_numbers": "1231/17", "judges": "Eyler, J.", "citations": "240 Md.App. 90", - "case_name_shorts": "Pinner" + "case_name_shorts": "Pinner", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-01-30", @@ -1077,7 +1255,9 @@ "docket_numbers": "1827/17", "judges": "Arthur", "citations": "240 Md.App. 76", - "case_name_shorts": "McLaughlin" + "case_name_shorts": "McLaughlin", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-01-30", @@ -1089,7 +1269,9 @@ "docket_numbers": "1732/17", "judges": "Fader", "citations": "240 Md.App. 47", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-01-04", @@ -1101,7 +1283,9 @@ "docket_numbers": "1942/17", "judges": "Shaw Geter", "citations": "240 Md.App. 26", - "case_name_shorts": "Jones" + "case_name_shorts": "Jones", + "per_curiam": false, + "other_dates": "" }, { "case_dates": "2019-01-02", @@ -1113,6 +1297,8 @@ "docket_numbers": "1793/17", "judges": "Moylan", "citations": "240 Md.App. 1", - "case_name_shorts": "Azam" + "case_name_shorts": "Azam", + "per_curiam": false, + "other_dates": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/mesuperct_example.compare.json b/tests/examples/opinions/united_states/mesuperct_example.compare.json new file mode 100644 index 000000000..d2ab24027 --- /dev/null +++ b/tests/examples/opinions/united_states/mesuperct_example.compare.json @@ -0,0 +1,24 @@ +[ + { + "case_dates": "2023-11-13", + "case_names": "McCarthy v. The Roman Catholic Bishop of Portland", + "download_urls": "https://files.mainelaw.maine.edu/library/SuperiorCourt/decisions/CUMbcd-cv-22-66.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CUMbcd-cv-22-66", + "judges": "Thomas R.. McKeon", + "case_name_shorts": "McCarthy" + }, + { + "case_dates": "2023-09-18", + "case_names": "Stewart v. University of Maine System", + "download_urls": "https://files.mainelaw.maine.edu/library/SuperiorCourt/decisions/CUMcv-20-537.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CUMcv-20-537", + "judges": "Thomas R.. McKeon", + "case_name_shorts": "Stewart" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/mesuperct_example.html b/tests/examples/opinions/united_states/mesuperct_example.html new file mode 100644 index 000000000..e11872361 --- /dev/null +++ b/tests/examples/opinions/united_states/mesuperct_example.html @@ -0,0 +1,50 @@ + +Superior Court Database + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Docket#PlaintiffDefendantJudge
    + County
    Decision + Date
    + CUMbcd-cv-22-66 McCarthy The Roman Catholic Bishop of Portland + Thomas R.. McKeon
    + Cumberland
    2023-11-13
    + CUMcv-20-537 Stewart University of Maine System + Thomas R.. McKeon
    + Cumberland
    2023-09-18
    + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/minn_example.compare.json b/tests/examples/opinions/united_states/minn_example.compare.json index e911c25d3..b712eacc6 100644 --- a/tests/examples/opinions/united_states/minn_example.compare.json +++ b/tests/examples/opinions/united_states/minn_example.compare.json @@ -1,642 +1,132 @@ [ { - "case_dates": "2016-05-11", - "case_names": "State of Minnesota v. Tyler Thomas Devries Morse", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA141202-051116.pdf", + "case_dates": "2024-05-08", + "case_names": "State of Minnesota v. Said Sharif Maye", + "download_urls": "https://mn.gov/law-library-stat/archive/supct/2024/OPA220316-05082024.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A14-1202", + "dispositions": "Affirmed", + "docket_numbers": "A220316", + "citations": "", + "summaries": "1. The district court abused its discretion by allowing the admission of evidence on direct examination of anonymous, threatening phone calls a witness received before trial when the minimal probative value of the threat evidence was substantially outweighed by the risk of unfair prejudice that its admission posed to the defendant. 1 2. Because the defendant has not demonstrated a reasonable possibility that the admission of evidence on direct examination of anonymous, threatening phone calls a witness received before trial significantly impacted the jury's verdict, the defendant is not entitled to a new trial. Affirmed.", "case_name_shorts": "" }, { - "case_dates": "2016-05-11", - "case_names": "ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF EVIDENCE.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORADM108047-050516.pdf", + "case_dates": "2024-05-08", + "case_names": "State of Minnesota v. Michael Joseph Letourneau", + "download_urls": "https://mn.gov/law-library-stat/archive/supct/2024/OPA220570-05082024.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ADM10-8047", + "dispositions": "Affirmed", + "docket_numbers": "A220570", + "citations": "", + "summaries": "The district court did not abuse its discretion under the Uniform Mandatory Disposition of Detainers Act, Minnesota Statutes section 629.292 (2022), by beginning trial beyond the statutory 6-month period after finding good cause for a continuance because defense counsel required additional time to prepare for trial. Affirmed.", "case_name_shorts": "" }, { - "case_dates": "2016-05-04", - "case_names": "ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA CODE OF JUDICIAL CONDUCT.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORADM088004-050216.pdf", + "case_dates": "2024-05-08", + "case_names": "State of Minnesota v. Michael Allan Carbo, Jr.", + "download_urls": "https://mn.gov/law-library-stat/archive/supct/2024/OPA221823-05082024.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ADM08-8004", + "dispositions": "Reversed and remanded", + "docket_numbers": "A221823", + "citations": "", + "summaries": "1. The district court did not err by denying the defendant's motion to suppress evidence stemming from a genetic analysis of DNA collected from crime scene materials because the defendant had abandoned his subjective expectation of privacy in that information by leaving his semen at the scene of the crime. 2. The district court did not err by denying the defendant's motion to suppress evidence stemming from a genetic analysis of DNA collected from his garbage because law enforcement lawfully and independently obtained identical information from a DNA sample the defendant voluntarily provided. 3. The district court abused its discretion by denying the defendant's motion to present alternative-perpetrator evidence because the defendant's proffered evidence clearly had an inherent tendency to connect the alternative perpetrator to the commission of the crime and could have been admitted under the ordinary rules of evidence, and the error was not harmless beyond a reasonable doubt. Reversed and remanded.", "case_name_shorts": "" }, { - "case_dates": "2016-04-27", - "case_names": "In the Matter of the Welfare of: C.J.H., Child.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA141810-042716.pdf", + "case_dates": "2024-05-08", + "case_names": "State of Minnesota v. Kristi Dannette Mcneilly", + "download_urls": "https://mn.gov/law-library-stat/archive/supct/2024/OPA220468-05082024.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A14-1810", + "dispositions": "Affirmed", + "docket_numbers": "A220468", + "citations": "", + "summaries": "1. Search warrants authorizing seizure and search of electronic devices were sufficiently particular under the Fourth Amendment to the United States Constitution and Article I, Section 10, of the Minnesota Constitution. 2. The guilty verdict in this case was surely unattributable to the evidence obtained from the search of a law office and so we need not decide whether the warrants to search that law office were executed in an unreasonable manner because any error in the evidence's admission was harmless beyond a reasonable doubt. 3. When searching the law office of an attorney who is suspected of a crime, specific procedures to safeguard privileged materials are required under the supervisory powers of the Minnesota Supreme Court. Affirmed.", "case_name_shorts": "" }, { - "case_dates": "2016-04-27", - "case_names": "In re Petition for Disciplinary Action Against Debra Elise Altschuler, Registration No. 0389549.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA160193-041916.pdf", + "case_dates": "2024-05-08", + "case_names": "State of Minnesota v. Jerry Arnold Westrom", + "download_urls": "https://mn.gov/law-library-stat/archive/supct/2024/OPA221679-05082024.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A16-193", + "dispositions": "Affirmed in part, reversed in part, and remanded", + "docket_numbers": "A221679", + "citations": "", + "summaries": "1. The district court did not err in concluding that the genetic analysis of a napkin discarded by appellant was not a search because the analysis was only capable of matching appellant's DNA to the DNA found at the crime scene and appellant had no reasonable expectation of privacy in his identifying information. 2. Any error in precluding appellant from presenting alternative-perpetrator evidence at trial was harmless beyond a reasonable doubt. 3. The district court did not abuse its discretion when it excluded testimony from appellant's expert as late discovery because the district court properly exercised its authority to respond to violations of the Minnesota Rules of Criminal Procedure. 4. The State did not commit prosecutorial misconduct during its closing argument because none of the prosecutor's statements constituted error. 5. The circumstantial evidence presented at trial was sufficient to support the jury's verdict that appellant was guilty of first-degree premeditated murder, and appellant advances no reasonable hypothesis inconsistent with appellant's guilt. 6. Appellant did not receive ineffective assistance of counsel in violation of his constitutional rights because appellant has not demonstrated that trial counsel's personal interests materially limited the representation, and appellant was not prejudiced by the representation. 7. No cumulative errors denied appellant his right to a fair trial where only one potential error was present, and the error was harmless beyond a reasonable doubt. 8. It was error to convict appellant of both first-degree felony murder and the lesser-included offense of second-degree intentional murder. Affirmed in part, reversed in part, and remanded.", "case_name_shorts": "" }, { - "case_dates": "2016-04-20", - "case_names": "ORDER PROMULGATING AMENDMENTS TO THE RULES OF CIVIL APPELLATE PROCEDURE.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORADM098006-041416.pdf", + "case_dates": "2024-05-08", + "case_names": "State of Minnesota v. Anthony James Trifiletti", + "download_urls": "https://mn.gov/law-library-stat/archive/supct/2024/OPA211101-05082024.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ADM09-8006", + "dispositions": "Reversed", + "docket_numbers": "A211101", + "citations": "", + "summaries": "1. Because the State failed to establish that a witness would not have been available to testify in person at some reasonable point in time during the trial, the district court erred in determining that a witness against the defendant was unavailable under the Confrontation Clause of the Sixth Amendment to the United States Constitution and Article I, Section 6, of the Minnesota Constitution. 2. The defendant did not invite the district court's error in determining that a witness against him was unavailable under the Confrontation Clause of the Sixth Amendment to the United States Constitution and Article I, Section 6, of the Minnesota Constitution. 3. The district court's error in determining that a witness was unavailable under the Confrontation Clause was harmless beyond a reasonable doubt. Reversed.", "case_name_shorts": "" }, { - "case_dates": "2016-04-20", - "case_names": "ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF CRIMINAL PROCEDURE.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORADM108049-041416.pdf", + "case_dates": "2024-05-08", + "case_names": "Stacy Demskie v. U.S. Bank National Association", + "download_urls": "https://mn.gov/law-library-stat/archive/supct/2024/OPA220777-05082024.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "ADM10-8049", + "dispositions": "Affirmed in part, reversed in part, and remanded", + "docket_numbers": "A220777", + "citations": "", + "summaries": "1. Under the Minnesota notice pleading standard, the allegations in the complaint identifying U.S. Bank, N.A. as a shareholder and describing actions taken by U.S. Bank as facts supporting shareholder status were sufficient to survive a motion for judgment on the pleadings. 2. Because the court is evenly divided on whether beneficial owners of a closely held corporation may initiate an action for a buy-out of their interests under Minnesota Statutes section 302A.751 (2022), we affirm the decision of the court of appeals dismissing appellants' buy-out claim. Affirmed in part, reversed in part, and remanded.", "case_name_shorts": "" }, { - "case_dates": "2016-04-20", - "case_names": "J.D. Donovan, Inc. v. Minnesota Department of Transportation", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA140863-042016.pdf", + "case_dates": "2024-05-01", + "case_names": "State of Minnesota v. Tyson Joe Hinckley", + "download_urls": "https://mn.gov/law-library-stat/archive/supct/2024/OPA221206-05012024.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A14-863", + "dispositions": "Reversed and remanded", + "docket_numbers": "A221206", + "citations": "5 N.W.3d 680", + "summaries": "A district court abuses its discretion in denying a defendant's assertion of a mental-illness defense when the defendant has proffered prima facie evidence of a mental illness that meets the requirements to be excused from criminal liability under Minn. Stat. \u00a7 611.026 (2022). Reversed and remanded.", "case_name_shorts": "" }, { - "case_dates": "2016-04-20", - "case_names": "In re Petition for Disciplinary Action against Mark Alan Greenman, a Minnesota Attorney, Registration No. 0228990.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA160491-041316.pdf", + "case_dates": "2024-04-24", + "case_names": "Edbert Neal Williams v. State of Minnesota", + "download_urls": "https://mn.gov/law-library-stat/archive/supct/2024/OPA230851-042424.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A16-491", + "dispositions": "Affirmed", + "docket_numbers": "A230851", + "citations": "5 N.W.3d 399", + "summaries": "1. The district court did not abuse its discretion by denying the appellant's petition for postconviction relief because the petition was time-barred, and the evidence proffered under the newly-discovered-evidence exception failed to establish, by a clear and convincing standard, that the appellant is innocent. 2. The district court did not abuse its discretion by denying the petition for postconviction relief because appellant did not establish that the interests of justice require a new trial. Affirmed.", "case_name_shorts": "" }, { - "case_dates": "2016-04-20", - "case_names": "In re Petition for Disciplinary Action against Kristian Lee Oyen, a Minnesota Attorney, Registration No. 386383.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA141384-041316.pdf", + "case_dates": "2024-04-17", + "case_names": "Janine Tea v. Ramsey County, Self-Insured, Relator", + "download_urls": "https://mn.gov/law-library-stat/archive/supct/2024/OPA231207-041724.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A14-1384", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-13", - "case_names": "Toby Earl Johnson v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA150698-041316.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-698", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-13", - "case_names": "Daniel L. Berglund, Relator v. Commissioner of Revenue", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA150957-041316.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-957", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-06", - "case_names": "State of Minnesota v. Timothy John Huber", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA131928-040616-modified.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A13-1928", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-06", - "case_names": "Melinda M. Binkley, Trustee on behalf of the heirs and next of kin of Kirk T. Lloyd, II v. Allina Health System", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA140794-040516-modified.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-794", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-06", - "case_names": "LaVonne Pfeil, Individually and as Trustee for Heirs of Henry Pfeil v. St. Matthews Evangelical Lutheran Church of the Unaltered Augsburg Confession of Worthington, Nobles County, Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA140605-040616.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-605", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-30", - "case_names": "In re Petition for Transfer to Disability-Inactive Status of Ralph F. Carter, a Minnesota Attorney, Registration No. 0134910.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA160435-032316.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A16-435", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-30", - "case_names": "In re Petition for Disciplinary Action against Fong Eric Lee, a Minnesota Attorney, Registration No. 0387546.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA160228-032316.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A16-228", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-30", - "case_names": "In re Petition for Disciplinary Action against Amanda Lyn Ruffing, f/k/a Amanda Lyn Koble, a Minnesota Attorney, Registration No. 0386825.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151243-032316.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1243", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-23", - "case_names": "Sprinkler Warehouse, Inc. v. Systematic Rain, Inc., d/b/a GPLAWN.com", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA141121-032316.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1121", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-23", - "case_names": "Jason Lee Bolstad v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA150564-032316.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-564", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-23", - "case_names": "Jamy Hegseth f/k/a Jamy Jager v. American Family Mutual Insurance Group", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA141189-032316.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1189", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-23", - "case_names": "In re Petition for Disciplinary Action against Sara Marie Grant Rojas, a Minnesota Attorney, Registration No. 0391827.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA160092-031516.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A16-92", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-23", - "case_names": "In re Petition for Disciplinary Action against Jaren Lee Johnson, a Minnesota Attorney, Registration No. 0290427.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA160240-031616.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A16-240", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-23", - "case_names": "In re Petition for Disciplinary Action against James Richard Mayer, a Minnesota Attorney, Registration No. 0312241.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151274-031616.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1274", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-23", - "case_names": "Adelbys Tamayo Lopez, Relator v. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., and Sanford Health, Intervenor.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151730-032116.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1730", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-23", - "case_names": "Adelbys Tamayo Lopez, Relator v. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., and Sanford Health, Intervenor.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151730-032116-Amended.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1730", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-16", - "case_names": "State of Minnesota v. Ishmael Roberts", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA142039-031616.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-2039", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-09", - "case_names": "State of Minnesota, (A14-0941), (A15-0300) v. Byron David Smith, (A14-0941), (A15-0300). A14-941", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA140941-030916.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-941", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-09", - "case_names": "In re Petition for Disciplinary Action against Paul Joseph Bosman, a Minnesota Attorney, Registration No. 0388865.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151930-030216.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1930", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-09", - "case_names": "In re Petition for Disciplinary Action against Alan F. Pendleton, a Minnesota Attorney, Registration No. 0121538.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151996-030116.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1996", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-02", - "case_names": "State of Minnesota v. Vidale Lee Whitson, Vidale Lee Whitson v. State of Minnesota, C5-02-2108", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPC5022108-030216.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "C5-02-2108", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-02", - "case_names": "ORDER PROMULGATING AMENDMENTS TO THE RULES OF THE BOARD ON JUDICIAL STANDARDS.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORADM108032-022416.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ADM10-8032", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-02", - "case_names": "In re Petition for Disciplinary Action against Jonathan C. Lewis, a Minnesota Attorney, Registration No. 0172017.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA150999-022416.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-999", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-02", - "case_names": "In re Petition for Disciplinary Action against Daniel L. M. Kennedy, a Minnesota Attorney, Registration No. 0211321.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151698-022416.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1698", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-02", - "case_names": "Craig Matthew Hohenwald v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA150487-022616.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-487", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-24", - "case_names": "State of Minnesota v. True Thao", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA141182-022416.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1182", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-24", - "case_names": "In re Petition for Disciplinary Action against Marc G. Kurzman, a Minnesota Attorney, Registration No. 59080.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA141416-021816.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1416", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-24", - "case_names": "In re Petition for Disciplinary Action against Duane A. Kennedy, a Minnesota Attorney, Registration No. 0055128.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151390-021916.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1390", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-17", - "case_names": "Wayzata Nissan, LLC v. Nissan North America, Inc., Stephen J. McDaniels", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA141652-021716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1652", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-17", - "case_names": "Thomas Daniel Rhodes v. State of Minnesota, A13-560", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA130560-021716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A13-560", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-17", - "case_names": "State of Minnesota v. Joshua Lee Myhre", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA140670-021716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-670", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-17", - "case_names": "Melrose Gates, LLC v. Chor Moua", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA141131-021716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1131", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-17", - "case_names": "Jennifer L. DeCook, Respondents/Cross-Appellants v. Olmsted Medical Center, Inc., Brenda J. Hanson, R.N., and Darlene M. Pratt, R.N., Appellants/Cross-Respondents, Kenneth M. Palmer, M.D., Jack F. Perrone, M.D., Kimberly McKeon, M.D., and Ashley Morrow, R.N.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA141180-021716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1180", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-17", - "case_names": "Jedidiah Dean Troxel v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA151294-021716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1294", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-17", - "case_names": "In re Petition for Disciplinary Action against Mitchell Alan Robinson, a Minnesota Attorney, Registration No. 0281359.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151357-020316.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1357", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-17", - "case_names": "In re Petition for Disciplinary Action against Jorge Luis Sanchez, a Minnesota Attorney, Registration No. 0388556.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA160066-020316.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A16-66", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-17", - "case_names": "Curtis G. and Stacy S. Marks v. Commissioner of Revenue, Relator.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA151145-021716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1145", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-17", - "case_names": "Ali M. Shire v. Rosemount, Inc., Self-Insured/Berkley Risk Administrators Company, LLC, Relators, and Twin Cities Orthopedics, P.A., Crosstown Surgery Center, and Minnesota Department of Human Services/BRS, Intervenors.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA150856-021716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-856", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-10", - "case_names": "State of Minnesota v. Jimmy Dawayne Lester", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA140431-021016.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-431", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-10", - "case_names": "State of Minnesota v. Amanda Lea Peltier", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA141452-021016.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1452", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-10", - "case_names": "Keith Richard Rossberg v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA151205-021016.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1205", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-10", - "case_names": "In re Petition for Disciplinary Action against Paul Roland Rambow, a Minnesota Attorney, Registration No. 0169389.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA140804-021016.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-804", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-10", - "case_names": "Brent R. Wilcox v. State Farm Fire and Casualty Company, Defendant/Respondent.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA150724-021016.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-724", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-03", - "case_names": "Robert Marlyn Taylor v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA150398-020316.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-398", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-03", - "case_names": "Leanda Muhonen, Relator v. New Horizon Academy and Travelers Indemnity Company of America, Suburban Radiologic Consultants, UCare, Center for Diagnostic Imaging, and Medical Advanced Pain Specialists, Intervenors.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151239-012716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1239", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-03", - "case_names": "Kelly Dennis v. The Salvation Army and Chesterfield Services, Inc., Relators, and HealthEast Physician Services, HealthEast St. John\u0090s Hospital, High Pointe Surgery Center, Minnesota Department of Human Services/BRS, St. Croix Orthopaedics, and Nurse Anesthesia Services, P.A., Intervenors.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA150715-020316.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-715", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-03", - "case_names": "Joan Van Riper, Employee-Respondent/Cross-Appellant v. Interstate Packaging, Inc. Employer-Relator/Cross-Appeal and Cincinnati Insurance Company, Insurer-Relator/Cross-Appeal and Mason City Clinic, Mason City Surgery Center, Mayo Clinic, Minnesota Department of Employment Economic Development, Spectrum Rehabilitation Services, Inc., Blue Cross Blue Shield of Minnesota, and, UNUM Life Insurance Company, Intervenors.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151156-012716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1156", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-03", - "case_names": "In re Petition for Disciplinary Action against Timothy J. Oliver, a Minnesota Attorney, Registration No. 0121393.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151285-012716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1285", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-03", - "case_names": "In re Petition for Disciplinary Action against Kent E. Nyberg, a Minnesota Attorney, Registration No. 0080159.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151632-012716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1632", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-27", - "case_names": "Terry Boyd v. BNSF Railway Company", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA140277-012716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-277", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-27", - "case_names": "In re Petition for Disciplinary Action against Timothy J. Oliver, a Minnesota Attorney, Registration No. 0121393.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151285-012516.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1285", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-27", - "case_names": "In re Petition for Disciplinary Action against John Nwabuwane Akwuba, a Minnesota Attorney, Registration No. 0280446.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA151316-012516.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1316", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-20", - "case_names": "Yvette Ford v. Minneapolis Public Schools", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/OPA131072-012016.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A13-1072", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-20", - "case_names": "In re Petition for Reinstatement to the Practice of Law of Bruce A. Kunz, a Minnesota Attorney, Registration No. 0225289.", - "download_urls": "http://mn.gov/law-library-stat/archive/supct/2016/ORA150178-011216.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-178", + "dispositions": "Affirmed", + "docket_numbers": "A231207", + "citations": "5 N.W.3d 114", + "summaries": "1. The Workers' Compensation Court of Appeals' affirmance of the compensation judge's finding that the employee has compensable post-traumatic stress disorder is not manifestly contrary to the evidence because the compensation judge based his conclusion on the employee's credibility and the persuasiveness of an expert diagnosis of post-traumatic stress disorder. 2. In accord with our decision in Smith v. Carver County, 931 N.W.2d 390, 396\u201397 (Minn. 2019), compensation judges may review the Diagnostic and Statistical Manual of Mental Disorders criteria when considering the persuasiveness of expert reports, but judges may not use those criteria to make their own diagnosis of a claimant's condition. Affirmed.", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/minn_example.html b/tests/examples/opinions/united_states/minn_example.html index 7b99d1350..3a3f0551b 100644 --- a/tests/examples/opinions/united_states/minn_example.html +++ b/tests/examples/opinions/united_states/minn_example.html @@ -1,8633 +1,423 @@ + + + + + + + + + + + + Search Page / Minnesota State Law Library + - - - - - - - - - - - - - - - - - - - - - pdf - 31776 - May 11, - 2016 16:56:12 GMT - english - State of Minnesota, Appellant, vs. Tyler Thomas Devries Morse, Respondent. A14-1202, Supreme Court, May 11, 2016. - MSC - 2016-05-03T09:53:28+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-11T11:53:44+00:00 - Adobe PDF Library 11.0 - 2016-05-03T14:49:54+00:00 - The totality of the circumstances supported the district court's conclusion that the police officer had a reasonable, articulable suspicion to justify the stop of the appellant's vehicle. Reversed and remanded. - State of Minnesota, Appellant, vs. Tyler Thomas Devries Morse, Respondent. A14-1202, Supreme Court, May 11, 2016. - A14-1202 - 2016-05-11T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1202 Court of Appeals Lillehaug, J. Took no part, Chutich, J. State of Minnesota, Appellant, vs. Filed: May 11, ... - - - pdf - 610761 - May 11, - 2016 16:56:13 GMT - english - ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF EVIDENCE. ADM10-8047, Supreme Court Administrative Order, May ... - 2016-05-05T16:12:01+00:00 - Canon DR-M140 TWAIN - 2016-05-11T11:55:22+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The attached amendments to the Rules of Evidence are prescribed and promulgated to be effective as of July 1, 2016. - ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF EVIDENCE. ADM10-8047, Supreme Court Administrative Order, May 11, 2016. - ADM10-8047 - 2016-05-11T00:00:00-0500 - May 5, 2016 STATE OF MINNESOTA IN SUPREME COURT ADM10-8047 ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF EVIDENCE ORDER fl Om:cEOF ArPB..lAlECcurrs ... - - - pdf - 59130 - May 9, - 2016 15:07:28 GMT - english - Nita Posey, Relator, vs. Securitas Security Services USA, Inc., Respondent, Department of Employment and Economic ... - 2016-05-02T09:39:25+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T10:07:14+00:00 - Adobe PDF Library 11.0 - 2016-05-02T14:39:07+00:00 - When an employee of an employer informs the employer and the employers client that the employee is unable to complete a job assignment because of a family crisis and tells the employer that the employee will reengage with the employer upon resolution of the family crisis, the employee has not quit employment under Minn. Stat. § 268.095, subd. 2(a) (2014). Reversed. - Nita Posey, Relator, vs. Securitas Security Services USA, Inc., Respondent, Department of Employment and Economic Development, Respondent. A15-1576, Court of Appeals Published, May 9, 2016. - A15-1576 - 2016-05-09T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1576 Nita Posey, Relator, vs. Securitas Security Services USA, Inc., Respondent, Department of Employment and Economic ... - - - pdf - 31705 - May 9, - 2016 15:07:28 GMT - english - Vaughn A. Veit, Appellant, vs. ProSource Technologies, Inc., et al., defendants and third party plaintiffs, Respondents,... - 2016-05-02T15:33:48+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T10:06:22+00:00 - Adobe PDF Library 11.0 - 2016-05-02T20:33:06+00:00 - A professional-negligence action based on an allegedly negligent property appraisal accrues, and the statute of limitations begins to run, at the time the appraisal is completed. - Vaughn A. Veit, Appellant, vs. ProSource Technologies, Inc., et al., defendants and third party plaintiffs, Respondents, vs. Carlson Professional Services, Inc., et al., third party defendants, Respondents. A15-1430, Court of Appeals Published, May 9, 2016. - A15-1430 - 2016-05-09T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1430 Vaughn A. Veit, Appellant, vs. ProSource Technologies, Inc., et al., defendants and third party plaintiffs, ... - - - pdf - 174206 - May 9, - 2016 15:07:28 GMT - english - David John Anderson, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-1378, Court of Appeals ... - 2016-05-03T16:21:12+00:00 - Microsoft® Word 2013 - 2016-05-09T10:05:30+00:00 - Microsoft® Word 2013 - A district court in an implied-consent proceeding lacks jurisdiction to hear an untimely petition to rescind the revocation of a drivers license, including where a driver is mentally incompetent at the time of the revocation. However, in a subsequent criminal proceeding, a driver may challenge the states use of such a revocation to enhance charges. - David John Anderson, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-1378, Court of Appeals Published, May 9, 2016. - A15-1378 - 2016-05-09T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1378 David John Anderson, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. Filed May 9, 2016 ... - - - pdf - 62472 - May 10, - 2016 13:51:09 GMT - english - State of Minnesota, Respondent, vs. Derrick Jacqueay Roberson, Appellant. A15-506, Court of Appeals Unpublished, May 9, ... - 2016-05-02T12:58:55+00:00 - PScript5.dll Version 5.2.2 - 2016-05-10T08:49:39+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges to conviction of third-degree assault. - State of Minnesota, Respondent, vs. Derrick Jacqueay Roberson, Appellant. A15-506, Court of Appeals Unpublished, May 9, 2016. - A15-506 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 31121 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. Bobby Maurice McGary, Appellant. A15-734, Court of Appeals Unpublished, May 9, 2016. - 2016-04-29T14:00:15+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T11:41:00+00:00 - Adobe PDF Library 11.0 - 2016-04-29T19:00:07+00:00 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. Bobby Maurice McGary, Appellant. A15-734, Court of Appeals Unpublished, May 9, 2016. - A15-734 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 42390 - May 9, - 2016 19:16:49 GMT - english - Izell Wright Robinson, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-692, Court of Appeals Unpublished,... - 2016-05-02T13:14:55+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T11:38:36+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges denial of petition for postconviction relief. - Izell Wright Robinson, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-692, Court of Appeals Unpublished, May 9, 2016. - A15-692 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 35470 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. Paul Michael Baumchen, Appellant. A15-878, Court of Appeals Unpublished, May 9, ... - 2016-05-03T09:09:47+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T11:44:10+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges denial of motion to withdraw guilty plea. - State of Minnesota, Respondent, vs. Paul Michael Baumchen, Appellant. A15-878, Court of Appeals Unpublished, May 9, 2016. - A15-878 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 116104 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. David Charles Adams, Appellant. A15-991, Court of Appeals Unpublished, May 9, 2016. - 2016-05-03T14:14:59+00:00 - Microsoft® Word 2013 - 2016-05-09T11:58:08+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct and sentencing. - State of Minnesota, Respondent, vs. David Charles Adams, Appellant. A15-991, Court of Appeals Unpublished, May 9, 2016. - A15-991 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 157686 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. Hoshiar A. Sadiq, Appellant. A15-1059, Court of Appeals Unpublished, May 9, 2016. - 2016-05-03T10:08:41+00:00 - Microsoft® Word 2013 - 2016-05-09T13:07:57+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Hoshiar A. Sadiq, Appellant. A15-1059, Court of Appeals Unpublished, May 9, 2016. - A15-1059 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 26066 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. James Lamar Davis, Appellant. A15-1035, Court of Appeals Unpublished, May 9, 2016. - 2016-04-29T10:35:20+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T12:05:46+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. James Lamar Davis, Appellant. A15-1035, Court of Appeals Unpublished, May 9, 2016. - A15-1035 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 38570 - May 9, - 2016 19:16:49 GMT - english - Tony Lee Love, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1180, Court of Appeals Unpublished, May 9,... - 2016-05-02T14:21:34+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T13:17:55+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges to convictions of aiding an offender to avoid arrest and aiding an offender accomplice after the fact, appellant argues that the postconviction court erred by ordering him to pay $55,000 in joint and several restitution because he was not the direct cause of the complainants loss and that it did not properly consider his ability to pay. Reversed and remanded for a restitution hearing. - Tony Lee Love, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1180, Court of Appeals Unpublished, May 9, 2016. - A15-1180 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 192323 - May 9, - 2016 19:16:49 GMT - english - Patrick Exner, Appellant, vs. Minneapolis Public Schools, Special School District No. 1, Respondent. A15-1262, Court of ... - 2016-05-03T13:25:18+00:00 - Microsoft® Word 2013 - 2016-05-09T13:24:45+00:00 - Microsoft® Word 2013 - Challenges the Minn. R. Civ. P. 50.01 dismissal of his Minnesota Government Data Practices Act and defamation claims against his former employer, respondent school district. Affirmed in part, reversed in part, and remanded. - Patrick Exner, Appellant, vs. Minneapolis Public Schools, Special School District No. 1, Respondent. A15-1262, Court of Appeals Unpublished, May 9, 2016. - A15-1262 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 26119 - May 9, - 2016 19:16:49 GMT - english - Thomas Ardell Gentry, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1314, Court of Appeals Unpublished,... - 2016-05-03T13:18:04+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T13:35:00+00:00 - Adobe PDF Library 11.0 - 2016-05-03T18:17:43+00:00 - Challenges denial of petition for postconviction relief. - Thomas Ardell Gentry, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1314, Court of Appeals Unpublished, May 9, 2016. - A15-1314 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 203070 - May 9, - 2016 19:16:49 GMT - english - Valley Paving, Inc., Appellant, vs. Stanley Consultants, Inc., Respondent. A15-1321, Court of Appeals Unpublished, May ... - 2016-05-03T10:46:55+00:00 - Microsoft® Word 2013 - 2016-05-09T13:43:30+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - Valley Paving, Inc., Appellant, vs. Stanley Consultants, Inc., Respondent. A15-1321, Court of Appeals Unpublished, May 9, 2016. - A15-1321 - 2016-05-09T00:00:00-0500 - `This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 27500 - May 9, - 2016 19:44:24 GMT - english - State of Minnesota, Respondent, vs. Rae-Ann Jacklyn Pollard, Defendant, Bail Bonds Doctor, Inc., Appellant. A15-1530, ... - 2016-04-28T11:08:09+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T14:43:08+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges the district courts denial of its motion for reinstatement and discharge of the bonds. - State of Minnesota, Respondent, vs. Rae-Ann Jacklyn Pollard, Defendant, Bail Bonds Doctor, Inc., Appellant. A15-1530, Court of Appeals Unpublished, May 9, 2016. - A15-1530 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 106025 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. Jayson Stanley Sam, Appellant. A15-674, Court of Appeals Unpublished, May 9, 2016. - 2016-05-03T13:38:25+00:00 - Microsoft® Word 2013 - 2016-05-09T11:20:07+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Jayson Stanley Sam, Appellant. A15-674, Court of Appeals Unpublished, May 9, 2016. - A15-674 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 179847 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. Earl Eugene Ashmore, Appellant. A15-675, Court of Appeals Unpublished, May 9, 2016. - 2016-05-03T15:54:36+00:00 - Microsoft® Word 2013 - 2016-05-09T11:32:48+00:00 - Microsoft® Word 2013 - Challenges drug-related convictions. - State of Minnesota, Respondent, vs. Earl Eugene Ashmore, Appellant. A15-675, Court of Appeals Unpublished, May 9, 2016. - A15-675 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 16095 - May 9, - 2016 19:16:49 GMT - english - Frederick Bradley Kellogg, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1124, Court of Appeals ... - 2016-04-28T10:42:49+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T13:11:53+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges denial of motion to withdraw guilty plea. - Frederick Bradley Kellogg, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1124, Court of Appeals Unpublished, May 9, 2016. - A15-1124 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 35825 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. Jolene Carmel Goblish, Appellant. A15-976, Court of Appeals Unpublished, May 9, ... - 2016-04-29T10:09:21+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T11:52:55+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges to conviction of driving while imparied. - State of Minnesota, Respondent, vs. Jolene Carmel Goblish, Appellant. A15-976, Court of Appeals Unpublished, May 9, 2016. - A15-976 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 253515 - May 9, - 2016 19:16:49 GMT - english - Mary Jo Delaney, Appellant, vs. Cragun Corporation, Respondent. A15-1333, Court of Appeals Unpublished, May 9, 2016. - 2016-05-03T16:48:41+00:00 - Microsoft® Word 2013 - 2016-05-09T13:46:11+00:00 - Microsoft® Word 2013 - Challeneges that employer discharged her because she reported sexual harassment, violating the Minnesota Human Rights Act. Reversed and remanded. - Mary Jo Delaney, Appellant, vs. Cragun Corporation, Respondent. A15-1333, Court of Appeals Unpublished, May 9, 2016. - A15-1333 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 94764 - May 9, - 2016 19:16:49 GMT - english - Jerry Delaney, Jr., petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1776, Court of Appeals Unpublished, ... - 2016-05-02T12:48:40+00:00 - Microsoft® Word 2013 - 2016-05-09T14:05:29+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Jerry Delaney, Jr., petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1776, Court of Appeals Unpublished, May 9, 2016. - A15-1776 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107175 - May 9, - 2016 19:16:50 GMT - english - In the Matter of the Welfare of the Children of: A. N. L.-N. and A. L. P., Parents. A15-1906, Court of Appeals ... - 2016-05-02T14:04:00+00:00 - Microsoft® Word 2013 - 2016-05-09T14:13:10+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: A. N. L.-N. and A. L. P., Parents. A15-1906, Court of Appeals Unpublished, May 9, 2016. - A15-1906 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 209186 - May 9, - 2016 19:16:49 GMT - english - In re the Marriage of: Marianne Ronate Reis, petitioner, Appellant, vs. Thomas Michael Hallberg, Respondent. A15-1032, ... - 2016-05-03T08:56:32+00:00 - Microsoft® Word 2013 - 2016-05-09T12:01:35+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. Reversed and remanded. - In re the Marriage of: Marianne Ronate Reis, petitioner, Appellant, vs. Thomas Michael Hallberg, Respondent. A15-1032, Court of Appeals Unpublished, May 9, 2016. - A15-1032 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 44266 - May 9, - 2016 19:16:49 GMT - english - Lyndsey Rae Kidd, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1213, Court of Appeals Unpublished, ... - 2016-05-03T13:18:21+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T13:20:27+00:00 - Adobe PDF Library 11.0 - 2016-05-03T18:18:10+00:00 - Challenges denial of petition for postconviction relief. - Lyndsey Rae Kidd, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1213, Court of Appeals Unpublished, May 9, 2016. - A15-1213 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 36577 - May 9, - 2016 19:16:49 GMT - english - In re the Marriage of: Tamara Lyn Renneke, n/k/a Tamara Lyn Fjoslien, petitioner, Appellant, vs. Dean Glenn Renneke, ... - 2016-05-03T15:01:29+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T13:05:10+00:00 - Acrobat Distiller 11.0 (Windows) - Dissolution of marriage matter and retirement accounts. - In re the Marriage of: Tamara Lyn Renneke, n/k/a Tamara Lyn Fjoslien, petitioner, Appellant, vs. Dean Glenn Renneke, Respondent. A15-1037, Court of Appeals Unpublished, May 9, 2016. - A15-1037 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 61507 - May 9, - 2016 20:40:05 GMT - english - In re the Custody of: S.K.S. Christian Schut, petitioner, Appellant, vs. Cynthia Schut, Respondent. A15-1489, Court of ... - 2016-05-02T14:51:44+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T15:38:32+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges denial of petition for relief under the Hague Convention, misapplied the Uniform Child Custody Jurisdiction and Enforcement Act (UCCJEA), and clearly erred by awarding respondent mother child support. Affirmed in part, reversed in part, and remanded. - In re the Custody of: S.K.S. Christian Schut, petitioner, Appellant, vs. Cynthia Schut, Respondent. A15-1489, Court of Appeals Unpublished, May 9, 2016. - A15-1489 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 197661 - May 9, - 2016 19:16:49 GMT - english - Terry L. Gates, et al., Respondents, vs. Michael L. Macken, et al., Appellants. A15-1289, Court of Appeals Unpublished, ... - 2016-05-03T13:24:33+00:00 - Microsoft® Word 2013 - 2016-05-09T13:31:29+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment in property dispute. Reversed and remanded. - Terry L. Gates, et al., Respondents, vs. Michael L. Macken, et al., Appellants. A15-1289, Court of Appeals Unpublished, May 9, 2016. - A15-1289 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 42403 - May 9, - 2016 19:16:49 GMT - english - Gregory Lee Cobbins, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1643, Court of Appeals Unpublished, ... - 2016-05-03T12:44:31+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T14:03:09+00:00 - Adobe PDF Library 11.0 - 2016-05-03T17:44:20+00:00 - Challenges denial of petition for post conviction relief. - Gregory Lee Cobbins, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1643, Court of Appeals Unpublished, May 9, 2016. - A15-1643 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 51629 - May 9, - 2016 19:16:49 GMT - english - Delmer V. Fladwood, et al., Appellants, vs. City of St. Paul, Respondent. A15-1791, Court of Appeals Unpublished, May 9,... - 2016-05-03T11:45:19+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T14:08:44+00:00 - Adobe PDF Library 11.0 - 2016-05-03T16:44:57+00:00 - Challenges grant of summary judgment based on vicarious official immunity. Reversed and remanded. - Delmer V. Fladwood, et al., Appellants, vs. City of St. Paul, Respondent. A15-1791, Court of Appeals Unpublished, May 9, 2016. - A15-1791 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 325151 - May 5, - 2016 14:13:00 GMT - english - ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA CODE OF JUDICIAL CONDUCT. ADM08-8004, Supreme Court Administrative Order,... - 2016-05-02T16:26:31+00:00 - Canon DR-M140 TWAIN - 2016-05-05T09:09:52+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The attached amendments to the Minnesota Code of Judicial Conduct are prescribed and promulgated to be effective as of July 1, 2016. - ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA CODE OF JUDICIAL CONDUCT. ADM08-8004, Supreme Court Administrative Order, May 4, 2016. - ADM08-8004 - 2016-05-04T00:00:00-0500 - May 2, 2016 STATE OF MINNESOTA IN SUPREME COURT ADM08-8004 ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA CODE OF JUDICIAL CONDUCT Dm~EOF AJIPB.lAlECcuns ... - - - pdf - 181645 - May 2, - 2016 15:06:23 GMT - english - NJK Holding Corporation, Respondent, vs. The Araz Group, Inc., Appellant. A15-1628, Court of Appeals Published, May 2, ... - 2016-04-26T09:18:29+00:00 - Microsoft® Word 2013 - 2016-05-02T10:04:31+00:00 - Microsoft® Word 2013 - A promise to forgive debt is a credit agreement within the meaning of Minn. Stat. § 513.33 (2014) and requires a writing to be enforceable. - NJK Holding Corporation, Respondent, vs. The Araz Group, Inc., Appellant. A15-1628, Court of Appeals Published, May 2, 2016. - A15-1628 - 2016-05-02T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1628 NJK Holding Corporation, Respondent, vs. The Araz Group, Inc., Appellant. Filed May 2, 2016 Affirmed Schellhas, ... - - - pdf - 182026 - May 2, - 2016 15:06:23 GMT - english - Scott Peterson, Appellant, Roger Smith, Plaintiff, vs. City of Minneapolis, Minnesota, Respondent. A15-1711, Court of ... - 2016-04-26T16:34:25+00:00 - Microsoft® Word 2013 - 2016-05-02T10:05:36+00:00 - Microsoft® Word 2013 - A human resources complaint process may qualify as a dispute resolution processŽ under Minnesota Statutes section 363A.28, subdivision 3 (2014) and toll the running of the Minnesota Human Rights Acts one-year statute of limitations. Reversed and remanded. - Scott Peterson, Appellant, Roger Smith, Plaintiff, vs. City of Minneapolis, Minnesota, Respondent. A15-1711, Court of Appeals Published, May 2, 2016. - A15-1711 - 2016-05-02T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1711 Scott Peterson, Appellant, Roger Smith, Plaintiff, vs. City of Minneapolis, Minnesota, Respondent. Filed May ... - - - pdf - 190358 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Jeremy Williams, Appellant. A15-640, Court of Appeals Unpublished, May 2, 2016. - 2016-04-26T13:41:01+00:00 - Microsoft® Word 2013 - 2016-05-02T10:34:12+00:00 - Microsoft® Word 2013 - Challenges to convictions of second-degree assault with a dangerous weapon causing substantial bodily harm, second-degree assault with a dangerous weapon, and possession of a firearm by an ineligible person. - State of Minnesota, Respondent, vs. Jeremy Williams, Appellant. A15-640, Court of Appeals Unpublished, May 2, 2016. - A15-640 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 171670 - May 2, - 2016 19:06:12 GMT - english - Viele Contracting, Inc., Appellant, vs. Performance Pipelining, Inc., Respondent. A15-875, Court of Appeals Unpublished,... - 2016-04-26T11:00:16+00:00 - Microsoft® Word 2013 - 2016-05-02T10:53:19+00:00 - Microsoft® Word 2013 - Challenges that the district court erred and abused its discretion by rejecting appellants voluntary-payment defense. - Viele Contracting, Inc., Appellant, vs. Performance Pipelining, Inc., Respondent. A15-875, Court of Appeals Unpublished, May 2, 2016. - A15-875 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 42722 - May 2, - 2016 19:06:12 GMT - english - Gordon Dodge, Appellant, vs. Charlotte Stack, Respondent. A15-968, Court of Appeals Unpublished, May 2, 2016. - Minnesota Judicial Branch - 2016-04-20T09:45:38+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-02T11:11:34+00:00 - Adobe PDF Library 11.0 - 2016-04-20T14:45:27+00:00 - Shareholder dispute. Affirmed in part, reversed in part, and remanded. - Gordon Dodge, Appellant, vs. Charlotte Stack, Respondent. A15-968, Court of Appeals Unpublished, May 2, 2016. - A15-968 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 109549 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Nammoun Khampanya, Appellant. A15-885, Court of Appeals Unpublished, May 2, 2016. - 2016-04-28T09:25:44+00:00 - Microsoft® Word 2013 - 2016-05-02T10:55:01+00:00 - Microsoft® Word 2013 - Challenges to conviction of first-degree robbery. - State of Minnesota, Respondent, vs. Nammoun Khampanya, Appellant. A15-885, Court of Appeals Unpublished, May 2, 2016. - A15-885 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 115206 - May 2, - 2016 19:06:12 GMT - english - Julius Antwon Coleman, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1195, Court of Appeals ... - 2016-04-26T15:35:36+00:00 - Microsoft® Word 2013 - 2016-05-02T11:25:06+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Julius Antwon Coleman, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1195, Court of Appeals Unpublished, May 2, 2016. - A15-1195 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 173524 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Hobart Alvin Huffman, Appellant. A15-917, Court of Appeals Unpublished, May 2, 2016. - 2016-04-21T14:27:55+00:00 - Microsoft® Word 2013 - 2016-05-02T11:02:12+00:00 - Microsoft® Word 2013 - Challenges to convictions of second-degree driving while impaired (DWI) and child endangerment. Affirmed in part, and reversed in part. - State of Minnesota, Respondent, vs. Hobart Alvin Huffman, Appellant. A15-917, Court of Appeals Unpublished, May 2, 2016. - A15-917 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 282367 - May 2, - 2016 19:06:13 GMT - english - Autumn Ridge Landscaping, Inc., Relator, vs. Department of Employment and Economic Development, Respondent. A15-1305, ... - 2016-04-26T15:28:23+00:00 - Microsoft® Word 2013 - 2016-05-02T11:58:37+00:00 - Microsoft® Word 2013 - Relator-employer challenges the decision by an unemployment-law judge (ULJ) that respondent Minnesota Department of Employment and Economic Development (DEED) correctly calculated relators unemployment-insurance (UI) tax rates for 2013, 2014, and 2015. - Autumn Ridge Landscaping, Inc., Relator, vs. Department of Employment and Economic Development, Respondent. A15-1305, Court of Appeals Unpublished, May 2, 2016. - A15-1305 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 165271 - May 2, - 2016 19:06:13 GMT - english - State of Minnesota, Respondent, vs. Walter Wayne Urban, Appellant. A15-1236, Court of Appeals Unpublished, May 2, 2016. - 2016-04-20T13:49:59+00:00 - Microsoft® Word 2013 - 2016-05-02T11:39:20+00:00 - Microsoft® Word 2013 - Challenges to conviction of domestic assault. Affirmed in part, reversed in part. - State of Minnesota, Respondent, vs. Walter Wayne Urban, Appellant. A15-1236, Court of Appeals Unpublished, May 2, 2016. - A15-1236 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 246344 - May 2, - 2016 19:06:13 GMT - english - Randal V. Johnson, et al., Respondents, vs. Robert A. Fischer, Appellant, County of Sibley, Respondent. A15-1315, Court ... - 2016-04-26T10:22:14+00:00 - Microsoft® Word 2013 - 2016-05-02T13:23:32+00:00 - Microsoft® Word 2013 - Boundary dispute between farmers. - Randal V. Johnson, et al., Respondents, vs. Robert A. Fischer, Appellant, County of Sibley, Respondent. A15-1315, Court of Appeals Unpublished, May 2, 2016. - A15-1315 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123283 - May 2, - 2016 19:06:13 GMT - english - State of Minnesota, Respondent, vs. Gregory Thomas Wandzel, Appellant. A15-1375, Court of Appeals Unpublished, May 2, ... - 2016-04-26T11:21:48+00:00 - Microsoft® Word 2013 - 2016-05-02T13:30:11+00:00 - Microsoft® Word 2013 - Challenges drug-related convictions. - State of Minnesota, Respondent, vs. Gregory Thomas Wandzel, Appellant. A15-1375, Court of Appeals Unpublished, May 2, 2016. - A15-1375 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107168 - May 2, - 2016 19:06:13 GMT - english - Monda Thao, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1644, Court of Appeals Unpublished, May 2, ... - 2016-04-27T11:59:51+00:00 - Microsoft® Word 2013 - 2016-05-02T13:51:21+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Monda Thao, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1644, Court of Appeals Unpublished, May 2, 2016. - A15-1644 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 185642 - May 2, - 2016 19:06:13 GMT - english - Kjellbergs, Inc., et al., petitioners, Appellants, vs. State of Minnesota, by its Commissioner of Transportation, ... - 2016-04-25T13:17:27+00:00 - Microsoft® Word 2013 - 2016-05-02T13:46:09+00:00 - Microsoft® Word 2013 - Challenges the district courts order dismissing petition for a writ of mandamus seeking to compel the state to initiate condemnation proceedings. - Kjellbergs, Inc., et al., petitioners, Appellants, vs. State of Minnesota, by its Commissioner of Transportation, Respondent. A15-1553, Court of Appeals Unpublished, May 2, 2016. - A15-1553 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 118599 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Joshua Scott Leithe, Appellant. A15-853, Court of Appeals Unpublished, May 2, 2016. - 2016-04-26T10:40:38+00:00 - Microsoft® Word 2013 - 2016-05-02T10:42:16+00:00 - Microsoft® Word 2013 - Challenges denial of motion to withdraw guilty plea. - State of Minnesota, Respondent, vs. Joshua Scott Leithe, Appellant. A15-853, Court of Appeals Unpublished, May 2, 2016. - A15-853 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 97507 - May 2, - 2016 19:06:13 GMT - english - In re the Civil Commitment of: Aron Michael VanWagner. A15-1620, Court of Appeals Unpublished, May 2, 2016. - 2016-04-26T13:54:11+00:00 - Microsoft® Word 2013 - 2016-05-02T13:48:18+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of motions for relief from the judgment of civil commitment pursuant to Minn. R. Civ. P. 60.02. - In re the Civil Commitment of: Aron Michael VanWagner. A15-1620, Court of Appeals Unpublished, May 2, 2016. - A15-1620 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 176936 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Jose Antonio Diaz-Arreguin, Appellant. A15-860, Court of Appeals Unpublished, May 2,... - 2016-04-21T13:32:01+00:00 - Microsoft® Word 2013 - 2016-05-02T10:48:10+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Jose Antonio Diaz-Arreguin, Appellant. A15-860, Court of Appeals Unpublished, May 2, 2016. - A15-860 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 127407 - May 2, - 2016 19:06:13 GMT - english - In the Matter of the Welfare of: B. A. H., Child. A15-1670, Court of Appeals Unpublished, May 2, 2016. - 2016-04-25T14:28:47+00:00 - Microsoft® Word 2013 - 2016-05-02T13:59:01+00:00 - Microsoft® Word 2013 - Challenges the district courts restitution order. Reversed and remanded. - In the Matter of the Welfare of: B. A. H., Child. A15-1670, Court of Appeals Unpublished, May 2, 2016. - A15-1670 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 147547 - May 2, - 2016 19:06:13 GMT - english - Renee Rodgers, Relator, vs. Childrens Dental Services, Respondent, Department of Employment and Economic Development, ... - 2016-04-25T14:38:39+00:00 - Microsoft® Word 2013 - 2016-05-02T14:04:52+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Renee Rodgers, Relator, vs. Childrens Dental Services, Respondent, Department of Employment and Economic Development, Respondent. A15-1839, Court of Appeals Unpublished, May 2, 2016. - A15-1839 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 204000 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Joshua Brandon Cochran, Appellant. A15-930, Court of Appeals Unpublished, May 2, ... - 2016-04-25T11:12:58+00:00 - Microsoft® Word 2013 - 2016-05-02T11:06:55+00:00 - Microsoft® Word 2013 - Challenges possession of a controlled substance charge. Reversed. - State of Minnesota, Respondent, vs. Joshua Brandon Cochran, Appellant. A15-930, Court of Appeals Unpublished, May 2, 2016. - A15-930 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 132006 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Erik Demetrius White, Sr., Appellant. A15-1040, Court of Appeals Unpublished, May 2,... - 2016-04-25T13:56:27+00:00 - Microsoft® Word 2013 - 2016-05-02T11:17:24+00:00 - Microsoft® Word 2013 - Challenges possession of a controlled substance charge. - State of Minnesota, Respondent, vs. Erik Demetrius White, Sr., Appellant. A15-1040, Court of Appeals Unpublished, May 2, 2016. - A15-1040 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 102918 - May 2, - 2016 19:06:12 GMT - english - Mark Jeffrey Koelndorfer, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1193, Court of Appeals ... - 2016-04-26T16:25:20+00:00 - Microsoft® Word 2013 - 2016-05-02T11:21:32+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Mark Jeffrey Koelndorfer, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1193, Court of Appeals Unpublished, May 2, 2016. - A15-1193 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 128973 - May 2, - 2016 19:06:13 GMT - english - In the Matter of the Welfare of: N. P. S. A15-1403, Court of Appeals Unpublished, May 2, 2016. - 2016-04-25T16:31:14+00:00 - Microsoft® Word 2013 - 2016-05-02T13:39:32+00:00 - Microsoft® Word 2013 - We remand the denial of appellant N.P.S.s petition to expunge his juvenile records held by the Minnesota Department of Health and the Minnesota Department of Human Services and his petition to reinstate his firearm rights. Remanded. - In the Matter of the Welfare of: N. P. S. A15-1403, Court of Appeals Unpublished, May 2, 2016. - A15-1403 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 192628 - May 2, - 2016 19:06:13 GMT - english - Freddie Lee Jenkins, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1256, Court of Appeals Unpublished, ... - 2016-04-26T11:32:09+00:00 - Microsoft® Word 2013 - 2016-05-02T11:55:57+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Freddie Lee Jenkins, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1256, Court of Appeals Unpublished, May 2, 2016. - A15-1256 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 33446 - May 2, - 2016 19:06:13 GMT - english - North Star Mutual Insurance Company, Respondent, vs. Julie Joy Kruger, as trustee for the heirs and next of kin of Todd ... - Minnesota Judicial Branch - 2016-04-20T09:19:01+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-02T13:42:49+00:00 - Adobe PDF Library 11.0 - 2016-04-20T14:18:31+00:00 - Challenges grant of summary judgment. Reversed and remanded. - North Star Mutual Insurance Company, Respondent, vs. Julie Joy Kruger, as trustee for the heirs and next of kin of Todd Michael Kruger, Appellant, Michael Allen Dahl, et al., Defendants. A15-1420, Court of Appeals Unpublished, May 2, 2016. - A15-1420 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 193614 - May 2, - 2016 19:06:13 GMT - english - Martin Bell, et al, Appellants, vs. Leonard Street and Deinard Professional Association, et al., Respondents. A15-1311, ... - 2016-04-25T14:37:49+00:00 - Microsoft® Word 2013 - 2016-05-02T12:00:18+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - Martin Bell, et al, Appellants, vs. Leonard Street and Deinard Professional Association, et al., Respondents. A15-1311, Court of Appeals Unpublished, May 2, 2016. - A15-1311 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 146948 - May 2, - 2016 19:06:13 GMT - english - Lifespan of Minnesota, Inc., Respondent, vs. Minneapolis Public Schools, Special School District No. 1. A15-1717, Court ... - 2016-04-20T13:33:59+00:00 - Microsoft® Word 2013 - 2016-05-02T14:01:25+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment in contract dispute. Reversed and remanded. - Lifespan of Minnesota, Inc., Respondent, vs. Minneapolis Public Schools, Special School District No. 1. A15-1717, Court of Appeals Unpublished, May 2, 2016. - A15-1717 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 302550 - Apr 27, - 2016 15:35:24 GMT - english - In re Petition for Disciplinary Action Against Debra Elise Altschuler, Registration No. 0389549. A16-193, Supreme Court ... - 2016-04-19T14:00:32+00:00 - Canon DR-M140 TWAIN - 2016-04-27T10:32:50+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Debra Elise Altschuler is publicly reprimanded. - In re Petition for Disciplinary Action Against Debra Elise Altschuler, Registration No. 0389549. A16-193, Supreme Court Order, April 27, 2016. - A16-193 - 2016-04-27T00:00:00-0500 - April 19, 2016 STATE OF MINNESOTA IN SUPREME COURT In re Petition for Disciplinary Action Against Debra Elise Altschuler, Registration No. 0389549 Al6-0193 ... - - - pdf - 48448 - Apr 27, - 2016 15:35:24 GMT - english - In the Matter of the Welfare of: C.J.H., Child. A14-1810, Supreme Court, April 27, 2016. - MN Judicial Branch - 2016-04-26T10:26:00+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-27T10:34:10+00:00 - Adobe PDF Library 11.0 - 2016-04-26T15:21:51+00:00 - The juvenile court did not continue this case without adjudication under Minn. R. Juv. Delinq. P. 15.05 because that court never found that the allegations in the charging document were proven, and therefore the court of appeals erred when it concluded that the juvenile court's jurisdiction expired before respondent was adjudicated delinquent. Reversed. - In the Matter of the Welfare of: C.J.H., Child. A14-1810, Supreme Court, April 27, 2016. - A14-1810 - 2016-04-27T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1810 Court of Appeals Hudson, J. Took no part, Chutich, J. In the Matter of the Welfare of: C.J.H., Child, Filed: ... - - - pdf - 183267 - Apr 25, - 2016 15:15:28 GMT - english - Steven Duane Auers, personally, and as trustee for the next of kin of Karen Auers, deceased, Respondent, vs. ... - 2016-04-19T08:53:03+00:00 - Microsoft® Word 2013 - 2016-04-25T10:13:57+00:00 - Microsoft® Word 2013 - 1. Pursuant to Swanson v. Brewster, 784 N.W.2d 264 (Minn. 2010), a negotiated discount of medical expenses is a collateral source subject to offset under Minn. Stat. § 548.251 (2014). 2. A subrogee that has negotiated a discount of medical expenses may not assert a subrogation right for the discount under Swanson, and the subrogation right is limited to the amount of the subrogees payment. 3. An injured plaintiff who purchases the subrogation interest of a health-insurance carrier is not entitled to recover the Swanson collateral-source offset under Minn. Stat. § 548.251 in his personal injury case. Reversed. - Steven Duane Auers, personally, and as trustee for the next of kin of Karen Auers, deceased, Respondent, vs. Progressive Direct Insurance Company, Appellant. A15-1832, Court of Appeals Published, April 26, 2016. - A15-1832 - 2016-04-26T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1832 Steven Duane Auers, personally, and as trustee for the next of kin of Karen Auers, deceased, Respondent, vs. ... - - - pdf - 123585 - Apr 25, - 2016 15:15:28 GMT - english - In the Matter of the Welfare of the Child of: A.H., Parent. A15-1992, Court of Appeals Published, April 25, 2016. - 2016-04-20T09:41:43+00:00 - Microsoft® Word 2013 - 2016-04-25T10:14:57+00:00 - Microsoft® Word 2013 - 1. The juvenile court has original and exclusive jurisdictionŽ over visitation issues raised in post-permanency proceedings under Minn. Stat. §§ 260C.503-.521 (2014). 2. The juvenile court must use the best-interests standard of Minn. Stat. § 260C.511 when deciding whether to modify visitation in a post-permanency proceeding. - In the Matter of the Welfare of the Child of: A.H., Parent. A15-1992, Court of Appeals Published, April 25, 2016. - A15-1992 - 2016-04-25T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1992 In the Matter of the Welfare of the Child of: A.H., Parent. Filed April 25, 2016 Affirmed Stauber, Judge Hennepin ... - - - pdf - 225237 - Apr 25, - 2016 15:15:28 GMT - english - Stand Up Multipositional Advantage MRI, P.A., Respondent, vs. American Family Insurance Company, a Wisconsin ... - 2016-04-19T15:04:48+00:00 - Microsoft® Word 2013 - 2016-04-25T10:10:35+00:00 - Microsoft® Word 2013 - A patients assignment of a no-fault insurance claim to a medical provider is invalid and unenforceable if the applicable automobile insurance policy forbids such an assignment and if the patient makes the assignment before the medical provider bills the patient for medical services. Reversed. - Stand Up Multipositional Advantage MRI, P.A., Respondent, vs. American Family Insurance Company, a Wisconsin corporation, Appellant, Michael Schultz, et al., Respondents, Ilya Knyazev, et al., Respondents, Thomas Bennerotte, et al., Respondents, Jed Benjamin Iverson, Respondent, Gabriel Johnson, Respondent, Michael Fay, et al., Respondents, Brad Ratgen, et al., Respondents, Landon Barakow, Respondent, Lebertha Porter, Respondent. A15-843, Court of Appeals Published, April 25, 2016. - A15-843 - 2016-04-25T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0843 Stand Up Multipositional Advantage MRI, P.A., Respondent, vs. American Family Insurance Company, a Wisconsin ... - - - pdf - 116989 - Apr 25, - 2016 15:15:28 GMT - english - State of Minnesota, Respondent, vs. D. R. F., Appellant. A15-1591, Court of Appeals Published, April 25, 2016. - 2016-04-13T12:54:49+00:00 - Microsoft® Word 2013 - 2016-04-25T10:12:45+00:00 - Microsoft® Word 2013 - An expungement petition based on the petitioners acquittal cannot be denied on the ground that the petitioner might at some future time commit an offense, be charged with a crime, and have a bail hearing at which the petitioners bench warrant history on the acquitted crime would not be available because it has been expunged: such a hypothesis does not constitute the clear and convincing evidence that the interests of the public and public safety outweigh the disadvantages to the petitioner of not sealing the recordŽ within the meaning of Minn. Stat. § 609A.03, subd. 5(b) (2014). Reversed and remanded. - State of Minnesota, Respondent, vs. D. R. F., Appellant. A15-1591, Court of Appeals Published, April 25, 2016. - A15-1591 - 2016-04-25T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1591 State of Minnesota, Respondent, vs. D. R. F., Appellant. Filed April 25, 2016 Reversed and remanded Connolly, ... - - - pdf - 44027 - Apr 25, - 2016 15:15:28 GMT - english - In re the Matter of the Estate of: Brian K. Johnson, Decedent. A15-1383, Court of Appeals Published, April 25, 2016. - Minnesota Judicial Branch - 2016-04-14T11:32:14+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-25T10:11:37+00:00 - Adobe PDF Library 11.0 - 2016-04-14T16:32:06+00:00 - When an estate is administered by a court-appointed personal representative, Minnesota Statutes section 524.3-813 (2014) authorizes the personal representative to compromise claims against the estate without the consent of all beneficiaries under the will. - In re the Matter of the Estate of: Brian K. Johnson, Decedent. A15-1383, Court of Appeals Published, April 25, 2016. - A15-1383 - 2016-04-25T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1383 In re the Matter of the Estate of: Brian K. Johnson, Decedent. Filed April 25, 2016 Affirmed Randall, Judge ∗ ... - - - pdf - 203033 - Apr 25, - 2016 20:24:18 GMT - english - In re the Estate of: Edward D. Kane a/k/a Edward Donald Kane, Decedent. A15-1033, Court of Appeals Unpublished, April ... - 2016-04-19T08:51:50+00:00 - Microsoft® Word 2013 - 2016-04-25T13:44:53+00:00 - Microsoft® Word 2013 - Probate dispute. Affirmed in part, reversed in part, remanded. - In re the Estate of: Edward D. Kane a/k/a Edward Donald Kane, Decedent. A15-1033, Court of Appeals Unpublished, April 25, 2016. - A15-1033 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 182953 - Apr 25, - 2016 20:24:17 GMT - english - State of Minnesota, Respondent, vs. Andrew John Wondrasek, Appellant. A15-337, Court of Appeals Unpublished, April 25, ... - 2016-04-19T13:14:09+00:00 - Microsoft® Word 2013 - 2016-04-25T10:42:46+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of motion to suppress evidence and to dismiss. - State of Minnesota, Respondent, vs. Andrew John Wondrasek, Appellant. A15-337, Court of Appeals Unpublished, April 25, 2016. - A15-337 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123569 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Rustin Kent Hartland, Appellant. A15-898, Court of Appeals Unpublished, April 25, ... - 2016-04-15T15:18:24+00:00 - Microsoft® Word 2013 - 2016-04-25T11:06:07+00:00 - Microsoft® Word 2013 - Challenges to convictions of receiving stolen property, theft of a motor vehicle, driving after license cancellation, and two counts of first-degree driving while impaired. - State of Minnesota, Respondent, vs. Rustin Kent Hartland, Appellant. A15-898, Court of Appeals Unpublished, April 25, 2016. - A15-898 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 156435 - Apr 25, - 2016 20:24:17 GMT - english - In the Matter of the Estate of: Orville C. Jacobson, Deceased In the Matter of the Estate of: Hughie Eugene Keenan, ... - 2016-04-14T14:53:26+00:00 - Microsoft® Word 2013 - 2016-04-25T10:39:50+00:00 - Microsoft® Word 2013 - Probate dispute. - In the Matter of the Estate of: Orville C. Jacobson, Deceased In the Matter of the Estate of: Hughie Eugene Keenan, Deceased. A15-316, Court of Appeals Unpublished, April 25, 2016. - A15-316 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 184567 - Apr 25, - 2016 20:24:18 GMT - english - In the Matter of the Administrative Penalty Order of Fays Homestyle Catering. A15-967, Court of Appeals Unpublished, ... - 2016-04-18T10:49:38+00:00 - Microsoft® Word 2013 - 2016-04-25T13:33:51+00:00 - Microsoft® Word 2013 - Challenges a $10,000 administrative penalty imposed by the commissioner of the Minnesota Department of Health (the MDH) based on relators failure to obtain a license to provide catering services. - In the Matter of the Administrative Penalty Order of Fays Homestyle Catering. A15-967, Court of Appeals Unpublished, April 25, 2016. - A15-967 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 136992 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Arnold Lee Scott, Appellant. A15-661, Court of Appeals Unpublished, April 25, 2016. - 2016-04-14T15:33:29+00:00 - Microsoft® Word 2013 - 2016-04-25T10:52:42+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Arnold Lee Scott, Appellant. A15-661, Court of Appeals Unpublished, April 25, 2016. - A15-661 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 100399 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. William James Chestnut, Appellant. A15-1073, Court of Appeals Unpublished, April 25,... - 2016-04-20T09:37:49+00:00 - Microsoft® Word 2013 - 2016-04-25T13:53:56+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree unintentional murder and sentencing. - State of Minnesota, Respondent, vs. William James Chestnut, Appellant. A15-1073, Court of Appeals Unpublished, April 25, 2016. - A15-1073 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 142374 - Apr 25, - 2016 20:24:18 GMT - english - Preeti Kaur Rajpal, Appellant, vs. Regents of the University of Minnesota, et al., Respondents. A15-1207, Court of ... - 2016-04-14T15:18:21+00:00 - Microsoft® Word 2013 - 2016-04-25T14:08:52+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment in dismissal from medical school. - Preeti Kaur Rajpal, Appellant, vs. Regents of the University of Minnesota, et al., Respondents. A15-1207, Court of Appeals Unpublished, April 25, 2016. - A15-1207 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 183532 - Apr 25, - 2016 20:24:18 GMT - english - Jamel Daniel Hoard, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1211, Court of Appeals Unpublished, ... - 2016-04-19T13:41:30+00:00 - Microsoft® Word 2013 - 2016-04-25T14:18:03+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Jamel Daniel Hoard, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1211, Court of Appeals Unpublished, April 25, 2016. - A15-1211 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 129270 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Byron Dean Sayers, Appellant. A15-1345, Court of Appeals Unpublished, April 25, ... - 2016-04-20T09:21:22+00:00 - Microsoft® Word 2013 - 2016-04-25T15:05:33+00:00 - Microsoft® Word 2013 - Revocation of probation. Reversed and remanded. - State of Minnesota, Respondent, vs. Byron Dean Sayers, Appellant. A15-1345, Court of Appeals Unpublished, April 25, 2016. - A15-1345 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 166868 - Apr 25, - 2016 20:24:18 GMT - english - Rojelio Castillo, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1176, Court of Appeals Unpublished, ... - 2016-04-18T13:28:18+00:00 - Microsoft® Word 2013 - 2016-04-25T14:06:27+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Rojelio Castillo, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1176, Court of Appeals Unpublished, April 25, 2016. - A15-1176 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 29151 - Apr 25, - 2016 20:24:17 GMT - english - State of Minnesota, Respondent, vs. Deundrick Demon McIntosh, Appellant. A15-887, Court of Appeals Unpublished, April ... - Minnesota Judicial Branch - 2016-04-18T10:23:08+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-25T11:00:27+00:00 - Adobe PDF Library 11.0 - 2016-04-18T15:23:01+00:00 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Deundrick Demon McIntosh, Appellant. A15-887, Court of Appeals Unpublished, April 25, 2016. - A15-887 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 187286 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Morgan Lee Thompson, Appellant. A15-904, Court of Appeals Unpublished, April 25, ... - 2016-04-14T11:34:37+00:00 - Microsoft® Word 2013 - 2016-04-25T13:12:37+00:00 - Microsoft® Word 2013 - Challenges to conviction of aggravated-robbery. - State of Minnesota, Respondent, vs. Morgan Lee Thompson, Appellant. A15-904, Court of Appeals Unpublished, April 25, 2016. - A15-904 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 120631 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Lisa Lorraine Peltier, Appellant. A15-1324, Court of Appeals Unpublished, April 25, ... - 2016-04-15T12:02:12+00:00 - Microsoft® Word 2013 - 2016-04-25T14:49:44+00:00 - Microsoft® Word 2013 - Challenges the district courts calculation of jail credit toward sentence. - State of Minnesota, Respondent, vs. Lisa Lorraine Peltier, Appellant. A15-1324, Court of Appeals Unpublished, April 25, 2016. - A15-1324 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 45462 - Apr 25, - 2016 20:24:18 GMT - english - Nicholas James Heinz, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-964, Court of Appeals ... - Minnesota Judicial Branch - 2016-04-19T09:37:02+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-25T13:32:13+00:00 - Adobe PDF Library 11.0 - 2016-04-19T14:36:53+00:00 - Challenges an order sustaining the revocation of drivers license for refusing to submit to a chemical test. - Nicholas James Heinz, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-964, Court of Appeals Unpublished, April 25, 2016. - A15-964 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 133575 - Apr 25, - 2016 20:24:18 GMT - english - Robert Anderson, Respondent, vs. State of Minnesota, Appellant. A15-1254, Court of Appeals Unpublished, April 25, 2016. - 2016-04-19T13:53:37+00:00 - Microsoft® Word 2013 - 2016-04-25T14:30:05+00:00 - Microsoft® Word 2013 - State challenges restoration of right to possess a firearm. - Robert Anderson, Respondent, vs. State of Minnesota, Appellant. A15-1254, Court of Appeals Unpublished, April 25, 2016. - A15-1254 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122374 - Apr 25, - 2016 20:24:18 GMT - english - Kaytee Hooser, et al., Respondents, vs. Keith Anderson, Appellant. A15-1738, Court of Appeals Unpublished, April 25, ... - 2016-04-15T10:27:13+00:00 - Microsoft® Word 2013 - 2016-04-25T15:20:52+00:00 - Microsoft® Word 2013 - Landlord-tenant dispute. - Kaytee Hooser, et al., Respondents, vs. Keith Anderson, Appellant. A15-1738, Court of Appeals Unpublished, April 25, 2016. - A15-1738 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 116193 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Joseph Ray Burrell, Appellant. A15-1005, Court of Appeals Unpublished, April 25, ... - 2016-04-20T09:32:00+00:00 - Microsoft® Word 2013 - 2016-04-25T13:36:51+00:00 - Microsoft® Word 2013 - Challenges drug related convictions. - State of Minnesota, Respondent, vs. Joseph Ray Burrell, Appellant. A15-1005, Court of Appeals Unpublished, April 25, 2016. - A15-1005 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 31133 - Apr 25, - 2016 20:24:18 GMT - english - Clarinda Low, Appellant, vs. Travis Russell Yorek, Respondent. A15-1107, Court of Appeals Unpublished, April 25, 2016. - Minnesota Judicial Branch - 2016-04-18T09:36:50+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-25T13:57:26+00:00 - Adobe PDF Library 11.0 - 2016-04-18T14:36:38+00:00 - Appellant argues that the district court erred by issuing an order adopting the parties agreement and later refusing to vacate that order. - Clarinda Low, Appellant, vs. Travis Russell Yorek, Respondent. A15-1107, Court of Appeals Unpublished, April 25, 2016. - A15-1107 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 117473 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Scott Anthony Hebert, Appellant. A15-1121, Court of Appeals Unpublished, April 25, ... - 2016-04-19T13:27:51+00:00 - Microsoft® Word 2013 - 2016-04-25T13:59:56+00:00 - Microsoft® Word 2013 - Challenges denial of motion for a downward dispositional departure from the presumptive sentencing guidelines range. - State of Minnesota, Respondent, vs. Scott Anthony Hebert, Appellant. A15-1121, Court of Appeals Unpublished, April 25, 2016. - A15-1121 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 103442 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Brian Robert Winsor, Appellant. A15-1056, Court of Appeals Unpublished, April 25, ... - 2016-04-18T13:26:49+00:00 - Microsoft® Word 2013 - 2016-04-25T13:49:07+00:00 - Microsoft® Word 2013 - Challenges to convictions of stalking and violation of an order for protection. Reversed and remanded. - State of Minnesota, Respondent, vs. Brian Robert Winsor, Appellant. A15-1056, Court of Appeals Unpublished, April 25, 2016. - A15-1056 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 172425 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. John Charles Kotten, Appellant. A15-1160, Court of Appeals Unpublished, April 25, ... - 2016-04-19T14:33:04+00:00 - Microsoft® Word 2013 - 2016-04-25T14:02:44+00:00 - Microsoft® Word 2013 - Challenges to convictions of fourth-degree assault against a police officer, obstructing legal process, disorderly conduct, and trespass. - State of Minnesota, Respondent, vs. John Charles Kotten, Appellant. A15-1160, Court of Appeals Unpublished, April 25, 2016. - A15-1160 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 173272 - Apr 25, - 2016 20:24:18 GMT - english - Angela M. Schroeder, Relator, vs. Angel Eyes, Inc., Respondent, Department of Employment and Economic Development, ... - 2016-04-18T12:53:12+00:00 - Microsoft® Word 2013 - 2016-04-25T14:12:18+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Angela M. Schroeder, Relator, vs. Angel Eyes, Inc., Respondent, Department of Employment and Economic Development, Respondent. A15-1208, Court of Appeals Unpublished, April 25, 2016. - A15-1208 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 240174 - Apr 25, - 2016 20:24:18 GMT - english - Roxanne J. Soderholm, Respondent, vs. Olivia Forar, et al., Appellants. A15-1233, Court of Appeals Unpublished, April ... - 2016-04-20T09:28:00+00:00 - Microsoft® Word 2013 - 2016-04-25T14:22:38+00:00 - Microsoft® Word 2013 - Challenges that the district court erred in denying motion for judgment as a matter of law (JMOL). - Roxanne J. Soderholm, Respondent, vs. Olivia Forar, et al., Appellants. A15-1233, Court of Appeals Unpublished, April 25, 2016. - A15-1233 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 173397 - Apr 25, - 2016 20:24:18 GMT - english - Scott Andren, Appellant, vs. James Woodhull, et al., Respondents. A15-1465, Court of Appeals Unpublished, April 25, ... - 2016-04-19T14:46:26+00:00 - Microsoft® Word 2013 - 2016-04-25T15:07:16+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. Reversed. - Scott Andren, Appellant, vs. James Woodhull, et al., Respondents. A15-1465, Court of Appeals Unpublished, April 25, 2016. - A15-1465 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 29749 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Luke Brandon Scott, Appellant. A15-1815, Court of Appeals Unpublished, April 25, ... - Minnesota Judicial Branch - 2016-04-19T09:18:44+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-25T15:22:20+00:00 - Adobe PDF Library 11.0 - 2016-04-19T14:18:37+00:00 - Challenges the district courts denial of motion to correct sentence for false imprisonment and first-degree assault. - State of Minnesota, Respondent, vs. Luke Brandon Scott, Appellant. A15-1815, Court of Appeals Unpublished, April 25, 2016. - A15-1815 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 114574 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Henry Davila, Appellant. A15-1496, Court of Appeals Unpublished, April 25, 2016. - 2016-04-19T09:17:33+00:00 - Microsoft® Word 2013 - 2016-04-25T15:17:40+00:00 - Microsoft® Word 2013 - Challenges drug-related convictions. - State of Minnesota, Respondent, vs. Henry Davila, Appellant. A15-1496, Court of Appeals Unpublished, April 25, 2016. - A15-1496 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 181802 - Apr 25, - 2016 20:24:18 GMT - english - Roger William Kuehn, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-1278, Court of Appeals ... - 2016-04-20T09:47:40+00:00 - Microsoft® Word 2013 - 2016-04-25T14:38:17+00:00 - Microsoft® Word 2013 - Challenges revocation of driver's license. - Roger William Kuehn, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-1278, Court of Appeals Unpublished, April 25, 2016. - A15-1278 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123011 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Brandon Harley Johansen, Appellant. A15-1673, Court of Appeals Unpublished, April ... - 2016-04-13T14:07:39+00:00 - Microsoft® Word 2013 - 2016-04-25T15:19:25+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Brandon Harley Johansen, Appellant. A15-1673, Court of Appeals Unpublished, April 25, 2016. - A15-1673 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 139877 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. James William Kralik, Appellant. A15-914, Court of Appeals Unpublished, April 25, ... - 2016-04-18T13:12:11+00:00 - Microsoft® Word 2013 - 2016-04-25T13:22:10+00:00 - Microsoft® Word 2013 - Challenges to convictions of first-degree aggravated robbery, first-degree burglary, and second-degree assault. Affirmed in part, reversed in part. - State of Minnesota, Respondent, vs. James William Kralik, Appellant. A15-914, Court of Appeals Unpublished, April 25, 2016. - A15-914 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 421834 - Apr 20, - 2016 16:25:22 GMT - english - In re Petition for Disciplinary Action against Kristian Lee Oyen, a Minnesota Attorney, Registration No. 386383. ... - 2016-04-13T13:28:01+00:00 - Canon DR-M140 TWAIN - 2016-04-20T11:18:14+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Kristian Lee Oyen is conditionally reinstated to the practice of law in the State of Minnesota,. - In re Petition for Disciplinary Action against Kristian Lee Oyen, a Minnesota Attorney, Registration No. 386383. A14-1384, Supreme Court Order, April 20, 2016. - A14-1384 - 2016-04-20T00:00:00-0500 - April 13, 2016 STATE OF MINNESOTA IN SUPREME COURT A14-1384 In rePetition for Disciplinary Action against Kristian Lee Oyen, a Minnesota Attorney, Registration ... - - - pdf - 380684 - Apr 20, - 2016 16:25:22 GMT - english - In re Petition for Disciplinary Action against Mark Alan Greenman, a Minnesota Attorney, Registration No. 0228990. ... - 2016-04-13T13:49:30+00:00 - Canon DR-M140 TWAIN - 2016-04-20T11:19:27+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Mark Alan Greenman is suspended from the practice of law. - In re Petition for Disciplinary Action against Mark Alan Greenman, a Minnesota Attorney, Registration No. 0228990. A16-491, Supreme Court Order, April 20, 2016. - A16-491 - 2016-04-20T00:00:00-0500 - April 13, 2016 STATE OF MINNESOTA IN SUPREME COURT A16-0491 In re Petition for Disciplinary Action against Mark Alan Greenman, a Minnesota Attorney, Registration ... - - - pdf - 1007568 - Apr 20, - 2016 16:25:22 GMT - english - ORDER PROMULGATING AMENDMENTS TO THE RULES OF CIVIL APPELLATE PROCEDURE. ADM09-8006, Supreme Court Administrative Order,... - 2016-04-14T16:26:02+00:00 - Canon DR-M140 TWAIN - 2016-04-20T11:23:38+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The attached amendments to the Rules of Civil Appellate Procedure are prescribed and promulgated to be effective on July 1, 2016. - ORDER PROMULGATING AMENDMENTS TO THE RULES OF CIVIL APPELLATE PROCEDURE. ADM09-8006, Supreme Court Administrative Order, April 20, 2016. - ADM09-8006 - 2016-04-20T00:00:00-0500 - April 14, 2016 STATE OF MINNESOTA IN SUPREME COURT ADM09-8006 ORDER PROMULGATING AMENDMENTS TO THE RULES OF CIVIL APPELLATE PROCEDURE fl OliiU: EOF API'B.L\ ... - - - pdf - 431736 - Apr 20, - 2016 16:25:22 GMT - english - ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF CRIMINAL PROCEDURE. ADM10-8049, Supreme Court Administrative ... - 2016-04-14T16:33:01+00:00 - Canon DR-M140 TWAIN - 2016-04-20T11:22:22+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The attached amendments to the Rules of Criminal Procedure are prescribed and promulgated to be effective on July 1, 2016. - ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF CRIMINAL PROCEDURE. ADM10-8049, Supreme Court Administrative Order, April 20, 2016. - ADM10-8049 - 2016-04-20T00:00:00-0500 - April 14, 2016 STATE OF MINNESOTA IN SUPREME COURT ADMl0- 8049 ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF CRIMINAL PROCEDURE -I Om~IEOF APPB.J. ... - - - pdf - 259046 - Apr 20, - 2016 16:25:22 GMT - english - J.D. Donovan, Inc., et al., Appellants, vs. Minnesota Department of Transportation, et al., Respondents. A14-863,... - 2016-04-18T11:15:33+00:00 - Microsoft® Word 2013 - 2016-04-20T11:15:46+00:00 - Microsoft® Word 2013 - The transport of asphalt cement from a commercial oil refinery to a contractors facility is not subject to the Prevailing Wage Act because the scope of hauling activities considered to be "work under the contract" under Minn. R. 5200.1106 (2015) is limited to hauling activities to, from, or on the site of a public works project. Reversed. - J.D. Donovan, Inc., et al., Appellants, vs. Minnesota Department of Transportation, et al., Respondents. A14-863,A14-1021, Supreme Court, April 20, 2016. - A14-863 - 2016-04-20T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0863 A14-1021 Court of Appeals Gildea, C.J. Dissenting, Lillehaug and Stras, JJ. J.D. Donovan, Inc., et al., ... - - - pdf - 113195 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Casey James Pederson, Appellant. A14-2123, Court of Appeals Unpublished, April 18, ... - 2016-04-11T10:42:17+00:00 - Microsoft® Word 2013 - 2016-04-18T14:00:39+00:00 - Microsoft® Word 2013 - Appeal from his conviction of fifth-degree drug possession and an 18-month prison sentence. - State of Minnesota, Respondent, vs. Casey James Pederson, Appellant. A14-2123, Court of Appeals Unpublished, April 18, 2016. - A14-2123 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 121361 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Trevon Fuller, Appellant. A15-635, Court of Appeals Unpublished, April 18, 2016. - 2016-04-12T11:42:41+00:00 - Microsoft® Word 2013 - 2016-04-18T13:55:33+00:00 - Microsoft® Word 2013 - Appellant challenges his convictions of felony first-degree driving while impaired and gross misdemeanor driving after cancellation. Reversed. - State of Minnesota, Respondent, vs. Trevon Fuller, Appellant. A15-635, Court of Appeals Unpublished, April 18, 2016. - A15-635 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 166185 - Apr 18, - 2016 19:43:23 GMT - english - Ronald D. Van Riper, Respondent, vs. Bonnie L. Roy, Appellant. A15-844, Court of Appeals Unpublished, April 18, 2016. - 2016-04-12T16:22:18+00:00 - Microsoft® Word 2013 - 2016-04-18T13:54:14+00:00 - Microsoft® Word 2013 - Appeals eviction order. - Ronald D. Van Riper, Respondent, vs. Bonnie L. Roy, Appellant. A15-844, Court of Appeals Unpublished, April 18, 2016. - A15-844 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 268319 - Apr 18, - 2016 19:43:23 GMT - english - Mark Lanterman, et al., Appellants, vs. Michael Roman Afremov, Respondent. A15-729, Court of Appeals Unpublished, April ... - 2016-04-07T09:00:33+00:00 - Microsoft® Word 2013 - 2016-04-18T13:53:18+00:00 - Microsoft® Word 2013 - Appellants challenge verdict in breach-of-contract claim. Reversed and remanded. - Mark Lanterman, et al., Appellants, vs. Michael Roman Afremov, Respondent. A15-729, Court of Appeals Unpublished, April 18, 2016. - A15-729 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 285812 - Apr 18, - 2016 19:43:23 GMT - english - Rebecca Lee Treptow, Respondent, vs. Brittany Ann Layland Vacko, Appellant. A15-1084, Court of Appeals Unpublished, ... - 2016-04-13T09:01:25+00:00 - Microsoft® Word 2013 - 2016-04-18T14:38:47+00:00 - Microsoft® Word 2013 - Pro se appellant challenges the district courts issuance of a harassment restraining order (HRO). - Rebecca Lee Treptow, Respondent, vs. Brittany Ann Layland Vacko, Appellant. A15-1084, Court of Appeals Unpublished, April 18, 2016. - A15-1084 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 181615 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Sheldon James Armstrong, III, Appellant. A15-924, Court of Appeals Unpublished, ... - 2016-04-07T10:09:20+00:00 - Microsoft® Word 2013 - 2016-04-18T13:46:49+00:00 - Microsoft® Word 2013 - Appeals conviction for attempted first-degree murder. - State of Minnesota, Respondent, vs. Sheldon James Armstrong, III, Appellant. A15-924, Court of Appeals Unpublished, April 18, 2016. - A15-924 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 290438 - Apr 18, - 2016 19:43:23 GMT - english - Jessica Mattson, Appellant, vs. City of Rushford, Respondent, Minnowa Construction, Inc., Respondent, State of ... - 2016-04-08T14:21:52+00:00 - Microsoft® Word 2013 - 2016-04-18T14:41:47+00:00 - Microsoft® Word 2013 - Appellant challenges the summary-judgment dismissal of her negligence claims against respondents City of Rushford (Rushford), Minnesota State Department of Transportation (MNDOT), and Minnowa Construction, Inc. (Minnowa). - Jessica Mattson, Appellant, vs. City of Rushford, Respondent, Minnowa Construction, Inc., Respondent, State of Minnesota Department of Transportation, Respondent, Edwards and Kelcey, Inc., et al., Defendants, Minnowa Construction, Inc., Third Party Plaintiff, vs. Eric Kaiser d/b/a Kaiser Concrete, Third Party Defendant. A15-1018, Court of Appeals Unpublished, April 18, 2016. - A15-1018 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 144296 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Mark Anthony Sanders, Appellant. A15-963, Court of Appeals Unpublished, April 18, ... - 2016-04-12T13:35:56+00:00 - Microsoft® Word 2013 - 2016-04-18T13:48:11+00:00 - Microsoft® Word 2013 - Appellant challenges his conviction of first-degree sale of a controlled substance. - State of Minnesota, Respondent, vs. Mark Anthony Sanders, Appellant. A15-963, Court of Appeals Unpublished, April 18, 2016. - A15-963 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107998 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Matthew Shane Michener, Appellant. A15-1374, Court of Appeals Unpublished, April 18,... - 2016-04-12T13:47:03+00:00 - Microsoft® Word 2013 - 2016-04-18T14:37:48+00:00 - Microsoft® Word 2013 - Appellant challenges his second-degree burglary conviction. - State of Minnesota, Respondent, vs. Matthew Shane Michener, Appellant. A15-1374, Court of Appeals Unpublished, April 18, 2016. - A15-1374 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 140795 - Apr 18, - 2016 19:43:23 GMT - english - In the Matter of the Welfare of the Children of: I. M. A. a/k/a I. N. and A. T. N., Parents. A15-1752, A15-1783, Court ... - 2016-04-12T14:22:01+00:00 - Microsoft® Word 2013 - 2016-04-18T14:25:12+00:00 - Microsoft® Word 2013 - Termination of parental rights. - In the Matter of the Welfare of the Children of: I. M. A. a/k/a I. N. and A. T. N., Parents. A15-1752, A15-1783, Court of Appeals Unpublished, April 18, 2016. - A15-1752 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 162843 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Derrick Jacqueay Roberson, Appellant. A15-507, Court of Appeals Unpublished, April ... - 2016-04-11T14:01:42+00:00 - Microsoft® Word 2013 - 2016-04-18T13:50:34+00:00 - Microsoft® Word 2013 - Appellant challenges his test-refusal conviction. Reversed. - State of Minnesota, Respondent, vs. Derrick Jacqueay Roberson, Appellant. A15-507, Court of Appeals Unpublished, April 18, 2016. - A15-507 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 148460 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Kevin Maurice Williams, Appellant. A15-644, Court of Appeals Unpublished, April 18, ... - 2016-04-12T17:24:02+00:00 - Microsoft® Word 2013 - 2016-04-18T13:59:37+00:00 - Microsoft® Word 2013 - Challenges conviction of two counts of second-degree aggravated robbery. - State of Minnesota, Respondent, vs. Kevin Maurice Williams, Appellant. A15-644, Court of Appeals Unpublished, April 18, 2016. - A15-644 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS ... - - - pdf - 243813 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Jeffrey Allen Bachman, Appellant. A15-1122, Court of Appeals Unpublished, April 18, ... - 2016-04-07T08:50:50+00:00 - Microsoft® Word 2013 - 2016-04-18T14:26:22+00:00 - Microsoft® Word 2013 - Challenges conviction for driving under the influence of a controlled substance. - State of Minnesota, Respondent, vs. Jeffrey Allen Bachman, Appellant. A15-1122, Court of Appeals Unpublished, April 18, 2016. - A15-1122 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 198068 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Patrick James Buswell, Appellant. A15-804, Court of Appeals Unpublished, April 18, ... - 2016-04-12T11:55:51+00:00 - Microsoft® Word 2013 - 2016-04-18T13:49:21+00:00 - Microsoft® Word 2013 - Appellant challenges his convictions of being a prohibited person in possession of a firearm and possession of drug paraphernalia. - State of Minnesota, Respondent, vs. Patrick James Buswell, Appellant. A15-804, Court of Appeals Unpublished, April 18, 2016. - A15-804 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 115239 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Eric James Rutherford, Appellant. A15-834, Court of Appeals Unpublished, April 18, ... - 2016-04-12T13:13:24+00:00 - Microsoft® Word 2013 - 2016-04-18T13:58:14+00:00 - Microsoft® Word 2013 - Appeal from his conviction of fifth-degree criminal sexual conduct. - State of Minnesota, Respondent, vs. Eric James Rutherford, Appellant. A15-834, Court of Appeals Unpublished, April 18, 2016. - A15-834 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 133671 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Dana Jerome Duncombe, Appellant. A15-1013, Court of Appeals Unpublished, April 18, ... - 2016-04-12T14:35:30+00:00 - Microsoft® Word 2013 - 2016-04-18T13:57:03+00:00 - Microsoft® Word 2013 - Appellant challenges his conviction of possession of a firearm by an ineligible person. - State of Minnesota, Respondent, vs. Dana Jerome Duncombe, Appellant. A15-1013, Court of Appeals Unpublished, April 18, 2016. - A15-1013 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 41446 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Renee Anita Vasko, Appellant. A15-1172, Court of Appeals Unpublished, April 18, ... - Minnesota Judicial Branch - 2016-04-11T09:32:39+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-18T14:32:55+00:00 - Adobe PDF Library 11.0 - 2016-04-11T14:32:30+00:00 - Challenges her misdemeanor conviction of violating a municipal blight ordinance. Reversed. - State of Minnesota, Respondent, vs. Renee Anita Vasko, Appellant. A15-1172, Court of Appeals Unpublished, April 18, 2016. - A15-1172 - 2016-04-18T00:00:00-0500 - 1 This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS ... - - - pdf - 132104 - Apr 18, - 2016 19:43:23 GMT - english - Continental Property Group, LLC, Appellant, vs. City of Wayzata, Respondent. A15-1550, Court of Appeals Unpublished, ... - 2016-04-12T12:17:16+00:00 - Microsoft® Word 2013 - 2016-04-18T14:33:58+00:00 - Microsoft® Word 2013 - Appeal from the citys denial of (1) a planned unit development concept plan, and (2) a height variance. - Continental Property Group, LLC, Appellant, vs. City of Wayzata, Respondent. A15-1550, Court of Appeals Unpublished, April 18, 2016. - A15-1550 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 43681 - Apr 18, - 2016 19:43:23 GMT - english - Excel Manufacturing, Inc., Appellant, vs. Todd Wondrow, et al., Respondents. A15-1325, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-04-12T09:39:38+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-18T14:34:55+00:00 - Adobe PDF Library 11.0 - 2016-04-12T14:39:29+00:00 - Appellant challenges the district courts summary-judgment dismissal of its lawsuit. - Excel Manufacturing, Inc., Appellant, vs. Todd Wondrow, et al., Respondents. A15-1325, Court of Appeals Unpublished, April 18, 2016. - A15-1325 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 157533 - Apr 18, - 2016 19:43:23 GMT - english - In the Matter of the Welfare of the Children of: S.M.M., D.M.P. and W.A.W., Parents. A15-1905, Court of Appeals ... - 2016-04-12T09:15:58+00:00 - Microsoft® Word 2013 - 2016-04-18T14:40:32+00:00 - Microsoft® Word 2013 - Termination of parental rights. - In the Matter of the Welfare of the Children of: S.M.M., D.M.P. and W.A.W., Parents. A15-1905, Court of Appeals Unpublished, April 18, 2016. - A15-1905 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 188663 - Apr 18, - 2016 19:43:23 GMT - english - Fern Hill Place Retail Association, Inc., Appellant, vs. Fern Hill Place Homeowners Association, Inc., Respondent. ... - 2016-04-11T14:09:17+00:00 - Microsoft® Word 2013 - 2016-04-18T14:42:45+00:00 - Microsoft® Word 2013 - Appellant retail association challenges the district court's denial of its motion to vacate an arbitration award. - Fern Hill Place Retail Association, Inc., Appellant, vs. Fern Hill Place Homeowners Association, Inc., Respondent. A15-1318, Court of Appeals Unpublished, April 18, 2016. - A15-1318 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 104914 - Apr 18, - 2016 19:43:23 GMT - english - Adrianne Robbennolt and obo minor child, petitioner, Respondent, vs. Sandi Weigum, Appellant. A15-1440, Court of ... - 2016-04-12T09:04:56+00:00 - Microsoft® Word 2013 - 2016-04-18T14:36:00+00:00 - Microsoft® Word 2013 - Pro se appellant challenges a harassment restraining order (HRO) granted to pro se respondent and her minor child. - Adrianne Robbennolt and obo minor child, petitioner, Respondent, vs. Sandi Weigum, Appellant. A15-1440, Court of Appeals Unpublished, April 18, 2016. - A15-1440 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 118693 - Apr 13, - 2016 16:58:11 GMT - english - Toby Earl Johnson, Appellant, vs. State of Minnesota, Respondent. A15-698, Supreme Court, April 13, 2016. - 2016-04-06T16:34:59+00:00 - Microsoft® Word 2013 - 2016-04-13T11:52:53+00:00 - Microsoft® Word 2013 - Because the postconviction court properly construed appellant's motion brought pursuant to Minn. R. Crim. P. 27.03, subd. 9, as a petition for postconviction relief, and the petition was untimely under Minn. Stat. § 590.01, subd. 4(a) (2014), the court did not err in denying the petition. - Toby Earl Johnson, Appellant, vs. State of Minnesota, Respondent. A15-698, Supreme Court, April 13, 2016. - A15-698 - 2016-04-13T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0698 McLeod County Gildea, C.J. Took no part, Anderson, Chutich, JJ. Toby Earl Johnson, Appellant, vs. Filed: ... - - - pdf - 262115 - Apr 13, - 2016 16:58:11 GMT - english - Daniel L. Berglund, Relator, vs. Commissioner of Revenue, Respondent. A15-957, Supreme Court, April 13, 2016. - 2016-04-08T16:03:28+00:00 - Microsoft® Word 2013 - 2016-04-13T11:51:35+00:00 - Microsoft® Word 2013 - Under the plain language of Minn. Stat. §§ 270C.33, 270C.62 (2014), the tax liability reported on a commissioner-filed return is assessed when it is "made by the commissioner," is "in writing," and is "entered into the records of the commissioner." To the extent that Minn. R. 8160.0620 (2015) requires a commissioner-filed return to include the Commissioner of Revenue's signature, the rule is inconsistent with the plain language of Minn. Stat. § 270C.62. The notices of commissioner-filed returns provided relator with notice of his tax liability, consistent with his due process rights under the United States and Minnesota Constitutions. - Daniel L. Berglund, Relator, vs. Commissioner of Revenue, Respondent. A15-957, Supreme Court, April 13, 2016. - A15-957 - 2016-04-13T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0957 Tax Court Gildea, C.J. Took no part, Chutich, J. Daniel L. Berglund, Relator, vs. Filed: April 13, 2016 ... - - - pdf - 183633 - Apr 11, - 2016 15:06:39 GMT - english - In the Matter of the Civil Commitment of: Kenneth Donald Hand. A15-1341, Court of Appeals Published, April 11, 2016. - 2016-04-06T09:37:45+00:00 - Microsoft® Word 2013 - 2016-04-11T10:05:24+00:00 - Microsoft® Word 2013 - 1. If an individual committed as a sexually dangerous person (SDP) brings a motion pursuant to rule 60.02 of the Minnesota Rules of Civil Procedure for relief from an order for indeterminate commitment alleging that the Minnesota Commitment and Treatment Act (MCTA), Minn. Stat. §§ 253D.01….36 (2014), is unconstitutional under Karsjens v. Jesson (Karsjens I), 109 F. Supp. 3d 1139, 1157 (D. Minn. 2015), motion to certify appeal denied, Civ. No. 11-3659, 2015 WL 4478972 (D. Minn. July 22, 2015), and therefore his commitment to the Minnesota Sex Offender Program (MSOP) was unlawful ab initio, the motion is barred by the exclusive transfer-or-discharge remedies of the MCTA. 2. When an SDP seeks a temporary restraining order (TRO) or temporary injunction pursuant to rules 65.01 and 65.02 of the Minnesota Rules of Civil Procedure, respectively, and that person has failed to state a viable claim for relief from an order for indeterminate commitment, the district court does not abuse its discretion by denying such relief. - In the Matter of the Civil Commitment of: Kenneth Donald Hand. A15-1341, Court of Appeals Published, April 11, 2016. - A15-1341 - 2016-04-11T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1341 In the Matter of the Civil Commitment of: Kenneth Donald Hand. Filed April 11, 2016 Affirmed Reyes, Judge Crow ... - - - pdf - 187268 - Apr 11, - 2016 15:06:39 GMT - english - Merceil Burkhalter, Appellant, vs. Dedrick D. Mays, et al., Defendants, Building Trades Federal Credit Union, ... - 2016-04-05T10:53:57+00:00 - Microsoft® Word 2013 - 2016-04-11T10:03:56+00:00 - Microsoft® Word 2013 - I. The protection afforded to good-faith purchasersŽ under Minnesota Statutes section 508.25 (2014) encompasses good-faith encumbrancers. II. A lender who secures a loan to purchase Torrens property is not disqualified from protection as a good-faith encumbrancer under Minnesota Statutes section 508.25 simply because the lender secured the loan after it became aware of circumstances on which the ostensible seller might eventually base an equitable-mortgage claim. - Merceil Burkhalter, Appellant, vs. Dedrick D. Mays, et al., Defendants, Building Trades Federal Credit Union, Respondent. A15-1078, Court of Appeals Published, April 11, 2016. - A15-1078 - 2016-04-11T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1078 Merceil Burkhalter, Appellant, vs. Dedrick D. Mays, et al., Defendants, Building Trades Federal Credit Union, ... - - - pdf - 199231 - Apr 11, - 2016 15:06:39 GMT - english - State of Minnesota, ex rel., Branden Lee Pollard, petitioner, Appellant, vs. Tom Roy, Commissioner of Corrections, ... - 2016-04-04T13:18:38+00:00 - Microsoft® Word 2013 - 2016-04-11T10:06:16+00:00 - Microsoft® Word 2013 - Under Minn. Stat. § 609.3455, subd. 6 (Supp. 2005), an offenders conditional-release term is not reduced by the time that the offender is incarcerated during the supervised-release term. - State of Minnesota, ex rel., Branden Lee Pollard, petitioner, Appellant, vs. Tom Roy, Commissioner of Corrections, Respondent. A15-1580, Court of Appeals Published, April 11, 2016. - A15-1580 - 2016-04-11T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1580 State of Minnesota, ex rel., Branden Lee Pollard, petitioner, Appellant, vs. Tom Roy, Commissioner of Corrections, ... - - - pdf - 110094 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Myles Ray Estes, Appellant. A15-660, Court of Appeals Unpublished, April 11, 2016. - 2016-03-31T15:49:15+00:00 - Microsoft® Word 2013 - 2016-04-11T11:19:37+00:00 - Microsoft® Word 2013 - Challenges to conviction of aggravated robbery. - State of Minnesota, Respondent, vs. Myles Ray Estes, Appellant. A15-660, Court of Appeals Unpublished, April 11, 2016. - A15-660 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123820 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Eric Tyler Schwappach, Appellant. A15-624, Court of Appeals Unpublished, April 11, ... - 2016-04-05T12:51:25+00:00 - Microsoft® Word 2013 - 2016-04-11T11:16:26+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Eric Tyler Schwappach, Appellant. A15-624, Court of Appeals Unpublished, April 11, 2016. - A15-624 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 118919 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Carlos Maurice Harris, Appellant. A15-711, Court of Appeals Unpublished, April 11, ... - 2016-04-05T13:26:23+00:00 - Microsoft® Word 2013 - 2016-04-11T11:41:23+00:00 - Microsoft® Word 2013 - Challenges possession of a firearm by an ineligible person. - State of Minnesota, Respondent, vs. Carlos Maurice Harris, Appellant. A15-711, Court of Appeals Unpublished, April 11, 2016. - A15-711 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 168611 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Mark Anthony Givins, Appellant. A15-685, Court of Appeals Unpublished, April 11, ... - 2016-04-05T15:33:36+00:00 - Microsoft® Word 2013 - 2016-04-11T11:39:16+00:00 - Microsoft® Word 2013 - Challenges to conviction of burglary. - State of Minnesota, Respondent, vs. Mark Anthony Givins, Appellant. A15-685, Court of Appeals Unpublished, April 11, 2016. - A15-685 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 207337 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Patrick Charles Bonga, Appellant. A14-961, Court of Appeals Unpublished, April 11, ... - 2016-04-06T09:32:40+00:00 - Microsoft® Word 2013 - 2016-04-11T10:58:52+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - State of Minnesota, Respondent, vs. Patrick Charles Bonga, Appellant. A14-961, Court of Appeals Unpublished, April 11, 2016. - A14-961 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 121648 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. James Dewayne Kelley, Appellant. A15-749, Court of Appeals Unpublished, April 11, ... - 2016-04-05T16:41:26+00:00 - Microsoft® Word 2013 - 2016-04-11T11:43:18+00:00 - Microsoft® Word 2013 - Challenges to conviction of misdemeanor trespassing and disorderly conduct. - State of Minnesota, Respondent, vs. James Dewayne Kelley, Appellant. A15-749, Court of Appeals Unpublished, April 11, 2016. - A15-749 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 166783 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Benjamin Danton Newman, Appellant. A15-990, Court of Appeals Unpublished, April 11, ... - 2016-04-01T13:27:06+00:00 - Microsoft® Word 2013 - 2016-04-11T12:01:12+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Benjamin Danton Newman, Appellant. A15-990, Court of Appeals Unpublished, April 11, 2016. - A15-990 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 183473 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Marcus Anthony Mattox, Appellant. A15-825, Court of Appeals Unpublished, April 11, ... - 2016-04-01T09:47:43+00:00 - Microsoft® Word 2013 - 2016-04-11T11:54:00+00:00 - Microsoft® Word 2013 - Challenges to convictions of convictions for felony domestic assault, terroristic threats, theft, and false imprisonment. - State of Minnesota, Respondent, vs. Marcus Anthony Mattox, Appellant. A15-825, Court of Appeals Unpublished, April 11, 2016. - A15-825 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 173765 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Tylynne Lashawn Wilson, Appellant. A15-1001, Court of Appeals Unpublished, April 11,... - 2016-03-31T15:55:39+00:00 - Microsoft® Word 2013 - 2016-04-11T12:03:55+00:00 - Microsoft® Word 2013 - Challenges to conviction of aiding an offender, accomplice after the fact. - State of Minnesota, Respondent, vs. Tylynne Lashawn Wilson, Appellant. A15-1001, Court of Appeals Unpublished, April 11, 2016. - A15-1001 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122196 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Charles ONeal Darby, Jr., Appellant. A15-1038, Court of Appeals Unpublished, April ... - 2016-04-05T14:10:18+00:00 - Microsoft® Word 2013 - 2016-04-11T12:08:13+00:00 - Microsoft® Word 2013 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. Charles ONeal Darby, Jr., Appellant. A15-1038, Court of Appeals Unpublished, April 11, 2016. - A15-1038 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122080 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Antonio Dupree Wright, Appellant. A15-955, Court of Appeals Unpublished, April 11, ... - 2016-04-05T14:02:18+00:00 - Microsoft® Word 2013 - 2016-04-11T11:58:27+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony domestic assault. - State of Minnesota, Respondent, vs. Antonio Dupree Wright, Appellant. A15-955, Court of Appeals Unpublished, April 11, 2016. - A15-955 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 97091 - Apr 11, - 2016 19:49:57 GMT - english - Baron Montero Jones, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1090, Court of Appeals Unpublished, ... - 2016-04-05T10:10:04+00:00 - Microsoft® Word 2013 - 2016-04-11T13:21:58+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Baron Montero Jones, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1090, Court of Appeals Unpublished, April 11, 2016. - A15-1090 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 153503 - Apr 11, - 2016 19:49:58 GMT - english - Jacquet Deon Munn, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1222, Court of Appeals Unpublished, ... - 2016-04-01T12:45:16+00:00 - Microsoft® Word 2013 - 2016-04-11T13:32:32+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Jacquet Deon Munn, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1222, Court of Appeals Unpublished, April 11, 2016. - A15-1222 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 136721 - Apr 11, - 2016 19:49:58 GMT - english - Melissa Dawn Paisley, petitioner, Respondent, vs. Clark Davis Kratzer, Appellant. A15-1115, Court of Appeals ... - 2016-04-04T16:02:44+00:00 - Microsoft® Word 2013 - 2016-04-11T13:24:38+00:00 - Microsoft® Word 2013 - Child custody dispute. - Melissa Dawn Paisley, petitioner, Respondent, vs. Clark Davis Kratzer, Appellant. A15-1115, Court of Appeals Unpublished, April 11, 2016. - A15-1115 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 179017 - Apr 11, - 2016 19:49:57 GMT - english - Boardwalk Bar & Grill, LLC, Relator, vs. East Grand Forks City Council, Respondent. A15-1071, Court of Appeals ... - 2016-04-04T10:56:15+00:00 - Microsoft® Word 2013 - 2016-04-11T13:20:36+00:00 - Microsoft® Word 2013 - Challenges conditional renewal of liquor license. - Boardwalk Bar & Grill, LLC, Relator, vs. East Grand Forks City Council, Respondent. A15-1071, Court of Appeals Unpublished, April 11, 2016. - A15-1071 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 181769 - Apr 11, - 2016 19:49:58 GMT - english - Mikel Thorstenson, Respondent, vs. Waterford Oil Co., Inc., Relator, Department of Employment and Economic Development, ... - 2016-04-05T09:08:42+00:00 - Microsoft® Word 2013 - 2016-04-11T14:00:23+00:00 - Microsoft® Word 2013 - Employer appeals an unemployment-law judges (ULJ) decision that respondent did not engage in employment misconduct rendering him ineligible for unemployment benefits. - Mikel Thorstenson, Respondent, vs. Waterford Oil Co., Inc., Relator, Department of Employment and Economic Development, Respondent. A15-1380, Court of Appeals Unpublished, April 11, 2016. - A15-1380 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 39214 - Apr 11, - 2016 19:49:58 GMT - english - In the Matter of the Welfare of the Child of: C. L. O. and J. J. S., Parents. A15-1194, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-04-05T14:12:17+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-11T13:29:26+00:00 - Adobe PDF Library 11.0 - 2016-04-05T19:09:29+00:00 - Termination of parental rights matter. - In the Matter of the Welfare of the Child of: C. L. O. and J. J. S., Parents. A15-1194, Court of Appeals Unpublished, April 11, 2016. - A15-1194 - 2016-04-11T00:00:00-0500 - 1 This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS ... - - - pdf - 207923 - Apr 11, - 2016 19:49:44 GMT - english - In re the Marriage of: James Walter Shaw, petitioner, Respondent, vs. Barbara Ann Shaw, Appellant. A15-771, Court of ... - 2016-04-05T08:47:23+00:00 - Microsoft® Word 2013 - 2016-04-11T11:46:37+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. Reversed and remanded. - In re the Marriage of: James Walter Shaw, petitioner, Respondent, vs. Barbara Ann Shaw, Appellant. A15-771, Court of Appeals Unpublished, April 11, 2016. - A15-771 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 119566 - Apr 11, - 2016 19:49:44 GMT - english - Theodore Lee Wicken, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-813, Court of Appeals Unpublished, ... - 2016-04-05T10:27:37+00:00 - Microsoft® Word 2013 - 2016-04-11T11:51:38+00:00 - Microsoft® Word 2013 - Challenges the postconviction courts denial of petition to withdraw guilty plea. - Theodore Lee Wicken, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-813, Court of Appeals Unpublished, April 11, 2016. - A15-813 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 96054 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Maxwell Robert Flynn, Appellant. A15-807, Court of Appeals Unpublished, April 11, ... - 2016-04-04T10:46:10+00:00 - Microsoft® Word 2013 - 2016-04-11T11:49:13+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Maxwell Robert Flynn, Appellant. A15-807, Court of Appeals Unpublished, April 11, 2016. - A15-807 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 169464 - Apr 11, - 2016 19:49:58 GMT - english - State of Minnesota, Respondent, vs. James Robert Stepke, Appellant. A15-1159, Court of Appeals Unpublished, April 11, ... - 2016-04-01T12:26:09+00:00 - Microsoft® Word 2013 - 2016-04-11T13:25:49+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree test refusal. - State of Minnesota, Respondent, vs. James Robert Stepke, Appellant. A15-1159, Court of Appeals Unpublished, April 11, 2016. - A15-1159 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS ... - - - pdf - 106625 - Apr 11, - 2016 19:49:58 GMT - english - State of Minnesota, Appellant, vs. Daniel Alvin Hennen, Respondent. A15-1376, Court of Appeals Unpublished, April 11, ... - 2016-03-31T10:08:38+00:00 - Microsoft® Word 2013 - 2016-04-11T13:47:12+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Appellant, vs. Daniel Alvin Hennen, Respondent. A15-1376, Court of Appeals Unpublished, April 11, 2016. - A15-1376 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 191162 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Ger Lee, Appellant. A15-920, Court of Appeals Unpublished, April 11, 2016. - 2016-04-01T08:46:40+00:00 - Microsoft® Word 2013 - 2016-04-11T11:56:28+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree assault. - State of Minnesota, Respondent, vs. Ger Lee, Appellant. A15-920, Court of Appeals Unpublished, April 11, 2016. - A15-920 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 156780 - Apr 11, - 2016 19:49:44 GMT - english - Nathan J. Knoernschild, et al., Respondents, vs. Dennis Halverson, Appellant. A15-909, Court of Appeals Unpublished, ... - 2016-04-05T09:49:17+00:00 - Microsoft® Word 2013 - 2016-04-11T11:55:12+00:00 - Microsoft® Word 2013 - Challenges to grant of summary judgment. - Nathan J. Knoernschild, et al., Respondents, vs. Dennis Halverson, Appellant. A15-909, Court of Appeals Unpublished, April 11, 2016. - A15-909 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS ... - - - pdf - 132499 - Apr 11, - 2016 19:49:44 GMT - english - Donna Jean Sjolander f/k/a Donna Jean Carlson, petitioner, Respondent, vs. Steven Gary Carlson, Appellant. A15-362, ... - 2016-03-30T14:23:25+00:00 - Microsoft® Word 2013 - 2016-04-11T11:06:33+00:00 - Microsoft® Word 2013 - Parenting-time dispute. Affirmed in part, reversed in part, and remanded. - Donna Jean Sjolander f/k/a Donna Jean Carlson, petitioner, Respondent, vs. Steven Gary Carlson, Appellant. A15-362, Court of Appeals Unpublished, April 11, 2016. - A15-362 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 108410 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Eric Jamison Brewer, Appellant. A15-622, Court of Appeals Unpublished, April 11, ... - 2016-04-04T15:22:45+00:00 - Microsoft® Word 2013 - 2016-04-11T11:13:07+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony domestic assault. - State of Minnesota, Respondent, vs. Eric Jamison Brewer, Appellant. A15-622, Court of Appeals Unpublished, April 11, 2016. - A15-622 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 186176 - Apr 11, - 2016 19:50:25 GMT - english - In the Matter of the Civil Commitment of: Steven Merrill Hogy. A15-1514, Court of Appeals Unpublished, April 11, 2016. - 2016-04-04T14:43:30+00:00 - Microsoft® Word 2013 - 2016-04-11T14:24:16+00:00 - Microsoft® Word 2013 - Challenges denial of motion for relief from civil commitment. - In the Matter of the Civil Commitment of: Steven Merrill Hogy. A15-1514, Court of Appeals Unpublished, April 11, 2016. - A15-1514 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 109858 - Apr 11, - 2016 19:50:26 GMT - english - James Adam Roth, Appellant, vs. Emily Johnson Piper, Commissioner of Human Services, Respondent. A15-1956, Court of ... - 2016-04-05T08:29:08+00:00 - Microsoft® Word 2013 - 2016-04-11T14:48:47+00:00 - Microsoft® Word 2013 - Challenges denial of petition for full discharge from civil commitment as a sexually dangerous person (SDP). - James Adam Roth, Appellant, vs. Emily Johnson Piper, Commissioner of Human Services, Respondent. A15-1956, Court of Appeals Unpublished, April 11, 2016. - A15-1956 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 223985 - Apr 11, - 2016 19:49:57 GMT - english - Mohammad Sonbol, Appellant, vs. Green and White Taxi Cab Company, Inc., Respondent. A15-1044, Court of Appeals ... - 2016-04-05T13:29:57+00:00 - Microsoft® Word 2013 - 2016-04-11T13:08:46+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of jury-trial demand. - Mohammad Sonbol, Appellant, vs. Green and White Taxi Cab Company, Inc., Respondent. A15-1044, Court of Appeals Unpublished, April 11, 2016. - A15-1044 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 102930 - Apr 11, - 2016 19:49:57 GMT - english - State of Minnesota, Respondent, vs. Michael Peter Beard, Appellant. A15-1045, Court of Appeals Unpublished, April 11, ... - 2016-04-01T09:19:19+00:00 - Microsoft® Word 2013 - 2016-04-11T13:17:37+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony test-refusal. - State of Minnesota, Respondent, vs. Michael Peter Beard, Appellant. A15-1045, Court of Appeals Unpublished, April 11, 2016. - A15-1045 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174825 - Apr 11, - 2016 19:49:44 GMT - english - Michael A. Pemrick, Relator, vs. Department of Employment and Economic Development, Respondent. A15-1028, Court of ... - 2016-04-04T10:36:12+00:00 - Microsoft® Word 2013 - 2016-04-11T12:06:40+00:00 - Microsoft® Word 2013 - Employer challenges an unemployment-law judges (ULJ) determination that 43 workers were employees. - Michael A. Pemrick, Relator, vs. Department of Employment and Economic Development, Respondent. A15-1028, Court of Appeals Unpublished, April 11, 2016. - A15-1028 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 126935 - Apr 11, - 2016 19:50:25 GMT - english - In the Matter of the Welfare of the Children of: M. O., Parent. A15-1868, Court of Appeals Unpublished, April 11, 2016. - 2016-04-01T09:35:32+00:00 - Microsoft® Word 2013 - 2016-04-11T14:33:58+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: M. O., Parent. A15-1868, Court of Appeals Unpublished, April 11, 2016. - A15-1868 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 109001 - Apr 11, - 2016 19:49:58 GMT - english - Rojelio Castillo, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1196, Court of Appeals Unpublished, ... - 2016-04-01T11:01:44+00:00 - Microsoft® Word 2013 - 2016-04-11T13:31:07+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Rojelio Castillo, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1196, Court of Appeals Unpublished, April 11, 2016. - A15-1196 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 158027 - Apr 11, - 2016 19:49:58 GMT - english - Aaron Wayne Downing, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1171, Court of Appeals Unpublished, ... - 2016-04-04T15:28:39+00:00 - Microsoft® Word 2013 - 2016-04-11T13:27:49+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - Aaron Wayne Downing, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1171, Court of Appeals Unpublished, April 11, 2016. - A15-1171 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 167944 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Maurice Deon Jackson, Appellant. A15-671, Court of Appeals Unpublished, April 11, ... - 2016-04-05T13:02:28+00:00 - Microsoft® Word 2013 - 2016-04-11T11:24:12+00:00 - Microsoft® Word 2013 - Challenges to convictions of convictions of first-degree aggravated robbery and domestic assault by strangulation. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Maurice Deon Jackson, Appellant. A15-671, Court of Appeals Unpublished, April 11, 2016. - A15-671 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 193433 - Apr 11, - 2016 19:49:58 GMT - english - Brett Thomas Green, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1386, Court of Appeals Unpublished, ... - 2016-03-31T11:44:54+00:00 - Microsoft® Word 2013 - 2016-04-11T14:04:48+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Brett Thomas Green, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1386, Court of Appeals Unpublished, April 11, 2016. - A15-1386 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 28904 - Apr 11, - 2016 19:50:25 GMT - english - Morris Gaye Kayee, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1938, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-04-05T11:53:47+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-11T14:36:40+00:00 - Adobe PDF Library 11.0 - 2016-04-05T16:51:04+00:00 - Challenges denial of motion to correct sentence. - Morris Gaye Kayee, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1938, Court of Appeals Unpublished, April 11, 2016. - A15-1938 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 171639 - Apr 11, - 2016 19:49:58 GMT - english - State of Minnesota, Respondent, vs. Ryan Roy Becker, Appellant. A15-1379, Court of Appeals Unpublished, April 11, 2016. - 2016-04-05T13:22:27+00:00 - Microsoft® Word 2013 - 2016-04-11T13:58:22+00:00 - Microsoft® Word 2013 - Challenges the district courts restitution order. - State of Minnesota, Respondent, vs. Ryan Roy Becker, Appellant. A15-1379, Court of Appeals Unpublished, April 11, 2016. - A15-1379 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174215 - Apr 11, - 2016 19:49:58 GMT - english - David Richard Carlson, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1388, Court of Appeals ... - 2016-04-06T14:03:13+00:00 - Microsoft® Word 2013 - 2016-04-11T14:06:37+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - David Richard Carlson, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1388, Court of Appeals Unpublished, April 11, 2016. - A15-1388 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 165271 - Apr 11, - 2016 19:50:25 GMT - english - Kasele Howard, Relator, vs. Family First Home Care, Inc., Respondent, Department of Employment and Economic Development,... - 2016-04-05T12:27:19+00:00 - Microsoft® Word 2013 - 2016-04-11T14:21:30+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Kasele Howard, Relator, vs. Family First Home Care, Inc., Respondent, Department of Employment and Economic Development, Respondent. A15-1487, Court of Appeals Unpublished, April 11, 2016. - A15-1487 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 116534 - Apr 11, - 2016 19:49:58 GMT - english - State of Minnesota, Respondent, vs. Rico Patrick Howard, Appellant. A15-1391, Court of Appeals Unpublished, April 11, ... - 2016-04-01T09:05:30+00:00 - Microsoft® Word 2013 - 2016-04-11T14:11:18+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree murder. - State of Minnesota, Respondent, vs. Rico Patrick Howard, Appellant. A15-1391, Court of Appeals Unpublished, April 11, 2016. - A15-1391 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123047 - Apr 11, - 2016 19:50:25 GMT - english - In the Matter of the Welfare of the Children of: J. L. C. and M. C., Parents. A15-1723, Court of Appeals Unpublished, ... - 2016-03-31T16:08:15+00:00 - Microsoft® Word 2013 - 2016-04-11T14:31:38+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: J. L. C. and M. C., Parents. A15-1723, Court of Appeals Unpublished, April 11, 2016. - A15-1723 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 197680 - Apr 11, - 2016 19:50:25 GMT - english - Boundary Waters Bank, Respondent, vs. William H. McGaughey, Appellant, Lian Y. McGaughey, Defendant. A15-1950, Court of ... - 2016-04-05T12:52:12+00:00 - Microsoft® Word 2013 - 2016-04-11T14:39:07+00:00 - Microsoft® Word 2013 - Real-property-foreclosure action. - Boundary Waters Bank, Respondent, vs. William H. McGaughey, Appellant, Lian Y. McGaughey, Defendant. A15-1950, Court of Appeals Unpublished, April 11, 2016. - A15-1950 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 127576 - Apr 11, - 2016 19:49:58 GMT - english - In re the Marriage of: Mary Patricia Myhre, petitioner, Respondent, vs. Steven Kenneth Myhre, Appellant. A15-1464, ... - 2016-04-01T15:41:57+00:00 - Microsoft® Word 2013 - 2016-04-11T14:18:38+00:00 - Microsoft® Word 2013 - Spousal maintenance dispute and child support dispute. - In re the Marriage of: Mary Patricia Myhre, petitioner, Respondent, vs. Steven Kenneth Myhre, Appellant. A15-1464, Court of Appeals Unpublished, April 11, 2016. - A15-1464 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 99358 - Apr 11, - 2016 19:49:58 GMT - english - State of Minnesota, Respondent, vs. Daniel Lee Bender, Appellant. A15-1234, Court of Appeals Unpublished, April 11, ... - 2016-04-04T15:34:49+00:00 - Microsoft® Word 2013 - 2016-04-11T13:38:36+00:00 - Microsoft® Word 2013 - Challenges to conviction of fifth-degree domestic assault. - State of Minnesota, Respondent, vs. Daniel Lee Bender, Appellant. A15-1234, Court of Appeals Unpublished, April 11, 2016. - A15-1234 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 954902 - Apr 7, - 2016 20:24:26 GMT - english - State of Minnesota, Respondent, vs. Timothy John Huber, Appellant. A13-1928, Supreme Court Order, April 6, 2016. - 2016-04-06T15:49:00+00:00 - Canon DR-M140 TWAIN - 2016-04-07T15:20:18+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Page 12 of the slip opinion filed on April 6, 2016, is hereby amended. - State of Minnesota, Respondent, vs. Timothy John Huber, Appellant. A13-1928, Supreme Court Order, April 6, 2016. - A13-1928 - 2016-04-06T00:00:00-0500 - April 6, 2016 STATE OF MINNESOTA IN SUPREME COURT A13-1928 fl Om~EOF AJ~~~BJAJECcurra State of Minnesota, Respondent, vs. Timothy John Huber, Appellant. ORDER ... - - - pdf - 282544 - Apr 6, - 2016 15:56:41 GMT - english - LaVonne Pfeil, Individually and as Trustee for Heirs of Henry Pfeil, deceased, Appellant, vs. St. Matthews Evangelical ... - 2016-04-05T13:25:20+00:00 - Microsoft® Word 2013 - 2016-04-06T10:51:19+00:00 - Microsoft® Word 2013 - Under the ecclesiastical abstention doctrine, pastors and their church are not liable to former parishioners for defamation or related common-law torts for statements made by the pastors during the course of formal church discipline proceedings when the statements were communicated only to other members of the church and participants in the formal church discipline process. - LaVonne Pfeil, Individually and as Trustee for Heirs of Henry Pfeil, deceased, Appellant, vs. St. Matthews Evangelical Lutheran Church of the Unaltered Augsburg Confession of Worthington, Nobles County, Minnesota, et al., Respondents. A14-605, Supreme Court, April 6, 2016. - A14-605 - 2016-04-06T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0605 Court of Appeals Anderson, J. Dissenting, Lillehaug, J., Gildea, C.J. Took no part, Hudson, Chutich, JJ. ... - - - pdf - 203247 - Apr 12, - 2016 13:45:04 GMT - english - Melinda M. Binkley, Trustee on behalf of the heirs and next of kin of Kirk T. Lloyd, II, Appellant, vs. Allina Health ... - 2016-04-11T12:04:21+00:00 - Microsoft® Word 2013 - 2016-04-12T08:43:38+00:00 - Microsoft® Word 2013 - Minnesota Statutes § 253B.23, subd. 4 (2014), provides immunity to a medical-services provider that, in good faith, denies admission to a person seeking voluntary mental-health treatment under Minn. Stat. § 253B.04, subd. 1 (2014). Affirmed in part, reversed in part, and remanded. - Melinda M. Binkley, Trustee on behalf of the heirs and next of kin of Kirk T. Lloyd, II, Appellant, vs. Allina Health System, et al., Respondents. A14-794, Supreme Court, April 6, 2016. - A14-794 - 2016-04-06T00:00:00-0500 - STATE OF MINNESOTA IN SUPREME COURT A14-0794 Court of Appeals Anderson, J. Concurring, Lillehaug, J. Took no part, Hudson, Chutich, JJ. Melinda M. Binkley, ... - - - pdf - 194424 - Apr 4, - 2016 16:45:02 GMT - english - Paek Saengkeo, Respondent, vs. Minnesota Automobile Assigned Claims, Appellant. A15-1267, Court of Appeals Published, ... - 2016-03-24T14:11:01+00:00 - Microsoft® Word 2013 - 2016-04-04T11:44:35+00:00 - Microsoft® Word 2013 - Under Minn. Stat. § 65B.64, subd. 3 (2014), the assigned claims plan, an injured passenger of an uninsured vehicle is not entitled to economic loss benefits if the injured passenger is dwelling with a family member who is an uninsured owner of a vehicle that must be insured under Minn. Stat. § 65B.48 (2014), unless there is clear and convincing evidence that the owner did not contemplate the use or operation of his or her uninsured vehicle by anyone. Reversed. - Paek Saengkeo, Respondent, vs. Minnesota Automobile Assigned Claims, Appellant. A15-1267, Court of Appeals Published, April 4, 2016. - A15-1267 - 2016-04-04T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1267 Paek Saengkeo, Respondent, vs. Minnesota Automobile Assigned Claims, Appellant. Filed April 4, 2016 Reversed ... - - - pdf - 141432 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Peter Louis John, Appellant. A15-303, Court of Appeals Unpublished, April 4, 2016. - 2016-03-29T12:25:09+00:00 - Microsoft® Word 2013 - 2016-04-04T11:54:14+00:00 - Microsoft® Word 2013 - Challenges to conviction of aiding and abetting second-degree murder. - State of Minnesota, Respondent, vs. Peter Louis John, Appellant. A15-303, Court of Appeals Unpublished, April 4, 2016. - A15-303 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 232143 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Rip Wayne Rust, Appellant. A15-480, Court of Appeals Unpublished, April 4, 2016. - 2016-03-29T13:51:20+00:00 - Microsoft® Word 2013 - 2016-04-04T12:05:57+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Rip Wayne Rust, Appellant. A15-480, Court of Appeals Unpublished, April 4, 2016. - A15-480 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 112063 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Montalvo Knowles, Appellant. A15-452, Court of Appeals Unpublished, April 4, 2016. - 2016-03-24T14:22:56+00:00 - Microsoft® Word 2013 - 2016-04-04T12:02:02+00:00 - Microsoft® Word 2013 - Challenges to convictions of domestic assault by strangulation and gross-misdemeanor domestic assault. - State of Minnesota, Respondent, vs. Montalvo Knowles, Appellant. A15-452, Court of Appeals Unpublished, April 4, 2016. - A15-452 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 100838 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Khong Meng Kong, Appellant. A15-859, Court of Appeals Unpublished, April 4, 2016. - 2016-03-24T14:34:37+00:00 - Microsoft® Word 2013 - 2016-04-04T13:40:54+00:00 - Microsoft® Word 2013 - Challenges possession of a firearm by an ineligible person. - State of Minnesota, Respondent, vs. Khong Meng Kong, Appellant. A15-859, Court of Appeals Unpublished, April 4, 2016. - A15-859 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 110190 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Ann Marie Hoyer, Appellant. A15-919, Court of Appeals Unpublished, April 4, 2016. - 2016-03-29T13:42:20+00:00 - Microsoft® Word 2013 - 2016-04-04T13:49:19+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Ann Marie Hoyer, Appellant. A15-919, Court of Appeals Unpublished, April 4, 2016. - A15-919 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 190150 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Daniel Barenburg, Appellant. A15-607, Court of Appeals Unpublished, April 4, 2016. - 2016-03-28T11:16:57+00:00 - Microsoft® Word 2013 - 2016-04-04T12:14:22+00:00 - Microsoft® Word 2013 - Challenges to conviction of making terroristic threats. Affirmed in part, and reversed in part. - State of Minnesota, Respondent, vs. Daniel Barenburg, Appellant. A15-607, Court of Appeals Unpublished, April 4, 2016. - A15-607 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 103879 - Apr 4, - 2016 19:10:22 GMT - english - Shauna Marie Krupicka, Respondent, vs. Paul John Hassinger, Appellant. A15-1231, Court of Appeals Unpublished, April 4, ... - 2016-03-24T14:29:28+00:00 - Microsoft® Word 2013 - 2016-04-04T14:00:54+00:00 - Microsoft® Word 2013 - Appellant challenges the district courts order denying his motion to modify or vacate a harassment restraining order (HRO). - Shauna Marie Krupicka, Respondent, vs. Paul John Hassinger, Appellant. A15-1231, Court of Appeals Unpublished, April 4, 2016. - A15-1231 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 130583 - Apr 4, - 2016 19:10:12 GMT - english - Jarrod Dwayne Miller, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-795, Court of Appeals Unpublished, ... - 2016-03-28T10:21:22+00:00 - Microsoft® Word 2013 - 2016-04-04T13:26:44+00:00 - Microsoft® Word 2013 - Challenges possession of a firearm by an ineligible person. - Jarrod Dwayne Miller, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-795, Court of Appeals Unpublished, April 4, 2016. - A15-795 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 124117 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Dean James Roehler, Appellant. A12-2135, Court of Appeals Unpublished, April 4, ... - 2016-03-29T11:37:30+00:00 - Microsoft® Word 2013 - 2016-04-04T11:49:57+00:00 - Microsoft® Word 2013 - On remand from the Minnesota Supreme Court, which directed this court to reconsider our earlier decision in light of the supreme courts decisions in State v. Stavish, 868 N.W.2d 670 (Minn. 2015), and State v. Lindquist, 869 N.W.2d 863 (Minn. 2015). - State of Minnesota, Respondent, vs. Dean James Roehler, Appellant. A12-2135, Court of Appeals Unpublished, April 4, 2016. - A12-2135 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A12- ... - - - pdf - 149797 - Apr 4, - 2016 19:10:12 GMT - english - Washington County HRA, Respondent, vs. Kuohsiou Huang, Appellant. A15-879, Court of Appeals Unpublished, April 4, 2016. - 2016-03-29T17:22:47+00:00 - Microsoft® Word 2013 - 2016-04-04T13:43:34+00:00 - Microsoft® Word 2013 - Challenges eviction action. - Washington County HRA, Respondent, vs. Kuohsiou Huang, Appellant. A15-879, Court of Appeals Unpublished, April 4, 2016. - A15-879 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 115853 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. James Pierre Dortch, Appellant. A15-623, Court of Appeals Unpublished, April 4, ... - 2016-03-29T09:58:34+00:00 - Microsoft® Word 2013 - 2016-04-04T12:16:59+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. James Pierre Dortch, Appellant. A15-623, Court of Appeals Unpublished, April 4, 2016. - A15-623 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 162574 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Jesse Andrew Faust, Appellant. A15-428, Court of Appeals Unpublished, April 4, 2016. - 2016-03-29T11:50:37+00:00 - Microsoft® Word 2013 - 2016-04-04T11:59:18+00:00 - Microsoft® Word 2013 - Challenges drug-related convictions. - State of Minnesota, Respondent, vs. Jesse Andrew Faust, Appellant. A15-428, Court of Appeals Unpublished, April 4, 2016. - A15-428 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 110573 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Robert James Fallin, Appellant. A15-642, Court of Appeals Unpublished, April 4, ... - 2016-03-29T10:59:04+00:00 - Microsoft® Word 2013 - 2016-04-04T12:18:51+00:00 - Microsoft® Word 2013 - Challenges drug-related convictions. - State of Minnesota, Respondent, vs. Robert James Fallin, Appellant. A15-642, Court of Appeals Unpublished, April 4, 2016. - A15-642 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 223111 - Apr 4, - 2016 19:10:23 GMT - english - In re the Marriage of: Amy Daiker Werger, petitioner, Respondent, vs. Brett Michael Werger, Appellant. A15-1527, Court ... - 2016-03-29T16:39:31+00:00 - Microsoft® Word 2013 - 2016-04-04T14:08:17+00:00 - Microsoft® Word 2013 - Child custody dispute. - In re the Marriage of: Amy Daiker Werger, petitioner, Respondent, vs. Brett Michael Werger, Appellant. A15-1527, Court of Appeals Unpublished, April 4, 2016. - A15-1527 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 187011 - Apr 4, - 2016 19:10:12 GMT - english - Deborah Meckola, as Trustee for the Heirs of Jordan Adams, Decedent, Respondent, vs. Thomas J. Rishavy, M.D., et al., ... - 2016-03-28T15:34:30+00:00 - Microsoft® Word 2013 - 2016-04-04T12:20:57+00:00 - Microsoft® Word 2013 - Following a jury trial on respondents medical-malpractice wrongful-death claims, Appellants seek reversal of a money judgment against them and remand for a new trial. - Deborah Meckola, as Trustee for the Heirs of Jordan Adams, Decedent, Respondent, vs. Thomas J. Rishavy, M.D., et al., Appellants. A15-693, Court of Appeals Unpublished, April 4, 2016. - A15-693 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 195546 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. JaJuan Anthony Reed, Sr., Appellant. A15-557, Court of Appeals Unpublished, April 4,... - 2016-03-28T15:43:07+00:00 - Microsoft® Word 2013 - 2016-04-04T12:10:35+00:00 - Microsoft® Word 2013 - Challenges to felony domestic assault conviction. - State of Minnesota, Respondent, vs. JaJuan Anthony Reed, Sr., Appellant. A15-557, Court of Appeals Unpublished, April 4, 2016. - A15-557 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 145247 - Apr 4, - 2016 19:10:12 GMT - english - Rebecca J. Adams, et al., Plaintiffs, John Crudele, et al., Appellants, vs. James Koch, et al., Defendants, Steve ... - 2016-03-28T15:01:09+00:00 - Microsoft® Word 2013 - 2016-04-04T13:22:09+00:00 - Microsoft® Word 2013 - Real estate investors challenge dismissal of claims and vacating default judgments. - Rebecca J. Adams, et al., Plaintiffs, John Crudele, et al., Appellants, vs. James Koch, et al., Defendants, Steve Hyland, Respondent, Erik Ostigaard, Respondent, Greg Bohnsack, Respondent. A15-761, Court of Appeals Unpublished, April 4, 2016. - A15-761 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 28508 - Apr 4, - 2016 19:10:22 GMT - english - State of Minnesota, Respondent, vs. Aaron Arnold Lind-Pashina, Appellant. A15-1199, Court of Appeals Unpublished, April ... - Minnesota Judicial Branch - 2016-03-24T12:43:41+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-04T13:58:44+00:00 - Adobe PDF Library 11.0 - 2016-03-24T17:41:01+00:00 - Challenges the portion of his sentence requiring him to pay three fines and provide a DNA sample. Reversed and remanded. - State of Minnesota, Respondent, vs. Aaron Arnold Lind-Pashina, Appellant. A15-1199, Court of Appeals Unpublished, April 4, 2016. - A15-1199 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 181696 - Apr 4, - 2016 19:10:12 GMT - english - Steven Abrahamson, et al., Relators, vs. The St. Louis County School District, Independent School District No. 2142, et ... - 2016-03-29T16:48:24+00:00 - Microsoft® Word 2013 - 2016-04-04T13:56:08+00:00 - Microsoft® Word 2013 - Challenges that the St. Louis County School District violated campaign-finance reporting laws. - Steven Abrahamson, et al., Relators, vs. The St. Louis County School District, Independent School District No. 2142, et al., Respondents, Office of Administrative Hearings, Respondent. A15-1024, Court of Appeals Unpublished, April 4, 2016. - A15-1024 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 201684 - Apr 4, - 2016 19:10:22 GMT - english - State of Minnesota, Respondent, vs. Jonathan Earl Brown, Appellant. A15-1484, Court of Appeals Unpublished, April 4, ... - 2016-03-29T09:09:21+00:00 - Microsoft® Word 2013 - 2016-04-04T14:06:14+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Jonathan Earl Brown, Appellant. A15-1484, Court of Appeals Unpublished, April 4, 2016. - A15-1484 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 111415 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. David Mendoza, Appellant. A15-767, Court of Appeals Unpublished, April 4, 2016. - 2016-03-24T14:59:40+00:00 - Microsoft® Word 2013 - 2016-04-04T13:24:15+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. David Mendoza, Appellant. A15-767, Court of Appeals Unpublished, April 4, 2016. - A15-767 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 193671 - Apr 4, - 2016 19:10:12 GMT - english - Fred E. Friedrichs, et al., Appellants, vs. Lake Washington Sanitary District, Respondent. A15-965, Court of Appeals ... - 2016-03-24T13:53:50+00:00 - Microsoft® Word 2013 - 2016-04-04T13:52:25+00:00 - Microsoft® Word 2013 - Appellant-property owners challenge a district court decision upholding a special assessment following annexation of the property into respondent sanitary-sewer district and construction of a sanitary sewer on the property. - Fred E. Friedrichs, et al., Appellants, vs. Lake Washington Sanitary District, Respondent. A15-965, Court of Appeals Unpublished, April 4, 2016. - A15-965 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 265453 - Apr 4, - 2016 19:10:22 GMT - english - In re the Marriage of: Timothy Michael Kopp, petitioner, Respondent, vs. Christina Ann Burton, Appellant. A15-1347, ... - 2016-03-29T12:58:33+00:00 - Microsoft® Word 2013 - 2016-04-04T14:04:44+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter and child custody dispute. - In re the Marriage of: Timothy Michael Kopp, petitioner, Respondent, vs. Christina Ann Burton, Appellant. A15-1347, Court of Appeals Unpublished, April 4, 2016. - A15-1347 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 25498 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Pov Beng, Appellant. A15-709, Court of Appeals Unpublished, April 4, 2016. - Minnesota Judicial Branch - 2016-03-29T11:47:00+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-04T13:12:22+00:00 - Adobe PDF Library 11.0 - 2016-03-29T16:46:28+00:00 - Appellant challenges the district courts denial of his motion to withdraw his guilty plea to violating an order for protection. - State of Minnesota, Respondent, vs. Pov Beng, Appellant. A15-709, Court of Appeals Unpublished, April 4, 2016. - A15-709 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 112815 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Brittany Ann Vacko, Appellant. A15-822, Court of Appeals Unpublished, April 4, 2016. - 2016-03-29T10:03:28+00:00 - Microsoft® Word 2013 - 2016-04-04T13:32:21+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony theft by swindle. Remanded. - State of Minnesota, Respondent, vs. Brittany Ann Vacko, Appellant. A15-822, Court of Appeals Unpublished, April 4, 2016. - A15-822 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 54750 - Mar 30, - 2016 18:11:24 GMT - english - In re Petition for Disciplinary Action against Amanda Lyn Ruffing, f/k/a Amanda Lyn Koble, a Minnesota Attorney, ... - 2016-03-23T14:12:08+00:00 - Canon DR-M140 TWAIN - 2016-03-30T13:10:37+00:00 - Adobe Acrobat 11.0.14 Paper Capture Plug-in - Effective March 26, 2016, respondent Amanda Lyn Ruffing is conditionally reinstated to the practice of law in the State of Minnesota. - In re Petition for Disciplinary Action against Amanda Lyn Ruffing, f/k/a Amanda Lyn Koble, a Minnesota Attorney, Registration No. 0386825. A15-1243, Supreme Court Order, March 30, 2016. - A15-1243 - 2016-03-30T00:00:00-0500 - March 23, 2016 subject of professional responsibility. Failure to do so shall result in automatic re- suspension, as provided in Rule 18(e)(3), RLPR. Dated: ... - - - pdf - 52412 - Mar 30, - 2016 16:38:41 GMT - english - In re Petition for Transfer to Disability-Inactive Status of Ralph F. Carter, a Minnesota Attorney, Registration No. ... - 2016-03-23T15:52:28+00:00 - Canon DR-M140 TWAIN - 2016-03-30T11:37:42+00:00 - Adobe Acrobat 11.0.14 Paper Capture Plug-in - Respondent Ralph F. Carter is transferred to disability-inactive status effective as of the date of this order. - In re Petition for Transfer to Disability-Inactive Status of Ralph F. Carter, a Minnesota Attorney, Registration No. 0134910. A16-435, Supreme Court Order, March 30, 2016. - A16-435 - 2016-03-30T00:00:00-0500 - March 23, 2016 Based upon all the files, records, and proceedings herein, IT IS HEREBY ORDERED THAT: 1. Respondent Ralph F. Carter is transferred to disability- ... - - - pdf - 74141 - Mar 30, - 2016 16:38:41 GMT - english - In re Petition for Disciplinary Action against Fong Eric Lee, a Minnesota Attorney, Registration No. 0387546. A16-228, ... - 2016-03-23T14:09:45+00:00 - Canon DR-M140 TWAIN - 2016-03-30T11:30:18+00:00 - Adobe Acrobat 11.0.14 Paper Capture Plug-in - Respondent Fong Eric Lee is publicly reprimanded and placed on 2 years of probation. - In re Petition for Disciplinary Action against Fong Eric Lee, a Minnesota Attorney, Registration No. 0387546. A16-228, Supreme Court Order, March 30, 2016. - A16-228 - 2016-03-30T00:00:00-0500 - March 23, 2016 Based upon all the files, records, and proceedings herein, IT IS HEREBY ORDERED THAT: 1. Respondent Fong Eric Lee is publicly reprimanded and ... - - - pdf - 186078 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Jermaine Sylvester Watkins, Appellant. A14-1772, Court of Appeals Unpublished, ... - 2016-03-21T11:22:45+00:00 - Microsoft® Word 2013 - 2016-03-28T10:58:04+00:00 - Microsoft® Word 2013 - Challenges to convictions of aggravated robbery and kidnapping. - State of Minnesota, Respondent, vs. Jermaine Sylvester Watkins, Appellant. A14-1772, Court of Appeals Unpublished, March 28, 2016. - A14-1772 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 133967 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Tyrese Thomas, Appellant. A15-468, Court of Appeals Unpublished, March 28, 2016. - 2016-03-18T11:53:06+00:00 - Microsoft® Word 2013 - 2016-03-28T11:15:18+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Tyrese Thomas, Appellant. A15-468, Court of Appeals Unpublished, March 28, 2016. - A15-468 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123501 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Tony Luke Fisher, Appellant. A15-614, Court of Appeals Unpublished, March 28, 2016. - 2016-03-22T14:05:00+00:00 - Microsoft® Word 2013 - 2016-03-28T11:30:35+00:00 - Microsoft® Word 2013 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. Tony Luke Fisher, Appellant. A15-614, Court of Appeals Unpublished, March 28, 2016. - A15-614 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 241083 - Mar 28, - 2016 18:59:36 GMT - english - Leon Asle Baxter, petitioner, Respondent, vs. Debra Kay Baxter, Appellant. A15-601, Court of Appeals Unpublished, March ... - 2016-03-22T15:14:38+00:00 - Microsoft® Word 2013 - 2016-03-28T11:27:16+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of motion to amend an order dividing pension benefits. - Leon Asle Baxter, petitioner, Respondent, vs. Debra Kay Baxter, Appellant. A15-601, Court of Appeals Unpublished, March 28, 2016. - A15-601 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 105585 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Charles Kenneth Redding, Appellant. A15-1221, Court of Appeals Unpublished, March ... - 2016-03-22T09:50:25+00:00 - Microsoft® Word 2013 - 2016-03-28T13:23:16+00:00 - Microsoft® Word 2013 - Challenges district court imposing a sentence at the higher end of the sentencing-guidelines range because of his young age at the time of the offense and because he showed remorse for his actions.. - State of Minnesota, Respondent, vs. Charles Kenneth Redding, Appellant. A15-1221, Court of Appeals Unpublished, March 28, 2016. - A15-1221 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 205199 - Mar 28, - 2016 18:59:36 GMT - english - CLino LLC, et al., Appellants, vs. City of Lino Lakes, Respondent. A15-762, Court of Appeals Unpublished, March 28, ... - 2016-03-21T11:00:54+00:00 - Microsoft® Word 2013 - 2016-03-28T12:01:39+00:00 - Microsoft® Word 2013 - Challenges special assessment tax. - CLino LLC, et al., Appellants, vs. City of Lino Lakes, Respondent. A15-762, Court of Appeals Unpublished, March 28, 2016. - A15-762 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 111562 - Mar 28, - 2016 18:59:45 GMT - english - State of Minnesota, Respondent, vs. Christopher Timothy Poorker, Appellant. A15-1346, Court of Appeals Unpublished, ... - 2016-03-16T12:28:05+00:00 - Microsoft® Word 2013 - 2016-03-28T13:31:00+00:00 - Microsoft® Word 2013 - Challenges denial of motion to withdraw guilty plea. - State of Minnesota, Respondent, vs. Christopher Timothy Poorker, Appellant. A15-1346, Court of Appeals Unpublished, March 28, 2016. - A15-1346 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 142055 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Senen Guerrero, Appellant. A15-851, Court of Appeals Unpublished, March 28, 2016. - 2016-03-18T10:56:00+00:00 - Microsoft® Word 2013 - 2016-03-28T11:52:56+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Senen Guerrero, Appellant. A15-851, Court of Appeals Unpublished, March 28, 2016. - A15-851 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 106134 - Mar 28, - 2016 18:59:45 GMT - english - State of Minnesota, Appellant, vs. Charles Louis Gollop, Respondent. A15-1354, Court of Appeals Unpublished, March 28, ... - 2016-03-17T09:59:45+00:00 - Microsoft® Word 2013 - 2016-03-28T13:43:33+00:00 - Microsoft® Word 2013 - Challenges the district courts order granting a stay of adjudication over appellants objection. Reversed and remanded. - State of Minnesota, Appellant, vs. Charles Louis Gollop, Respondent. A15-1354, Court of Appeals Unpublished, March 28, 2016. - A15-1354 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 179612 - Mar 28, - 2016 18:59:36 GMT - english - Greg Peterson, et al., Relators, vs. City of Richfield, Respondent, Richfield Police & Fire Civil Service Commission, ... - 2016-03-22T14:46:44+00:00 - Microsoft® Word 2013 - 2016-03-28T13:13:10+00:00 - Microsoft® Word 2013 - Challenge respondent-commissions ratification of a detective-promotion eligible register, arguing that the commission failed to consider records of the candidates efficiency, character, conduct, and seniority as required by Minn. Stat. § 419.06(9) (2014). - Greg Peterson, et al., Relators, vs. City of Richfield, Respondent, Richfield Police & Fire Civil Service Commission, Respondent. A15-1151, Court of Appeals Unpublished, March 28, 2016. - A15-1151 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 130325 - Mar 28, - 2016 18:59:36 GMT - english - In re the Marriage of: Dontrell Valerie Thornton, petitioner, Respondent, vs. Herbert Thornton, Jr., Appellant. A15-265,... - 2016-03-22T10:10:52+00:00 - Microsoft® Word 2013 - 2016-03-28T11:11:29+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of motion to reopen the parties default dissolution judgment. Affirmed; motions to strike granted in part and denied in part and motion to preserve the record denied. - In re the Marriage of: Dontrell Valerie Thornton, petitioner, Respondent, vs. Herbert Thornton, Jr., Appellant. A15-265, Court of Appeals Unpublished, March 28, 2016. - A15-265 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 132553 - Mar 28, - 2016 19:52:16 GMT - english - In re: The Frank John Rodriguez Sr. Trust. A15-1353, Court of Appeals Unpublished, March 28, 2016. - 2016-03-16T12:45:22+00:00 - Microsoft® Word 2013 - 2016-03-28T14:51:13+00:00 - Microsoft® Word 2013 - Challenges the denial of his motion to vacate the judgment in a trust dispute. - In re: The Frank John Rodriguez Sr. Trust. A15-1353, Court of Appeals Unpublished, March 28, 2016. - A15-1353 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 116485 - Mar 28, - 2016 18:59:36 GMT - english - Joel Inskeep and Chelsea Inskeep and o/b/o L.I. and E.I., petitioners, Respondents, vs. Sheila Moore, Appellant, Harry ... - 2016-03-17T10:45:09+00:00 - Microsoft® Word 2013 - 2016-03-28T11:12:52+00:00 - Microsoft® Word 2013 - Challenge the grant of a harassment restraining order. - Joel Inskeep and Chelsea Inskeep and o/b/o L.I. and E.I., petitioners, Respondents, vs. Sheila Moore, Appellant, Harry Walk, Appellant. A15-450, Court of Appeals Unpublished, March 28, 2016. - A15-450 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 38967 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Dragos Valentine Bogza, Appellant. A15-471, Court of Appeals Unpublished, March 28, ... - Minnesota Judicial Branch - 2016-03-22T11:44:54+00:00 - Acrobat PDFMaker 11 for Word - 2016-03-28T11:17:55+00:00 - Adobe PDF Library 11.0 - 2016-03-22T16:44:29+00:00 - Challenges to conviction of felony domestic assault. Reversed and remanded. - State of Minnesota, Respondent, vs. Dragos Valentine Bogza, Appellant. A15-471, Court of Appeals Unpublished, March 28, 2016. - A15-471 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 102636 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Matthew Christopher Desjarlais, Appellant. A15-592, Court of Appeals Unpublished, ... - 2016-03-22T10:22:03+00:00 - Microsoft® Word 2013 - 2016-03-28T11:20:45+00:00 - Microsoft® Word 2013 - Challenges to district court erred by denying motion for a downward dispositional departure. - State of Minnesota, Respondent, vs. Matthew Christopher Desjarlais, Appellant. A15-592, Court of Appeals Unpublished, March 28, 2016. - A15-592 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 118821 - Mar 28, - 2016 18:59:36 GMT - english - In the Matter of: Carrie Ann Seibert, individually and o/b/o C. A. A. and C. C. A., petitioner, Respondent, vs. Adam ... - 2016-03-21T15:26:35+00:00 - Microsoft® Word 2013 - 2016-03-28T11:45:39+00:00 - Microsoft® Word 2013 - Challenges district court abused its discretion by issuing an order for protection (OFP) based on inadequate findings. - In the Matter of: Carrie Ann Seibert, individually and o/b/o C. A. A. and C. C. A., petitioner, Respondent, vs. Adam Cain Anderson, Appellant. A15-757, Court of Appeals Unpublished, March 28, 2016. - A15-757 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 199982 - Mar 28, - 2016 18:59:36 GMT - english - Gerald L. Rehbein, et al., Appellants, vs. City of Lino Lakes, Respondent. A15-923, Court of Appeals Unpublished, March ... - 2016-03-21T09:06:58+00:00 - Microsoft® Word 2013 - 2016-03-28T12:00:24+00:00 - Microsoft® Word 2013 - Challenges special assessment levied by respondent City of Lino Lakes. - Gerald L. Rehbein, et al., Appellants, vs. City of Lino Lakes, Respondent. A15-923, Court of Appeals Unpublished, March 28, 2016. - A15-923 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 137856 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Arne Henry Mahlberg, Appellant. A15-745, Court of Appeals Unpublished, March 28, ... - 2016-03-18T12:53:15+00:00 - Microsoft® Word 2013 - 2016-03-28T11:42:30+00:00 - Microsoft® Word 2013 - Challenges to convictions of criminal sexual conduct. - State of Minnesota, Respondent, vs. Arne Henry Mahlberg, Appellant. A15-745, Court of Appeals Unpublished, March 28, 2016. - A15-745 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 66022 - Mar 28, - 2016 18:59:36 GMT - english - James L. Mandel, Appellant, vs. Multiband Corporation, et al., Respondents. A15-1133, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-03-17T13:53:15+00:00 - Acrobat PDFMaker 11 for Word - 2016-03-28T12:12:56+00:00 - Adobe PDF Library 11.0 - 2016-03-16T17:05:30+00:00 - Challenges grant of summary judgment. - James L. Mandel, Appellant, vs. Multiband Corporation, et al., Respondents. A15-1133, Court of Appeals Unpublished, March 28, 2016. - A15-1133 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 111689 - Mar 28, - 2016 18:59:36 GMT - english - Nereus Montemayor, Appellant, vs. Sebright Products, Inc., d/b/a Bright Technologies, defendant and third party ... - 2016-03-17T14:37:23+00:00 - Microsoft® Word 2013 - 2016-03-28T13:15:09+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - Nereus Montemayor, Appellant, vs. Sebright Products, Inc., d/b/a Bright Technologies, defendant and third party plaintiff, Respondent, vs. VZ Hogs, LLP, Third Party Defendant. A15-1188, Court of Appeals Unpublished, March 28, 2016. - A15-1188 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 142361 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Sonny Ray Juday, Appellant. A15-1047, Court of Appeals Unpublished, March 28, 2016. - 2016-03-21T09:27:30+00:00 - Microsoft® Word 2013 - 2016-03-28T12:10:34+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Sonny Ray Juday, Appellant. A15-1047, Court of Appeals Unpublished, March 28, 2016. - A15-1047 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 169259 - Mar 28, - 2016 18:59:36 GMT - english - David Waterworth, Appellant, vs. Elaine Ekman, et al., Respondents. A15-1206, Court of Appeals Unpublished, March 28, ... - 2016-03-22T13:33:39+00:00 - Microsoft® Word 2013 - 2016-03-28T13:17:02+00:00 - Microsoft® Word 2013 - Property dispute. - David Waterworth, Appellant, vs. Elaine Ekman, et al., Respondents. A15-1206, Court of Appeals Unpublished, March 28, 2016. - A15-1206 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 106548 - Mar 28, - 2016 18:59:36 GMT - english - Semaj Williams, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1216, Court of Appeals Unpublished, ... - 2016-03-17T13:54:50+00:00 - Microsoft® Word 2013 - 2016-03-28T13:19:39+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Semaj Williams, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1216, Court of Appeals Unpublished, March 28, 2016. - A15-1216 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 100489 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Darren Clinton, Appellant. A15-1235, Court of Appeals Unpublished, March 28, 2016. - 2016-03-21T15:52:10+00:00 - Microsoft® Word 2013 - 2016-03-28T13:25:17+00:00 - Microsoft® Word 2013 - Challenges sentence, arguing there is no basis for the upward departure. Reversed and remanded. - State of Minnesota, Respondent, vs. Darren Clinton, Appellant. A15-1235, Court of Appeals Unpublished, March 28, 2016. - A15-1235 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122713 - Mar 28, - 2016 19:52:35 GMT - english - In the Matter of the Welfare of the Children of: J. J. V. S. and A. M., Parents and In the Matter of the Welfare of the ... - 2016-03-22T16:24:08+00:00 - Microsoft® Word 2013 - 2016-03-28T14:50:45+00:00 - Microsoft® Word 2013 - Challenges district court order determining that her children need protection or services. - In the Matter of the Welfare of the Children of: J. J. V. S. and A. M., Parents and In the Matter of the Welfare of the Children of: J. J. V. S. and T. J., Parents. A15-1785, Court of Appeals Unpublished, March 28, 2016. - A15-1785 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 120864 - Mar 28, - 2016 18:59:46 GMT - english - State of Minnesota, Respondent, vs. Stevan Andre Wilkins, Appellant. A15-1799, Court of Appeals Unpublished, March 28, ... - 2016-03-18T11:17:34+00:00 - Microsoft® Word 2013 - 2016-03-28T13:54:28+00:00 - Microsoft® Word 2013 - Appellant argues that the district court abused its discretion by denying his sentence-correction motion. - State of Minnesota, Respondent, vs. Stevan Andre Wilkins, Appellant. A15-1799, Court of Appeals Unpublished, March 28, 2016. - A15-1799 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 192112 - Mar 28, - 2016 18:59:46 GMT - english - In the Matter of the Welfare of: P. J. S. A15-1697, Court of Appeals Unpublished, March 28, 2016. - 2016-03-18T08:50:16+00:00 - Microsoft® Word 2013 - 2016-03-28T13:45:17+00:00 - Microsoft® Word 2013 - Appellant Department of Human Services (DHS) challenges the district courts order directing it to expunge the juvenile-delinquency records of respondent P.J.S. because it was not served with the expungement petition. Reversed and remanded. - In the Matter of the Welfare of: P. J. S. A15-1697, Court of Appeals Unpublished, March 28, 2016. - A15-1697 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 103271 - Mar 28, - 2016 18:59:46 GMT - english - Ignacio Olalde-Hernandez, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1841, Court of Appeals ... - 2016-03-17T15:19:51+00:00 - Microsoft® Word 2013 - 2016-03-28T13:56:45+00:00 - Microsoft® Word 2013 - Appellant challenges the district courts denial of his motion for sentence correction. - Ignacio Olalde-Hernandez, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1841, Court of Appeals Unpublished, March 28, 2016. - A15-1841 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 172321 - Mar 28, - 2016 19:52:04 GMT - english - Joyce Sammon, Respondent, vs. Kim Halvorson, Appellant. A15-1261, Court of Appeals Unpublished, March 28, 2016. - 2016-03-22T10:50:33+00:00 - Microsoft® Word 2013 - 2016-03-28T14:48:55+00:00 - Microsoft® Word 2013 - Challenges harassment restraining order. - Joyce Sammon, Respondent, vs. Kim Halvorson, Appellant. A15-1261, Court of Appeals Unpublished, March 28, 2016. - A15-1261 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 218760 - Mar 23, - 2016 16:49:25 GMT - english - Adelbys Tamayo Lopez, Relator, vs. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., Respondents, and ... - 2016-03-22T15:15:14+00:00 - Canon DR-M140 TWAIN - 2016-03-23T11:46:44+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - [Amended order.] IT IS HEREBY ORDERED that relator's motion to accept new evidence is denied. IT IS FURTHER ORDERED that the decision of the Workers' Compensation Court of Appeals filed and served on September 28, 2015 is affirmed without opinion. - Adelbys Tamayo Lopez, Relator, vs. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., Respondents, and Sanford Health, Intervenor. A15-1730, Supreme Court Order, March 23, 2016. - A15-1730 - 2016-03-23T00:00:00-0500 - March 22, 2016 STATE OF MINNESOTA IN SUPREME COURT Adelbys Tamayo Lopez, Relator, vs. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., Respondents, ... - - - pdf - 270098 - Mar 23, - 2016 16:49:25 GMT - english - Sprinkler Warehouse, Inc., Respondent, vs. Systematic Rain, Inc., d/b/a GPLAWN.com, et al., Appellants. A14-1121, ... - 2016-03-17T16:22:50+00:00 - Microsoft® Word 2013 - 2016-03-23T11:10:23+00:00 - Microsoft® Word 2013 - A domain name constitutes intangible personal property within the meaning of Minn. Stat. § 571.73, subd. 3(3) (2014) and is therefore subject to attachment by garnishment. - Sprinkler Warehouse, Inc., Respondent, vs. Systematic Rain, Inc., d/b/a GPLAWN.com, et al., Appellants. A14-1121, Supreme Court, March 23, 2016. - A14-1121 - 2016-03-23T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1121 Court of Appeals Dietzen, J. Took no part, Hudson, Chutich, JJ. Sprinkler Warehouse, Inc., Respondent, vs. ... - - - pdf - 126116 - Mar 23, - 2016 16:49:25 GMT - english - Jason Lee Bolstad, Appellant, vs. State of Minnesota, Respondent. A15-564, Supreme Court, March 23, 2016. - 2016-03-23T09:26:27+00:00 - Microsoft® Word 2010 - 2016-03-23T11:48:16+00:00 - Microsoft® Word 2010 - The postconviction court did not abuse its discretion when it concluded that appellant's second petition for postconviction relief was untimely. The facts of this case do not warrant granting appellant a new trial in the interests of justice. - Jason Lee Bolstad, Appellant, vs. State of Minnesota, Respondent. A15-564, Supreme Court, March 23, 2016. - A15-564 - 2016-03-23T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0564 Kanabec County Anderson, J. Took no part, Chutich, J. Jason Lee Bolstad, Appellant, vs. Filed: March 23, ... - - - pdf - 270787 - Mar 23, - 2016 16:49:25 GMT - english - Jamy Hegseth f/k/a Jamy Jager, Appellant, vs. American Family Mutual Insurance Group, Respondent. A14-1189, Supreme ... - 2016-03-21T12:43:45+00:00 - Microsoft® Word 2013 - 2016-03-23T11:21:51+00:00 - Microsoft® Word 2013 - The resolution of the primary uninsured motorist claim is not a condition precedent to the assertion of a claim for excess uninsured motorist benefits under the No-Fault Act, Minn. Stat. §§ 65B.41-.71 (2014). Claims for excess uninsured motorist benefits accrue on the date of the accident. - Jamy Hegseth f/k/a Jamy Jager, Appellant, vs. American Family Mutual Insurance Group, Respondent. A14-1189, Supreme Court, March 23, 2016. - A14-1189 - 2016-03-23T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1189 Court of Appeals Dietzen, J. Concurring, Lillehaug, J. Took no part, Anderson, Chutich, JJ. Jamy Hegseth ... - - - pdf - 317855 - Mar 23, - 2016 16:49:25 GMT - english - In re Petition for Disciplinary Action against James Richard Mayer, a Minnesota Attorney, Registration No. 0312241. ... - 2016-03-16T13:02:04+00:00 - Canon DR-M140 TWAIN - 2016-03-23T11:15:04+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent James Richard Mayer is indefinitely suspended from the practice of law - In re Petition for Disciplinary Action against James Richard Mayer, a Minnesota Attorney, Registration No. 0312241. A15-1274, Supreme Court Order, March 23, 2016. - A15-1274 - 2016-03-23T00:00:00-0500 - March 16, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1274 In re Petition for Disciplinary Action against James Richard Mayer, a Minnesota Attorney, Registration ... - - - pdf - 206401 - Mar 23, - 2016 16:49:25 GMT - english - Adelbys Tamayo Lopez, Relator, vs. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., Respondents, and ... - 2016-03-21T14:14:22+00:00 - Canon DR-M140 TWAIN - 2016-03-23T11:43:48+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - IT IS HEREBY ORDERED that relator's motion to accept new evidence is denied. IT IS FURTHER ORDERED that the decision of the Workers' Compensation Court of Appeals filed and served on September 28, 2015 is affirmed without opinion. - Adelbys Tamayo Lopez, Relator, vs. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., Respondents, and Sanford Health, Intervenor. A15-1730, Supreme Court Order, March 23, 2016. - A15-1730 - 2016-03-23T00:00:00-0500 - March 21, 2016 STATE OF MINNESOTA IN SUPREME COURT Adelbys Tamayo Lopez, Relator, vs. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., Respondents, ... - - - pdf - 321183 - Mar 23, - 2016 16:49:25 GMT - english - In re Petition for Disciplinary Action against Sara Marie Grant Rojas, a Minnesota Attorney, Registration No. 0391827. ... - 2016-03-15T10:36:13+00:00 - Canon DR-M140 TWAIN - 2016-03-23T11:13:19+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Sara Marie Grant Rojas is suspended from the practice of law. - In re Petition for Disciplinary Action against Sara Marie Grant Rojas, a Minnesota Attorney, Registration No. 0391827. A16-92, Supreme Court Order, March 23, 2016. - A16-92 - 2016-03-23T00:00:00-0500 - March 15, 2016 STATE OF MINNESOTA IN SUPREME COURT A16-0092 In re Petition for Disciplinary Action against Sara Marie Grant Rojas, a Minnesota Attorney, Registration ... - - - pdf - 366675 - Mar 23, - 2016 16:49:25 GMT - english - In re Petition for Disciplinary Action against Jaren Lee Johnson, a Minnesota Attorney, Registration No. 0290427. ... - 2016-03-16T12:37:10+00:00 - Canon DR-M140 TWAIN - 2016-03-23T11:11:43+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Jaren Lee Johnson is suspended from the practice of law for a minimum of 30 days. - In re Petition for Disciplinary Action against Jaren Lee Johnson, a Minnesota Attorney, Registration No. 0290427. A16-240, Supreme Court Order, March 23, 2016. - A16-240 - 2016-03-23T00:00:00-0500 - March 16, 2016 STATE OF MINNESOTA IN SUPREME COURT A16-0240 In re Petition for Disciplinary Action against Jaren Lee Johnson, a Minnesota Attorney, Registration ... - - - pdf - 418662 - Mar 23, - 2016 16:49:25 GMT - english - In re Petition for Disciplinary Action against Richard Lee Swanson, a Minnesota Attorney, Registration No. 173423. - 2016-03-21T11:43:11+00:00 - Canon DR-M140 TWAIN - 2016-03-23T11:26:42+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The motion of respondent Richard Lee Swanson for additional time in which to provide proof of his successful completion of the professional responsibility portion of the state bar examination is denied. Respondent's conditional reinstatement is revoked and he is indefinitely suspended, effective 10 days from the date of this order. - In re Petition for Disciplinary Action against Richard Lee Swanson, a Minnesota Attorney, Registration No. 173423. - - 2016-03-21T06:43:11-0500 - March 21, 2016 STATE OF MINNESOTA IN SUPREME COURT A14-1589 In rePetition for Disciplinary Action against Richard Lee Swanson, a Minnesota Attorney, Registration ... - - - pdf - 174396 - Mar 22, - 2016 14:05:22 GMT - english - State of Minnesota, Respondent, vs. S. A. M., Appellant. A15-950, Court of Appeals Published, March 21, 2016. - 2016-03-21T09:13:31+00:00 - Microsoft® Word 2013 - 2016-03-22T09:01:24+00:00 - Microsoft® Word 2013 - A felony conviction later deemed a misdemeanor conviction by operation of Minn. Stat. § 609.13, subd. 1(2) (2014), is a felony conviction for purposes of the expungement statute. A petitioner is not entitled to expungement when the felony offense is not one of the statutorily enumerated offenses for which relief may be sought under Minn. Stat. § 609A.02, subd. 3(b) (2015). - State of Minnesota, Respondent, vs. S. A. M., Appellant. A15-950, Court of Appeals Published, March 21, 2016. - A15-950 - 2016-03-21T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0950 State of Minnesota, Respondent, vs. S. A. M., Appellant. Filed March 21, 2016 Affirmed Reilly, Judge Olmsted ... - - - pdf - 193058 - Mar 22, - 2016 14:05:22 GMT - english - State of Minnesota, Appellant, vs. Leona Rose deLottinville, Respondent. A15-1481, Court of Appeals Published, March 21,... - 2016-03-15T08:57:02+00:00 - Microsoft® Word 2013 - 2016-03-22T09:02:26+00:00 - Microsoft® Word 2013 - When police have probable cause to believe that the subject of a valid arrest warrant is present as a short-term social guest at another persons residence, police may enter that residence to effectuate the arrest pursuant to the warrant without violating the Fourth Amendment rights of the person named therein. - State of Minnesota, Appellant, vs. Leona Rose deLottinville, Respondent. A15-1481, Court of Appeals Published, March 21, 2016. - A15-1481 - 2016-03-21T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1481 State of Minnesota, Appellant, vs. Leona Rose deLottinville, Respondent. Filed March 21, 2016 Reversed and ... - - - pdf - 176141 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Ryan Leroy Smith, Appellant. A15-570, Court of Appeals Unpublished, March 21, 2016. - 2016-03-14T14:59:31+00:00 - Microsoft® Word 2013 - 2016-03-21T11:26:33+00:00 - Microsoft® Word 2013 - Challenges to conviction of first-degree driving while impaired. - State of Minnesota, Respondent, vs. Ryan Leroy Smith, Appellant. A15-570, Court of Appeals Unpublished, March 21, 2016. - A15-570 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 121897 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Jack Leonard Williams, Appellant. A15-427, Court of Appeals Unpublished, March 21, ... - 2016-03-15T15:04:07+00:00 - Microsoft® Word 2013 - 2016-03-21T11:02:39+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree assault. - State of Minnesota, Respondent, vs. Jack Leonard Williams, Appellant. A15-427, Court of Appeals Unpublished, March 21, 2016. - A15-427 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 159567 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Letrell Pierre Brewer, Appellant. A15-653, Court of Appeals Unpublished, March 21, ... - 2016-03-11T12:28:44+00:00 - Microsoft® Word 2013 - 2016-03-21T11:44:06+00:00 - Microsoft® Word 2013 - Challenges to conviction of violating a domestic abuse no contact order (DANCO). - State of Minnesota, Respondent, vs. Letrell Pierre Brewer, Appellant. A15-653, Court of Appeals Unpublished, March 21, 2016. - A15-653 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 143185 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Shawn Deangelo Jones, Appellant. A15-541, Court of Appeals Unpublished, March 21, ... - 2016-03-15T15:24:32+00:00 - Microsoft® Word 2013 - 2016-03-21T11:21:27+00:00 - Microsoft® Word 2013 - Challenges to conviction of aiding and abetting simple robbery. - State of Minnesota, Respondent, vs. Shawn Deangelo Jones, Appellant. A15-541, Court of Appeals Unpublished, March 21, 2016. - A15-541 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 154220 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Shuly Marambo, Appellant. A15-784, Court of Appeals Unpublished, March 21, 2016. - 2016-03-11T13:30:57+00:00 - Microsoft® Word 2013 - 2016-03-21T11:48:32+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Shuly Marambo, Appellant. A15-784, Court of Appeals Unpublished, March 21, 2016. - A15-784 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 160047 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Joseph Scott Welch, Appellant. A15-854, Court of Appeals Unpublished, March 21, ... - 2016-03-15T15:35:56+00:00 - Microsoft® Word 2013 - 2016-03-21T11:51:02+00:00 - Microsoft® Word 2013 - Challenges possession of controlled substance charge. Reversed. - State of Minnesota, Respondent, vs. Joseph Scott Welch, Appellant. A15-854, Court of Appeals Unpublished, March 21, 2016. - A15-854 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 172494 - Mar 21, - 2016 18:39:32 GMT - english - Willie James Patterson, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-956, Court of Appeals ... - 2016-03-15T09:12:13+00:00 - Microsoft® Word 2013 - 2016-03-21T13:07:12+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Willie James Patterson, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-956, Court of Appeals Unpublished, March 21, 2016. - A15-956 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 183956 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. William Martin Odette, Appellant. A15-944, Court of Appeals Unpublished, March 21, ... - 2016-03-15T15:42:19+00:00 - Microsoft® Word 2013 - 2016-03-21T12:01:21+00:00 - Microsoft® Word 2013 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. William Martin Odette, Appellant. A15-944, Court of Appeals Unpublished, March 21, 2016. - A15-944 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 104973 - Mar 21, - 2016 18:39:32 GMT - english - In the Matter of the Petition of George K. Lovrien for an Order Determining Boundary Lines. A15-1135, Court of Appeals ... - 2016-03-15T11:02:01+00:00 - Microsoft® Word 2013 - 2016-03-21T13:09:54+00:00 - Microsoft® Word 2013 - Boundary-line dispute. - In the Matter of the Petition of George K. Lovrien for an Order Determining Boundary Lines. A15-1135, Court of Appeals Unpublished, March 21, 2016. - A15-1135 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 116313 - Mar 21, - 2016 18:39:32 GMT - english - In the Matter of the Welfare of the Child of: C. K. P. and A. W., Parents. A15-1784, Court of Appeals Unpublished, ... - 2016-03-10T13:55:06+00:00 - Microsoft® Word 2013 - 2016-03-21T13:35:39+00:00 - Microsoft® Word 2013 - Challenges order that grants the responsible social services agency custody of her child for placement in an aftercare program to complete chemical-dependency treatment. - In the Matter of the Welfare of the Child of: C. K. P. and A. W., Parents. A15-1784, Court of Appeals Unpublished, March 21, 2016. - A15-1784 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122318 - Mar 21, - 2016 18:39:32 GMT - english - Jermaine Kershawn Perry, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1181, Court of Appeals ... - 2016-03-15T11:28:36+00:00 - Microsoft® Word 2013 - 2016-03-21T13:19:20+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Jermaine Kershawn Perry, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1181, Court of Appeals Unpublished, March 21, 2016. - A15-1181 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 179674 - Mar 21, - 2016 18:39:31 GMT - english - Lawrence Leasing, Inc., d/b/a Lawrence Transportation Services, Respondent, vs. Northwoods Pallets, LLC, et al., ... - 2016-03-14T14:45:40+00:00 - Microsoft® Word 2013 - 2016-03-21T10:31:41+00:00 - Microsoft® Word 2013 - Appellants argue that the district court abused its discretion in piercing the corporate veil and that the district courts factual findings are clearly erroneous. Affirmed in part, reversed in part, and remanded. - Lawrence Leasing, Inc., d/b/a Lawrence Transportation Services, Respondent, vs. Northwoods Pallets, LLC, et al., Appellants. A15-360, Court of Appeals Unpublished, March 21, 2016. - A15-360 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 171132 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Kurt Nathan Rud, Appellant. A15-344, Court of Appeals Unpublished, March 21, 2016. - 2016-03-11T09:15:19+00:00 - Microsoft® Word 2013 - 2016-03-21T10:25:41+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Kurt Nathan Rud, Appellant. A15-344, Court of Appeals Unpublished, March 21, 2016. - A15-344 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 108557 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Bruce Everett Boyd, Appellant. A15-606, Court of Appeals Unpublished, March 21, ... - 2016-03-15T15:31:19+00:00 - Microsoft® Word 2013 - 2016-03-21T11:37:20+00:00 - Microsoft® Word 2013 - Challenges to convictions of theft of a motor vehicle and theft. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Bruce Everett Boyd, Appellant. A15-606, Court of Appeals Unpublished, March 21, 2016. - A15-606 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 104408 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Todd Allen Turchin, Appellant. A15-677, Court of Appeals Unpublished, March 21, ... - 2016-03-15T15:50:11+00:00 - Microsoft® Word 2013 - 2016-03-21T11:46:23+00:00 - Microsoft® Word 2013 - Challenges to conviction of fifth-degree possession of a controlled substance. - State of Minnesota, Respondent, vs. Todd Allen Turchin, Appellant. A15-677, Court of Appeals Unpublished, March 21, 2016. - A15-677 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 199699 - Mar 21, - 2016 18:39:32 GMT - english - Bruce Township, Respondent, vs. Kevin Schmitz, Appellant, Nathan A. Baum, et al., Defendants. A15-1163, Court of ... - 2016-03-11T14:28:07+00:00 - Microsoft® Word 2013 - 2016-03-21T13:15:16+00:00 - Microsoft® Word 2013 - Challenges conditional-use-permit ordinance. - Bruce Township, Respondent, vs. Kevin Schmitz, Appellant, Nathan A. Baum, et al., Defendants. A15-1163, Court of Appeals Unpublished, March 21, 2016. - A15-1163 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 126017 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. James Paul Wilkins, Appellant. A15-1331, Court of Appeals Unpublished, March 21, ... - 2016-03-09T11:58:53+00:00 - Microsoft® Word 2013 - 2016-03-21T13:22:29+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. James Paul Wilkins, Appellant. A15-1331, Court of Appeals Unpublished, March 21, 2016. - A15-1331 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 118241 - Mar 21, - 2016 18:39:32 GMT - english - John Aydt, et al., Appellants, vs. Steven A. Hensel, et al., Respondents, City of St. Michael, Respondent. A15-1406, ... - 2016-03-15T14:49:06+00:00 - Microsoft® Word 2013 - 2016-03-21T13:26:18+00:00 - Microsoft® Word 2013 - Challenges granting discharging a notice of lis pendens de novo. - John Aydt, et al., Appellants, vs. Steven A. Hensel, et al., Respondents, City of St. Michael, Respondent. A15-1406, Court of Appeals Unpublished, March 21, 2016. - A15-1406 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107786 - Mar 21, - 2016 18:39:32 GMT - english - James William Graham, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1457, Court of Appeals Unpublished,... - 2016-03-11T11:33:07+00:00 - Microsoft® Word 2013 - 2016-03-21T13:28:37+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - James William Graham, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1457, Court of Appeals Unpublished, March 21, 2016. - A15-1457 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 104822 - Mar 21, - 2016 18:39:32 GMT - english - Bereket Hagos, Appellant, Seniat Gebregios, Plaintiff, vs. Pond View of Woodbury Townhouse Association, et al., ... - 2016-03-15T09:55:18+00:00 - Microsoft® Word 2013 - 2016-03-21T13:30:52+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - Bereket Hagos, Appellant, Seniat Gebregios, Plaintiff, vs. Pond View of Woodbury Townhouse Association, et al., Respondents. A15-1779, Court of Appeals Unpublished, March 21, 2016. - A15-1779 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 206754 - Mar 21, - 2016 18:39:32 GMT - english - Greg Peterson, Appellant, Souphanny Dean, Co-Appellant, Brian Rogge, et al., Plaintiffs, vs. City of Richfield, ... - 2016-03-09T15:02:54+00:00 - Microsoft® Word 2013 - 2016-03-21T11:55:11+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. Reversed and remanded. - Greg Peterson, Appellant, Souphanny Dean, Co-Appellant, Brian Rogge, et al., Plaintiffs, vs. City of Richfield, Minnesota, Respondent. A15-925, Court of Appeals Unpublished, March 21, 2016. - A15-925 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 192228 - Mar 16, - 2016 15:16:28 GMT - english - State of Minnesota, Respondent, vs. Ishmael Roberts, Appellant. A14-2039, Supreme Court, March 16, 2016. - 2016-03-14T09:48:55+00:00 - Microsoft® Word 2013 - 2016-03-16T10:14:57+00:00 - Microsoft® Word 2013 - The district court did not clearly err by finding that appellant failed to prove, by a preponderance of the evidence, that appellant did not know his acts were morally wrong at the time that he murdered two of his family members. - State of Minnesota, Respondent, vs. Ishmael Roberts, Appellant. A14-2039, Supreme Court, March 16, 2016. - A14-2039 - 2016-03-16T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-2039 Hennepin County Anderson, J. Took no part, Hudson, J. State of Minnesota, Respondent, vs. Filed: March 16, ... - - - pdf - 95512 - Mar 14, - 2016 15:27:22 GMT - english - In the Matter of the Welfare of the Child of: E. G. and K. G., Sr., Parents. A15-2091, Court of Appeals Published, ... - 2016-03-08T16:28:36+00:00 - Microsoft® Word 2013 - 2016-03-14T10:26:27+00:00 - Microsoft® Word 2013 - An intermediate dispositional order in a juvenile-protection proceeding is not appealable as a matter of right under Minn. R. Juv. Prot. P. 47.02, subd. 1. Appeal dismissed. - In the Matter of the Welfare of the Child of: E. G. and K. G., Sr., Parents. A15-2091, Court of Appeals Published, March 14, 2016. - A15-2091 - 2016-03-14T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-2091 In the Matter of the Welfare of the Child of: E. G. and K. G., Sr., Parents. Filed March 14, 2016 Appeal dismissed ... - - - pdf - 146674 - Mar 14, - 2016 20:31:50 GMT - english - State of Minnesota, Respondent, vs. Philip Lee Carlson, Appellant. A15-190, Court of Appeals Unpublished, March 14, ... - 2016-03-08T09:15:42+00:00 - Microsoft® Word 2013 - 2016-03-14T13:38:11+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony theft by swindle. - State of Minnesota, Respondent, vs. Philip Lee Carlson, Appellant. A15-190, Court of Appeals Unpublished, March 14, 2016. - A15-190 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 209764 - Mar 14, - 2016 20:31:51 GMT - english - State of Minnesota, Respondent, vs. Christian Mccary Mayo, Appellant. A15-511, Court of Appeals Unpublished, March 14, ... - 2016-03-07T15:50:52+00:00 - Microsoft® Word 2013 - 2016-03-14T14:47:35+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony assault. - State of Minnesota, Respondent, vs. Christian Mccary Mayo, Appellant. A15-511, Court of Appeals Unpublished, March 14, 2016. - A15-511 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 134477 - Mar 14, - 2016 20:31:51 GMT - english - State of Minnesota, Respondent, vs. Arthur Dale Senty-Haugen, Appellant. A15-634, Court of Appeals Unpublished, March ... - 2016-03-07T11:26:55+00:00 - Microsoft® Word 2013 - 2016-03-14T14:54:18+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of jail credit for time he spent under internal sanctions while committed to the Minnesota Sex Offender Program. - State of Minnesota, Respondent, vs. Arthur Dale Senty-Haugen, Appellant. A15-634, Court of Appeals Unpublished, March 14, 2016. - A15-634 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 171370 - Mar 14, - 2016 20:31:51 GMT - english - Enoch Klingbeil, Appellant, vs. Krystal Lee Ramfjord, et al., Respondents. A15-1215, Court of Appeals Unpublished, ... - 2016-03-07T13:50:43+00:00 - Microsoft® Word 2013 - 2016-03-14T15:18:12+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment dismissing the motor-vehicle negligence action. - Enoch Klingbeil, Appellant, vs. Krystal Lee Ramfjord, et al., Respondents. A15-1215, Court of Appeals Unpublished, March 14, 2016. - A15-1215 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 236225 - Mar 14, - 2016 20:31:52 GMT - english - Tiffany Thompson, Relator, vs. Jefferson Partners LP, Respondent, Department of Employment and Economic Development, ... - 2016-03-07T14:46:17+00:00 - Microsoft® Word 2013 - 2016-03-14T15:19:49+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Tiffany Thompson, Relator, vs. Jefferson Partners LP, Respondent, Department of Employment and Economic Development, Respondent. A15-1246, Court of Appeals Unpublished, March 14, 2016. - A15-1246 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174051 - Mar 14, - 2016 20:31:52 GMT - english - Laurie Lea Oliveira, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1257, Court of Appeals Unpublished, ... - 2016-03-02T11:39:30+00:00 - Microsoft® Word 2013 - 2016-03-14T15:25:46+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Laurie Lea Oliveira, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1257, Court of Appeals Unpublished, March 14, 2016. - A15-1257 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 207976 - Mar 14, - 2016 20:31:50 GMT - english - State of Minnesota, Respondent, vs. Deontray Vershon Tate, Appellant. A14-1339, Court of Appeals Unpublished, March 14, ... - 2016-03-08T13:34:59+00:00 - Microsoft® Word 2013 - 2016-03-14T13:31:03+00:00 - Microsoft® Word 2013 - Challenges two first-degree-assault convictions and 309-month sentence. - State of Minnesota, Respondent, vs. Deontray Vershon Tate, Appellant. A14-1339, Court of Appeals Unpublished, March 14, 2016. - A14-1339 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 267735 - Mar 14, - 2016 20:31:51 GMT - english - In re the Marriage of: Julie Ann Summers, petitioner, Respondent, vs. Jonathon Roger Summers, Appellant. A15-735, Court ... - 2016-03-08T14:54:04+00:00 - Microsoft® Word 2013 - 2016-03-14T15:09:47+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. - In re the Marriage of: Julie Ann Summers, petitioner, Respondent, vs. Jonathon Roger Summers, Appellant. A15-735, Court of Appeals Unpublished, March 14, 2016. - A15-735 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 168176 - Mar 14, - 2016 20:31:51 GMT - english - State of Minnesota, Respondent, vs. Jesse B. Bennett, Appellant. A15-414, Court of Appeals Unpublished, March 14, 2016. - 2016-03-08T13:00:01+00:00 - Microsoft® Word 2013 - 2016-03-14T14:33:52+00:00 - Microsoft® Word 2013 - Challenges possession of a controlled substance. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Jesse B. Bennett, Appellant. A15-414, Court of Appeals Unpublished, March 14, 2016. - A15-414 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 121303 - Mar 14, - 2016 20:31:50 GMT - english - State of Minnesota, Respondent, vs. Quentin Lee Davis, Appellant. A15-228, Court of Appeals Unpublished, March 14, 2016. - 2016-03-07T10:11:25+00:00 - Microsoft® Word 2013 - 2016-03-14T14:19:33+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Quentin Lee Davis, Appellant. A15-228, Court of Appeals Unpublished, March 14, 2016. - A15-228 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 148275 - Mar 14, - 2016 20:31:51 GMT - english - State of Minnesota, Respondent, vs. Mark Allan Misgen, Appellant. A15-656, Court of Appeals Unpublished, March 14, 2016. - 2016-03-08T17:13:09+00:00 - Microsoft® Word 2013 - 2016-03-14T15:00:41+00:00 - Microsoft® Word 2013 - Challenges to convictions of first-degree arson and insurance fraud. - State of Minnesota, Respondent, vs. Mark Allan Misgen, Appellant. A15-656, Court of Appeals Unpublished, March 14, 2016. - A15-656 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 152284 - Mar 14, - 2016 20:31:51 GMT - english - John Christian Richmond, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-894, Court of Appeals ... - 2016-03-08T09:41:24+00:00 - Microsoft® Word 2013 - 2016-03-14T15:12:26+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - John Christian Richmond, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-894, Court of Appeals Unpublished, March 14, 2016. - A15-894 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 114901 - Mar 14, - 2016 20:31:51 GMT - english - State of Minnesota, Respondent, vs. Grant Leighton Johnson, Appellant. A15-913, Court of Appeals Unpublished, March 14, ... - 2016-03-08T09:32:45+00:00 - Microsoft® Word 2013 - 2016-03-14T15:14:05+00:00 - Microsoft® Word 2013 - Challenges to conviction of fifth-degree controlled substance crime. - State of Minnesota, Respondent, vs. Grant Leighton Johnson, Appellant. A15-913, Court of Appeals Unpublished, March 14, 2016. - A15-913 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 185422 - Mar 14, - 2016 20:31:51 GMT - english - State of Minnesota, Respondent, vs. John F. Bonner, III, Appellant. A15-993, Court of Appeals Unpublished, March 14, ... - 2016-03-08T15:48:53+00:00 - Microsoft® Word 2013 - 2016-03-14T15:15:17+00:00 - Microsoft® Word 2013 - Challenges to conviction of theft by swindle. - State of Minnesota, Respondent, vs. John F. Bonner, III, Appellant. A15-993, Court of Appeals Unpublished, March 14, 2016. - A15-993 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 162094 - Mar 14, - 2016 20:31:52 GMT - english - State of Minnesota, Respondent, vs. Glenn Kevin Hazley, Appellant. A15-1418, Court of Appeals Unpublished, March 14, ... - 2016-03-02T11:49:38+00:00 - Microsoft® Word 2013 - 2016-03-14T15:29:47+00:00 - Microsoft® Word 2013 - Revocation of probation. Reversed and remanded. - State of Minnesota, Respondent, vs. Glenn Kevin Hazley, Appellant. A15-1418, Court of Appeals Unpublished, March 14, 2016. - A15-1418 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 157516 - Mar 14, - 2016 20:31:50 GMT - english - State of Minnesota, Respondent, vs. Virginia Marie Carlson, Appellant. A15-179, Court of Appeals Unpublished, March 14, ... - 2016-03-08T09:23:05+00:00 - Microsoft® Word 2013 - 2016-03-14T13:36:20+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony theft by swindle. - State of Minnesota, Respondent, vs. Virginia Marie Carlson, Appellant. A15-179, Court of Appeals Unpublished, March 14, 2016. - A15-179 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 348507 - Mar 9, - 2016 16:55:21 GMT - english - In re Petition for Disciplinary Action against Alan F. Pendleton, a Minnesota Attorney, Registration No. 0121538. ... - 2016-03-01T13:20:09+00:00 - Canon DR-M140 TWAIN - 2016-03-09T10:53:13+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Alan F. Pendleton is suspended from the practice of law. - In re Petition for Disciplinary Action against Alan F. Pendleton, a Minnesota Attorney, Registration No. 0121538. A15-1996, Supreme Court Order, March 9, 2016. - A15-1996 - 2016-03-09T00:00:00-0600 - March 1, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1996 In rePetition for Disciplinary Action against Alan F. Pendleton, a Minnesota Attorney, Registration ... - - - pdf - 528139 - Mar 9, - 2016 16:55:21 GMT - english - In re Petition for Disciplinary Action against Paul Joseph Bosman, a Minnesota Attorney, Registration No. 0388865. ... - 2016-03-02T13:50:08+00:00 - Canon DR-M140 TWAIN - 2016-03-09T10:49:14+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Paul Joseph Bosman is suspended from the practice of law. - In re Petition for Disciplinary Action against Paul Joseph Bosman, a Minnesota Attorney, Registration No. 0388865. A15-1930, Supreme Court Order, March 9, 2016. - A15-1930 - 2016-03-09T00:00:00-0600 - March 2, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1930 In re Petition for Disciplinary Action against Paul Joseph Bosman, a Minnesota Attorney, Registration ... - - - pdf - 365821 - Mar 9, - 2016 16:55:21 GMT - english - State of Minnesota, Respondent (A14-0941), Appellant (A15-0300), vs. Byron David Smith, Appellant (A14-0941), ... - 2016-03-04T14:31:28+00:00 - Microsoft® Word 2013 - 2016-03-09T10:46:03+00:00 - Microsoft® Word 2013 - The district court did not err in denying the defendants motion to dismiss the indictment based on five separate, individually alleged errors. The cumulative effect of the five alleged errors in the indictment process did not deprive the defendant of a fair grand-jury proceeding. The nonpublic proceeding to discuss the district courts ruling on a pretrial evidentiary issue did not violate the defendants Sixth Amendment right to a public trial. The district court did not violate the defendants constitutional right to present a complete defense by excluding four pieces of evidence. Because the prosecutor did not commit misconduct in closing argument, the district court did not err in failing to give a curative jury instruction. The district court erred when it determined that the defendants restitution affidavit was timely under Minn. Stat. § 611A.045, subd. 3(a) (2014). Affirmed in part and reversed in part. - State of Minnesota, Respondent (A14-0941), Appellant (A15-0300), vs. Byron David Smith, Appellant (A14-0941), Respondent (A15-0300). A14-941, A15-300, Supreme Court, March 9, 2016. - A14-941 - 2016-03-09T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0941 A15-0300 Morrison County Lillehaug, J. Concurring, Stras, J. Took no part, Hudson, J. State of Minnesota, ... - - - pdf - 295441 - Mar 7, - 2016 16:05:31 GMT - english - Anita J. Howard, Respondent, vs. Shelly R. Svoboda, M.D., et al., Appellants. A15-896, Court of Appeals Published, ... - 2016-03-02T10:01:41+00:00 - Microsoft® Word 2013 - 2016-03-07T10:03:35+00:00 - Microsoft® Word 2013 - Under Minn. Stat. § 595.02, subd. 5 (2014), an informal discussionŽ with a treating physician who has examined or cared for a party allows inquiry into any information or opinionŽ the physician possesses, including opinions on the standard of care and causation relating to periods when the physician was not caring for the patient. Reversed. - Anita J. Howard, Respondent, vs. Shelly R. Svoboda, M.D., et al., Appellants. A15-896, Court of Appeals Published, March 7, 2016. - A15-896 - 2016-03-07T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0896 Anita J. Howard, Respondent, vs. Shelly R. Svoboda, M.D., et al., Appellants. Filed March 7, 2016 Reversed ... - - - pdf - 111401 - Mar 7, - 2016 16:05:31 GMT - english - State of Minnesota, Respondent, vs. Daniel Drljic, Appellant. A15-714, Court of Appeals Published, March 7, 2016. - 2016-02-25T10:05:29+00:00 - Microsoft® Word 2013 - 2016-03-07T10:04:54+00:00 - Microsoft® Word 2013 - For purposes of calculating felony criminal-history points for the crime of second-degree burglary, the burglary of three separate businesses in one building on one day does not constitute a single behavioral incident. - State of Minnesota, Respondent, vs. Daniel Drljic, Appellant. A15-714, Court of Appeals Published, March 7, 2016. - A15-714 - 2016-03-07T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0714 State of Minnesota, Respondent, vs. Daniel Drljic, Appellant. Filed March 7, 2016 Affirmed Connolly, Judge ... - - - pdf - 186858 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Michael Marshall Johnson, a/k/a Michael Tate, Appellant. A15-391, Court of Appeals ... - 2016-02-29T13:02:16+00:00 - Microsoft® Word 2013 - 2016-03-07T11:06:32+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Michael Marshall Johnson, a/k/a Michael Tate, Appellant. A15-391, Court of Appeals Unpublished, March 7, 2016. - A15-391 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 135905 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Derrick Lee Riddle, Appellant. A15-522, Court of Appeals Unpublished, March 7, 2016. - 2016-02-29T14:34:21+00:00 - Microsoft® Word 2013 - 2016-03-07T11:09:12+00:00 - Microsoft® Word 2013 - Challenges to convictions of and sentences for violating an order for protection (OFP) and terroristic threats. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Derrick Lee Riddle, Appellant. A15-522, Court of Appeals Unpublished, March 7, 2016. - A15-522 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 135872 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Nicole Renaye Kroells, Appellant. A15-1026, Court of Appeals Unpublished, March 7, ... - 2016-02-29T14:17:57+00:00 - Microsoft® Word 2013 - 2016-03-07T11:37:26+00:00 - Microsoft® Word 2013 - Challenges denial of motion to suppress evidence. - State of Minnesota, Respondent, vs. Nicole Renaye Kroells, Appellant. A15-1026, Court of Appeals Unpublished, March 7, 2016. - A15-1026 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 160481 - Mar 7, - 2016 19:24:00 GMT - english - Orin Vann, Relator, vs. Texas Roadhouse Holdings LLC - Texas Roadhouse, Respondent, Department of Employment and ... - 2016-02-26T10:18:49+00:00 - Microsoft® Word 2013 - 2016-03-07T11:22:24+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Orin Vann, Relator, vs. Texas Roadhouse Holdings LLC - Texas Roadhouse, Respondent, Department of Employment and Economic Development, Respondent. A15-994, Court of Appeals Unpublished, March 7, 2016. - A15-994 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 140484 - Mar 7, - 2016 19:24:00 GMT - english - In re the Estate of: Bernice R. Murray aka Bernice Murray, Deceased. A15-1061, Court of Appeals Unpublished, March 7, ... - 2016-03-01T17:31:02+00:00 - Microsoft® Word 2013 - 2016-03-07T11:49:32+00:00 - Microsoft® Word 2013 - Judgment against an estate. - In re the Estate of: Bernice R. Murray aka Bernice Murray, Deceased. A15-1061, Court of Appeals Unpublished, March 7, 2016. - A15-1061 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 121486 - Mar 7, - 2016 19:24:00 GMT - english - Sarah Elizabeth LeBlanc, Appellant, vs. Alonzo Marell Lee, Respondent. A15-1006, Court of Appeals Unpublished, March 7, ... - 2016-03-01T10:31:57+00:00 - Microsoft® Word 2013 - 2016-03-07T11:34:23+00:00 - Microsoft® Word 2013 - Challenges denial of a harassment restraining order. - Sarah Elizabeth LeBlanc, Appellant, vs. Alonzo Marell Lee, Respondent. A15-1006, Court of Appeals Unpublished, March 7, 2016. - A15-1006 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122076 - Mar 7, - 2016 19:24:00 GMT - english - Marcia H. Thurmer, Relator, vs. Attorney Edward R. Shaw, P.A., Respondent, Department of Employment and Economic ... - 2016-02-26T10:25:06+00:00 - Microsoft® Word 2013 - 2016-03-07T13:04:14+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. Reversed. - Marcia H. Thurmer, Relator, vs. Attorney Edward R. Shaw, P.A., Respondent, Department of Employment and Economic Development, Respondent. A15-1105, Court of Appeals Unpublished, March 7, 2016. - A15-1105 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 136837 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Alan Michael Habiger, Appellant. A15-306, Court of Appeals Unpublished, March 7, ... - 2016-03-01T17:09:46+00:00 - Microsoft® Word 2013 - 2016-03-07T11:00:14+00:00 - Microsoft® Word 2013 - Challenges to conviction of aggravated robbery. - State of Minnesota, Respondent, vs. Alan Michael Habiger, Appellant. A15-306, Court of Appeals Unpublished, March 7, 2016. - A15-306 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 108224 - Mar 7, - 2016 19:24:00 GMT - english - Cathie J. Pascavage, petitioner, Respondent, vs. Donald Mackay, Appellant. A15-1204, Court of Appeals Unpublished, ... - 2016-02-26T11:40:49+00:00 - Microsoft® Word 2013 - 2016-03-07T13:05:37+00:00 - Microsoft® Word 2013 - Challenges a harassment restraining order (HRO). - Cathie J. Pascavage, petitioner, Respondent, vs. Donald Mackay, Appellant. A15-1204, Court of Appeals Unpublished, March 7, 2016. - A15-1204 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 223568 - Mar 7, - 2016 19:24:00 GMT - english - Newman-Lakka Cancer Foundation, Appellant, vs. Christine E. Briggs, Respondent. A15-1217, Court of Appeals Unpublished, ... - 2016-02-29T14:24:16+00:00 - Microsoft® Word 2013 - 2016-03-07T13:16:50+00:00 - Microsoft® Word 2013 - Challenges the district courts dismissal of its defamation lawsuit. - Newman-Lakka Cancer Foundation, Appellant, vs. Christine E. Briggs, Respondent. A15-1217, Court of Appeals Unpublished, March 7, 2016. - A15-1217 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 170401 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Raymond Joseph Traylor, Appellant. A15-29, Court of Appeals Unpublished, March 7, ... - 2016-02-29T11:43:29+00:00 - Microsoft® Word 2013 - 2016-03-07T10:58:49+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Raymond Joseph Traylor, Appellant. A15-29, Court of Appeals Unpublished, March 7, 2016. - A15-29 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 126598 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Cheng Pao Vue, Appellant. A15-852, Court of Appeals Unpublished, March 7, 2016. - 2016-02-26T09:12:34+00:00 - Microsoft® Word 2013 - 2016-03-07T11:17:28+00:00 - Microsoft® Word 2013 - Challenges to convictions of first-degree burglary and theft. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Cheng Pao Vue, Appellant. A15-852, Court of Appeals Unpublished, March 7, 2016. - A15-852 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 185203 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Sherman Peak, Appellant. A15-355, Court of Appeals Unpublished, March 7, 2016. - 2016-03-01T12:53:34+00:00 - Microsoft® Word 2013 - 2016-03-07T11:05:04+00:00 - Microsoft® Word 2013 - Challenges denial of motion to suppress the evidence. - State of Minnesota, Respondent, vs. Sherman Peak, Appellant. A15-355, Court of Appeals Unpublished, March 7, 2016. - A15-355 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 103230 - Mar 7, - 2016 19:24:00 GMT - english - In the Matter of the Welfare of: C.M.M., Child. A15-906, Court of Appeals Unpublished, March 7, 2016. - 2016-03-01T17:51:53+00:00 - Microsoft® Word 2013 - 2016-03-07T11:19:48+00:00 - Microsoft® Word 2013 - The Minnesota Department of Human Services (DHS) challenges the district courts order requiring it to seal its files related to respondent C.M.M.s juvenile delinquency records after C.M.M. improperly served her expungement petition to the wrong address and with the wrong hearing date. Reversed. - In the Matter of the Welfare of: C.M.M., Child. A15-906, Court of Appeals Unpublished, March 7, 2016. - A15-906 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 241684 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. David Paul Patterson, Appellant. A15-604, Court of Appeals Unpublished, March 7, ... - 2016-03-01T14:08:05+00:00 - Microsoft® Word 2013 - 2016-03-07T11:13:59+00:00 - Microsoft® Word 2013 - Challenges to convictions of sale and possession of controlled substance charge. - State of Minnesota, Respondent, vs. David Paul Patterson, Appellant. A15-604, Court of Appeals Unpublished, March 7, 2016. - A15-604 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 160060 - Mar 7, - 2016 19:24:00 GMT - english - Bridget Colleen Johnson, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-1054, Court of ... - 2016-02-26T10:09:37+00:00 - Microsoft® Word 2013 - 2016-03-07T11:39:19+00:00 - Microsoft® Word 2013 - Challenges the district courts order sustaining the revocation of her drivers license. - Bridget Colleen Johnson, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-1054, Court of Appeals Unpublished, March 7, 2016. - A15-1054 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123072 - Mar 7, - 2016 19:24:00 GMT - english - Brandon Darnell Barnes, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1212, Court of Appeals ... - 2016-02-29T13:45:27+00:00 - Microsoft® Word 2013 - 2016-03-07T13:10:23+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Brandon Darnell Barnes, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1212, Court of Appeals Unpublished, March 7, 2016. - A15-1212 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 195745 - Mar 7, - 2016 19:24:01 GMT - english - In the Matter of the Welfare of the Child of: C. J. S., Parent. A15-1539, Court of Appeals Unpublished, March 7, 2016. - 2016-03-01T11:26:35+00:00 - Microsoft® Word 2013 - 2016-03-07T13:20:12+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Child of: C. J. S., Parent. A15-1539, Court of Appeals Unpublished, March 7, 2016. - A15-1539 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 191315 - Mar 7, - 2016 19:24:00 GMT - english - Isanti Estates, LLC, Appellant, vs. McCarthy Well Company, Respondent, McCullough & Sons, Incorporated d/b/a McCullough ... - 2016-03-01T14:24:55+00:00 - Microsoft® Word 2013 - 2016-03-07T11:15:13+00:00 - Microsoft® Word 2013 - Challenges the summary-judgment dismissal of its conversion, negligence, and breach-of-contract claims, and the entry of summary judgment in favor of one of the respondents on its unjust-enrichment claim. - Isanti Estates, LLC, Appellant, vs. McCarthy Well Company, Respondent, McCullough & Sons, Incorporated d/b/a McCullough & Sons Well Drilling, Inc., Respondent. A15-809, Court of Appeals Unpublished, March 7, 2016. - A15-809 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 98046 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Max Dylan Loosen-Scholer, Appellant. A15-1095, Court of Appeals Unpublished, March ... - 2016-03-01T16:04:36+00:00 - Microsoft® Word 2013 - 2016-03-07T11:52:22+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Max Dylan Loosen-Scholer, Appellant. A15-1095, Court of Appeals Unpublished, March 7, 2016. - A15-1095 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 121173 - Mar 7, - 2016 19:24:01 GMT - english - In the Matter of the Welfare of the Children of: A. R. H. and G. J. B., Parents. A15-1441, Court of Appeals Unpublished,... - 2016-03-01T10:51:56+00:00 - Microsoft® Word 2013 - 2016-03-07T13:19:01+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: A. R. H. and G. J. B., Parents. A15-1441, Court of Appeals Unpublished, March 7, 2016. - A15-1441 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 1596149 - Mar 2, - 2016 17:05:17 GMT - english - ORDER PROMULGATING AMENDMENTS TO THE RULES OF THE BOARD ON JUDICIAL STANDARDS. ADM10-8032, Supreme Court Administrative ... - 2016-02-24T13:33:21+00:00 - Canon DR-M140 TWAIN - 2016-03-02T11:03:55+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The Rules of the Board on Judicial Standards are amended as shown in the attachment to this order. - ORDER PROMULGATING AMENDMENTS TO THE RULES OF THE BOARD ON JUDICIAL STANDARDS. ADM10-8032, Supreme Court Administrative Order, March 2, 2016. - ADM10-8032 - 2016-03-02T00:00:00-0600 - February 24, 2016 STATE OF MINNESOTA IN SUPREME COURT ADM10-8032 ORDER PROMULGATING AMENDMENTS TO THE RULES OF THE BOARD ON JUDICIAL STANDARDS Om:ciEOF API'B. ... - - - pdf - 401721 - Mar 2, - 2016 17:05:17 GMT - english - Craig Matthew Hohenwald, Appellant, vs. State of Minnesota, Respondent. A15-487, Supreme Court Order, March 2, 2016. - 2016-02-26T15:35:09+00:00 - Canon DR-M140 TWAIN - 2016-03-02T10:51:48+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Correction: The attached slip opinion, amended as stated above, shall be substituted for the opinion filed February 24, 2016. - Craig Matthew Hohenwald, Appellant, vs. State of Minnesota, Respondent. A15-487, Supreme Court Order, March 2, 2016. - A15-487 - 2016-03-02T00:00:00-0600 - February 26, 2016 STATE OF MINNESOTA IN SUPREME COURT AlS- 0487 Craig Matthew Hohenwald, Appellant, vs. State of Minnesota, Respondent. ORDER Based upon all the ... - - - pdf - 308185 - Mar 2, - 2016 17:05:17 GMT - english - In re Petition for Disciplinary Action against Daniel L. M. Kennedy, a Minnesota Attorney, Registration No. 0211321. ... - 2016-02-24T11:33:10+00:00 - Canon DR-M140 TWAIN - 2016-03-02T10:55:29+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Daniel L. M. Kennedy is publicly reprimanded. - In re Petition for Disciplinary Action against Daniel L. M. Kennedy, a Minnesota Attorney, Registration No. 0211321. A15-1698, Supreme Court Order, March 2, 2016. - A15-1698 - 2016-03-02T00:00:00-0600 - February 24, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1698 In re Petition for Disciplinary Action against Daniel L. M. Kennedy, a Minnesota Attorney, Registration ... - - - pdf - 306954 - Mar 2, - 2016 17:05:17 GMT - english - In re Petition for Disciplinary Action against Jonathan C. Lewis, a Minnesota Attorney, Registration No. 0172017. ... - 2016-02-24T15:47:49+00:00 - Canon DR-M140 TWAIN - 2016-03-02T10:57:12+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Jonathan C. Lewis is indefinitely suspended from the practice of law. - In re Petition for Disciplinary Action against Jonathan C. Lewis, a Minnesota Attorney, Registration No. 0172017. A15-999, Supreme Court Order, March 2, 2016. - A15-999 - 2016-03-02T00:00:00-0600 - February 24, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-0999 In re Petition for Disciplinary Action against Jonathan C. Lewis, a Minnesota Attorney, Registration ... - - - pdf - 275972 - Mar 2, - 2016 17:05:17 GMT - english - State of Minnesota, Respondent, vs. Vidale Lee Whitson, Appellant, Vidale Lee Whitson, Appellant, vs. State of ... - 2016-02-29T10:11:26+00:00 - Microsoft® Word 2013 - 2016-03-02T10:47:43+00:00 - Microsoft® Word 2013 - Without deciding whether the prosecutor committed misconduct by failing to adequately prepare a witness and eliciting inadmissible testimony, the alleged misconduct was harmless beyond a reasonable doubt. The postconviction court did not abuse its discretion in denying appellants postconviction claims of ineffective assistance of trial counsel without granting an evidentiary hearing. The State did not fail to disclose material exculpatory evidence to the defense. The postconviction court did not abuse its discretion in denying appellants claims that the police and prosecutors fabricated evidence without granting an evidentiary hearing. Omissions from the trial transcript that were later corrected and provided to appellant did not deny him the right to meaningful review of his conviction. - State of Minnesota, Respondent, vs. Vidale Lee Whitson, Appellant, Vidale Lee Whitson, Appellant, vs. State of Minnesota, Respondent. C5-02-2108, A04-875, Supreme Court, March 2, 2016. - C5-02-2108 - 2016-03-02T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT C5-02-2108 A04-0875 St. Louis County Lillehaug, J. Took no part, Hudson, J. State of Minnesota, Respondent, vs. Filed: ... - - - pdf - 186472 - Feb 29, - 2016 16:11:53 GMT - english - Founders Insurance Company, Appellant, vs. James Yates, Respondent. A15-1174, Court of Appeals Published, February 29, ... - 2016-02-23T14:02:45+00:00 - Microsoft® Word 2013 - 2016-02-29T10:09:36+00:00 - Microsoft® Word 2013 - Under the Minnesota No-Fault Automobile Insurance Act, Minn. Stat. §§ 65B.41-.71 (2014), an out-of-state insurer that is not licensed to write motor-vehicle-accident reparation and liability insurance in Minnesota is not obligated to provide basic economic-loss benefits to its insured who was injured in an accident in Minnesota. Reversed. - Founders Insurance Company, Appellant, vs. James Yates, Respondent. A15-1174, Court of Appeals Published, February 29, 2016. - A15-1174 - 2016-02-29T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1174 Founders Insurance Company, Appellant, vs. James Yates, Respondent. Filed February 29, 2016 Reversed Chutich, ... - - - pdf - 98056 - Feb 29, - 2016 19:47:41 GMT - english - Capital One Bank USA, NA, Respondent, vs. Gbenga J. Ekinnola, Appellant. A15-485, Court of Appeals Unpublished, ... - 2016-02-23T09:49:40+00:00 - Microsoft® Word 2013 - 2016-02-29T11:25:34+00:00 - Microsoft® Word 2013 - Challenges denial of motion to vacate judgment. - Capital One Bank USA, NA, Respondent, vs. Gbenga J. Ekinnola, Appellant. A15-485, Court of Appeals Unpublished, February 29, 2016. - A15-485 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 106143 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Emery Scott Whitt, Appellant. A15-465, Court of Appeals Unpublished, February 29, ... - 2016-02-23T11:09:12+00:00 - Microsoft® Word 2013 - 2016-02-29T11:21:08+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Emery Scott Whitt, Appellant. A15-465, Court of Appeals Unpublished, February 29, 2016. - A15-465 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS ... - - - pdf - 128550 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Gonsalo Cosme-Garsia, Appellant. A15-470, Court of Appeals Unpublished, February 29,... - 2016-02-18T09:30:17+00:00 - Microsoft® Word 2013 - 2016-02-29T11:23:25+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - State of Minnesota, Respondent, vs. Gonsalo Cosme-Garsia, Appellant. A15-470, Court of Appeals Unpublished, February 29, 2016. - A15-470 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 99207 - Feb 29, - 2016 21:17:31 GMT - english - State of Minnesota, Respondent, vs. Jeremia Joseph Loper, Appellant. A15-509, Court of Appeals Unpublished, February 29,... - 2016-02-17T13:48:58+00:00 - Microsoft® Word 2013 - 2016-02-29T15:16:53+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Jeremia Joseph Loper, Appellant. A15-509, Court of Appeals Unpublished, February 29, 2016. - A15-509 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 110812 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Troy Adam Gocha, Appellant. A15-706. Court of Appeals Unpublished, February 29, ... - 2016-02-23T16:17:01+00:00 - Microsoft® Word 2013 - 2016-02-29T11:59:56+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree assault. - State of Minnesota, Respondent, vs. Troy Adam Gocha, Appellant. A15-706. Court of Appeals Unpublished, February 29, 2016. - A15-706 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 180826 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Kevin Earl Westergaard, Appellant. A15-582, Court of Appeals Unpublished, February ... - 2016-02-18T15:03:06+00:00 - Microsoft® Word 2013 - 2016-02-29T11:39:26+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Kevin Earl Westergaard, Appellant. A15-582, Court of Appeals Unpublished, February 29, 2016. - A15-582 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 102298 - Feb 29, - 2016 19:47:41 GMT - english - Karl Arthur Keene, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-796, Court of Appeals Unpublished, ... - 2016-02-23T13:02:15+00:00 - Microsoft® Word 2013 - 2016-02-29T12:01:47+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Karl Arthur Keene, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-796, Court of Appeals Unpublished, February 29, 2016. - A15-796 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174808 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Matthew Robert Dornsbach, Appellant. A15-590, Court of Appeals Unpublished, ... - 2016-02-23T14:35:21+00:00 - Microsoft® Word 2013 - 2016-02-29T11:55:19+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - State of Minnesota, Respondent, vs. Matthew Robert Dornsbach, Appellant. A15-590, Court of Appeals Unpublished, February 29, 2016. - A15-590 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 104836 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Zaki Mohamed Sugule, Appellant. A15-826, Court of Appeals Unpublished, February 29, ... - 2016-02-23T09:48:51+00:00 - Microsoft® Word 2013 - 2016-02-29T12:06:11+00:00 - Microsoft® Word 2013 - Challenges that the district court abused its discretion by denying his motion for a downward durational sentencing departure. - State of Minnesota, Respondent, vs. Zaki Mohamed Sugule, Appellant. A15-826, Court of Appeals Unpublished, February 29, 2016. - A15-826 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 168458 - Feb 29, - 2016 21:11:15 GMT - english - Hennepin County, Respondent, Mamie Jegbadai, Respondent, vs. Gbenga Akinnola, Appellant. A15-667, Court of Appeals ... - 2016-02-23T13:55:30+00:00 - Microsoft® Word 2013 - 2016-02-29T15:10:28+00:00 - Microsoft® Word 2013 - Child support dispute. - Hennepin County, Respondent, Mamie Jegbadai, Respondent, vs. Gbenga Akinnola, Appellant. A15-667, Court of Appeals Unpublished, February 29, 2016. - A15-667 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 113753 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Timothy Andrew Swan, Appellant. A15-832, Court of Appeals Unpublished, February 29, ... - 2016-02-23T11:15:09+00:00 - Microsoft® Word 2013 - 2016-02-29T12:07:51+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Timothy Andrew Swan, Appellant. A15-832, Court of Appeals Unpublished, February 29, 2016. - A15-832 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107220 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Justin Glenn Joecks, Appellant. A15-1014, Court of Appeals Unpublished, February 29,... - 2016-02-23T09:32:41+00:00 - Microsoft® Word 2013 - 2016-02-29T12:13:39+00:00 - Microsoft® Word 2013 - Challenges denial of motion to suppress evidence. - State of Minnesota, Respondent, vs. Justin Glenn Joecks, Appellant. A15-1014, Court of Appeals Unpublished, February 29, 2016. - A15-1014 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 165895 - Feb 29, - 2016 19:47:52 GMT - english - Estate of Howard G. Boyd, Decedent. A15-1132, Court of Appeals Unpublished, February 29, 2016. - 2016-02-18T10:47:21+00:00 - Microsoft® Word 2013 - 2016-02-29T13:23:36+00:00 - Microsoft® Word 2013 - Probate dispute. Reversed and remanded. - Estate of Howard G. Boyd, Decedent. A15-1132, Court of Appeals Unpublished, February 29, 2016. - A15-1132 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 169297 - Feb 29, - 2016 19:47:52 GMT - english - Lois St. Aubin, Appellant, vs. Caseys Retail Company d/b/a Caseys General Store, Respondent. A15-1306, Court of ... - 2016-02-18T15:16:19+00:00 - Microsoft® Word 2013 - 2016-02-29T13:32:30+00:00 - Microsoft® Word 2013 - Challenges summary judgment dismissal of slip and fall claim. - Lois St. Aubin, Appellant, vs. Caseys Retail Company d/b/a Caseys General Store, Respondent. A15-1306, Court of Appeals Unpublished, February 29, 2016. - A15-1306 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 115044 - Feb 29, - 2016 19:47:41 GMT - english - Willie J. Bridgeforth, III, Appellant, Susan J. Swanson, Plaintiff, vs. Smith Strum Investment Co. d/b/a Winnetka ... - 2016-02-24T09:20:23+00:00 - Microsoft® Word 2010 - 2016-02-29T13:18:38+00:00 - Microsoft® Word 2010 - Challenges grant of summary judgment. - Willie J. Bridgeforth, III, Appellant, Susan J. Swanson, Plaintiff, vs. Smith Strum Investment Co. d/b/a Winnetka Village Apartments, Respondent. A15-1091, Court of Appeals Unpublished, February 29, 2016. - A15-1091 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 136315 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Joseph Harvey Bellanger, Appellant. A15-150, Court of Appeals Unpublished, February ... - 2016-02-19T09:48:59+00:00 - Microsoft® Word 2013 - 2016-02-29T11:03:42+00:00 - Microsoft® Word 2013 - Challenges to convictions of kidnapping and false imprisonment. - State of Minnesota, Respondent, vs. Joseph Harvey Bellanger, Appellant. A15-150, Court of Appeals Unpublished, February 29, 2016. - A15-150 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 142108 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Travis Joseph Petermeier, Appellant. A15-425, Court of Appeals Unpublished, ... - 2016-02-23T13:14:39+00:00 - Microsoft® Word 2013 - 2016-02-29T11:18:24+00:00 - Microsoft® Word 2013 - Revocation of probation. Reversed and remanded. - State of Minnesota, Respondent, vs. Travis Joseph Petermeier, Appellant. A15-425, Court of Appeals Unpublished, February 29, 2016. - A15-425 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 161062 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Faith Annette Jenson, Appellant. A15-416, Court of Appeals Unpublished, February 29,... - 2016-02-22T15:35:14+00:00 - Microsoft® Word 2013 - 2016-02-29T11:15:48+00:00 - Microsoft® Word 2013 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. Faith Annette Jenson, Appellant. A15-416, Court of Appeals Unpublished, February 29, 2016. - A15-416 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 131559 - Feb 29, - 2016 21:11:06 GMT - english - State of Minnesota, Respondent, vs. Eric Christopher Bakke, Appellant. A15-504, Court of Appeals Unpublished, February ... - 2016-02-23T17:01:05+00:00 - Microsoft® Word 2013 - 2016-02-29T15:09:01+00:00 - Microsoft® Word 2013 - Challenges possession of a controlled substance. Reversed and remanded. - State of Minnesota, Respondent, vs. Eric Christopher Bakke, Appellant. A15-504, Court of Appeals Unpublished, February 29, 2016. - A15-504 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 26025 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Marcus Darrell Pederson, Appellant. A15-583, Court of Appeals Unpublished, February ... - Minnesota Judicial Branch - 2016-02-23T09:07:33+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-29T11:44:24+00:00 - Adobe PDF Library 11.0 - 2016-02-23T15:07:22+00:00 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Marcus Darrell Pederson, Appellant. A15-583, Court of Appeals Unpublished, February 29, 2016. - A15-583 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123814 - Feb 29, - 2016 19:47:41 GMT - english - In re the Marriage of: Emily-Jean Chinwendu Aguocha, petitioner, Respondent, vs. Ikechukwu Hisa Aguocha, Appellant. ... - 2016-02-22T17:00:35+00:00 - Microsoft® Word 2013 - 2016-02-29T11:37:07+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. - In re the Marriage of: Emily-Jean Chinwendu Aguocha, petitioner, Respondent, vs. Ikechukwu Hisa Aguocha, Appellant. A15-563, Court of Appeals Unpublished, February 29, 2016. - A15-563 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 152927 - Feb 29, - 2016 19:47:52 GMT - english - Gail D. Robinson, Relator, vs. Analysts International Corporation, Respondent, Department of Employment and Economic ... - 2016-02-18T11:14:22+00:00 - Microsoft® Word 2013 - 2016-02-29T13:25:08+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Gail D. Robinson, Relator, vs. Analysts International Corporation, Respondent, Department of Employment and Economic Development, Respondent. A15-1200, Court of Appeals Unpublished, February 29, 2016. - A15-1200 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 120143 - Feb 29, - 2016 19:47:53 GMT - english - State of Minnesota, Appellant, vs. Jose Martin Lugo, Jr., Respondent. A15-1432, Court of Appeals Unpublished, February ... - 2016-02-23T14:25:55+00:00 - Microsoft® Word 2013 - 2016-02-29T13:38:07+00:00 - Microsoft® Word 2013 - State of Minnesota challenges that the district court erred as a matter of law by suppressing all evidence discovered as a result of a canine sniff and subsequent search of vehicle. Reversed and remanded. - State of Minnesota, Appellant, vs. Jose Martin Lugo, Jr., Respondent. A15-1432, Court of Appeals Unpublished, February 29, 2016. - A15-1432 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 127530 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Justin Lee Armstrong, Appellant. A15-912, Court of Appeals Unpublished, February 29,... - 2016-02-23T15:23:22+00:00 - Microsoft® Word 2013 - 2016-02-29T12:11:17+00:00 - Microsoft® Word 2013 - Challenges denial of motion to withdraw guilty plea. Reversed and remanded. - State of Minnesota, Respondent, vs. Justin Lee Armstrong, Appellant. A15-912, Court of Appeals Unpublished, February 29, 2016. - A15-912 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122422 - Feb 29, - 2016 19:47:53 GMT - english - In the Matter of the Welfare of the Children of: M. J. W. and M. A., Parents. A15-1531, Court of Appeals Unpublished, ... - 2016-02-22T15:47:28+00:00 - Microsoft® Word 2013 - 2016-02-29T13:45:27+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: M. J. W. and M. A., Parents. A15-1531, Court of Appeals Unpublished, February 29, 2016. - A15-1531 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 169510 - Feb 29, - 2016 19:47:52 GMT - english - Francis Kiyimba, Relator, vs. Department of Employment and Economic Development, Respondent. A15-1098, Court of Appeals ... - 2016-02-18T14:36:24+00:00 - Microsoft® Word 2013 - 2016-02-29T13:21:19+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Francis Kiyimba, Relator, vs. Department of Employment and Economic Development, Respondent. A15-1098, Court of Appeals Unpublished, February 29, 2016. - A15-1098 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 94010 - Feb 29, - 2016 19:47:41 GMT - english - Heidi Jo Olson, petitioner, Respondent, vs. Mark Douglas Olson, Appellant. A15-900, Court of Appeals Unpublished, ... - 2016-02-22T14:26:58+00:00 - Microsoft® Word 2013 - 2016-02-29T12:09:34+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. - Heidi Jo Olson, petitioner, Respondent, vs. Mark Douglas Olson, Appellant. A15-900, Court of Appeals Unpublished, February 29, 2016. - A15-900 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 114934 - Feb 29, - 2016 19:47:53 GMT - english - Craig L. Anderson, Successor Personal Representative and Sole Beneficiary of the Leslie R. Anderson and Donna Mae ... - 2016-02-18T10:08:11+00:00 - Microsoft® Word 2013 - 2016-02-29T13:40:39+00:00 - Microsoft® Word 2013 - Appellant challenges the district courts determination that he is a frivolous litigant under Minn. R. Gen. Pract. 9.06. - Craig L. Anderson, Successor Personal Representative and Sole Beneficiary of the Leslie R. Anderson and Donna Mae Anderson Revocable Living Trust, on behalf of: The Estate of Leslie R. Anderson, Appellant, vs. Hans Carlson, et al., Respondents, Joel Krekelberg, Respondent, Scott Vance, Respondent. A15-1443, Court of Appeals Unpublished, February 29, 2016. - A15-1443 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 393585 - Feb 24, - 2016 18:21:54 GMT - english - In re Petition for Disciplinary Action against Duane A. Kennedy, a Minnesota Attorney, Registration No. 0055128. ... - 2016-02-19T14:08:57+00:00 - Canon DR-M140 TWAIN - 2016-02-24T12:10:59+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Duane A. Kennedy is conditionally reinstated to the practice of law in the State of Minnesota. - In re Petition for Disciplinary Action against Duane A. Kennedy, a Minnesota Attorney, Registration No. 0055128. A15-1390, Supreme Court Order, February 24, 2016. - A15-1390 - 2016-02-24T00:00:00-0600 - February 19, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1390 In re Petition for Disciplinary Action against Duane A. Kennedy, a Minnesota Attorney, Registration ... - - - pdf - 417267 - Feb 24, - 2016 18:21:54 GMT - english - In re Petition for Disciplinary Action against Marc G. Kurzman, a Minnesota Attorney, Registration No. 59080. A14-1416, ... - 2016-02-18T09:53:31+00:00 - Canon DR-M140 TWAIN - 2016-02-24T12:21:17+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Marc G. Kurzman is conditionally reinstated to the practice of law in the State of Minnesota. - In re Petition for Disciplinary Action against Marc G. Kurzman, a Minnesota Attorney, Registration No. 59080. A14-1416, Supreme Court Order, February 24, 2016. - A14-1416 - 2016-02-24T00:00:00-0600 - February 18, 2016 STATE OF MINNESOTA IN SUPREME COURT A14-1416 In re Petition for Disciplinary Action against Marc G. Kurzman, a Minnesota Attorney, Registration ... - - - pdf - 150755 - Feb 24, - 2016 18:21:53 GMT - english - State of Minnesota, Respondent, vs. True Thao, Appellant. A14-1182, Supreme Court, February 24, 2016. - 2016-02-19T15:18:48+00:00 - Microsoft® Word 2013 - 2016-02-24T12:12:56+00:00 - Microsoft® Word 2013 - The district court's allegedly erroneous admission of evidence under Minn. R. Evid. 404(b) was harmless because it did not significantly affect the verdict. The district court did not abuse its discretion when it admitted expert testimony on gangs. The district court's jury instruction on reasonable doubt was not an abuse of discretion. The appellant's pro se arguments lack merit. - State of Minnesota, Respondent, vs. True Thao, Appellant. A14-1182, Supreme Court, February 24, 2016. - A14-1182 - 2016-02-24T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1182 Ramsey County Stras, J. Took no part, Hudson, J. State of Minnesota, Respondent, vs. Filed: February 24, ... - - - pdf - 265837 - Feb 22, - 2016 17:54:45 GMT - english - In re the Marriage of: Crystol Kevan Caudullo, petitioner, Appellant, vs. Michael Anthony Caudullo, Respondent. A15-314,... - 2016-02-12T12:51:07+00:00 - Microsoft® Word 2013 - 2016-02-22T11:17:21+00:00 - Microsoft® Word 2013 - Child custody dispute. Affirmed in part, reversed in part, and remanded. - In re the Marriage of: Crystol Kevan Caudullo, petitioner, Appellant, vs. Michael Anthony Caudullo, Respondent. A15-314, Court of Appeals Unpublished, February 22, 2016. - A15-314 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 163108 - Feb 22, - 2016 17:54:46 GMT - english - State of Minnesota, Respondent, vs. Steven Tyrone Davis, Appellant. A15-523, Court of Appeals Unpublished, February 22, ... - 2016-02-16T15:23:24+00:00 - Microsoft® Word 2013 - 2016-02-22T11:23:21+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony violation of a harassment restraining order. - State of Minnesota, Respondent, vs. Steven Tyrone Davis, Appellant. A15-523, Court of Appeals Unpublished, February 22, 2016. - A15-523 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 162529 - Feb 22, - 2016 17:54:46 GMT - english - State of Minnesota, Respondent, vs. Antonio Lamonthe White, Appellant. A15-608, Court of Appeals Unpublished, February ... - 2016-02-12T11:07:16+00:00 - Microsoft® Word 2013 - 2016-02-22T11:37:00+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Antonio Lamonthe White, Appellant. A15-608, Court of Appeals Unpublished, February 22, 2016. - A15-608 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 228911 - Feb 22, - 2016 17:54:46 GMT - english - In the Matter of the Welfare of the Children of: C.L.T. and J.T., Parents. A15-451, Court of Appeals Unpublished, ... - 2016-02-17T09:52:19+00:00 - Microsoft® Word 2013 - 2016-02-22T11:19:37+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: C.L.T. and J.T., Parents. A15-451, Court of Appeals Unpublished, February 22, 2016. - A15-451 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 229209 - Feb 22, - 2016 17:54:45 GMT - english - State of Minnesota, Respondent, vs. Emem Ufot Udoh, Appellant. A14-2181, Court of Appeals Unpublished, February 22, ... - 2016-02-11T12:42:18+00:00 - Microsoft® Word 2013 - 2016-02-22T11:06:05+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Emem Ufot Udoh, Appellant. A14-2181, Court of Appeals Unpublished, February 22, 2016. - A14-2181 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 130081 - Feb 22, - 2016 17:54:46 GMT - english - Lovell Nahmor Oates, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-788, Court of Appeals Unpublished, ... - 2016-02-16T10:29:21+00:00 - Microsoft® Word 2013 - 2016-02-22T11:39:24+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Lovell Nahmor Oates, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-788, Court of Appeals Unpublished, February 22, 2016. - A15-788 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 193310 - Feb 22, - 2016 17:54:45 GMT - english - State of Minnesota, Respondent, vs. Paula Jean Yackel, Appellant. A15-311, Court of Appeals Unpublished, February 22, ... - 2016-02-16T13:01:21+00:00 - Microsoft® Word 2013 - 2016-02-22T11:12:40+00:00 - Microsoft® Word 2013 - Challenges to convictions of driving while impaired and obstructing the legal process. Affirmed in part, and reversed in part. - State of Minnesota, Respondent, vs. Paula Jean Yackel, Appellant. A15-311, Court of Appeals Unpublished, February 22, 2016. - A15-311 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 115940 - Feb 22, - 2016 17:54:46 GMT - english - William Nichols, Respondent, vs. Soo Line Railroad d/b/a C. P. Railway, a corporation, Appellant. A15-1100, Court of ... - 2016-02-11T11:58:03+00:00 - Microsoft® Word 2013 - 2016-02-22T11:45:07+00:00 - Microsoft® Word 2013 - Appellant challenges the district courts grant, in favor of respondent, of judgment as a matter of law (JMOL), which set aside a jury determination that respondent was contributorily negligent. Reversed and remanded. - William Nichols, Respondent, vs. Soo Line Railroad d/b/a C. P. Railway, a corporation, Appellant. A15-1100, Court of Appeals Unpublished, February 22, 2016. - A15-1100 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 303717 - Feb 22, - 2016 17:54:46 GMT - english - Randall Norman, et al., Respondents, vs. Crow Wing Cooperative Power & Light Company, Appellant. A15-983, Court of ... - 2016-02-16T15:55:22+00:00 - Microsoft® Word 2013 - 2016-02-22T11:42:10+00:00 - Microsoft® Word 2013 - Stray electrical voltage claim. - Randall Norman, et al., Respondents, vs. Crow Wing Cooperative Power & Light Company, Appellant. A15-983, Court of Appeals Unpublished, February 22, 2016. - A15-983 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 172474 - Feb 22, - 2016 17:54:46 GMT - english - Angela K. Schreader, Respondent, vs. DC & D Enterprises, LLC, d/b/a Above Summit Construction Services, Appellant. ... - 2016-02-11T11:34:55+00:00 - Microsoft® Word 2013 - 2016-02-22T11:49:29+00:00 - Microsoft® Word 2013 - Appellant employer challenges the district courts imposition of a statutory penalty for unpaid wages under Minn. Stat. § 181.13(a) (2014). Reversed and remanded. - Angela K. Schreader, Respondent, vs. DC & D Enterprises, LLC, d/b/a Above Summit Construction Services, Appellant. A15-1140, Court of Appeals Unpublished, February 22, 2016. - A15-1140 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 97698 - Feb 22, - 2016 17:54:46 GMT - english - State of Minnesota, Respondent, vs. Lamont Bugg, Jr., Appellant. A15-1137, Court of Appeals Unpublished, February 22, ... - 2016-02-12T09:31:32+00:00 - Microsoft® Word 2013 - 2016-02-22T11:48:02+00:00 - Microsoft® Word 2013 - After appellant was sentenced for failure to register as a predatory offender, the district court sua sponte amended his sentence to add a ten-year conditional- release term under Minn. Stat. § 243.166, subd. 5a (Supp. 2013). Reversed and remanded. - State of Minnesota, Respondent, vs. Lamont Bugg, Jr., Appellant. A15-1137, Court of Appeals Unpublished, February 22, 2016. - A15-1137 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 245184 - Feb 22, - 2016 17:54:46 GMT - english - Peter Gerard Lonergan, Appellant, vs. Emily Johnson Piper, Commissioner of Human Services, Respondent. A15-1625, Court ... - 2016-02-11T10:24:52+00:00 - Microsoft® Word 2013 - 2016-02-22T11:53:55+00:00 - Microsoft® Word 2013 - Appellant challenges the judicial appeal panels order dismissing and denying his petition for discharge or provisional discharge from civil commitment as a sexually dangerous person. - Peter Gerard Lonergan, Appellant, vs. Emily Johnson Piper, Commissioner of Human Services, Respondent. A15-1625, Court of Appeals Unpublished, February 22, 2016. - A15-1625 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 238418 - Feb 17, - 2016 18:41:34 GMT - english - Thomas Daniel Rhodes, Appellant, vs. State of Minnesota, Respondent. A13-560, A15-136, Supreme Court, February 17, 2016. - 2016-02-16T11:20:04+00:00 - Microsoft® Word 2013 - 2016-02-17T12:10:04+00:00 - Microsoft® Word 2013 - The postconviction court did not abuse its discretion by summarily denying appellant's third and fourth petitions for postconviction relief because the petitions are untimely under the postconviction statute of limitations. - Thomas Daniel Rhodes, Appellant, vs. State of Minnesota, Respondent. A13-560, A15-136, Supreme Court, February 17, 2016. - A13-560 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A13-0560 A15-0136 Kandiyohi County Wright, J. Dissenting, Anderson and Lillehaug, JJ. Took no part, Hudson, J. Thomas ... - - - pdf - 366097 - Feb 17, - 2016 18:41:35 GMT - english - Jennifer L. DeCook, et al., Respondents/Cross-Appellants, vs. Olmsted Medical Center, Inc., Brenda J. Hanson, R.N., and ... - 2016-02-16T12:38:01+00:00 - Microsoft® Word 2013 - 2016-02-17T12:18:58+00:00 - Microsoft® Word 2013 - A summons and complaint that are defective because they are signed by an attorney who is not licensed to practice in Minnesota are not void and may, in the district court's discretion, be cured by amendment. Because the plaintiffs produced evidence of service and the defendants did not satisfy their burden to prove that service was not effective, the district court erred in granting the defendants' motion to dismiss for insufficient service. - Jennifer L. DeCook, et al., Respondents/Cross-Appellants, vs. Olmsted Medical Center, Inc., Brenda J. Hanson, R.N., and Darlene M. Pratt, R.N., Appellants/Cross-Respondents, Kenneth M. Palmer, M.D., Jack F. Perrone, M.D., Kimberly McKeon, M.D., and Ashley Morrow, R.N., Cross-Respondents. A14-1180, Supreme Court, February 17, 2016. - A14-1180 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1180 Court of Appeals Lillehaug, J. Concurring in part and dissenting in part, Dietzen, J., Gildea, C.J., and ... - - - pdf - 201180 - Feb 17, - 2016 18:41:35 GMT - english - Wayzata Nissan, LLC, Appellant, vs. Nissan North America, Inc., Respondent, Stephen J. McDaniels, et al., Respondents. ... - 2016-02-12T09:52:35+00:00 - Microsoft® Word 2013 - 2016-02-17T12:21:21+00:00 - Microsoft® Word 2013 - A challenge to the proposed relocation of a motor vehicle dealership under the Minnesota Motor Vehicle Sale and Distribution Act, Minn. Stat. §§ 80E.01-.17 (2014), is not rendered moot by the relocation and operation of the dealership. The notice requirement of Minn. Stat. § 80E.14, subd. 1, applies on the date that a manufacturer develops an intention to authorize the relocation of a motor vehicle dealership. The exception for the "relocation of an existing dealer" in Minn. Stat. § 80E.14, subd. 1, does not apply when the relocated dealership will be operated by a new dealer. Affirmed in part, reversed in part, and remanded. - Wayzata Nissan, LLC, Appellant, vs. Nissan North America, Inc., Respondent, Stephen J. McDaniels, et al., Respondents. A14-1652, Supreme Court, February 17, 2016. - A14-1652 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1652 Court of Appeals Wright, J. Wayzata Nissan, LLC, Appellant, vs. Filed: February 17, 2016 Office of Appellate ... - - - pdf - 310842 - Feb 18, - 2016 17:36:36 GMT - english - State of Minnesota, Respondent, vs. Joshua Lee Myhre, Appellant. A14-670, Supreme Court, February 17, 2016. - 2016-02-18T11:18:10+00:00 - Microsoft® Word 2013 - 2016-02-18T11:35:41+00:00 - Microsoft® Word 2013 - Appellant is not entitled to a new trial based on the district court's failure to fully comply with the provisions of Minnesota Rule of Criminal Procedure 26.01, subdivision 4. - State of Minnesota, Respondent, vs. Joshua Lee Myhre, Appellant. A14-670, Supreme Court, February 17, 2016. - A14-670 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0670 Court of Appeals Anderson, J. Dissenting, Wright and Lillehaug, JJ. State of Minnesota, Respondent, vs. ... - - - pdf - 434441 - Feb 17, - 2016 18:41:35 GMT - english - In re Petition for Disciplinary Action against Jorge Luis Sanchez, a Minnesota Attorney, Registration No. 0388556. ... - 2016-02-03T14:30:45+00:00 - Canon DR-M140 TWAIN - 2016-02-17T12:35:50+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Jorge Luis Sanchez is indefinitely suspended from the practice of law. - In re Petition for Disciplinary Action against Jorge Luis Sanchez, a Minnesota Attorney, Registration No. 0388556. A16-66, Supreme Court Order, February 17, 2016. - A16-66 - 2016-02-17T00:00:00-0600 - February 3, 2016 STATE OF MINNESOTA IN SUPREME COURT Al6-0066 In rePetition for Disciplinary Action against Jorge Luis Sanchez, a Minnesota Attorney, Registration ... - - - pdf - 248852 - Feb 17, - 2016 18:41:35 GMT - english - Ali M. Shire, Respondent, vs. Rosemount, Inc., Self-Insured/Berkley Risk Administrators Company, LLC, Relators, and ... - 2016-02-15T15:42:44+00:00 - Microsoft® Word 2013 - 2016-02-17T12:34:20+00:00 - Microsoft® Word 2013 - The voluntary-recreational-program exception to the workers' compensation statute, Minn. Stat. § 176.021, subd. 9 (2014), is not satisfied when the employees' choices are either to attend the program or risk forfeiting pay or benefits. The phrase "voluntary recreational program" in Minn. Stat. § 176.021, subd._9, plainly refers to a voluntary "program," not voluntary activities within a program. - Ali M. Shire, Respondent, vs. Rosemount, Inc., Self-Insured/Berkley Risk Administrators Company, LLC, Relators, and Twin Cities Orthopedics, P.A., Crosstown Surgery Center, and Minnesota Department of Human Services/BRS, Intervenors. A15-856, Supreme Court, February 17, 2016. - A15-856 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0856 Workers’ Compensation Court of Appeals Wright, J. Dissenting, Anderson, J. Ali M. Shire, Respondent, vs. ... - - - pdf - 339543 - Feb 17, - 2016 18:41:35 GMT - english - In re Petition for Disciplinary Action against Mitchell Alan Robinson, a Minnesota Attorney, Registration No. 0281359. ... - 2016-02-03T14:37:57+00:00 - Canon DR-M140 TWAIN - 2016-02-17T12:37:43+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Mitchell Alan Robinson is publicly reprimanded. - In re Petition for Disciplinary Action against Mitchell Alan Robinson, a Minnesota Attorney, Registration No. 0281359. A15-1357, Supreme Court Order, February 17, 2016. - A15-1357 - 2016-02-17T00:00:00-0600 - February 3, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1357 In re Petition for Disciplinary Action against Mitchell Alan Robinson, a Minnesota Attorney, Registration ... - - - pdf - 291007 - Feb 18, - 2016 17:42:45 GMT - english - Curtis G. and Stacy S. Marks, Respondents, vs. Commissioner of Revenue, Relator. A15-1145, Supreme Court, February 17, ... - 2016-02-18T10:18:32+00:00 - Microsoft® Word 2013 - 2016-02-18T11:42:23+00:00 - Microsoft® Word 2013 - When determining whether a taxpayer was a "resident" as defined in Minn. Stat. § 290.01, subd. 7(b) (2014), the Commissioner may aggregate all the days the taxpayer spent in Minnesota during the tax year, including the days spent in the state as a domiciliary. Reversed and remanded. - Curtis G. and Stacy S. Marks, Respondents, vs. Commissioner of Revenue, Relator. A15-1145, Supreme Court, February 17, 2016. - A15-1145 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-1145 Tax Court Lillehaug, J. Dissenting, Stras, J., Gildea C.J., Anderson, J. Curtis G. and Stacy S. Marks, Respondents, ... - - - pdf - 269787 - Feb 17, - 2016 18:41:35 GMT - english - Melrose Gates, LLC, Respondent, vs. Chor Moua, et al., Appellants. A14-1131, Supreme Court, February 17, 2016. - 2016-02-16T12:06:03+00:00 - Microsoft® Word 2013 - 2016-02-17T12:26:22+00:00 - Microsoft® Word 2013 - When a district court grants summary judgment dismissing an equitable claim on the ground that, as a matter of law, the requirements for equitable relief were not met, and the record shows that the facts were undisputed and the district court did not weigh equitable factors, an appellate court reviews the district court's decision de novo. Under the factors set forth in RAM Mutual Insurance Co. v. Rohde, 820 N.W.2d 1 (Minn. 2012), the landlord can proceed on a subrogation claim for damage to the tenants own apartment, but not for damage to other property belonging to the landlord. Affirmed in part, reversed in part, and remanded. - Melrose Gates, LLC, Respondent, vs. Chor Moua, et al., Appellants. A14-1131, Supreme Court, February 17, 2016. - A14-1131 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1131 Court of Appeals Dietzen, J. Concurring in part and dissenting in part, Lillehaug, J., Gildea, C.J., Anderson, ... - - - pdf - 214646 - Feb 18, - 2016 17:39:20 GMT - english - Jedidiah Dean Troxel, Appellant, vs. State of Minnesota, Respondent. A15-1294, Supreme Court, February 17, 2016. - 2016-02-16T12:16:15+00:00 - Microsoft® Word 2013 - 2016-02-18T11:38:42+00:00 - Microsoft® Word 2013 - The district court did not abuse its discretion by denying appellant's motion to introduce alternative-perpetrator evidence. The district court did not abuse its discretion by denying appellant's request for a jury instruction on the lesser-included offense of second-degree intentional murder. The presiding judge at appellant's trial was not disqualified for an appearance of partiality. - Jedidiah Dean Troxel, Appellant, vs. State of Minnesota, Respondent. A15-1294, Supreme Court, February 17, 2016. - A15-1294 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-1294 Pennington County Wright, J. Dissenting, Lillehaug, J., Gildea, C.J., Anderson, J. Jedidiah Dean Troxel, ... - - - pdf - 276354 - Feb 16, - 2016 16:05:39 GMT - english - State of Minnesota, Respondent, vs. Alie Christine Theodore Dorn, Appellant. A15-7, Court of Appeals Published, ... - 2016-02-04T10:56:47+00:00 - Microsoft® Word 2013 - 2016-02-16T10:05:17+00:00 - Microsoft® Word 2013 - A person may be convicted of first-degree assault based on the intentional infliction of great bodily harm if that person commits a volitional act in a hostile manner, even where the degree of force is as slight as a push, so long as that act is a substantial cause of the bodily harm. - State of Minnesota, Respondent, vs. Alie Christine Theodore Dorn, Appellant. A15-7, Court of Appeals Published, February 16, 2016. - A15-7 - 2016-02-16T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0007 State of Minnesota, Respondent, vs. Alie Christine Theodore Dorn, Appellant. Filed February 16, 2016 Affirmed ... - - - pdf - 208473 - Feb 16, - 2016 16:05:40 GMT - english - State of Minnesota, Respondent, vs. Michelle MacDonald Shimota, Appellant. A14-1981, Court of Appeals Published, ... - 2016-02-09T17:41:46+00:00 - Microsoft® Word 2013 - 2016-02-16T10:04:05+00:00 - Microsoft® Word 2013 - 1. Minnesota Statutes section 169.91, subdivision 1 (2012), does not require an arresting police officer to present a suspected impaired driver to a judge before the officer completes all administrative duties attendant to an impaired-driving arrest, including administering the implied-consent testing required by Minnesota Statutes section 169A.51 (2012). 2. A criminal defendant has no Sixth Amendment right to create a video recording of her trial. - State of Minnesota, Respondent, vs. Michelle MacDonald Shimota, Appellant. A14-1981, Court of Appeals Published, February 16, 2016 - A14-1981 - 2016-02-16T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A14-1981 State of Minnesota, Respondent, vs. Michelle MacDonald Shimota, Appellant. Filed February 16, 2016 Affirmed ... - - - pdf - 1130847 - Feb 16, - 2016 20:24:39 GMT - english - State of Minnesota, Respondent, vs. Vernon David Matter, Appellant. A15-449, Court of Appeals Unpublished, February 16, ... - Minnesota Judicial Branch - 2016-02-09T10:28:01+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-16T11:10:52+00:00 - Adobe PDF Library 11.0 - 2016-02-09T16:27:48+00:00 - Challenges to convictions of possessing a controlled substance and possessing a short-barreled shotgun. Reversed. - State of Minnesota, Respondent, vs. Vernon David Matter, Appellant. A15-449, Court of Appeals Unpublished, February 16, 2016. - A15-449 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 106505 - Feb 16, - 2016 20:24:38 GMT - english - Eugene Lee Rushton, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-584, Court of Appeals Unpublished, ... - 2016-02-04T08:27:44+00:00 - Microsoft® Word 2013 - 2016-02-16T11:22:56+00:00 - Microsoft® Word 2013 - Challenges denial of motion to correct life sentence under Minn. Stat. § 609.3455, subd. 4(a)(1) (2010), for first-degree criminal sexual conduct. - Eugene Lee Rushton, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-584, Court of Appeals Unpublished, February 16, 2016. - A15-584 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174559 - Feb 16, - 2016 20:24:39 GMT - english - State of Minnesota, Respondent, vs. Demetrious Limel Parker, Appellant. A15-654, Court of Appeals Unpublished, February ... - 2016-02-09T13:17:52+00:00 - Microsoft® Word 2013 - 2016-02-16T11:37:50+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Demetrious Limel Parker, Appellant. A15-654, Court of Appeals Unpublished, February 16, 2016. - A15-654 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 32814 - Feb 16, - 2016 20:24:39 GMT - english - Antonio Medina, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1067, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-02-09T09:56:12+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-16T13:35:32+00:00 - Adobe PDF Library 11.0 - 2016-02-09T15:55:59+00:00 - Challenges the district courts denial of motion to correct sentence. - Antonio Medina, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1067, Court of Appeals Unpublished, February 16, 2016. - A15-1067 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 159962 - Feb 16, - 2016 20:24:39 GMT - english - Jay Thomas Nygard, petitioner, Appellant (A15-1276), Kendall Mae Nygard, petitioner, Appellant (A15-1277), vs. Dennis S.... - 2016-02-09T13:13:24+00:00 - Microsoft® Word 2013 - 2016-02-16T13:52:41+00:00 - Microsoft® Word 2013 - Challenge district court orders dismissing their petitions seeking ex parte harassment restraining orders (HRO) against a neighbor. - Jay Thomas Nygard, petitioner, Appellant (A15-1276), Kendall Mae Nygard, petitioner, Appellant (A15-1277), vs. Dennis S. Walsh, Respondent. A15-1276, Court of Appeals Unpublished, February 16, 2016. - A15-1276 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 135069 - Feb 16, - 2016 20:24:39 GMT - english - State of Minnesota, Respondent, vs. Elliott Lamar-Seccer Pierson, Appellant. A15-1057, Court of Appeals Unpublished, ... - 2016-02-09T10:57:42+00:00 - Microsoft® Word 2013 - 2016-02-16T11:53:29+00:00 - Microsoft® Word 2013 - Challenges to conviction of aggravated robbery. - State of Minnesota, Respondent, vs. Elliott Lamar-Seccer Pierson, Appellant. A15-1057, Court of Appeals Unpublished, February 16, 2016. - A15-1057 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107946 - Feb 16, - 2016 20:24:39 GMT - english - In the Matter of the Civil Commitment of: John Albert Wood. A15-1428, Court of Appeals Unpublished, February 16, 2016. - 2016-02-09T13:50:44+00:00 - Microsoft® Word 2013 - 2016-02-16T14:00:37+00:00 - Microsoft® Word 2013 - Challenges the district courts judgment committing him as mentally ill and dangerous. - In the Matter of the Civil Commitment of: John Albert Wood. A15-1428, Court of Appeals Unpublished, February 16, 2016. - A15-1428 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 216909 - Feb 16, - 2016 20:24:38 GMT - english - State of Minnesota, Respondent, vs. Marlow Shelton McDonald, Appellant. A15-268, Court of Appeals Unpublished, February ... - 2016-02-09T11:39:16+00:00 - Microsoft® Word 2013 - 2016-02-16T11:07:22+00:00 - Microsoft® Word 2013 - Challenges to convictions of controlled-substance, firearms-related, and fleeing-a-peace-officer-in-a-motor-vehicle convictions and his aggravated durational departure sentence. - State of Minnesota, Respondent, vs. Marlow Shelton McDonald, Appellant. A15-268, Court of Appeals Unpublished, February 16, 2016. - A15-268 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 36432 - Feb 16, - 2016 20:24:39 GMT - english - In the Matter of the Welfare of the Child of: C. M. R. and T. P. D., Parents. A15-1307, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-02-08T10:56:10+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-16T13:56:43+00:00 - Adobe PDF Library 11.0 - 2016-02-08T16:42:44+00:00 - Termination of parental rights matter. - In the Matter of the Welfare of the Child of: C. M. R. and T. P. D., Parents. A15-1307, Court of Appeals Unpublished, February 16, 2016. - A15-1307 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 186436 - Mar 9, - 2016 19:35:00 GMT - english - State of Minnesota, Respondent, vs. Lisa Dorthea Moodie, Appellant. A15-537, Court of Appeals Unpublished, February 16, ... - 2016-03-08T16:34:20+00:00 - Microsoft® Word 2013 - 2016-03-09T13:22:19+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while inder the influence due to prosecutor prejudicial misconduct. Reversed and remanded. - State of Minnesota, Respondent, vs. Lisa Dorthea Moodie, Appellant. A15-537, Court of Appeals Unpublished, February 16, 2016. - A15-537 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 191615 - Feb 16, - 2016 20:24:38 GMT - english - State of Minnesota, Respondent, vs. Lorenzo Leontay Washington, Appellant. A15-31, Court of Appeals Unpublished, ... - 2016-02-09T10:02:33+00:00 - Microsoft® Word 2013 - 2016-02-16T11:03:38+00:00 - Microsoft® Word 2013 - Challenges to convictions of aiding and abetting attempted second-degree murder and aiding and abetting second-degree assault. - State of Minnesota, Respondent, vs. Lorenzo Leontay Washington, Appellant. A15-31, Court of Appeals Unpublished, February 16, 2016. - A15-31 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 67744 - Feb 16, - 2016 20:24:39 GMT - english - Denise C. Esler, Relator, vs. Community Veterinary Clinic, P.A., Respondent, Department of Employment and Economic ... - Minnesota Judicial Branch - 2016-02-08T13:09:11+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-16T11:50:01+00:00 - Adobe PDF Library 11.0 - 2016-02-08T19:08:49+00:00 - Challenges disqualification from receiving unemployment benefits. - Denise C. Esler, Relator, vs. Community Veterinary Clinic, P.A., Respondent, Department of Employment and Economic Development, Respondent. A15-798, Court of Appeals Unpublished, February 16, 2016. - A15-798 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 117049 - Feb 16, - 2016 20:24:39 GMT - english - Craig Allan Hargreaves, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1046, Court of Appeals ... - 2016-02-05T13:26:17+00:00 - Microsoft® Word 2013 - 2016-02-16T11:51:58+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Craig Allan Hargreaves, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1046, Court of Appeals Unpublished, February 16, 2016. - A15-1046 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174591 - Feb 16, - 2016 20:24:39 GMT - english - In the Matter of the Welfare of the Children of: S. D., Parent. A15-1241, Court of Appeals Unpublished, February 16, ... - 2016-02-09T13:48:38+00:00 - Microsoft® Word 2013 - 2016-02-16T13:37:41+00:00 - Microsoft® Word 2013 - Challenges the district courts adjudication of her child as in need of protection or services (CHIPS). Reversed. - In the Matter of the Welfare of the Children of: S. D., Parent. A15-1241, Court of Appeals Unpublished, February 16, 2016. - A15-1241 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 109047 - Feb 16, - 2016 20:24:39 GMT - english - Kenneth H. Zimmermann, et al., Appellants, Gary C. Berndt, et al., Appellants, vs. Sauk River Watershed District, ... - 2016-02-05T14:20:32+00:00 - Microsoft® Word 2013 - 2016-02-16T11:41:08+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. Reversed and remanded. - Kenneth H. Zimmermann, et al., Appellants, Gary C. Berndt, et al., Appellants, vs. Sauk River Watershed District, Respondent. A15-782, Court of Appeals Unpublished, February 16, 2016. - A15-782 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 117520 - Feb 10, - 2016 16:48:46 GMT - english - State of Minnesota, Appellant, vs. Jimmy Dawayne Lester, Respondent. A14-431, Supreme Court, February 10, 2016. - 2016-02-08T15:59:15+00:00 - Microsoft® Word 2013 - 2016-02-10T10:47:36+00:00 - Microsoft® Word 2013 - The warrantless search of respondent's car was lawful under the automobile exception because there was probable cause to believe that the car contained a controlled substance. - State of Minnesota, Appellant, vs. Jimmy Dawayne Lester, Respondent. A14-431, Supreme Court, February 10, 2016. - A14-431 - 2016-02-10T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0431 Court of Appeals Wright, J. Took no part, Hudson, J. State of Minnesota, Appellant, vs. Filed: February ... - - - pdf - 187518 - Feb 10, - 2016 16:48:46 GMT - english - In re Petition for Disciplinary Action against Paul Roland Rambow, a Minnesota Attorney, Registration No. 0169389. ... - 2016-02-08T12:12:39+00:00 - Microsoft® Word 2013 - 2016-02-10T10:45:19+00:00 - Microsoft® Word 2013 - Disbarment is the appropriate sanction for an attorney who misappropriated client funds; forged, or allowed his staff to forge, endorsements on clients' settlement checks and medical reimbursement checks; failed to maintain required trust account books and records; made false statements to the Director and to an ethics investigator; failed to cooperate during the disciplinary investigation; violated multiple court orders; improperly billed clients; failed to communicate adequately and act diligently on client matters; took unauthorized actions on behalf of former clients after the termination of representation; released confidential client information to third parties; engaged in a conflict of interest; and engaged in the unauthorized practice of law. - In re Petition for Disciplinary Action against Paul Roland Rambow, a Minnesota Attorney, Registration No. 0169389. A14-804, Supreme Court, February 10, 2016. - A14-804 - 2016-02-10T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0804 Original Jurisdiction Per Curiam In re Petition for Disciplinary Action against Paul Roland Rambow, a Minnesota ... - - - pdf - 178298 - Feb 10, - 2016 16:48:46 GMT - english - Brent R. Wilcox, et al., Plaintiffs/Appellants, vs. State Farm Fire and Casualty Company, Defendant/Respondent. A15-724,... - 2016-02-08T10:26:12+00:00 - Microsoft® Word 2013 - 2016-02-10T10:30:45+00:00 - Microsoft® Word 2013 - When a homeowner's insurance policy does not define the term "actual cash value," it is for the trier of fact to determine whether labor costs embedded in the cost of repairing or replacing damaged property are depreciable for the purpose of calculating the actual cash value of a covered loss. Certified question, as reformulated, answered in the affirmative. - Brent R. Wilcox, et al., Plaintiffs/Appellants, vs. State Farm Fire and Casualty Company, Defendant/Respondent. A15-724, Supreme Court, February 10, 2016. - A15-724 - 2016-02-10T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0724 Certified Question Wright, J. United States District Court, Took no part, Stras and Hudson, JJ. District ... - - - pdf - 247215 - Feb 10, - 2016 16:48:46 GMT - english - State of Minnesota, Respondent, vs. Amanda Lea Peltier, Appellant. A14-1452, Supreme Court, February 10, 2016. - 2016-02-05T10:17:19+00:00 - Microsoft® Word 2013 - 2016-02-10T10:47:52+00:00 - Microsoft® Word 2013 - The instruction given to the jury describing the elements of first-degree child abuse murder, Minn. Stat. § 609.185(a)(5) (2014), including malicious punishment of a child as a type of child abuse, constituted plain error because the instruction failed to include the elements of malicious punishment of a child under Minn. Stat. § 609.377, subd. 1 (2014). The appellant, however, failed to establish that the erroneous jury instruction affected her substantial rights. - State of Minnesota, Respondent, vs. Amanda Lea Peltier, Appellant. A14-1452, Supreme Court, February 10, 2016. - A14-1452 - 2016-02-10T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1452 Pope County Dietzen, J. Took no part, Hudson, J. State of Minnesota, Respondent, vs. Filed: February 10, ... - - - pdf - 219079 - Feb 10, - 2016 16:48:46 GMT - english - Keith Richard Rossberg, Appellant, vs. State of Minnesota, Respondent. A15-1205, Supreme Court, February 10, 2016. - 2016-02-08T14:51:44+00:00 - Microsoft® Word 2013 - 2016-02-10T10:28:44+00:00 - Microsoft® Word 2013 - The postconviction judge erred by ruling on appellant's motion to disqualify the postconviction judge for cause rather than referring the motion to the chief judge of the judicial district. The failure to refer appellant's disqualification motion to the chief judge was harmless in this case because the motion lacked merit. Because it is undisputed that appellant's postconviction petition was submitted to the court without factual support, the postconviction court did not abuse its discretion by denying both appellant's request for additional time to file an addendum to the petition and appellant's petition. - Keith Richard Rossberg, Appellant, vs. State of Minnesota, Respondent. A15-1205, Supreme Court, February 10, 2016. - A15-1205 - 2016-02-10T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-1205 Wright County Wright, J. Keith Richard Rossberg, Appellant, vs. Filed: February 10, 2016 Office of Appellate ... - - - pdf - 323456 - Mar 22, - 2016 20:56:30 GMT - english - State of Minnesota, Respondent, vs. Rafael Alfonso Banks, Appellant. A15-279, Court of Appeals Published, February 8, ... - 2016-03-16T09:51:22+00:00 - Microsoft® Word 2013 - 2016-03-22T15:55:52+00:00 - Microsoft® Word 2013 - Rule 30.02 of the Minnesota Rules of Criminal Procedure, which permits the district court to dismiss a complaint if the prosecutor has unnecessarily delayed bringing the defendant to trial, applies to claims of pre-charge delay. To warrant dismissal under rule 30.02 of the Minnesota Rules of Criminal Procedure on a claim of unnecessary pre-charge delay, a defendant must demonstrate that he has suffered prejudice by the delay. - State of Minnesota, Respondent, vs. Rafael Alfonso Banks, Appellant. A15-279, Court of Appeals Published, February 8, 2016. - A15-279 - 2016-02-08T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0279 State of Minnesota, Respondent, vs. Rafael Alfonso Banks, Appellant. Filed February 8, 2016 Affirmed Chutich, ... - - - pdf - 117758 - Feb 8, - 2016 16:07:33 GMT - english - Jennifer White, Relator, vs. University of Minnesota Physicians Corp., Respondent, Department of Employment and ... - 2016-01-29T12:44:01+00:00 - Microsoft® Word 2013 - 2016-02-08T10:07:17+00:00 - Microsoft® Word 2013 - When the evidence in the record strongly suggests that an unrepresented applicant for unemployment benefits was suffering from depression when she was terminated for alleged employment misconduct, the unemployment-law judge has a duty to assist the applicant in developing the record regarding whether the alleged misconduct was a consequence of the applicants mental illness or impairment. Reversed and remanded. - Jennifer White, Relator, vs. University of Minnesota Physicians Corp., Respondent, Department of Employment and Economic Development, Respondent. A15-892, Court of Appeals Published, February 8, 2016. - A15-892 - 2016-02-08T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0892 Jennifer White, Relator, vs. University of Minnesota Physicians Corp., Respondent, Department of Employment ... - - - pdf - 120250 - Feb 8, - 2016 21:22:57 GMT - english - In re the Marriage of: Janelle M. Schires, petitioner, Respondent, vs. Vernon D. Schires, Appellant. A15-276, Court of ... - 2016-02-01T14:20:26+00:00 - Microsoft® Word 2013 - 2016-02-08T12:08:18+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. Affirmed in part, reversed in part, and remanded. - In re the Marriage of: Janelle M. Schires, petitioner, Respondent, vs. Vernon D. Schires, Appellant. A15-276, Court of Appeals Unpublished, February 8, 2016. - A15-276 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 202543 - Feb 8, - 2016 21:22:56 GMT - english - In re the Marriage of: Nathan Francis Gregor, petitioner, Respondent, vs. Dawn Marie Buttera Gregor, Appellant. ... - 2016-02-02T12:25:13+00:00 - Microsoft® Word 2013 - 2016-02-08T11:56:08+00:00 - Microsoft® Word 2013 - Custody dispute. - In re the Marriage of: Nathan Francis Gregor, petitioner, Respondent, vs. Dawn Marie Buttera Gregor, Appellant. A14-1920, Court of Appeals Unpublished, February 8, 2016. - A14-1920 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 26784 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Jodi Lynette Lacy, Appellant. A15-348, Court of Appeals Unpublished, February 8, ... - Minnesota Judicial Branch - 2016-02-01T11:55:38+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-08T12:26:17+00:00 - Adobe PDF Library 11.0 - 2016-02-01T17:55:28+00:00 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. Jodi Lynette Lacy, Appellant. A15-348, Court of Appeals Unpublished, February 8, 2016. - A15-348 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 131613 - Feb 8, - 2016 21:23:07 GMT - english - In re the Estate of: Harold E. Farnes, a/k/a Harold Farnes and Harold Ellwood Farnes, Deceased. A15-673, Court of ... - 2016-02-01T14:04:37+00:00 - Microsoft® Word 2013 - 2016-02-08T14:14:28+00:00 - Microsoft® Word 2013 - Probate dispute. - In re the Estate of: Harold E. Farnes, a/k/a Harold Farnes and Harold Ellwood Farnes, Deceased. A15-673, Court of Appeals Unpublished, February 8, 2016. - A15-673 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 109368 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Tuquan Lee Smith, Appellant. A15-472, Court of Appeals Unpublished, February 8, ... - 2016-02-02T09:42:45+00:00 - Microsoft® Word 2013 - 2016-02-08T13:34:49+00:00 - Microsoft® Word 2013 - Challenges to conviction of first-degree aggravated robbery. - State of Minnesota, Respondent, vs. Tuquan Lee Smith, Appellant. A15-472, Court of Appeals Unpublished, February 8, 2016. - A15-472 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 169119 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Donalonte Jamar Wade, Defendant, Midwest Bonding, LLC, Appellant. A15-754, Court of ... - 2016-01-29T09:42:35+00:00 - Microsoft® Word 2013 - 2016-02-08T14:25:03+00:00 - Microsoft® Word 2013 - Appellant bonding company argues that the district court abused its discretion by denying its petition to reinstate and discharge a forfeited bail bond. - State of Minnesota, Respondent, vs. Donalonte Jamar Wade, Defendant, Midwest Bonding, LLC, Appellant. A15-754, Court of Appeals Unpublished, February 8, 2016. - A15-754 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 28395 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Ronnie Jo Johnson, Appellant. A15-803, Court of Appeals Unpublished, February 8, ... - Minnesota Judicial Branch - 2016-02-01T11:03:26+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-08T14:41:10+00:00 - Adobe PDF Library 11.0 - 2016-02-01T17:03:19+00:00 - Revocation of probation. - State of Minnesota, Respondent, vs. Ronnie Jo Johnson, Appellant. A15-803, Court of Appeals Unpublished, February 8, 2016. - A15-803 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 103739 - Feb 8, - 2016 21:23:07 GMT - english - John Howard Bartz, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-759, Court of Appeals Unpublished, ... - 2016-02-02T15:02:38+00:00 - Microsoft® Word 2013 - 2016-02-08T14:30:56+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - John Howard Bartz, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-759, Court of Appeals Unpublished, February 8, 2016. - A15-759 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 130154 - Feb 8, - 2016 21:23:07 GMT - english - In re the Marriage of: Amy Christine Olmsted, f/k/a Amy Christine Zarbok, petitioner, Appellant, vs. William Scott ... - 2016-02-02T12:46:46+00:00 - Microsoft® Word 2013 - 2016-02-08T14:55:31+00:00 - Microsoft® Word 2013 - Property dispute and dissolution of marriage matter. - In re the Marriage of: Amy Christine Olmsted, f/k/a Amy Christine Zarbok, petitioner, Appellant, vs. William Scott Zarbok, Respondent. A15-973, Court of Appeals Unpublished, February 8, 2016. - A15-973 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 175585 - Feb 8, - 2016 21:23:07 GMT - english - Lawrence Charles Nichols, Appellant, vs. Erin Lynn Cimbura, Respondent. A15-861, Court of Appeals Unpublished, February ... - 2016-02-02T13:05:50+00:00 - Microsoft® Word 2013 - 2016-02-08T14:52:13+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - Lawrence Charles Nichols, Appellant, vs. Erin Lynn Cimbura, Respondent. A15-861, Court of Appeals Unpublished, February 8, 2016. - A15-861 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 99483 - Feb 8, - 2016 21:23:08 GMT - english - State of Minnesota, Respondent, vs. Kari Lynn Swenstad, Appellant. A15-996, Court of Appeals Unpublished, February 8, ... - 2016-02-02T09:34:40+00:00 - Microsoft® Word 2013 - 2016-02-08T15:04:56+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Kari Lynn Swenstad, Appellant. A15-996, Court of Appeals Unpublished, February 8, 2016. - A15-996 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 105162 - Feb 8, - 2016 21:23:08 GMT - english - State of Minnesota, Respondent, vs. Doua Chang, Appellant. A15-1281, Court of Appeals Unpublished, February 8, 2016. - 2016-02-02T09:40:53+00:00 - Microsoft® Word 2013 - 2016-02-08T15:13:42+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Doua Chang, Appellant. A15-1281, Court of Appeals Unpublished, February 8, 2016. - A15-1281 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 115994 - Feb 8, - 2016 21:22:57 GMT - english - State of Minnesota, Respondent, vs. Kenneth Edgar Staeheli, Appellant. A15-250, Court of Appeals Unpublished, February ... - 2016-01-29T09:36:33+00:00 - Microsoft® Word 2013 - 2016-02-08T12:06:11+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree burglary. Reversed and remanded. - State of Minnesota, Respondent, vs. Kenneth Edgar Staeheli, Appellant. A15-250, Court of Appeals Unpublished, February 8, 2016. - A15-250 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 356074 - Feb 8, - 2016 21:22:57 GMT - english - State of Minnesota, Respondent, vs. Reynaldo Morales, Appellant. A15-101, Court of Appeals Unpublished, February 8, ... - 2016-02-02T12:21:13+00:00 - Microsoft® Word 2013 - 2016-02-08T12:03:07+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Reynaldo Morales, Appellant. A15-101, Court of Appeals Unpublished, February 8, 2016. - A15-101 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 96512 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Gerald Ira Evans, Appellant. A15-572, Court of Appeals Unpublished, February 8, ... - 2016-02-02T13:55:26+00:00 - Microsoft® Word 2013 - 2016-02-08T14:08:39+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Gerald Ira Evans, Appellant. A15-572, Court of Appeals Unpublished, February 8, 2016. - A15-572 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174143 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Joshua Bruce Monson, Appellant. A15-407, Court of Appeals Unpublished, February 8, ... - 2016-02-02T09:44:45+00:00 - Microsoft® Word 2013 - 2016-02-08T13:33:20+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Joshua Bruce Monson, Appellant. A15-407, Court of Appeals Unpublished, February 8, 2016. - A15-407 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 37055 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Frederick Alusine Huballa, Appellant. A15-737, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-02-02T09:59:15+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-08T14:23:08+00:00 - Adobe PDF Library 11.0 - 2016-02-02T15:59:00+00:00 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. Frederick Alusine Huballa, Appellant. A15-737, Court of Appeals Unpublished, February 8, 2016. - A15-737 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 34054 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Timothy Charles Dempze, Appellant. A15-492, Court of Appeals Unpublished, February ... - Minnesota Judicial Branch - 2016-02-02T09:14:14+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-08T13:37:25+00:00 - Adobe PDF Library 11.0 - 2016-02-02T15:13:54+00:00 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Timothy Charles Dempze, Appellant. A15-492, Court of Appeals Unpublished, February 8, 2016. - A15-492 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 201023 - Feb 8, - 2016 21:23:07 GMT - english - Heather Kirchner, Relator, vs. County of Nobles, Respondent. A15-794, Court of Appeals Unpublished, February 8, 2016. - 2016-02-02T11:50:57+00:00 - Microsoft® Word 2013 - 2016-02-08T14:35:05+00:00 - Microsoft® Word 2013 - Certiorari appeal. Remanded. - Heather Kirchner, Relator, vs. County of Nobles, Respondent. A15-794, Court of Appeals Unpublished, February 8, 2016. - A15-794 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 184562 - Feb 8, - 2016 21:23:07 GMT - english - William D. Raffield, Appellant, Janice M. Raffield, Appellant, vs. Stephen K. Hursh, et al., Respondents, Wayne L. ... - 2016-02-02T12:05:46+00:00 - Microsoft® Word 2013 - 2016-02-08T14:48:33+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - William D. Raffield, Appellant, Janice M. Raffield, Appellant, vs. Stephen K. Hursh, et al., Respondents, Wayne L. Knoll, et al., Respondents. A15-828, Court of Appeals Unpublished, February 8, 2016. - A15-828 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 176018 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Terri Ann Demarrias, Defendant, Midwest Bonding, LLC, Appellant. A14-756, Court of ... - 2016-01-29T09:50:01+00:00 - Microsoft® Word 2013 - 2016-02-08T14:27:24+00:00 - Microsoft® Word 2013 - Appellant bonding company argues that the district court abused its discretion by denying its petition to reinstate and discharge a forfeited bail bond. - State of Minnesota, Respondent, vs. Terri Ann Demarrias, Defendant, Midwest Bonding, LLC, Appellant. A14-756, Court of Appeals Unpublished, February 8, 2016. - A14-756 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 114279 - Feb 8, - 2016 21:23:08 GMT - english - State of Minnesota, Respondent, vs. Eugene Thomas Powells, Appellant. A15-1025, Court of Appeals Unpublished, February ... - 2016-01-28T09:39:27+00:00 - Microsoft® Word 2013 - 2016-02-08T15:09:01+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Eugene Thomas Powells, Appellant. A15-1025, Court of Appeals Unpublished, February 8, 2016. - A15-1025 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 103002 - Feb 8, - 2016 21:23:08 GMT - english - State of Minnesota, Respondent, vs. Patrick Alvin Gunnink, Appellant. A15-1042, Court of Appeals Unpublished, February ... - 2016-02-02T09:29:27+00:00 - Microsoft® Word 2013 - 2016-02-08T15:12:06+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Patrick Alvin Gunnink, Appellant. A15-1042, Court of Appeals Unpublished, February 8, 2016. - A15-1042 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 158820 - Feb 8, - 2016 21:23:07 GMT - english - In re the Marriage of: Sandra Winer, petitioner, Appellant, vs. Edward L. Winer, Respondent. A15-339, Court of Appeals ... - 2016-02-02T12:01:00+00:00 - Microsoft® Word 2013 - 2016-02-08T12:23:34+00:00 - Microsoft® Word 2013 - Spousal maintenance dispute. Affirmed in part, and reversed in part. - In re the Marriage of: Sandra Winer, petitioner, Appellant, vs. Edward L. Winer, Respondent. A15-339, Court of Appeals Unpublished, February 8, 2016. - A15-339 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 329653 - Feb 3, - 2016 17:38:21 GMT - english - In re Petition for Disciplinary Action against Timothy J. Oliver, a Minnesota Attorney, Registration No. 0121393. ... - 2016-01-27T11:06:10+00:00 - Canon DR-M140 TWAIN - 2016-02-03T10:39:39+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Timothy J. Oliver is temporarily suspended from the practice of law. - In re Petition for Disciplinary Action against Timothy J. Oliver, a Minnesota Attorney, Registration No. 0121393. A15-1285, Supreme Court Order, February 3, 2016. - A15-1285 - 2016-02-03T00:00:00-0600 - January 27, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1285 In re Petition for Disciplinary Action against Timothy J . Oliver, a Minnesota Attorney, Registration ... - - - pdf - 186391 - Feb 3, - 2016 17:38:21 GMT - english - Kelly Dennis, Respondent, vs. The Salvation Army and Chesterfield Services, Inc., Relators, and HealthEast Physician ... - 2016-01-28T12:22:22+00:00 - Microsoft® Word 2013 - 2016-02-03T10:55:11+00:00 - Microsoft® Word 2013 - Because relators did not timely serve a cost bond upon the Workers Compensation Court of Appeals as required by Minn. Stat. § 176.471, subd. 3 (2014), the writ of certiorari is discharged and the appeal is dismissed. - Kelly Dennis, Respondent, vs. The Salvation Army and Chesterfield Services, Inc., Relators, and HealthEast Physician Services, HealthEast St. Johns Hospital, High Pointe Surgery Center, Minnesota Department of Human Services/BRS, St. Croix Orthopaedics, and Nurse Anesthesia Services, P.A., Intervenors. A15-715, Supreme Court, February 3, 2016. - A15-715 - 2016-02-03T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0715 Workers’ Compensation Court of Appeals Lillehaug, J. Took no part, Hudson, J. Kelly Dennis, Respondent, ... - - - pdf - 274796 - Feb 3, - 2016 17:38:21 GMT - english - Joan Van Riper, Employee-Respondent/Cross-Appellant, vs. Interstate Packaging, Inc. Employer-Relator/Cross-Appeal ... - 2016-01-27T12:14:09+00:00 - Canon DR-M140 TWAIN - 2016-02-03T10:51:30+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The decision of the Workers' Compensation Court of Appeals filed and served on June 26, 2015 is affirmed without opinion. - Joan Van Riper, Employee-Respondent/Cross-Appellant, vs. Interstate Packaging, Inc. Employer-Relator/Cross-Appeal Respondent, and Cincinnati Insurance Company, Insurer-Relator/Cross-Appeal Respondent, and Mason City Clinic, Mason City Surgery Center, Mayo Clinic, Minnesota Department of Employment Economic Development, Spectrum Rehabilitation Services, Inc., Blue Cross Blue Shield of Minnesota, and, UNUM Life Insurance Company, Intervenors. A15-1156, Supreme Court Order, February 3, 2016. - A15-1156 - 2016-02-03T00:00:00-0600 - January 27, 2016 STATE OF MINNESOTA IN SUPREME COURT Joan Van Riper, vs. Employee-Respondent/ Cross-Appellant, Interstate Packaging, Inc. and Employer-Relator/ ... - - - pdf - 35050 - Feb 3, - 2016 17:38:21 GMT - english - Robert Marlyn Taylor, Appellant, vs. State of Minnesota, Respondent. A15-398, Supreme Court, February 3, 2016. - MSC - 2016-02-01T09:00:49+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-03T10:53:11+00:00 - Adobe PDF Library 11.0 - 2016-02-01T15:00:23+00:00 - The postconviction court did not abuse its discretion when it summarily denied the appellant's second petition for postconviction relief, which was not timely filed with the postconviction court. - Robert Marlyn Taylor, Appellant, vs. State of Minnesota, Respondent. A15-398, Supreme Court, February 3, 2016. - A15-398 - 2016-02-03T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0398 Hennepin County Stras, J. Robert Marlyn Taylor, Appellant, vs. Filed: February 3, 2016 Office of Appellate ... - - - pdf - 260875 - Feb 3, - 2016 17:38:21 GMT - english - Leanda Muhonen, Relator, vs. New Horizon Academy and Travelers Indemnity Company of America, Respondents, Suburban ... - 2016-01-27T14:45:53+00:00 - Canon DR-M140 TWAIN - 2016-02-03T10:42:09+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The decision of the Workers' Compensation Court of Appeals filed and served on July 1, 2015 is affirmed without opinion. - Leanda Muhonen, Relator, vs. New Horizon Academy and Travelers Indemnity Company of America, Respondents, Suburban Radiologic Consultants, UCare, Center for Diagnostic Imaging, and Medical Advanced Pain Specialists, Intervenors. A15-1239, Supreme Court Order, February 3, 2016. - A15-1239 - 2016-02-03T00:00:00-0600 - January 27, 2016 STATE OF MINNESOTA IN SUPREME COURT AlS-1239 Leanda Muhonen, Relator, vs. New Horizon Academy and Travelers Indemnity Company of America, Respondents, ... - - - pdf - 437605 - Feb 3, - 2016 17:38:21 GMT - english - In re Petition for Disciplinary Action against Kent E. Nyberg, a Minnesota Attorney, Registration No. 0080159. A15-1632,... - 2016-01-27T14:06:15+00:00 - Canon DR-M140 TWAIN - 2016-02-03T10:45:08+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Kent E. Nyberg is conditionally reinstated to the practice of law in the State of Minnesota. - In re Petition for Disciplinary Action against Kent E. Nyberg, a Minnesota Attorney, Registration No. 0080159. A15-1632, Supreme Court Order, February 3, 2016. - A15-1632 - 2016-02-03T00:00:00-0600 - January 27, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1632 In re Petition for Disciplinary Action against Kent E. Nyberg, a Minnesota Attorney, Registration ... - - - pdf - 166246 - Feb 1, - 2016 16:09:07 GMT - english - Amanda Jean Lunzer, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-456, Court of Appeals Published, ... - 2016-01-26T16:39:02+00:00 - Microsoft® Word 2013 - 2016-02-01T10:03:31+00:00 - Microsoft® Word 2013 - A stay of adjudication entered pursuant to Minn. Stat. § 152.18, subd. 1 (2006),1 is not a conviction for purposes of seeking postconviction relief. - Amanda Jean Lunzer, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-456, Court of Appeals Published, February 1, 2016 - A15-456 - 2016-02-01T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0456 Amanda Jean Lunzer, petitioner, Appellant, vs. State of Minnesota, Respondent. Filed February 1, 2016 Affirmed ... - - - pdf - 244380 - Feb 1, - 2016 16:09:07 GMT - english - Landmark Community Bank, N.A., Respondent, vs. John D. Klingelhutz, et al., Appellants. A15-980. Court of Appeals ... - 2016-01-25T09:38:44+00:00 - Microsoft® Word 2013 - 2016-02-01T10:04:28+00:00 - Microsoft® Word 2013 - Real property securing a guaranty mortgage is an asset under the Minnesota Uniform Fraudulent Transfer Act when, at the time of transfer, there was no claim of default upon the underlying principal or the guaranty mortgage and the property had value. Minn. Stat. §§ 513.41-.51 (2014 & Supp. 2015). - Landmark Community Bank, N.A., Respondent, vs. John D. Klingelhutz, et al., Appellants. A15-980. Court of Appeals Published, February 1, 2016. - A15-980 - 2016-02-01T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0980 Landmark Community Bank, N.A., Respondent, vs. John D. Klingelhutz, et al., Appellants. Filed February 1, 2016 ... - - - pdf - 232785 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Anne Marie Hinrichs, Appellant. A14-1895, Court of Appeals Unpublished, February 1, ... - 2016-01-26T13:10:10+00:00 - Microsoft® Word 2013 - 2016-02-01T10:54:31+00:00 - Microsoft® Word 2013 - Challenges to convictions of felony neglect of a child, and malicious punishment of a child. - State of Minnesota, Respondent, vs. Anne Marie Hinrichs, Appellant. A14-1895, Court of Appeals Unpublished, February 1, 2016. - A14-1895 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 111956 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Landon Darrick Robinson, Appellant. A15-280, Court of Appeals Unpublished, February ... - 2016-01-20T14:24:27+00:00 - Microsoft® Word 2013 - 2016-02-01T11:30:52+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Landon Darrick Robinson, Appellant. A15-280, Court of Appeals Unpublished, February 1, 2016. - A15-280 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 201946 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Dashaunta Dmar Gomez, Appellant. A15-128, Court of Appeals Unpublished, February 1, ... - 2016-01-27T09:27:34+00:00 - Microsoft® Word 2013 - 2016-02-01T11:04:41+00:00 - Microsoft® Word 2013 - Challenges to convictions of second-degree murder and possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Dashaunta Dmar Gomez, Appellant. A15-128, Court of Appeals Unpublished, February 1, 2016. - A15-128 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 252776 - Feb 1, - 2016 21:20:05 GMT - english - First American Title Insurance Company, Respondent, vs. National Title Resources Corp., dba Northwest Title Agency, et ... - 2016-01-22T08:53:57+00:00 - Microsoft® Word 2013 - 2016-02-01T12:00:08+00:00 - Microsoft® Word 2013 - Challenges default judgment and attorneys-fees judgment. - First American Title Insurance Company, Respondent, vs. National Title Resources Corp., dba Northwest Title Agency, et al., Co-Appellants, Wayne Holstad, Appellant. A15-664, Court of Appeals Unpublished, February 1, 2016. - A15-664 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 41148 - Feb 1, - 2016 21:20:05 GMT - english - In the Matter of all Licenses Held by Pet Motortech, Inc., d/b/a Pet Auto Repair, for the premises at 44 Acker Street ... - Minnesota Judicial Branch - 2016-01-25T09:36:54+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-01T11:47:40+00:00 - Adobe PDF Library 11.0 - 2016-01-25T15:35:36+00:00 - Challenges respondent-citys suspension of its business licenses. - In the Matter of all Licenses Held by Pet Motortech, Inc., d/b/a Pet Auto Repair, for the premises at 44 Acker Street in St. Paul, Minnesota. A15-405, Court of Appeals Unpublished, February 1, 2016. - A15-405 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 170627 - Feb 1, - 2016 21:20:06 GMT - english - In the Matter of Kayvon Behnam, D. C., License No. 3644. A15-721, Court of Appeals Unpublished, February 1, 2016. - 2016-01-26T15:27:45+00:00 - Microsoft® Word 2013 - 2016-02-01T12:07:22+00:00 - Microsoft® Word 2013 - Challenges to suspension of chiropractic license. - In the Matter of Kayvon Behnam, D. C., License No. 3644. A15-721, Court of Appeals Unpublished, February 1, 2016. - A15-721 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 187171 - Feb 1, - 2016 21:20:16 GMT - english - State of Minnesota, by its Commissioner of Transportation, petitioner, Respondent, vs. Robert Reiland, et al., ... - 2016-01-27T10:15:45+00:00 - Microsoft® Word 2013 - 2016-02-01T13:09:57+00:00 - Microsoft® Word 2013 - Challenges the district courts grant of a condemnation petition for the taking of property by respondent State of Minnesota. Reversed and remanded. - State of Minnesota, by its Commissioner of Transportation, petitioner, Respondent, vs. Robert Reiland, et al., Respondents Below, Magellan Pipeline Company, L. P., successor in interest to Magellan Pipeline Company, LLC and to Williams Pipe Line Company and to Williams Brothers Pipe Line Company, Appellant. A15-893, Court of Appeals Unpublished, February 1, 2016. - A15-893 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 114653 - Feb 1, - 2016 21:20:06 GMT - english - State of Minnesota, Respondent, vs. Warren Fred Nelson, Appellant. A15-765, Court of Appeals Unpublished, February 1, ... - 2016-01-26T13:40:59+00:00 - Microsoft® Word 2013 - 2016-02-01T13:03:34+00:00 - Microsoft® Word 2013 - Challenges to possession of controlled substance charge. - State of Minnesota, Respondent, vs. Warren Fred Nelson, Appellant. A15-765, Court of Appeals Unpublished, February 1, 2016. - A15-765 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 135821 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Luis Daniel Ruiz-Oliva, Appellant. A14-1241, Court of Appeals Unpublished, February ... - 2016-01-26T16:49:14+00:00 - Microsoft® Word 2013 - 2016-02-01T10:43:15+00:00 - Microsoft® Word 2013 - Challenges to conviction of third-degree assault. - State of Minnesota, Respondent, vs. Luis Daniel Ruiz-Oliva, Appellant. A14-1241, Court of Appeals Unpublished, February 1, 2016. - A14-1241 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 205108 - Feb 1, - 2016 21:20:16 GMT - english - Michael N. Palm, Sr., Appellant, vs. Calhoun Realty Company, Respondent. A15-895, Court of Appeals Unpublished, ... - 2016-01-26T16:06:48+00:00 - Microsoft® Word 2013 - 2016-02-01T13:11:38+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment dismissal of breach of contract claim. - Michael N. Palm, Sr., Appellant, vs. Calhoun Realty Company, Respondent. A15-895, Court of Appeals Unpublished, February 1, 2016. - A15-895 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 111248 - Feb 1, - 2016 21:20:05 GMT - english - Knawon Antony Conda, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-74, Court of Appeals Unpublished, ... - 2016-01-25T15:37:00+00:00 - Microsoft® Word 2013 - 2016-02-01T11:02:52+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Knawon Antony Conda, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-74, Court of Appeals Unpublished, February 1, 2016. - A15-74 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 208304 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. David Michael Rindahl, Jr., Appellant. A14-1736, Court of Appeals Unpublished, ... - 2016-01-26T12:45:48+00:00 - Microsoft® Word 2013 - 2016-02-01T10:49:42+00:00 - Microsoft® Word 2013 - Challenges to conviction of malicious punishment of a child resulting in great bodily harm. - State of Minnesota, Respondent, vs. David Michael Rindahl, Jr., Appellant. A14-1736, Court of Appeals Unpublished, February 1, 2016. - A14-1736 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 109920 - Feb 1, - 2016 21:20:17 GMT - english - State of Minnesota, Appellant, vs. Antonio Freeman, Respondent. A15-1451, Court of Appeals Unpublished, February 1, ... - 2016-01-26T10:43:16+00:00 - Microsoft® Word 2013 - 2016-02-01T13:45:01+00:00 - Microsoft® Word 2013 - Appellant State of Minnesota argues that the district court abused its discretion by sentencing respondent to a downward dispositional departure. - State of Minnesota, Appellant, vs. Antonio Freeman, Respondent. A15-1451, Court of Appeals Unpublished, February 1, 2016. - A15-1451 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 37173 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Faron Wayne Ruel, Appellant. A15-152, Court of Appeals Unpublished, February 1, ... - Minnesota Judicial Branch - 2016-01-25T13:14:25+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-01T11:15:41+00:00 - Adobe PDF Library 11.0 - 2016-01-25T19:14:03+00:00 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Faron Wayne Ruel, Appellant. A15-152, Court of Appeals Unpublished, February 1, 2016. - A15-152 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 151794 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. William James Holisky, II, Appellant. A15-153, Court of Appeals Unpublished, ... - 2016-01-21T14:42:44+00:00 - Microsoft® Word 2013 - 2016-02-01T11:25:38+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony domestic assault. - State of Minnesota, Respondent, vs. William James Holisky, II, Appellant. A15-153, Court of Appeals Unpublished, February 1, 2016. - A15-153 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 110927 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Luis Fernando Escobar-Chilel, Appellant. A15-321, Court of Appeals Unpublished, ... - 2016-01-21T14:17:31+00:00 - Microsoft® Word 2013 - 2016-02-01T11:34:22+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Luis Fernando Escobar-Chilel, Appellant. A15-321, Court of Appeals Unpublished, February 1, 2016. - A15-321 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 116739 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Nicholas Taylor Rod, Appellant. A15-372, Court of Appeals Unpublished, February 1, ... - 2016-01-26T09:16:41+00:00 - Microsoft® Word 2013 - 2016-02-01T11:45:08+00:00 - Microsoft® Word 2013 - Challenges to conviction of causing demonstrable bodily harm to a public safety dog. - State of Minnesota, Respondent, vs. Nicholas Taylor Rod, Appellant. A15-372, Court of Appeals Unpublished, February 1, 2016. - A15-372 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 35854 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Brandon Christopher Seals, Appellant. A15-581, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-01-25T10:47:12+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-01T11:49:55+00:00 - Adobe PDF Library 11.0 - 2016-01-25T16:46:55+00:00 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Brandon Christopher Seals, Appellant. A15-581, Court of Appeals Unpublished, February 1, 2016. - A15-581 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 172792 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Sabrina Beth OBrien, Appellant. A15-596, Court of Appeals Unpublished, February 1, ... - 2016-01-26T13:35:11+00:00 - Microsoft® Word 2013 - 2016-02-01T11:51:33+00:00 - Microsoft® Word 2013 - Challenges to convictions of gross-misdemeanor malicious punishment of a child and misdemeanor domestic assault-harm. - State of Minnesota, Respondent, vs. Sabrina Beth OBrien, Appellant. A15-596, Court of Appeals Unpublished, February 1, 2016. - A15-596 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 127847 - Feb 1, - 2016 21:20:05 GMT - english - Carleen Kaye Theno, n/k/a Carleen Kaye Starkovich, petitioner, Respondent, vs. John Marvin Theno, Appellant. A15-637, ... - 2016-01-25T15:01:54+00:00 - Microsoft® Word 2013 - 2016-02-01T11:56:01+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. - Carleen Kaye Theno, n/k/a Carleen Kaye Starkovich, petitioner, Respondent, vs. John Marvin Theno, Appellant. A15-637, Court of Appeals Unpublished, February 1, 2016. - A15-637 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 190186 - Feb 1, - 2016 21:20:05 GMT - english - In re the Marriage of: Carol Lee DCosta, petitioner, Respondent, vs. Joseph Francis DCosta, Appellant. A15-655, Court ... - 2016-01-26T09:57:50+00:00 - Microsoft® Word 2013 - 2016-02-01T11:57:23+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. - In re the Marriage of: Carol Lee DCosta, petitioner, Respondent, vs. Joseph Francis DCosta, Appellant. A15-655, Court of Appeals Unpublished, February 1, 2016. - A15-655 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 101912 - Feb 1, - 2016 21:20:06 GMT - english - State of Minnesota, Respondent, vs. Shawn Timothy Zitzloff, Appellant. A15-676, Court of Appeals Unpublished, February ... - 2016-01-21T13:35:19+00:00 - Microsoft® Word 2013 - 2016-02-01T12:03:06+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Shawn Timothy Zitzloff, Appellant. A15-676, Court of Appeals Unpublished, February 1, 2016. - A15-676 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 194007 - Feb 1, - 2016 21:20:06 GMT - english - Arrow Southampton, LLC, Respondent, vs. Jeremiah Akinnola, Appellant. A15-731, Court of Appeals Unpublished, February 1,... - 2016-01-26T13:06:01+00:00 - Microsoft® Word 2013 - 2016-02-01T13:02:01+00:00 - Microsoft® Word 2013 - Challenges to housing court judgment ordering eviction. - Arrow Southampton, LLC, Respondent, vs. Jeremiah Akinnola, Appellant. A15-731, Court of Appeals Unpublished, February 1, 2016. - A15-731 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 170890 - Feb 1, - 2016 21:20:16 GMT - english - State of Minnesota, Respondent, vs. Christopher Gary Zurek, Appellant. A15-816, Court of Appeals Unpublished, February ... - 2016-01-26T15:17:45+00:00 - Microsoft® Word 2013 - 2016-02-01T13:05:50+00:00 - Microsoft® Word 2013 - Challenges to conviction of refusal to submit to a chemical test. - State of Minnesota, Respondent, vs. Christopher Gary Zurek, Appellant. A15-816, Court of Appeals Unpublished, February 1, 2016. - A15-816 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 177970 - Feb 1, - 2016 21:20:17 GMT - english - U. S. Bank National Association as Legal Title Trustee for Truman 2012 SC Title Trust, Respondent, vs. Thomas J. ... - 2016-01-27T09:15:36+00:00 - Microsoft® Word 2013 - 2016-02-01T13:35:02+00:00 - Microsoft® Word 2013 - Challenge the district courts denial of motion to stay eviction proceedings pending resolution of a related loss-mitigation action in federal court. Reversed and remanded. - U. S. Bank National Association as Legal Title Trustee for Truman 2012 SC Title Trust, Respondent, vs. Thomas J. Litterer, Appellant, Mary Litterer, Appellant. A15-988, Court of Appeals Unpublished, February 1, 2016. - A15-988 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 183170 - Feb 1, - 2016 21:20:17 GMT - english - Loria Quade, Relator, vs. City of Minneapolis, Respondent, Department of Employment and Economic Development, ... - 2016-01-26T13:23:39+00:00 - Microsoft® Word 2013 - 2016-02-01T13:37:14+00:00 - Microsoft® Word 2013 - Relator challenges a determination by an unemployment law judge (ULJ) that she is ineligible for unemployment benefits because she quit her employment to care for her ailing mother. Reversed and remanded. - Loria Quade, Relator, vs. City of Minneapolis, Respondent, Department of Employment and Economic Development, Respondent. A15-1049, Court of Appeals Unpublished, February 1, 2016. - A15-1049 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 113906 - Feb 1, - 2016 21:20:16 GMT - english - Joseph Molesky, et al., Respondents, vs. John L. Trebesch, et al., Defendants, Sheila P. Sabas, et al., Appellants. ... - 2016-01-26T11:37:38+00:00 - Microsoft® Word 2013 - 2016-02-01T13:07:47+00:00 - Microsoft® Word 2013 - Challenges grant of default judgment. - Joseph Molesky, et al., Respondents, vs. John L. Trebesch, et al., Defendants, Sheila P. Sabas, et al., Appellants. A15-889, Court of Appeals Unpublished, February 1, 2016. - A15-889 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 175653 - Feb 1, - 2016 21:20:17 GMT - english - Kristina Jean Powers, Appellant, vs. Superintendent James Freihammer, in his official capacity, et al., Respondents. ... - 2016-01-26T10:23:11+00:00 - Microsoft® Word 2013 - 2016-02-01T13:14:37+00:00 - Microsoft® Word 2013 - Challenges dismissal of data-practices claim. - Kristina Jean Powers, Appellant, vs. Superintendent James Freihammer, in his official capacity, et al., Respondents. A15-911, Court of Appeals Unpublished, February 1, 2016. - A15-911 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107505 - Feb 1, - 2016 21:20:17 GMT - english - State of Minnesota, Respondent, vs. Jesus Ivan Torres-Lopez, a/k/a Jesus Ivan Lopez-Torres, Appellant. A15-929, Court ... - 2016-01-21T14:36:52+00:00 - Microsoft® Word 2013 - 2016-02-01T13:21:15+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Jesus Ivan Torres-Lopez, a/k/a Jesus Ivan Lopez-Torres, Appellant. A15-929, Court of Appeals Unpublished, February 1, 2016. - A15-929 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 173430 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Michael Donovan Krauss, Appellant. A15-331, Court of Appeals Unpublished, February ... - 2016-01-25T15:53:28+00:00 - Microsoft® Word 2013 - 2016-02-01T11:42:24+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Michael Donovan Krauss, Appellant. A15-331, Court of Appeals Unpublished, February 1, 2016. - A15-331 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 166492 - Feb 1, - 2016 21:20:17 GMT - english - In the Matter of the Welfare of the Children of: L. S., E. B. and H. J., Parents. A15-1293, Court of Appeals ... - 2016-01-21T14:28:38+00:00 - Microsoft® Word 2013 - 2016-02-01T13:42:27+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: L. S., E. B. and H. J., Parents. A15-1293, Court of Appeals Unpublished, February 1, 2016. - A15-1293 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 117117 - Feb 1, - 2016 21:42:25 GMT - english - State of Minnesota, Respondent, vs. Gatwech Yiek Thach, Appellant. A15-177, Court of Appeals Unpublished, February 1, ... - 2016-01-26T12:12:26+00:00 - Microsoft® Word 2013 - 2016-02-01T15:40:24+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree test refusal. Reversed. - State of Minnesota, Respondent, vs. Gatwech Yiek Thach, Appellant. A15-177, Court of Appeals Unpublished, February 1, 2016. - A15-177 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 130319 - Feb 3, - 2016 17:38:21 GMT - english - ORDERS ON PETITIONS FOR FURTHER REVIEW FILED January 27, 2016 - 2016-02-03T10:34:49+00:00 - Microsoft® Word 2013 - 2016-02-03T10:36:23+00:00 - Microsoft® Word 2013 - ORDERS ON PETITIONS FOR FURTHER REVIEW FILED January 27, 2016 - - 2016-01-27T00:00:00-0600 - ORDERS ON PETITIONS FOR FURTHER REVIEW Filed – January 27, 2016 (Petitioner indicated in Italic Type) 1. State of Minnesota vs. Benjamin Paul Adams – A14-1891 – Denied ... - - - pdf - 370362 - Jan 27, - 2016 17:35:08 GMT - english - In re Petition for Disciplinary Action against Timothy J. Oliver, a Minnesota Attorney, Registration No. 0121393. ... - 2016-01-25T14:34:46+00:00 - Canon DR-M140 TWAIN - 2016-01-27T11:21:55+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Timothy J. Oliver is temporarily suspended from the practice of law, effective as of the date of this order, pending final resolution of this matter. - In re Petition for Disciplinary Action against Timothy J. Oliver, a Minnesota Attorney, Registration No. 0121393. A15-1285, Supreme Court Order, January 27, 2016. - A15-1285 - 2016-01-27T00:00:00-0600 - January 25, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1285 In re Petition for Disciplinary Action against Timothy J. Oliver, a Minnesota Attorney, Registration ... - - - pdf - 348181 - Jan 27, - 2016 17:35:09 GMT - english - In re Petition for Disciplinary Action against John Nwabuwane Akwuba, a Minnesota Attorney, Registration No. 0280446. ... - 2016-01-25T14:39:26+00:00 - Canon DR-M140 TWAIN - 2016-01-27T11:20:11+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent John Nwabuwane Akwuba is conditionally reinstated to the practice of law in the State of Minnesota. - In re Petition for Disciplinary Action against John Nwabuwane Akwuba, a Minnesota Attorney, Registration No. 0280446. A15-1316, Supreme Court Order, January 27, 2016. - A15-1316 - 2016-01-27T00:00:00-0600 - January 25, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1316 In re Petition for Disciplinary Action against John Nwabuwane Akwuba, a Minnesota Attorney, Registration ... - - - pdf - 201241 - Feb 4, - 2016 19:28:01 GMT - english - Terry Boyd, Respondent, vs. BNSF Railway Company, Appellant. A14-277, Supreme Court, January 27, 2016. - 2016-02-04T13:15:06+00:00 - Microsoft® Word 2013 - 2016-02-04T13:25:43+00:00 - Microsoft® Word 2013 - When determining whether the Federal Employers' Liability Act (FELA), 45 U.S.C. §§ 51-60 (2012), preempts a state law in a state court proceeding, a court must apply the substantive-procedural test of FELA precedent. Because the taxation of double costs pursuant to Minn. R. Civ. P. 68.03(b)(2) is substantive and not authorized by federal law, it is preempted by FELA. Accordingly, Minn. R. Civ. P. 68.03(b)(2) does not apply in state court FELA proceedings. Reversed and remanded. - Terry Boyd, Respondent, vs. BNSF Railway Company, Appellant. A14-277, Supreme Court, January 27, 2016. - A14-277 - 2016-01-27T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0277 Court of Appeals Wright, J. Took no part, Hudson, J. Terry Boyd, Respondent, vs. Filed: January 27, 2016 ... - - - pdf - 127466 - Jan 25, - 2016 16:43:44 GMT - english - Willie Edd Reynolds, petitioner, Appellant, vs. State of Minnesota, Respondent. A14-906, Court of Appeals Published, ... - 2016-01-19T17:54:18+00:00 - Microsoft® Word 2013 - 2016-01-25T10:37:57+00:00 - Microsoft® Word 2013 - A motion to correct a sentence under rule 27.03, subdivision 9, is a proper mechanism for a convicted person to challenge the district courts decision to amend his sentence sua sponte by adding a statutorily required conditional-release term. Reversed and remanded. - Willie Edd Reynolds, petitioner, Appellant, vs. State of Minnesota, Respondent. A14-906, Court of Appeals Published, January 25, 2016. - A14-906 - 2016-01-25T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A14-0906 Willie Edd Reynolds, petitioner, Appellant, vs. State of Minnesota, Respondent. Filed January 25, 2016 Reversed ... - - - pdf - 212751 - Jan 25, - 2016 16:43:44 GMT - english - State of Minnesota, Respondent, vs. Robin Lyne Hensel, Appellant. A15-5, Court of Appeals Published, January 25, 2016. - 2016-01-14T09:59:32+00:00 - Microsoft® Word 2013 - 2016-01-25T10:11:27+00:00 - Microsoft® Word 2013 - Minn. Stat. § 609.72, subd. 1(2) (2012), is not void for vagueness or facially overbroad in violation of the First Amendment to the United States Constitution. - State of Minnesota, Respondent, vs. Robin Lyne Hensel, Appellant. A15-5, Court of Appeals Published, January 25, 2016. - A15-5 - 2016-01-25T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0005 State of Minnesota, Respondent, vs. Robin Lyne Hensel, Appellant. Filed January 25, 2016 Affirmed Larkin, Judge ... - - - pdf - 42724 - Jan 25, - 2016 16:43:44 GMT - english - Meleyco Partnership No. 2, Appellant, vs. City of West St. Paul, Respondent. A15-775, Court of Appeals Published, ... - Minnesota Judicial Branch - 2016-01-19T10:12:55+00:00 - Acrobat PDFMaker 11 for Word - 2016-01-25T10:12:13+00:00 - Adobe PDF Library 11.0 - 2016-01-19T16:12:47+00:00 - For a nonconforming use to lose its legal status, the discontinuance of the nonconforming use must be attributable, at least in part, to the property owner. Reversed. - Meleyco Partnership No. 2, Appellant, vs. City of West St. Paul, Respondent. A15-775, Court of Appeals Published, January 25, 2016. - A15-775 - 2016-01-25T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0775 Meleyco Partnership No. 2, Appellant, vs. City of West St. Paul, Respondent. Filed January 25, 2016 Reversed ... - - - pdf - 263640 - Jan 25, - 2016 16:43:44 GMT - english - State of Minnesota, Respondent (A15-0984), Appellant (A15-0998) vs. Chao Moua, Appellant (A15-0984), Respondent ... - 2016-01-14T10:03:58+00:00 - Microsoft® Word 2013 - 2016-01-25T10:14:23+00:00 - Microsoft® Word 2013 - 1. The minimum restitution provision of the identity-theft statute, Minn. Stat. § 609.527 (2012), does not violate a defendants right to procedural due process. 2. An individual experiences loss or harmŽ as a result of identity theft when the individual either suffers economic loss or the theft involves the individuals name and private identifying information. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent (A15-0984), Appellant (A15-0998) vs. Chao Moua, Appellant (A15-0984), Respondent (A15-0998). A15-984, A15-998, Court of Appeals Published, January 25, 2016. - A15-984 - 2016-01-25T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0984 A15-0998 State of Minnesota, Respondent (A15-0984), Appellant (A15-0998) vs. Chao Moua, Appellant (A15-0984), ... - - - pdf - 114114 - Jan 25, - 2016 21:42:09 GMT - english - State of Minnesota, Respondent, vs. Scott Joseph Mirkovich, Appellant. A15-249, Court of Appeals Unpublished, January ... - 2016-01-19T15:14:45+00:00 - Microsoft® Word 2013 - 2016-01-25T11:36:02+00:00 - Microsoft® Word 2013 - Challenges to conviction of second degree assault. - State of Minnesota, Respondent, vs. Scott Joseph Mirkovich, Appellant. A15-249, Court of Appeals Unpublished, January 25, 2016. - A15-249 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 293691 - Jan 25, - 2016 21:42:10 GMT - english - CSM Equities, LLC, Appellant, vs. Woodland Village Investments Limited Partnership, et al., Respondents. A15-455, Court ... - 2016-01-15T11:56:10+00:00 - Microsoft® Word 2013 - 2016-01-25T13:09:35+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - CSM Equities, LLC, Appellant, vs. Woodland Village Investments Limited Partnership, et al., Respondents. A15-455, Court of Appeals Unpublished, January 25, 2016. - A15-455 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 168831 - Jan 25, - 2016 21:42:10 GMT - english - In the Matter of the Risk Level Determination of: L. R. O. A15-652, Court of Appeals Unpublished, January 25, 2016. - 2016-01-19T16:54:04+00:00 - Microsoft® Word 2013 - 2016-01-25T13:30:24+00:00 - Microsoft® Word 2013 - Challenges administrative-law judges summary disposition without hearing. Reversed and remanded. - In the Matter of the Risk Level Determination of: L. R. O. A15-652, Court of Appeals Unpublished, January 25, 2016. - A15-652 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 120206 - Jan 25, - 2016 21:42:10 GMT - english - Mark Sharockman, Appellant, vs. LifeSpan of Minnesota, Inc., Respondent. A15-864, Court of Appeals Unpublished, January ... - 2016-01-19T14:22:52+00:00 - Microsoft® Word 2013 - 2016-01-25T14:10:57+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - Mark Sharockman, Appellant, vs. LifeSpan of Minnesota, Inc., Respondent. A15-864, Court of Appeals Unpublished, January 25, 2016. - A15-864 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 211060 - Jan 25, - 2016 21:42:10 GMT - english - In re Medtronic, Inc. Shareholder Litigation. A15-858, Court of Appeals Unpublished, January 25, 2016. - 2016-01-20T09:53:37+00:00 - Microsoft® Word 2013 - 2016-01-25T14:08:38+00:00 - Microsoft® Word 2013 - Challenges dismissal of class-action suit. Affirmed in part, reversed in part, and remanded. - In re Medtronic, Inc. Shareholder Litigation. A15-858, Court of Appeals Unpublished, January 25, 2016. - A15-858 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 162848 - Jan 25, - 2016 21:42:10 GMT - english - In re the Matter of: Jodi Kris Engen, et al., on behalf of themselves and their grandchildren, J. R. B., J. A. B., and ... - 2016-01-19T10:19:12+00:00 - Microsoft® Word 2013 - 2016-01-25T14:17:22+00:00 - Microsoft® Word 2013 - Grandparent visitation time restored. - In re the Matter of: Jodi Kris Engen, et al., on behalf of themselves and their grandchildren, J. R. B., J. A. B., and J. E. P., petitioners, Respondents, vs. Ashlee Jo Belisle, Appellant. A15-866, Court of Appeals Unpublished, January 25, 2016. - A15-866 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 171477 - Jan 25, - 2016 21:42:19 GMT - english - Yer Vue, Relator, vs. Surdyks Flights Inc. … Surdyks Flights Wine Market and Bar, Respondent, Department of ... - 2016-01-15T13:07:49+00:00 - Microsoft® Word 2013 - 2016-01-25T14:22:44+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Yer Vue, Relator, vs. Surdyks Flights Inc. … Surdyks Flights Wine Market and Bar, Respondent, Department of Employment and Economic Development, Respondent. A15-932, Court of Appeals Unpublished, January 25, 2016. - A15-932 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 226051 - Jan 25, - 2016 21:42:19 GMT - english - Robert Kagel, Respondent, vs. Christian Brackey, et al., Appellants, Kagel Acquisition Company, LLC, Defendant. A15-934,... - 2016-01-15T09:12:45+00:00 - Microsoft® Word 2013 - 2016-01-25T14:26:28+00:00 - Microsoft® Word 2013 - Challenges district court's forced buy out order. Affirmed in part, reversed in part, and remanded. - Robert Kagel, Respondent, vs. Christian Brackey, et al., Appellants, Kagel Acquisition Company, LLC, Defendant. A15-934, Court of Appeals Unpublished, January 25, 2016. - A15-934 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 142018 - Jan 25, - 2016 21:42:09 GMT - english - In re the Marriage of: Melissa Louise Constantini, petitioner, Appellant, vs. Brent John Constantini, Respondent. ... - 2016-01-15T14:39:02+00:00 - Microsoft® Word 2013 - 2016-01-25T10:55:01+00:00 - Microsoft® Word 2013 - Parenting time dispute. Affirmed in part, reversed in part, and remanded. - In re the Marriage of: Melissa Louise Constantini, petitioner, Appellant, vs. Brent John Constantini, Respondent. A15-58, Court of Appeals Unpublished, January 25, 2016. - A15-58 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 189296 - Jan 25, - 2016 21:42:19 GMT - english - Shannon Fogarty, Appellant, vs. Ciao Bella, Respondent. A15-1030, Court of Appeals Unpublished, January 25, 2016. - 2016-01-19T09:22:22+00:00 - Microsoft® Word 2013 - 2016-01-25T14:28:31+00:00 - Microsoft® Word 2013 - Challenges denial of motion for relief from the judgment under Minn. R. Civ. P. 60.02. Reversed. - Shannon Fogarty, Appellant, vs. Ciao Bella, Respondent. A15-1030, Court of Appeals Unpublished, January 25, 2016. - A15-1030 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 252310 - Jan 25, - 2016 21:42:19 GMT - english - Richard J. Hartfiel, Appellant, vs. Raymond Wilburn Allison, Respondent, T. J. Potter Trucking, Inc., Respondent, ... - 2016-01-19T15:00:54+00:00 - Microsoft® Word 2013 - 2016-01-25T14:30:31+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment dismissal. Affirmed in part, reversed in part, and remanded. - Richard J. Hartfiel, Appellant, vs. Raymond Wilburn Allison, Respondent, T. J. Potter Trucking, Inc., Respondent, Westfield Insurance Company, intervenor, Respondent. A15-1149, Court of Appeals Unpublished, January 25, 2016. - A15-1149 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 100672 - Jan 25, - 2016 21:42:09 GMT - english - State of Minnesota, Respondent, vs. Yatarrie Lee Brown, Appellant. A15-108, Court of Appeals Unpublished, January 25, ... - 2016-01-19T12:47:12+00:00 - Microsoft® Word 2013 - 2016-01-25T10:57:15+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct and sentencing. - State of Minnesota, Respondent, vs. Yatarrie Lee Brown, Appellant. A15-108, Court of Appeals Unpublished, January 25, 2016. - A15-108 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123238 - Jan 25, - 2016 21:42:09 GMT - english - State of Minnesota, Respondent, vs. Cartrell Ismail Smith, Appellant. A15-3, Court of Appeals Unpublished, January 25, ... - 2016-01-15T13:21:30+00:00 - Microsoft® Word 2013 - 2016-01-25T10:52:28+00:00 - Microsoft® Word 2013 - Challenges to conviction of aiding and abetting second degree murder. - State of Minnesota, Respondent, vs. Cartrell Ismail Smith, Appellant. A15-3, Court of Appeals Unpublished, January 25, 2016. - A15-3 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 109363 - Jan 25, - 2016 21:42:19 GMT - english - State of Minnesota, Appellant, vs. Jonathon Michael Honeycutt, Respondent. A15-1456, Court of Appeals Unpublished, ... - 2016-01-19T15:39:09+00:00 - Microsoft® Word 2013 - 2016-01-25T14:36:09+00:00 - Microsoft® Word 2013 - State challenges the district courts dispositional departure from the presumptive prison sentence for respondents conviction of first-degree criminal sexual conduct. Reversed and remanded. - State of Minnesota, Appellant, vs. Jonathon Michael Honeycutt, Respondent. A15-1456, Court of Appeals Unpublished, January 25, 2016. - A15-1456 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 108045 - Jan 25, - 2016 21:42:09 GMT - english - State of Minnesota, Respondent, vs. Stevie Birdie Daniels, Appellant. A15-121, Court of Appeals Unpublished, January 25,... - 2016-01-19T17:32:32+00:00 - Microsoft® Word 2013 - 2016-01-25T11:14:59+00:00 - Microsoft® Word 2013 - Challenges to conviction of credit card fraud. - State of Minnesota, Respondent, vs. Stevie Birdie Daniels, Appellant. A15-121, Court of Appeals Unpublished, January 25, 2016. - A15-121 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 230507 - Jan 25, - 2016 21:42:09 GMT - english - Randy Lee Torgeson, petitioner, Appellant, vs Commissioner of Public Safety, Respondent. A15-195, Court of Appeals ... - 2016-01-14T11:29:06+00:00 - Microsoft® Word 2013 - 2016-01-25T11:26:28+00:00 - Microsoft® Word 2013 - Challenges revocation of driver's license. - Randy Lee Torgeson, petitioner, Appellant, vs Commissioner of Public Safety, Respondent. A15-195, Court of Appeals Unpublished, January 25, 2016. - A15-195 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 158857 - Jan 25, - 2016 21:42:10 GMT - english - State of Minnesota, Respondent, vs. Thomas Eugene Sirois, Appellant. A15-328, Court of Appeals Unpublished, January 25, ... - 2016-01-19T15:45:42+00:00 - Microsoft® Word 2013 - 2016-01-25T12:10:45+00:00 - Microsoft® Word 2013 - Challenges to convictions of second and third degree assault. - State of Minnesota, Respondent, vs. Thomas Eugene Sirois, Appellant. A15-328, Court of Appeals Unpublished, January 25, 2016. - A15-328 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 263645 - Jan 25, - 2016 21:42:10 GMT - english - In the Matter of the Conservatorship of: Patricia Annette Wallace, Protected Person. A15-440, Court of Appeals ... - 2016-01-19T12:10:49+00:00 - Microsoft® Word 2013 - 2016-01-25T13:07:45+00:00 - Microsoft® Word 2013 - Challenges disallowed fees and expenses filed by guardian and conservator. Affirmed in part, reversed in part, and remanded. - In the Matter of the Conservatorship of: Patricia Annette Wallace, Protected Person. A15-440, Court of Appeals Unpublished, January 25, 2016. - A15-440 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 101150 - Jan 25, - 2016 21:42:10 GMT - english - State of Minnesota, Respondent, vs. Scott Andrew Syversrud, Appellant. A15-560, Court of Appeals Unpublished, January ... - 2016-01-15T12:11:40+00:00 - Microsoft® Word 2013 - 2016-01-25T13:12:07+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Scott Andrew Syversrud, Appellant. A15-560, Court of Appeals Unpublished, January 25, 2016. - A15-560 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107698 - Feb 19, - 2016 14:00:21 GMT - english - State of Minnesota, Respondent, vs. Archester Rodgers, Jr., Appellant. A15-289, A15-290, Court of Appeals Unpublished, ... - 2016-02-04T14:47:49+00:00 - Microsoft® Word 2013 - 2016-02-19T07:58:42+00:00 - Microsoft® Word 2013 - Appellant claims that the district court abused its discretion by applying an incorrect criminal history score. Reversed and remanded for resentencing. - State of Minnesota, Respondent, vs. Archester Rodgers, Jr., Appellant. A15-289, A15-290, Court of Appeals Unpublished, January 25, 2016. - A15-289 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 106762 - Jan 25, - 2016 21:42:10 GMT - english - Lucille OQuinn, Relator, vs. Noodles & Company (Corp.), Respondent, Department of Employment and Economic Development, ... - 2016-01-19T12:22:29+00:00 - Microsoft® Word 2013 - 2016-01-25T13:23:44+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Lucille OQuinn, Relator, vs. Noodles & Company (Corp.), Respondent, Department of Employment and Economic Development, Respondent. A15-609, Court of Appeals Unpublished, January 25, 2016. - A15-609 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 112155 - Jan 25, - 2016 21:42:10 GMT - english - Kim Marie Robberstad, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-385, Court of Appeals Unpublished, ... - 2016-01-15T09:42:17+00:00 - Microsoft® Word 2013 - 2016-01-25T12:12:54+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Kim Marie Robberstad, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-385, Court of Appeals Unpublished, January 25, 2016. - A15-385 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 149629 - Jan 25, - 2016 21:42:10 GMT - english - Wilson Newongeby Kpahn, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-723, Court of Appeals ... - 2016-01-15T10:15:51+00:00 - Microsoft® Word 2013 - 2016-01-25T13:34:30+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Wilson Newongeby Kpahn, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-723, Court of Appeals Unpublished, January 25, 2016. - A15-723 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 171022 - Jan 25, - 2016 21:42:10 GMT - english - Anchor Bank, N. A., Appellant, vs. Matthew L. Gulbransen, Respondent. A15-741, Court of Appeals Unpublished, January 25,... - 2016-01-19T15:45:30+00:00 - Microsoft® Word 2013 - 2016-01-25T13:41:10+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment dismissal of its claim for breach of a non-solicitation and confidentiality agreement. Reversed and remanded. - Anchor Bank, N. A., Appellant, vs. Matthew L. Gulbransen, Respondent. A15-741, Court of Appeals Unpublished, January 25, 2016. - A15-741 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 247683 - Jan 25, - 2016 21:42:10 GMT - english - Seagate Technology, LLC, Appellant, vs. Western Digital Corporation, et al., Respondents, Sining Mao, Respondent. ... - 2016-01-15T09:01:16+00:00 - Microsoft® Word 2013 - 2016-01-25T14:06:28+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of its request for an award of post-arbitration-award interest. Reversed and remanded. - Seagate Technology, LLC, Appellant, vs. Western Digital Corporation, et al., Respondents, Sining Mao, Respondent. A15-760, Court of Appeals Unpublished, January 25, 2016. - A15-760 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 33860 - Jan 25, - 2016 21:42:10 GMT - english - John W. Conzemius, et al., Respondents, vs. David J. Finnegan, et al., Appellants. A15-727, Court of Appeals ... - Minnesota Judicial Branch - 2016-01-19T09:53:13+00:00 - Acrobat PDFMaker 11 for Word - 2016-01-25T13:39:01+00:00 - Adobe PDF Library 11.0 - 2016-01-19T15:52:51+00:00 - Property dispute. - John W. Conzemius, et al., Respondents, vs. David J. Finnegan, et al., Appellants. A15-727, Court of Appeals Unpublished, January 25, 2016. - A15-727 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 101733 - Jan 25, - 2016 21:42:19 GMT - english - In re the Matter of: Heather Ray Klammer, petitioner, Respondent, vs. Luke Stephen Klammer, Appellant. A15-922, Court ... - 2016-01-19T15:09:15+00:00 - Microsoft® Word 2013 - 2016-01-25T14:20:39+00:00 - Microsoft® Word 2013 - Challenges Order for Protection. Reversed and remanded. - In re the Matter of: Heather Ray Klammer, petitioner, Respondent, vs. Luke Stephen Klammer, Appellant. A15-922, Court of Appeals Unpublished, January 25, 2016. - A15-922 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 190451 - Jan 25, - 2016 21:42:19 GMT - english - Christopher R. Coker, Respondent (A15-1439, A15-1445), Appellant (A15-1606), vs. Emily Johnson Piper, Commissioner of ... - 2016-01-15T11:19:01+00:00 - Microsoft® Word 2013 - 2016-01-25T14:32:19+00:00 - Microsoft® Word 2013 - Challenges provisional discharge from the Minnesota Sex Offender Program. - Christopher R. Coker, Respondent (A15-1439, A15-1445), Appellant (A15-1606), vs. Emily Johnson Piper, Commissioner of Human Services, Appellant (A15-1439), Respondent (A15-1606), Hennepin County, Appellant (A15-1445). A15-1439, Court of Appeals Unpublished, January 25, 2016. - A15-1445 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 161886 - Jan 23, - 2016 04:17:38 GMT - english - Yvette Ford, Respondent, vs. Minneapolis Public Schools, Appellant. A13-1072, Supreme Court, January 20, 2016. - 2016-01-15T11:08:46+00:00 - Microsoft® Word 2013 - 2016-01-20T12:32:53+00:00 - Microsoft® Word 2013 - The statute of limitations for the cause of action created by subdivision 1(1) of the Minnesota Whistleblower Act (MWA), Minn. Stat. § 181.932 (2012), which prohibits employment discrimination based on a good-faith report of a violation of law, is the 6-year limitations period in Minn. Stat. § 541.05, subd. 1(2) (2014), because the cause of action is statutory and has no counterpart at common law. - Yvette Ford, Respondent, vs. Minneapolis Public Schools, Appellant. A13-1072, Supreme Court, January 20, 2016. - A13-1072 - 2016-01-20T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A13-1072 Court of Appeals Lillehaug, J. Took no part, Hudson, J. Yvette Ford, Respondent, vs. Filed: January 20, ... - - - pdf - 414282 - Jan 23, - 2016 04:17:38 GMT - english - In re Petition for Reinstatement to the Practice of Law of Bruce A. Kunz, a Minnesota Attorney, Registration No. ... - 2016-01-12T15:43:21+00:00 - Canon DR-M140 TWAIN - 2016-01-20T12:33:04+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Petitioner Bruce A. Kunz is reinstated to the practice of law. - In re Petition for Reinstatement to the Practice of Law of Bruce A. Kunz, a Minnesota Attorney, Registration No. 0225289. A15-178, Supreme Court Order, January 20, 2016. - A15-178 - 2016-01-20T00:00:00-0600 - January 12, 2016 STATE OF MINNESOTA IN SUPREME COURT In re Petition for Reinstatement to the Practice of Law of Bruce A. Kunz, a Minnesota Attorney, Registration ... - - - pdf - 133436 - Jan 27, - 2016 17:35:09 GMT - english - ORDERS ON PETITIONS FOR FURTHER REVIEW FILED January 19, 2016. - 2016-01-27T11:09:33+00:00 - Microsoft® Word 2013 - 2016-01-27T11:10:14+00:00 - Microsoft® Word 2013 - ORDERS ON PETITIONS FOR FURTHER REVIEW FILED January 19, 2016. - - 2016-01-19T00:00:00-0600 - ORDERS ON PETITIONS FOR FURTHER REVIEW Filed – January 19, 2016 (Petitioner indicated in Italic Type) 1. In the Matter of the Welfare of: K.T. , Child. – A15-0381 – ... - - - pdf - 130144 - Jan 23, - 2016 04:15:33 GMT - english - State of Minnesota, Respondent, vs. Anthony London Foresta, Appellant. A14-2146, Court of Appeals Unpublished, January ... - 2016-01-08T12:36:00+00:00 - Microsoft® Word 2013 - 2016-01-19T10:46:18+00:00 - Microsoft® Word 2013 - State of Minnesota, Respondent, vs. Anthony London Foresta, Appellant. A14-2146, Court of Appeals Unpublished, January 19, 2016. - A14-2146 - 2016-01-19T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 203820 - Jan 23, - 2016 04:15:33 GMT - english - State of Minnesota, Respondent, vs. Richard William Reynolds, Jr., Appellant. A15-241, Court of Appeals Unpublished, ... - 2016-01-12T09:48:56+00:00 - Microsoft® Word 2013 - 2016-01-19T11:48:09+00:00 - Microsoft® Word 2013 - Challenges to conviction of failure to register a new primary address as a predatory offender. Reversed. - State of Minnesota, Respondent, vs. Richard William Reynolds, Jr., Appellant. A15-241, Court of Appeals Unpublished, January 19, 2016. - A15-241 - 2016-01-19T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 97606 - Jan 23, - 2016 04:15:33 GMT - english - State of Minnesota, Respondent, vs. Yia Her, Appellant. A15-119, Court of Appeals Unpublished, January 19, 2016. - 2016-01-07T11:33:14+00:00 - Microsoft® Word 2013 - 2016-01-19T10:51:14+00:00 - Microsoft® Word 2013 - Challenges to convictions of fleeing a police officer in a motor vehicle causing death and fleeing a police officer in a motor vehicle causing great bodily harm. - State of Minnesota, Respondent, vs. Yia Her, Appellant. A15-119, Court of Appeals Unpublished, January 19, 2016. - A15-119 - 2016-01-19T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 161732 - Jan 23, - 2016 04:15:33 GMT - english - Jaime Marquez Guevara, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-295, Court of Appeals Unpublished,... - 2016-01-11T09:57:14+00:00 - Microsoft® Word 2013 - 2016-01-19T11:52:41+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. Reversed and remanded. - Jaime Marquez Guevara, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-295, Court of Appeals Unpublished, January 19, 2016. - A15-295 - 2016-01-19T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - - 0-500|0 - 500-500|0 - 500-500|0 - - - - - Court of Appeals Unpublished, April - - - Court of Appeals Unpublished, January - - - Court of Appeals Unpublished, May 9, 2016 - - - Court of Appeals Unpublished, March - - - Court of Appeals Unpublished, February - - - Supreme Court - - - Appellant, vs. State of Minnesota, Respondent. A15 - - - Court of Appeals Unpublished, May 2, 2016 - - - Court of Appeals Published - - - Appellant, vs. Commissioner of Public Safety, Respondent - - - - - + + +
    + + + +
    +
    + +
    + +
    +
    Results 1 - 10 of 13
    +
    + +
    1. The district court abused + its discretion by allowing the admission of evidence on + direct examination of anonymous, threatening phone calls + a witness received before trial when the minimal + probative value of the threat evidence was substantially + outweighed by the risk of unfair prejudice that its + admission posed to the defendant. 1 2. Because the + defendant has not demonstrated a reasonable possibility + that the admission of evidence on direct examination of + anonymous, threatening phone calls a witness received + before trial significantly impacted the jury’s verdict, + the defendant is not entitled to a new trial. Affirmed. +
    +
    + Date: + May + 08, 2024 +
    + +
    +
    + +
    1. The district court did not + err by denying the defendant’s motion to suppress + evidence stemming from a genetic analysis of DNA + collected from crime scene materials because the + defendant had abandoned his subjective expectation of + privacy in that information by leaving his semen at the + scene of the crime. 2. The district court did not err by + denying the defendant’s motion to suppress evidence + stemming from a genetic analysis of DNA collected from + his garbage because law enforcement lawfully and + independently obtained identical information from a DNA + sample the defendant voluntarily provided. 3. The + district court abused its discretion by denying the + defendant’s motion to present alternative-perpetrator + evidence because the defendant’s proffered evidence + clearly had an inherent tendency to connect the + alternative perpetrator to the commission of the crime + and could have been admitted under the ordinary rules of + evidence, and the error was not harmless beyond a + reasonable doubt. Reversed and remanded.
    +
    + Date: + May + 08, 2024 +
    + +
    +
    + +
    1. The district court did not + err in concluding that the genetic analysis of a napkin + discarded by appellant was not a search because the + analysis was only capable of matching appellant’s DNA to + the DNA found at the crime scene and appellant had no + reasonable expectation of privacy in his identifying + information. 2. Any error in precluding appellant from + presenting alternative-perpetrator evidence at trial was + harmless beyond a reasonable doubt. 3. The district + court did not abuse its discretion when it excluded + testimony from appellant’s expert as late discovery + because the district court properly exercised its + authority to respond to violations of the Minnesota + Rules of Criminal Procedure. 4. The State did not commit + prosecutorial misconduct during its closing argument + because none of the prosecutor’s statements constituted + error. 5. The circumstantial evidence presented at trial + was sufficient to support the jury’s verdict that + appellant was guilty of first-degree premeditated + murder, and appellant advances no reasonable hypothesis + inconsistent with appellant’s guilt. 6. Appellant did + not receive ineffective assistance of counsel in + violation of his constitutional rights because appellant + has not demonstrated that trial counsel’s personal + interests materially limited the representation, and + appellant was not prejudiced by the representation. 7. + No cumulative errors denied appellant his right to a + fair trial where only one potential error was present, + and the error was harmless beyond a reasonable doubt. 8. + It was error to convict appellant of both first-degree + felony murder and the lesser-included offense of + second-degree intentional murder. Affirmed in part, + reversed in part, and remanded.
    +
    + Date: + May + 08, 2024 +
    + +
    +
    + +
    1. Because the State failed to + establish that a witness would not have been available + to testify in person at some reasonable point in time + during the trial, the district court erred in + determining that a witness against the defendant was + unavailable under the Confrontation Clause of the Sixth + Amendment to the United States Constitution and Article + I, Section 6, of the Minnesota Constitution. 2. The + defendant did not invite the district court’s error in + determining that a witness against him was unavailable + under the Confrontation Clause of the Sixth Amendment to + the United States Constitution and Article I, Section 6, + of the Minnesota Constitution. 3. The district court’s + error in determining that a witness was unavailable + under the Confrontation Clause was harmless beyond a + reasonable doubt. Reversed.
    +
    + Date: + May + 08, 2024 +
    + +
    +
    + +
    1. Search warrants authorizing + seizure and search of electronic devices were + sufficiently particular under the Fourth Amendment to + the United States Constitution and Article I, Section + 10, of the Minnesota Constitution. 2. The guilty verdict + in this case was surely unattributable to the evidence + obtained from the search of a law office and so we need + not decide whether the warrants to search that law + office were executed in an unreasonable manner because + any error in the evidence’s admission was harmless + beyond a reasonable doubt. 3. When searching the law + office of an attorney who is suspected of a crime, + specific procedures to safeguard privileged materials + are required under the supervisory powers of the + Minnesota Supreme Court. Affirmed.
    +
    + Date: + May + 08, 2024 +
    + +
    +
    + +
    1. Under the Minnesota notice + pleading standard, the allegations in the complaint + identifying U.S. Bank, N.A. as a shareholder and + describing actions taken by U.S. Bank as facts + supporting shareholder status were sufficient to survive + a motion for judgment on the pleadings. 2. Because the + court is evenly divided on whether beneficial owners of + a closely held corporation may initiate an action for a + buy-out of their interests under Minnesota Statutes + section 302A.751 (2022), we affirm the decision of the + court of appeals dismissing appellants’ buy-out claim. + Affirmed in part, reversed in part, and remanded.
    +
    + Date: + May + 08, 2024 +
    + +
    +
    + +
    The district court did not + abuse its discretion under the Uniform Mandatory + Disposition of Detainers Act, Minnesota Statutes section + 629.292 (2022), by beginning trial beyond the statutory + 6-month period after finding good cause for a + continuance because defense counsel required additional + time to prepare for trial. Affirmed.
    +
    + Date: + May + 08, 2024 +
    + +
    +
    + +
    A district court abuses its + discretion in denying a defendant’s assertion of a + mental-illness defense when the defendant has proffered + prima facie evidence of a mental illness that meets the + requirements to be excused from criminal liability under + Minn. Stat. § 611.026 (2022). Reversed and remanded. +
    +
    + Citation: 5 N.W.3d 680 +
    +
    + Date: + May + 01, 2024 +
    + +
    +
    + +
    1. The district court did not + abuse its discretion by denying the appellant’s petition + for postconviction relief because the petition was + time-barred, and the evidence proffered under the + newly-discovered-evidence exception failed to establish, + by a clear and convincing standard, that the appellant + is innocent. 2. The district court did not abuse its + discretion by denying the petition for postconviction + relief because appellant did not establish that the + interests of justice require a new trial. Affirmed. +
    +
    + Citation: 5 N.W.3d 399 +
    +
    + Date: + April + 24, 2024 +
    + +
    +
    + +
    1. The Workers’ Compensation + Court of Appeals’ affirmance of the compensation judge’s + finding that the employee has compensable post-traumatic + stress disorder is not manifestly contrary to the + evidence because the compensation judge based his + conclusion on the employee’s credibility and the + persuasiveness of an expert diagnosis of post-traumatic + stress disorder. 2. In accord with our decision in Smith + v. Carver County, 931 N.W.2d 390, 396–97 (Minn. 2019), + compensation judges may review the Diagnostic and + Statistical Manual of Mental Disorders criteria when + considering the persuasiveness of expert reports, but + judges may not use those criteria to make their own + diagnosis of a claimant’s condition. Affirmed.
    +
    + Citation: 5 N.W.3d 114 +
    +
    + Date: + April + 17, 2024 +
    + +
    +
    + +
    +
    +
    + +
    + + +
    + + +
    + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/minnag_example.compare.json b/tests/examples/opinions/united_states/minnag_example.compare.json index 85d81306c..7f5538c73 100644 --- a/tests/examples/opinions/united_states/minnag_example.compare.json +++ b/tests/examples/opinions/united_states/minnag_example.compare.json @@ -36,7 +36,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "summaries": "SCHOOL ELECTIONS: PETITIONS: Petition Rules promulgated by the Secretary of State generally apply to petition for school district referendum. School district clerks should perform the functions of \"filing officer under those rules:\" Minn Stat. \u00a7\u00a7 204B.071, 205A.05, subd. 1, 205A.13 (2006) Minn. R. ch. 8205", + "summaries": "SCHOOL ELECTIONS: PETITIONS: Petition Rules promulgated by the Secretary of State generally apply to petition for school district referendum. School district clerks should perform the functions of \"filing officer under those rules:\" Minn Stat. \u00a7\u00a7 204B.071, 205A.05, subd. 1, 205A.13 (2006); Minn. R. ch. 8205", "case_name_shorts": "" }, { @@ -111,7 +111,7 @@ }, { "case_dates": "2002-01-25", - "case_names": "Op. Atty. Gen. 59a-32 (Cr. Ref. 441h 477b-34)", + "case_names": "Op. Atty. Gen. 59a-32 (Cr. Ref. 441h; 477b-34)", "download_urls": "tests/examples/opinions/united_states/59a32-20020125.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -131,7 +131,7 @@ }, { "case_dates": "2001-04-30", - "case_names": "Op. Atty. Gen. 125a-28 (Cr. Ref. 59a-25 161b-7)", + "case_names": "Op. Atty. Gen. 125a-28 (Cr. Ref. 59a-25; 161b-7)", "download_urls": "tests/examples/opinions/united_states/125a28-20010430.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -216,7 +216,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "summaries": "SHERIFFS: MOTOR VEHICLES: County Board has authority to specify color of Sheriff\u0092s squad cars. Minn. Stat. \u00a7\u00a7 169.98 subd. 1 (a) 375.18 subd. 2 387.29 subd. 2.", + "summaries": "SHERIFFS: MOTOR VEHICLES: County Board has authority to specify color of Sheriff\u0092s squad cars. Minn. Stat. \u00a7\u00a7 169.98 subd. 1 (a); 375.18 subd. 2; 387.29 subd. 2.", "case_name_shorts": "" }, { @@ -386,7 +386,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "summaries": "CITY OFFICERS: REMOVAL: City charter may not provide for removal of council member by council. Grounds for removal of elected local official must amount to malfeasance or nonfeasance in office. Minn. Const. art. VIII, \u00a7 5 art. XII, \u00a7\u00a7 3, 4. Minn. Stat. \u00a7\u00a7 351.02, 351.14, 410.07, 410.20.", + "summaries": "CITY OFFICERS: REMOVAL: City charter may not provide for removal of council member by council. Grounds for removal of elected local official must amount to malfeasance or nonfeasance in office. Minn. Const. art. VIII, \u00a7 5; art. XII, \u00a7\u00a7 3, 4. Minn. Stat. \u00a7\u00a7 351.02, 351.14, 410.07, 410.20.", "case_name_shorts": "" }, { @@ -456,7 +456,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "summaries": "COUNTIES: OFFICERS: COMPENSATION: County may not provide car allowance subsidizing personal use of automobile in addition to maximum authorized salary authorized vacation leave is not considered severance pay. Minn. Stat. \u00a7\u00a7 43A.17, subd. 9, 465.722 471.665.", + "summaries": "COUNTIES: OFFICERS: COMPENSATION: County may not provide car allowance subsidizing personal use of automobile in addition to maximum authorized salary; authorized vacation leave is not considered severance pay. Minn. Stat. \u00a7\u00a7 43A.17, subd. 9, 465.722; 471.665.", "case_name_shorts": "" }, { @@ -526,7 +526,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "summaries": "JOINT POWERS ACT: CHARTER SCHOOLS: Charter schools formed as contemplated by Minn. Stat. \u00a7 120.064 (1992 and Supp. 1993) are not \"governmental units\" as the term is defined in the Joint Powers Act, Minn. Stat. \u00a7 471.59, subd. 1 (1992) consequently, such charter schools may not be a party to a joint powers agreement.", + "summaries": "JOINT POWERS ACT: CHARTER SCHOOLS: Charter schools formed as contemplated by Minn. Stat. \u00a7 120.064 (1992 and Supp. 1993) are not \"governmental units\" as the term is defined in the Joint Powers Act, Minn. Stat. \u00a7 471.59, subd. 1 (1992); consequently, such charter schools may not be a party to a joint powers agreement.", "case_name_shorts": "" }, { @@ -536,7 +536,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "summaries": "GOVERNOR: LEGISLATION: CONSTITUTIONAL AMENDMENTS: Amendments proposed by legislative action are not subject to gubernatorial approval or veto. Minn. Const. art. IV, \u00a7\u00a7 23, 24 art. IX, \u00a71.", + "summaries": "GOVERNOR: LEGISLATION: CONSTITUTIONAL AMENDMENTS: Amendments proposed by legislative action are not subject to gubernatorial approval or veto. Minn. Const. art. IV, \u00a7\u00a7 23, 24; art. IX, \u00a71.", "case_name_shorts": "" }, { diff --git a/tests/examples/opinions/united_states/minnag_example_2.compare.json b/tests/examples/opinions/united_states/minnag_example_2.compare.json index 1f1910514..88c2a2d13 100644 --- a/tests/examples/opinions/united_states/minnag_example_2.compare.json +++ b/tests/examples/opinions/united_states/minnag_example_2.compare.json @@ -26,7 +26,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "summaries": "LEGISLATURE: LIEUTENANT GOVERNOR: INCOMPATIBLE OFFICES: Last elected president of state senate becomes lieutenant governor as a result of vacancy in that position strong argument can be made president of senate cannot simultaneously serve as state senator and lieutenant governor in light of lieutenant governor's executive branch functions. Minn. Const. art. IV \u00a7\u00a7 5, 15, art. V \u00a7\u00a7 3, 5 (2017) Minn. Stat. \u00a7\u00a7 3.05, 4.04, subd. 2, 9.011, 15B.03 (2016).", + "summaries": "LEGISLATURE: LIEUTENANT GOVERNOR: INCOMPATIBLE OFFICES: Last elected president of state senate becomes lieutenant governor as a result of vacancy in that position; strong argument can be made president of senate cannot simultaneously serve as state senator and lieutenant governor in light of lieutenant governor's executive branch functions. Minn. Const. art. IV \u00a7\u00a7 5, 15, art. V \u00a7\u00a7 3, 5 (2017); Minn. Stat. \u00a7\u00a7 3.05, 4.04, subd. 2, 9.011, 15B.03 (2016).", "case_name_shorts": "" }, { @@ -66,7 +66,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "summaries": "SCHOOL ELECTIONS: PETITIONS: Petition Rules promulgated by the Secretary of State generally apply to petition for school district referendum. School district clerks should perform the functions of \"filing officer under those rules:\" Minn Stat. \u00a7\u00a7 204B.071, 205A.05, subd. 1, 205A.13 (2006) Minn. R. ch. 8205", + "summaries": "SCHOOL ELECTIONS: PETITIONS: Petition Rules promulgated by the Secretary of State generally apply to petition for school district referendum. School district clerks should perform the functions of \"filing officer under those rules:\" Minn Stat. \u00a7\u00a7 204B.071, 205A.05, subd. 1, 205A.13 (2006); Minn. R. ch. 8205", "case_name_shorts": "" }, { @@ -141,7 +141,7 @@ }, { "case_dates": "2002-01-25", - "case_names": "Op. Atty. Gen. 59a-32 (Cr. Ref. 441h 477b-34)", + "case_names": "Op. Atty. Gen. 59a-32 (Cr. Ref. 441h; 477b-34)", "download_urls": "tests/examples/opinions/united_states/59a32-20020125.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -161,7 +161,7 @@ }, { "case_dates": "2001-04-30", - "case_names": "Op. Atty. Gen. 125a-28 (Cr. Ref. 59a-25 161b-7)", + "case_names": "Op. Atty. Gen. 125a-28 (Cr. Ref. 59a-25; 161b-7)", "download_urls": "tests/examples/opinions/united_states/125a28-20010430.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -246,7 +246,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "summaries": "SHERIFFS: MOTOR VEHICLES: County Board has authority to specify color of Sheriff\u0092s squad cars. Minn. Stat. \u00a7\u00a7169.98 subd.1 (a) 375.18 subd.2 387.29 subd.2.", + "summaries": "SHERIFFS: MOTOR VEHICLES: County Board has authority to specify color of Sheriff\u0092s squad cars. Minn. Stat. \u00a7\u00a7169.98 subd.1 (a); 375.18 subd.2; 387.29 subd.2.", "case_name_shorts": "" }, { @@ -416,7 +416,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "summaries": "CITY OFFICERS: REMOVAL: City charter may not provide for removal of council member by council. Grounds for removal of elected local official must amount to malfeasance or nonfeasance in office. Minn. Const. art. VIII, \u00a7 5 art. XII, \u00a7\u00a7 3, 4. Minn. Stat. \u00a7\u00a7 351.02, 351.14, 410.07, 410.20.", + "summaries": "CITY OFFICERS: REMOVAL: City charter may not provide for removal of council member by council. Grounds for removal of elected local official must amount to malfeasance or nonfeasance in office. Minn. Const. art. VIII, \u00a7 5; art. XII, \u00a7\u00a7 3, 4. Minn. Stat. \u00a7\u00a7 351.02, 351.14, 410.07, 410.20.", "case_name_shorts": "" }, { @@ -486,7 +486,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "summaries": "COUNTIES: OFFICERS: COMPENSATION: County may not provide car allowance subsidizing personal use of automobile in addition to maximum authorized salary authorized vacation leave is not considered severance pay. Minn. Stat. \u00a7\u00a7 43A.17, subd. 9, 465.722 471.665.", + "summaries": "COUNTIES: OFFICERS: COMPENSATION: County may not provide car allowance subsidizing personal use of automobile in addition to maximum authorized salary; authorized vacation leave is not considered severance pay. Minn. Stat. \u00a7\u00a7 43A.17, subd. 9, 465.722; 471.665.", "case_name_shorts": "" }, { @@ -556,7 +556,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "summaries": "JOINT POWERS ACT: CHARTER SCHOOLS: Charter schools formed as contemplated by Minn. Stat. \u00a7 120.064 (1992 and Supp. 1993) are not \"governmental units\" as the term is defined in the Joint Powers Act, Minn. Stat. \u00a7 471.59, subd. 1 (1992) consequently, such charter schools may not be a party to a joint powers agreement.", + "summaries": "JOINT POWERS ACT: CHARTER SCHOOLS: Charter schools formed as contemplated by Minn. Stat. \u00a7 120.064 (1992 and Supp. 1993) are not \"governmental units\" as the term is defined in the Joint Powers Act, Minn. Stat. \u00a7 471.59, subd. 1 (1992); consequently, such charter schools may not be a party to a joint powers agreement.", "case_name_shorts": "" }, { @@ -566,7 +566,7 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "summaries": "GOVERNOR: LEGISLATION: CONSTITUTIONAL AMENDMENTS: Amendments proposed by legislative action are not subject to gubernatorial approval or veto. Minn. Const. art. IV, \u00a7\u00a7 23, 24 art. IX, \u00a71.", + "summaries": "GOVERNOR: LEGISLATION: CONSTITUTIONAL AMENDMENTS: Amendments proposed by legislative action are not subject to gubernatorial approval or veto. Minn. Const. art. IV, \u00a7\u00a7 23, 24; art. IX, \u00a71.", "case_name_shorts": "" }, { diff --git a/tests/examples/opinions/united_states/minnctapp_example.compare.json b/tests/examples/opinions/united_states/minnctapp_example.compare.json deleted file mode 100644 index e510e6ee1..000000000 --- a/tests/examples/opinions/united_states/minnctapp_example.compare.json +++ /dev/null @@ -1,4332 +0,0 @@ -[ - { - "case_dates": "2016-05-09", - "case_names": "Vaughn A. Veit v. ProSource Technologies, Inc., and third party v. Carlson Professional Services, Inc., third party", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151430-050916.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1430", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "Valley Paving, Inc. v. Stanley Consultants, Inc.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151321-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1321", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "Tony Lee Love v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151180-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1180", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "Thomas Ardell Gentry v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151314-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1314", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "Terry L. Gates v. Michael L. Macken", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151289-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1289", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "State of Minnesota v. Rae-Ann Jacklyn Pollard, Bail Bonds Doctor, Inc.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151530-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1530", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "State of Minnesota v. Paul Michael Baumchen", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150878-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-878", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "State of Minnesota v. Jolene Carmel Goblish", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150976-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-976", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "State of Minnesota v. Jayson Stanley Sam", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150674-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-674", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "State of Minnesota v. James Lamar Davis", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151035-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1035", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "State of Minnesota v. Hoshiar A. Sadiq", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151059-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1059", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "State of Minnesota v. Earl Eugene Ashmore", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150675-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-675", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "State of Minnesota v. Derrick Jacqueay Roberson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150506-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-506", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "State of Minnesota v. David Charles Adams", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150991-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-991", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "State of Minnesota v. Bobby Maurice McGary", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150734-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-734", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "Patrick Exner v. Minneapolis Public Schools, Special School District No. 1", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151262-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1262", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "Nita Posey, Relator v. Securitas Security Services USA, Inc., Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151576-050916.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1576", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "Mary Jo Delaney v. Cragun Corporation", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151333-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1333", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "Lyndsey Rae Kidd v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151213-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1213", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "Jerry Delaney, Jr. v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151776-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1776", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "Izell Wright Robinson v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150692-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-692", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "In the Matter of the Welfare of the Children of: A. N. L.-N. and A. L. P., Parents.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151906-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1906", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "In re the Marriage of: Tamara Lyn Renneke, n/k/a Tamara Lyn Fjoslien v. Dean Glenn Renneke", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151037-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1037", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "In re the Marriage of: Marianne Ronate Reis v. Thomas Michael Hallberg", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151032-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1032", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "In re the Custody of: S.K.S. Christian Schut v. Cynthia Schut", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151489-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1489", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "Gregory Lee Cobbins v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151643-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1643", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "Frederick Bradley Kellogg v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151124-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1124", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "Delmer V. Fladwood v. City of St. Paul", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151791-050916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1791", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-09", - "case_names": "David John Anderson v. Commissioner of Public Safety", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151378-050916.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1378", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "Viele Contracting, Inc. v. Performance Pipelining, Inc.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150875-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-875", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "State of Minnesota v. Walter Wayne Urban", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151236-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1236", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "State of Minnesota v. Nammoun Khampanya", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150885-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-885", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "State of Minnesota v. Joshua Scott Leithe", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150853-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-853", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "State of Minnesota v. Joshua Brandon Cochran", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150930-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-930", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "State of Minnesota v. Jose Antonio Diaz-Arreguin", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150860-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-860", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "State of Minnesota v. Jeremy Williams", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150640-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-640", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "State of Minnesota v. Hobart Alvin Huffman", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150917-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-917", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "State of Minnesota v. Gregory Thomas Wandzel", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151375-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1375", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "State of Minnesota v. Erik Demetrius White, Sr.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151040-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1040", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "Scott Peterson, Roger Smith v. City of Minneapolis, Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151711-050216.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1711", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "Renee Rodgers, Relator v. Children\u0090s Dental Services, Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151839-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1839", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "Randal V. Johnson v. Robert A. Fischer, County of Sibley", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151315-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1315", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "North Star Mutual Insurance Company v. Julie Joy Kruger, as trustee for the heirs and next of kin of Todd Michael Kruger, Michael Allen Dahl", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151420-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1420", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "NJK Holding Corporation v. The Araz Group, Inc.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151628-050216.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1628", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "Monda Thao v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151644-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1644", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "Martin Bell v. Leonard Street and Deinard Professional Association", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151311-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1311", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "Mark Jeffrey Koelndorfer v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151193-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1193", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "Lifespan of Minnesota, Inc. v. Minneapolis Public Schools, Special School District No. 1.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151717-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1717", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "Kjellberg\u0090s, Inc. v. State of Minnesota, by its Commissioner of Transportation", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151553-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1553", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "Julius Antwon Coleman v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151195-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1195", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "In the Matter of the Welfare of: N. P. S.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151403-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1403", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "In the Matter of the Welfare of: B. A. H., Child.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151670-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1670", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "In re the Civil Commitment of: Aron Michael VanWagner.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151620-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1620", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "Gordon Dodge v. Charlotte Stack", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150968-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-968", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "Freddie Lee Jenkins v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151256-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1256", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-02", - "case_names": "Autumn Ridge Landscaping, Inc., Relator v. Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151305-050216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1305", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-26", - "case_names": "Steven Duane Auers, personally, and as trustee for the next of kin of Karen Auers v. Progressive Direct Insurance Company", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151832-042516.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1832", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. William James Chestnut", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151073-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1073", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. Scott Anthony Hebert", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151121-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1121", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. Rustin Kent Hartland", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150898-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-898", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. Morgan Lee Thompson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150904-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-904", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. Luke Brandon Scott", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151815-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1815", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. Lisa Lorraine Peltier", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151324-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1324", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. Joseph Ray Burrell", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151005-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1005", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. John Charles Kotten", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151160-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1160", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. James William Kralik", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150914-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-914", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. Henry Davila", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151496-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1496", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. Deundrick Demon McIntosh", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150887-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-887", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. D. R. F.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151591-042516.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1591", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. Byron Dean Sayers", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151345-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1345", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. Brian Robert Winsor", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151056-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1056", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. Brandon Harley Johansen", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151673-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1673", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. Arnold Lee Scott", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150661-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-661", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "State of Minnesota v. Andrew John Wondrasek", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150337-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-337", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "Stand Up Multipositional Advantage MRI, P.A. v. American Family Insurance Company, a Wisconsin corporation, Michael Schultz, Ilya Knyazev, Thomas Bennerotte, Jed Benjamin Iverson, Gabriel Johnson, Michael Fay, Brad Ratgen, Landon Barakow, Lebertha Porter", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa150843-042516.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-843", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "Scott Andren v. James Woodhull", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151465-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1465", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "Roxanne J. Soderholm v. Olivia Forar", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151233-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1233", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "Rojelio Castillo v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151176-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1176", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "Roger William Kuehn v. Commissioner of Public Safety", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151278-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1278", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "Robert Anderson v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151254-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1254", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "Preeti Kaur Rajpal v. Regents of the University of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151207-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1207", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "Nicholas James Heinz v. Commissioner of Public Safety", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150964-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-964", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "Kaytee Hooser v. Keith Anderson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151738-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1738", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "Jamel Daniel Hoard v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151211-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1211", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "In the Matter of the Welfare of the Child of: A.H., Parent.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151992-042516.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1992", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "In the Matter of the Estate of: Orville C. Jacobson, In the Matter of the Estate of: Hughie Eugene Keenan", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150316-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-316", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "In the Matter of the Administrative Penalty Order of Fay\u0090s Homestyle Catering.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150967-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-967", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "In re the Matter of the Estate of: Brian K. Johnson, Decedent.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151383-042516.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1383", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "In re the Estate of: Edward D. Kane a/k/a Edward Donald Kane, Decedent.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151033-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1033", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "Clarinda Low v. Travis Russell Yorek", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151107-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1107", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-25", - "case_names": "Angela M. Schroeder, Relator v. Angel Eyes, Inc., Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151208-042516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1208", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "State of Minnesota v. Trevon Fuller", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150635-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-635", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "State of Minnesota v. Sheldon James Armstrong, III", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150924-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-924", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "State of Minnesota v. Renee Anita Vasko", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151172-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1172", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "State of Minnesota v. Patrick James Buswell", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150804-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-804", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "State of Minnesota v. Matthew Shane Michener", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151374-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1374", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "State of Minnesota v. Mark Anthony Sanders", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150963-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-963", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "State of Minnesota v. Kevin Maurice Williams", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150644-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-644", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "State of Minnesota v. Jeffrey Allen Bachman", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151122-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1122", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "State of Minnesota v. Eric James Rutherford", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150834-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-834", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "State of Minnesota v. Derrick Jacqueay Roberson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150507-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-507", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "State of Minnesota v. Dana Jerome Duncombe", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151013-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1013", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "State of Minnesota v. Casey James Pederson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa142123-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-2123", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "Ronald D. Van Riper v. Bonnie L. Roy", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150844-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-844", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "Rebecca Lee Treptow v. Brittany Ann Layland Vacko", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151084-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1084", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "Mark Lanterman v. Michael Roman Afremov", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150729-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-729", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "Jessica Mattson v. City of Rushford, Minnowa Construction, Inc., State of Minnesota Department of Transportation, Edwards and Kelcey, Inc., Minnowa Construction, Inc., Third Party v. Eric Kaiser d/b/a Kaiser Concrete, Third Party", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151018-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1018", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "In the Matter of the Welfare of the Children of: S.M.M., D.M.P. and W.A.W., Parents.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151905-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1905", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "In the Matter of the Welfare of the Children of: I. M. A. a/k/a I. N. and A. T. N., Parents. A15-1752", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151752-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1752", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "Fern Hill Place Retail Association, Inc. v. Fern Hill Place Homeowners Association, Inc.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151318-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1318", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "Excel Manufacturing, Inc. v. Todd Wondrow", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151325-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1325", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "Continental Property Group, LLC v. City of Wayzata", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151550-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1550", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-18", - "case_names": "Adrianne Robbennolt and obo minor child v. Sandi Weigum", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151440-041816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1440", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Theodore Lee Wicken v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150813-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-813", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota, ex rel., Branden Lee Pollard v. Tom Roy, Commissioner of Corrections", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151580-041116.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1580", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Tylynne Lashawn Wilson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151001-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1001", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Ryan Roy Becker", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151379-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1379", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Rico Patrick Howard", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151391-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1391", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Patrick Charles Bonga", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa140961-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-961", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Myles Ray Estes", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150660-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-660", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Michael Peter Beard", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151045-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1045", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Maxwell Robert Flynn", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150807-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-807", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Maurice Deon Jackson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150671-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-671", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Mark Anthony Givins", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150685-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-685", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Marcus Anthony Mattox", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150825-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-825", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. James Robert Stepke", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151159-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1159", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. James Dewayne Kelley", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150749-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-749", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Ger Lee", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150920-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-920", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Eric Tyler Schwappach", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150624-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-624", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Eric Jamison Brewer", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150622-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-622", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Daniel Lee Bender", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151234-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1234", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Daniel Alvin Hennen", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151376-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1376", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Charles O\u0090Neal Darby, Jr.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151038-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1038", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Carlos Maurice Harris", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150711-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-711", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Benjamin Danton Newman", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150990-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-990", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "State of Minnesota v. Antonio Dupree Wright", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150955-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-955", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Rojelio Castillo v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151196-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1196", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Nathan J. Knoernschild v. Dennis Halverson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150909-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-909", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Morris Gaye Kayee v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151938-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1938", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Mohammad Sonbol v. Green and White Taxi Cab Company, Inc.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151044-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1044", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Mikel Thorstenson v. Waterford Oil Co., Inc., Relator, Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151380-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1380", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Michael A. Pemrick, Relator v. Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151028-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1028", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Merceil Burkhalter v. Dedrick D. Mays, Building Trades Federal Credit Union", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151078-041116.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1078", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Melissa Dawn Paisley v. Clark Davis Kratzer", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151115-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1115", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Kasele Howard, Relator v. Family First Home Care, Inc., Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151487-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1487", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "James Adam Roth v. Emily Johnson Piper, Commissioner of Human Services", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151956-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1956", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Jacquet Deon Munn v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151222-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1222", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "In the Matter of the Welfare of the Children of: M. O., Parent.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151868-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1868", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "In the Matter of the Welfare of the Children of: J. L. C. and M. C., Parents.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151723-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1723", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "In the Matter of the Welfare of the Child of: C. L. O. and J. J. S., Parents.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151194-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1194", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "In the Matter of the Civil Commitment of: Steven Merrill Hogy.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151514-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1514", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "In the Matter of the Civil Commitment of: Kenneth Donald Hand.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151341-041116.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1341", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "In re the Marriage of: Mary Patricia Myhre v. Steven Kenneth Myhre", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151464-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1464", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "In re the Marriage of: James Walter Shaw v. Barbara Ann Shaw", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150771-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-771", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Donna Jean Sjolander f/k/a Donna Jean Carlson v. Steven Gary Carlson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150362-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-362", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "David Richard Carlson v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151388-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1388", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Brett Thomas Green v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151386-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1386", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Boundary Waters Bank v. William H. McGaughey, Lian Y. McGaughey", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151950-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1950", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Boardwalk Bar & Grill, LLC, Relator v. East Grand Forks City Council", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151071-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1071", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Baron Montero Jones v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151090-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1090", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-11", - "case_names": "Aaron Wayne Downing v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151171-041116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1171", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "Washington County HRA v. Kuohsiou Huang", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150879-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-879", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "Steven Abrahamson, Relators v. The St. Louis County School District, Independent School District No. 2142, Office of Administrative Hearings", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151024-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1024", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. Robert James Fallin", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150642-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-642", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. Rip Wayne Rust", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150480-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-480", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. Pov Beng", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150709-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-709", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. Peter Louis John", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150303-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-303", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. Montalvo Knowles", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150452-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-452", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. Khong Meng Kong", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150859-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-859", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. Jonathan Earl Brown", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151484-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1484", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. Jesse Andrew Faust", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150428-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-428", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. James Pierre Dortch", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150623-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-623", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. JaJuan Anthony Reed, Sr.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150557-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-557", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. Dean James Roehler", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa122135-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12-2135", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. David Mendoza", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150767-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-767", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. Daniel Barenburg", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150607-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-607", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. Brittany Ann Vacko", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150822-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-822", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. Ann Marie Hoyer", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150919-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-919", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "State of Minnesota v. Aaron Arnold Lind-Pashina", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151199-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1199", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "Shauna Marie Krupicka v. Paul John Hassinger", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151231-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1231", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "Rebecca J. Adams, John Crudele v. James Koch, Steve Hyland, Erik Ostigaard, Greg Bohnsack", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150761-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-761", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "Paek Saengkeo v. Minnesota Automobile Assigned Claims", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151267-040416.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1267", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "Jarrod Dwayne Miller v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150795-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-795", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "In re the Marriage of: Timothy Michael Kopp v. Christina Ann Burton", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151347-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1347", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "In re the Marriage of: Amy Daiker Werger v. Brett Michael Werger", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151527-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1527", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "Fred E. Friedrichs v. Lake Washington Sanitary District", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150965-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-965", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-04", - "case_names": "Deborah Meckola, as Trustee for the Heirs of Jordan Adams, Decedent v. Thomas J. Rishavy, M.D.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150693-040416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-693", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "State of Minnesota v. Tyrese Thomas", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150468-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-468", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "State of Minnesota v. Tony Luke Fisher", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150614-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-614", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "State of Minnesota v. Stevan Andre Wilkins", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151799-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1799", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "State of Minnesota v. Sonny Ray Juday", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151047-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1047", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "State of Minnesota v. Senen Guerrero", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150851-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-851", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "State of Minnesota v. Matthew Christopher Desjarlais", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150592-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-592", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "State of Minnesota v. Jermaine Sylvester Watkins", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa141772-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1772", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "State of Minnesota v. Dragos Valentine Bogza", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150471-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-471", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "State of Minnesota v. Darren Clinton", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151235-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1235", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "State of Minnesota v. Christopher Timothy Poorker", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151346-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1346", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "State of Minnesota v. Charles Louis Gollop", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151354-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1354", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "State of Minnesota v. Charles Kenneth Redding", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151221-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1221", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "State of Minnesota v. Arne Henry Mahlberg", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150745-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-745", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "Semaj Williams v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151216-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1216", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "Nereus Montemayor v. Sebright Products, Inc., d/b/a Bright Technologies, and third party v. VZ Hogs, LLP, Third Party", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151188-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1188", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "Leon Asle Baxter v. Debra Kay Baxter", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150601-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-601", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "Joyce Sammon v. Kim Halvorson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151261-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1261", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "Joel Inskeep and Chelsea Inskeep and o/b/o L.I. and E.I. v. Sheila Moore, Harry Walk", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150450-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-450", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "James L. Mandel v. Multiband Corporation", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151133-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1133", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "In the Matter of: Carrie Ann Seibert, individually and o/b/o C. A. A. and C. C. A. v. Adam Cain Anderson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150757-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-757", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "In the Matter of the Welfare of: P. J. S.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151697-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1697", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "In the Matter of the Welfare of the Children of: J. J. V. S. and A. M., Parents and In the Matter of the Welfare of the Children of: J. J. V. S. and T. J., Parents.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151785-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1785", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "In re: The Frank John Rodriguez Sr. Trust.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151353-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1353", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "In re the Marriage of: Dontrell Valerie Thornton v. Herbert Thornton, Jr.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150265-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-265", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "Ignacio Olalde-Hernandez v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151841-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1841", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "Greg Peterson, Relators v. City of Richfield, Richfield Police & Fire Civil Service Commission", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151151-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1151", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "Gerald L. Rehbein v. City of Lino Lakes", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150923-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-923", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "David Waterworth v. Elaine Ekman", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151206-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1206", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-28", - "case_names": "CLino LLC v. City of Lino Lakes", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150762-032816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-762", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "Willie James Patterson v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150956-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-956", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "State of Minnesota v. William Martin Odette", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150944-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-944", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "State of Minnesota v. Todd Allen Turchin", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150677-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-677", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "State of Minnesota v. Shuly Marambo", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150784-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-784", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "State of Minnesota v. Shawn Deangelo Jones", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150541-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-541", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "State of Minnesota v. S. A. M.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa150950-032116.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-950", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "State of Minnesota v. Ryan Leroy Smith", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150570-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-570", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "State of Minnesota v. Letrell Pierre Brewer", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150653-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-653", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "State of Minnesota v. Leona Rose deLottinville", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151481-032116.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1481", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "State of Minnesota v. Kurt Nathan Rud", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150344-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-344", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "State of Minnesota v. Joseph Scott Welch", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150854-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-854", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "State of Minnesota v. James Paul Wilkins", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151331-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1331", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "State of Minnesota v. Jack Leonard Williams", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150427-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-427", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "State of Minnesota v. Bruce Everett Boyd", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150606-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-606", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "Lawrence Leasing, Inc., d/b/a Lawrence Transportation Services v. Northwoods Pallets, LLC", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150360-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-360", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "John Aydt v. Steven A. Hensel, City of St. Michael", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151406-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1406", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "Jermaine Kershawn Perry v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151181-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1181", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "James William Graham v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151457-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1457", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "In the Matter of the Welfare of the Child of: C. K. P. and A. W., Parents.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151784-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1784", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "In the Matter of the Petition of George K. Lovrien for an Order Determining Boundary Lines.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151135-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1135", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "Greg Peterson, Souphanny Dean, Co-Appellant, Brian Rogge v. City of Richfield, Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150925-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-925", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "Bruce Township v. Kevin Schmitz, Nathan A. Baum", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151163-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1163", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-21", - "case_names": "Bereket Hagos, Seniat Gebregios v. Pond View of Woodbury Townhouse Association", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151779-032116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1779", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "Tiffany Thompson, Relator v. Jefferson Partners LP, Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151246-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1246", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "State of Minnesota v. Virginia Marie Carlson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150179-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-179", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "State of Minnesota v. Quentin Lee Davis", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150228-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-228", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "State of Minnesota v. Philip Lee Carlson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150190-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-190", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "State of Minnesota v. Mark Allan Misgen", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150656-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-656", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "State of Minnesota v. John F. Bonner, III", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150993-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-993", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "State of Minnesota v. Jesse B. Bennett", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150414-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-414", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "State of Minnesota v. Grant Leighton Johnson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150913-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-913", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "State of Minnesota v. Glenn Kevin Hazley", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151418-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1418", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "State of Minnesota v. Deontray Vershon Tate", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa141339-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1339", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "State of Minnesota v. Christian Mccary Mayo", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150511-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-511", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "State of Minnesota v. Arthur Dale Senty-Haugen", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150634-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-634", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "Laurie Lea Oliveira v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151257-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1257", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "John Christian Richmond v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150894-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-894", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "In the Matter of the Welfare of the Child of: E. G. and K. G., Sr., Parents.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa152091-031416.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-2091", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "In re the Marriage of: Julie Ann Summers v. Jonathon Roger Summers", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150735-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-735", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-14", - "case_names": "Enoch Klingbeil v. Krystal Lee Ramfjord", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151215-031416.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1215", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "State of Minnesota v. Sherman Peak", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150355-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-355", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "State of Minnesota v. Raymond Joseph Traylor", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150029-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-29", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "State of Minnesota v. Nicole Renaye Kroells", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151026-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1026", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "State of Minnesota v. Michael Marshall Johnson, a/k/a Michael Tate", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150391-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-391", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "State of Minnesota v. Max Dylan Loosen-Scholer", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151095-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1095", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "State of Minnesota v. Derrick Lee Riddle", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150522-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-522", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "State of Minnesota v. David Paul Patterson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150604-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-604", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "State of Minnesota v. Daniel Drljic", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa150714-030716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-714", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "State of Minnesota v. Cheng Pao Vue", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150852-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-852", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "State of Minnesota v. Alan Michael Habiger", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150306-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-306", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "Sarah Elizabeth LeBlanc v. Alonzo Marell Lee", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151006-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1006", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "Orin Vann, Relator v. Texas Roadhouse Holdings LLC - Texas Roadhouse, Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150994-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-994", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "Newman-Lakka Cancer Foundation v. Christine E. Briggs", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151217-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1217", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "Marcia H. Thurmer, Relator v. Attorney Edward R. Shaw, P.A., Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151105-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1105", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "Isanti Estates, LLC v. McCarthy Well Company, McCullough & Sons, Incorporated d/b/a McCullough & Sons Well Drilling, Inc.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150809-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-809", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "In the Matter of the Welfare of: C.M.M., Child.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150906-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-906", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "In the Matter of the Welfare of the Children of: A. R. H. and G. J. B., Parents.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151441-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1441", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "In the Matter of the Welfare of the Child of: C. J. S., Parent.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151539-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1539", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "In re the Estate of: Bernice R. Murray aka Bernice Murray", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151061-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1061", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "Cathie J. Pascavage v. Donald Mackay", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151204-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1204", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "Bridget Colleen Johnson v. Commissioner of Public Safety", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151054-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1054", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "Brandon Darnell Barnes v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151212-030716.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1212", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-07", - "case_names": "Anita J. Howard v. Shelly R. Svoboda, M.D.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa150896-030716.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-896", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "Willie J. Bridgeforth, III, Susan J. Swanson v. Smith Strum Investment Co. d/b/a Winnetka Village Apartments", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151091-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1091", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Zaki Mohamed Sugule", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150826-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-826", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Troy Adam Gocha", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150706-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-706", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Travis Joseph Petermeier", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150425-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-425", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Timothy Andrew Swan", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150832-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-832", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Matthew Robert Dornsbach", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150590-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-590", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Marcus Darrell Pederson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150583-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-583", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Kevin Earl Westergaard", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150582-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-582", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Justin Lee Armstrong", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150912-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-912", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Justin Glenn Joecks", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151014-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1014", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Joseph Harvey Bellanger", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150150-021916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-150", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Jose Martin Lugo, Jr.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151432-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1432", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Jeremia Joseph Loper", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150509-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-509", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Gonsalo Cosme-Garsia", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150470-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-470", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Faith Annette Jenson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150416-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-416", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Eric Christopher Bakke", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150504-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-504", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "State of Minnesota v. Emery Scott Whitt", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150465-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-465", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "Lois St. Aubin v. Casey\u0090s Retail Company d/b/a Casey\u0090s General Store", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151306-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1306", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "Karl Arthur Keene v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150796-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-796", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "In the Matter of the Welfare of the Children of: M. J. W. and M. A., Parents.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151531-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1531", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "In re the Marriage of: Emily-Jean Chinwendu Aguocha v. Ikechukwu Hisa Aguocha", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150563-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-563", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "Hennepin County, Mamie Jegbadai v. Gbenga Akinnola", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150667-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-667", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "Heidi Jo Olson v. Mark Douglas Olson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150900-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-900", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "Gail D. Robinson, Relator v. Analysts International Corporation, Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151200-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1200", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "Francis Kiyimba, Relator v. Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151098-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1098", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "Founders Insurance Company v. James Yates", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa151174-022916.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1174", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "Estate of Howard G. Boyd, Decedent.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151132-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1132", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "Craig L. Anderson, Successor Personal Representative and Sole Beneficiary of the Leslie R. Anderson and Donna Mae Anderson Revocable Living Trust, on behalf of: The Estate of Leslie R. Anderson v. Hans Carlson, Joel Krekelberg, Scott Vance", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151443-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1443", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-29", - "case_names": "Capital One Bank USA, NA v. Gbenga J. Ekinnola", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150485-022916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-485", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-22", - "case_names": "William Nichols v. Soo Line Railroad d/b/a C. P. Railway, a corporation", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151100-022216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1100", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-22", - "case_names": "State of Minnesota v. Steven Tyrone Davis", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150523-022216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-523", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-22", - "case_names": "State of Minnesota v. Paula Jean Yackel", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150311-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-311", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-22", - "case_names": "State of Minnesota v. Lamont Bugg, Jr.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151137-022216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1137", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-22", - "case_names": "State of Minnesota v. Emem Ufot Udoh", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa142181-022216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-2181", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-22", - "case_names": "State of Minnesota v. Antonio Lamonthe White", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150608-022216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-608", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-22", - "case_names": "Randall Norman v. Crow Wing Cooperative Power & Light Company", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150983-022216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-983", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-22", - "case_names": "Peter Gerard Lonergan v. Emily Johnson Piper, Commissioner of Human Services", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151625-022216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1625", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-22", - "case_names": "Lovell Nahmor Oates v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150788-022216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-788", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-22", - "case_names": "In the Matter of the Welfare of the Children of: C.L.T. and J.T., Parents.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150451-022216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-451", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-22", - "case_names": "In re the Marriage of: Crystol Kevan Caudullo v. Michael Anthony Caudullo", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150314-022216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-314", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-22", - "case_names": "Angela K. Schreader v. DC & D Enterprises, LLC, d/b/a Above Summit Construction Services", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151140-022216.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1140", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "State of Minnesota v. Vernon David Matter", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150449-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-449", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "State of Minnesota v. Michelle MacDonald Shimota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa141981-021616.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1981", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "State of Minnesota v. Marlow Shelton McDonald", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150268-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-268", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "State of Minnesota v. Lorenzo Leontay Washington", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150031-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-31", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "State of Minnesota v. Lisa Dorthea Moodie", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150537-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-537", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "State of Minnesota v. Elliott Lamar-Seccer Pierson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151057-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1057", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "State of Minnesota v. Demetrious Limel Parker", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150654-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-654", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "State of Minnesota v. Alie Christine Theodore Dorn", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa150007-021616.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-7", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "Kenneth H. Zimmermann, Gary C. Berndt v. Sauk River Watershed District", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150782-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-782", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "Jay Thomas Nygard, (A15-1276), Kendall Mae Nygard, (A15-1277) v. Dennis S. Walsh", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151276-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1276", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "In the Matter of the Welfare of the Children of: S. D., Parent.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151241-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1241", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "In the Matter of the Welfare of the Child of: C. M. R. and T. P. D., Parents.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151307-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1307", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "In the Matter of the Civil Commitment of: John Albert Wood.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151428-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1428", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "Eugene Lee Rushton v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150584-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-584", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "Denise C. Esler, Relator v. Community Veterinary Clinic, P.A., Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150798-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-798", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "Craig Allan Hargreaves v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151046-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1046", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-16", - "case_names": "Antonio Medina v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151067-021616.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1067", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "William D. Raffield, Janice M. Raffield v. Stephen K. Hursh, Wayne L. Knoll", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150828-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-828", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Tuquan Lee Smith", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150472-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-472", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Timothy Charles Dempze", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150492-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-492", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Terri Ann Demarrias, Midwest Bonding, LLC", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150756-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-756", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Ronnie Jo Johnson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150803-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-803", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Reynaldo Morales", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150101-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-101", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Rafael Alfonso Banks", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa150279-020816.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-279", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Patrick Alvin Gunnink", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151042-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1042", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Kenneth Edgar Staeheli", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150250-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-250", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Kari Lynn Swenstad", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150996-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-996", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Joshua Bruce Monson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150407-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-407", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Jodi Lynette Lacy", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150348-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-348", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Gerald Ira Evans", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150572-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-572", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Frederick Alusine Huballa", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150737-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-737", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Eugene Thomas Powells", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151025-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1025", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Doua Chang", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151281-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1281", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "State of Minnesota v. Donalonte Jamar Wade, Midwest Bonding, LLC", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150754-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-754", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "Lawrence Charles Nichols v. Erin Lynn Cimbura", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150861-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-861", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "John Howard Bartz v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150759-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-759", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "Jennifer White, Relator v. University of Minnesota Physicians Corp., Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa150892-020816.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-892", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "In re the Marriage of: Sandra Winer v. Edward L. Winer", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150339-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-339", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "In re the Marriage of: Nathan Francis Gregor v. Dawn Marie Buttera Gregor", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa141920-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1920", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "In re the Marriage of: Janelle M. Schires v. Vernon D. Schires", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150276-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-276", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "In re the Marriage of: Amy Christine Olmsted, f/k/a Amy Christine Zarbok v. William Scott Zarbok", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150973-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-973", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "In re the Estate of: Harold E. Farnes, a/k/a Harold Farnes and Harold Ellwood Farnes", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150673-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-673", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-08", - "case_names": "Heather Kirchner, Relator v. County of Nobles", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150794-020816.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-794", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "U. S. Bank National Association as Legal Title Trustee for Truman 2012 SC Title Trust v. Thomas J. Litterer, Mary Litterer", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150988-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-988", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota, by its Commissioner of Transportation v. Robert Reiland, Below, Magellan Pipeline Company, L. P., successor in interest to Magellan Pipeline Company, LLC and to Williams Pipe Line Company and to Williams Brothers Pipe Line Company", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150893-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-893", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. William James Holisky, II", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150153-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-153", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Warren Fred Nelson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150765-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-765", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Shawn Timothy Zitzloff", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150676-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-676", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Sabrina Beth O\u0090Brien", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150596-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-596", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Nicholas Taylor Rod", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150372-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-372", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Michael Donovan Krauss", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150331-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-331", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Luis Fernando Escobar-Chilel", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150321-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-321", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Luis Daniel Ruiz-Oliva", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa141241-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1241", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Landon Darrick Robinson", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150280-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-280", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Jesus Ivan Torres-Lopez, a/k/a Jesus Ivan Lopez-Torres", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150929-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-929", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Gatwech Yiek Thach", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150177-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-177", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Faron Wayne Ruel", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150152-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-152", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. David Michael Rindahl, Jr.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa141736-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1736", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Dashaunta Dmar Gomez", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150128-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-128", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Christopher Gary Zurek", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150816-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-816", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Brandon Christopher Seals", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150581-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-581", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Antonio Freeman", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151451-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1451", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "State of Minnesota v. Anne Marie Hinrichs", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa141895-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-1895", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "Michael N. Palm, Sr. v. Calhoun Realty Company", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150895-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-895", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "Loria Quade, Relator v. City of Minneapolis, Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151049-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1049", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "Landmark Community Bank, N.A. v. John D. Klingelhutz", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa150980-020116.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-980", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "Kristina Jean Powers v. Superintendent James Freihammer, in his official capacity", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150911-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-911", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "Knawon Antony Conda v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150074-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-74", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "Joseph Molesky v. John L. Trebesch, Sheila P. Sabas", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150889-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-889", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "In the Matter of the Welfare of the Children of: L. S., E. B. and H. J., Parents.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151293-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1293", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "In the Matter of all Licenses Held by Pet Motortech, Inc., d/b/a Pet Auto Repair, for the premises at 44 Acker Street in St. Paul, Minnesota.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150405-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-405", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "In the Matter of Kayvon Behnam, D. C., License No. 3644.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150721-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-721", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "In re the Marriage of: Carol Lee D\u0090Costa v. Joseph Francis D\u0090Costa", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150655-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-655", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "First American Title Insurance Company v. National Title Resources Corp., dba Northwest Title Agency, Co-Appellants, Wayne Holstad", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150664-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-664", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "Carleen Kaye Theno, n/k/a Carleen Kaye Starkovich v. John Marvin Theno", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150637-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-637", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "Arrow Southampton, LLC v. Jeremiah Akinnola", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150731-020116.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-731", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-01", - "case_names": "Amanda Jean Lunzer v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa150456-020116.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-456", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Yer Vue, Relator v. Surdyk\u0090s Flights Inc. Surdyk\u0090s Flights Wine Market and Bar, Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150932-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-932", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Wilson Newongeby Kpahn v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150723-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-723", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Willie Edd Reynolds v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa140906-012516.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-906", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "State of Minnesota, (A15-0984), (A15-0998) v. Chao Moua, (A15-0984), (A15-0998). A15-984", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa150984-012516.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-984", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "State of Minnesota v. Yatarrie Lee Brown", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150108-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-108", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "State of Minnesota v. Thomas Eugene Sirois", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150328-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-328", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "State of Minnesota v. Stevie Birdie Daniels", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150121-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-121", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "State of Minnesota v. Scott Joseph Mirkovich", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150249-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-249", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "State of Minnesota v. Scott Andrew Syversrud", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150560-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-560", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "State of Minnesota v. Robin Lyne Hensel", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa150005-012516.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-5", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "State of Minnesota v. Jonathon Michael Honeycutt", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151456-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1456", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "State of Minnesota v. Cartrell Ismail Smith", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150003-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-3", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "State of Minnesota v. Archester Rodgers, Jr., A15-289", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150289-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-289", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Shannon Fogarty v. Ciao Bella", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151030-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1030", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Seagate Technology, LLC v. Western Digital Corporation, Sining Mao", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150760-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-760", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Robert Kagel v. Christian Brackey, Kagel Acquisition Company, LLC", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150934-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-934", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Richard J. Hartfiel v. Raymond Wilburn Allison, T. J. Potter Trucking, Inc., Westfield Insurance Company, intervenor", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151149-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1149", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Randy Lee Torgeson v. Commissioner of Public Safety", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150195-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-195", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Meleyco Partnership No. 2 v. City of West St. Paul", - "download_urls": "http://mn.gov/law-library-stat/archive/ctappub/2016/opa150775-012516.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-775", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Mark Sharockman v. LifeSpan of Minnesota, Inc.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150864-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-864", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Lucille O\u0090Quinn, Relator v. Noodles & Company (Corp.), Department of Employment and Economic Development", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150609-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-609", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Kim Marie Robberstad v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150385-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-385", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "John W. Conzemius v. David J. Finnegan", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150727-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-727", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "In the Matter of the Risk Level Determination of: L. R. O.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150652-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-652", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "In the Matter of the Conservatorship of: Patricia Annette Wallace, Protected Person.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150440-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-440", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "In re the Matter of: Jodi Kris Engen, on behalf of themselves and their grandchildren, J. R. B., J. A. B., and J. E. P. v. Ashlee Jo Belisle", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150866-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-866", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "In re the Matter of: Heather Ray Klammer v. Luke Stephen Klammer", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150922-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-922", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "In re the Marriage of: Melissa Louise Constantini v. Brent John Constantini", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150058-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-58", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "In re Medtronic, Inc. Shareholder Litigation.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150858-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-858", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Christopher R. Coker, (A15-1439, A15-1445), (A15-1606) v. Emily Johnson Piper, Commissioner of Human Services, (A15-1439), (A15-1606), Hennepin County, (A15-1445).", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa151439-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-1445", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "CSM Equities, LLC v. Woodland Village Investments Limited Partnership", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150455-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-455", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-25", - "case_names": "Anchor Bank, N. A. v. Matthew L. Gulbransen", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150741-012516.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-741", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-19", - "case_names": "State of Minnesota v. Yia Her", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150119-011916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-119", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-19", - "case_names": "State of Minnesota v. Richard William Reynolds, Jr.", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150241-011916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-241", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-19", - "case_names": "State of Minnesota v. Anthony London Foresta", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa142146-011916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A14-2146", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-19", - "case_names": "Jaime Marquez Guevara v. State of Minnesota", - "download_urls": "http://mn.gov/law-library-stat/archive/ctapun/2016/opa150295-011916.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A15-295", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/minnctapp_example.html b/tests/examples/opinions/united_states/minnctapp_example.html deleted file mode 100644 index 7b99d1350..000000000 --- a/tests/examples/opinions/united_states/minnctapp_example.html +++ /dev/null @@ -1,8633 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - pdf - 31776 - May 11, - 2016 16:56:12 GMT - english - State of Minnesota, Appellant, vs. Tyler Thomas Devries Morse, Respondent. A14-1202, Supreme Court, May 11, 2016. - MSC - 2016-05-03T09:53:28+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-11T11:53:44+00:00 - Adobe PDF Library 11.0 - 2016-05-03T14:49:54+00:00 - The totality of the circumstances supported the district court's conclusion that the police officer had a reasonable, articulable suspicion to justify the stop of the appellant's vehicle. Reversed and remanded. - State of Minnesota, Appellant, vs. Tyler Thomas Devries Morse, Respondent. A14-1202, Supreme Court, May 11, 2016. - A14-1202 - 2016-05-11T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1202 Court of Appeals Lillehaug, J. Took no part, Chutich, J. State of Minnesota, Appellant, vs. Filed: May 11, ... - - - pdf - 610761 - May 11, - 2016 16:56:13 GMT - english - ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF EVIDENCE. ADM10-8047, Supreme Court Administrative Order, May ... - 2016-05-05T16:12:01+00:00 - Canon DR-M140 TWAIN - 2016-05-11T11:55:22+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The attached amendments to the Rules of Evidence are prescribed and promulgated to be effective as of July 1, 2016. - ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF EVIDENCE. ADM10-8047, Supreme Court Administrative Order, May 11, 2016. - ADM10-8047 - 2016-05-11T00:00:00-0500 - May 5, 2016 STATE OF MINNESOTA IN SUPREME COURT ADM10-8047 ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF EVIDENCE ORDER fl Om:cEOF ArPB..lAlECcurrs ... - - - pdf - 59130 - May 9, - 2016 15:07:28 GMT - english - Nita Posey, Relator, vs. Securitas Security Services USA, Inc., Respondent, Department of Employment and Economic ... - 2016-05-02T09:39:25+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T10:07:14+00:00 - Adobe PDF Library 11.0 - 2016-05-02T14:39:07+00:00 - When an employee of an employer informs the employer and the employers client that the employee is unable to complete a job assignment because of a family crisis and tells the employer that the employee will reengage with the employer upon resolution of the family crisis, the employee has not quit employment under Minn. Stat. § 268.095, subd. 2(a) (2014). Reversed. - Nita Posey, Relator, vs. Securitas Security Services USA, Inc., Respondent, Department of Employment and Economic Development, Respondent. A15-1576, Court of Appeals Published, May 9, 2016. - A15-1576 - 2016-05-09T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1576 Nita Posey, Relator, vs. Securitas Security Services USA, Inc., Respondent, Department of Employment and Economic ... - - - pdf - 31705 - May 9, - 2016 15:07:28 GMT - english - Vaughn A. Veit, Appellant, vs. ProSource Technologies, Inc., et al., defendants and third party plaintiffs, Respondents,... - 2016-05-02T15:33:48+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T10:06:22+00:00 - Adobe PDF Library 11.0 - 2016-05-02T20:33:06+00:00 - A professional-negligence action based on an allegedly negligent property appraisal accrues, and the statute of limitations begins to run, at the time the appraisal is completed. - Vaughn A. Veit, Appellant, vs. ProSource Technologies, Inc., et al., defendants and third party plaintiffs, Respondents, vs. Carlson Professional Services, Inc., et al., third party defendants, Respondents. A15-1430, Court of Appeals Published, May 9, 2016. - A15-1430 - 2016-05-09T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1430 Vaughn A. Veit, Appellant, vs. ProSource Technologies, Inc., et al., defendants and third party plaintiffs, ... - - - pdf - 174206 - May 9, - 2016 15:07:28 GMT - english - David John Anderson, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-1378, Court of Appeals ... - 2016-05-03T16:21:12+00:00 - Microsoft® Word 2013 - 2016-05-09T10:05:30+00:00 - Microsoft® Word 2013 - A district court in an implied-consent proceeding lacks jurisdiction to hear an untimely petition to rescind the revocation of a drivers license, including where a driver is mentally incompetent at the time of the revocation. However, in a subsequent criminal proceeding, a driver may challenge the states use of such a revocation to enhance charges. - David John Anderson, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-1378, Court of Appeals Published, May 9, 2016. - A15-1378 - 2016-05-09T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1378 David John Anderson, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. Filed May 9, 2016 ... - - - pdf - 62472 - May 10, - 2016 13:51:09 GMT - english - State of Minnesota, Respondent, vs. Derrick Jacqueay Roberson, Appellant. A15-506, Court of Appeals Unpublished, May 9, ... - 2016-05-02T12:58:55+00:00 - PScript5.dll Version 5.2.2 - 2016-05-10T08:49:39+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges to conviction of third-degree assault. - State of Minnesota, Respondent, vs. Derrick Jacqueay Roberson, Appellant. A15-506, Court of Appeals Unpublished, May 9, 2016. - A15-506 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 31121 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. Bobby Maurice McGary, Appellant. A15-734, Court of Appeals Unpublished, May 9, 2016. - 2016-04-29T14:00:15+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T11:41:00+00:00 - Adobe PDF Library 11.0 - 2016-04-29T19:00:07+00:00 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. Bobby Maurice McGary, Appellant. A15-734, Court of Appeals Unpublished, May 9, 2016. - A15-734 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 42390 - May 9, - 2016 19:16:49 GMT - english - Izell Wright Robinson, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-692, Court of Appeals Unpublished,... - 2016-05-02T13:14:55+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T11:38:36+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges denial of petition for postconviction relief. - Izell Wright Robinson, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-692, Court of Appeals Unpublished, May 9, 2016. - A15-692 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 35470 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. Paul Michael Baumchen, Appellant. A15-878, Court of Appeals Unpublished, May 9, ... - 2016-05-03T09:09:47+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T11:44:10+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges denial of motion to withdraw guilty plea. - State of Minnesota, Respondent, vs. Paul Michael Baumchen, Appellant. A15-878, Court of Appeals Unpublished, May 9, 2016. - A15-878 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 116104 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. David Charles Adams, Appellant. A15-991, Court of Appeals Unpublished, May 9, 2016. - 2016-05-03T14:14:59+00:00 - Microsoft® Word 2013 - 2016-05-09T11:58:08+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct and sentencing. - State of Minnesota, Respondent, vs. David Charles Adams, Appellant. A15-991, Court of Appeals Unpublished, May 9, 2016. - A15-991 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 157686 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. Hoshiar A. Sadiq, Appellant. A15-1059, Court of Appeals Unpublished, May 9, 2016. - 2016-05-03T10:08:41+00:00 - Microsoft® Word 2013 - 2016-05-09T13:07:57+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Hoshiar A. Sadiq, Appellant. A15-1059, Court of Appeals Unpublished, May 9, 2016. - A15-1059 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 26066 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. James Lamar Davis, Appellant. A15-1035, Court of Appeals Unpublished, May 9, 2016. - 2016-04-29T10:35:20+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T12:05:46+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. James Lamar Davis, Appellant. A15-1035, Court of Appeals Unpublished, May 9, 2016. - A15-1035 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 38570 - May 9, - 2016 19:16:49 GMT - english - Tony Lee Love, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1180, Court of Appeals Unpublished, May 9,... - 2016-05-02T14:21:34+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T13:17:55+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges to convictions of aiding an offender to avoid arrest and aiding an offender accomplice after the fact, appellant argues that the postconviction court erred by ordering him to pay $55,000 in joint and several restitution because he was not the direct cause of the complainants loss and that it did not properly consider his ability to pay. Reversed and remanded for a restitution hearing. - Tony Lee Love, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1180, Court of Appeals Unpublished, May 9, 2016. - A15-1180 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 192323 - May 9, - 2016 19:16:49 GMT - english - Patrick Exner, Appellant, vs. Minneapolis Public Schools, Special School District No. 1, Respondent. A15-1262, Court of ... - 2016-05-03T13:25:18+00:00 - Microsoft® Word 2013 - 2016-05-09T13:24:45+00:00 - Microsoft® Word 2013 - Challenges the Minn. R. Civ. P. 50.01 dismissal of his Minnesota Government Data Practices Act and defamation claims against his former employer, respondent school district. Affirmed in part, reversed in part, and remanded. - Patrick Exner, Appellant, vs. Minneapolis Public Schools, Special School District No. 1, Respondent. A15-1262, Court of Appeals Unpublished, May 9, 2016. - A15-1262 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 26119 - May 9, - 2016 19:16:49 GMT - english - Thomas Ardell Gentry, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1314, Court of Appeals Unpublished,... - 2016-05-03T13:18:04+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T13:35:00+00:00 - Adobe PDF Library 11.0 - 2016-05-03T18:17:43+00:00 - Challenges denial of petition for postconviction relief. - Thomas Ardell Gentry, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1314, Court of Appeals Unpublished, May 9, 2016. - A15-1314 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 203070 - May 9, - 2016 19:16:49 GMT - english - Valley Paving, Inc., Appellant, vs. Stanley Consultants, Inc., Respondent. A15-1321, Court of Appeals Unpublished, May ... - 2016-05-03T10:46:55+00:00 - Microsoft® Word 2013 - 2016-05-09T13:43:30+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - Valley Paving, Inc., Appellant, vs. Stanley Consultants, Inc., Respondent. A15-1321, Court of Appeals Unpublished, May 9, 2016. - A15-1321 - 2016-05-09T00:00:00-0500 - `This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 27500 - May 9, - 2016 19:44:24 GMT - english - State of Minnesota, Respondent, vs. Rae-Ann Jacklyn Pollard, Defendant, Bail Bonds Doctor, Inc., Appellant. A15-1530, ... - 2016-04-28T11:08:09+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T14:43:08+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges the district courts denial of its motion for reinstatement and discharge of the bonds. - State of Minnesota, Respondent, vs. Rae-Ann Jacklyn Pollard, Defendant, Bail Bonds Doctor, Inc., Appellant. A15-1530, Court of Appeals Unpublished, May 9, 2016. - A15-1530 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 106025 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. Jayson Stanley Sam, Appellant. A15-674, Court of Appeals Unpublished, May 9, 2016. - 2016-05-03T13:38:25+00:00 - Microsoft® Word 2013 - 2016-05-09T11:20:07+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Jayson Stanley Sam, Appellant. A15-674, Court of Appeals Unpublished, May 9, 2016. - A15-674 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 179847 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. Earl Eugene Ashmore, Appellant. A15-675, Court of Appeals Unpublished, May 9, 2016. - 2016-05-03T15:54:36+00:00 - Microsoft® Word 2013 - 2016-05-09T11:32:48+00:00 - Microsoft® Word 2013 - Challenges drug-related convictions. - State of Minnesota, Respondent, vs. Earl Eugene Ashmore, Appellant. A15-675, Court of Appeals Unpublished, May 9, 2016. - A15-675 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 16095 - May 9, - 2016 19:16:49 GMT - english - Frederick Bradley Kellogg, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1124, Court of Appeals ... - 2016-04-28T10:42:49+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T13:11:53+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges denial of motion to withdraw guilty plea. - Frederick Bradley Kellogg, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1124, Court of Appeals Unpublished, May 9, 2016. - A15-1124 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 35825 - May 9, - 2016 19:16:49 GMT - english - State of Minnesota, Respondent, vs. Jolene Carmel Goblish, Appellant. A15-976, Court of Appeals Unpublished, May 9, ... - 2016-04-29T10:09:21+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T11:52:55+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges to conviction of driving while imparied. - State of Minnesota, Respondent, vs. Jolene Carmel Goblish, Appellant. A15-976, Court of Appeals Unpublished, May 9, 2016. - A15-976 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 253515 - May 9, - 2016 19:16:49 GMT - english - Mary Jo Delaney, Appellant, vs. Cragun Corporation, Respondent. A15-1333, Court of Appeals Unpublished, May 9, 2016. - 2016-05-03T16:48:41+00:00 - Microsoft® Word 2013 - 2016-05-09T13:46:11+00:00 - Microsoft® Word 2013 - Challeneges that employer discharged her because she reported sexual harassment, violating the Minnesota Human Rights Act. Reversed and remanded. - Mary Jo Delaney, Appellant, vs. Cragun Corporation, Respondent. A15-1333, Court of Appeals Unpublished, May 9, 2016. - A15-1333 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 94764 - May 9, - 2016 19:16:49 GMT - english - Jerry Delaney, Jr., petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1776, Court of Appeals Unpublished, ... - 2016-05-02T12:48:40+00:00 - Microsoft® Word 2013 - 2016-05-09T14:05:29+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Jerry Delaney, Jr., petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1776, Court of Appeals Unpublished, May 9, 2016. - A15-1776 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107175 - May 9, - 2016 19:16:50 GMT - english - In the Matter of the Welfare of the Children of: A. N. L.-N. and A. L. P., Parents. A15-1906, Court of Appeals ... - 2016-05-02T14:04:00+00:00 - Microsoft® Word 2013 - 2016-05-09T14:13:10+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: A. N. L.-N. and A. L. P., Parents. A15-1906, Court of Appeals Unpublished, May 9, 2016. - A15-1906 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 209186 - May 9, - 2016 19:16:49 GMT - english - In re the Marriage of: Marianne Ronate Reis, petitioner, Appellant, vs. Thomas Michael Hallberg, Respondent. A15-1032, ... - 2016-05-03T08:56:32+00:00 - Microsoft® Word 2013 - 2016-05-09T12:01:35+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. Reversed and remanded. - In re the Marriage of: Marianne Ronate Reis, petitioner, Appellant, vs. Thomas Michael Hallberg, Respondent. A15-1032, Court of Appeals Unpublished, May 9, 2016. - A15-1032 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 44266 - May 9, - 2016 19:16:49 GMT - english - Lyndsey Rae Kidd, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1213, Court of Appeals Unpublished, ... - 2016-05-03T13:18:21+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T13:20:27+00:00 - Adobe PDF Library 11.0 - 2016-05-03T18:18:10+00:00 - Challenges denial of petition for postconviction relief. - Lyndsey Rae Kidd, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1213, Court of Appeals Unpublished, May 9, 2016. - A15-1213 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 36577 - May 9, - 2016 19:16:49 GMT - english - In re the Marriage of: Tamara Lyn Renneke, n/k/a Tamara Lyn Fjoslien, petitioner, Appellant, vs. Dean Glenn Renneke, ... - 2016-05-03T15:01:29+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T13:05:10+00:00 - Acrobat Distiller 11.0 (Windows) - Dissolution of marriage matter and retirement accounts. - In re the Marriage of: Tamara Lyn Renneke, n/k/a Tamara Lyn Fjoslien, petitioner, Appellant, vs. Dean Glenn Renneke, Respondent. A15-1037, Court of Appeals Unpublished, May 9, 2016. - A15-1037 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 61507 - May 9, - 2016 20:40:05 GMT - english - In re the Custody of: S.K.S. Christian Schut, petitioner, Appellant, vs. Cynthia Schut, Respondent. A15-1489, Court of ... - 2016-05-02T14:51:44+00:00 - PScript5.dll Version 5.2.2 - 2016-05-09T15:38:32+00:00 - Acrobat Distiller 11.0 (Windows) - Challenges denial of petition for relief under the Hague Convention, misapplied the Uniform Child Custody Jurisdiction and Enforcement Act (UCCJEA), and clearly erred by awarding respondent mother child support. Affirmed in part, reversed in part, and remanded. - In re the Custody of: S.K.S. Christian Schut, petitioner, Appellant, vs. Cynthia Schut, Respondent. A15-1489, Court of Appeals Unpublished, May 9, 2016. - A15-1489 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 197661 - May 9, - 2016 19:16:49 GMT - english - Terry L. Gates, et al., Respondents, vs. Michael L. Macken, et al., Appellants. A15-1289, Court of Appeals Unpublished, ... - 2016-05-03T13:24:33+00:00 - Microsoft® Word 2013 - 2016-05-09T13:31:29+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment in property dispute. Reversed and remanded. - Terry L. Gates, et al., Respondents, vs. Michael L. Macken, et al., Appellants. A15-1289, Court of Appeals Unpublished, May 9, 2016. - A15-1289 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 42403 - May 9, - 2016 19:16:49 GMT - english - Gregory Lee Cobbins, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1643, Court of Appeals Unpublished, ... - 2016-05-03T12:44:31+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T14:03:09+00:00 - Adobe PDF Library 11.0 - 2016-05-03T17:44:20+00:00 - Challenges denial of petition for post conviction relief. - Gregory Lee Cobbins, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1643, Court of Appeals Unpublished, May 9, 2016. - A15-1643 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 51629 - May 9, - 2016 19:16:49 GMT - english - Delmer V. Fladwood, et al., Appellants, vs. City of St. Paul, Respondent. A15-1791, Court of Appeals Unpublished, May 9,... - 2016-05-03T11:45:19+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-09T14:08:44+00:00 - Adobe PDF Library 11.0 - 2016-05-03T16:44:57+00:00 - Challenges grant of summary judgment based on vicarious official immunity. Reversed and remanded. - Delmer V. Fladwood, et al., Appellants, vs. City of St. Paul, Respondent. A15-1791, Court of Appeals Unpublished, May 9, 2016. - A15-1791 - 2016-05-09T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 325151 - May 5, - 2016 14:13:00 GMT - english - ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA CODE OF JUDICIAL CONDUCT. ADM08-8004, Supreme Court Administrative Order,... - 2016-05-02T16:26:31+00:00 - Canon DR-M140 TWAIN - 2016-05-05T09:09:52+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The attached amendments to the Minnesota Code of Judicial Conduct are prescribed and promulgated to be effective as of July 1, 2016. - ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA CODE OF JUDICIAL CONDUCT. ADM08-8004, Supreme Court Administrative Order, May 4, 2016. - ADM08-8004 - 2016-05-04T00:00:00-0500 - May 2, 2016 STATE OF MINNESOTA IN SUPREME COURT ADM08-8004 ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA CODE OF JUDICIAL CONDUCT Dm~EOF AJIPB.lAlECcuns ... - - - pdf - 181645 - May 2, - 2016 15:06:23 GMT - english - NJK Holding Corporation, Respondent, vs. The Araz Group, Inc., Appellant. A15-1628, Court of Appeals Published, May 2, ... - 2016-04-26T09:18:29+00:00 - Microsoft® Word 2013 - 2016-05-02T10:04:31+00:00 - Microsoft® Word 2013 - A promise to forgive debt is a credit agreement within the meaning of Minn. Stat. § 513.33 (2014) and requires a writing to be enforceable. - NJK Holding Corporation, Respondent, vs. The Araz Group, Inc., Appellant. A15-1628, Court of Appeals Published, May 2, 2016. - A15-1628 - 2016-05-02T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1628 NJK Holding Corporation, Respondent, vs. The Araz Group, Inc., Appellant. Filed May 2, 2016 Affirmed Schellhas, ... - - - pdf - 182026 - May 2, - 2016 15:06:23 GMT - english - Scott Peterson, Appellant, Roger Smith, Plaintiff, vs. City of Minneapolis, Minnesota, Respondent. A15-1711, Court of ... - 2016-04-26T16:34:25+00:00 - Microsoft® Word 2013 - 2016-05-02T10:05:36+00:00 - Microsoft® Word 2013 - A human resources complaint process may qualify as a dispute resolution processŽ under Minnesota Statutes section 363A.28, subdivision 3 (2014) and toll the running of the Minnesota Human Rights Acts one-year statute of limitations. Reversed and remanded. - Scott Peterson, Appellant, Roger Smith, Plaintiff, vs. City of Minneapolis, Minnesota, Respondent. A15-1711, Court of Appeals Published, May 2, 2016. - A15-1711 - 2016-05-02T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1711 Scott Peterson, Appellant, Roger Smith, Plaintiff, vs. City of Minneapolis, Minnesota, Respondent. Filed May ... - - - pdf - 190358 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Jeremy Williams, Appellant. A15-640, Court of Appeals Unpublished, May 2, 2016. - 2016-04-26T13:41:01+00:00 - Microsoft® Word 2013 - 2016-05-02T10:34:12+00:00 - Microsoft® Word 2013 - Challenges to convictions of second-degree assault with a dangerous weapon causing substantial bodily harm, second-degree assault with a dangerous weapon, and possession of a firearm by an ineligible person. - State of Minnesota, Respondent, vs. Jeremy Williams, Appellant. A15-640, Court of Appeals Unpublished, May 2, 2016. - A15-640 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 171670 - May 2, - 2016 19:06:12 GMT - english - Viele Contracting, Inc., Appellant, vs. Performance Pipelining, Inc., Respondent. A15-875, Court of Appeals Unpublished,... - 2016-04-26T11:00:16+00:00 - Microsoft® Word 2013 - 2016-05-02T10:53:19+00:00 - Microsoft® Word 2013 - Challenges that the district court erred and abused its discretion by rejecting appellants voluntary-payment defense. - Viele Contracting, Inc., Appellant, vs. Performance Pipelining, Inc., Respondent. A15-875, Court of Appeals Unpublished, May 2, 2016. - A15-875 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 42722 - May 2, - 2016 19:06:12 GMT - english - Gordon Dodge, Appellant, vs. Charlotte Stack, Respondent. A15-968, Court of Appeals Unpublished, May 2, 2016. - Minnesota Judicial Branch - 2016-04-20T09:45:38+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-02T11:11:34+00:00 - Adobe PDF Library 11.0 - 2016-04-20T14:45:27+00:00 - Shareholder dispute. Affirmed in part, reversed in part, and remanded. - Gordon Dodge, Appellant, vs. Charlotte Stack, Respondent. A15-968, Court of Appeals Unpublished, May 2, 2016. - A15-968 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 109549 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Nammoun Khampanya, Appellant. A15-885, Court of Appeals Unpublished, May 2, 2016. - 2016-04-28T09:25:44+00:00 - Microsoft® Word 2013 - 2016-05-02T10:55:01+00:00 - Microsoft® Word 2013 - Challenges to conviction of first-degree robbery. - State of Minnesota, Respondent, vs. Nammoun Khampanya, Appellant. A15-885, Court of Appeals Unpublished, May 2, 2016. - A15-885 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 115206 - May 2, - 2016 19:06:12 GMT - english - Julius Antwon Coleman, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1195, Court of Appeals ... - 2016-04-26T15:35:36+00:00 - Microsoft® Word 2013 - 2016-05-02T11:25:06+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Julius Antwon Coleman, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1195, Court of Appeals Unpublished, May 2, 2016. - A15-1195 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 173524 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Hobart Alvin Huffman, Appellant. A15-917, Court of Appeals Unpublished, May 2, 2016. - 2016-04-21T14:27:55+00:00 - Microsoft® Word 2013 - 2016-05-02T11:02:12+00:00 - Microsoft® Word 2013 - Challenges to convictions of second-degree driving while impaired (DWI) and child endangerment. Affirmed in part, and reversed in part. - State of Minnesota, Respondent, vs. Hobart Alvin Huffman, Appellant. A15-917, Court of Appeals Unpublished, May 2, 2016. - A15-917 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 282367 - May 2, - 2016 19:06:13 GMT - english - Autumn Ridge Landscaping, Inc., Relator, vs. Department of Employment and Economic Development, Respondent. A15-1305, ... - 2016-04-26T15:28:23+00:00 - Microsoft® Word 2013 - 2016-05-02T11:58:37+00:00 - Microsoft® Word 2013 - Relator-employer challenges the decision by an unemployment-law judge (ULJ) that respondent Minnesota Department of Employment and Economic Development (DEED) correctly calculated relators unemployment-insurance (UI) tax rates for 2013, 2014, and 2015. - Autumn Ridge Landscaping, Inc., Relator, vs. Department of Employment and Economic Development, Respondent. A15-1305, Court of Appeals Unpublished, May 2, 2016. - A15-1305 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 165271 - May 2, - 2016 19:06:13 GMT - english - State of Minnesota, Respondent, vs. Walter Wayne Urban, Appellant. A15-1236, Court of Appeals Unpublished, May 2, 2016. - 2016-04-20T13:49:59+00:00 - Microsoft® Word 2013 - 2016-05-02T11:39:20+00:00 - Microsoft® Word 2013 - Challenges to conviction of domestic assault. Affirmed in part, reversed in part. - State of Minnesota, Respondent, vs. Walter Wayne Urban, Appellant. A15-1236, Court of Appeals Unpublished, May 2, 2016. - A15-1236 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 246344 - May 2, - 2016 19:06:13 GMT - english - Randal V. Johnson, et al., Respondents, vs. Robert A. Fischer, Appellant, County of Sibley, Respondent. A15-1315, Court ... - 2016-04-26T10:22:14+00:00 - Microsoft® Word 2013 - 2016-05-02T13:23:32+00:00 - Microsoft® Word 2013 - Boundary dispute between farmers. - Randal V. Johnson, et al., Respondents, vs. Robert A. Fischer, Appellant, County of Sibley, Respondent. A15-1315, Court of Appeals Unpublished, May 2, 2016. - A15-1315 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123283 - May 2, - 2016 19:06:13 GMT - english - State of Minnesota, Respondent, vs. Gregory Thomas Wandzel, Appellant. A15-1375, Court of Appeals Unpublished, May 2, ... - 2016-04-26T11:21:48+00:00 - Microsoft® Word 2013 - 2016-05-02T13:30:11+00:00 - Microsoft® Word 2013 - Challenges drug-related convictions. - State of Minnesota, Respondent, vs. Gregory Thomas Wandzel, Appellant. A15-1375, Court of Appeals Unpublished, May 2, 2016. - A15-1375 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107168 - May 2, - 2016 19:06:13 GMT - english - Monda Thao, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1644, Court of Appeals Unpublished, May 2, ... - 2016-04-27T11:59:51+00:00 - Microsoft® Word 2013 - 2016-05-02T13:51:21+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Monda Thao, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1644, Court of Appeals Unpublished, May 2, 2016. - A15-1644 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 185642 - May 2, - 2016 19:06:13 GMT - english - Kjellbergs, Inc., et al., petitioners, Appellants, vs. State of Minnesota, by its Commissioner of Transportation, ... - 2016-04-25T13:17:27+00:00 - Microsoft® Word 2013 - 2016-05-02T13:46:09+00:00 - Microsoft® Word 2013 - Challenges the district courts order dismissing petition for a writ of mandamus seeking to compel the state to initiate condemnation proceedings. - Kjellbergs, Inc., et al., petitioners, Appellants, vs. State of Minnesota, by its Commissioner of Transportation, Respondent. A15-1553, Court of Appeals Unpublished, May 2, 2016. - A15-1553 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 118599 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Joshua Scott Leithe, Appellant. A15-853, Court of Appeals Unpublished, May 2, 2016. - 2016-04-26T10:40:38+00:00 - Microsoft® Word 2013 - 2016-05-02T10:42:16+00:00 - Microsoft® Word 2013 - Challenges denial of motion to withdraw guilty plea. - State of Minnesota, Respondent, vs. Joshua Scott Leithe, Appellant. A15-853, Court of Appeals Unpublished, May 2, 2016. - A15-853 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 97507 - May 2, - 2016 19:06:13 GMT - english - In re the Civil Commitment of: Aron Michael VanWagner. A15-1620, Court of Appeals Unpublished, May 2, 2016. - 2016-04-26T13:54:11+00:00 - Microsoft® Word 2013 - 2016-05-02T13:48:18+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of motions for relief from the judgment of civil commitment pursuant to Minn. R. Civ. P. 60.02. - In re the Civil Commitment of: Aron Michael VanWagner. A15-1620, Court of Appeals Unpublished, May 2, 2016. - A15-1620 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 176936 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Jose Antonio Diaz-Arreguin, Appellant. A15-860, Court of Appeals Unpublished, May 2,... - 2016-04-21T13:32:01+00:00 - Microsoft® Word 2013 - 2016-05-02T10:48:10+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Jose Antonio Diaz-Arreguin, Appellant. A15-860, Court of Appeals Unpublished, May 2, 2016. - A15-860 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 127407 - May 2, - 2016 19:06:13 GMT - english - In the Matter of the Welfare of: B. A. H., Child. A15-1670, Court of Appeals Unpublished, May 2, 2016. - 2016-04-25T14:28:47+00:00 - Microsoft® Word 2013 - 2016-05-02T13:59:01+00:00 - Microsoft® Word 2013 - Challenges the district courts restitution order. Reversed and remanded. - In the Matter of the Welfare of: B. A. H., Child. A15-1670, Court of Appeals Unpublished, May 2, 2016. - A15-1670 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 147547 - May 2, - 2016 19:06:13 GMT - english - Renee Rodgers, Relator, vs. Childrens Dental Services, Respondent, Department of Employment and Economic Development, ... - 2016-04-25T14:38:39+00:00 - Microsoft® Word 2013 - 2016-05-02T14:04:52+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Renee Rodgers, Relator, vs. Childrens Dental Services, Respondent, Department of Employment and Economic Development, Respondent. A15-1839, Court of Appeals Unpublished, May 2, 2016. - A15-1839 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 204000 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Joshua Brandon Cochran, Appellant. A15-930, Court of Appeals Unpublished, May 2, ... - 2016-04-25T11:12:58+00:00 - Microsoft® Word 2013 - 2016-05-02T11:06:55+00:00 - Microsoft® Word 2013 - Challenges possession of a controlled substance charge. Reversed. - State of Minnesota, Respondent, vs. Joshua Brandon Cochran, Appellant. A15-930, Court of Appeals Unpublished, May 2, 2016. - A15-930 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 132006 - May 2, - 2016 19:06:12 GMT - english - State of Minnesota, Respondent, vs. Erik Demetrius White, Sr., Appellant. A15-1040, Court of Appeals Unpublished, May 2,... - 2016-04-25T13:56:27+00:00 - Microsoft® Word 2013 - 2016-05-02T11:17:24+00:00 - Microsoft® Word 2013 - Challenges possession of a controlled substance charge. - State of Minnesota, Respondent, vs. Erik Demetrius White, Sr., Appellant. A15-1040, Court of Appeals Unpublished, May 2, 2016. - A15-1040 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 102918 - May 2, - 2016 19:06:12 GMT - english - Mark Jeffrey Koelndorfer, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1193, Court of Appeals ... - 2016-04-26T16:25:20+00:00 - Microsoft® Word 2013 - 2016-05-02T11:21:32+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Mark Jeffrey Koelndorfer, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1193, Court of Appeals Unpublished, May 2, 2016. - A15-1193 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 128973 - May 2, - 2016 19:06:13 GMT - english - In the Matter of the Welfare of: N. P. S. A15-1403, Court of Appeals Unpublished, May 2, 2016. - 2016-04-25T16:31:14+00:00 - Microsoft® Word 2013 - 2016-05-02T13:39:32+00:00 - Microsoft® Word 2013 - We remand the denial of appellant N.P.S.s petition to expunge his juvenile records held by the Minnesota Department of Health and the Minnesota Department of Human Services and his petition to reinstate his firearm rights. Remanded. - In the Matter of the Welfare of: N. P. S. A15-1403, Court of Appeals Unpublished, May 2, 2016. - A15-1403 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 192628 - May 2, - 2016 19:06:13 GMT - english - Freddie Lee Jenkins, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1256, Court of Appeals Unpublished, ... - 2016-04-26T11:32:09+00:00 - Microsoft® Word 2013 - 2016-05-02T11:55:57+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Freddie Lee Jenkins, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1256, Court of Appeals Unpublished, May 2, 2016. - A15-1256 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 33446 - May 2, - 2016 19:06:13 GMT - english - North Star Mutual Insurance Company, Respondent, vs. Julie Joy Kruger, as trustee for the heirs and next of kin of Todd ... - Minnesota Judicial Branch - 2016-04-20T09:19:01+00:00 - Acrobat PDFMaker 11 for Word - 2016-05-02T13:42:49+00:00 - Adobe PDF Library 11.0 - 2016-04-20T14:18:31+00:00 - Challenges grant of summary judgment. Reversed and remanded. - North Star Mutual Insurance Company, Respondent, vs. Julie Joy Kruger, as trustee for the heirs and next of kin of Todd Michael Kruger, Appellant, Michael Allen Dahl, et al., Defendants. A15-1420, Court of Appeals Unpublished, May 2, 2016. - A15-1420 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 193614 - May 2, - 2016 19:06:13 GMT - english - Martin Bell, et al, Appellants, vs. Leonard Street and Deinard Professional Association, et al., Respondents. A15-1311, ... - 2016-04-25T14:37:49+00:00 - Microsoft® Word 2013 - 2016-05-02T12:00:18+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - Martin Bell, et al, Appellants, vs. Leonard Street and Deinard Professional Association, et al., Respondents. A15-1311, Court of Appeals Unpublished, May 2, 2016. - A15-1311 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 146948 - May 2, - 2016 19:06:13 GMT - english - Lifespan of Minnesota, Inc., Respondent, vs. Minneapolis Public Schools, Special School District No. 1. A15-1717, Court ... - 2016-04-20T13:33:59+00:00 - Microsoft® Word 2013 - 2016-05-02T14:01:25+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment in contract dispute. Reversed and remanded. - Lifespan of Minnesota, Inc., Respondent, vs. Minneapolis Public Schools, Special School District No. 1. A15-1717, Court of Appeals Unpublished, May 2, 2016. - A15-1717 - 2016-05-02T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 302550 - Apr 27, - 2016 15:35:24 GMT - english - In re Petition for Disciplinary Action Against Debra Elise Altschuler, Registration No. 0389549. A16-193, Supreme Court ... - 2016-04-19T14:00:32+00:00 - Canon DR-M140 TWAIN - 2016-04-27T10:32:50+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Debra Elise Altschuler is publicly reprimanded. - In re Petition for Disciplinary Action Against Debra Elise Altschuler, Registration No. 0389549. A16-193, Supreme Court Order, April 27, 2016. - A16-193 - 2016-04-27T00:00:00-0500 - April 19, 2016 STATE OF MINNESOTA IN SUPREME COURT In re Petition for Disciplinary Action Against Debra Elise Altschuler, Registration No. 0389549 Al6-0193 ... - - - pdf - 48448 - Apr 27, - 2016 15:35:24 GMT - english - In the Matter of the Welfare of: C.J.H., Child. A14-1810, Supreme Court, April 27, 2016. - MN Judicial Branch - 2016-04-26T10:26:00+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-27T10:34:10+00:00 - Adobe PDF Library 11.0 - 2016-04-26T15:21:51+00:00 - The juvenile court did not continue this case without adjudication under Minn. R. Juv. Delinq. P. 15.05 because that court never found that the allegations in the charging document were proven, and therefore the court of appeals erred when it concluded that the juvenile court's jurisdiction expired before respondent was adjudicated delinquent. Reversed. - In the Matter of the Welfare of: C.J.H., Child. A14-1810, Supreme Court, April 27, 2016. - A14-1810 - 2016-04-27T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1810 Court of Appeals Hudson, J. Took no part, Chutich, J. In the Matter of the Welfare of: C.J.H., Child, Filed: ... - - - pdf - 183267 - Apr 25, - 2016 15:15:28 GMT - english - Steven Duane Auers, personally, and as trustee for the next of kin of Karen Auers, deceased, Respondent, vs. ... - 2016-04-19T08:53:03+00:00 - Microsoft® Word 2013 - 2016-04-25T10:13:57+00:00 - Microsoft® Word 2013 - 1. Pursuant to Swanson v. Brewster, 784 N.W.2d 264 (Minn. 2010), a negotiated discount of medical expenses is a collateral source subject to offset under Minn. Stat. § 548.251 (2014). 2. A subrogee that has negotiated a discount of medical expenses may not assert a subrogation right for the discount under Swanson, and the subrogation right is limited to the amount of the subrogees payment. 3. An injured plaintiff who purchases the subrogation interest of a health-insurance carrier is not entitled to recover the Swanson collateral-source offset under Minn. Stat. § 548.251 in his personal injury case. Reversed. - Steven Duane Auers, personally, and as trustee for the next of kin of Karen Auers, deceased, Respondent, vs. Progressive Direct Insurance Company, Appellant. A15-1832, Court of Appeals Published, April 26, 2016. - A15-1832 - 2016-04-26T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1832 Steven Duane Auers, personally, and as trustee for the next of kin of Karen Auers, deceased, Respondent, vs. ... - - - pdf - 123585 - Apr 25, - 2016 15:15:28 GMT - english - In the Matter of the Welfare of the Child of: A.H., Parent. A15-1992, Court of Appeals Published, April 25, 2016. - 2016-04-20T09:41:43+00:00 - Microsoft® Word 2013 - 2016-04-25T10:14:57+00:00 - Microsoft® Word 2013 - 1. The juvenile court has original and exclusive jurisdictionŽ over visitation issues raised in post-permanency proceedings under Minn. Stat. §§ 260C.503-.521 (2014). 2. The juvenile court must use the best-interests standard of Minn. Stat. § 260C.511 when deciding whether to modify visitation in a post-permanency proceeding. - In the Matter of the Welfare of the Child of: A.H., Parent. A15-1992, Court of Appeals Published, April 25, 2016. - A15-1992 - 2016-04-25T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1992 In the Matter of the Welfare of the Child of: A.H., Parent. Filed April 25, 2016 Affirmed Stauber, Judge Hennepin ... - - - pdf - 225237 - Apr 25, - 2016 15:15:28 GMT - english - Stand Up Multipositional Advantage MRI, P.A., Respondent, vs. American Family Insurance Company, a Wisconsin ... - 2016-04-19T15:04:48+00:00 - Microsoft® Word 2013 - 2016-04-25T10:10:35+00:00 - Microsoft® Word 2013 - A patients assignment of a no-fault insurance claim to a medical provider is invalid and unenforceable if the applicable automobile insurance policy forbids such an assignment and if the patient makes the assignment before the medical provider bills the patient for medical services. Reversed. - Stand Up Multipositional Advantage MRI, P.A., Respondent, vs. American Family Insurance Company, a Wisconsin corporation, Appellant, Michael Schultz, et al., Respondents, Ilya Knyazev, et al., Respondents, Thomas Bennerotte, et al., Respondents, Jed Benjamin Iverson, Respondent, Gabriel Johnson, Respondent, Michael Fay, et al., Respondents, Brad Ratgen, et al., Respondents, Landon Barakow, Respondent, Lebertha Porter, Respondent. A15-843, Court of Appeals Published, April 25, 2016. - A15-843 - 2016-04-25T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0843 Stand Up Multipositional Advantage MRI, P.A., Respondent, vs. American Family Insurance Company, a Wisconsin ... - - - pdf - 116989 - Apr 25, - 2016 15:15:28 GMT - english - State of Minnesota, Respondent, vs. D. R. F., Appellant. A15-1591, Court of Appeals Published, April 25, 2016. - 2016-04-13T12:54:49+00:00 - Microsoft® Word 2013 - 2016-04-25T10:12:45+00:00 - Microsoft® Word 2013 - An expungement petition based on the petitioners acquittal cannot be denied on the ground that the petitioner might at some future time commit an offense, be charged with a crime, and have a bail hearing at which the petitioners bench warrant history on the acquitted crime would not be available because it has been expunged: such a hypothesis does not constitute the clear and convincing evidence that the interests of the public and public safety outweigh the disadvantages to the petitioner of not sealing the recordŽ within the meaning of Minn. Stat. § 609A.03, subd. 5(b) (2014). Reversed and remanded. - State of Minnesota, Respondent, vs. D. R. F., Appellant. A15-1591, Court of Appeals Published, April 25, 2016. - A15-1591 - 2016-04-25T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1591 State of Minnesota, Respondent, vs. D. R. F., Appellant. Filed April 25, 2016 Reversed and remanded Connolly, ... - - - pdf - 44027 - Apr 25, - 2016 15:15:28 GMT - english - In re the Matter of the Estate of: Brian K. Johnson, Decedent. A15-1383, Court of Appeals Published, April 25, 2016. - Minnesota Judicial Branch - 2016-04-14T11:32:14+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-25T10:11:37+00:00 - Adobe PDF Library 11.0 - 2016-04-14T16:32:06+00:00 - When an estate is administered by a court-appointed personal representative, Minnesota Statutes section 524.3-813 (2014) authorizes the personal representative to compromise claims against the estate without the consent of all beneficiaries under the will. - In re the Matter of the Estate of: Brian K. Johnson, Decedent. A15-1383, Court of Appeals Published, April 25, 2016. - A15-1383 - 2016-04-25T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1383 In re the Matter of the Estate of: Brian K. Johnson, Decedent. Filed April 25, 2016 Affirmed Randall, Judge ∗ ... - - - pdf - 203033 - Apr 25, - 2016 20:24:18 GMT - english - In re the Estate of: Edward D. Kane a/k/a Edward Donald Kane, Decedent. A15-1033, Court of Appeals Unpublished, April ... - 2016-04-19T08:51:50+00:00 - Microsoft® Word 2013 - 2016-04-25T13:44:53+00:00 - Microsoft® Word 2013 - Probate dispute. Affirmed in part, reversed in part, remanded. - In re the Estate of: Edward D. Kane a/k/a Edward Donald Kane, Decedent. A15-1033, Court of Appeals Unpublished, April 25, 2016. - A15-1033 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 182953 - Apr 25, - 2016 20:24:17 GMT - english - State of Minnesota, Respondent, vs. Andrew John Wondrasek, Appellant. A15-337, Court of Appeals Unpublished, April 25, ... - 2016-04-19T13:14:09+00:00 - Microsoft® Word 2013 - 2016-04-25T10:42:46+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of motion to suppress evidence and to dismiss. - State of Minnesota, Respondent, vs. Andrew John Wondrasek, Appellant. A15-337, Court of Appeals Unpublished, April 25, 2016. - A15-337 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123569 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Rustin Kent Hartland, Appellant. A15-898, Court of Appeals Unpublished, April 25, ... - 2016-04-15T15:18:24+00:00 - Microsoft® Word 2013 - 2016-04-25T11:06:07+00:00 - Microsoft® Word 2013 - Challenges to convictions of receiving stolen property, theft of a motor vehicle, driving after license cancellation, and two counts of first-degree driving while impaired. - State of Minnesota, Respondent, vs. Rustin Kent Hartland, Appellant. A15-898, Court of Appeals Unpublished, April 25, 2016. - A15-898 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 156435 - Apr 25, - 2016 20:24:17 GMT - english - In the Matter of the Estate of: Orville C. Jacobson, Deceased In the Matter of the Estate of: Hughie Eugene Keenan, ... - 2016-04-14T14:53:26+00:00 - Microsoft® Word 2013 - 2016-04-25T10:39:50+00:00 - Microsoft® Word 2013 - Probate dispute. - In the Matter of the Estate of: Orville C. Jacobson, Deceased In the Matter of the Estate of: Hughie Eugene Keenan, Deceased. A15-316, Court of Appeals Unpublished, April 25, 2016. - A15-316 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 184567 - Apr 25, - 2016 20:24:18 GMT - english - In the Matter of the Administrative Penalty Order of Fays Homestyle Catering. A15-967, Court of Appeals Unpublished, ... - 2016-04-18T10:49:38+00:00 - Microsoft® Word 2013 - 2016-04-25T13:33:51+00:00 - Microsoft® Word 2013 - Challenges a $10,000 administrative penalty imposed by the commissioner of the Minnesota Department of Health (the MDH) based on relators failure to obtain a license to provide catering services. - In the Matter of the Administrative Penalty Order of Fays Homestyle Catering. A15-967, Court of Appeals Unpublished, April 25, 2016. - A15-967 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 136992 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Arnold Lee Scott, Appellant. A15-661, Court of Appeals Unpublished, April 25, 2016. - 2016-04-14T15:33:29+00:00 - Microsoft® Word 2013 - 2016-04-25T10:52:42+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Arnold Lee Scott, Appellant. A15-661, Court of Appeals Unpublished, April 25, 2016. - A15-661 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 100399 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. William James Chestnut, Appellant. A15-1073, Court of Appeals Unpublished, April 25,... - 2016-04-20T09:37:49+00:00 - Microsoft® Word 2013 - 2016-04-25T13:53:56+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree unintentional murder and sentencing. - State of Minnesota, Respondent, vs. William James Chestnut, Appellant. A15-1073, Court of Appeals Unpublished, April 25, 2016. - A15-1073 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 142374 - Apr 25, - 2016 20:24:18 GMT - english - Preeti Kaur Rajpal, Appellant, vs. Regents of the University of Minnesota, et al., Respondents. A15-1207, Court of ... - 2016-04-14T15:18:21+00:00 - Microsoft® Word 2013 - 2016-04-25T14:08:52+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment in dismissal from medical school. - Preeti Kaur Rajpal, Appellant, vs. Regents of the University of Minnesota, et al., Respondents. A15-1207, Court of Appeals Unpublished, April 25, 2016. - A15-1207 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 183532 - Apr 25, - 2016 20:24:18 GMT - english - Jamel Daniel Hoard, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1211, Court of Appeals Unpublished, ... - 2016-04-19T13:41:30+00:00 - Microsoft® Word 2013 - 2016-04-25T14:18:03+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Jamel Daniel Hoard, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1211, Court of Appeals Unpublished, April 25, 2016. - A15-1211 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 129270 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Byron Dean Sayers, Appellant. A15-1345, Court of Appeals Unpublished, April 25, ... - 2016-04-20T09:21:22+00:00 - Microsoft® Word 2013 - 2016-04-25T15:05:33+00:00 - Microsoft® Word 2013 - Revocation of probation. Reversed and remanded. - State of Minnesota, Respondent, vs. Byron Dean Sayers, Appellant. A15-1345, Court of Appeals Unpublished, April 25, 2016. - A15-1345 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 166868 - Apr 25, - 2016 20:24:18 GMT - english - Rojelio Castillo, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1176, Court of Appeals Unpublished, ... - 2016-04-18T13:28:18+00:00 - Microsoft® Word 2013 - 2016-04-25T14:06:27+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Rojelio Castillo, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1176, Court of Appeals Unpublished, April 25, 2016. - A15-1176 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 29151 - Apr 25, - 2016 20:24:17 GMT - english - State of Minnesota, Respondent, vs. Deundrick Demon McIntosh, Appellant. A15-887, Court of Appeals Unpublished, April ... - Minnesota Judicial Branch - 2016-04-18T10:23:08+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-25T11:00:27+00:00 - Adobe PDF Library 11.0 - 2016-04-18T15:23:01+00:00 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Deundrick Demon McIntosh, Appellant. A15-887, Court of Appeals Unpublished, April 25, 2016. - A15-887 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 187286 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Morgan Lee Thompson, Appellant. A15-904, Court of Appeals Unpublished, April 25, ... - 2016-04-14T11:34:37+00:00 - Microsoft® Word 2013 - 2016-04-25T13:12:37+00:00 - Microsoft® Word 2013 - Challenges to conviction of aggravated-robbery. - State of Minnesota, Respondent, vs. Morgan Lee Thompson, Appellant. A15-904, Court of Appeals Unpublished, April 25, 2016. - A15-904 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 120631 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Lisa Lorraine Peltier, Appellant. A15-1324, Court of Appeals Unpublished, April 25, ... - 2016-04-15T12:02:12+00:00 - Microsoft® Word 2013 - 2016-04-25T14:49:44+00:00 - Microsoft® Word 2013 - Challenges the district courts calculation of jail credit toward sentence. - State of Minnesota, Respondent, vs. Lisa Lorraine Peltier, Appellant. A15-1324, Court of Appeals Unpublished, April 25, 2016. - A15-1324 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 45462 - Apr 25, - 2016 20:24:18 GMT - english - Nicholas James Heinz, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-964, Court of Appeals ... - Minnesota Judicial Branch - 2016-04-19T09:37:02+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-25T13:32:13+00:00 - Adobe PDF Library 11.0 - 2016-04-19T14:36:53+00:00 - Challenges an order sustaining the revocation of drivers license for refusing to submit to a chemical test. - Nicholas James Heinz, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-964, Court of Appeals Unpublished, April 25, 2016. - A15-964 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 133575 - Apr 25, - 2016 20:24:18 GMT - english - Robert Anderson, Respondent, vs. State of Minnesota, Appellant. A15-1254, Court of Appeals Unpublished, April 25, 2016. - 2016-04-19T13:53:37+00:00 - Microsoft® Word 2013 - 2016-04-25T14:30:05+00:00 - Microsoft® Word 2013 - State challenges restoration of right to possess a firearm. - Robert Anderson, Respondent, vs. State of Minnesota, Appellant. A15-1254, Court of Appeals Unpublished, April 25, 2016. - A15-1254 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122374 - Apr 25, - 2016 20:24:18 GMT - english - Kaytee Hooser, et al., Respondents, vs. Keith Anderson, Appellant. A15-1738, Court of Appeals Unpublished, April 25, ... - 2016-04-15T10:27:13+00:00 - Microsoft® Word 2013 - 2016-04-25T15:20:52+00:00 - Microsoft® Word 2013 - Landlord-tenant dispute. - Kaytee Hooser, et al., Respondents, vs. Keith Anderson, Appellant. A15-1738, Court of Appeals Unpublished, April 25, 2016. - A15-1738 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 116193 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Joseph Ray Burrell, Appellant. A15-1005, Court of Appeals Unpublished, April 25, ... - 2016-04-20T09:32:00+00:00 - Microsoft® Word 2013 - 2016-04-25T13:36:51+00:00 - Microsoft® Word 2013 - Challenges drug related convictions. - State of Minnesota, Respondent, vs. Joseph Ray Burrell, Appellant. A15-1005, Court of Appeals Unpublished, April 25, 2016. - A15-1005 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 31133 - Apr 25, - 2016 20:24:18 GMT - english - Clarinda Low, Appellant, vs. Travis Russell Yorek, Respondent. A15-1107, Court of Appeals Unpublished, April 25, 2016. - Minnesota Judicial Branch - 2016-04-18T09:36:50+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-25T13:57:26+00:00 - Adobe PDF Library 11.0 - 2016-04-18T14:36:38+00:00 - Appellant argues that the district court erred by issuing an order adopting the parties agreement and later refusing to vacate that order. - Clarinda Low, Appellant, vs. Travis Russell Yorek, Respondent. A15-1107, Court of Appeals Unpublished, April 25, 2016. - A15-1107 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 117473 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Scott Anthony Hebert, Appellant. A15-1121, Court of Appeals Unpublished, April 25, ... - 2016-04-19T13:27:51+00:00 - Microsoft® Word 2013 - 2016-04-25T13:59:56+00:00 - Microsoft® Word 2013 - Challenges denial of motion for a downward dispositional departure from the presumptive sentencing guidelines range. - State of Minnesota, Respondent, vs. Scott Anthony Hebert, Appellant. A15-1121, Court of Appeals Unpublished, April 25, 2016. - A15-1121 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 103442 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Brian Robert Winsor, Appellant. A15-1056, Court of Appeals Unpublished, April 25, ... - 2016-04-18T13:26:49+00:00 - Microsoft® Word 2013 - 2016-04-25T13:49:07+00:00 - Microsoft® Word 2013 - Challenges to convictions of stalking and violation of an order for protection. Reversed and remanded. - State of Minnesota, Respondent, vs. Brian Robert Winsor, Appellant. A15-1056, Court of Appeals Unpublished, April 25, 2016. - A15-1056 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 172425 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. John Charles Kotten, Appellant. A15-1160, Court of Appeals Unpublished, April 25, ... - 2016-04-19T14:33:04+00:00 - Microsoft® Word 2013 - 2016-04-25T14:02:44+00:00 - Microsoft® Word 2013 - Challenges to convictions of fourth-degree assault against a police officer, obstructing legal process, disorderly conduct, and trespass. - State of Minnesota, Respondent, vs. John Charles Kotten, Appellant. A15-1160, Court of Appeals Unpublished, April 25, 2016. - A15-1160 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 173272 - Apr 25, - 2016 20:24:18 GMT - english - Angela M. Schroeder, Relator, vs. Angel Eyes, Inc., Respondent, Department of Employment and Economic Development, ... - 2016-04-18T12:53:12+00:00 - Microsoft® Word 2013 - 2016-04-25T14:12:18+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Angela M. Schroeder, Relator, vs. Angel Eyes, Inc., Respondent, Department of Employment and Economic Development, Respondent. A15-1208, Court of Appeals Unpublished, April 25, 2016. - A15-1208 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 240174 - Apr 25, - 2016 20:24:18 GMT - english - Roxanne J. Soderholm, Respondent, vs. Olivia Forar, et al., Appellants. A15-1233, Court of Appeals Unpublished, April ... - 2016-04-20T09:28:00+00:00 - Microsoft® Word 2013 - 2016-04-25T14:22:38+00:00 - Microsoft® Word 2013 - Challenges that the district court erred in denying motion for judgment as a matter of law (JMOL). - Roxanne J. Soderholm, Respondent, vs. Olivia Forar, et al., Appellants. A15-1233, Court of Appeals Unpublished, April 25, 2016. - A15-1233 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 173397 - Apr 25, - 2016 20:24:18 GMT - english - Scott Andren, Appellant, vs. James Woodhull, et al., Respondents. A15-1465, Court of Appeals Unpublished, April 25, ... - 2016-04-19T14:46:26+00:00 - Microsoft® Word 2013 - 2016-04-25T15:07:16+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. Reversed. - Scott Andren, Appellant, vs. James Woodhull, et al., Respondents. A15-1465, Court of Appeals Unpublished, April 25, 2016. - A15-1465 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 29749 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Luke Brandon Scott, Appellant. A15-1815, Court of Appeals Unpublished, April 25, ... - Minnesota Judicial Branch - 2016-04-19T09:18:44+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-25T15:22:20+00:00 - Adobe PDF Library 11.0 - 2016-04-19T14:18:37+00:00 - Challenges the district courts denial of motion to correct sentence for false imprisonment and first-degree assault. - State of Minnesota, Respondent, vs. Luke Brandon Scott, Appellant. A15-1815, Court of Appeals Unpublished, April 25, 2016. - A15-1815 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 114574 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Henry Davila, Appellant. A15-1496, Court of Appeals Unpublished, April 25, 2016. - 2016-04-19T09:17:33+00:00 - Microsoft® Word 2013 - 2016-04-25T15:17:40+00:00 - Microsoft® Word 2013 - Challenges drug-related convictions. - State of Minnesota, Respondent, vs. Henry Davila, Appellant. A15-1496, Court of Appeals Unpublished, April 25, 2016. - A15-1496 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 181802 - Apr 25, - 2016 20:24:18 GMT - english - Roger William Kuehn, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-1278, Court of Appeals ... - 2016-04-20T09:47:40+00:00 - Microsoft® Word 2013 - 2016-04-25T14:38:17+00:00 - Microsoft® Word 2013 - Challenges revocation of driver's license. - Roger William Kuehn, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-1278, Court of Appeals Unpublished, April 25, 2016. - A15-1278 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123011 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. Brandon Harley Johansen, Appellant. A15-1673, Court of Appeals Unpublished, April ... - 2016-04-13T14:07:39+00:00 - Microsoft® Word 2013 - 2016-04-25T15:19:25+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Brandon Harley Johansen, Appellant. A15-1673, Court of Appeals Unpublished, April 25, 2016. - A15-1673 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 139877 - Apr 25, - 2016 20:24:18 GMT - english - State of Minnesota, Respondent, vs. James William Kralik, Appellant. A15-914, Court of Appeals Unpublished, April 25, ... - 2016-04-18T13:12:11+00:00 - Microsoft® Word 2013 - 2016-04-25T13:22:10+00:00 - Microsoft® Word 2013 - Challenges to convictions of first-degree aggravated robbery, first-degree burglary, and second-degree assault. Affirmed in part, reversed in part. - State of Minnesota, Respondent, vs. James William Kralik, Appellant. A15-914, Court of Appeals Unpublished, April 25, 2016. - A15-914 - 2016-04-25T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 421834 - Apr 20, - 2016 16:25:22 GMT - english - In re Petition for Disciplinary Action against Kristian Lee Oyen, a Minnesota Attorney, Registration No. 386383. ... - 2016-04-13T13:28:01+00:00 - Canon DR-M140 TWAIN - 2016-04-20T11:18:14+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Kristian Lee Oyen is conditionally reinstated to the practice of law in the State of Minnesota,. - In re Petition for Disciplinary Action against Kristian Lee Oyen, a Minnesota Attorney, Registration No. 386383. A14-1384, Supreme Court Order, April 20, 2016. - A14-1384 - 2016-04-20T00:00:00-0500 - April 13, 2016 STATE OF MINNESOTA IN SUPREME COURT A14-1384 In rePetition for Disciplinary Action against Kristian Lee Oyen, a Minnesota Attorney, Registration ... - - - pdf - 380684 - Apr 20, - 2016 16:25:22 GMT - english - In re Petition for Disciplinary Action against Mark Alan Greenman, a Minnesota Attorney, Registration No. 0228990. ... - 2016-04-13T13:49:30+00:00 - Canon DR-M140 TWAIN - 2016-04-20T11:19:27+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Mark Alan Greenman is suspended from the practice of law. - In re Petition for Disciplinary Action against Mark Alan Greenman, a Minnesota Attorney, Registration No. 0228990. A16-491, Supreme Court Order, April 20, 2016. - A16-491 - 2016-04-20T00:00:00-0500 - April 13, 2016 STATE OF MINNESOTA IN SUPREME COURT A16-0491 In re Petition for Disciplinary Action against Mark Alan Greenman, a Minnesota Attorney, Registration ... - - - pdf - 1007568 - Apr 20, - 2016 16:25:22 GMT - english - ORDER PROMULGATING AMENDMENTS TO THE RULES OF CIVIL APPELLATE PROCEDURE. ADM09-8006, Supreme Court Administrative Order,... - 2016-04-14T16:26:02+00:00 - Canon DR-M140 TWAIN - 2016-04-20T11:23:38+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The attached amendments to the Rules of Civil Appellate Procedure are prescribed and promulgated to be effective on July 1, 2016. - ORDER PROMULGATING AMENDMENTS TO THE RULES OF CIVIL APPELLATE PROCEDURE. ADM09-8006, Supreme Court Administrative Order, April 20, 2016. - ADM09-8006 - 2016-04-20T00:00:00-0500 - April 14, 2016 STATE OF MINNESOTA IN SUPREME COURT ADM09-8006 ORDER PROMULGATING AMENDMENTS TO THE RULES OF CIVIL APPELLATE PROCEDURE fl OliiU: EOF API'B.L\ ... - - - pdf - 431736 - Apr 20, - 2016 16:25:22 GMT - english - ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF CRIMINAL PROCEDURE. ADM10-8049, Supreme Court Administrative ... - 2016-04-14T16:33:01+00:00 - Canon DR-M140 TWAIN - 2016-04-20T11:22:22+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The attached amendments to the Rules of Criminal Procedure are prescribed and promulgated to be effective on July 1, 2016. - ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF CRIMINAL PROCEDURE. ADM10-8049, Supreme Court Administrative Order, April 20, 2016. - ADM10-8049 - 2016-04-20T00:00:00-0500 - April 14, 2016 STATE OF MINNESOTA IN SUPREME COURT ADMl0- 8049 ORDER PROMULGATING AMENDMENTS TO THE MINNESOTA RULES OF CRIMINAL PROCEDURE -I Om~IEOF APPB.J. ... - - - pdf - 259046 - Apr 20, - 2016 16:25:22 GMT - english - J.D. Donovan, Inc., et al., Appellants, vs. Minnesota Department of Transportation, et al., Respondents. A14-863,... - 2016-04-18T11:15:33+00:00 - Microsoft® Word 2013 - 2016-04-20T11:15:46+00:00 - Microsoft® Word 2013 - The transport of asphalt cement from a commercial oil refinery to a contractors facility is not subject to the Prevailing Wage Act because the scope of hauling activities considered to be "work under the contract" under Minn. R. 5200.1106 (2015) is limited to hauling activities to, from, or on the site of a public works project. Reversed. - J.D. Donovan, Inc., et al., Appellants, vs. Minnesota Department of Transportation, et al., Respondents. A14-863,A14-1021, Supreme Court, April 20, 2016. - A14-863 - 2016-04-20T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0863 A14-1021 Court of Appeals Gildea, C.J. Dissenting, Lillehaug and Stras, JJ. J.D. Donovan, Inc., et al., ... - - - pdf - 113195 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Casey James Pederson, Appellant. A14-2123, Court of Appeals Unpublished, April 18, ... - 2016-04-11T10:42:17+00:00 - Microsoft® Word 2013 - 2016-04-18T14:00:39+00:00 - Microsoft® Word 2013 - Appeal from his conviction of fifth-degree drug possession and an 18-month prison sentence. - State of Minnesota, Respondent, vs. Casey James Pederson, Appellant. A14-2123, Court of Appeals Unpublished, April 18, 2016. - A14-2123 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 121361 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Trevon Fuller, Appellant. A15-635, Court of Appeals Unpublished, April 18, 2016. - 2016-04-12T11:42:41+00:00 - Microsoft® Word 2013 - 2016-04-18T13:55:33+00:00 - Microsoft® Word 2013 - Appellant challenges his convictions of felony first-degree driving while impaired and gross misdemeanor driving after cancellation. Reversed. - State of Minnesota, Respondent, vs. Trevon Fuller, Appellant. A15-635, Court of Appeals Unpublished, April 18, 2016. - A15-635 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 166185 - Apr 18, - 2016 19:43:23 GMT - english - Ronald D. Van Riper, Respondent, vs. Bonnie L. Roy, Appellant. A15-844, Court of Appeals Unpublished, April 18, 2016. - 2016-04-12T16:22:18+00:00 - Microsoft® Word 2013 - 2016-04-18T13:54:14+00:00 - Microsoft® Word 2013 - Appeals eviction order. - Ronald D. Van Riper, Respondent, vs. Bonnie L. Roy, Appellant. A15-844, Court of Appeals Unpublished, April 18, 2016. - A15-844 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 268319 - Apr 18, - 2016 19:43:23 GMT - english - Mark Lanterman, et al., Appellants, vs. Michael Roman Afremov, Respondent. A15-729, Court of Appeals Unpublished, April ... - 2016-04-07T09:00:33+00:00 - Microsoft® Word 2013 - 2016-04-18T13:53:18+00:00 - Microsoft® Word 2013 - Appellants challenge verdict in breach-of-contract claim. Reversed and remanded. - Mark Lanterman, et al., Appellants, vs. Michael Roman Afremov, Respondent. A15-729, Court of Appeals Unpublished, April 18, 2016. - A15-729 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 285812 - Apr 18, - 2016 19:43:23 GMT - english - Rebecca Lee Treptow, Respondent, vs. Brittany Ann Layland Vacko, Appellant. A15-1084, Court of Appeals Unpublished, ... - 2016-04-13T09:01:25+00:00 - Microsoft® Word 2013 - 2016-04-18T14:38:47+00:00 - Microsoft® Word 2013 - Pro se appellant challenges the district courts issuance of a harassment restraining order (HRO). - Rebecca Lee Treptow, Respondent, vs. Brittany Ann Layland Vacko, Appellant. A15-1084, Court of Appeals Unpublished, April 18, 2016. - A15-1084 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 181615 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Sheldon James Armstrong, III, Appellant. A15-924, Court of Appeals Unpublished, ... - 2016-04-07T10:09:20+00:00 - Microsoft® Word 2013 - 2016-04-18T13:46:49+00:00 - Microsoft® Word 2013 - Appeals conviction for attempted first-degree murder. - State of Minnesota, Respondent, vs. Sheldon James Armstrong, III, Appellant. A15-924, Court of Appeals Unpublished, April 18, 2016. - A15-924 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 290438 - Apr 18, - 2016 19:43:23 GMT - english - Jessica Mattson, Appellant, vs. City of Rushford, Respondent, Minnowa Construction, Inc., Respondent, State of ... - 2016-04-08T14:21:52+00:00 - Microsoft® Word 2013 - 2016-04-18T14:41:47+00:00 - Microsoft® Word 2013 - Appellant challenges the summary-judgment dismissal of her negligence claims against respondents City of Rushford (Rushford), Minnesota State Department of Transportation (MNDOT), and Minnowa Construction, Inc. (Minnowa). - Jessica Mattson, Appellant, vs. City of Rushford, Respondent, Minnowa Construction, Inc., Respondent, State of Minnesota Department of Transportation, Respondent, Edwards and Kelcey, Inc., et al., Defendants, Minnowa Construction, Inc., Third Party Plaintiff, vs. Eric Kaiser d/b/a Kaiser Concrete, Third Party Defendant. A15-1018, Court of Appeals Unpublished, April 18, 2016. - A15-1018 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 144296 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Mark Anthony Sanders, Appellant. A15-963, Court of Appeals Unpublished, April 18, ... - 2016-04-12T13:35:56+00:00 - Microsoft® Word 2013 - 2016-04-18T13:48:11+00:00 - Microsoft® Word 2013 - Appellant challenges his conviction of first-degree sale of a controlled substance. - State of Minnesota, Respondent, vs. Mark Anthony Sanders, Appellant. A15-963, Court of Appeals Unpublished, April 18, 2016. - A15-963 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107998 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Matthew Shane Michener, Appellant. A15-1374, Court of Appeals Unpublished, April 18,... - 2016-04-12T13:47:03+00:00 - Microsoft® Word 2013 - 2016-04-18T14:37:48+00:00 - Microsoft® Word 2013 - Appellant challenges his second-degree burglary conviction. - State of Minnesota, Respondent, vs. Matthew Shane Michener, Appellant. A15-1374, Court of Appeals Unpublished, April 18, 2016. - A15-1374 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 140795 - Apr 18, - 2016 19:43:23 GMT - english - In the Matter of the Welfare of the Children of: I. M. A. a/k/a I. N. and A. T. N., Parents. A15-1752, A15-1783, Court ... - 2016-04-12T14:22:01+00:00 - Microsoft® Word 2013 - 2016-04-18T14:25:12+00:00 - Microsoft® Word 2013 - Termination of parental rights. - In the Matter of the Welfare of the Children of: I. M. A. a/k/a I. N. and A. T. N., Parents. A15-1752, A15-1783, Court of Appeals Unpublished, April 18, 2016. - A15-1752 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 162843 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Derrick Jacqueay Roberson, Appellant. A15-507, Court of Appeals Unpublished, April ... - 2016-04-11T14:01:42+00:00 - Microsoft® Word 2013 - 2016-04-18T13:50:34+00:00 - Microsoft® Word 2013 - Appellant challenges his test-refusal conviction. Reversed. - State of Minnesota, Respondent, vs. Derrick Jacqueay Roberson, Appellant. A15-507, Court of Appeals Unpublished, April 18, 2016. - A15-507 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 148460 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Kevin Maurice Williams, Appellant. A15-644, Court of Appeals Unpublished, April 18, ... - 2016-04-12T17:24:02+00:00 - Microsoft® Word 2013 - 2016-04-18T13:59:37+00:00 - Microsoft® Word 2013 - Challenges conviction of two counts of second-degree aggravated robbery. - State of Minnesota, Respondent, vs. Kevin Maurice Williams, Appellant. A15-644, Court of Appeals Unpublished, April 18, 2016. - A15-644 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS ... - - - pdf - 243813 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Jeffrey Allen Bachman, Appellant. A15-1122, Court of Appeals Unpublished, April 18, ... - 2016-04-07T08:50:50+00:00 - Microsoft® Word 2013 - 2016-04-18T14:26:22+00:00 - Microsoft® Word 2013 - Challenges conviction for driving under the influence of a controlled substance. - State of Minnesota, Respondent, vs. Jeffrey Allen Bachman, Appellant. A15-1122, Court of Appeals Unpublished, April 18, 2016. - A15-1122 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 198068 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Patrick James Buswell, Appellant. A15-804, Court of Appeals Unpublished, April 18, ... - 2016-04-12T11:55:51+00:00 - Microsoft® Word 2013 - 2016-04-18T13:49:21+00:00 - Microsoft® Word 2013 - Appellant challenges his convictions of being a prohibited person in possession of a firearm and possession of drug paraphernalia. - State of Minnesota, Respondent, vs. Patrick James Buswell, Appellant. A15-804, Court of Appeals Unpublished, April 18, 2016. - A15-804 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 115239 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Eric James Rutherford, Appellant. A15-834, Court of Appeals Unpublished, April 18, ... - 2016-04-12T13:13:24+00:00 - Microsoft® Word 2013 - 2016-04-18T13:58:14+00:00 - Microsoft® Word 2013 - Appeal from his conviction of fifth-degree criminal sexual conduct. - State of Minnesota, Respondent, vs. Eric James Rutherford, Appellant. A15-834, Court of Appeals Unpublished, April 18, 2016. - A15-834 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 133671 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Dana Jerome Duncombe, Appellant. A15-1013, Court of Appeals Unpublished, April 18, ... - 2016-04-12T14:35:30+00:00 - Microsoft® Word 2013 - 2016-04-18T13:57:03+00:00 - Microsoft® Word 2013 - Appellant challenges his conviction of possession of a firearm by an ineligible person. - State of Minnesota, Respondent, vs. Dana Jerome Duncombe, Appellant. A15-1013, Court of Appeals Unpublished, April 18, 2016. - A15-1013 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 41446 - Apr 18, - 2016 19:43:23 GMT - english - State of Minnesota, Respondent, vs. Renee Anita Vasko, Appellant. A15-1172, Court of Appeals Unpublished, April 18, ... - Minnesota Judicial Branch - 2016-04-11T09:32:39+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-18T14:32:55+00:00 - Adobe PDF Library 11.0 - 2016-04-11T14:32:30+00:00 - Challenges her misdemeanor conviction of violating a municipal blight ordinance. Reversed. - State of Minnesota, Respondent, vs. Renee Anita Vasko, Appellant. A15-1172, Court of Appeals Unpublished, April 18, 2016. - A15-1172 - 2016-04-18T00:00:00-0500 - 1 This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS ... - - - pdf - 132104 - Apr 18, - 2016 19:43:23 GMT - english - Continental Property Group, LLC, Appellant, vs. City of Wayzata, Respondent. A15-1550, Court of Appeals Unpublished, ... - 2016-04-12T12:17:16+00:00 - Microsoft® Word 2013 - 2016-04-18T14:33:58+00:00 - Microsoft® Word 2013 - Appeal from the citys denial of (1) a planned unit development concept plan, and (2) a height variance. - Continental Property Group, LLC, Appellant, vs. City of Wayzata, Respondent. A15-1550, Court of Appeals Unpublished, April 18, 2016. - A15-1550 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 43681 - Apr 18, - 2016 19:43:23 GMT - english - Excel Manufacturing, Inc., Appellant, vs. Todd Wondrow, et al., Respondents. A15-1325, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-04-12T09:39:38+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-18T14:34:55+00:00 - Adobe PDF Library 11.0 - 2016-04-12T14:39:29+00:00 - Appellant challenges the district courts summary-judgment dismissal of its lawsuit. - Excel Manufacturing, Inc., Appellant, vs. Todd Wondrow, et al., Respondents. A15-1325, Court of Appeals Unpublished, April 18, 2016. - A15-1325 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 157533 - Apr 18, - 2016 19:43:23 GMT - english - In the Matter of the Welfare of the Children of: S.M.M., D.M.P. and W.A.W., Parents. A15-1905, Court of Appeals ... - 2016-04-12T09:15:58+00:00 - Microsoft® Word 2013 - 2016-04-18T14:40:32+00:00 - Microsoft® Word 2013 - Termination of parental rights. - In the Matter of the Welfare of the Children of: S.M.M., D.M.P. and W.A.W., Parents. A15-1905, Court of Appeals Unpublished, April 18, 2016. - A15-1905 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 188663 - Apr 18, - 2016 19:43:23 GMT - english - Fern Hill Place Retail Association, Inc., Appellant, vs. Fern Hill Place Homeowners Association, Inc., Respondent. ... - 2016-04-11T14:09:17+00:00 - Microsoft® Word 2013 - 2016-04-18T14:42:45+00:00 - Microsoft® Word 2013 - Appellant retail association challenges the district court's denial of its motion to vacate an arbitration award. - Fern Hill Place Retail Association, Inc., Appellant, vs. Fern Hill Place Homeowners Association, Inc., Respondent. A15-1318, Court of Appeals Unpublished, April 18, 2016. - A15-1318 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 104914 - Apr 18, - 2016 19:43:23 GMT - english - Adrianne Robbennolt and obo minor child, petitioner, Respondent, vs. Sandi Weigum, Appellant. A15-1440, Court of ... - 2016-04-12T09:04:56+00:00 - Microsoft® Word 2013 - 2016-04-18T14:36:00+00:00 - Microsoft® Word 2013 - Pro se appellant challenges a harassment restraining order (HRO) granted to pro se respondent and her minor child. - Adrianne Robbennolt and obo minor child, petitioner, Respondent, vs. Sandi Weigum, Appellant. A15-1440, Court of Appeals Unpublished, April 18, 2016. - A15-1440 - 2016-04-18T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 118693 - Apr 13, - 2016 16:58:11 GMT - english - Toby Earl Johnson, Appellant, vs. State of Minnesota, Respondent. A15-698, Supreme Court, April 13, 2016. - 2016-04-06T16:34:59+00:00 - Microsoft® Word 2013 - 2016-04-13T11:52:53+00:00 - Microsoft® Word 2013 - Because the postconviction court properly construed appellant's motion brought pursuant to Minn. R. Crim. P. 27.03, subd. 9, as a petition for postconviction relief, and the petition was untimely under Minn. Stat. § 590.01, subd. 4(a) (2014), the court did not err in denying the petition. - Toby Earl Johnson, Appellant, vs. State of Minnesota, Respondent. A15-698, Supreme Court, April 13, 2016. - A15-698 - 2016-04-13T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0698 McLeod County Gildea, C.J. Took no part, Anderson, Chutich, JJ. Toby Earl Johnson, Appellant, vs. Filed: ... - - - pdf - 262115 - Apr 13, - 2016 16:58:11 GMT - english - Daniel L. Berglund, Relator, vs. Commissioner of Revenue, Respondent. A15-957, Supreme Court, April 13, 2016. - 2016-04-08T16:03:28+00:00 - Microsoft® Word 2013 - 2016-04-13T11:51:35+00:00 - Microsoft® Word 2013 - Under the plain language of Minn. Stat. §§ 270C.33, 270C.62 (2014), the tax liability reported on a commissioner-filed return is assessed when it is "made by the commissioner," is "in writing," and is "entered into the records of the commissioner." To the extent that Minn. R. 8160.0620 (2015) requires a commissioner-filed return to include the Commissioner of Revenue's signature, the rule is inconsistent with the plain language of Minn. Stat. § 270C.62. The notices of commissioner-filed returns provided relator with notice of his tax liability, consistent with his due process rights under the United States and Minnesota Constitutions. - Daniel L. Berglund, Relator, vs. Commissioner of Revenue, Respondent. A15-957, Supreme Court, April 13, 2016. - A15-957 - 2016-04-13T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0957 Tax Court Gildea, C.J. Took no part, Chutich, J. Daniel L. Berglund, Relator, vs. Filed: April 13, 2016 ... - - - pdf - 183633 - Apr 11, - 2016 15:06:39 GMT - english - In the Matter of the Civil Commitment of: Kenneth Donald Hand. A15-1341, Court of Appeals Published, April 11, 2016. - 2016-04-06T09:37:45+00:00 - Microsoft® Word 2013 - 2016-04-11T10:05:24+00:00 - Microsoft® Word 2013 - 1. If an individual committed as a sexually dangerous person (SDP) brings a motion pursuant to rule 60.02 of the Minnesota Rules of Civil Procedure for relief from an order for indeterminate commitment alleging that the Minnesota Commitment and Treatment Act (MCTA), Minn. Stat. §§ 253D.01….36 (2014), is unconstitutional under Karsjens v. Jesson (Karsjens I), 109 F. Supp. 3d 1139, 1157 (D. Minn. 2015), motion to certify appeal denied, Civ. No. 11-3659, 2015 WL 4478972 (D. Minn. July 22, 2015), and therefore his commitment to the Minnesota Sex Offender Program (MSOP) was unlawful ab initio, the motion is barred by the exclusive transfer-or-discharge remedies of the MCTA. 2. When an SDP seeks a temporary restraining order (TRO) or temporary injunction pursuant to rules 65.01 and 65.02 of the Minnesota Rules of Civil Procedure, respectively, and that person has failed to state a viable claim for relief from an order for indeterminate commitment, the district court does not abuse its discretion by denying such relief. - In the Matter of the Civil Commitment of: Kenneth Donald Hand. A15-1341, Court of Appeals Published, April 11, 2016. - A15-1341 - 2016-04-11T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1341 In the Matter of the Civil Commitment of: Kenneth Donald Hand. Filed April 11, 2016 Affirmed Reyes, Judge Crow ... - - - pdf - 187268 - Apr 11, - 2016 15:06:39 GMT - english - Merceil Burkhalter, Appellant, vs. Dedrick D. Mays, et al., Defendants, Building Trades Federal Credit Union, ... - 2016-04-05T10:53:57+00:00 - Microsoft® Word 2013 - 2016-04-11T10:03:56+00:00 - Microsoft® Word 2013 - I. The protection afforded to good-faith purchasersŽ under Minnesota Statutes section 508.25 (2014) encompasses good-faith encumbrancers. II. A lender who secures a loan to purchase Torrens property is not disqualified from protection as a good-faith encumbrancer under Minnesota Statutes section 508.25 simply because the lender secured the loan after it became aware of circumstances on which the ostensible seller might eventually base an equitable-mortgage claim. - Merceil Burkhalter, Appellant, vs. Dedrick D. Mays, et al., Defendants, Building Trades Federal Credit Union, Respondent. A15-1078, Court of Appeals Published, April 11, 2016. - A15-1078 - 2016-04-11T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1078 Merceil Burkhalter, Appellant, vs. Dedrick D. Mays, et al., Defendants, Building Trades Federal Credit Union, ... - - - pdf - 199231 - Apr 11, - 2016 15:06:39 GMT - english - State of Minnesota, ex rel., Branden Lee Pollard, petitioner, Appellant, vs. Tom Roy, Commissioner of Corrections, ... - 2016-04-04T13:18:38+00:00 - Microsoft® Word 2013 - 2016-04-11T10:06:16+00:00 - Microsoft® Word 2013 - Under Minn. Stat. § 609.3455, subd. 6 (Supp. 2005), an offenders conditional-release term is not reduced by the time that the offender is incarcerated during the supervised-release term. - State of Minnesota, ex rel., Branden Lee Pollard, petitioner, Appellant, vs. Tom Roy, Commissioner of Corrections, Respondent. A15-1580, Court of Appeals Published, April 11, 2016. - A15-1580 - 2016-04-11T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1580 State of Minnesota, ex rel., Branden Lee Pollard, petitioner, Appellant, vs. Tom Roy, Commissioner of Corrections, ... - - - pdf - 110094 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Myles Ray Estes, Appellant. A15-660, Court of Appeals Unpublished, April 11, 2016. - 2016-03-31T15:49:15+00:00 - Microsoft® Word 2013 - 2016-04-11T11:19:37+00:00 - Microsoft® Word 2013 - Challenges to conviction of aggravated robbery. - State of Minnesota, Respondent, vs. Myles Ray Estes, Appellant. A15-660, Court of Appeals Unpublished, April 11, 2016. - A15-660 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123820 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Eric Tyler Schwappach, Appellant. A15-624, Court of Appeals Unpublished, April 11, ... - 2016-04-05T12:51:25+00:00 - Microsoft® Word 2013 - 2016-04-11T11:16:26+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Eric Tyler Schwappach, Appellant. A15-624, Court of Appeals Unpublished, April 11, 2016. - A15-624 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 118919 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Carlos Maurice Harris, Appellant. A15-711, Court of Appeals Unpublished, April 11, ... - 2016-04-05T13:26:23+00:00 - Microsoft® Word 2013 - 2016-04-11T11:41:23+00:00 - Microsoft® Word 2013 - Challenges possession of a firearm by an ineligible person. - State of Minnesota, Respondent, vs. Carlos Maurice Harris, Appellant. A15-711, Court of Appeals Unpublished, April 11, 2016. - A15-711 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 168611 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Mark Anthony Givins, Appellant. A15-685, Court of Appeals Unpublished, April 11, ... - 2016-04-05T15:33:36+00:00 - Microsoft® Word 2013 - 2016-04-11T11:39:16+00:00 - Microsoft® Word 2013 - Challenges to conviction of burglary. - State of Minnesota, Respondent, vs. Mark Anthony Givins, Appellant. A15-685, Court of Appeals Unpublished, April 11, 2016. - A15-685 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 207337 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Patrick Charles Bonga, Appellant. A14-961, Court of Appeals Unpublished, April 11, ... - 2016-04-06T09:32:40+00:00 - Microsoft® Word 2013 - 2016-04-11T10:58:52+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - State of Minnesota, Respondent, vs. Patrick Charles Bonga, Appellant. A14-961, Court of Appeals Unpublished, April 11, 2016. - A14-961 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 121648 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. James Dewayne Kelley, Appellant. A15-749, Court of Appeals Unpublished, April 11, ... - 2016-04-05T16:41:26+00:00 - Microsoft® Word 2013 - 2016-04-11T11:43:18+00:00 - Microsoft® Word 2013 - Challenges to conviction of misdemeanor trespassing and disorderly conduct. - State of Minnesota, Respondent, vs. James Dewayne Kelley, Appellant. A15-749, Court of Appeals Unpublished, April 11, 2016. - A15-749 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 166783 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Benjamin Danton Newman, Appellant. A15-990, Court of Appeals Unpublished, April 11, ... - 2016-04-01T13:27:06+00:00 - Microsoft® Word 2013 - 2016-04-11T12:01:12+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Benjamin Danton Newman, Appellant. A15-990, Court of Appeals Unpublished, April 11, 2016. - A15-990 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 183473 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Marcus Anthony Mattox, Appellant. A15-825, Court of Appeals Unpublished, April 11, ... - 2016-04-01T09:47:43+00:00 - Microsoft® Word 2013 - 2016-04-11T11:54:00+00:00 - Microsoft® Word 2013 - Challenges to convictions of convictions for felony domestic assault, terroristic threats, theft, and false imprisonment. - State of Minnesota, Respondent, vs. Marcus Anthony Mattox, Appellant. A15-825, Court of Appeals Unpublished, April 11, 2016. - A15-825 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 173765 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Tylynne Lashawn Wilson, Appellant. A15-1001, Court of Appeals Unpublished, April 11,... - 2016-03-31T15:55:39+00:00 - Microsoft® Word 2013 - 2016-04-11T12:03:55+00:00 - Microsoft® Word 2013 - Challenges to conviction of aiding an offender, accomplice after the fact. - State of Minnesota, Respondent, vs. Tylynne Lashawn Wilson, Appellant. A15-1001, Court of Appeals Unpublished, April 11, 2016. - A15-1001 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122196 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Charles ONeal Darby, Jr., Appellant. A15-1038, Court of Appeals Unpublished, April ... - 2016-04-05T14:10:18+00:00 - Microsoft® Word 2013 - 2016-04-11T12:08:13+00:00 - Microsoft® Word 2013 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. Charles ONeal Darby, Jr., Appellant. A15-1038, Court of Appeals Unpublished, April 11, 2016. - A15-1038 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122080 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Antonio Dupree Wright, Appellant. A15-955, Court of Appeals Unpublished, April 11, ... - 2016-04-05T14:02:18+00:00 - Microsoft® Word 2013 - 2016-04-11T11:58:27+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony domestic assault. - State of Minnesota, Respondent, vs. Antonio Dupree Wright, Appellant. A15-955, Court of Appeals Unpublished, April 11, 2016. - A15-955 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 97091 - Apr 11, - 2016 19:49:57 GMT - english - Baron Montero Jones, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1090, Court of Appeals Unpublished, ... - 2016-04-05T10:10:04+00:00 - Microsoft® Word 2013 - 2016-04-11T13:21:58+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Baron Montero Jones, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1090, Court of Appeals Unpublished, April 11, 2016. - A15-1090 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 153503 - Apr 11, - 2016 19:49:58 GMT - english - Jacquet Deon Munn, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1222, Court of Appeals Unpublished, ... - 2016-04-01T12:45:16+00:00 - Microsoft® Word 2013 - 2016-04-11T13:32:32+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Jacquet Deon Munn, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1222, Court of Appeals Unpublished, April 11, 2016. - A15-1222 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 136721 - Apr 11, - 2016 19:49:58 GMT - english - Melissa Dawn Paisley, petitioner, Respondent, vs. Clark Davis Kratzer, Appellant. A15-1115, Court of Appeals ... - 2016-04-04T16:02:44+00:00 - Microsoft® Word 2013 - 2016-04-11T13:24:38+00:00 - Microsoft® Word 2013 - Child custody dispute. - Melissa Dawn Paisley, petitioner, Respondent, vs. Clark Davis Kratzer, Appellant. A15-1115, Court of Appeals Unpublished, April 11, 2016. - A15-1115 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 179017 - Apr 11, - 2016 19:49:57 GMT - english - Boardwalk Bar & Grill, LLC, Relator, vs. East Grand Forks City Council, Respondent. A15-1071, Court of Appeals ... - 2016-04-04T10:56:15+00:00 - Microsoft® Word 2013 - 2016-04-11T13:20:36+00:00 - Microsoft® Word 2013 - Challenges conditional renewal of liquor license. - Boardwalk Bar & Grill, LLC, Relator, vs. East Grand Forks City Council, Respondent. A15-1071, Court of Appeals Unpublished, April 11, 2016. - A15-1071 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 181769 - Apr 11, - 2016 19:49:58 GMT - english - Mikel Thorstenson, Respondent, vs. Waterford Oil Co., Inc., Relator, Department of Employment and Economic Development, ... - 2016-04-05T09:08:42+00:00 - Microsoft® Word 2013 - 2016-04-11T14:00:23+00:00 - Microsoft® Word 2013 - Employer appeals an unemployment-law judges (ULJ) decision that respondent did not engage in employment misconduct rendering him ineligible for unemployment benefits. - Mikel Thorstenson, Respondent, vs. Waterford Oil Co., Inc., Relator, Department of Employment and Economic Development, Respondent. A15-1380, Court of Appeals Unpublished, April 11, 2016. - A15-1380 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 39214 - Apr 11, - 2016 19:49:58 GMT - english - In the Matter of the Welfare of the Child of: C. L. O. and J. J. S., Parents. A15-1194, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-04-05T14:12:17+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-11T13:29:26+00:00 - Adobe PDF Library 11.0 - 2016-04-05T19:09:29+00:00 - Termination of parental rights matter. - In the Matter of the Welfare of the Child of: C. L. O. and J. J. S., Parents. A15-1194, Court of Appeals Unpublished, April 11, 2016. - A15-1194 - 2016-04-11T00:00:00-0500 - 1 This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS ... - - - pdf - 207923 - Apr 11, - 2016 19:49:44 GMT - english - In re the Marriage of: James Walter Shaw, petitioner, Respondent, vs. Barbara Ann Shaw, Appellant. A15-771, Court of ... - 2016-04-05T08:47:23+00:00 - Microsoft® Word 2013 - 2016-04-11T11:46:37+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. Reversed and remanded. - In re the Marriage of: James Walter Shaw, petitioner, Respondent, vs. Barbara Ann Shaw, Appellant. A15-771, Court of Appeals Unpublished, April 11, 2016. - A15-771 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 119566 - Apr 11, - 2016 19:49:44 GMT - english - Theodore Lee Wicken, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-813, Court of Appeals Unpublished, ... - 2016-04-05T10:27:37+00:00 - Microsoft® Word 2013 - 2016-04-11T11:51:38+00:00 - Microsoft® Word 2013 - Challenges the postconviction courts denial of petition to withdraw guilty plea. - Theodore Lee Wicken, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-813, Court of Appeals Unpublished, April 11, 2016. - A15-813 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 96054 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Maxwell Robert Flynn, Appellant. A15-807, Court of Appeals Unpublished, April 11, ... - 2016-04-04T10:46:10+00:00 - Microsoft® Word 2013 - 2016-04-11T11:49:13+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Maxwell Robert Flynn, Appellant. A15-807, Court of Appeals Unpublished, April 11, 2016. - A15-807 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 169464 - Apr 11, - 2016 19:49:58 GMT - english - State of Minnesota, Respondent, vs. James Robert Stepke, Appellant. A15-1159, Court of Appeals Unpublished, April 11, ... - 2016-04-01T12:26:09+00:00 - Microsoft® Word 2013 - 2016-04-11T13:25:49+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree test refusal. - State of Minnesota, Respondent, vs. James Robert Stepke, Appellant. A15-1159, Court of Appeals Unpublished, April 11, 2016. - A15-1159 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS ... - - - pdf - 106625 - Apr 11, - 2016 19:49:58 GMT - english - State of Minnesota, Appellant, vs. Daniel Alvin Hennen, Respondent. A15-1376, Court of Appeals Unpublished, April 11, ... - 2016-03-31T10:08:38+00:00 - Microsoft® Word 2013 - 2016-04-11T13:47:12+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Appellant, vs. Daniel Alvin Hennen, Respondent. A15-1376, Court of Appeals Unpublished, April 11, 2016. - A15-1376 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 191162 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Ger Lee, Appellant. A15-920, Court of Appeals Unpublished, April 11, 2016. - 2016-04-01T08:46:40+00:00 - Microsoft® Word 2013 - 2016-04-11T11:56:28+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree assault. - State of Minnesota, Respondent, vs. Ger Lee, Appellant. A15-920, Court of Appeals Unpublished, April 11, 2016. - A15-920 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 156780 - Apr 11, - 2016 19:49:44 GMT - english - Nathan J. Knoernschild, et al., Respondents, vs. Dennis Halverson, Appellant. A15-909, Court of Appeals Unpublished, ... - 2016-04-05T09:49:17+00:00 - Microsoft® Word 2013 - 2016-04-11T11:55:12+00:00 - Microsoft® Word 2013 - Challenges to grant of summary judgment. - Nathan J. Knoernschild, et al., Respondents, vs. Dennis Halverson, Appellant. A15-909, Court of Appeals Unpublished, April 11, 2016. - A15-909 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS ... - - - pdf - 132499 - Apr 11, - 2016 19:49:44 GMT - english - Donna Jean Sjolander f/k/a Donna Jean Carlson, petitioner, Respondent, vs. Steven Gary Carlson, Appellant. A15-362, ... - 2016-03-30T14:23:25+00:00 - Microsoft® Word 2013 - 2016-04-11T11:06:33+00:00 - Microsoft® Word 2013 - Parenting-time dispute. Affirmed in part, reversed in part, and remanded. - Donna Jean Sjolander f/k/a Donna Jean Carlson, petitioner, Respondent, vs. Steven Gary Carlson, Appellant. A15-362, Court of Appeals Unpublished, April 11, 2016. - A15-362 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 108410 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Eric Jamison Brewer, Appellant. A15-622, Court of Appeals Unpublished, April 11, ... - 2016-04-04T15:22:45+00:00 - Microsoft® Word 2013 - 2016-04-11T11:13:07+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony domestic assault. - State of Minnesota, Respondent, vs. Eric Jamison Brewer, Appellant. A15-622, Court of Appeals Unpublished, April 11, 2016. - A15-622 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 186176 - Apr 11, - 2016 19:50:25 GMT - english - In the Matter of the Civil Commitment of: Steven Merrill Hogy. A15-1514, Court of Appeals Unpublished, April 11, 2016. - 2016-04-04T14:43:30+00:00 - Microsoft® Word 2013 - 2016-04-11T14:24:16+00:00 - Microsoft® Word 2013 - Challenges denial of motion for relief from civil commitment. - In the Matter of the Civil Commitment of: Steven Merrill Hogy. A15-1514, Court of Appeals Unpublished, April 11, 2016. - A15-1514 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 109858 - Apr 11, - 2016 19:50:26 GMT - english - James Adam Roth, Appellant, vs. Emily Johnson Piper, Commissioner of Human Services, Respondent. A15-1956, Court of ... - 2016-04-05T08:29:08+00:00 - Microsoft® Word 2013 - 2016-04-11T14:48:47+00:00 - Microsoft® Word 2013 - Challenges denial of petition for full discharge from civil commitment as a sexually dangerous person (SDP). - James Adam Roth, Appellant, vs. Emily Johnson Piper, Commissioner of Human Services, Respondent. A15-1956, Court of Appeals Unpublished, April 11, 2016. - A15-1956 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 223985 - Apr 11, - 2016 19:49:57 GMT - english - Mohammad Sonbol, Appellant, vs. Green and White Taxi Cab Company, Inc., Respondent. A15-1044, Court of Appeals ... - 2016-04-05T13:29:57+00:00 - Microsoft® Word 2013 - 2016-04-11T13:08:46+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of jury-trial demand. - Mohammad Sonbol, Appellant, vs. Green and White Taxi Cab Company, Inc., Respondent. A15-1044, Court of Appeals Unpublished, April 11, 2016. - A15-1044 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 102930 - Apr 11, - 2016 19:49:57 GMT - english - State of Minnesota, Respondent, vs. Michael Peter Beard, Appellant. A15-1045, Court of Appeals Unpublished, April 11, ... - 2016-04-01T09:19:19+00:00 - Microsoft® Word 2013 - 2016-04-11T13:17:37+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony test-refusal. - State of Minnesota, Respondent, vs. Michael Peter Beard, Appellant. A15-1045, Court of Appeals Unpublished, April 11, 2016. - A15-1045 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174825 - Apr 11, - 2016 19:49:44 GMT - english - Michael A. Pemrick, Relator, vs. Department of Employment and Economic Development, Respondent. A15-1028, Court of ... - 2016-04-04T10:36:12+00:00 - Microsoft® Word 2013 - 2016-04-11T12:06:40+00:00 - Microsoft® Word 2013 - Employer challenges an unemployment-law judges (ULJ) determination that 43 workers were employees. - Michael A. Pemrick, Relator, vs. Department of Employment and Economic Development, Respondent. A15-1028, Court of Appeals Unpublished, April 11, 2016. - A15-1028 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 126935 - Apr 11, - 2016 19:50:25 GMT - english - In the Matter of the Welfare of the Children of: M. O., Parent. A15-1868, Court of Appeals Unpublished, April 11, 2016. - 2016-04-01T09:35:32+00:00 - Microsoft® Word 2013 - 2016-04-11T14:33:58+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: M. O., Parent. A15-1868, Court of Appeals Unpublished, April 11, 2016. - A15-1868 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 109001 - Apr 11, - 2016 19:49:58 GMT - english - Rojelio Castillo, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1196, Court of Appeals Unpublished, ... - 2016-04-01T11:01:44+00:00 - Microsoft® Word 2013 - 2016-04-11T13:31:07+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Rojelio Castillo, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1196, Court of Appeals Unpublished, April 11, 2016. - A15-1196 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 158027 - Apr 11, - 2016 19:49:58 GMT - english - Aaron Wayne Downing, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1171, Court of Appeals Unpublished, ... - 2016-04-04T15:28:39+00:00 - Microsoft® Word 2013 - 2016-04-11T13:27:49+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - Aaron Wayne Downing, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1171, Court of Appeals Unpublished, April 11, 2016. - A15-1171 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 167944 - Apr 11, - 2016 19:49:44 GMT - english - State of Minnesota, Respondent, vs. Maurice Deon Jackson, Appellant. A15-671, Court of Appeals Unpublished, April 11, ... - 2016-04-05T13:02:28+00:00 - Microsoft® Word 2013 - 2016-04-11T11:24:12+00:00 - Microsoft® Word 2013 - Challenges to convictions of convictions of first-degree aggravated robbery and domestic assault by strangulation. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Maurice Deon Jackson, Appellant. A15-671, Court of Appeals Unpublished, April 11, 2016. - A15-671 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 193433 - Apr 11, - 2016 19:49:58 GMT - english - Brett Thomas Green, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1386, Court of Appeals Unpublished, ... - 2016-03-31T11:44:54+00:00 - Microsoft® Word 2013 - 2016-04-11T14:04:48+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Brett Thomas Green, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1386, Court of Appeals Unpublished, April 11, 2016. - A15-1386 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 28904 - Apr 11, - 2016 19:50:25 GMT - english - Morris Gaye Kayee, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1938, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-04-05T11:53:47+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-11T14:36:40+00:00 - Adobe PDF Library 11.0 - 2016-04-05T16:51:04+00:00 - Challenges denial of motion to correct sentence. - Morris Gaye Kayee, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1938, Court of Appeals Unpublished, April 11, 2016. - A15-1938 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 171639 - Apr 11, - 2016 19:49:58 GMT - english - State of Minnesota, Respondent, vs. Ryan Roy Becker, Appellant. A15-1379, Court of Appeals Unpublished, April 11, 2016. - 2016-04-05T13:22:27+00:00 - Microsoft® Word 2013 - 2016-04-11T13:58:22+00:00 - Microsoft® Word 2013 - Challenges the district courts restitution order. - State of Minnesota, Respondent, vs. Ryan Roy Becker, Appellant. A15-1379, Court of Appeals Unpublished, April 11, 2016. - A15-1379 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174215 - Apr 11, - 2016 19:49:58 GMT - english - David Richard Carlson, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1388, Court of Appeals ... - 2016-04-06T14:03:13+00:00 - Microsoft® Word 2013 - 2016-04-11T14:06:37+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - David Richard Carlson, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1388, Court of Appeals Unpublished, April 11, 2016. - A15-1388 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 165271 - Apr 11, - 2016 19:50:25 GMT - english - Kasele Howard, Relator, vs. Family First Home Care, Inc., Respondent, Department of Employment and Economic Development,... - 2016-04-05T12:27:19+00:00 - Microsoft® Word 2013 - 2016-04-11T14:21:30+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Kasele Howard, Relator, vs. Family First Home Care, Inc., Respondent, Department of Employment and Economic Development, Respondent. A15-1487, Court of Appeals Unpublished, April 11, 2016. - A15-1487 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 116534 - Apr 11, - 2016 19:49:58 GMT - english - State of Minnesota, Respondent, vs. Rico Patrick Howard, Appellant. A15-1391, Court of Appeals Unpublished, April 11, ... - 2016-04-01T09:05:30+00:00 - Microsoft® Word 2013 - 2016-04-11T14:11:18+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree murder. - State of Minnesota, Respondent, vs. Rico Patrick Howard, Appellant. A15-1391, Court of Appeals Unpublished, April 11, 2016. - A15-1391 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123047 - Apr 11, - 2016 19:50:25 GMT - english - In the Matter of the Welfare of the Children of: J. L. C. and M. C., Parents. A15-1723, Court of Appeals Unpublished, ... - 2016-03-31T16:08:15+00:00 - Microsoft® Word 2013 - 2016-04-11T14:31:38+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: J. L. C. and M. C., Parents. A15-1723, Court of Appeals Unpublished, April 11, 2016. - A15-1723 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 197680 - Apr 11, - 2016 19:50:25 GMT - english - Boundary Waters Bank, Respondent, vs. William H. McGaughey, Appellant, Lian Y. McGaughey, Defendant. A15-1950, Court of ... - 2016-04-05T12:52:12+00:00 - Microsoft® Word 2013 - 2016-04-11T14:39:07+00:00 - Microsoft® Word 2013 - Real-property-foreclosure action. - Boundary Waters Bank, Respondent, vs. William H. McGaughey, Appellant, Lian Y. McGaughey, Defendant. A15-1950, Court of Appeals Unpublished, April 11, 2016. - A15-1950 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 127576 - Apr 11, - 2016 19:49:58 GMT - english - In re the Marriage of: Mary Patricia Myhre, petitioner, Respondent, vs. Steven Kenneth Myhre, Appellant. A15-1464, ... - 2016-04-01T15:41:57+00:00 - Microsoft® Word 2013 - 2016-04-11T14:18:38+00:00 - Microsoft® Word 2013 - Spousal maintenance dispute and child support dispute. - In re the Marriage of: Mary Patricia Myhre, petitioner, Respondent, vs. Steven Kenneth Myhre, Appellant. A15-1464, Court of Appeals Unpublished, April 11, 2016. - A15-1464 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 99358 - Apr 11, - 2016 19:49:58 GMT - english - State of Minnesota, Respondent, vs. Daniel Lee Bender, Appellant. A15-1234, Court of Appeals Unpublished, April 11, ... - 2016-04-04T15:34:49+00:00 - Microsoft® Word 2013 - 2016-04-11T13:38:36+00:00 - Microsoft® Word 2013 - Challenges to conviction of fifth-degree domestic assault. - State of Minnesota, Respondent, vs. Daniel Lee Bender, Appellant. A15-1234, Court of Appeals Unpublished, April 11, 2016. - A15-1234 - 2016-04-11T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 954902 - Apr 7, - 2016 20:24:26 GMT - english - State of Minnesota, Respondent, vs. Timothy John Huber, Appellant. A13-1928, Supreme Court Order, April 6, 2016. - 2016-04-06T15:49:00+00:00 - Canon DR-M140 TWAIN - 2016-04-07T15:20:18+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Page 12 of the slip opinion filed on April 6, 2016, is hereby amended. - State of Minnesota, Respondent, vs. Timothy John Huber, Appellant. A13-1928, Supreme Court Order, April 6, 2016. - A13-1928 - 2016-04-06T00:00:00-0500 - April 6, 2016 STATE OF MINNESOTA IN SUPREME COURT A13-1928 fl Om~EOF AJ~~~BJAJECcurra State of Minnesota, Respondent, vs. Timothy John Huber, Appellant. ORDER ... - - - pdf - 282544 - Apr 6, - 2016 15:56:41 GMT - english - LaVonne Pfeil, Individually and as Trustee for Heirs of Henry Pfeil, deceased, Appellant, vs. St. Matthews Evangelical ... - 2016-04-05T13:25:20+00:00 - Microsoft® Word 2013 - 2016-04-06T10:51:19+00:00 - Microsoft® Word 2013 - Under the ecclesiastical abstention doctrine, pastors and their church are not liable to former parishioners for defamation or related common-law torts for statements made by the pastors during the course of formal church discipline proceedings when the statements were communicated only to other members of the church and participants in the formal church discipline process. - LaVonne Pfeil, Individually and as Trustee for Heirs of Henry Pfeil, deceased, Appellant, vs. St. Matthews Evangelical Lutheran Church of the Unaltered Augsburg Confession of Worthington, Nobles County, Minnesota, et al., Respondents. A14-605, Supreme Court, April 6, 2016. - A14-605 - 2016-04-06T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0605 Court of Appeals Anderson, J. Dissenting, Lillehaug, J., Gildea, C.J. Took no part, Hudson, Chutich, JJ. ... - - - pdf - 203247 - Apr 12, - 2016 13:45:04 GMT - english - Melinda M. Binkley, Trustee on behalf of the heirs and next of kin of Kirk T. Lloyd, II, Appellant, vs. Allina Health ... - 2016-04-11T12:04:21+00:00 - Microsoft® Word 2013 - 2016-04-12T08:43:38+00:00 - Microsoft® Word 2013 - Minnesota Statutes § 253B.23, subd. 4 (2014), provides immunity to a medical-services provider that, in good faith, denies admission to a person seeking voluntary mental-health treatment under Minn. Stat. § 253B.04, subd. 1 (2014). Affirmed in part, reversed in part, and remanded. - Melinda M. Binkley, Trustee on behalf of the heirs and next of kin of Kirk T. Lloyd, II, Appellant, vs. Allina Health System, et al., Respondents. A14-794, Supreme Court, April 6, 2016. - A14-794 - 2016-04-06T00:00:00-0500 - STATE OF MINNESOTA IN SUPREME COURT A14-0794 Court of Appeals Anderson, J. Concurring, Lillehaug, J. Took no part, Hudson, Chutich, JJ. Melinda M. Binkley, ... - - - pdf - 194424 - Apr 4, - 2016 16:45:02 GMT - english - Paek Saengkeo, Respondent, vs. Minnesota Automobile Assigned Claims, Appellant. A15-1267, Court of Appeals Published, ... - 2016-03-24T14:11:01+00:00 - Microsoft® Word 2013 - 2016-04-04T11:44:35+00:00 - Microsoft® Word 2013 - Under Minn. Stat. § 65B.64, subd. 3 (2014), the assigned claims plan, an injured passenger of an uninsured vehicle is not entitled to economic loss benefits if the injured passenger is dwelling with a family member who is an uninsured owner of a vehicle that must be insured under Minn. Stat. § 65B.48 (2014), unless there is clear and convincing evidence that the owner did not contemplate the use or operation of his or her uninsured vehicle by anyone. Reversed. - Paek Saengkeo, Respondent, vs. Minnesota Automobile Assigned Claims, Appellant. A15-1267, Court of Appeals Published, April 4, 2016. - A15-1267 - 2016-04-04T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1267 Paek Saengkeo, Respondent, vs. Minnesota Automobile Assigned Claims, Appellant. Filed April 4, 2016 Reversed ... - - - pdf - 141432 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Peter Louis John, Appellant. A15-303, Court of Appeals Unpublished, April 4, 2016. - 2016-03-29T12:25:09+00:00 - Microsoft® Word 2013 - 2016-04-04T11:54:14+00:00 - Microsoft® Word 2013 - Challenges to conviction of aiding and abetting second-degree murder. - State of Minnesota, Respondent, vs. Peter Louis John, Appellant. A15-303, Court of Appeals Unpublished, April 4, 2016. - A15-303 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 232143 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Rip Wayne Rust, Appellant. A15-480, Court of Appeals Unpublished, April 4, 2016. - 2016-03-29T13:51:20+00:00 - Microsoft® Word 2013 - 2016-04-04T12:05:57+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Rip Wayne Rust, Appellant. A15-480, Court of Appeals Unpublished, April 4, 2016. - A15-480 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 112063 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Montalvo Knowles, Appellant. A15-452, Court of Appeals Unpublished, April 4, 2016. - 2016-03-24T14:22:56+00:00 - Microsoft® Word 2013 - 2016-04-04T12:02:02+00:00 - Microsoft® Word 2013 - Challenges to convictions of domestic assault by strangulation and gross-misdemeanor domestic assault. - State of Minnesota, Respondent, vs. Montalvo Knowles, Appellant. A15-452, Court of Appeals Unpublished, April 4, 2016. - A15-452 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 100838 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Khong Meng Kong, Appellant. A15-859, Court of Appeals Unpublished, April 4, 2016. - 2016-03-24T14:34:37+00:00 - Microsoft® Word 2013 - 2016-04-04T13:40:54+00:00 - Microsoft® Word 2013 - Challenges possession of a firearm by an ineligible person. - State of Minnesota, Respondent, vs. Khong Meng Kong, Appellant. A15-859, Court of Appeals Unpublished, April 4, 2016. - A15-859 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 110190 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Ann Marie Hoyer, Appellant. A15-919, Court of Appeals Unpublished, April 4, 2016. - 2016-03-29T13:42:20+00:00 - Microsoft® Word 2013 - 2016-04-04T13:49:19+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Ann Marie Hoyer, Appellant. A15-919, Court of Appeals Unpublished, April 4, 2016. - A15-919 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 190150 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Daniel Barenburg, Appellant. A15-607, Court of Appeals Unpublished, April 4, 2016. - 2016-03-28T11:16:57+00:00 - Microsoft® Word 2013 - 2016-04-04T12:14:22+00:00 - Microsoft® Word 2013 - Challenges to conviction of making terroristic threats. Affirmed in part, and reversed in part. - State of Minnesota, Respondent, vs. Daniel Barenburg, Appellant. A15-607, Court of Appeals Unpublished, April 4, 2016. - A15-607 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 103879 - Apr 4, - 2016 19:10:22 GMT - english - Shauna Marie Krupicka, Respondent, vs. Paul John Hassinger, Appellant. A15-1231, Court of Appeals Unpublished, April 4, ... - 2016-03-24T14:29:28+00:00 - Microsoft® Word 2013 - 2016-04-04T14:00:54+00:00 - Microsoft® Word 2013 - Appellant challenges the district courts order denying his motion to modify or vacate a harassment restraining order (HRO). - Shauna Marie Krupicka, Respondent, vs. Paul John Hassinger, Appellant. A15-1231, Court of Appeals Unpublished, April 4, 2016. - A15-1231 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 130583 - Apr 4, - 2016 19:10:12 GMT - english - Jarrod Dwayne Miller, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-795, Court of Appeals Unpublished, ... - 2016-03-28T10:21:22+00:00 - Microsoft® Word 2013 - 2016-04-04T13:26:44+00:00 - Microsoft® Word 2013 - Challenges possession of a firearm by an ineligible person. - Jarrod Dwayne Miller, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-795, Court of Appeals Unpublished, April 4, 2016. - A15-795 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 124117 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Dean James Roehler, Appellant. A12-2135, Court of Appeals Unpublished, April 4, ... - 2016-03-29T11:37:30+00:00 - Microsoft® Word 2013 - 2016-04-04T11:49:57+00:00 - Microsoft® Word 2013 - On remand from the Minnesota Supreme Court, which directed this court to reconsider our earlier decision in light of the supreme courts decisions in State v. Stavish, 868 N.W.2d 670 (Minn. 2015), and State v. Lindquist, 869 N.W.2d 863 (Minn. 2015). - State of Minnesota, Respondent, vs. Dean James Roehler, Appellant. A12-2135, Court of Appeals Unpublished, April 4, 2016. - A12-2135 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A12- ... - - - pdf - 149797 - Apr 4, - 2016 19:10:12 GMT - english - Washington County HRA, Respondent, vs. Kuohsiou Huang, Appellant. A15-879, Court of Appeals Unpublished, April 4, 2016. - 2016-03-29T17:22:47+00:00 - Microsoft® Word 2013 - 2016-04-04T13:43:34+00:00 - Microsoft® Word 2013 - Challenges eviction action. - Washington County HRA, Respondent, vs. Kuohsiou Huang, Appellant. A15-879, Court of Appeals Unpublished, April 4, 2016. - A15-879 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 115853 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. James Pierre Dortch, Appellant. A15-623, Court of Appeals Unpublished, April 4, ... - 2016-03-29T09:58:34+00:00 - Microsoft® Word 2013 - 2016-04-04T12:16:59+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. James Pierre Dortch, Appellant. A15-623, Court of Appeals Unpublished, April 4, 2016. - A15-623 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 162574 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Jesse Andrew Faust, Appellant. A15-428, Court of Appeals Unpublished, April 4, 2016. - 2016-03-29T11:50:37+00:00 - Microsoft® Word 2013 - 2016-04-04T11:59:18+00:00 - Microsoft® Word 2013 - Challenges drug-related convictions. - State of Minnesota, Respondent, vs. Jesse Andrew Faust, Appellant. A15-428, Court of Appeals Unpublished, April 4, 2016. - A15-428 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 110573 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Robert James Fallin, Appellant. A15-642, Court of Appeals Unpublished, April 4, ... - 2016-03-29T10:59:04+00:00 - Microsoft® Word 2013 - 2016-04-04T12:18:51+00:00 - Microsoft® Word 2013 - Challenges drug-related convictions. - State of Minnesota, Respondent, vs. Robert James Fallin, Appellant. A15-642, Court of Appeals Unpublished, April 4, 2016. - A15-642 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 223111 - Apr 4, - 2016 19:10:23 GMT - english - In re the Marriage of: Amy Daiker Werger, petitioner, Respondent, vs. Brett Michael Werger, Appellant. A15-1527, Court ... - 2016-03-29T16:39:31+00:00 - Microsoft® Word 2013 - 2016-04-04T14:08:17+00:00 - Microsoft® Word 2013 - Child custody dispute. - In re the Marriage of: Amy Daiker Werger, petitioner, Respondent, vs. Brett Michael Werger, Appellant. A15-1527, Court of Appeals Unpublished, April 4, 2016. - A15-1527 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 187011 - Apr 4, - 2016 19:10:12 GMT - english - Deborah Meckola, as Trustee for the Heirs of Jordan Adams, Decedent, Respondent, vs. Thomas J. Rishavy, M.D., et al., ... - 2016-03-28T15:34:30+00:00 - Microsoft® Word 2013 - 2016-04-04T12:20:57+00:00 - Microsoft® Word 2013 - Following a jury trial on respondents medical-malpractice wrongful-death claims, Appellants seek reversal of a money judgment against them and remand for a new trial. - Deborah Meckola, as Trustee for the Heirs of Jordan Adams, Decedent, Respondent, vs. Thomas J. Rishavy, M.D., et al., Appellants. A15-693, Court of Appeals Unpublished, April 4, 2016. - A15-693 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 195546 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. JaJuan Anthony Reed, Sr., Appellant. A15-557, Court of Appeals Unpublished, April 4,... - 2016-03-28T15:43:07+00:00 - Microsoft® Word 2013 - 2016-04-04T12:10:35+00:00 - Microsoft® Word 2013 - Challenges to felony domestic assault conviction. - State of Minnesota, Respondent, vs. JaJuan Anthony Reed, Sr., Appellant. A15-557, Court of Appeals Unpublished, April 4, 2016. - A15-557 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 145247 - Apr 4, - 2016 19:10:12 GMT - english - Rebecca J. Adams, et al., Plaintiffs, John Crudele, et al., Appellants, vs. James Koch, et al., Defendants, Steve ... - 2016-03-28T15:01:09+00:00 - Microsoft® Word 2013 - 2016-04-04T13:22:09+00:00 - Microsoft® Word 2013 - Real estate investors challenge dismissal of claims and vacating default judgments. - Rebecca J. Adams, et al., Plaintiffs, John Crudele, et al., Appellants, vs. James Koch, et al., Defendants, Steve Hyland, Respondent, Erik Ostigaard, Respondent, Greg Bohnsack, Respondent. A15-761, Court of Appeals Unpublished, April 4, 2016. - A15-761 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 28508 - Apr 4, - 2016 19:10:22 GMT - english - State of Minnesota, Respondent, vs. Aaron Arnold Lind-Pashina, Appellant. A15-1199, Court of Appeals Unpublished, April ... - Minnesota Judicial Branch - 2016-03-24T12:43:41+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-04T13:58:44+00:00 - Adobe PDF Library 11.0 - 2016-03-24T17:41:01+00:00 - Challenges the portion of his sentence requiring him to pay three fines and provide a DNA sample. Reversed and remanded. - State of Minnesota, Respondent, vs. Aaron Arnold Lind-Pashina, Appellant. A15-1199, Court of Appeals Unpublished, April 4, 2016. - A15-1199 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 181696 - Apr 4, - 2016 19:10:12 GMT - english - Steven Abrahamson, et al., Relators, vs. The St. Louis County School District, Independent School District No. 2142, et ... - 2016-03-29T16:48:24+00:00 - Microsoft® Word 2013 - 2016-04-04T13:56:08+00:00 - Microsoft® Word 2013 - Challenges that the St. Louis County School District violated campaign-finance reporting laws. - Steven Abrahamson, et al., Relators, vs. The St. Louis County School District, Independent School District No. 2142, et al., Respondents, Office of Administrative Hearings, Respondent. A15-1024, Court of Appeals Unpublished, April 4, 2016. - A15-1024 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 201684 - Apr 4, - 2016 19:10:22 GMT - english - State of Minnesota, Respondent, vs. Jonathan Earl Brown, Appellant. A15-1484, Court of Appeals Unpublished, April 4, ... - 2016-03-29T09:09:21+00:00 - Microsoft® Word 2013 - 2016-04-04T14:06:14+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Jonathan Earl Brown, Appellant. A15-1484, Court of Appeals Unpublished, April 4, 2016. - A15-1484 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 111415 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. David Mendoza, Appellant. A15-767, Court of Appeals Unpublished, April 4, 2016. - 2016-03-24T14:59:40+00:00 - Microsoft® Word 2013 - 2016-04-04T13:24:15+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. David Mendoza, Appellant. A15-767, Court of Appeals Unpublished, April 4, 2016. - A15-767 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 193671 - Apr 4, - 2016 19:10:12 GMT - english - Fred E. Friedrichs, et al., Appellants, vs. Lake Washington Sanitary District, Respondent. A15-965, Court of Appeals ... - 2016-03-24T13:53:50+00:00 - Microsoft® Word 2013 - 2016-04-04T13:52:25+00:00 - Microsoft® Word 2013 - Appellant-property owners challenge a district court decision upholding a special assessment following annexation of the property into respondent sanitary-sewer district and construction of a sanitary sewer on the property. - Fred E. Friedrichs, et al., Appellants, vs. Lake Washington Sanitary District, Respondent. A15-965, Court of Appeals Unpublished, April 4, 2016. - A15-965 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 265453 - Apr 4, - 2016 19:10:22 GMT - english - In re the Marriage of: Timothy Michael Kopp, petitioner, Respondent, vs. Christina Ann Burton, Appellant. A15-1347, ... - 2016-03-29T12:58:33+00:00 - Microsoft® Word 2013 - 2016-04-04T14:04:44+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter and child custody dispute. - In re the Marriage of: Timothy Michael Kopp, petitioner, Respondent, vs. Christina Ann Burton, Appellant. A15-1347, Court of Appeals Unpublished, April 4, 2016. - A15-1347 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 25498 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Pov Beng, Appellant. A15-709, Court of Appeals Unpublished, April 4, 2016. - Minnesota Judicial Branch - 2016-03-29T11:47:00+00:00 - Acrobat PDFMaker 11 for Word - 2016-04-04T13:12:22+00:00 - Adobe PDF Library 11.0 - 2016-03-29T16:46:28+00:00 - Appellant challenges the district courts denial of his motion to withdraw his guilty plea to violating an order for protection. - State of Minnesota, Respondent, vs. Pov Beng, Appellant. A15-709, Court of Appeals Unpublished, April 4, 2016. - A15-709 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 112815 - Apr 4, - 2016 19:10:12 GMT - english - State of Minnesota, Respondent, vs. Brittany Ann Vacko, Appellant. A15-822, Court of Appeals Unpublished, April 4, 2016. - 2016-03-29T10:03:28+00:00 - Microsoft® Word 2013 - 2016-04-04T13:32:21+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony theft by swindle. Remanded. - State of Minnesota, Respondent, vs. Brittany Ann Vacko, Appellant. A15-822, Court of Appeals Unpublished, April 4, 2016. - A15-822 - 2016-04-04T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 54750 - Mar 30, - 2016 18:11:24 GMT - english - In re Petition for Disciplinary Action against Amanda Lyn Ruffing, f/k/a Amanda Lyn Koble, a Minnesota Attorney, ... - 2016-03-23T14:12:08+00:00 - Canon DR-M140 TWAIN - 2016-03-30T13:10:37+00:00 - Adobe Acrobat 11.0.14 Paper Capture Plug-in - Effective March 26, 2016, respondent Amanda Lyn Ruffing is conditionally reinstated to the practice of law in the State of Minnesota. - In re Petition for Disciplinary Action against Amanda Lyn Ruffing, f/k/a Amanda Lyn Koble, a Minnesota Attorney, Registration No. 0386825. A15-1243, Supreme Court Order, March 30, 2016. - A15-1243 - 2016-03-30T00:00:00-0500 - March 23, 2016 subject of professional responsibility. Failure to do so shall result in automatic re- suspension, as provided in Rule 18(e)(3), RLPR. Dated: ... - - - pdf - 52412 - Mar 30, - 2016 16:38:41 GMT - english - In re Petition for Transfer to Disability-Inactive Status of Ralph F. Carter, a Minnesota Attorney, Registration No. ... - 2016-03-23T15:52:28+00:00 - Canon DR-M140 TWAIN - 2016-03-30T11:37:42+00:00 - Adobe Acrobat 11.0.14 Paper Capture Plug-in - Respondent Ralph F. Carter is transferred to disability-inactive status effective as of the date of this order. - In re Petition for Transfer to Disability-Inactive Status of Ralph F. Carter, a Minnesota Attorney, Registration No. 0134910. A16-435, Supreme Court Order, March 30, 2016. - A16-435 - 2016-03-30T00:00:00-0500 - March 23, 2016 Based upon all the files, records, and proceedings herein, IT IS HEREBY ORDERED THAT: 1. Respondent Ralph F. Carter is transferred to disability- ... - - - pdf - 74141 - Mar 30, - 2016 16:38:41 GMT - english - In re Petition for Disciplinary Action against Fong Eric Lee, a Minnesota Attorney, Registration No. 0387546. A16-228, ... - 2016-03-23T14:09:45+00:00 - Canon DR-M140 TWAIN - 2016-03-30T11:30:18+00:00 - Adobe Acrobat 11.0.14 Paper Capture Plug-in - Respondent Fong Eric Lee is publicly reprimanded and placed on 2 years of probation. - In re Petition for Disciplinary Action against Fong Eric Lee, a Minnesota Attorney, Registration No. 0387546. A16-228, Supreme Court Order, March 30, 2016. - A16-228 - 2016-03-30T00:00:00-0500 - March 23, 2016 Based upon all the files, records, and proceedings herein, IT IS HEREBY ORDERED THAT: 1. Respondent Fong Eric Lee is publicly reprimanded and ... - - - pdf - 186078 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Jermaine Sylvester Watkins, Appellant. A14-1772, Court of Appeals Unpublished, ... - 2016-03-21T11:22:45+00:00 - Microsoft® Word 2013 - 2016-03-28T10:58:04+00:00 - Microsoft® Word 2013 - Challenges to convictions of aggravated robbery and kidnapping. - State of Minnesota, Respondent, vs. Jermaine Sylvester Watkins, Appellant. A14-1772, Court of Appeals Unpublished, March 28, 2016. - A14-1772 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 133967 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Tyrese Thomas, Appellant. A15-468, Court of Appeals Unpublished, March 28, 2016. - 2016-03-18T11:53:06+00:00 - Microsoft® Word 2013 - 2016-03-28T11:15:18+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Tyrese Thomas, Appellant. A15-468, Court of Appeals Unpublished, March 28, 2016. - A15-468 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123501 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Tony Luke Fisher, Appellant. A15-614, Court of Appeals Unpublished, March 28, 2016. - 2016-03-22T14:05:00+00:00 - Microsoft® Word 2013 - 2016-03-28T11:30:35+00:00 - Microsoft® Word 2013 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. Tony Luke Fisher, Appellant. A15-614, Court of Appeals Unpublished, March 28, 2016. - A15-614 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 241083 - Mar 28, - 2016 18:59:36 GMT - english - Leon Asle Baxter, petitioner, Respondent, vs. Debra Kay Baxter, Appellant. A15-601, Court of Appeals Unpublished, March ... - 2016-03-22T15:14:38+00:00 - Microsoft® Word 2013 - 2016-03-28T11:27:16+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of motion to amend an order dividing pension benefits. - Leon Asle Baxter, petitioner, Respondent, vs. Debra Kay Baxter, Appellant. A15-601, Court of Appeals Unpublished, March 28, 2016. - A15-601 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 105585 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Charles Kenneth Redding, Appellant. A15-1221, Court of Appeals Unpublished, March ... - 2016-03-22T09:50:25+00:00 - Microsoft® Word 2013 - 2016-03-28T13:23:16+00:00 - Microsoft® Word 2013 - Challenges district court imposing a sentence at the higher end of the sentencing-guidelines range because of his young age at the time of the offense and because he showed remorse for his actions.. - State of Minnesota, Respondent, vs. Charles Kenneth Redding, Appellant. A15-1221, Court of Appeals Unpublished, March 28, 2016. - A15-1221 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 205199 - Mar 28, - 2016 18:59:36 GMT - english - CLino LLC, et al., Appellants, vs. City of Lino Lakes, Respondent. A15-762, Court of Appeals Unpublished, March 28, ... - 2016-03-21T11:00:54+00:00 - Microsoft® Word 2013 - 2016-03-28T12:01:39+00:00 - Microsoft® Word 2013 - Challenges special assessment tax. - CLino LLC, et al., Appellants, vs. City of Lino Lakes, Respondent. A15-762, Court of Appeals Unpublished, March 28, 2016. - A15-762 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 111562 - Mar 28, - 2016 18:59:45 GMT - english - State of Minnesota, Respondent, vs. Christopher Timothy Poorker, Appellant. A15-1346, Court of Appeals Unpublished, ... - 2016-03-16T12:28:05+00:00 - Microsoft® Word 2013 - 2016-03-28T13:31:00+00:00 - Microsoft® Word 2013 - Challenges denial of motion to withdraw guilty plea. - State of Minnesota, Respondent, vs. Christopher Timothy Poorker, Appellant. A15-1346, Court of Appeals Unpublished, March 28, 2016. - A15-1346 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 142055 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Senen Guerrero, Appellant. A15-851, Court of Appeals Unpublished, March 28, 2016. - 2016-03-18T10:56:00+00:00 - Microsoft® Word 2013 - 2016-03-28T11:52:56+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Senen Guerrero, Appellant. A15-851, Court of Appeals Unpublished, March 28, 2016. - A15-851 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 106134 - Mar 28, - 2016 18:59:45 GMT - english - State of Minnesota, Appellant, vs. Charles Louis Gollop, Respondent. A15-1354, Court of Appeals Unpublished, March 28, ... - 2016-03-17T09:59:45+00:00 - Microsoft® Word 2013 - 2016-03-28T13:43:33+00:00 - Microsoft® Word 2013 - Challenges the district courts order granting a stay of adjudication over appellants objection. Reversed and remanded. - State of Minnesota, Appellant, vs. Charles Louis Gollop, Respondent. A15-1354, Court of Appeals Unpublished, March 28, 2016. - A15-1354 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 179612 - Mar 28, - 2016 18:59:36 GMT - english - Greg Peterson, et al., Relators, vs. City of Richfield, Respondent, Richfield Police & Fire Civil Service Commission, ... - 2016-03-22T14:46:44+00:00 - Microsoft® Word 2013 - 2016-03-28T13:13:10+00:00 - Microsoft® Word 2013 - Challenge respondent-commissions ratification of a detective-promotion eligible register, arguing that the commission failed to consider records of the candidates efficiency, character, conduct, and seniority as required by Minn. Stat. § 419.06(9) (2014). - Greg Peterson, et al., Relators, vs. City of Richfield, Respondent, Richfield Police & Fire Civil Service Commission, Respondent. A15-1151, Court of Appeals Unpublished, March 28, 2016. - A15-1151 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 130325 - Mar 28, - 2016 18:59:36 GMT - english - In re the Marriage of: Dontrell Valerie Thornton, petitioner, Respondent, vs. Herbert Thornton, Jr., Appellant. A15-265,... - 2016-03-22T10:10:52+00:00 - Microsoft® Word 2013 - 2016-03-28T11:11:29+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of motion to reopen the parties default dissolution judgment. Affirmed; motions to strike granted in part and denied in part and motion to preserve the record denied. - In re the Marriage of: Dontrell Valerie Thornton, petitioner, Respondent, vs. Herbert Thornton, Jr., Appellant. A15-265, Court of Appeals Unpublished, March 28, 2016. - A15-265 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 132553 - Mar 28, - 2016 19:52:16 GMT - english - In re: The Frank John Rodriguez Sr. Trust. A15-1353, Court of Appeals Unpublished, March 28, 2016. - 2016-03-16T12:45:22+00:00 - Microsoft® Word 2013 - 2016-03-28T14:51:13+00:00 - Microsoft® Word 2013 - Challenges the denial of his motion to vacate the judgment in a trust dispute. - In re: The Frank John Rodriguez Sr. Trust. A15-1353, Court of Appeals Unpublished, March 28, 2016. - A15-1353 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 116485 - Mar 28, - 2016 18:59:36 GMT - english - Joel Inskeep and Chelsea Inskeep and o/b/o L.I. and E.I., petitioners, Respondents, vs. Sheila Moore, Appellant, Harry ... - 2016-03-17T10:45:09+00:00 - Microsoft® Word 2013 - 2016-03-28T11:12:52+00:00 - Microsoft® Word 2013 - Challenge the grant of a harassment restraining order. - Joel Inskeep and Chelsea Inskeep and o/b/o L.I. and E.I., petitioners, Respondents, vs. Sheila Moore, Appellant, Harry Walk, Appellant. A15-450, Court of Appeals Unpublished, March 28, 2016. - A15-450 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 38967 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Dragos Valentine Bogza, Appellant. A15-471, Court of Appeals Unpublished, March 28, ... - Minnesota Judicial Branch - 2016-03-22T11:44:54+00:00 - Acrobat PDFMaker 11 for Word - 2016-03-28T11:17:55+00:00 - Adobe PDF Library 11.0 - 2016-03-22T16:44:29+00:00 - Challenges to conviction of felony domestic assault. Reversed and remanded. - State of Minnesota, Respondent, vs. Dragos Valentine Bogza, Appellant. A15-471, Court of Appeals Unpublished, March 28, 2016. - A15-471 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 102636 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Matthew Christopher Desjarlais, Appellant. A15-592, Court of Appeals Unpublished, ... - 2016-03-22T10:22:03+00:00 - Microsoft® Word 2013 - 2016-03-28T11:20:45+00:00 - Microsoft® Word 2013 - Challenges to district court erred by denying motion for a downward dispositional departure. - State of Minnesota, Respondent, vs. Matthew Christopher Desjarlais, Appellant. A15-592, Court of Appeals Unpublished, March 28, 2016. - A15-592 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 118821 - Mar 28, - 2016 18:59:36 GMT - english - In the Matter of: Carrie Ann Seibert, individually and o/b/o C. A. A. and C. C. A., petitioner, Respondent, vs. Adam ... - 2016-03-21T15:26:35+00:00 - Microsoft® Word 2013 - 2016-03-28T11:45:39+00:00 - Microsoft® Word 2013 - Challenges district court abused its discretion by issuing an order for protection (OFP) based on inadequate findings. - In the Matter of: Carrie Ann Seibert, individually and o/b/o C. A. A. and C. C. A., petitioner, Respondent, vs. Adam Cain Anderson, Appellant. A15-757, Court of Appeals Unpublished, March 28, 2016. - A15-757 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 199982 - Mar 28, - 2016 18:59:36 GMT - english - Gerald L. Rehbein, et al., Appellants, vs. City of Lino Lakes, Respondent. A15-923, Court of Appeals Unpublished, March ... - 2016-03-21T09:06:58+00:00 - Microsoft® Word 2013 - 2016-03-28T12:00:24+00:00 - Microsoft® Word 2013 - Challenges special assessment levied by respondent City of Lino Lakes. - Gerald L. Rehbein, et al., Appellants, vs. City of Lino Lakes, Respondent. A15-923, Court of Appeals Unpublished, March 28, 2016. - A15-923 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 137856 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Arne Henry Mahlberg, Appellant. A15-745, Court of Appeals Unpublished, March 28, ... - 2016-03-18T12:53:15+00:00 - Microsoft® Word 2013 - 2016-03-28T11:42:30+00:00 - Microsoft® Word 2013 - Challenges to convictions of criminal sexual conduct. - State of Minnesota, Respondent, vs. Arne Henry Mahlberg, Appellant. A15-745, Court of Appeals Unpublished, March 28, 2016. - A15-745 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 66022 - Mar 28, - 2016 18:59:36 GMT - english - James L. Mandel, Appellant, vs. Multiband Corporation, et al., Respondents. A15-1133, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-03-17T13:53:15+00:00 - Acrobat PDFMaker 11 for Word - 2016-03-28T12:12:56+00:00 - Adobe PDF Library 11.0 - 2016-03-16T17:05:30+00:00 - Challenges grant of summary judgment. - James L. Mandel, Appellant, vs. Multiband Corporation, et al., Respondents. A15-1133, Court of Appeals Unpublished, March 28, 2016. - A15-1133 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 111689 - Mar 28, - 2016 18:59:36 GMT - english - Nereus Montemayor, Appellant, vs. Sebright Products, Inc., d/b/a Bright Technologies, defendant and third party ... - 2016-03-17T14:37:23+00:00 - Microsoft® Word 2013 - 2016-03-28T13:15:09+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - Nereus Montemayor, Appellant, vs. Sebright Products, Inc., d/b/a Bright Technologies, defendant and third party plaintiff, Respondent, vs. VZ Hogs, LLP, Third Party Defendant. A15-1188, Court of Appeals Unpublished, March 28, 2016. - A15-1188 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 142361 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Sonny Ray Juday, Appellant. A15-1047, Court of Appeals Unpublished, March 28, 2016. - 2016-03-21T09:27:30+00:00 - Microsoft® Word 2013 - 2016-03-28T12:10:34+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Sonny Ray Juday, Appellant. A15-1047, Court of Appeals Unpublished, March 28, 2016. - A15-1047 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 169259 - Mar 28, - 2016 18:59:36 GMT - english - David Waterworth, Appellant, vs. Elaine Ekman, et al., Respondents. A15-1206, Court of Appeals Unpublished, March 28, ... - 2016-03-22T13:33:39+00:00 - Microsoft® Word 2013 - 2016-03-28T13:17:02+00:00 - Microsoft® Word 2013 - Property dispute. - David Waterworth, Appellant, vs. Elaine Ekman, et al., Respondents. A15-1206, Court of Appeals Unpublished, March 28, 2016. - A15-1206 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 106548 - Mar 28, - 2016 18:59:36 GMT - english - Semaj Williams, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1216, Court of Appeals Unpublished, ... - 2016-03-17T13:54:50+00:00 - Microsoft® Word 2013 - 2016-03-28T13:19:39+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Semaj Williams, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1216, Court of Appeals Unpublished, March 28, 2016. - A15-1216 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 100489 - Mar 28, - 2016 18:59:36 GMT - english - State of Minnesota, Respondent, vs. Darren Clinton, Appellant. A15-1235, Court of Appeals Unpublished, March 28, 2016. - 2016-03-21T15:52:10+00:00 - Microsoft® Word 2013 - 2016-03-28T13:25:17+00:00 - Microsoft® Word 2013 - Challenges sentence, arguing there is no basis for the upward departure. Reversed and remanded. - State of Minnesota, Respondent, vs. Darren Clinton, Appellant. A15-1235, Court of Appeals Unpublished, March 28, 2016. - A15-1235 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122713 - Mar 28, - 2016 19:52:35 GMT - english - In the Matter of the Welfare of the Children of: J. J. V. S. and A. M., Parents and In the Matter of the Welfare of the ... - 2016-03-22T16:24:08+00:00 - Microsoft® Word 2013 - 2016-03-28T14:50:45+00:00 - Microsoft® Word 2013 - Challenges district court order determining that her children need protection or services. - In the Matter of the Welfare of the Children of: J. J. V. S. and A. M., Parents and In the Matter of the Welfare of the Children of: J. J. V. S. and T. J., Parents. A15-1785, Court of Appeals Unpublished, March 28, 2016. - A15-1785 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 120864 - Mar 28, - 2016 18:59:46 GMT - english - State of Minnesota, Respondent, vs. Stevan Andre Wilkins, Appellant. A15-1799, Court of Appeals Unpublished, March 28, ... - 2016-03-18T11:17:34+00:00 - Microsoft® Word 2013 - 2016-03-28T13:54:28+00:00 - Microsoft® Word 2013 - Appellant argues that the district court abused its discretion by denying his sentence-correction motion. - State of Minnesota, Respondent, vs. Stevan Andre Wilkins, Appellant. A15-1799, Court of Appeals Unpublished, March 28, 2016. - A15-1799 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 192112 - Mar 28, - 2016 18:59:46 GMT - english - In the Matter of the Welfare of: P. J. S. A15-1697, Court of Appeals Unpublished, March 28, 2016. - 2016-03-18T08:50:16+00:00 - Microsoft® Word 2013 - 2016-03-28T13:45:17+00:00 - Microsoft® Word 2013 - Appellant Department of Human Services (DHS) challenges the district courts order directing it to expunge the juvenile-delinquency records of respondent P.J.S. because it was not served with the expungement petition. Reversed and remanded. - In the Matter of the Welfare of: P. J. S. A15-1697, Court of Appeals Unpublished, March 28, 2016. - A15-1697 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 103271 - Mar 28, - 2016 18:59:46 GMT - english - Ignacio Olalde-Hernandez, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1841, Court of Appeals ... - 2016-03-17T15:19:51+00:00 - Microsoft® Word 2013 - 2016-03-28T13:56:45+00:00 - Microsoft® Word 2013 - Appellant challenges the district courts denial of his motion for sentence correction. - Ignacio Olalde-Hernandez, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1841, Court of Appeals Unpublished, March 28, 2016. - A15-1841 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 172321 - Mar 28, - 2016 19:52:04 GMT - english - Joyce Sammon, Respondent, vs. Kim Halvorson, Appellant. A15-1261, Court of Appeals Unpublished, March 28, 2016. - 2016-03-22T10:50:33+00:00 - Microsoft® Word 2013 - 2016-03-28T14:48:55+00:00 - Microsoft® Word 2013 - Challenges harassment restraining order. - Joyce Sammon, Respondent, vs. Kim Halvorson, Appellant. A15-1261, Court of Appeals Unpublished, March 28, 2016. - A15-1261 - 2016-03-28T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 218760 - Mar 23, - 2016 16:49:25 GMT - english - Adelbys Tamayo Lopez, Relator, vs. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., Respondents, and ... - 2016-03-22T15:15:14+00:00 - Canon DR-M140 TWAIN - 2016-03-23T11:46:44+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - [Amended order.] IT IS HEREBY ORDERED that relator's motion to accept new evidence is denied. IT IS FURTHER ORDERED that the decision of the Workers' Compensation Court of Appeals filed and served on September 28, 2015 is affirmed without opinion. - Adelbys Tamayo Lopez, Relator, vs. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., Respondents, and Sanford Health, Intervenor. A15-1730, Supreme Court Order, March 23, 2016. - A15-1730 - 2016-03-23T00:00:00-0500 - March 22, 2016 STATE OF MINNESOTA IN SUPREME COURT Adelbys Tamayo Lopez, Relator, vs. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., Respondents, ... - - - pdf - 270098 - Mar 23, - 2016 16:49:25 GMT - english - Sprinkler Warehouse, Inc., Respondent, vs. Systematic Rain, Inc., d/b/a GPLAWN.com, et al., Appellants. A14-1121, ... - 2016-03-17T16:22:50+00:00 - Microsoft® Word 2013 - 2016-03-23T11:10:23+00:00 - Microsoft® Word 2013 - A domain name constitutes intangible personal property within the meaning of Minn. Stat. § 571.73, subd. 3(3) (2014) and is therefore subject to attachment by garnishment. - Sprinkler Warehouse, Inc., Respondent, vs. Systematic Rain, Inc., d/b/a GPLAWN.com, et al., Appellants. A14-1121, Supreme Court, March 23, 2016. - A14-1121 - 2016-03-23T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1121 Court of Appeals Dietzen, J. Took no part, Hudson, Chutich, JJ. Sprinkler Warehouse, Inc., Respondent, vs. ... - - - pdf - 126116 - Mar 23, - 2016 16:49:25 GMT - english - Jason Lee Bolstad, Appellant, vs. State of Minnesota, Respondent. A15-564, Supreme Court, March 23, 2016. - 2016-03-23T09:26:27+00:00 - Microsoft® Word 2010 - 2016-03-23T11:48:16+00:00 - Microsoft® Word 2010 - The postconviction court did not abuse its discretion when it concluded that appellant's second petition for postconviction relief was untimely. The facts of this case do not warrant granting appellant a new trial in the interests of justice. - Jason Lee Bolstad, Appellant, vs. State of Minnesota, Respondent. A15-564, Supreme Court, March 23, 2016. - A15-564 - 2016-03-23T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0564 Kanabec County Anderson, J. Took no part, Chutich, J. Jason Lee Bolstad, Appellant, vs. Filed: March 23, ... - - - pdf - 270787 - Mar 23, - 2016 16:49:25 GMT - english - Jamy Hegseth f/k/a Jamy Jager, Appellant, vs. American Family Mutual Insurance Group, Respondent. A14-1189, Supreme ... - 2016-03-21T12:43:45+00:00 - Microsoft® Word 2013 - 2016-03-23T11:21:51+00:00 - Microsoft® Word 2013 - The resolution of the primary uninsured motorist claim is not a condition precedent to the assertion of a claim for excess uninsured motorist benefits under the No-Fault Act, Minn. Stat. §§ 65B.41-.71 (2014). Claims for excess uninsured motorist benefits accrue on the date of the accident. - Jamy Hegseth f/k/a Jamy Jager, Appellant, vs. American Family Mutual Insurance Group, Respondent. A14-1189, Supreme Court, March 23, 2016. - A14-1189 - 2016-03-23T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1189 Court of Appeals Dietzen, J. Concurring, Lillehaug, J. Took no part, Anderson, Chutich, JJ. Jamy Hegseth ... - - - pdf - 317855 - Mar 23, - 2016 16:49:25 GMT - english - In re Petition for Disciplinary Action against James Richard Mayer, a Minnesota Attorney, Registration No. 0312241. ... - 2016-03-16T13:02:04+00:00 - Canon DR-M140 TWAIN - 2016-03-23T11:15:04+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent James Richard Mayer is indefinitely suspended from the practice of law - In re Petition for Disciplinary Action against James Richard Mayer, a Minnesota Attorney, Registration No. 0312241. A15-1274, Supreme Court Order, March 23, 2016. - A15-1274 - 2016-03-23T00:00:00-0500 - March 16, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1274 In re Petition for Disciplinary Action against James Richard Mayer, a Minnesota Attorney, Registration ... - - - pdf - 206401 - Mar 23, - 2016 16:49:25 GMT - english - Adelbys Tamayo Lopez, Relator, vs. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., Respondents, and ... - 2016-03-21T14:14:22+00:00 - Canon DR-M140 TWAIN - 2016-03-23T11:43:48+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - IT IS HEREBY ORDERED that relator's motion to accept new evidence is denied. IT IS FURTHER ORDERED that the decision of the Workers' Compensation Court of Appeals filed and served on September 28, 2015 is affirmed without opinion. - Adelbys Tamayo Lopez, Relator, vs. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., Respondents, and Sanford Health, Intervenor. A15-1730, Supreme Court Order, March 23, 2016. - A15-1730 - 2016-03-23T00:00:00-0500 - March 21, 2016 STATE OF MINNESOTA IN SUPREME COURT Adelbys Tamayo Lopez, Relator, vs. JBS USA, LLC, and Zurich American Insurance Co./Sedgwick CMS, Inc., Respondents, ... - - - pdf - 321183 - Mar 23, - 2016 16:49:25 GMT - english - In re Petition for Disciplinary Action against Sara Marie Grant Rojas, a Minnesota Attorney, Registration No. 0391827. ... - 2016-03-15T10:36:13+00:00 - Canon DR-M140 TWAIN - 2016-03-23T11:13:19+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Sara Marie Grant Rojas is suspended from the practice of law. - In re Petition for Disciplinary Action against Sara Marie Grant Rojas, a Minnesota Attorney, Registration No. 0391827. A16-92, Supreme Court Order, March 23, 2016. - A16-92 - 2016-03-23T00:00:00-0500 - March 15, 2016 STATE OF MINNESOTA IN SUPREME COURT A16-0092 In re Petition for Disciplinary Action against Sara Marie Grant Rojas, a Minnesota Attorney, Registration ... - - - pdf - 366675 - Mar 23, - 2016 16:49:25 GMT - english - In re Petition for Disciplinary Action against Jaren Lee Johnson, a Minnesota Attorney, Registration No. 0290427. ... - 2016-03-16T12:37:10+00:00 - Canon DR-M140 TWAIN - 2016-03-23T11:11:43+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Jaren Lee Johnson is suspended from the practice of law for a minimum of 30 days. - In re Petition for Disciplinary Action against Jaren Lee Johnson, a Minnesota Attorney, Registration No. 0290427. A16-240, Supreme Court Order, March 23, 2016. - A16-240 - 2016-03-23T00:00:00-0500 - March 16, 2016 STATE OF MINNESOTA IN SUPREME COURT A16-0240 In re Petition for Disciplinary Action against Jaren Lee Johnson, a Minnesota Attorney, Registration ... - - - pdf - 418662 - Mar 23, - 2016 16:49:25 GMT - english - In re Petition for Disciplinary Action against Richard Lee Swanson, a Minnesota Attorney, Registration No. 173423. - 2016-03-21T11:43:11+00:00 - Canon DR-M140 TWAIN - 2016-03-23T11:26:42+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The motion of respondent Richard Lee Swanson for additional time in which to provide proof of his successful completion of the professional responsibility portion of the state bar examination is denied. Respondent's conditional reinstatement is revoked and he is indefinitely suspended, effective 10 days from the date of this order. - In re Petition for Disciplinary Action against Richard Lee Swanson, a Minnesota Attorney, Registration No. 173423. - - 2016-03-21T06:43:11-0500 - March 21, 2016 STATE OF MINNESOTA IN SUPREME COURT A14-1589 In rePetition for Disciplinary Action against Richard Lee Swanson, a Minnesota Attorney, Registration ... - - - pdf - 174396 - Mar 22, - 2016 14:05:22 GMT - english - State of Minnesota, Respondent, vs. S. A. M., Appellant. A15-950, Court of Appeals Published, March 21, 2016. - 2016-03-21T09:13:31+00:00 - Microsoft® Word 2013 - 2016-03-22T09:01:24+00:00 - Microsoft® Word 2013 - A felony conviction later deemed a misdemeanor conviction by operation of Minn. Stat. § 609.13, subd. 1(2) (2014), is a felony conviction for purposes of the expungement statute. A petitioner is not entitled to expungement when the felony offense is not one of the statutorily enumerated offenses for which relief may be sought under Minn. Stat. § 609A.02, subd. 3(b) (2015). - State of Minnesota, Respondent, vs. S. A. M., Appellant. A15-950, Court of Appeals Published, March 21, 2016. - A15-950 - 2016-03-21T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0950 State of Minnesota, Respondent, vs. S. A. M., Appellant. Filed March 21, 2016 Affirmed Reilly, Judge Olmsted ... - - - pdf - 193058 - Mar 22, - 2016 14:05:22 GMT - english - State of Minnesota, Appellant, vs. Leona Rose deLottinville, Respondent. A15-1481, Court of Appeals Published, March 21,... - 2016-03-15T08:57:02+00:00 - Microsoft® Word 2013 - 2016-03-22T09:02:26+00:00 - Microsoft® Word 2013 - When police have probable cause to believe that the subject of a valid arrest warrant is present as a short-term social guest at another persons residence, police may enter that residence to effectuate the arrest pursuant to the warrant without violating the Fourth Amendment rights of the person named therein. - State of Minnesota, Appellant, vs. Leona Rose deLottinville, Respondent. A15-1481, Court of Appeals Published, March 21, 2016. - A15-1481 - 2016-03-21T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1481 State of Minnesota, Appellant, vs. Leona Rose deLottinville, Respondent. Filed March 21, 2016 Reversed and ... - - - pdf - 176141 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Ryan Leroy Smith, Appellant. A15-570, Court of Appeals Unpublished, March 21, 2016. - 2016-03-14T14:59:31+00:00 - Microsoft® Word 2013 - 2016-03-21T11:26:33+00:00 - Microsoft® Word 2013 - Challenges to conviction of first-degree driving while impaired. - State of Minnesota, Respondent, vs. Ryan Leroy Smith, Appellant. A15-570, Court of Appeals Unpublished, March 21, 2016. - A15-570 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 121897 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Jack Leonard Williams, Appellant. A15-427, Court of Appeals Unpublished, March 21, ... - 2016-03-15T15:04:07+00:00 - Microsoft® Word 2013 - 2016-03-21T11:02:39+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree assault. - State of Minnesota, Respondent, vs. Jack Leonard Williams, Appellant. A15-427, Court of Appeals Unpublished, March 21, 2016. - A15-427 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 159567 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Letrell Pierre Brewer, Appellant. A15-653, Court of Appeals Unpublished, March 21, ... - 2016-03-11T12:28:44+00:00 - Microsoft® Word 2013 - 2016-03-21T11:44:06+00:00 - Microsoft® Word 2013 - Challenges to conviction of violating a domestic abuse no contact order (DANCO). - State of Minnesota, Respondent, vs. Letrell Pierre Brewer, Appellant. A15-653, Court of Appeals Unpublished, March 21, 2016. - A15-653 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 143185 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Shawn Deangelo Jones, Appellant. A15-541, Court of Appeals Unpublished, March 21, ... - 2016-03-15T15:24:32+00:00 - Microsoft® Word 2013 - 2016-03-21T11:21:27+00:00 - Microsoft® Word 2013 - Challenges to conviction of aiding and abetting simple robbery. - State of Minnesota, Respondent, vs. Shawn Deangelo Jones, Appellant. A15-541, Court of Appeals Unpublished, March 21, 2016. - A15-541 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 154220 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Shuly Marambo, Appellant. A15-784, Court of Appeals Unpublished, March 21, 2016. - 2016-03-11T13:30:57+00:00 - Microsoft® Word 2013 - 2016-03-21T11:48:32+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Shuly Marambo, Appellant. A15-784, Court of Appeals Unpublished, March 21, 2016. - A15-784 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 160047 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Joseph Scott Welch, Appellant. A15-854, Court of Appeals Unpublished, March 21, ... - 2016-03-15T15:35:56+00:00 - Microsoft® Word 2013 - 2016-03-21T11:51:02+00:00 - Microsoft® Word 2013 - Challenges possession of controlled substance charge. Reversed. - State of Minnesota, Respondent, vs. Joseph Scott Welch, Appellant. A15-854, Court of Appeals Unpublished, March 21, 2016. - A15-854 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 172494 - Mar 21, - 2016 18:39:32 GMT - english - Willie James Patterson, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-956, Court of Appeals ... - 2016-03-15T09:12:13+00:00 - Microsoft® Word 2013 - 2016-03-21T13:07:12+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Willie James Patterson, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-956, Court of Appeals Unpublished, March 21, 2016. - A15-956 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 183956 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. William Martin Odette, Appellant. A15-944, Court of Appeals Unpublished, March 21, ... - 2016-03-15T15:42:19+00:00 - Microsoft® Word 2013 - 2016-03-21T12:01:21+00:00 - Microsoft® Word 2013 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. William Martin Odette, Appellant. A15-944, Court of Appeals Unpublished, March 21, 2016. - A15-944 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 104973 - Mar 21, - 2016 18:39:32 GMT - english - In the Matter of the Petition of George K. Lovrien for an Order Determining Boundary Lines. A15-1135, Court of Appeals ... - 2016-03-15T11:02:01+00:00 - Microsoft® Word 2013 - 2016-03-21T13:09:54+00:00 - Microsoft® Word 2013 - Boundary-line dispute. - In the Matter of the Petition of George K. Lovrien for an Order Determining Boundary Lines. A15-1135, Court of Appeals Unpublished, March 21, 2016. - A15-1135 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 116313 - Mar 21, - 2016 18:39:32 GMT - english - In the Matter of the Welfare of the Child of: C. K. P. and A. W., Parents. A15-1784, Court of Appeals Unpublished, ... - 2016-03-10T13:55:06+00:00 - Microsoft® Word 2013 - 2016-03-21T13:35:39+00:00 - Microsoft® Word 2013 - Challenges order that grants the responsible social services agency custody of her child for placement in an aftercare program to complete chemical-dependency treatment. - In the Matter of the Welfare of the Child of: C. K. P. and A. W., Parents. A15-1784, Court of Appeals Unpublished, March 21, 2016. - A15-1784 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122318 - Mar 21, - 2016 18:39:32 GMT - english - Jermaine Kershawn Perry, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1181, Court of Appeals ... - 2016-03-15T11:28:36+00:00 - Microsoft® Word 2013 - 2016-03-21T13:19:20+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Jermaine Kershawn Perry, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1181, Court of Appeals Unpublished, March 21, 2016. - A15-1181 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 179674 - Mar 21, - 2016 18:39:31 GMT - english - Lawrence Leasing, Inc., d/b/a Lawrence Transportation Services, Respondent, vs. Northwoods Pallets, LLC, et al., ... - 2016-03-14T14:45:40+00:00 - Microsoft® Word 2013 - 2016-03-21T10:31:41+00:00 - Microsoft® Word 2013 - Appellants argue that the district court abused its discretion in piercing the corporate veil and that the district courts factual findings are clearly erroneous. Affirmed in part, reversed in part, and remanded. - Lawrence Leasing, Inc., d/b/a Lawrence Transportation Services, Respondent, vs. Northwoods Pallets, LLC, et al., Appellants. A15-360, Court of Appeals Unpublished, March 21, 2016. - A15-360 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 171132 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Kurt Nathan Rud, Appellant. A15-344, Court of Appeals Unpublished, March 21, 2016. - 2016-03-11T09:15:19+00:00 - Microsoft® Word 2013 - 2016-03-21T10:25:41+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Kurt Nathan Rud, Appellant. A15-344, Court of Appeals Unpublished, March 21, 2016. - A15-344 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 108557 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Bruce Everett Boyd, Appellant. A15-606, Court of Appeals Unpublished, March 21, ... - 2016-03-15T15:31:19+00:00 - Microsoft® Word 2013 - 2016-03-21T11:37:20+00:00 - Microsoft® Word 2013 - Challenges to convictions of theft of a motor vehicle and theft. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Bruce Everett Boyd, Appellant. A15-606, Court of Appeals Unpublished, March 21, 2016. - A15-606 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 104408 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. Todd Allen Turchin, Appellant. A15-677, Court of Appeals Unpublished, March 21, ... - 2016-03-15T15:50:11+00:00 - Microsoft® Word 2013 - 2016-03-21T11:46:23+00:00 - Microsoft® Word 2013 - Challenges to conviction of fifth-degree possession of a controlled substance. - State of Minnesota, Respondent, vs. Todd Allen Turchin, Appellant. A15-677, Court of Appeals Unpublished, March 21, 2016. - A15-677 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 199699 - Mar 21, - 2016 18:39:32 GMT - english - Bruce Township, Respondent, vs. Kevin Schmitz, Appellant, Nathan A. Baum, et al., Defendants. A15-1163, Court of ... - 2016-03-11T14:28:07+00:00 - Microsoft® Word 2013 - 2016-03-21T13:15:16+00:00 - Microsoft® Word 2013 - Challenges conditional-use-permit ordinance. - Bruce Township, Respondent, vs. Kevin Schmitz, Appellant, Nathan A. Baum, et al., Defendants. A15-1163, Court of Appeals Unpublished, March 21, 2016. - A15-1163 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 126017 - Mar 21, - 2016 18:39:32 GMT - english - State of Minnesota, Respondent, vs. James Paul Wilkins, Appellant. A15-1331, Court of Appeals Unpublished, March 21, ... - 2016-03-09T11:58:53+00:00 - Microsoft® Word 2013 - 2016-03-21T13:22:29+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. James Paul Wilkins, Appellant. A15-1331, Court of Appeals Unpublished, March 21, 2016. - A15-1331 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 118241 - Mar 21, - 2016 18:39:32 GMT - english - John Aydt, et al., Appellants, vs. Steven A. Hensel, et al., Respondents, City of St. Michael, Respondent. A15-1406, ... - 2016-03-15T14:49:06+00:00 - Microsoft® Word 2013 - 2016-03-21T13:26:18+00:00 - Microsoft® Word 2013 - Challenges granting discharging a notice of lis pendens de novo. - John Aydt, et al., Appellants, vs. Steven A. Hensel, et al., Respondents, City of St. Michael, Respondent. A15-1406, Court of Appeals Unpublished, March 21, 2016. - A15-1406 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107786 - Mar 21, - 2016 18:39:32 GMT - english - James William Graham, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1457, Court of Appeals Unpublished,... - 2016-03-11T11:33:07+00:00 - Microsoft® Word 2013 - 2016-03-21T13:28:37+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - James William Graham, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1457, Court of Appeals Unpublished, March 21, 2016. - A15-1457 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 104822 - Mar 21, - 2016 18:39:32 GMT - english - Bereket Hagos, Appellant, Seniat Gebregios, Plaintiff, vs. Pond View of Woodbury Townhouse Association, et al., ... - 2016-03-15T09:55:18+00:00 - Microsoft® Word 2013 - 2016-03-21T13:30:52+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - Bereket Hagos, Appellant, Seniat Gebregios, Plaintiff, vs. Pond View of Woodbury Townhouse Association, et al., Respondents. A15-1779, Court of Appeals Unpublished, March 21, 2016. - A15-1779 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 206754 - Mar 21, - 2016 18:39:32 GMT - english - Greg Peterson, Appellant, Souphanny Dean, Co-Appellant, Brian Rogge, et al., Plaintiffs, vs. City of Richfield, ... - 2016-03-09T15:02:54+00:00 - Microsoft® Word 2013 - 2016-03-21T11:55:11+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. Reversed and remanded. - Greg Peterson, Appellant, Souphanny Dean, Co-Appellant, Brian Rogge, et al., Plaintiffs, vs. City of Richfield, Minnesota, Respondent. A15-925, Court of Appeals Unpublished, March 21, 2016. - A15-925 - 2016-03-21T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 192228 - Mar 16, - 2016 15:16:28 GMT - english - State of Minnesota, Respondent, vs. Ishmael Roberts, Appellant. A14-2039, Supreme Court, March 16, 2016. - 2016-03-14T09:48:55+00:00 - Microsoft® Word 2013 - 2016-03-16T10:14:57+00:00 - Microsoft® Word 2013 - The district court did not clearly err by finding that appellant failed to prove, by a preponderance of the evidence, that appellant did not know his acts were morally wrong at the time that he murdered two of his family members. - State of Minnesota, Respondent, vs. Ishmael Roberts, Appellant. A14-2039, Supreme Court, March 16, 2016. - A14-2039 - 2016-03-16T00:00:00-0500 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-2039 Hennepin County Anderson, J. Took no part, Hudson, J. State of Minnesota, Respondent, vs. Filed: March 16, ... - - - pdf - 95512 - Mar 14, - 2016 15:27:22 GMT - english - In the Matter of the Welfare of the Child of: E. G. and K. G., Sr., Parents. A15-2091, Court of Appeals Published, ... - 2016-03-08T16:28:36+00:00 - Microsoft® Word 2013 - 2016-03-14T10:26:27+00:00 - Microsoft® Word 2013 - An intermediate dispositional order in a juvenile-protection proceeding is not appealable as a matter of right under Minn. R. Juv. Prot. P. 47.02, subd. 1. Appeal dismissed. - In the Matter of the Welfare of the Child of: E. G. and K. G., Sr., Parents. A15-2091, Court of Appeals Published, March 14, 2016. - A15-2091 - 2016-03-14T00:00:00-0500 - STATE OF MINNESOTA IN COURT OF APPEALS A15-2091 In the Matter of the Welfare of the Child of: E. G. and K. G., Sr., Parents. Filed March 14, 2016 Appeal dismissed ... - - - pdf - 146674 - Mar 14, - 2016 20:31:50 GMT - english - State of Minnesota, Respondent, vs. Philip Lee Carlson, Appellant. A15-190, Court of Appeals Unpublished, March 14, ... - 2016-03-08T09:15:42+00:00 - Microsoft® Word 2013 - 2016-03-14T13:38:11+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony theft by swindle. - State of Minnesota, Respondent, vs. Philip Lee Carlson, Appellant. A15-190, Court of Appeals Unpublished, March 14, 2016. - A15-190 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 209764 - Mar 14, - 2016 20:31:51 GMT - english - State of Minnesota, Respondent, vs. Christian Mccary Mayo, Appellant. A15-511, Court of Appeals Unpublished, March 14, ... - 2016-03-07T15:50:52+00:00 - Microsoft® Word 2013 - 2016-03-14T14:47:35+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony assault. - State of Minnesota, Respondent, vs. Christian Mccary Mayo, Appellant. A15-511, Court of Appeals Unpublished, March 14, 2016. - A15-511 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 134477 - Mar 14, - 2016 20:31:51 GMT - english - State of Minnesota, Respondent, vs. Arthur Dale Senty-Haugen, Appellant. A15-634, Court of Appeals Unpublished, March ... - 2016-03-07T11:26:55+00:00 - Microsoft® Word 2013 - 2016-03-14T14:54:18+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of jail credit for time he spent under internal sanctions while committed to the Minnesota Sex Offender Program. - State of Minnesota, Respondent, vs. Arthur Dale Senty-Haugen, Appellant. A15-634, Court of Appeals Unpublished, March 14, 2016. - A15-634 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 171370 - Mar 14, - 2016 20:31:51 GMT - english - Enoch Klingbeil, Appellant, vs. Krystal Lee Ramfjord, et al., Respondents. A15-1215, Court of Appeals Unpublished, ... - 2016-03-07T13:50:43+00:00 - Microsoft® Word 2013 - 2016-03-14T15:18:12+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment dismissing the motor-vehicle negligence action. - Enoch Klingbeil, Appellant, vs. Krystal Lee Ramfjord, et al., Respondents. A15-1215, Court of Appeals Unpublished, March 14, 2016. - A15-1215 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 236225 - Mar 14, - 2016 20:31:52 GMT - english - Tiffany Thompson, Relator, vs. Jefferson Partners LP, Respondent, Department of Employment and Economic Development, ... - 2016-03-07T14:46:17+00:00 - Microsoft® Word 2013 - 2016-03-14T15:19:49+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Tiffany Thompson, Relator, vs. Jefferson Partners LP, Respondent, Department of Employment and Economic Development, Respondent. A15-1246, Court of Appeals Unpublished, March 14, 2016. - A15-1246 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174051 - Mar 14, - 2016 20:31:52 GMT - english - Laurie Lea Oliveira, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1257, Court of Appeals Unpublished, ... - 2016-03-02T11:39:30+00:00 - Microsoft® Word 2013 - 2016-03-14T15:25:46+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Laurie Lea Oliveira, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1257, Court of Appeals Unpublished, March 14, 2016. - A15-1257 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 207976 - Mar 14, - 2016 20:31:50 GMT - english - State of Minnesota, Respondent, vs. Deontray Vershon Tate, Appellant. A14-1339, Court of Appeals Unpublished, March 14, ... - 2016-03-08T13:34:59+00:00 - Microsoft® Word 2013 - 2016-03-14T13:31:03+00:00 - Microsoft® Word 2013 - Challenges two first-degree-assault convictions and 309-month sentence. - State of Minnesota, Respondent, vs. Deontray Vershon Tate, Appellant. A14-1339, Court of Appeals Unpublished, March 14, 2016. - A14-1339 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 267735 - Mar 14, - 2016 20:31:51 GMT - english - In re the Marriage of: Julie Ann Summers, petitioner, Respondent, vs. Jonathon Roger Summers, Appellant. A15-735, Court ... - 2016-03-08T14:54:04+00:00 - Microsoft® Word 2013 - 2016-03-14T15:09:47+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. - In re the Marriage of: Julie Ann Summers, petitioner, Respondent, vs. Jonathon Roger Summers, Appellant. A15-735, Court of Appeals Unpublished, March 14, 2016. - A15-735 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 168176 - Mar 14, - 2016 20:31:51 GMT - english - State of Minnesota, Respondent, vs. Jesse B. Bennett, Appellant. A15-414, Court of Appeals Unpublished, March 14, 2016. - 2016-03-08T13:00:01+00:00 - Microsoft® Word 2013 - 2016-03-14T14:33:52+00:00 - Microsoft® Word 2013 - Challenges possession of a controlled substance. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Jesse B. Bennett, Appellant. A15-414, Court of Appeals Unpublished, March 14, 2016. - A15-414 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 121303 - Mar 14, - 2016 20:31:50 GMT - english - State of Minnesota, Respondent, vs. Quentin Lee Davis, Appellant. A15-228, Court of Appeals Unpublished, March 14, 2016. - 2016-03-07T10:11:25+00:00 - Microsoft® Word 2013 - 2016-03-14T14:19:33+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Quentin Lee Davis, Appellant. A15-228, Court of Appeals Unpublished, March 14, 2016. - A15-228 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 148275 - Mar 14, - 2016 20:31:51 GMT - english - State of Minnesota, Respondent, vs. Mark Allan Misgen, Appellant. A15-656, Court of Appeals Unpublished, March 14, 2016. - 2016-03-08T17:13:09+00:00 - Microsoft® Word 2013 - 2016-03-14T15:00:41+00:00 - Microsoft® Word 2013 - Challenges to convictions of first-degree arson and insurance fraud. - State of Minnesota, Respondent, vs. Mark Allan Misgen, Appellant. A15-656, Court of Appeals Unpublished, March 14, 2016. - A15-656 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 152284 - Mar 14, - 2016 20:31:51 GMT - english - John Christian Richmond, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-894, Court of Appeals ... - 2016-03-08T09:41:24+00:00 - Microsoft® Word 2013 - 2016-03-14T15:12:26+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - John Christian Richmond, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-894, Court of Appeals Unpublished, March 14, 2016. - A15-894 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 114901 - Mar 14, - 2016 20:31:51 GMT - english - State of Minnesota, Respondent, vs. Grant Leighton Johnson, Appellant. A15-913, Court of Appeals Unpublished, March 14, ... - 2016-03-08T09:32:45+00:00 - Microsoft® Word 2013 - 2016-03-14T15:14:05+00:00 - Microsoft® Word 2013 - Challenges to conviction of fifth-degree controlled substance crime. - State of Minnesota, Respondent, vs. Grant Leighton Johnson, Appellant. A15-913, Court of Appeals Unpublished, March 14, 2016. - A15-913 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 185422 - Mar 14, - 2016 20:31:51 GMT - english - State of Minnesota, Respondent, vs. John F. Bonner, III, Appellant. A15-993, Court of Appeals Unpublished, March 14, ... - 2016-03-08T15:48:53+00:00 - Microsoft® Word 2013 - 2016-03-14T15:15:17+00:00 - Microsoft® Word 2013 - Challenges to conviction of theft by swindle. - State of Minnesota, Respondent, vs. John F. Bonner, III, Appellant. A15-993, Court of Appeals Unpublished, March 14, 2016. - A15-993 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 162094 - Mar 14, - 2016 20:31:52 GMT - english - State of Minnesota, Respondent, vs. Glenn Kevin Hazley, Appellant. A15-1418, Court of Appeals Unpublished, March 14, ... - 2016-03-02T11:49:38+00:00 - Microsoft® Word 2013 - 2016-03-14T15:29:47+00:00 - Microsoft® Word 2013 - Revocation of probation. Reversed and remanded. - State of Minnesota, Respondent, vs. Glenn Kevin Hazley, Appellant. A15-1418, Court of Appeals Unpublished, March 14, 2016. - A15-1418 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 157516 - Mar 14, - 2016 20:31:50 GMT - english - State of Minnesota, Respondent, vs. Virginia Marie Carlson, Appellant. A15-179, Court of Appeals Unpublished, March 14, ... - 2016-03-08T09:23:05+00:00 - Microsoft® Word 2013 - 2016-03-14T13:36:20+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony theft by swindle. - State of Minnesota, Respondent, vs. Virginia Marie Carlson, Appellant. A15-179, Court of Appeals Unpublished, March 14, 2016. - A15-179 - 2016-03-14T00:00:00-0500 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 348507 - Mar 9, - 2016 16:55:21 GMT - english - In re Petition for Disciplinary Action against Alan F. Pendleton, a Minnesota Attorney, Registration No. 0121538. ... - 2016-03-01T13:20:09+00:00 - Canon DR-M140 TWAIN - 2016-03-09T10:53:13+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Alan F. Pendleton is suspended from the practice of law. - In re Petition for Disciplinary Action against Alan F. Pendleton, a Minnesota Attorney, Registration No. 0121538. A15-1996, Supreme Court Order, March 9, 2016. - A15-1996 - 2016-03-09T00:00:00-0600 - March 1, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1996 In rePetition for Disciplinary Action against Alan F. Pendleton, a Minnesota Attorney, Registration ... - - - pdf - 528139 - Mar 9, - 2016 16:55:21 GMT - english - In re Petition for Disciplinary Action against Paul Joseph Bosman, a Minnesota Attorney, Registration No. 0388865. ... - 2016-03-02T13:50:08+00:00 - Canon DR-M140 TWAIN - 2016-03-09T10:49:14+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Paul Joseph Bosman is suspended from the practice of law. - In re Petition for Disciplinary Action against Paul Joseph Bosman, a Minnesota Attorney, Registration No. 0388865. A15-1930, Supreme Court Order, March 9, 2016. - A15-1930 - 2016-03-09T00:00:00-0600 - March 2, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1930 In re Petition for Disciplinary Action against Paul Joseph Bosman, a Minnesota Attorney, Registration ... - - - pdf - 365821 - Mar 9, - 2016 16:55:21 GMT - english - State of Minnesota, Respondent (A14-0941), Appellant (A15-0300), vs. Byron David Smith, Appellant (A14-0941), ... - 2016-03-04T14:31:28+00:00 - Microsoft® Word 2013 - 2016-03-09T10:46:03+00:00 - Microsoft® Word 2013 - The district court did not err in denying the defendants motion to dismiss the indictment based on five separate, individually alleged errors. The cumulative effect of the five alleged errors in the indictment process did not deprive the defendant of a fair grand-jury proceeding. The nonpublic proceeding to discuss the district courts ruling on a pretrial evidentiary issue did not violate the defendants Sixth Amendment right to a public trial. The district court did not violate the defendants constitutional right to present a complete defense by excluding four pieces of evidence. Because the prosecutor did not commit misconduct in closing argument, the district court did not err in failing to give a curative jury instruction. The district court erred when it determined that the defendants restitution affidavit was timely under Minn. Stat. § 611A.045, subd. 3(a) (2014). Affirmed in part and reversed in part. - State of Minnesota, Respondent (A14-0941), Appellant (A15-0300), vs. Byron David Smith, Appellant (A14-0941), Respondent (A15-0300). A14-941, A15-300, Supreme Court, March 9, 2016. - A14-941 - 2016-03-09T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0941 A15-0300 Morrison County Lillehaug, J. Concurring, Stras, J. Took no part, Hudson, J. State of Minnesota, ... - - - pdf - 295441 - Mar 7, - 2016 16:05:31 GMT - english - Anita J. Howard, Respondent, vs. Shelly R. Svoboda, M.D., et al., Appellants. A15-896, Court of Appeals Published, ... - 2016-03-02T10:01:41+00:00 - Microsoft® Word 2013 - 2016-03-07T10:03:35+00:00 - Microsoft® Word 2013 - Under Minn. Stat. § 595.02, subd. 5 (2014), an informal discussionŽ with a treating physician who has examined or cared for a party allows inquiry into any information or opinionŽ the physician possesses, including opinions on the standard of care and causation relating to periods when the physician was not caring for the patient. Reversed. - Anita J. Howard, Respondent, vs. Shelly R. Svoboda, M.D., et al., Appellants. A15-896, Court of Appeals Published, March 7, 2016. - A15-896 - 2016-03-07T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0896 Anita J. Howard, Respondent, vs. Shelly R. Svoboda, M.D., et al., Appellants. Filed March 7, 2016 Reversed ... - - - pdf - 111401 - Mar 7, - 2016 16:05:31 GMT - english - State of Minnesota, Respondent, vs. Daniel Drljic, Appellant. A15-714, Court of Appeals Published, March 7, 2016. - 2016-02-25T10:05:29+00:00 - Microsoft® Word 2013 - 2016-03-07T10:04:54+00:00 - Microsoft® Word 2013 - For purposes of calculating felony criminal-history points for the crime of second-degree burglary, the burglary of three separate businesses in one building on one day does not constitute a single behavioral incident. - State of Minnesota, Respondent, vs. Daniel Drljic, Appellant. A15-714, Court of Appeals Published, March 7, 2016. - A15-714 - 2016-03-07T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0714 State of Minnesota, Respondent, vs. Daniel Drljic, Appellant. Filed March 7, 2016 Affirmed Connolly, Judge ... - - - pdf - 186858 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Michael Marshall Johnson, a/k/a Michael Tate, Appellant. A15-391, Court of Appeals ... - 2016-02-29T13:02:16+00:00 - Microsoft® Word 2013 - 2016-03-07T11:06:32+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Michael Marshall Johnson, a/k/a Michael Tate, Appellant. A15-391, Court of Appeals Unpublished, March 7, 2016. - A15-391 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 135905 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Derrick Lee Riddle, Appellant. A15-522, Court of Appeals Unpublished, March 7, 2016. - 2016-02-29T14:34:21+00:00 - Microsoft® Word 2013 - 2016-03-07T11:09:12+00:00 - Microsoft® Word 2013 - Challenges to convictions of and sentences for violating an order for protection (OFP) and terroristic threats. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Derrick Lee Riddle, Appellant. A15-522, Court of Appeals Unpublished, March 7, 2016. - A15-522 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 135872 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Nicole Renaye Kroells, Appellant. A15-1026, Court of Appeals Unpublished, March 7, ... - 2016-02-29T14:17:57+00:00 - Microsoft® Word 2013 - 2016-03-07T11:37:26+00:00 - Microsoft® Word 2013 - Challenges denial of motion to suppress evidence. - State of Minnesota, Respondent, vs. Nicole Renaye Kroells, Appellant. A15-1026, Court of Appeals Unpublished, March 7, 2016. - A15-1026 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 160481 - Mar 7, - 2016 19:24:00 GMT - english - Orin Vann, Relator, vs. Texas Roadhouse Holdings LLC - Texas Roadhouse, Respondent, Department of Employment and ... - 2016-02-26T10:18:49+00:00 - Microsoft® Word 2013 - 2016-03-07T11:22:24+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Orin Vann, Relator, vs. Texas Roadhouse Holdings LLC - Texas Roadhouse, Respondent, Department of Employment and Economic Development, Respondent. A15-994, Court of Appeals Unpublished, March 7, 2016. - A15-994 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 140484 - Mar 7, - 2016 19:24:00 GMT - english - In re the Estate of: Bernice R. Murray aka Bernice Murray, Deceased. A15-1061, Court of Appeals Unpublished, March 7, ... - 2016-03-01T17:31:02+00:00 - Microsoft® Word 2013 - 2016-03-07T11:49:32+00:00 - Microsoft® Word 2013 - Judgment against an estate. - In re the Estate of: Bernice R. Murray aka Bernice Murray, Deceased. A15-1061, Court of Appeals Unpublished, March 7, 2016. - A15-1061 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 121486 - Mar 7, - 2016 19:24:00 GMT - english - Sarah Elizabeth LeBlanc, Appellant, vs. Alonzo Marell Lee, Respondent. A15-1006, Court of Appeals Unpublished, March 7, ... - 2016-03-01T10:31:57+00:00 - Microsoft® Word 2013 - 2016-03-07T11:34:23+00:00 - Microsoft® Word 2013 - Challenges denial of a harassment restraining order. - Sarah Elizabeth LeBlanc, Appellant, vs. Alonzo Marell Lee, Respondent. A15-1006, Court of Appeals Unpublished, March 7, 2016. - A15-1006 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122076 - Mar 7, - 2016 19:24:00 GMT - english - Marcia H. Thurmer, Relator, vs. Attorney Edward R. Shaw, P.A., Respondent, Department of Employment and Economic ... - 2016-02-26T10:25:06+00:00 - Microsoft® Word 2013 - 2016-03-07T13:04:14+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. Reversed. - Marcia H. Thurmer, Relator, vs. Attorney Edward R. Shaw, P.A., Respondent, Department of Employment and Economic Development, Respondent. A15-1105, Court of Appeals Unpublished, March 7, 2016. - A15-1105 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 136837 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Alan Michael Habiger, Appellant. A15-306, Court of Appeals Unpublished, March 7, ... - 2016-03-01T17:09:46+00:00 - Microsoft® Word 2013 - 2016-03-07T11:00:14+00:00 - Microsoft® Word 2013 - Challenges to conviction of aggravated robbery. - State of Minnesota, Respondent, vs. Alan Michael Habiger, Appellant. A15-306, Court of Appeals Unpublished, March 7, 2016. - A15-306 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 108224 - Mar 7, - 2016 19:24:00 GMT - english - Cathie J. Pascavage, petitioner, Respondent, vs. Donald Mackay, Appellant. A15-1204, Court of Appeals Unpublished, ... - 2016-02-26T11:40:49+00:00 - Microsoft® Word 2013 - 2016-03-07T13:05:37+00:00 - Microsoft® Word 2013 - Challenges a harassment restraining order (HRO). - Cathie J. Pascavage, petitioner, Respondent, vs. Donald Mackay, Appellant. A15-1204, Court of Appeals Unpublished, March 7, 2016. - A15-1204 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 223568 - Mar 7, - 2016 19:24:00 GMT - english - Newman-Lakka Cancer Foundation, Appellant, vs. Christine E. Briggs, Respondent. A15-1217, Court of Appeals Unpublished, ... - 2016-02-29T14:24:16+00:00 - Microsoft® Word 2013 - 2016-03-07T13:16:50+00:00 - Microsoft® Word 2013 - Challenges the district courts dismissal of its defamation lawsuit. - Newman-Lakka Cancer Foundation, Appellant, vs. Christine E. Briggs, Respondent. A15-1217, Court of Appeals Unpublished, March 7, 2016. - A15-1217 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 170401 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Raymond Joseph Traylor, Appellant. A15-29, Court of Appeals Unpublished, March 7, ... - 2016-02-29T11:43:29+00:00 - Microsoft® Word 2013 - 2016-03-07T10:58:49+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Raymond Joseph Traylor, Appellant. A15-29, Court of Appeals Unpublished, March 7, 2016. - A15-29 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 126598 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Cheng Pao Vue, Appellant. A15-852, Court of Appeals Unpublished, March 7, 2016. - 2016-02-26T09:12:34+00:00 - Microsoft® Word 2013 - 2016-03-07T11:17:28+00:00 - Microsoft® Word 2013 - Challenges to convictions of first-degree burglary and theft. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Cheng Pao Vue, Appellant. A15-852, Court of Appeals Unpublished, March 7, 2016. - A15-852 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 185203 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Sherman Peak, Appellant. A15-355, Court of Appeals Unpublished, March 7, 2016. - 2016-03-01T12:53:34+00:00 - Microsoft® Word 2013 - 2016-03-07T11:05:04+00:00 - Microsoft® Word 2013 - Challenges denial of motion to suppress the evidence. - State of Minnesota, Respondent, vs. Sherman Peak, Appellant. A15-355, Court of Appeals Unpublished, March 7, 2016. - A15-355 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 103230 - Mar 7, - 2016 19:24:00 GMT - english - In the Matter of the Welfare of: C.M.M., Child. A15-906, Court of Appeals Unpublished, March 7, 2016. - 2016-03-01T17:51:53+00:00 - Microsoft® Word 2013 - 2016-03-07T11:19:48+00:00 - Microsoft® Word 2013 - The Minnesota Department of Human Services (DHS) challenges the district courts order requiring it to seal its files related to respondent C.M.M.s juvenile delinquency records after C.M.M. improperly served her expungement petition to the wrong address and with the wrong hearing date. Reversed. - In the Matter of the Welfare of: C.M.M., Child. A15-906, Court of Appeals Unpublished, March 7, 2016. - A15-906 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 241684 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. David Paul Patterson, Appellant. A15-604, Court of Appeals Unpublished, March 7, ... - 2016-03-01T14:08:05+00:00 - Microsoft® Word 2013 - 2016-03-07T11:13:59+00:00 - Microsoft® Word 2013 - Challenges to convictions of sale and possession of controlled substance charge. - State of Minnesota, Respondent, vs. David Paul Patterson, Appellant. A15-604, Court of Appeals Unpublished, March 7, 2016. - A15-604 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 160060 - Mar 7, - 2016 19:24:00 GMT - english - Bridget Colleen Johnson, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-1054, Court of ... - 2016-02-26T10:09:37+00:00 - Microsoft® Word 2013 - 2016-03-07T11:39:19+00:00 - Microsoft® Word 2013 - Challenges the district courts order sustaining the revocation of her drivers license. - Bridget Colleen Johnson, petitioner, Appellant, vs. Commissioner of Public Safety, Respondent. A15-1054, Court of Appeals Unpublished, March 7, 2016. - A15-1054 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123072 - Mar 7, - 2016 19:24:00 GMT - english - Brandon Darnell Barnes, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1212, Court of Appeals ... - 2016-02-29T13:45:27+00:00 - Microsoft® Word 2013 - 2016-03-07T13:10:23+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Brandon Darnell Barnes, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1212, Court of Appeals Unpublished, March 7, 2016. - A15-1212 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 195745 - Mar 7, - 2016 19:24:01 GMT - english - In the Matter of the Welfare of the Child of: C. J. S., Parent. A15-1539, Court of Appeals Unpublished, March 7, 2016. - 2016-03-01T11:26:35+00:00 - Microsoft® Word 2013 - 2016-03-07T13:20:12+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Child of: C. J. S., Parent. A15-1539, Court of Appeals Unpublished, March 7, 2016. - A15-1539 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 191315 - Mar 7, - 2016 19:24:00 GMT - english - Isanti Estates, LLC, Appellant, vs. McCarthy Well Company, Respondent, McCullough & Sons, Incorporated d/b/a McCullough ... - 2016-03-01T14:24:55+00:00 - Microsoft® Word 2013 - 2016-03-07T11:15:13+00:00 - Microsoft® Word 2013 - Challenges the summary-judgment dismissal of its conversion, negligence, and breach-of-contract claims, and the entry of summary judgment in favor of one of the respondents on its unjust-enrichment claim. - Isanti Estates, LLC, Appellant, vs. McCarthy Well Company, Respondent, McCullough & Sons, Incorporated d/b/a McCullough & Sons Well Drilling, Inc., Respondent. A15-809, Court of Appeals Unpublished, March 7, 2016. - A15-809 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 98046 - Mar 7, - 2016 19:24:00 GMT - english - State of Minnesota, Respondent, vs. Max Dylan Loosen-Scholer, Appellant. A15-1095, Court of Appeals Unpublished, March ... - 2016-03-01T16:04:36+00:00 - Microsoft® Word 2013 - 2016-03-07T11:52:22+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Max Dylan Loosen-Scholer, Appellant. A15-1095, Court of Appeals Unpublished, March 7, 2016. - A15-1095 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 121173 - Mar 7, - 2016 19:24:01 GMT - english - In the Matter of the Welfare of the Children of: A. R. H. and G. J. B., Parents. A15-1441, Court of Appeals Unpublished,... - 2016-03-01T10:51:56+00:00 - Microsoft® Word 2013 - 2016-03-07T13:19:01+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: A. R. H. and G. J. B., Parents. A15-1441, Court of Appeals Unpublished, March 7, 2016. - A15-1441 - 2016-03-07T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 1596149 - Mar 2, - 2016 17:05:17 GMT - english - ORDER PROMULGATING AMENDMENTS TO THE RULES OF THE BOARD ON JUDICIAL STANDARDS. ADM10-8032, Supreme Court Administrative ... - 2016-02-24T13:33:21+00:00 - Canon DR-M140 TWAIN - 2016-03-02T11:03:55+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The Rules of the Board on Judicial Standards are amended as shown in the attachment to this order. - ORDER PROMULGATING AMENDMENTS TO THE RULES OF THE BOARD ON JUDICIAL STANDARDS. ADM10-8032, Supreme Court Administrative Order, March 2, 2016. - ADM10-8032 - 2016-03-02T00:00:00-0600 - February 24, 2016 STATE OF MINNESOTA IN SUPREME COURT ADM10-8032 ORDER PROMULGATING AMENDMENTS TO THE RULES OF THE BOARD ON JUDICIAL STANDARDS Om:ciEOF API'B. ... - - - pdf - 401721 - Mar 2, - 2016 17:05:17 GMT - english - Craig Matthew Hohenwald, Appellant, vs. State of Minnesota, Respondent. A15-487, Supreme Court Order, March 2, 2016. - 2016-02-26T15:35:09+00:00 - Canon DR-M140 TWAIN - 2016-03-02T10:51:48+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Correction: The attached slip opinion, amended as stated above, shall be substituted for the opinion filed February 24, 2016. - Craig Matthew Hohenwald, Appellant, vs. State of Minnesota, Respondent. A15-487, Supreme Court Order, March 2, 2016. - A15-487 - 2016-03-02T00:00:00-0600 - February 26, 2016 STATE OF MINNESOTA IN SUPREME COURT AlS- 0487 Craig Matthew Hohenwald, Appellant, vs. State of Minnesota, Respondent. ORDER Based upon all the ... - - - pdf - 308185 - Mar 2, - 2016 17:05:17 GMT - english - In re Petition for Disciplinary Action against Daniel L. M. Kennedy, a Minnesota Attorney, Registration No. 0211321. ... - 2016-02-24T11:33:10+00:00 - Canon DR-M140 TWAIN - 2016-03-02T10:55:29+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Daniel L. M. Kennedy is publicly reprimanded. - In re Petition for Disciplinary Action against Daniel L. M. Kennedy, a Minnesota Attorney, Registration No. 0211321. A15-1698, Supreme Court Order, March 2, 2016. - A15-1698 - 2016-03-02T00:00:00-0600 - February 24, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1698 In re Petition for Disciplinary Action against Daniel L. M. Kennedy, a Minnesota Attorney, Registration ... - - - pdf - 306954 - Mar 2, - 2016 17:05:17 GMT - english - In re Petition for Disciplinary Action against Jonathan C. Lewis, a Minnesota Attorney, Registration No. 0172017. ... - 2016-02-24T15:47:49+00:00 - Canon DR-M140 TWAIN - 2016-03-02T10:57:12+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Jonathan C. Lewis is indefinitely suspended from the practice of law. - In re Petition for Disciplinary Action against Jonathan C. Lewis, a Minnesota Attorney, Registration No. 0172017. A15-999, Supreme Court Order, March 2, 2016. - A15-999 - 2016-03-02T00:00:00-0600 - February 24, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-0999 In re Petition for Disciplinary Action against Jonathan C. Lewis, a Minnesota Attorney, Registration ... - - - pdf - 275972 - Mar 2, - 2016 17:05:17 GMT - english - State of Minnesota, Respondent, vs. Vidale Lee Whitson, Appellant, Vidale Lee Whitson, Appellant, vs. State of ... - 2016-02-29T10:11:26+00:00 - Microsoft® Word 2013 - 2016-03-02T10:47:43+00:00 - Microsoft® Word 2013 - Without deciding whether the prosecutor committed misconduct by failing to adequately prepare a witness and eliciting inadmissible testimony, the alleged misconduct was harmless beyond a reasonable doubt. The postconviction court did not abuse its discretion in denying appellants postconviction claims of ineffective assistance of trial counsel without granting an evidentiary hearing. The State did not fail to disclose material exculpatory evidence to the defense. The postconviction court did not abuse its discretion in denying appellants claims that the police and prosecutors fabricated evidence without granting an evidentiary hearing. Omissions from the trial transcript that were later corrected and provided to appellant did not deny him the right to meaningful review of his conviction. - State of Minnesota, Respondent, vs. Vidale Lee Whitson, Appellant, Vidale Lee Whitson, Appellant, vs. State of Minnesota, Respondent. C5-02-2108, A04-875, Supreme Court, March 2, 2016. - C5-02-2108 - 2016-03-02T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT C5-02-2108 A04-0875 St. Louis County Lillehaug, J. Took no part, Hudson, J. State of Minnesota, Respondent, vs. Filed: ... - - - pdf - 186472 - Feb 29, - 2016 16:11:53 GMT - english - Founders Insurance Company, Appellant, vs. James Yates, Respondent. A15-1174, Court of Appeals Published, February 29, ... - 2016-02-23T14:02:45+00:00 - Microsoft® Word 2013 - 2016-02-29T10:09:36+00:00 - Microsoft® Word 2013 - Under the Minnesota No-Fault Automobile Insurance Act, Minn. Stat. §§ 65B.41-.71 (2014), an out-of-state insurer that is not licensed to write motor-vehicle-accident reparation and liability insurance in Minnesota is not obligated to provide basic economic-loss benefits to its insured who was injured in an accident in Minnesota. Reversed. - Founders Insurance Company, Appellant, vs. James Yates, Respondent. A15-1174, Court of Appeals Published, February 29, 2016. - A15-1174 - 2016-02-29T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-1174 Founders Insurance Company, Appellant, vs. James Yates, Respondent. Filed February 29, 2016 Reversed Chutich, ... - - - pdf - 98056 - Feb 29, - 2016 19:47:41 GMT - english - Capital One Bank USA, NA, Respondent, vs. Gbenga J. Ekinnola, Appellant. A15-485, Court of Appeals Unpublished, ... - 2016-02-23T09:49:40+00:00 - Microsoft® Word 2013 - 2016-02-29T11:25:34+00:00 - Microsoft® Word 2013 - Challenges denial of motion to vacate judgment. - Capital One Bank USA, NA, Respondent, vs. Gbenga J. Ekinnola, Appellant. A15-485, Court of Appeals Unpublished, February 29, 2016. - A15-485 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 106143 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Emery Scott Whitt, Appellant. A15-465, Court of Appeals Unpublished, February 29, ... - 2016-02-23T11:09:12+00:00 - Microsoft® Word 2013 - 2016-02-29T11:21:08+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Emery Scott Whitt, Appellant. A15-465, Court of Appeals Unpublished, February 29, 2016. - A15-465 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS ... - - - pdf - 128550 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Gonsalo Cosme-Garsia, Appellant. A15-470, Court of Appeals Unpublished, February 29,... - 2016-02-18T09:30:17+00:00 - Microsoft® Word 2013 - 2016-02-29T11:23:25+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - State of Minnesota, Respondent, vs. Gonsalo Cosme-Garsia, Appellant. A15-470, Court of Appeals Unpublished, February 29, 2016. - A15-470 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 99207 - Feb 29, - 2016 21:17:31 GMT - english - State of Minnesota, Respondent, vs. Jeremia Joseph Loper, Appellant. A15-509, Court of Appeals Unpublished, February 29,... - 2016-02-17T13:48:58+00:00 - Microsoft® Word 2013 - 2016-02-29T15:16:53+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Jeremia Joseph Loper, Appellant. A15-509, Court of Appeals Unpublished, February 29, 2016. - A15-509 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 110812 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Troy Adam Gocha, Appellant. A15-706. Court of Appeals Unpublished, February 29, ... - 2016-02-23T16:17:01+00:00 - Microsoft® Word 2013 - 2016-02-29T11:59:56+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree assault. - State of Minnesota, Respondent, vs. Troy Adam Gocha, Appellant. A15-706. Court of Appeals Unpublished, February 29, 2016. - A15-706 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 180826 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Kevin Earl Westergaard, Appellant. A15-582, Court of Appeals Unpublished, February ... - 2016-02-18T15:03:06+00:00 - Microsoft® Word 2013 - 2016-02-29T11:39:26+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Kevin Earl Westergaard, Appellant. A15-582, Court of Appeals Unpublished, February 29, 2016. - A15-582 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 102298 - Feb 29, - 2016 19:47:41 GMT - english - Karl Arthur Keene, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-796, Court of Appeals Unpublished, ... - 2016-02-23T13:02:15+00:00 - Microsoft® Word 2013 - 2016-02-29T12:01:47+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Karl Arthur Keene, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-796, Court of Appeals Unpublished, February 29, 2016. - A15-796 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174808 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Matthew Robert Dornsbach, Appellant. A15-590, Court of Appeals Unpublished, ... - 2016-02-23T14:35:21+00:00 - Microsoft® Word 2013 - 2016-02-29T11:55:19+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - State of Minnesota, Respondent, vs. Matthew Robert Dornsbach, Appellant. A15-590, Court of Appeals Unpublished, February 29, 2016. - A15-590 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 104836 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Zaki Mohamed Sugule, Appellant. A15-826, Court of Appeals Unpublished, February 29, ... - 2016-02-23T09:48:51+00:00 - Microsoft® Word 2013 - 2016-02-29T12:06:11+00:00 - Microsoft® Word 2013 - Challenges that the district court abused its discretion by denying his motion for a downward durational sentencing departure. - State of Minnesota, Respondent, vs. Zaki Mohamed Sugule, Appellant. A15-826, Court of Appeals Unpublished, February 29, 2016. - A15-826 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 168458 - Feb 29, - 2016 21:11:15 GMT - english - Hennepin County, Respondent, Mamie Jegbadai, Respondent, vs. Gbenga Akinnola, Appellant. A15-667, Court of Appeals ... - 2016-02-23T13:55:30+00:00 - Microsoft® Word 2013 - 2016-02-29T15:10:28+00:00 - Microsoft® Word 2013 - Child support dispute. - Hennepin County, Respondent, Mamie Jegbadai, Respondent, vs. Gbenga Akinnola, Appellant. A15-667, Court of Appeals Unpublished, February 29, 2016. - A15-667 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 113753 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Timothy Andrew Swan, Appellant. A15-832, Court of Appeals Unpublished, February 29, ... - 2016-02-23T11:15:09+00:00 - Microsoft® Word 2013 - 2016-02-29T12:07:51+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Timothy Andrew Swan, Appellant. A15-832, Court of Appeals Unpublished, February 29, 2016. - A15-832 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107220 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Justin Glenn Joecks, Appellant. A15-1014, Court of Appeals Unpublished, February 29,... - 2016-02-23T09:32:41+00:00 - Microsoft® Word 2013 - 2016-02-29T12:13:39+00:00 - Microsoft® Word 2013 - Challenges denial of motion to suppress evidence. - State of Minnesota, Respondent, vs. Justin Glenn Joecks, Appellant. A15-1014, Court of Appeals Unpublished, February 29, 2016. - A15-1014 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 165895 - Feb 29, - 2016 19:47:52 GMT - english - Estate of Howard G. Boyd, Decedent. A15-1132, Court of Appeals Unpublished, February 29, 2016. - 2016-02-18T10:47:21+00:00 - Microsoft® Word 2013 - 2016-02-29T13:23:36+00:00 - Microsoft® Word 2013 - Probate dispute. Reversed and remanded. - Estate of Howard G. Boyd, Decedent. A15-1132, Court of Appeals Unpublished, February 29, 2016. - A15-1132 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 169297 - Feb 29, - 2016 19:47:52 GMT - english - Lois St. Aubin, Appellant, vs. Caseys Retail Company d/b/a Caseys General Store, Respondent. A15-1306, Court of ... - 2016-02-18T15:16:19+00:00 - Microsoft® Word 2013 - 2016-02-29T13:32:30+00:00 - Microsoft® Word 2013 - Challenges summary judgment dismissal of slip and fall claim. - Lois St. Aubin, Appellant, vs. Caseys Retail Company d/b/a Caseys General Store, Respondent. A15-1306, Court of Appeals Unpublished, February 29, 2016. - A15-1306 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 115044 - Feb 29, - 2016 19:47:41 GMT - english - Willie J. Bridgeforth, III, Appellant, Susan J. Swanson, Plaintiff, vs. Smith Strum Investment Co. d/b/a Winnetka ... - 2016-02-24T09:20:23+00:00 - Microsoft® Word 2010 - 2016-02-29T13:18:38+00:00 - Microsoft® Word 2010 - Challenges grant of summary judgment. - Willie J. Bridgeforth, III, Appellant, Susan J. Swanson, Plaintiff, vs. Smith Strum Investment Co. d/b/a Winnetka Village Apartments, Respondent. A15-1091, Court of Appeals Unpublished, February 29, 2016. - A15-1091 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 136315 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Joseph Harvey Bellanger, Appellant. A15-150, Court of Appeals Unpublished, February ... - 2016-02-19T09:48:59+00:00 - Microsoft® Word 2013 - 2016-02-29T11:03:42+00:00 - Microsoft® Word 2013 - Challenges to convictions of kidnapping and false imprisonment. - State of Minnesota, Respondent, vs. Joseph Harvey Bellanger, Appellant. A15-150, Court of Appeals Unpublished, February 29, 2016. - A15-150 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 142108 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Travis Joseph Petermeier, Appellant. A15-425, Court of Appeals Unpublished, ... - 2016-02-23T13:14:39+00:00 - Microsoft® Word 2013 - 2016-02-29T11:18:24+00:00 - Microsoft® Word 2013 - Revocation of probation. Reversed and remanded. - State of Minnesota, Respondent, vs. Travis Joseph Petermeier, Appellant. A15-425, Court of Appeals Unpublished, February 29, 2016. - A15-425 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 161062 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Faith Annette Jenson, Appellant. A15-416, Court of Appeals Unpublished, February 29,... - 2016-02-22T15:35:14+00:00 - Microsoft® Word 2013 - 2016-02-29T11:15:48+00:00 - Microsoft® Word 2013 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. Faith Annette Jenson, Appellant. A15-416, Court of Appeals Unpublished, February 29, 2016. - A15-416 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 131559 - Feb 29, - 2016 21:11:06 GMT - english - State of Minnesota, Respondent, vs. Eric Christopher Bakke, Appellant. A15-504, Court of Appeals Unpublished, February ... - 2016-02-23T17:01:05+00:00 - Microsoft® Word 2013 - 2016-02-29T15:09:01+00:00 - Microsoft® Word 2013 - Challenges possession of a controlled substance. Reversed and remanded. - State of Minnesota, Respondent, vs. Eric Christopher Bakke, Appellant. A15-504, Court of Appeals Unpublished, February 29, 2016. - A15-504 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 26025 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Marcus Darrell Pederson, Appellant. A15-583, Court of Appeals Unpublished, February ... - Minnesota Judicial Branch - 2016-02-23T09:07:33+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-29T11:44:24+00:00 - Adobe PDF Library 11.0 - 2016-02-23T15:07:22+00:00 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Marcus Darrell Pederson, Appellant. A15-583, Court of Appeals Unpublished, February 29, 2016. - A15-583 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123814 - Feb 29, - 2016 19:47:41 GMT - english - In re the Marriage of: Emily-Jean Chinwendu Aguocha, petitioner, Respondent, vs. Ikechukwu Hisa Aguocha, Appellant. ... - 2016-02-22T17:00:35+00:00 - Microsoft® Word 2013 - 2016-02-29T11:37:07+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. - In re the Marriage of: Emily-Jean Chinwendu Aguocha, petitioner, Respondent, vs. Ikechukwu Hisa Aguocha, Appellant. A15-563, Court of Appeals Unpublished, February 29, 2016. - A15-563 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 152927 - Feb 29, - 2016 19:47:52 GMT - english - Gail D. Robinson, Relator, vs. Analysts International Corporation, Respondent, Department of Employment and Economic ... - 2016-02-18T11:14:22+00:00 - Microsoft® Word 2013 - 2016-02-29T13:25:08+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Gail D. Robinson, Relator, vs. Analysts International Corporation, Respondent, Department of Employment and Economic Development, Respondent. A15-1200, Court of Appeals Unpublished, February 29, 2016. - A15-1200 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 120143 - Feb 29, - 2016 19:47:53 GMT - english - State of Minnesota, Appellant, vs. Jose Martin Lugo, Jr., Respondent. A15-1432, Court of Appeals Unpublished, February ... - 2016-02-23T14:25:55+00:00 - Microsoft® Word 2013 - 2016-02-29T13:38:07+00:00 - Microsoft® Word 2013 - State of Minnesota challenges that the district court erred as a matter of law by suppressing all evidence discovered as a result of a canine sniff and subsequent search of vehicle. Reversed and remanded. - State of Minnesota, Appellant, vs. Jose Martin Lugo, Jr., Respondent. A15-1432, Court of Appeals Unpublished, February 29, 2016. - A15-1432 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 127530 - Feb 29, - 2016 19:47:41 GMT - english - State of Minnesota, Respondent, vs. Justin Lee Armstrong, Appellant. A15-912, Court of Appeals Unpublished, February 29,... - 2016-02-23T15:23:22+00:00 - Microsoft® Word 2013 - 2016-02-29T12:11:17+00:00 - Microsoft® Word 2013 - Challenges denial of motion to withdraw guilty plea. Reversed and remanded. - State of Minnesota, Respondent, vs. Justin Lee Armstrong, Appellant. A15-912, Court of Appeals Unpublished, February 29, 2016. - A15-912 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 122422 - Feb 29, - 2016 19:47:53 GMT - english - In the Matter of the Welfare of the Children of: M. J. W. and M. A., Parents. A15-1531, Court of Appeals Unpublished, ... - 2016-02-22T15:47:28+00:00 - Microsoft® Word 2013 - 2016-02-29T13:45:27+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: M. J. W. and M. A., Parents. A15-1531, Court of Appeals Unpublished, February 29, 2016. - A15-1531 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 169510 - Feb 29, - 2016 19:47:52 GMT - english - Francis Kiyimba, Relator, vs. Department of Employment and Economic Development, Respondent. A15-1098, Court of Appeals ... - 2016-02-18T14:36:24+00:00 - Microsoft® Word 2013 - 2016-02-29T13:21:19+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Francis Kiyimba, Relator, vs. Department of Employment and Economic Development, Respondent. A15-1098, Court of Appeals Unpublished, February 29, 2016. - A15-1098 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 94010 - Feb 29, - 2016 19:47:41 GMT - english - Heidi Jo Olson, petitioner, Respondent, vs. Mark Douglas Olson, Appellant. A15-900, Court of Appeals Unpublished, ... - 2016-02-22T14:26:58+00:00 - Microsoft® Word 2013 - 2016-02-29T12:09:34+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. - Heidi Jo Olson, petitioner, Respondent, vs. Mark Douglas Olson, Appellant. A15-900, Court of Appeals Unpublished, February 29, 2016. - A15-900 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 114934 - Feb 29, - 2016 19:47:53 GMT - english - Craig L. Anderson, Successor Personal Representative and Sole Beneficiary of the Leslie R. Anderson and Donna Mae ... - 2016-02-18T10:08:11+00:00 - Microsoft® Word 2013 - 2016-02-29T13:40:39+00:00 - Microsoft® Word 2013 - Appellant challenges the district courts determination that he is a frivolous litigant under Minn. R. Gen. Pract. 9.06. - Craig L. Anderson, Successor Personal Representative and Sole Beneficiary of the Leslie R. Anderson and Donna Mae Anderson Revocable Living Trust, on behalf of: The Estate of Leslie R. Anderson, Appellant, vs. Hans Carlson, et al., Respondents, Joel Krekelberg, Respondent, Scott Vance, Respondent. A15-1443, Court of Appeals Unpublished, February 29, 2016. - A15-1443 - 2016-02-29T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 393585 - Feb 24, - 2016 18:21:54 GMT - english - In re Petition for Disciplinary Action against Duane A. Kennedy, a Minnesota Attorney, Registration No. 0055128. ... - 2016-02-19T14:08:57+00:00 - Canon DR-M140 TWAIN - 2016-02-24T12:10:59+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Duane A. Kennedy is conditionally reinstated to the practice of law in the State of Minnesota. - In re Petition for Disciplinary Action against Duane A. Kennedy, a Minnesota Attorney, Registration No. 0055128. A15-1390, Supreme Court Order, February 24, 2016. - A15-1390 - 2016-02-24T00:00:00-0600 - February 19, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1390 In re Petition for Disciplinary Action against Duane A. Kennedy, a Minnesota Attorney, Registration ... - - - pdf - 417267 - Feb 24, - 2016 18:21:54 GMT - english - In re Petition for Disciplinary Action against Marc G. Kurzman, a Minnesota Attorney, Registration No. 59080. A14-1416, ... - 2016-02-18T09:53:31+00:00 - Canon DR-M140 TWAIN - 2016-02-24T12:21:17+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Marc G. Kurzman is conditionally reinstated to the practice of law in the State of Minnesota. - In re Petition for Disciplinary Action against Marc G. Kurzman, a Minnesota Attorney, Registration No. 59080. A14-1416, Supreme Court Order, February 24, 2016. - A14-1416 - 2016-02-24T00:00:00-0600 - February 18, 2016 STATE OF MINNESOTA IN SUPREME COURT A14-1416 In re Petition for Disciplinary Action against Marc G. Kurzman, a Minnesota Attorney, Registration ... - - - pdf - 150755 - Feb 24, - 2016 18:21:53 GMT - english - State of Minnesota, Respondent, vs. True Thao, Appellant. A14-1182, Supreme Court, February 24, 2016. - 2016-02-19T15:18:48+00:00 - Microsoft® Word 2013 - 2016-02-24T12:12:56+00:00 - Microsoft® Word 2013 - The district court's allegedly erroneous admission of evidence under Minn. R. Evid. 404(b) was harmless because it did not significantly affect the verdict. The district court did not abuse its discretion when it admitted expert testimony on gangs. The district court's jury instruction on reasonable doubt was not an abuse of discretion. The appellant's pro se arguments lack merit. - State of Minnesota, Respondent, vs. True Thao, Appellant. A14-1182, Supreme Court, February 24, 2016. - A14-1182 - 2016-02-24T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1182 Ramsey County Stras, J. Took no part, Hudson, J. State of Minnesota, Respondent, vs. Filed: February 24, ... - - - pdf - 265837 - Feb 22, - 2016 17:54:45 GMT - english - In re the Marriage of: Crystol Kevan Caudullo, petitioner, Appellant, vs. Michael Anthony Caudullo, Respondent. A15-314,... - 2016-02-12T12:51:07+00:00 - Microsoft® Word 2013 - 2016-02-22T11:17:21+00:00 - Microsoft® Word 2013 - Child custody dispute. Affirmed in part, reversed in part, and remanded. - In re the Marriage of: Crystol Kevan Caudullo, petitioner, Appellant, vs. Michael Anthony Caudullo, Respondent. A15-314, Court of Appeals Unpublished, February 22, 2016. - A15-314 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 163108 - Feb 22, - 2016 17:54:46 GMT - english - State of Minnesota, Respondent, vs. Steven Tyrone Davis, Appellant. A15-523, Court of Appeals Unpublished, February 22, ... - 2016-02-16T15:23:24+00:00 - Microsoft® Word 2013 - 2016-02-22T11:23:21+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony violation of a harassment restraining order. - State of Minnesota, Respondent, vs. Steven Tyrone Davis, Appellant. A15-523, Court of Appeals Unpublished, February 22, 2016. - A15-523 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 162529 - Feb 22, - 2016 17:54:46 GMT - english - State of Minnesota, Respondent, vs. Antonio Lamonthe White, Appellant. A15-608, Court of Appeals Unpublished, February ... - 2016-02-12T11:07:16+00:00 - Microsoft® Word 2013 - 2016-02-22T11:37:00+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Antonio Lamonthe White, Appellant. A15-608, Court of Appeals Unpublished, February 22, 2016. - A15-608 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 228911 - Feb 22, - 2016 17:54:46 GMT - english - In the Matter of the Welfare of the Children of: C.L.T. and J.T., Parents. A15-451, Court of Appeals Unpublished, ... - 2016-02-17T09:52:19+00:00 - Microsoft® Word 2013 - 2016-02-22T11:19:37+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: C.L.T. and J.T., Parents. A15-451, Court of Appeals Unpublished, February 22, 2016. - A15-451 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 229209 - Feb 22, - 2016 17:54:45 GMT - english - State of Minnesota, Respondent, vs. Emem Ufot Udoh, Appellant. A14-2181, Court of Appeals Unpublished, February 22, ... - 2016-02-11T12:42:18+00:00 - Microsoft® Word 2013 - 2016-02-22T11:06:05+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent, vs. Emem Ufot Udoh, Appellant. A14-2181, Court of Appeals Unpublished, February 22, 2016. - A14-2181 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 130081 - Feb 22, - 2016 17:54:46 GMT - english - Lovell Nahmor Oates, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-788, Court of Appeals Unpublished, ... - 2016-02-16T10:29:21+00:00 - Microsoft® Word 2013 - 2016-02-22T11:39:24+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Lovell Nahmor Oates, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-788, Court of Appeals Unpublished, February 22, 2016. - A15-788 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 193310 - Feb 22, - 2016 17:54:45 GMT - english - State of Minnesota, Respondent, vs. Paula Jean Yackel, Appellant. A15-311, Court of Appeals Unpublished, February 22, ... - 2016-02-16T13:01:21+00:00 - Microsoft® Word 2013 - 2016-02-22T11:12:40+00:00 - Microsoft® Word 2013 - Challenges to convictions of driving while impaired and obstructing the legal process. Affirmed in part, and reversed in part. - State of Minnesota, Respondent, vs. Paula Jean Yackel, Appellant. A15-311, Court of Appeals Unpublished, February 22, 2016. - A15-311 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 115940 - Feb 22, - 2016 17:54:46 GMT - english - William Nichols, Respondent, vs. Soo Line Railroad d/b/a C. P. Railway, a corporation, Appellant. A15-1100, Court of ... - 2016-02-11T11:58:03+00:00 - Microsoft® Word 2013 - 2016-02-22T11:45:07+00:00 - Microsoft® Word 2013 - Appellant challenges the district courts grant, in favor of respondent, of judgment as a matter of law (JMOL), which set aside a jury determination that respondent was contributorily negligent. Reversed and remanded. - William Nichols, Respondent, vs. Soo Line Railroad d/b/a C. P. Railway, a corporation, Appellant. A15-1100, Court of Appeals Unpublished, February 22, 2016. - A15-1100 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 303717 - Feb 22, - 2016 17:54:46 GMT - english - Randall Norman, et al., Respondents, vs. Crow Wing Cooperative Power & Light Company, Appellant. A15-983, Court of ... - 2016-02-16T15:55:22+00:00 - Microsoft® Word 2013 - 2016-02-22T11:42:10+00:00 - Microsoft® Word 2013 - Stray electrical voltage claim. - Randall Norman, et al., Respondents, vs. Crow Wing Cooperative Power & Light Company, Appellant. A15-983, Court of Appeals Unpublished, February 22, 2016. - A15-983 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 172474 - Feb 22, - 2016 17:54:46 GMT - english - Angela K. Schreader, Respondent, vs. DC & D Enterprises, LLC, d/b/a Above Summit Construction Services, Appellant. ... - 2016-02-11T11:34:55+00:00 - Microsoft® Word 2013 - 2016-02-22T11:49:29+00:00 - Microsoft® Word 2013 - Appellant employer challenges the district courts imposition of a statutory penalty for unpaid wages under Minn. Stat. § 181.13(a) (2014). Reversed and remanded. - Angela K. Schreader, Respondent, vs. DC & D Enterprises, LLC, d/b/a Above Summit Construction Services, Appellant. A15-1140, Court of Appeals Unpublished, February 22, 2016. - A15-1140 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 97698 - Feb 22, - 2016 17:54:46 GMT - english - State of Minnesota, Respondent, vs. Lamont Bugg, Jr., Appellant. A15-1137, Court of Appeals Unpublished, February 22, ... - 2016-02-12T09:31:32+00:00 - Microsoft® Word 2013 - 2016-02-22T11:48:02+00:00 - Microsoft® Word 2013 - After appellant was sentenced for failure to register as a predatory offender, the district court sua sponte amended his sentence to add a ten-year conditional- release term under Minn. Stat. § 243.166, subd. 5a (Supp. 2013). Reversed and remanded. - State of Minnesota, Respondent, vs. Lamont Bugg, Jr., Appellant. A15-1137, Court of Appeals Unpublished, February 22, 2016. - A15-1137 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 245184 - Feb 22, - 2016 17:54:46 GMT - english - Peter Gerard Lonergan, Appellant, vs. Emily Johnson Piper, Commissioner of Human Services, Respondent. A15-1625, Court ... - 2016-02-11T10:24:52+00:00 - Microsoft® Word 2013 - 2016-02-22T11:53:55+00:00 - Microsoft® Word 2013 - Appellant challenges the judicial appeal panels order dismissing and denying his petition for discharge or provisional discharge from civil commitment as a sexually dangerous person. - Peter Gerard Lonergan, Appellant, vs. Emily Johnson Piper, Commissioner of Human Services, Respondent. A15-1625, Court of Appeals Unpublished, February 22, 2016. - A15-1625 - 2016-02-22T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 238418 - Feb 17, - 2016 18:41:34 GMT - english - Thomas Daniel Rhodes, Appellant, vs. State of Minnesota, Respondent. A13-560, A15-136, Supreme Court, February 17, 2016. - 2016-02-16T11:20:04+00:00 - Microsoft® Word 2013 - 2016-02-17T12:10:04+00:00 - Microsoft® Word 2013 - The postconviction court did not abuse its discretion by summarily denying appellant's third and fourth petitions for postconviction relief because the petitions are untimely under the postconviction statute of limitations. - Thomas Daniel Rhodes, Appellant, vs. State of Minnesota, Respondent. A13-560, A15-136, Supreme Court, February 17, 2016. - A13-560 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A13-0560 A15-0136 Kandiyohi County Wright, J. Dissenting, Anderson and Lillehaug, JJ. Took no part, Hudson, J. Thomas ... - - - pdf - 366097 - Feb 17, - 2016 18:41:35 GMT - english - Jennifer L. DeCook, et al., Respondents/Cross-Appellants, vs. Olmsted Medical Center, Inc., Brenda J. Hanson, R.N., and ... - 2016-02-16T12:38:01+00:00 - Microsoft® Word 2013 - 2016-02-17T12:18:58+00:00 - Microsoft® Word 2013 - A summons and complaint that are defective because they are signed by an attorney who is not licensed to practice in Minnesota are not void and may, in the district court's discretion, be cured by amendment. Because the plaintiffs produced evidence of service and the defendants did not satisfy their burden to prove that service was not effective, the district court erred in granting the defendants' motion to dismiss for insufficient service. - Jennifer L. DeCook, et al., Respondents/Cross-Appellants, vs. Olmsted Medical Center, Inc., Brenda J. Hanson, R.N., and Darlene M. Pratt, R.N., Appellants/Cross-Respondents, Kenneth M. Palmer, M.D., Jack F. Perrone, M.D., Kimberly McKeon, M.D., and Ashley Morrow, R.N., Cross-Respondents. A14-1180, Supreme Court, February 17, 2016. - A14-1180 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1180 Court of Appeals Lillehaug, J. Concurring in part and dissenting in part, Dietzen, J., Gildea, C.J., and ... - - - pdf - 201180 - Feb 17, - 2016 18:41:35 GMT - english - Wayzata Nissan, LLC, Appellant, vs. Nissan North America, Inc., Respondent, Stephen J. McDaniels, et al., Respondents. ... - 2016-02-12T09:52:35+00:00 - Microsoft® Word 2013 - 2016-02-17T12:21:21+00:00 - Microsoft® Word 2013 - A challenge to the proposed relocation of a motor vehicle dealership under the Minnesota Motor Vehicle Sale and Distribution Act, Minn. Stat. §§ 80E.01-.17 (2014), is not rendered moot by the relocation and operation of the dealership. The notice requirement of Minn. Stat. § 80E.14, subd. 1, applies on the date that a manufacturer develops an intention to authorize the relocation of a motor vehicle dealership. The exception for the "relocation of an existing dealer" in Minn. Stat. § 80E.14, subd. 1, does not apply when the relocated dealership will be operated by a new dealer. Affirmed in part, reversed in part, and remanded. - Wayzata Nissan, LLC, Appellant, vs. Nissan North America, Inc., Respondent, Stephen J. McDaniels, et al., Respondents. A14-1652, Supreme Court, February 17, 2016. - A14-1652 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1652 Court of Appeals Wright, J. Wayzata Nissan, LLC, Appellant, vs. Filed: February 17, 2016 Office of Appellate ... - - - pdf - 310842 - Feb 18, - 2016 17:36:36 GMT - english - State of Minnesota, Respondent, vs. Joshua Lee Myhre, Appellant. A14-670, Supreme Court, February 17, 2016. - 2016-02-18T11:18:10+00:00 - Microsoft® Word 2013 - 2016-02-18T11:35:41+00:00 - Microsoft® Word 2013 - Appellant is not entitled to a new trial based on the district court's failure to fully comply with the provisions of Minnesota Rule of Criminal Procedure 26.01, subdivision 4. - State of Minnesota, Respondent, vs. Joshua Lee Myhre, Appellant. A14-670, Supreme Court, February 17, 2016. - A14-670 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0670 Court of Appeals Anderson, J. Dissenting, Wright and Lillehaug, JJ. State of Minnesota, Respondent, vs. ... - - - pdf - 434441 - Feb 17, - 2016 18:41:35 GMT - english - In re Petition for Disciplinary Action against Jorge Luis Sanchez, a Minnesota Attorney, Registration No. 0388556. ... - 2016-02-03T14:30:45+00:00 - Canon DR-M140 TWAIN - 2016-02-17T12:35:50+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Jorge Luis Sanchez is indefinitely suspended from the practice of law. - In re Petition for Disciplinary Action against Jorge Luis Sanchez, a Minnesota Attorney, Registration No. 0388556. A16-66, Supreme Court Order, February 17, 2016. - A16-66 - 2016-02-17T00:00:00-0600 - February 3, 2016 STATE OF MINNESOTA IN SUPREME COURT Al6-0066 In rePetition for Disciplinary Action against Jorge Luis Sanchez, a Minnesota Attorney, Registration ... - - - pdf - 248852 - Feb 17, - 2016 18:41:35 GMT - english - Ali M. Shire, Respondent, vs. Rosemount, Inc., Self-Insured/Berkley Risk Administrators Company, LLC, Relators, and ... - 2016-02-15T15:42:44+00:00 - Microsoft® Word 2013 - 2016-02-17T12:34:20+00:00 - Microsoft® Word 2013 - The voluntary-recreational-program exception to the workers' compensation statute, Minn. Stat. § 176.021, subd. 9 (2014), is not satisfied when the employees' choices are either to attend the program or risk forfeiting pay or benefits. The phrase "voluntary recreational program" in Minn. Stat. § 176.021, subd._9, plainly refers to a voluntary "program," not voluntary activities within a program. - Ali M. Shire, Respondent, vs. Rosemount, Inc., Self-Insured/Berkley Risk Administrators Company, LLC, Relators, and Twin Cities Orthopedics, P.A., Crosstown Surgery Center, and Minnesota Department of Human Services/BRS, Intervenors. A15-856, Supreme Court, February 17, 2016. - A15-856 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0856 Workers’ Compensation Court of Appeals Wright, J. Dissenting, Anderson, J. Ali M. Shire, Respondent, vs. ... - - - pdf - 339543 - Feb 17, - 2016 18:41:35 GMT - english - In re Petition for Disciplinary Action against Mitchell Alan Robinson, a Minnesota Attorney, Registration No. 0281359. ... - 2016-02-03T14:37:57+00:00 - Canon DR-M140 TWAIN - 2016-02-17T12:37:43+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Mitchell Alan Robinson is publicly reprimanded. - In re Petition for Disciplinary Action against Mitchell Alan Robinson, a Minnesota Attorney, Registration No. 0281359. A15-1357, Supreme Court Order, February 17, 2016. - A15-1357 - 2016-02-17T00:00:00-0600 - February 3, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1357 In re Petition for Disciplinary Action against Mitchell Alan Robinson, a Minnesota Attorney, Registration ... - - - pdf - 291007 - Feb 18, - 2016 17:42:45 GMT - english - Curtis G. and Stacy S. Marks, Respondents, vs. Commissioner of Revenue, Relator. A15-1145, Supreme Court, February 17, ... - 2016-02-18T10:18:32+00:00 - Microsoft® Word 2013 - 2016-02-18T11:42:23+00:00 - Microsoft® Word 2013 - When determining whether a taxpayer was a "resident" as defined in Minn. Stat. § 290.01, subd. 7(b) (2014), the Commissioner may aggregate all the days the taxpayer spent in Minnesota during the tax year, including the days spent in the state as a domiciliary. Reversed and remanded. - Curtis G. and Stacy S. Marks, Respondents, vs. Commissioner of Revenue, Relator. A15-1145, Supreme Court, February 17, 2016. - A15-1145 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-1145 Tax Court Lillehaug, J. Dissenting, Stras, J., Gildea C.J., Anderson, J. Curtis G. and Stacy S. Marks, Respondents, ... - - - pdf - 269787 - Feb 17, - 2016 18:41:35 GMT - english - Melrose Gates, LLC, Respondent, vs. Chor Moua, et al., Appellants. A14-1131, Supreme Court, February 17, 2016. - 2016-02-16T12:06:03+00:00 - Microsoft® Word 2013 - 2016-02-17T12:26:22+00:00 - Microsoft® Word 2013 - When a district court grants summary judgment dismissing an equitable claim on the ground that, as a matter of law, the requirements for equitable relief were not met, and the record shows that the facts were undisputed and the district court did not weigh equitable factors, an appellate court reviews the district court's decision de novo. Under the factors set forth in RAM Mutual Insurance Co. v. Rohde, 820 N.W.2d 1 (Minn. 2012), the landlord can proceed on a subrogation claim for damage to the tenants own apartment, but not for damage to other property belonging to the landlord. Affirmed in part, reversed in part, and remanded. - Melrose Gates, LLC, Respondent, vs. Chor Moua, et al., Appellants. A14-1131, Supreme Court, February 17, 2016. - A14-1131 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1131 Court of Appeals Dietzen, J. Concurring in part and dissenting in part, Lillehaug, J., Gildea, C.J., Anderson, ... - - - pdf - 214646 - Feb 18, - 2016 17:39:20 GMT - english - Jedidiah Dean Troxel, Appellant, vs. State of Minnesota, Respondent. A15-1294, Supreme Court, February 17, 2016. - 2016-02-16T12:16:15+00:00 - Microsoft® Word 2013 - 2016-02-18T11:38:42+00:00 - Microsoft® Word 2013 - The district court did not abuse its discretion by denying appellant's motion to introduce alternative-perpetrator evidence. The district court did not abuse its discretion by denying appellant's request for a jury instruction on the lesser-included offense of second-degree intentional murder. The presiding judge at appellant's trial was not disqualified for an appearance of partiality. - Jedidiah Dean Troxel, Appellant, vs. State of Minnesota, Respondent. A15-1294, Supreme Court, February 17, 2016. - A15-1294 - 2016-02-17T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-1294 Pennington County Wright, J. Dissenting, Lillehaug, J., Gildea, C.J., Anderson, J. Jedidiah Dean Troxel, ... - - - pdf - 276354 - Feb 16, - 2016 16:05:39 GMT - english - State of Minnesota, Respondent, vs. Alie Christine Theodore Dorn, Appellant. A15-7, Court of Appeals Published, ... - 2016-02-04T10:56:47+00:00 - Microsoft® Word 2013 - 2016-02-16T10:05:17+00:00 - Microsoft® Word 2013 - A person may be convicted of first-degree assault based on the intentional infliction of great bodily harm if that person commits a volitional act in a hostile manner, even where the degree of force is as slight as a push, so long as that act is a substantial cause of the bodily harm. - State of Minnesota, Respondent, vs. Alie Christine Theodore Dorn, Appellant. A15-7, Court of Appeals Published, February 16, 2016. - A15-7 - 2016-02-16T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0007 State of Minnesota, Respondent, vs. Alie Christine Theodore Dorn, Appellant. Filed February 16, 2016 Affirmed ... - - - pdf - 208473 - Feb 16, - 2016 16:05:40 GMT - english - State of Minnesota, Respondent, vs. Michelle MacDonald Shimota, Appellant. A14-1981, Court of Appeals Published, ... - 2016-02-09T17:41:46+00:00 - Microsoft® Word 2013 - 2016-02-16T10:04:05+00:00 - Microsoft® Word 2013 - 1. Minnesota Statutes section 169.91, subdivision 1 (2012), does not require an arresting police officer to present a suspected impaired driver to a judge before the officer completes all administrative duties attendant to an impaired-driving arrest, including administering the implied-consent testing required by Minnesota Statutes section 169A.51 (2012). 2. A criminal defendant has no Sixth Amendment right to create a video recording of her trial. - State of Minnesota, Respondent, vs. Michelle MacDonald Shimota, Appellant. A14-1981, Court of Appeals Published, February 16, 2016 - A14-1981 - 2016-02-16T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A14-1981 State of Minnesota, Respondent, vs. Michelle MacDonald Shimota, Appellant. Filed February 16, 2016 Affirmed ... - - - pdf - 1130847 - Feb 16, - 2016 20:24:39 GMT - english - State of Minnesota, Respondent, vs. Vernon David Matter, Appellant. A15-449, Court of Appeals Unpublished, February 16, ... - Minnesota Judicial Branch - 2016-02-09T10:28:01+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-16T11:10:52+00:00 - Adobe PDF Library 11.0 - 2016-02-09T16:27:48+00:00 - Challenges to convictions of possessing a controlled substance and possessing a short-barreled shotgun. Reversed. - State of Minnesota, Respondent, vs. Vernon David Matter, Appellant. A15-449, Court of Appeals Unpublished, February 16, 2016. - A15-449 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 106505 - Feb 16, - 2016 20:24:38 GMT - english - Eugene Lee Rushton, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-584, Court of Appeals Unpublished, ... - 2016-02-04T08:27:44+00:00 - Microsoft® Word 2013 - 2016-02-16T11:22:56+00:00 - Microsoft® Word 2013 - Challenges denial of motion to correct life sentence under Minn. Stat. § 609.3455, subd. 4(a)(1) (2010), for first-degree criminal sexual conduct. - Eugene Lee Rushton, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-584, Court of Appeals Unpublished, February 16, 2016. - A15-584 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174559 - Feb 16, - 2016 20:24:39 GMT - english - State of Minnesota, Respondent, vs. Demetrious Limel Parker, Appellant. A15-654, Court of Appeals Unpublished, February ... - 2016-02-09T13:17:52+00:00 - Microsoft® Word 2013 - 2016-02-16T11:37:50+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Demetrious Limel Parker, Appellant. A15-654, Court of Appeals Unpublished, February 16, 2016. - A15-654 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 32814 - Feb 16, - 2016 20:24:39 GMT - english - Antonio Medina, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1067, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-02-09T09:56:12+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-16T13:35:32+00:00 - Adobe PDF Library 11.0 - 2016-02-09T15:55:59+00:00 - Challenges the district courts denial of motion to correct sentence. - Antonio Medina, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1067, Court of Appeals Unpublished, February 16, 2016. - A15-1067 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 159962 - Feb 16, - 2016 20:24:39 GMT - english - Jay Thomas Nygard, petitioner, Appellant (A15-1276), Kendall Mae Nygard, petitioner, Appellant (A15-1277), vs. Dennis S.... - 2016-02-09T13:13:24+00:00 - Microsoft® Word 2013 - 2016-02-16T13:52:41+00:00 - Microsoft® Word 2013 - Challenge district court orders dismissing their petitions seeking ex parte harassment restraining orders (HRO) against a neighbor. - Jay Thomas Nygard, petitioner, Appellant (A15-1276), Kendall Mae Nygard, petitioner, Appellant (A15-1277), vs. Dennis S. Walsh, Respondent. A15-1276, Court of Appeals Unpublished, February 16, 2016. - A15-1276 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 135069 - Feb 16, - 2016 20:24:39 GMT - english - State of Minnesota, Respondent, vs. Elliott Lamar-Seccer Pierson, Appellant. A15-1057, Court of Appeals Unpublished, ... - 2016-02-09T10:57:42+00:00 - Microsoft® Word 2013 - 2016-02-16T11:53:29+00:00 - Microsoft® Word 2013 - Challenges to conviction of aggravated robbery. - State of Minnesota, Respondent, vs. Elliott Lamar-Seccer Pierson, Appellant. A15-1057, Court of Appeals Unpublished, February 16, 2016. - A15-1057 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107946 - Feb 16, - 2016 20:24:39 GMT - english - In the Matter of the Civil Commitment of: John Albert Wood. A15-1428, Court of Appeals Unpublished, February 16, 2016. - 2016-02-09T13:50:44+00:00 - Microsoft® Word 2013 - 2016-02-16T14:00:37+00:00 - Microsoft® Word 2013 - Challenges the district courts judgment committing him as mentally ill and dangerous. - In the Matter of the Civil Commitment of: John Albert Wood. A15-1428, Court of Appeals Unpublished, February 16, 2016. - A15-1428 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 216909 - Feb 16, - 2016 20:24:38 GMT - english - State of Minnesota, Respondent, vs. Marlow Shelton McDonald, Appellant. A15-268, Court of Appeals Unpublished, February ... - 2016-02-09T11:39:16+00:00 - Microsoft® Word 2013 - 2016-02-16T11:07:22+00:00 - Microsoft® Word 2013 - Challenges to convictions of controlled-substance, firearms-related, and fleeing-a-peace-officer-in-a-motor-vehicle convictions and his aggravated durational departure sentence. - State of Minnesota, Respondent, vs. Marlow Shelton McDonald, Appellant. A15-268, Court of Appeals Unpublished, February 16, 2016. - A15-268 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 36432 - Feb 16, - 2016 20:24:39 GMT - english - In the Matter of the Welfare of the Child of: C. M. R. and T. P. D., Parents. A15-1307, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-02-08T10:56:10+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-16T13:56:43+00:00 - Adobe PDF Library 11.0 - 2016-02-08T16:42:44+00:00 - Termination of parental rights matter. - In the Matter of the Welfare of the Child of: C. M. R. and T. P. D., Parents. A15-1307, Court of Appeals Unpublished, February 16, 2016. - A15-1307 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 186436 - Mar 9, - 2016 19:35:00 GMT - english - State of Minnesota, Respondent, vs. Lisa Dorthea Moodie, Appellant. A15-537, Court of Appeals Unpublished, February 16, ... - 2016-03-08T16:34:20+00:00 - Microsoft® Word 2013 - 2016-03-09T13:22:19+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while inder the influence due to prosecutor prejudicial misconduct. Reversed and remanded. - State of Minnesota, Respondent, vs. Lisa Dorthea Moodie, Appellant. A15-537, Court of Appeals Unpublished, February 16, 2016. - A15-537 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 191615 - Feb 16, - 2016 20:24:38 GMT - english - State of Minnesota, Respondent, vs. Lorenzo Leontay Washington, Appellant. A15-31, Court of Appeals Unpublished, ... - 2016-02-09T10:02:33+00:00 - Microsoft® Word 2013 - 2016-02-16T11:03:38+00:00 - Microsoft® Word 2013 - Challenges to convictions of aiding and abetting attempted second-degree murder and aiding and abetting second-degree assault. - State of Minnesota, Respondent, vs. Lorenzo Leontay Washington, Appellant. A15-31, Court of Appeals Unpublished, February 16, 2016. - A15-31 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 67744 - Feb 16, - 2016 20:24:39 GMT - english - Denise C. Esler, Relator, vs. Community Veterinary Clinic, P.A., Respondent, Department of Employment and Economic ... - Minnesota Judicial Branch - 2016-02-08T13:09:11+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-16T11:50:01+00:00 - Adobe PDF Library 11.0 - 2016-02-08T19:08:49+00:00 - Challenges disqualification from receiving unemployment benefits. - Denise C. Esler, Relator, vs. Community Veterinary Clinic, P.A., Respondent, Department of Employment and Economic Development, Respondent. A15-798, Court of Appeals Unpublished, February 16, 2016. - A15-798 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 117049 - Feb 16, - 2016 20:24:39 GMT - english - Craig Allan Hargreaves, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1046, Court of Appeals ... - 2016-02-05T13:26:17+00:00 - Microsoft® Word 2013 - 2016-02-16T11:51:58+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Craig Allan Hargreaves, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-1046, Court of Appeals Unpublished, February 16, 2016. - A15-1046 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174591 - Feb 16, - 2016 20:24:39 GMT - english - In the Matter of the Welfare of the Children of: S. D., Parent. A15-1241, Court of Appeals Unpublished, February 16, ... - 2016-02-09T13:48:38+00:00 - Microsoft® Word 2013 - 2016-02-16T13:37:41+00:00 - Microsoft® Word 2013 - Challenges the district courts adjudication of her child as in need of protection or services (CHIPS). Reversed. - In the Matter of the Welfare of the Children of: S. D., Parent. A15-1241, Court of Appeals Unpublished, February 16, 2016. - A15-1241 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 109047 - Feb 16, - 2016 20:24:39 GMT - english - Kenneth H. Zimmermann, et al., Appellants, Gary C. Berndt, et al., Appellants, vs. Sauk River Watershed District, ... - 2016-02-05T14:20:32+00:00 - Microsoft® Word 2013 - 2016-02-16T11:41:08+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. Reversed and remanded. - Kenneth H. Zimmermann, et al., Appellants, Gary C. Berndt, et al., Appellants, vs. Sauk River Watershed District, Respondent. A15-782, Court of Appeals Unpublished, February 16, 2016. - A15-782 - 2016-02-16T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 117520 - Feb 10, - 2016 16:48:46 GMT - english - State of Minnesota, Appellant, vs. Jimmy Dawayne Lester, Respondent. A14-431, Supreme Court, February 10, 2016. - 2016-02-08T15:59:15+00:00 - Microsoft® Word 2013 - 2016-02-10T10:47:36+00:00 - Microsoft® Word 2013 - The warrantless search of respondent's car was lawful under the automobile exception because there was probable cause to believe that the car contained a controlled substance. - State of Minnesota, Appellant, vs. Jimmy Dawayne Lester, Respondent. A14-431, Supreme Court, February 10, 2016. - A14-431 - 2016-02-10T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0431 Court of Appeals Wright, J. Took no part, Hudson, J. State of Minnesota, Appellant, vs. Filed: February ... - - - pdf - 187518 - Feb 10, - 2016 16:48:46 GMT - english - In re Petition for Disciplinary Action against Paul Roland Rambow, a Minnesota Attorney, Registration No. 0169389. ... - 2016-02-08T12:12:39+00:00 - Microsoft® Word 2013 - 2016-02-10T10:45:19+00:00 - Microsoft® Word 2013 - Disbarment is the appropriate sanction for an attorney who misappropriated client funds; forged, or allowed his staff to forge, endorsements on clients' settlement checks and medical reimbursement checks; failed to maintain required trust account books and records; made false statements to the Director and to an ethics investigator; failed to cooperate during the disciplinary investigation; violated multiple court orders; improperly billed clients; failed to communicate adequately and act diligently on client matters; took unauthorized actions on behalf of former clients after the termination of representation; released confidential client information to third parties; engaged in a conflict of interest; and engaged in the unauthorized practice of law. - In re Petition for Disciplinary Action against Paul Roland Rambow, a Minnesota Attorney, Registration No. 0169389. A14-804, Supreme Court, February 10, 2016. - A14-804 - 2016-02-10T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0804 Original Jurisdiction Per Curiam In re Petition for Disciplinary Action against Paul Roland Rambow, a Minnesota ... - - - pdf - 178298 - Feb 10, - 2016 16:48:46 GMT - english - Brent R. Wilcox, et al., Plaintiffs/Appellants, vs. State Farm Fire and Casualty Company, Defendant/Respondent. A15-724,... - 2016-02-08T10:26:12+00:00 - Microsoft® Word 2013 - 2016-02-10T10:30:45+00:00 - Microsoft® Word 2013 - When a homeowner's insurance policy does not define the term "actual cash value," it is for the trier of fact to determine whether labor costs embedded in the cost of repairing or replacing damaged property are depreciable for the purpose of calculating the actual cash value of a covered loss. Certified question, as reformulated, answered in the affirmative. - Brent R. Wilcox, et al., Plaintiffs/Appellants, vs. State Farm Fire and Casualty Company, Defendant/Respondent. A15-724, Supreme Court, February 10, 2016. - A15-724 - 2016-02-10T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0724 Certified Question Wright, J. United States District Court, Took no part, Stras and Hudson, JJ. District ... - - - pdf - 247215 - Feb 10, - 2016 16:48:46 GMT - english - State of Minnesota, Respondent, vs. Amanda Lea Peltier, Appellant. A14-1452, Supreme Court, February 10, 2016. - 2016-02-05T10:17:19+00:00 - Microsoft® Word 2013 - 2016-02-10T10:47:52+00:00 - Microsoft® Word 2013 - The instruction given to the jury describing the elements of first-degree child abuse murder, Minn. Stat. § 609.185(a)(5) (2014), including malicious punishment of a child as a type of child abuse, constituted plain error because the instruction failed to include the elements of malicious punishment of a child under Minn. Stat. § 609.377, subd. 1 (2014). The appellant, however, failed to establish that the erroneous jury instruction affected her substantial rights. - State of Minnesota, Respondent, vs. Amanda Lea Peltier, Appellant. A14-1452, Supreme Court, February 10, 2016. - A14-1452 - 2016-02-10T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-1452 Pope County Dietzen, J. Took no part, Hudson, J. State of Minnesota, Respondent, vs. Filed: February 10, ... - - - pdf - 219079 - Feb 10, - 2016 16:48:46 GMT - english - Keith Richard Rossberg, Appellant, vs. State of Minnesota, Respondent. A15-1205, Supreme Court, February 10, 2016. - 2016-02-08T14:51:44+00:00 - Microsoft® Word 2013 - 2016-02-10T10:28:44+00:00 - Microsoft® Word 2013 - The postconviction judge erred by ruling on appellant's motion to disqualify the postconviction judge for cause rather than referring the motion to the chief judge of the judicial district. The failure to refer appellant's disqualification motion to the chief judge was harmless in this case because the motion lacked merit. Because it is undisputed that appellant's postconviction petition was submitted to the court without factual support, the postconviction court did not abuse its discretion by denying both appellant's request for additional time to file an addendum to the petition and appellant's petition. - Keith Richard Rossberg, Appellant, vs. State of Minnesota, Respondent. A15-1205, Supreme Court, February 10, 2016. - A15-1205 - 2016-02-10T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-1205 Wright County Wright, J. Keith Richard Rossberg, Appellant, vs. Filed: February 10, 2016 Office of Appellate ... - - - pdf - 323456 - Mar 22, - 2016 20:56:30 GMT - english - State of Minnesota, Respondent, vs. Rafael Alfonso Banks, Appellant. A15-279, Court of Appeals Published, February 8, ... - 2016-03-16T09:51:22+00:00 - Microsoft® Word 2013 - 2016-03-22T15:55:52+00:00 - Microsoft® Word 2013 - Rule 30.02 of the Minnesota Rules of Criminal Procedure, which permits the district court to dismiss a complaint if the prosecutor has unnecessarily delayed bringing the defendant to trial, applies to claims of pre-charge delay. To warrant dismissal under rule 30.02 of the Minnesota Rules of Criminal Procedure on a claim of unnecessary pre-charge delay, a defendant must demonstrate that he has suffered prejudice by the delay. - State of Minnesota, Respondent, vs. Rafael Alfonso Banks, Appellant. A15-279, Court of Appeals Published, February 8, 2016. - A15-279 - 2016-02-08T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0279 State of Minnesota, Respondent, vs. Rafael Alfonso Banks, Appellant. Filed February 8, 2016 Affirmed Chutich, ... - - - pdf - 117758 - Feb 8, - 2016 16:07:33 GMT - english - Jennifer White, Relator, vs. University of Minnesota Physicians Corp., Respondent, Department of Employment and ... - 2016-01-29T12:44:01+00:00 - Microsoft® Word 2013 - 2016-02-08T10:07:17+00:00 - Microsoft® Word 2013 - When the evidence in the record strongly suggests that an unrepresented applicant for unemployment benefits was suffering from depression when she was terminated for alleged employment misconduct, the unemployment-law judge has a duty to assist the applicant in developing the record regarding whether the alleged misconduct was a consequence of the applicants mental illness or impairment. Reversed and remanded. - Jennifer White, Relator, vs. University of Minnesota Physicians Corp., Respondent, Department of Employment and Economic Development, Respondent. A15-892, Court of Appeals Published, February 8, 2016. - A15-892 - 2016-02-08T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0892 Jennifer White, Relator, vs. University of Minnesota Physicians Corp., Respondent, Department of Employment ... - - - pdf - 120250 - Feb 8, - 2016 21:22:57 GMT - english - In re the Marriage of: Janelle M. Schires, petitioner, Respondent, vs. Vernon D. Schires, Appellant. A15-276, Court of ... - 2016-02-01T14:20:26+00:00 - Microsoft® Word 2013 - 2016-02-08T12:08:18+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. Affirmed in part, reversed in part, and remanded. - In re the Marriage of: Janelle M. Schires, petitioner, Respondent, vs. Vernon D. Schires, Appellant. A15-276, Court of Appeals Unpublished, February 8, 2016. - A15-276 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 202543 - Feb 8, - 2016 21:22:56 GMT - english - In re the Marriage of: Nathan Francis Gregor, petitioner, Respondent, vs. Dawn Marie Buttera Gregor, Appellant. ... - 2016-02-02T12:25:13+00:00 - Microsoft® Word 2013 - 2016-02-08T11:56:08+00:00 - Microsoft® Word 2013 - Custody dispute. - In re the Marriage of: Nathan Francis Gregor, petitioner, Respondent, vs. Dawn Marie Buttera Gregor, Appellant. A14-1920, Court of Appeals Unpublished, February 8, 2016. - A14-1920 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 26784 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Jodi Lynette Lacy, Appellant. A15-348, Court of Appeals Unpublished, February 8, ... - Minnesota Judicial Branch - 2016-02-01T11:55:38+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-08T12:26:17+00:00 - Adobe PDF Library 11.0 - 2016-02-01T17:55:28+00:00 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. Jodi Lynette Lacy, Appellant. A15-348, Court of Appeals Unpublished, February 8, 2016. - A15-348 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 131613 - Feb 8, - 2016 21:23:07 GMT - english - In re the Estate of: Harold E. Farnes, a/k/a Harold Farnes and Harold Ellwood Farnes, Deceased. A15-673, Court of ... - 2016-02-01T14:04:37+00:00 - Microsoft® Word 2013 - 2016-02-08T14:14:28+00:00 - Microsoft® Word 2013 - Probate dispute. - In re the Estate of: Harold E. Farnes, a/k/a Harold Farnes and Harold Ellwood Farnes, Deceased. A15-673, Court of Appeals Unpublished, February 8, 2016. - A15-673 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 109368 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Tuquan Lee Smith, Appellant. A15-472, Court of Appeals Unpublished, February 8, ... - 2016-02-02T09:42:45+00:00 - Microsoft® Word 2013 - 2016-02-08T13:34:49+00:00 - Microsoft® Word 2013 - Challenges to conviction of first-degree aggravated robbery. - State of Minnesota, Respondent, vs. Tuquan Lee Smith, Appellant. A15-472, Court of Appeals Unpublished, February 8, 2016. - A15-472 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 169119 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Donalonte Jamar Wade, Defendant, Midwest Bonding, LLC, Appellant. A15-754, Court of ... - 2016-01-29T09:42:35+00:00 - Microsoft® Word 2013 - 2016-02-08T14:25:03+00:00 - Microsoft® Word 2013 - Appellant bonding company argues that the district court abused its discretion by denying its petition to reinstate and discharge a forfeited bail bond. - State of Minnesota, Respondent, vs. Donalonte Jamar Wade, Defendant, Midwest Bonding, LLC, Appellant. A15-754, Court of Appeals Unpublished, February 8, 2016. - A15-754 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 28395 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Ronnie Jo Johnson, Appellant. A15-803, Court of Appeals Unpublished, February 8, ... - Minnesota Judicial Branch - 2016-02-01T11:03:26+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-08T14:41:10+00:00 - Adobe PDF Library 11.0 - 2016-02-01T17:03:19+00:00 - Revocation of probation. - State of Minnesota, Respondent, vs. Ronnie Jo Johnson, Appellant. A15-803, Court of Appeals Unpublished, February 8, 2016. - A15-803 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 103739 - Feb 8, - 2016 21:23:07 GMT - english - John Howard Bartz, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-759, Court of Appeals Unpublished, ... - 2016-02-02T15:02:38+00:00 - Microsoft® Word 2013 - 2016-02-08T14:30:56+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - John Howard Bartz, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-759, Court of Appeals Unpublished, February 8, 2016. - A15-759 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 130154 - Feb 8, - 2016 21:23:07 GMT - english - In re the Marriage of: Amy Christine Olmsted, f/k/a Amy Christine Zarbok, petitioner, Appellant, vs. William Scott ... - 2016-02-02T12:46:46+00:00 - Microsoft® Word 2013 - 2016-02-08T14:55:31+00:00 - Microsoft® Word 2013 - Property dispute and dissolution of marriage matter. - In re the Marriage of: Amy Christine Olmsted, f/k/a Amy Christine Zarbok, petitioner, Appellant, vs. William Scott Zarbok, Respondent. A15-973, Court of Appeals Unpublished, February 8, 2016. - A15-973 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 175585 - Feb 8, - 2016 21:23:07 GMT - english - Lawrence Charles Nichols, Appellant, vs. Erin Lynn Cimbura, Respondent. A15-861, Court of Appeals Unpublished, February ... - 2016-02-02T13:05:50+00:00 - Microsoft® Word 2013 - 2016-02-08T14:52:13+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - Lawrence Charles Nichols, Appellant, vs. Erin Lynn Cimbura, Respondent. A15-861, Court of Appeals Unpublished, February 8, 2016. - A15-861 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 99483 - Feb 8, - 2016 21:23:08 GMT - english - State of Minnesota, Respondent, vs. Kari Lynn Swenstad, Appellant. A15-996, Court of Appeals Unpublished, February 8, ... - 2016-02-02T09:34:40+00:00 - Microsoft® Word 2013 - 2016-02-08T15:04:56+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Kari Lynn Swenstad, Appellant. A15-996, Court of Appeals Unpublished, February 8, 2016. - A15-996 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 105162 - Feb 8, - 2016 21:23:08 GMT - english - State of Minnesota, Respondent, vs. Doua Chang, Appellant. A15-1281, Court of Appeals Unpublished, February 8, 2016. - 2016-02-02T09:40:53+00:00 - Microsoft® Word 2013 - 2016-02-08T15:13:42+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Doua Chang, Appellant. A15-1281, Court of Appeals Unpublished, February 8, 2016. - A15-1281 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 115994 - Feb 8, - 2016 21:22:57 GMT - english - State of Minnesota, Respondent, vs. Kenneth Edgar Staeheli, Appellant. A15-250, Court of Appeals Unpublished, February ... - 2016-01-29T09:36:33+00:00 - Microsoft® Word 2013 - 2016-02-08T12:06:11+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree burglary. Reversed and remanded. - State of Minnesota, Respondent, vs. Kenneth Edgar Staeheli, Appellant. A15-250, Court of Appeals Unpublished, February 8, 2016. - A15-250 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 356074 - Feb 8, - 2016 21:22:57 GMT - english - State of Minnesota, Respondent, vs. Reynaldo Morales, Appellant. A15-101, Court of Appeals Unpublished, February 8, ... - 2016-02-02T12:21:13+00:00 - Microsoft® Word 2013 - 2016-02-08T12:03:07+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Reynaldo Morales, Appellant. A15-101, Court of Appeals Unpublished, February 8, 2016. - A15-101 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 96512 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Gerald Ira Evans, Appellant. A15-572, Court of Appeals Unpublished, February 8, ... - 2016-02-02T13:55:26+00:00 - Microsoft® Word 2013 - 2016-02-08T14:08:39+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Gerald Ira Evans, Appellant. A15-572, Court of Appeals Unpublished, February 8, 2016. - A15-572 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 174143 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Joshua Bruce Monson, Appellant. A15-407, Court of Appeals Unpublished, February 8, ... - 2016-02-02T09:44:45+00:00 - Microsoft® Word 2013 - 2016-02-08T13:33:20+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Joshua Bruce Monson, Appellant. A15-407, Court of Appeals Unpublished, February 8, 2016. - A15-407 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 37055 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Frederick Alusine Huballa, Appellant. A15-737, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-02-02T09:59:15+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-08T14:23:08+00:00 - Adobe PDF Library 11.0 - 2016-02-02T15:59:00+00:00 - Challenges possession of controlled substance charge. - State of Minnesota, Respondent, vs. Frederick Alusine Huballa, Appellant. A15-737, Court of Appeals Unpublished, February 8, 2016. - A15-737 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 34054 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Timothy Charles Dempze, Appellant. A15-492, Court of Appeals Unpublished, February ... - Minnesota Judicial Branch - 2016-02-02T09:14:14+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-08T13:37:25+00:00 - Adobe PDF Library 11.0 - 2016-02-02T15:13:54+00:00 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Timothy Charles Dempze, Appellant. A15-492, Court of Appeals Unpublished, February 8, 2016. - A15-492 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 201023 - Feb 8, - 2016 21:23:07 GMT - english - Heather Kirchner, Relator, vs. County of Nobles, Respondent. A15-794, Court of Appeals Unpublished, February 8, 2016. - 2016-02-02T11:50:57+00:00 - Microsoft® Word 2013 - 2016-02-08T14:35:05+00:00 - Microsoft® Word 2013 - Certiorari appeal. Remanded. - Heather Kirchner, Relator, vs. County of Nobles, Respondent. A15-794, Court of Appeals Unpublished, February 8, 2016. - A15-794 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 184562 - Feb 8, - 2016 21:23:07 GMT - english - William D. Raffield, Appellant, Janice M. Raffield, Appellant, vs. Stephen K. Hursh, et al., Respondents, Wayne L. ... - 2016-02-02T12:05:46+00:00 - Microsoft® Word 2013 - 2016-02-08T14:48:33+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - William D. Raffield, Appellant, Janice M. Raffield, Appellant, vs. Stephen K. Hursh, et al., Respondents, Wayne L. Knoll, et al., Respondents. A15-828, Court of Appeals Unpublished, February 8, 2016. - A15-828 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 176018 - Feb 8, - 2016 21:23:07 GMT - english - State of Minnesota, Respondent, vs. Terri Ann Demarrias, Defendant, Midwest Bonding, LLC, Appellant. A14-756, Court of ... - 2016-01-29T09:50:01+00:00 - Microsoft® Word 2013 - 2016-02-08T14:27:24+00:00 - Microsoft® Word 2013 - Appellant bonding company argues that the district court abused its discretion by denying its petition to reinstate and discharge a forfeited bail bond. - State of Minnesota, Respondent, vs. Terri Ann Demarrias, Defendant, Midwest Bonding, LLC, Appellant. A14-756, Court of Appeals Unpublished, February 8, 2016. - A14-756 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 114279 - Feb 8, - 2016 21:23:08 GMT - english - State of Minnesota, Respondent, vs. Eugene Thomas Powells, Appellant. A15-1025, Court of Appeals Unpublished, February ... - 2016-01-28T09:39:27+00:00 - Microsoft® Word 2013 - 2016-02-08T15:09:01+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Eugene Thomas Powells, Appellant. A15-1025, Court of Appeals Unpublished, February 8, 2016. - A15-1025 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 103002 - Feb 8, - 2016 21:23:08 GMT - english - State of Minnesota, Respondent, vs. Patrick Alvin Gunnink, Appellant. A15-1042, Court of Appeals Unpublished, February ... - 2016-02-02T09:29:27+00:00 - Microsoft® Word 2013 - 2016-02-08T15:12:06+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Patrick Alvin Gunnink, Appellant. A15-1042, Court of Appeals Unpublished, February 8, 2016. - A15-1042 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 158820 - Feb 8, - 2016 21:23:07 GMT - english - In re the Marriage of: Sandra Winer, petitioner, Appellant, vs. Edward L. Winer, Respondent. A15-339, Court of Appeals ... - 2016-02-02T12:01:00+00:00 - Microsoft® Word 2013 - 2016-02-08T12:23:34+00:00 - Microsoft® Word 2013 - Spousal maintenance dispute. Affirmed in part, and reversed in part. - In re the Marriage of: Sandra Winer, petitioner, Appellant, vs. Edward L. Winer, Respondent. A15-339, Court of Appeals Unpublished, February 8, 2016. - A15-339 - 2016-02-08T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 329653 - Feb 3, - 2016 17:38:21 GMT - english - In re Petition for Disciplinary Action against Timothy J. Oliver, a Minnesota Attorney, Registration No. 0121393. ... - 2016-01-27T11:06:10+00:00 - Canon DR-M140 TWAIN - 2016-02-03T10:39:39+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Timothy J. Oliver is temporarily suspended from the practice of law. - In re Petition for Disciplinary Action against Timothy J. Oliver, a Minnesota Attorney, Registration No. 0121393. A15-1285, Supreme Court Order, February 3, 2016. - A15-1285 - 2016-02-03T00:00:00-0600 - January 27, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1285 In re Petition for Disciplinary Action against Timothy J . Oliver, a Minnesota Attorney, Registration ... - - - pdf - 186391 - Feb 3, - 2016 17:38:21 GMT - english - Kelly Dennis, Respondent, vs. The Salvation Army and Chesterfield Services, Inc., Relators, and HealthEast Physician ... - 2016-01-28T12:22:22+00:00 - Microsoft® Word 2013 - 2016-02-03T10:55:11+00:00 - Microsoft® Word 2013 - Because relators did not timely serve a cost bond upon the Workers Compensation Court of Appeals as required by Minn. Stat. § 176.471, subd. 3 (2014), the writ of certiorari is discharged and the appeal is dismissed. - Kelly Dennis, Respondent, vs. The Salvation Army and Chesterfield Services, Inc., Relators, and HealthEast Physician Services, HealthEast St. Johns Hospital, High Pointe Surgery Center, Minnesota Department of Human Services/BRS, St. Croix Orthopaedics, and Nurse Anesthesia Services, P.A., Intervenors. A15-715, Supreme Court, February 3, 2016. - A15-715 - 2016-02-03T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0715 Workers’ Compensation Court of Appeals Lillehaug, J. Took no part, Hudson, J. Kelly Dennis, Respondent, ... - - - pdf - 274796 - Feb 3, - 2016 17:38:21 GMT - english - Joan Van Riper, Employee-Respondent/Cross-Appellant, vs. Interstate Packaging, Inc. Employer-Relator/Cross-Appeal ... - 2016-01-27T12:14:09+00:00 - Canon DR-M140 TWAIN - 2016-02-03T10:51:30+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The decision of the Workers' Compensation Court of Appeals filed and served on June 26, 2015 is affirmed without opinion. - Joan Van Riper, Employee-Respondent/Cross-Appellant, vs. Interstate Packaging, Inc. Employer-Relator/Cross-Appeal Respondent, and Cincinnati Insurance Company, Insurer-Relator/Cross-Appeal Respondent, and Mason City Clinic, Mason City Surgery Center, Mayo Clinic, Minnesota Department of Employment Economic Development, Spectrum Rehabilitation Services, Inc., Blue Cross Blue Shield of Minnesota, and, UNUM Life Insurance Company, Intervenors. A15-1156, Supreme Court Order, February 3, 2016. - A15-1156 - 2016-02-03T00:00:00-0600 - January 27, 2016 STATE OF MINNESOTA IN SUPREME COURT Joan Van Riper, vs. Employee-Respondent/ Cross-Appellant, Interstate Packaging, Inc. and Employer-Relator/ ... - - - pdf - 35050 - Feb 3, - 2016 17:38:21 GMT - english - Robert Marlyn Taylor, Appellant, vs. State of Minnesota, Respondent. A15-398, Supreme Court, February 3, 2016. - MSC - 2016-02-01T09:00:49+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-03T10:53:11+00:00 - Adobe PDF Library 11.0 - 2016-02-01T15:00:23+00:00 - The postconviction court did not abuse its discretion when it summarily denied the appellant's second petition for postconviction relief, which was not timely filed with the postconviction court. - Robert Marlyn Taylor, Appellant, vs. State of Minnesota, Respondent. A15-398, Supreme Court, February 3, 2016. - A15-398 - 2016-02-03T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A15-0398 Hennepin County Stras, J. Robert Marlyn Taylor, Appellant, vs. Filed: February 3, 2016 Office of Appellate ... - - - pdf - 260875 - Feb 3, - 2016 17:38:21 GMT - english - Leanda Muhonen, Relator, vs. New Horizon Academy and Travelers Indemnity Company of America, Respondents, Suburban ... - 2016-01-27T14:45:53+00:00 - Canon DR-M140 TWAIN - 2016-02-03T10:42:09+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - The decision of the Workers' Compensation Court of Appeals filed and served on July 1, 2015 is affirmed without opinion. - Leanda Muhonen, Relator, vs. New Horizon Academy and Travelers Indemnity Company of America, Respondents, Suburban Radiologic Consultants, UCare, Center for Diagnostic Imaging, and Medical Advanced Pain Specialists, Intervenors. A15-1239, Supreme Court Order, February 3, 2016. - A15-1239 - 2016-02-03T00:00:00-0600 - January 27, 2016 STATE OF MINNESOTA IN SUPREME COURT AlS-1239 Leanda Muhonen, Relator, vs. New Horizon Academy and Travelers Indemnity Company of America, Respondents, ... - - - pdf - 437605 - Feb 3, - 2016 17:38:21 GMT - english - In re Petition for Disciplinary Action against Kent E. Nyberg, a Minnesota Attorney, Registration No. 0080159. A15-1632,... - 2016-01-27T14:06:15+00:00 - Canon DR-M140 TWAIN - 2016-02-03T10:45:08+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Kent E. Nyberg is conditionally reinstated to the practice of law in the State of Minnesota. - In re Petition for Disciplinary Action against Kent E. Nyberg, a Minnesota Attorney, Registration No. 0080159. A15-1632, Supreme Court Order, February 3, 2016. - A15-1632 - 2016-02-03T00:00:00-0600 - January 27, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1632 In re Petition for Disciplinary Action against Kent E. Nyberg, a Minnesota Attorney, Registration ... - - - pdf - 166246 - Feb 1, - 2016 16:09:07 GMT - english - Amanda Jean Lunzer, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-456, Court of Appeals Published, ... - 2016-01-26T16:39:02+00:00 - Microsoft® Word 2013 - 2016-02-01T10:03:31+00:00 - Microsoft® Word 2013 - A stay of adjudication entered pursuant to Minn. Stat. § 152.18, subd. 1 (2006),1 is not a conviction for purposes of seeking postconviction relief. - Amanda Jean Lunzer, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-456, Court of Appeals Published, February 1, 2016 - A15-456 - 2016-02-01T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0456 Amanda Jean Lunzer, petitioner, Appellant, vs. State of Minnesota, Respondent. Filed February 1, 2016 Affirmed ... - - - pdf - 244380 - Feb 1, - 2016 16:09:07 GMT - english - Landmark Community Bank, N.A., Respondent, vs. John D. Klingelhutz, et al., Appellants. A15-980. Court of Appeals ... - 2016-01-25T09:38:44+00:00 - Microsoft® Word 2013 - 2016-02-01T10:04:28+00:00 - Microsoft® Word 2013 - Real property securing a guaranty mortgage is an asset under the Minnesota Uniform Fraudulent Transfer Act when, at the time of transfer, there was no claim of default upon the underlying principal or the guaranty mortgage and the property had value. Minn. Stat. §§ 513.41-.51 (2014 & Supp. 2015). - Landmark Community Bank, N.A., Respondent, vs. John D. Klingelhutz, et al., Appellants. A15-980. Court of Appeals Published, February 1, 2016. - A15-980 - 2016-02-01T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0980 Landmark Community Bank, N.A., Respondent, vs. John D. Klingelhutz, et al., Appellants. Filed February 1, 2016 ... - - - pdf - 232785 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Anne Marie Hinrichs, Appellant. A14-1895, Court of Appeals Unpublished, February 1, ... - 2016-01-26T13:10:10+00:00 - Microsoft® Word 2013 - 2016-02-01T10:54:31+00:00 - Microsoft® Word 2013 - Challenges to convictions of felony neglect of a child, and malicious punishment of a child. - State of Minnesota, Respondent, vs. Anne Marie Hinrichs, Appellant. A14-1895, Court of Appeals Unpublished, February 1, 2016. - A14-1895 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 111956 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Landon Darrick Robinson, Appellant. A15-280, Court of Appeals Unpublished, February ... - 2016-01-20T14:24:27+00:00 - Microsoft® Word 2013 - 2016-02-01T11:30:52+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Landon Darrick Robinson, Appellant. A15-280, Court of Appeals Unpublished, February 1, 2016. - A15-280 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 201946 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Dashaunta Dmar Gomez, Appellant. A15-128, Court of Appeals Unpublished, February 1, ... - 2016-01-27T09:27:34+00:00 - Microsoft® Word 2013 - 2016-02-01T11:04:41+00:00 - Microsoft® Word 2013 - Challenges to convictions of second-degree murder and possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Dashaunta Dmar Gomez, Appellant. A15-128, Court of Appeals Unpublished, February 1, 2016. - A15-128 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 252776 - Feb 1, - 2016 21:20:05 GMT - english - First American Title Insurance Company, Respondent, vs. National Title Resources Corp., dba Northwest Title Agency, et ... - 2016-01-22T08:53:57+00:00 - Microsoft® Word 2013 - 2016-02-01T12:00:08+00:00 - Microsoft® Word 2013 - Challenges default judgment and attorneys-fees judgment. - First American Title Insurance Company, Respondent, vs. National Title Resources Corp., dba Northwest Title Agency, et al., Co-Appellants, Wayne Holstad, Appellant. A15-664, Court of Appeals Unpublished, February 1, 2016. - A15-664 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 41148 - Feb 1, - 2016 21:20:05 GMT - english - In the Matter of all Licenses Held by Pet Motortech, Inc., d/b/a Pet Auto Repair, for the premises at 44 Acker Street ... - Minnesota Judicial Branch - 2016-01-25T09:36:54+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-01T11:47:40+00:00 - Adobe PDF Library 11.0 - 2016-01-25T15:35:36+00:00 - Challenges respondent-citys suspension of its business licenses. - In the Matter of all Licenses Held by Pet Motortech, Inc., d/b/a Pet Auto Repair, for the premises at 44 Acker Street in St. Paul, Minnesota. A15-405, Court of Appeals Unpublished, February 1, 2016. - A15-405 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 170627 - Feb 1, - 2016 21:20:06 GMT - english - In the Matter of Kayvon Behnam, D. C., License No. 3644. A15-721, Court of Appeals Unpublished, February 1, 2016. - 2016-01-26T15:27:45+00:00 - Microsoft® Word 2013 - 2016-02-01T12:07:22+00:00 - Microsoft® Word 2013 - Challenges to suspension of chiropractic license. - In the Matter of Kayvon Behnam, D. C., License No. 3644. A15-721, Court of Appeals Unpublished, February 1, 2016. - A15-721 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 187171 - Feb 1, - 2016 21:20:16 GMT - english - State of Minnesota, by its Commissioner of Transportation, petitioner, Respondent, vs. Robert Reiland, et al., ... - 2016-01-27T10:15:45+00:00 - Microsoft® Word 2013 - 2016-02-01T13:09:57+00:00 - Microsoft® Word 2013 - Challenges the district courts grant of a condemnation petition for the taking of property by respondent State of Minnesota. Reversed and remanded. - State of Minnesota, by its Commissioner of Transportation, petitioner, Respondent, vs. Robert Reiland, et al., Respondents Below, Magellan Pipeline Company, L. P., successor in interest to Magellan Pipeline Company, LLC and to Williams Pipe Line Company and to Williams Brothers Pipe Line Company, Appellant. A15-893, Court of Appeals Unpublished, February 1, 2016. - A15-893 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 114653 - Feb 1, - 2016 21:20:06 GMT - english - State of Minnesota, Respondent, vs. Warren Fred Nelson, Appellant. A15-765, Court of Appeals Unpublished, February 1, ... - 2016-01-26T13:40:59+00:00 - Microsoft® Word 2013 - 2016-02-01T13:03:34+00:00 - Microsoft® Word 2013 - Challenges to possession of controlled substance charge. - State of Minnesota, Respondent, vs. Warren Fred Nelson, Appellant. A15-765, Court of Appeals Unpublished, February 1, 2016. - A15-765 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 135821 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Luis Daniel Ruiz-Oliva, Appellant. A14-1241, Court of Appeals Unpublished, February ... - 2016-01-26T16:49:14+00:00 - Microsoft® Word 2013 - 2016-02-01T10:43:15+00:00 - Microsoft® Word 2013 - Challenges to conviction of third-degree assault. - State of Minnesota, Respondent, vs. Luis Daniel Ruiz-Oliva, Appellant. A14-1241, Court of Appeals Unpublished, February 1, 2016. - A14-1241 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 205108 - Feb 1, - 2016 21:20:16 GMT - english - Michael N. Palm, Sr., Appellant, vs. Calhoun Realty Company, Respondent. A15-895, Court of Appeals Unpublished, ... - 2016-01-26T16:06:48+00:00 - Microsoft® Word 2013 - 2016-02-01T13:11:38+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment dismissal of breach of contract claim. - Michael N. Palm, Sr., Appellant, vs. Calhoun Realty Company, Respondent. A15-895, Court of Appeals Unpublished, February 1, 2016. - A15-895 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 111248 - Feb 1, - 2016 21:20:05 GMT - english - Knawon Antony Conda, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-74, Court of Appeals Unpublished, ... - 2016-01-25T15:37:00+00:00 - Microsoft® Word 2013 - 2016-02-01T11:02:52+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Knawon Antony Conda, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-74, Court of Appeals Unpublished, February 1, 2016. - A15-74 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 208304 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. David Michael Rindahl, Jr., Appellant. A14-1736, Court of Appeals Unpublished, ... - 2016-01-26T12:45:48+00:00 - Microsoft® Word 2013 - 2016-02-01T10:49:42+00:00 - Microsoft® Word 2013 - Challenges to conviction of malicious punishment of a child resulting in great bodily harm. - State of Minnesota, Respondent, vs. David Michael Rindahl, Jr., Appellant. A14-1736, Court of Appeals Unpublished, February 1, 2016. - A14-1736 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 109920 - Feb 1, - 2016 21:20:17 GMT - english - State of Minnesota, Appellant, vs. Antonio Freeman, Respondent. A15-1451, Court of Appeals Unpublished, February 1, ... - 2016-01-26T10:43:16+00:00 - Microsoft® Word 2013 - 2016-02-01T13:45:01+00:00 - Microsoft® Word 2013 - Appellant State of Minnesota argues that the district court abused its discretion by sentencing respondent to a downward dispositional departure. - State of Minnesota, Appellant, vs. Antonio Freeman, Respondent. A15-1451, Court of Appeals Unpublished, February 1, 2016. - A15-1451 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 37173 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Faron Wayne Ruel, Appellant. A15-152, Court of Appeals Unpublished, February 1, ... - Minnesota Judicial Branch - 2016-01-25T13:14:25+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-01T11:15:41+00:00 - Adobe PDF Library 11.0 - 2016-01-25T19:14:03+00:00 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Faron Wayne Ruel, Appellant. A15-152, Court of Appeals Unpublished, February 1, 2016. - A15-152 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 151794 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. William James Holisky, II, Appellant. A15-153, Court of Appeals Unpublished, ... - 2016-01-21T14:42:44+00:00 - Microsoft® Word 2013 - 2016-02-01T11:25:38+00:00 - Microsoft® Word 2013 - Challenges to conviction of felony domestic assault. - State of Minnesota, Respondent, vs. William James Holisky, II, Appellant. A15-153, Court of Appeals Unpublished, February 1, 2016. - A15-153 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 110927 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Luis Fernando Escobar-Chilel, Appellant. A15-321, Court of Appeals Unpublished, ... - 2016-01-21T14:17:31+00:00 - Microsoft® Word 2013 - 2016-02-01T11:34:22+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct. - State of Minnesota, Respondent, vs. Luis Fernando Escobar-Chilel, Appellant. A15-321, Court of Appeals Unpublished, February 1, 2016. - A15-321 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 116739 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Nicholas Taylor Rod, Appellant. A15-372, Court of Appeals Unpublished, February 1, ... - 2016-01-26T09:16:41+00:00 - Microsoft® Word 2013 - 2016-02-01T11:45:08+00:00 - Microsoft® Word 2013 - Challenges to conviction of causing demonstrable bodily harm to a public safety dog. - State of Minnesota, Respondent, vs. Nicholas Taylor Rod, Appellant. A15-372, Court of Appeals Unpublished, February 1, 2016. - A15-372 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 35854 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Brandon Christopher Seals, Appellant. A15-581, Court of Appeals Unpublished, ... - Minnesota Judicial Branch - 2016-01-25T10:47:12+00:00 - Acrobat PDFMaker 11 for Word - 2016-02-01T11:49:55+00:00 - Adobe PDF Library 11.0 - 2016-01-25T16:46:55+00:00 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Brandon Christopher Seals, Appellant. A15-581, Court of Appeals Unpublished, February 1, 2016. - A15-581 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 172792 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Sabrina Beth OBrien, Appellant. A15-596, Court of Appeals Unpublished, February 1, ... - 2016-01-26T13:35:11+00:00 - Microsoft® Word 2013 - 2016-02-01T11:51:33+00:00 - Microsoft® Word 2013 - Challenges to convictions of gross-misdemeanor malicious punishment of a child and misdemeanor domestic assault-harm. - State of Minnesota, Respondent, vs. Sabrina Beth OBrien, Appellant. A15-596, Court of Appeals Unpublished, February 1, 2016. - A15-596 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 127847 - Feb 1, - 2016 21:20:05 GMT - english - Carleen Kaye Theno, n/k/a Carleen Kaye Starkovich, petitioner, Respondent, vs. John Marvin Theno, Appellant. A15-637, ... - 2016-01-25T15:01:54+00:00 - Microsoft® Word 2013 - 2016-02-01T11:56:01+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. - Carleen Kaye Theno, n/k/a Carleen Kaye Starkovich, petitioner, Respondent, vs. John Marvin Theno, Appellant. A15-637, Court of Appeals Unpublished, February 1, 2016. - A15-637 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 190186 - Feb 1, - 2016 21:20:05 GMT - english - In re the Marriage of: Carol Lee DCosta, petitioner, Respondent, vs. Joseph Francis DCosta, Appellant. A15-655, Court ... - 2016-01-26T09:57:50+00:00 - Microsoft® Word 2013 - 2016-02-01T11:57:23+00:00 - Microsoft® Word 2013 - Dissolution of marriage matter. - In re the Marriage of: Carol Lee DCosta, petitioner, Respondent, vs. Joseph Francis DCosta, Appellant. A15-655, Court of Appeals Unpublished, February 1, 2016. - A15-655 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 101912 - Feb 1, - 2016 21:20:06 GMT - english - State of Minnesota, Respondent, vs. Shawn Timothy Zitzloff, Appellant. A15-676, Court of Appeals Unpublished, February ... - 2016-01-21T13:35:19+00:00 - Microsoft® Word 2013 - 2016-02-01T12:03:06+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Shawn Timothy Zitzloff, Appellant. A15-676, Court of Appeals Unpublished, February 1, 2016. - A15-676 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 194007 - Feb 1, - 2016 21:20:06 GMT - english - Arrow Southampton, LLC, Respondent, vs. Jeremiah Akinnola, Appellant. A15-731, Court of Appeals Unpublished, February 1,... - 2016-01-26T13:06:01+00:00 - Microsoft® Word 2013 - 2016-02-01T13:02:01+00:00 - Microsoft® Word 2013 - Challenges to housing court judgment ordering eviction. - Arrow Southampton, LLC, Respondent, vs. Jeremiah Akinnola, Appellant. A15-731, Court of Appeals Unpublished, February 1, 2016. - A15-731 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 170890 - Feb 1, - 2016 21:20:16 GMT - english - State of Minnesota, Respondent, vs. Christopher Gary Zurek, Appellant. A15-816, Court of Appeals Unpublished, February ... - 2016-01-26T15:17:45+00:00 - Microsoft® Word 2013 - 2016-02-01T13:05:50+00:00 - Microsoft® Word 2013 - Challenges to conviction of refusal to submit to a chemical test. - State of Minnesota, Respondent, vs. Christopher Gary Zurek, Appellant. A15-816, Court of Appeals Unpublished, February 1, 2016. - A15-816 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 177970 - Feb 1, - 2016 21:20:17 GMT - english - U. S. Bank National Association as Legal Title Trustee for Truman 2012 SC Title Trust, Respondent, vs. Thomas J. ... - 2016-01-27T09:15:36+00:00 - Microsoft® Word 2013 - 2016-02-01T13:35:02+00:00 - Microsoft® Word 2013 - Challenge the district courts denial of motion to stay eviction proceedings pending resolution of a related loss-mitigation action in federal court. Reversed and remanded. - U. S. Bank National Association as Legal Title Trustee for Truman 2012 SC Title Trust, Respondent, vs. Thomas J. Litterer, Appellant, Mary Litterer, Appellant. A15-988, Court of Appeals Unpublished, February 1, 2016. - A15-988 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 183170 - Feb 1, - 2016 21:20:17 GMT - english - Loria Quade, Relator, vs. City of Minneapolis, Respondent, Department of Employment and Economic Development, ... - 2016-01-26T13:23:39+00:00 - Microsoft® Word 2013 - 2016-02-01T13:37:14+00:00 - Microsoft® Word 2013 - Relator challenges a determination by an unemployment law judge (ULJ) that she is ineligible for unemployment benefits because she quit her employment to care for her ailing mother. Reversed and remanded. - Loria Quade, Relator, vs. City of Minneapolis, Respondent, Department of Employment and Economic Development, Respondent. A15-1049, Court of Appeals Unpublished, February 1, 2016. - A15-1049 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 113906 - Feb 1, - 2016 21:20:16 GMT - english - Joseph Molesky, et al., Respondents, vs. John L. Trebesch, et al., Defendants, Sheila P. Sabas, et al., Appellants. ... - 2016-01-26T11:37:38+00:00 - Microsoft® Word 2013 - 2016-02-01T13:07:47+00:00 - Microsoft® Word 2013 - Challenges grant of default judgment. - Joseph Molesky, et al., Respondents, vs. John L. Trebesch, et al., Defendants, Sheila P. Sabas, et al., Appellants. A15-889, Court of Appeals Unpublished, February 1, 2016. - A15-889 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 175653 - Feb 1, - 2016 21:20:17 GMT - english - Kristina Jean Powers, Appellant, vs. Superintendent James Freihammer, in his official capacity, et al., Respondents. ... - 2016-01-26T10:23:11+00:00 - Microsoft® Word 2013 - 2016-02-01T13:14:37+00:00 - Microsoft® Word 2013 - Challenges dismissal of data-practices claim. - Kristina Jean Powers, Appellant, vs. Superintendent James Freihammer, in his official capacity, et al., Respondents. A15-911, Court of Appeals Unpublished, February 1, 2016. - A15-911 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107505 - Feb 1, - 2016 21:20:17 GMT - english - State of Minnesota, Respondent, vs. Jesus Ivan Torres-Lopez, a/k/a Jesus Ivan Lopez-Torres, Appellant. A15-929, Court ... - 2016-01-21T14:36:52+00:00 - Microsoft® Word 2013 - 2016-02-01T13:21:15+00:00 - Microsoft® Word 2013 - Revocation of probation. - State of Minnesota, Respondent, vs. Jesus Ivan Torres-Lopez, a/k/a Jesus Ivan Lopez-Torres, Appellant. A15-929, Court of Appeals Unpublished, February 1, 2016. - A15-929 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 173430 - Feb 1, - 2016 21:20:05 GMT - english - State of Minnesota, Respondent, vs. Michael Donovan Krauss, Appellant. A15-331, Court of Appeals Unpublished, February ... - 2016-01-25T15:53:28+00:00 - Microsoft® Word 2013 - 2016-02-01T11:42:24+00:00 - Microsoft® Word 2013 - Challenges possession of firearm by an ineligible person. - State of Minnesota, Respondent, vs. Michael Donovan Krauss, Appellant. A15-331, Court of Appeals Unpublished, February 1, 2016. - A15-331 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 166492 - Feb 1, - 2016 21:20:17 GMT - english - In the Matter of the Welfare of the Children of: L. S., E. B. and H. J., Parents. A15-1293, Court of Appeals ... - 2016-01-21T14:28:38+00:00 - Microsoft® Word 2013 - 2016-02-01T13:42:27+00:00 - Microsoft® Word 2013 - Termination of parental rights matter. - In the Matter of the Welfare of the Children of: L. S., E. B. and H. J., Parents. A15-1293, Court of Appeals Unpublished, February 1, 2016. - A15-1293 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 117117 - Feb 1, - 2016 21:42:25 GMT - english - State of Minnesota, Respondent, vs. Gatwech Yiek Thach, Appellant. A15-177, Court of Appeals Unpublished, February 1, ... - 2016-01-26T12:12:26+00:00 - Microsoft® Word 2013 - 2016-02-01T15:40:24+00:00 - Microsoft® Word 2013 - Challenges to conviction of second-degree test refusal. Reversed. - State of Minnesota, Respondent, vs. Gatwech Yiek Thach, Appellant. A15-177, Court of Appeals Unpublished, February 1, 2016. - A15-177 - 2016-02-01T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 130319 - Feb 3, - 2016 17:38:21 GMT - english - ORDERS ON PETITIONS FOR FURTHER REVIEW FILED January 27, 2016 - 2016-02-03T10:34:49+00:00 - Microsoft® Word 2013 - 2016-02-03T10:36:23+00:00 - Microsoft® Word 2013 - ORDERS ON PETITIONS FOR FURTHER REVIEW FILED January 27, 2016 - - 2016-01-27T00:00:00-0600 - ORDERS ON PETITIONS FOR FURTHER REVIEW Filed – January 27, 2016 (Petitioner indicated in Italic Type) 1. State of Minnesota vs. Benjamin Paul Adams – A14-1891 – Denied ... - - - pdf - 370362 - Jan 27, - 2016 17:35:08 GMT - english - In re Petition for Disciplinary Action against Timothy J. Oliver, a Minnesota Attorney, Registration No. 0121393. ... - 2016-01-25T14:34:46+00:00 - Canon DR-M140 TWAIN - 2016-01-27T11:21:55+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent Timothy J. Oliver is temporarily suspended from the practice of law, effective as of the date of this order, pending final resolution of this matter. - In re Petition for Disciplinary Action against Timothy J. Oliver, a Minnesota Attorney, Registration No. 0121393. A15-1285, Supreme Court Order, January 27, 2016. - A15-1285 - 2016-01-27T00:00:00-0600 - January 25, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1285 In re Petition for Disciplinary Action against Timothy J. Oliver, a Minnesota Attorney, Registration ... - - - pdf - 348181 - Jan 27, - 2016 17:35:09 GMT - english - In re Petition for Disciplinary Action against John Nwabuwane Akwuba, a Minnesota Attorney, Registration No. 0280446. ... - 2016-01-25T14:39:26+00:00 - Canon DR-M140 TWAIN - 2016-01-27T11:20:11+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Respondent John Nwabuwane Akwuba is conditionally reinstated to the practice of law in the State of Minnesota. - In re Petition for Disciplinary Action against John Nwabuwane Akwuba, a Minnesota Attorney, Registration No. 0280446. A15-1316, Supreme Court Order, January 27, 2016. - A15-1316 - 2016-01-27T00:00:00-0600 - January 25, 2016 STATE OF MINNESOTA IN SUPREME COURT A15-1316 In re Petition for Disciplinary Action against John Nwabuwane Akwuba, a Minnesota Attorney, Registration ... - - - pdf - 201241 - Feb 4, - 2016 19:28:01 GMT - english - Terry Boyd, Respondent, vs. BNSF Railway Company, Appellant. A14-277, Supreme Court, January 27, 2016. - 2016-02-04T13:15:06+00:00 - Microsoft® Word 2013 - 2016-02-04T13:25:43+00:00 - Microsoft® Word 2013 - When determining whether the Federal Employers' Liability Act (FELA), 45 U.S.C. §§ 51-60 (2012), preempts a state law in a state court proceeding, a court must apply the substantive-procedural test of FELA precedent. Because the taxation of double costs pursuant to Minn. R. Civ. P. 68.03(b)(2) is substantive and not authorized by federal law, it is preempted by FELA. Accordingly, Minn. R. Civ. P. 68.03(b)(2) does not apply in state court FELA proceedings. Reversed and remanded. - Terry Boyd, Respondent, vs. BNSF Railway Company, Appellant. A14-277, Supreme Court, January 27, 2016. - A14-277 - 2016-01-27T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A14-0277 Court of Appeals Wright, J. Took no part, Hudson, J. Terry Boyd, Respondent, vs. Filed: January 27, 2016 ... - - - pdf - 127466 - Jan 25, - 2016 16:43:44 GMT - english - Willie Edd Reynolds, petitioner, Appellant, vs. State of Minnesota, Respondent. A14-906, Court of Appeals Published, ... - 2016-01-19T17:54:18+00:00 - Microsoft® Word 2013 - 2016-01-25T10:37:57+00:00 - Microsoft® Word 2013 - A motion to correct a sentence under rule 27.03, subdivision 9, is a proper mechanism for a convicted person to challenge the district courts decision to amend his sentence sua sponte by adding a statutorily required conditional-release term. Reversed and remanded. - Willie Edd Reynolds, petitioner, Appellant, vs. State of Minnesota, Respondent. A14-906, Court of Appeals Published, January 25, 2016. - A14-906 - 2016-01-25T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A14-0906 Willie Edd Reynolds, petitioner, Appellant, vs. State of Minnesota, Respondent. Filed January 25, 2016 Reversed ... - - - pdf - 212751 - Jan 25, - 2016 16:43:44 GMT - english - State of Minnesota, Respondent, vs. Robin Lyne Hensel, Appellant. A15-5, Court of Appeals Published, January 25, 2016. - 2016-01-14T09:59:32+00:00 - Microsoft® Word 2013 - 2016-01-25T10:11:27+00:00 - Microsoft® Word 2013 - Minn. Stat. § 609.72, subd. 1(2) (2012), is not void for vagueness or facially overbroad in violation of the First Amendment to the United States Constitution. - State of Minnesota, Respondent, vs. Robin Lyne Hensel, Appellant. A15-5, Court of Appeals Published, January 25, 2016. - A15-5 - 2016-01-25T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0005 State of Minnesota, Respondent, vs. Robin Lyne Hensel, Appellant. Filed January 25, 2016 Affirmed Larkin, Judge ... - - - pdf - 42724 - Jan 25, - 2016 16:43:44 GMT - english - Meleyco Partnership No. 2, Appellant, vs. City of West St. Paul, Respondent. A15-775, Court of Appeals Published, ... - Minnesota Judicial Branch - 2016-01-19T10:12:55+00:00 - Acrobat PDFMaker 11 for Word - 2016-01-25T10:12:13+00:00 - Adobe PDF Library 11.0 - 2016-01-19T16:12:47+00:00 - For a nonconforming use to lose its legal status, the discontinuance of the nonconforming use must be attributable, at least in part, to the property owner. Reversed. - Meleyco Partnership No. 2, Appellant, vs. City of West St. Paul, Respondent. A15-775, Court of Appeals Published, January 25, 2016. - A15-775 - 2016-01-25T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0775 Meleyco Partnership No. 2, Appellant, vs. City of West St. Paul, Respondent. Filed January 25, 2016 Reversed ... - - - pdf - 263640 - Jan 25, - 2016 16:43:44 GMT - english - State of Minnesota, Respondent (A15-0984), Appellant (A15-0998) vs. Chao Moua, Appellant (A15-0984), Respondent ... - 2016-01-14T10:03:58+00:00 - Microsoft® Word 2013 - 2016-01-25T10:14:23+00:00 - Microsoft® Word 2013 - 1. The minimum restitution provision of the identity-theft statute, Minn. Stat. § 609.527 (2012), does not violate a defendants right to procedural due process. 2. An individual experiences loss or harmŽ as a result of identity theft when the individual either suffers economic loss or the theft involves the individuals name and private identifying information. Affirmed in part, reversed in part, and remanded. - State of Minnesota, Respondent (A15-0984), Appellant (A15-0998) vs. Chao Moua, Appellant (A15-0984), Respondent (A15-0998). A15-984, A15-998, Court of Appeals Published, January 25, 2016. - A15-984 - 2016-01-25T00:00:00-0600 - STATE OF MINNESOTA IN COURT OF APPEALS A15-0984 A15-0998 State of Minnesota, Respondent (A15-0984), Appellant (A15-0998) vs. Chao Moua, Appellant (A15-0984), ... - - - pdf - 114114 - Jan 25, - 2016 21:42:09 GMT - english - State of Minnesota, Respondent, vs. Scott Joseph Mirkovich, Appellant. A15-249, Court of Appeals Unpublished, January ... - 2016-01-19T15:14:45+00:00 - Microsoft® Word 2013 - 2016-01-25T11:36:02+00:00 - Microsoft® Word 2013 - Challenges to conviction of second degree assault. - State of Minnesota, Respondent, vs. Scott Joseph Mirkovich, Appellant. A15-249, Court of Appeals Unpublished, January 25, 2016. - A15-249 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 293691 - Jan 25, - 2016 21:42:10 GMT - english - CSM Equities, LLC, Appellant, vs. Woodland Village Investments Limited Partnership, et al., Respondents. A15-455, Court ... - 2016-01-15T11:56:10+00:00 - Microsoft® Word 2013 - 2016-01-25T13:09:35+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - CSM Equities, LLC, Appellant, vs. Woodland Village Investments Limited Partnership, et al., Respondents. A15-455, Court of Appeals Unpublished, January 25, 2016. - A15-455 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 168831 - Jan 25, - 2016 21:42:10 GMT - english - In the Matter of the Risk Level Determination of: L. R. O. A15-652, Court of Appeals Unpublished, January 25, 2016. - 2016-01-19T16:54:04+00:00 - Microsoft® Word 2013 - 2016-01-25T13:30:24+00:00 - Microsoft® Word 2013 - Challenges administrative-law judges summary disposition without hearing. Reversed and remanded. - In the Matter of the Risk Level Determination of: L. R. O. A15-652, Court of Appeals Unpublished, January 25, 2016. - A15-652 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 120206 - Jan 25, - 2016 21:42:10 GMT - english - Mark Sharockman, Appellant, vs. LifeSpan of Minnesota, Inc., Respondent. A15-864, Court of Appeals Unpublished, January ... - 2016-01-19T14:22:52+00:00 - Microsoft® Word 2013 - 2016-01-25T14:10:57+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment. - Mark Sharockman, Appellant, vs. LifeSpan of Minnesota, Inc., Respondent. A15-864, Court of Appeals Unpublished, January 25, 2016. - A15-864 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 211060 - Jan 25, - 2016 21:42:10 GMT - english - In re Medtronic, Inc. Shareholder Litigation. A15-858, Court of Appeals Unpublished, January 25, 2016. - 2016-01-20T09:53:37+00:00 - Microsoft® Word 2013 - 2016-01-25T14:08:38+00:00 - Microsoft® Word 2013 - Challenges dismissal of class-action suit. Affirmed in part, reversed in part, and remanded. - In re Medtronic, Inc. Shareholder Litigation. A15-858, Court of Appeals Unpublished, January 25, 2016. - A15-858 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 162848 - Jan 25, - 2016 21:42:10 GMT - english - In re the Matter of: Jodi Kris Engen, et al., on behalf of themselves and their grandchildren, J. R. B., J. A. B., and ... - 2016-01-19T10:19:12+00:00 - Microsoft® Word 2013 - 2016-01-25T14:17:22+00:00 - Microsoft® Word 2013 - Grandparent visitation time restored. - In re the Matter of: Jodi Kris Engen, et al., on behalf of themselves and their grandchildren, J. R. B., J. A. B., and J. E. P., petitioners, Respondents, vs. Ashlee Jo Belisle, Appellant. A15-866, Court of Appeals Unpublished, January 25, 2016. - A15-866 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 171477 - Jan 25, - 2016 21:42:19 GMT - english - Yer Vue, Relator, vs. Surdyks Flights Inc. … Surdyks Flights Wine Market and Bar, Respondent, Department of ... - 2016-01-15T13:07:49+00:00 - Microsoft® Word 2013 - 2016-01-25T14:22:44+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Yer Vue, Relator, vs. Surdyks Flights Inc. … Surdyks Flights Wine Market and Bar, Respondent, Department of Employment and Economic Development, Respondent. A15-932, Court of Appeals Unpublished, January 25, 2016. - A15-932 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 226051 - Jan 25, - 2016 21:42:19 GMT - english - Robert Kagel, Respondent, vs. Christian Brackey, et al., Appellants, Kagel Acquisition Company, LLC, Defendant. A15-934,... - 2016-01-15T09:12:45+00:00 - Microsoft® Word 2013 - 2016-01-25T14:26:28+00:00 - Microsoft® Word 2013 - Challenges district court's forced buy out order. Affirmed in part, reversed in part, and remanded. - Robert Kagel, Respondent, vs. Christian Brackey, et al., Appellants, Kagel Acquisition Company, LLC, Defendant. A15-934, Court of Appeals Unpublished, January 25, 2016. - A15-934 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 142018 - Jan 25, - 2016 21:42:09 GMT - english - In re the Marriage of: Melissa Louise Constantini, petitioner, Appellant, vs. Brent John Constantini, Respondent. ... - 2016-01-15T14:39:02+00:00 - Microsoft® Word 2013 - 2016-01-25T10:55:01+00:00 - Microsoft® Word 2013 - Parenting time dispute. Affirmed in part, reversed in part, and remanded. - In re the Marriage of: Melissa Louise Constantini, petitioner, Appellant, vs. Brent John Constantini, Respondent. A15-58, Court of Appeals Unpublished, January 25, 2016. - A15-58 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 189296 - Jan 25, - 2016 21:42:19 GMT - english - Shannon Fogarty, Appellant, vs. Ciao Bella, Respondent. A15-1030, Court of Appeals Unpublished, January 25, 2016. - 2016-01-19T09:22:22+00:00 - Microsoft® Word 2013 - 2016-01-25T14:28:31+00:00 - Microsoft® Word 2013 - Challenges denial of motion for relief from the judgment under Minn. R. Civ. P. 60.02. Reversed. - Shannon Fogarty, Appellant, vs. Ciao Bella, Respondent. A15-1030, Court of Appeals Unpublished, January 25, 2016. - A15-1030 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 252310 - Jan 25, - 2016 21:42:19 GMT - english - Richard J. Hartfiel, Appellant, vs. Raymond Wilburn Allison, Respondent, T. J. Potter Trucking, Inc., Respondent, ... - 2016-01-19T15:00:54+00:00 - Microsoft® Word 2013 - 2016-01-25T14:30:31+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment dismissal. Affirmed in part, reversed in part, and remanded. - Richard J. Hartfiel, Appellant, vs. Raymond Wilburn Allison, Respondent, T. J. Potter Trucking, Inc., Respondent, Westfield Insurance Company, intervenor, Respondent. A15-1149, Court of Appeals Unpublished, January 25, 2016. - A15-1149 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 100672 - Jan 25, - 2016 21:42:09 GMT - english - State of Minnesota, Respondent, vs. Yatarrie Lee Brown, Appellant. A15-108, Court of Appeals Unpublished, January 25, ... - 2016-01-19T12:47:12+00:00 - Microsoft® Word 2013 - 2016-01-25T10:57:15+00:00 - Microsoft® Word 2013 - Challenges to conviction of criminal sexual conduct and sentencing. - State of Minnesota, Respondent, vs. Yatarrie Lee Brown, Appellant. A15-108, Court of Appeals Unpublished, January 25, 2016. - A15-108 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 123238 - Jan 25, - 2016 21:42:09 GMT - english - State of Minnesota, Respondent, vs. Cartrell Ismail Smith, Appellant. A15-3, Court of Appeals Unpublished, January 25, ... - 2016-01-15T13:21:30+00:00 - Microsoft® Word 2013 - 2016-01-25T10:52:28+00:00 - Microsoft® Word 2013 - Challenges to conviction of aiding and abetting second degree murder. - State of Minnesota, Respondent, vs. Cartrell Ismail Smith, Appellant. A15-3, Court of Appeals Unpublished, January 25, 2016. - A15-3 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 109363 - Jan 25, - 2016 21:42:19 GMT - english - State of Minnesota, Appellant, vs. Jonathon Michael Honeycutt, Respondent. A15-1456, Court of Appeals Unpublished, ... - 2016-01-19T15:39:09+00:00 - Microsoft® Word 2013 - 2016-01-25T14:36:09+00:00 - Microsoft® Word 2013 - State challenges the district courts dispositional departure from the presumptive prison sentence for respondents conviction of first-degree criminal sexual conduct. Reversed and remanded. - State of Minnesota, Appellant, vs. Jonathon Michael Honeycutt, Respondent. A15-1456, Court of Appeals Unpublished, January 25, 2016. - A15-1456 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 108045 - Jan 25, - 2016 21:42:09 GMT - english - State of Minnesota, Respondent, vs. Stevie Birdie Daniels, Appellant. A15-121, Court of Appeals Unpublished, January 25,... - 2016-01-19T17:32:32+00:00 - Microsoft® Word 2013 - 2016-01-25T11:14:59+00:00 - Microsoft® Word 2013 - Challenges to conviction of credit card fraud. - State of Minnesota, Respondent, vs. Stevie Birdie Daniels, Appellant. A15-121, Court of Appeals Unpublished, January 25, 2016. - A15-121 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 230507 - Jan 25, - 2016 21:42:09 GMT - english - Randy Lee Torgeson, petitioner, Appellant, vs Commissioner of Public Safety, Respondent. A15-195, Court of Appeals ... - 2016-01-14T11:29:06+00:00 - Microsoft® Word 2013 - 2016-01-25T11:26:28+00:00 - Microsoft® Word 2013 - Challenges revocation of driver's license. - Randy Lee Torgeson, petitioner, Appellant, vs Commissioner of Public Safety, Respondent. A15-195, Court of Appeals Unpublished, January 25, 2016. - A15-195 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 158857 - Jan 25, - 2016 21:42:10 GMT - english - State of Minnesota, Respondent, vs. Thomas Eugene Sirois, Appellant. A15-328, Court of Appeals Unpublished, January 25, ... - 2016-01-19T15:45:42+00:00 - Microsoft® Word 2013 - 2016-01-25T12:10:45+00:00 - Microsoft® Word 2013 - Challenges to convictions of second and third degree assault. - State of Minnesota, Respondent, vs. Thomas Eugene Sirois, Appellant. A15-328, Court of Appeals Unpublished, January 25, 2016. - A15-328 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 263645 - Jan 25, - 2016 21:42:10 GMT - english - In the Matter of the Conservatorship of: Patricia Annette Wallace, Protected Person. A15-440, Court of Appeals ... - 2016-01-19T12:10:49+00:00 - Microsoft® Word 2013 - 2016-01-25T13:07:45+00:00 - Microsoft® Word 2013 - Challenges disallowed fees and expenses filed by guardian and conservator. Affirmed in part, reversed in part, and remanded. - In the Matter of the Conservatorship of: Patricia Annette Wallace, Protected Person. A15-440, Court of Appeals Unpublished, January 25, 2016. - A15-440 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 101150 - Jan 25, - 2016 21:42:10 GMT - english - State of Minnesota, Respondent, vs. Scott Andrew Syversrud, Appellant. A15-560, Court of Appeals Unpublished, January ... - 2016-01-15T12:11:40+00:00 - Microsoft® Word 2013 - 2016-01-25T13:12:07+00:00 - Microsoft® Word 2013 - Challenges to conviction of driving while impaired. - State of Minnesota, Respondent, vs. Scott Andrew Syversrud, Appellant. A15-560, Court of Appeals Unpublished, January 25, 2016. - A15-560 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 107698 - Feb 19, - 2016 14:00:21 GMT - english - State of Minnesota, Respondent, vs. Archester Rodgers, Jr., Appellant. A15-289, A15-290, Court of Appeals Unpublished, ... - 2016-02-04T14:47:49+00:00 - Microsoft® Word 2013 - 2016-02-19T07:58:42+00:00 - Microsoft® Word 2013 - Appellant claims that the district court abused its discretion by applying an incorrect criminal history score. Reversed and remanded for resentencing. - State of Minnesota, Respondent, vs. Archester Rodgers, Jr., Appellant. A15-289, A15-290, Court of Appeals Unpublished, January 25, 2016. - A15-289 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 106762 - Jan 25, - 2016 21:42:10 GMT - english - Lucille OQuinn, Relator, vs. Noodles & Company (Corp.), Respondent, Department of Employment and Economic Development, ... - 2016-01-19T12:22:29+00:00 - Microsoft® Word 2013 - 2016-01-25T13:23:44+00:00 - Microsoft® Word 2013 - Challenges disqualification from receiving unemployment benefits. - Lucille OQuinn, Relator, vs. Noodles & Company (Corp.), Respondent, Department of Employment and Economic Development, Respondent. A15-609, Court of Appeals Unpublished, January 25, 2016. - A15-609 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 112155 - Jan 25, - 2016 21:42:10 GMT - english - Kim Marie Robberstad, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-385, Court of Appeals Unpublished, ... - 2016-01-15T09:42:17+00:00 - Microsoft® Word 2013 - 2016-01-25T12:12:54+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Kim Marie Robberstad, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-385, Court of Appeals Unpublished, January 25, 2016. - A15-385 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 149629 - Jan 25, - 2016 21:42:10 GMT - english - Wilson Newongeby Kpahn, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-723, Court of Appeals ... - 2016-01-15T10:15:51+00:00 - Microsoft® Word 2013 - 2016-01-25T13:34:30+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. - Wilson Newongeby Kpahn, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-723, Court of Appeals Unpublished, January 25, 2016. - A15-723 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 171022 - Jan 25, - 2016 21:42:10 GMT - english - Anchor Bank, N. A., Appellant, vs. Matthew L. Gulbransen, Respondent. A15-741, Court of Appeals Unpublished, January 25,... - 2016-01-19T15:45:30+00:00 - Microsoft® Word 2013 - 2016-01-25T13:41:10+00:00 - Microsoft® Word 2013 - Challenges grant of summary judgment dismissal of its claim for breach of a non-solicitation and confidentiality agreement. Reversed and remanded. - Anchor Bank, N. A., Appellant, vs. Matthew L. Gulbransen, Respondent. A15-741, Court of Appeals Unpublished, January 25, 2016. - A15-741 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 247683 - Jan 25, - 2016 21:42:10 GMT - english - Seagate Technology, LLC, Appellant, vs. Western Digital Corporation, et al., Respondents, Sining Mao, Respondent. ... - 2016-01-15T09:01:16+00:00 - Microsoft® Word 2013 - 2016-01-25T14:06:28+00:00 - Microsoft® Word 2013 - Challenges the district courts denial of its request for an award of post-arbitration-award interest. Reversed and remanded. - Seagate Technology, LLC, Appellant, vs. Western Digital Corporation, et al., Respondents, Sining Mao, Respondent. A15-760, Court of Appeals Unpublished, January 25, 2016. - A15-760 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 33860 - Jan 25, - 2016 21:42:10 GMT - english - John W. Conzemius, et al., Respondents, vs. David J. Finnegan, et al., Appellants. A15-727, Court of Appeals ... - Minnesota Judicial Branch - 2016-01-19T09:53:13+00:00 - Acrobat PDFMaker 11 for Word - 2016-01-25T13:39:01+00:00 - Adobe PDF Library 11.0 - 2016-01-19T15:52:51+00:00 - Property dispute. - John W. Conzemius, et al., Respondents, vs. David J. Finnegan, et al., Appellants. A15-727, Court of Appeals Unpublished, January 25, 2016. - A15-727 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 101733 - Jan 25, - 2016 21:42:19 GMT - english - In re the Matter of: Heather Ray Klammer, petitioner, Respondent, vs. Luke Stephen Klammer, Appellant. A15-922, Court ... - 2016-01-19T15:09:15+00:00 - Microsoft® Word 2013 - 2016-01-25T14:20:39+00:00 - Microsoft® Word 2013 - Challenges Order for Protection. Reversed and remanded. - In re the Matter of: Heather Ray Klammer, petitioner, Respondent, vs. Luke Stephen Klammer, Appellant. A15-922, Court of Appeals Unpublished, January 25, 2016. - A15-922 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 190451 - Jan 25, - 2016 21:42:19 GMT - english - Christopher R. Coker, Respondent (A15-1439, A15-1445), Appellant (A15-1606), vs. Emily Johnson Piper, Commissioner of ... - 2016-01-15T11:19:01+00:00 - Microsoft® Word 2013 - 2016-01-25T14:32:19+00:00 - Microsoft® Word 2013 - Challenges provisional discharge from the Minnesota Sex Offender Program. - Christopher R. Coker, Respondent (A15-1439, A15-1445), Appellant (A15-1606), vs. Emily Johnson Piper, Commissioner of Human Services, Appellant (A15-1439), Respondent (A15-1606), Hennepin County, Appellant (A15-1445). A15-1439, Court of Appeals Unpublished, January 25, 2016. - A15-1445 - 2016-01-25T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 161886 - Jan 23, - 2016 04:17:38 GMT - english - Yvette Ford, Respondent, vs. Minneapolis Public Schools, Appellant. A13-1072, Supreme Court, January 20, 2016. - 2016-01-15T11:08:46+00:00 - Microsoft® Word 2013 - 2016-01-20T12:32:53+00:00 - Microsoft® Word 2013 - The statute of limitations for the cause of action created by subdivision 1(1) of the Minnesota Whistleblower Act (MWA), Minn. Stat. § 181.932 (2012), which prohibits employment discrimination based on a good-faith report of a violation of law, is the 6-year limitations period in Minn. Stat. § 541.05, subd. 1(2) (2014), because the cause of action is statutory and has no counterpart at common law. - Yvette Ford, Respondent, vs. Minneapolis Public Schools, Appellant. A13-1072, Supreme Court, January 20, 2016. - A13-1072 - 2016-01-20T00:00:00-0600 - 1 STATE OF MINNESOTA IN SUPREME COURT A13-1072 Court of Appeals Lillehaug, J. Took no part, Hudson, J. Yvette Ford, Respondent, vs. Filed: January 20, ... - - - pdf - 414282 - Jan 23, - 2016 04:17:38 GMT - english - In re Petition for Reinstatement to the Practice of Law of Bruce A. Kunz, a Minnesota Attorney, Registration No. ... - 2016-01-12T15:43:21+00:00 - Canon DR-M140 TWAIN - 2016-01-20T12:33:04+00:00 - Adobe Acrobat 10.1.16 Paper Capture Plug-in - Petitioner Bruce A. Kunz is reinstated to the practice of law. - In re Petition for Reinstatement to the Practice of Law of Bruce A. Kunz, a Minnesota Attorney, Registration No. 0225289. A15-178, Supreme Court Order, January 20, 2016. - A15-178 - 2016-01-20T00:00:00-0600 - January 12, 2016 STATE OF MINNESOTA IN SUPREME COURT In re Petition for Reinstatement to the Practice of Law of Bruce A. Kunz, a Minnesota Attorney, Registration ... - - - pdf - 133436 - Jan 27, - 2016 17:35:09 GMT - english - ORDERS ON PETITIONS FOR FURTHER REVIEW FILED January 19, 2016. - 2016-01-27T11:09:33+00:00 - Microsoft® Word 2013 - 2016-01-27T11:10:14+00:00 - Microsoft® Word 2013 - ORDERS ON PETITIONS FOR FURTHER REVIEW FILED January 19, 2016. - - 2016-01-19T00:00:00-0600 - ORDERS ON PETITIONS FOR FURTHER REVIEW Filed – January 19, 2016 (Petitioner indicated in Italic Type) 1. In the Matter of the Welfare of: K.T. , Child. – A15-0381 – ... - - - pdf - 130144 - Jan 23, - 2016 04:15:33 GMT - english - State of Minnesota, Respondent, vs. Anthony London Foresta, Appellant. A14-2146, Court of Appeals Unpublished, January ... - 2016-01-08T12:36:00+00:00 - Microsoft® Word 2013 - 2016-01-19T10:46:18+00:00 - Microsoft® Word 2013 - State of Minnesota, Respondent, vs. Anthony London Foresta, Appellant. A14-2146, Court of Appeals Unpublished, January 19, 2016. - A14-2146 - 2016-01-19T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A14- ... - - - pdf - 203820 - Jan 23, - 2016 04:15:33 GMT - english - State of Minnesota, Respondent, vs. Richard William Reynolds, Jr., Appellant. A15-241, Court of Appeals Unpublished, ... - 2016-01-12T09:48:56+00:00 - Microsoft® Word 2013 - 2016-01-19T11:48:09+00:00 - Microsoft® Word 2013 - Challenges to conviction of failure to register a new primary address as a predatory offender. Reversed. - State of Minnesota, Respondent, vs. Richard William Reynolds, Jr., Appellant. A15-241, Court of Appeals Unpublished, January 19, 2016. - A15-241 - 2016-01-19T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 97606 - Jan 23, - 2016 04:15:33 GMT - english - State of Minnesota, Respondent, vs. Yia Her, Appellant. A15-119, Court of Appeals Unpublished, January 19, 2016. - 2016-01-07T11:33:14+00:00 - Microsoft® Word 2013 - 2016-01-19T10:51:14+00:00 - Microsoft® Word 2013 - Challenges to convictions of fleeing a police officer in a motor vehicle causing death and fleeing a police officer in a motor vehicle causing great bodily harm. - State of Minnesota, Respondent, vs. Yia Her, Appellant. A15-119, Court of Appeals Unpublished, January 19, 2016. - A15-119 - 2016-01-19T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - pdf - 161732 - Jan 23, - 2016 04:15:33 GMT - english - Jaime Marquez Guevara, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-295, Court of Appeals Unpublished,... - 2016-01-11T09:57:14+00:00 - Microsoft® Word 2013 - 2016-01-19T11:52:41+00:00 - Microsoft® Word 2013 - Challenges denial of petition for postconviction relief. Reversed and remanded. - Jaime Marquez Guevara, petitioner, Appellant, vs. State of Minnesota, Respondent. A15-295, Court of Appeals Unpublished, January 19, 2016. - A15-295 - 2016-01-19T00:00:00-0600 - This opinion will be unpublished and may not be cited except as provided by Minn. Stat. § 480A.08, subd. 3 (2014). STATE OF MINNESOTA IN COURT OF APPEALS A15- ... - - - - 0-500|0 - 500-500|0 - 500-500|0 - - - - - Court of Appeals Unpublished, April - - - Court of Appeals Unpublished, January - - - Court of Appeals Unpublished, May 9, 2016 - - - Court of Appeals Unpublished, March - - - Court of Appeals Unpublished, February - - - Supreme Court - - - Appellant, vs. State of Minnesota, Respondent. A15 - - - Court of Appeals Unpublished, May 2, 2016 - - - Court of Appeals Published - - - Appellant, vs. Commissioner of Public Safety, Respondent - - - - - - - diff --git a/tests/examples/opinions/united_states/minnctapp_p_example.compare.json b/tests/examples/opinions/united_states/minnctapp_p_example.compare.json new file mode 100644 index 000000000..b89c122af --- /dev/null +++ b/tests/examples/opinions/united_states/minnctapp_p_example.compare.json @@ -0,0 +1,132 @@ +[ + { + "case_dates": "2024-02-05", + "case_names": "Wayne Willenberg v. Charles Frye, Karla Harrison, ...", + "download_urls": "https://mn.gov/law-library-stat/archive/ctappub/2024/OPa230441-020524.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a230441", + "citations": "3 N.W.3d 23", + "summaries": "The scope and extent of an express easement is determined by the instrument that created the easement. If the scope and extent of an easement is capable of exact interpretation, the easement may not be relocated in a way that is contrary to the express terms of the instrument that created the easement. Reversed", + "case_name_shorts": "" + }, + { + "case_dates": "2024-02-05", + "case_names": "State of Minnesota v. Emanuel Garza", + "download_urls": "https://mn.gov/law-library-stat/archive/ctappub/2024/OPa230128-020524.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Appeal dismissed in part, reversed in part, and remanded", + "docket_numbers": "a230128", + "citations": "3 N.W.3d 18", + "summaries": "A defendant on trial for escape from custody for having failed to return following a temporary leave granted for a limited period under Minnesota Statutes section 609.485, subdivisions 1 and 2(1) (2020), is entitled to have the district court instruct the jury that the state has the burden to prove that his failure to return was intentional and voluntary. Appeal dismissed in part, reversed in part, and remanded.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-01-29", + "case_names": "State of Minnesota v. Toni Elizabeth Ickler", + "download_urls": "https://mn.gov/law-library-stat/archive/ctappub/2024/OPa220079-012924.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed", + "docket_numbers": "a220079", + "citations": "2 N.W.3d 577", + "summaries": "The evidence is insufficient to prove that appellant violated a harassment restraining order because the temporary ex parte harassment restraining order that was served on appellant was not in effect nine days after the hearing on the harassment petition and because the state did not introduce any evidence that another harassment restraining order was issued at or after that hearing. Reversed.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-01-29", + "case_names": "State of Minnesota v. Devon Griffin Seivers", + "download_urls": "https://mn.gov/law-library-stat/archive/ctappub/2024/OPa220054-012924.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a220054", + "citations": "2 N.W.3d 568", + "summaries": "The residence of a runaway child's custodial parent rather than the place the child intends to reside determines venue under Minnesota Statutes section 627.15 (2020) for prosecuting a criminal action for alleged abuse of a child, including criminal sexual conduct.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-01-29", + "case_names": "In the Matter of the Welfare of the Children of: V. R. R. and M. A. H., Parents, Commissioner of Human Services, Legal ...", + "download_urls": "https://mn.gov/law-library-stat/archive/ctappub/2024/OPa230877-012924.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a230877", + "citations": "2 N.W.3d 587", + "summaries": "When a relative or foster parent files a motion for an order for adoptive placement of a child under Minn. Stat. \u00a7 260C.607, subd. 6(a)(1) (2022), they must file either (1) a valid adoption home study under Minn. Stat. \u00a7 259.41 or Minn. Stat. \u00a7 260C.611 approving the relative or foster parent for adoption of the child or (2) an affidavit attesting to efforts to complete an adoption home study that is signed by the relative or foster parent and the responsible social-services agency or licensed child-placing agency that will complete the adoption home study.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-01-29", + "case_names": "In re the Guardianship of: Jeferson De Jesus Lemus Corpeno", + "download_urls": "https://mn.gov/law-library-stat/archive/ctappub/2024/OPa230865-012924.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and remanded", + "docket_numbers": "a230865", + "citations": "2 N.W.3d 595", + "summaries": "A district court cannot deny a petition for guardianship of an at-risk juvenile under Minn. Stat. \u00a7\u00a7 257D.01-.12 (2022), unless it makes sufficient findings justifying its rejection of the allegations in the petition asserting \"abandonment,\" \"abuse,\" and \"neglect,\" as defined in Minn. Stat. \u00a7 257D.01. Reversed and remanded.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-01-22", + "case_names": "In the Matter of the Welfare of: M. A. B., Child", + "download_urls": "https://mn.gov/law-library-stat/archive/ctappub/2024/OPa230752-012224.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a230752", + "citations": "2 N.W.3d 562", + "summaries": "When the state moves to terminate a continuance for dismissal within the time frame specified under Minnesota Rule of Juvenile Delinquent Procedure 14.04, the district court retains subject-matter jurisdiction over an adult defendant's termination hearing under Minn. Stat. \u00a7 260B.193, subd. 5(c) (2022), to \"conduct a trial\" until the defendant turns 21 years old.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-01-16", + "case_names": "Fletcher Properties, Inc. v. City of Minneapolis, Poverty & Race Research Action ...", + "download_urls": "https://mn.gov/law-library-stat/archive/ctappub/2024/OPa230191-011624.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a230191", + "citations": "2 N.W.3d 544", + "summaries": "1. On its face, the Minneapolis city ordinance addressing housing discrimination based on public assistance does not appropriate private property or a landlord's right to exclude others from private property, and therefore does not constitute a per se physical taking in all applications. 2. The Minneapolis city ordinance addressing housing discrimination based on public assistance is not preempted by the state's anti-discrimination statute because the ordinance does not conflict with the statute, and the statute does not occupy the field of housing discrimination based on public assistance.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-01-16", + "case_names": "Dennis J. Daulton, trustee for the next of kin of Brady Joel Daulton v. TMS Treatment Center, ...", + "download_urls": "https://mn.gov/law-library-stat/archive/ctappub/2024/OPa230483-011624.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in part, reversed in part, and remanded", + "docket_numbers": "a230483", + "citations": "2 N.W.3d 331", + "summaries": "Minn. Stat. \u00a7 573.02, subd. 1 (2022), does not require dismissal of a wrongful-death action based on medical malpractice when the expert-review affidavit is served after the wrongful-death statute of limitations has expired, so long as it was served within the 60- day safe-harbor period provided for in Minn. Stat. \u00a7 145.682, subd. 6(a) (2022). Affirmed in part, reversed in part, and remanded.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-01-08", + "case_names": "Robert W. Starbeck, individually, and As Trustee of the Arthur C. Starbeck Trust under agreement Dated August 21, 2000, ...", + "download_urls": "https://mn.gov/law-library-stat/archive/ctappub/2024/OPa230619-010824.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a230619", + "citations": "2 N.W.3d 535", + "summaries": "1. On a claim for adverse possession, the boundary-line exemption from the property-tax-payment requirement in Minn. Stat. \u00a7 541.02 (2022) requires the existence of genuine confusion over the true location of the boundary line between adjoining properties. 2. The uses of land to establish a prescriptive-easement claim are not limited to using another's land for access purposes.", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/minnctapp_p_example.html b/tests/examples/opinions/united_states/minnctapp_p_example.html new file mode 100644 index 000000000..809f27003 --- /dev/null +++ b/tests/examples/opinions/united_states/minnctapp_p_example.html @@ -0,0 +1,2973 @@ + + + + + + Search Page / Minnesota State Law Library + + + +
    Primary navigation
    + + +
    + + + +
    +
    + +
    + + + + + + +
    + + + + + +
    + + +
    +

    Search Site

    + +
    + + + + +
    +

    Search Opinions

    + +
    + +
    +

    Browse Opinions by Date

    +
    + +
    +

    Special-Term Orders

    + + +
    +

    About Content +
    + This archive includes orders decided by + the Court of Appeals at its Special-Term + Session, the weekly calendar where a + panel of three Court of Appeals judges + considers jurisdictional and procedural + matters. This archive does not include + orders before January 1, 2023 or orders + that were not decided at Special Term. + Orders not included in this archive may + be accessed via the Minnesota Appellate + Courts’ public access system, PMACS. +

    +
    +
    + + +
    +

    Search Briefs

    + +
    + +
    +

    Search Articles

    + +
    + +
    + +
    + +
    +
    Results 51 - 60 of 323
    +
    + +
    A defendant on trial for + escape from custody for having failed to return + following a temporary leave granted for a limited period + under Minnesota Statutes section 609.485, subdivisions 1 + and 2(1) (2020), is entitled to have the district court + instruct the jury that the state has the burden to prove + that his failure to return was intentional and + voluntary. Appeal dismissed in part, reversed in part, + and remanded.
    +
    + Citation: 3 N.W.3d 18 +
    +
    + Date: + February + 05, 2024 +
    + +
    +
    + +
    The scope and extent of an + express easement is determined by the instrument that + created the easement. If the scope and extent of an + easement is capable of exact interpretation, the + easement may not be relocated in a way that is contrary + to the express terms of the instrument that created the + easement. Reversed,
    +
    + Citation: 3 N.W.3d 23 +
    +
    + Date: + February + 05, 2024 +
    + +
    +
    + +
    When a relative or foster + parent files a motion for an order for adoptive + placement of a child under Minn. Stat. § 260C.607, subd. + 6(a)(1) (2022), they must file either (1) a valid + adoption home study under Minn. Stat. § 259.41 or Minn. + Stat. § 260C.611 approving the relative or foster parent + for adoption of the child or (2) an affidavit attesting + to efforts to complete an adoption home study that is + signed by the relative or foster parent and the + responsible social-services agency or licensed + child-placing agency that will complete the adoption + home study.
    +
    + Citation: 2 N.W.3d 587 +
    +
    + Date: + January + 29, 2024 +
    + +
    +
    + +
    A district court cannot deny a + petition for guardianship of an at-risk juvenile under + Minn. Stat. §§ 257D.01-.12 (2022), unless it makes + sufficient findings justifying its rejection of the + allegations in the petition asserting “abandonment,” + “abuse,” and “neglect,” as defined in Minn. Stat. § + 257D.01. Reversed and remanded.
    +
    + Citation: 2 N.W.3d 595 +
    +
    + Date: + January + 29, 2024 +
    + +
    +
    + +
    The residence of a runaway + child’s custodial parent rather than the place the child + intends to reside determines venue under Minnesota + Statutes section 627.15 (2020) for prosecuting a + criminal action for alleged abuse of a child, including + criminal sexual conduct.
    +
    + Citation: 2 N.W.3d 568 +
    +
    + Date: + January + 29, 2024 +
    + +
    +
    + +
    The evidence is insufficient + to prove that appellant violated a harassment + restraining order because the temporary ex parte + harassment restraining order that was served on + appellant was not in effect nine days after the hearing + on the harassment petition and because the state did not + introduce any evidence that another harassment + restraining order was issued at or after that hearing. + Reversed.
    +
    + Citation: 2 N.W.3d 577 +
    +
    + Date: + January + 29, 2024 +
    + +
    +
    + +
    When the state moves to + terminate a continuance for dismissal within the time + frame specified under Minnesota Rule of Juvenile + Delinquent Procedure 14.04, the district court retains + subject-matter jurisdiction over an adult defendant’s + termination hearing under Minn. Stat. § 260B.193, subd. + 5(c) (2022), to “conduct a trial” until the defendant + turns 21 years old.
    +
    + Citation: 2 N.W.3d 562 +
    +
    + Date: + January + 22, 2024 +
    + +
    +
    + +
    Minn. Stat. § 573.02, subd. 1 + (2022), does not require dismissal of a wrongful-death + action based on medical malpractice when the + expert-review affidavit is served after the + wrongful-death statute of limitations has expired, so + long as it was served within the 60- day safe-harbor + period provided for in Minn. Stat. § 145.682, subd. 6(a) + (2022). Affirmed in part, reversed in part, and + remanded.
    +
    + Citation: 2 N.W.3d 331 +
    +
    + Date: + January + 16, 2024 +
    + +
    +
    + +
    1. On its face, the + Minneapolis city ordinance addressing housing + discrimination based on public assistance does not + appropriate private property or a landlord’s right to + exclude others from private property, and therefore does + not constitute a per se physical taking in all + applications. 2. The Minneapolis city ordinance + addressing housing discrimination based on public + assistance is not preempted by the state’s + anti-discrimination statute because the ordinance does + not conflict with the statute, and the statute does not + occupy the field of housing discrimination based on + public assistance.
    +
    + Citation: 2 N.W.3d 544 +
    +
    + Date: + January + 16, 2024 +
    + +
    +
    + +
    1. On a claim for adverse + possession, the boundary-line exemption from the + property-tax-payment requirement in Minn. Stat. § 541.02 + (2022) requires the existence of genuine confusion over + the true location of the boundary line between adjoining + properties. 2. The uses of land to establish a + prescriptive-easement claim are not limited to using + another’s land for access purposes.
    +
    + Citation: 2 N.W.3d 535 +
    +
    + Date: + January + 08, 2024 +
    + +
    +
    + +
    +
    +
    + +
    + + +
    + + +
    + + + + + +
    + +
    + +

    Footer navigation

    + + + + +
    +
    + +
    + + + +
    + + +
    +
    + + + +
    + +
    + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/minnctapp_u_example.compare.json b/tests/examples/opinions/united_states/minnctapp_u_example.compare.json new file mode 100644 index 000000000..1188bd956 --- /dev/null +++ b/tests/examples/opinions/united_states/minnctapp_u_example.compare.json @@ -0,0 +1,132 @@ +[ + { + "case_dates": "2023-10-30", + "case_names": "State of Minnesota v. Maurice Joel Dow", + "download_urls": "https://mn.gov/law-library-stat/archive/ctapun/2023/OPa221779-103023.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a221779", + "citations": "", + "summaries": "In this direct appeal from final judgment, appellant challenges his first-degree burglary conviction, arguing that the district court's jury instructions violated his right to a unanimous verdict. We affirm.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-30", + "case_names": "State of Minnesota v. Joseph Manasseh Johnson", + "download_urls": "https://mn.gov/law-library-stat/archive/ctapun/2023/OPa221711-103023-motion-granted.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a221711", + "citations": "", + "summaries": "In this direct appeal from the judgment of conviction, appellant Joseph Manasseh Johnson argues that (1) his conviction for depriving animals of nourishment and shelter under Minn. Stat. \u00a7 343.21, subd. 2 (2022) should be reversed and remanded because he was denied his right to present a complete defense when his trial continuance requests were denied and because his waiver of his right to counsel was inadequate. Johnson also argues that his conviction for having inadequate enclosures under Minn. Stat. \u00a7 343.21, subd. 3 (2022)", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-30", + "case_names": "State of Minnesota v. Jacob Carl Smith", + "download_urls": "https://mn.gov/law-library-stat/archive/ctapun/2023/OPa230795-103023.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a230795", + "citations": "", + "summaries": "Appellant State of Minnesota challenges the district court's pretrial orders deferring a decision on the state's request for a continuance after an essential witness failed to appear and denying the state's motion to amend the complaint to include a three-year mandatory minimum sentence under Minn. Stat. \u00a7 609.11, subd. 4 (2022). Because the district court did not abuse its discretion in deferring a ruling on the state's continuance request, we affirm.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-30", + "case_names": "State of Minnesota v. Dorothy Shavon Green", + "download_urls": "https://mn.gov/law-library-stat/archive/ctapun/2023/OPa221834-103023.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a221834", + "citations": "", + "summaries": "Appellant challenges her convictions of unlawful possession of ammunition and giving a peace officer a false name, arguing that (1) she is entitled to withdraw her unlawful-possession guilty plea because she did not understand that she faced a mandatory minimum sentence under Minn. Stat. \u00a7 609.11 (2018), (2) she is entitled to withdraw her false-name guilty plea because she did not admit an essential element of the offense, and (3) the district court erred by not impaneling a sentencing jury or obtaining a jury waiver with respect to the factors that would deprive it of discretion to depart from the mandatory minimum sentence for unlawful possession. We affirm in part, reverse in part, and remand.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-30", + "case_names": "State of Minnesota v. Allen Marquise Burson", + "download_urls": "https://mn.gov/law-library-stat/archive/ctapun/2023/OPa230069-103023.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a230069", + "citations": "", + "summaries": "Appellant challenges his conviction of third-degree controlled-substance crime, arguing the evidence is insufficient to prove he unlawfully possessed the 90 Oxycodone pills he obtained through a prescription attributed to a doctor who did not write or sign it. We affirm.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-30", + "case_names": "State of Minnesota v. Aleshia Lynn Becklund", + "download_urls": "https://mn.gov/law-library-stat/archive/ctapun/2023/OPa221622-103023.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a221622", + "citations": "", + "summaries": "In this direct appeal from the judgment of conviction for second-degree drug possession, appellant Aleshia Lynn Becklund argues that the district court erred in denying her motion to withdraw her guilty plea because her plea was constitutionally invalid. Appellant also argues that the district court abused its discretion in denying her motion to withdraw her plea because plea withdrawal would have been fair and just. Because Becklund's plea was constitutionally valid and the district court did not abuse its discretion by denying plea withdrawal under the fair-and-just standard, we affirm.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-30", + "case_names": "James M. Carlson v. City of Brainerd", + "download_urls": "https://mn.gov/law-library-stat/archive/ctapun/2023/OPa221624-103023.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a221624", + "citations": "", + "summaries": "In this appeal from the district court's judgment affirming respondent city's special assessment against appellant's property, appellant argues that the district court erred because (1) the presumption that a special assessment is valid did not apply here; (2) even if the presumption applied, appellant rebutted it; and (3) the special assessment was not uniform across the same class of property. We conclude, first, that the district court did not err by determining the presumption of validity applied and, second, that appellant failed to rebut the presumption and overcome the city's prima facie proof. Third, we conclude that appellant forfeited any challenge to the uniformity of the special assessment because he failed to raise the issue in district court; alternatively, we discern no error. Thus, we affirm.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-30", + "case_names": "In the Matter of the Welfare of: Z. A. W., Child", + "download_urls": "https://mn.gov/law-library-stat/archive/ctapun/2023/OPa230073-103023.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a230073", + "citations": "", + "summaries": "Appellant challenges the district court's decision to adjudicate him delinquent, arguing that the district court abused its discretion by failing to determine that adjudication was necessary for his rehabilitation. Because a district court is not required to make such a determination when deciding whether to adjudicate a juvenile delinquent, we affirm.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-30", + "case_names": "In re the Marriage of: Marilena Elizabeth Hyman v. Sean Michael Hyman", + "download_urls": "https://mn.gov/law-library-stat/archive/ctapun/2023/OPa221496-103023-motion-denied.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a221496", + "citations": "", + "summaries": "In this parenting-time dispute, appellant-father argues that the district court abused its discretion by denying his motions to (1) vacate and amend portions of the stipulated marital dissolution judgment and decree based on fraud by respondent-mother, and (2) award him conduct-based attorney fees. We affirm.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-30", + "case_names": "Anita M. Froderman, n/k/a Anita M. Sydorowicz v. Jeffrey T. Lais", + "download_urls": "https://mn.gov/law-library-stat/archive/ctapun/2023/OPa221547-103023.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "", + "docket_numbers": "a221547", + "citations": "", + "summaries": "Appellant-father challenges the district court's order establishing a parenting-time schedule for the 2022-2023 school year. Appellant seeks reversal and remand, arguing that the district court's decision regarding the parenting-time schedule is not supported by sufficient factual findings. We affirm.", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/minnctapp_u_example.html b/tests/examples/opinions/united_states/minnctapp_u_example.html new file mode 100644 index 000000000..c25083c13 --- /dev/null +++ b/tests/examples/opinions/united_states/minnctapp_u_example.html @@ -0,0 +1,1930 @@ + + + + + + + + + + + + + + + Search Page / Minnesota State Law Library + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + +skip to content
    + + + + + +
    Primary navigation
    + + + + +
    + + + +
    + + +
    + + + +
    +
    + +
    + + + + + + +
    + + + + + +
    + + +
    +

    Search Site

    + +
    + + + + +
    +

    Search Opinions

    + +
    + +
    +

    Browse Opinions by Date

    +
    + +
    +

    Special-Term Orders

    + + +
    +

    About Content +
    +This archive includes orders decided by the Court of Appeals at its Special-Term Session, the weekly calendar where a panel of three Court of Appeals judges considers jurisdictional and procedural matters. This archive does not include orders before January 1, 2023 or orders that were not decided at Special Term. Orders not included in this archive may be accessed via the Minnesota Appellate Courts’ public access system, PMACS. +

    +
    +
    + + +
    +

    Search Briefs

    + +
    + +
    +

    Search Articles

    + +
    + + +
    +

    Help with searching

    + + + +
    +
      + +
    • + +
    • +
    • + +
    • +
    • + +
    • +
    • + +
    • +
    • + +
    • +
    • + +
    • +
    + +
    + + + + +
    +
    + +
    + + + +
    +
    Results 1 - 10 of 326
    +
    + +
    In this direct appeal from final judgment, appellant challenges his first-degree burglary conviction, arguing that the district court’s jury instructions violated his right to a unanimous verdict. We affirm.
    +
    +Date: + October + 30, 2023
    + +
    +
    + +
    In this direct appeal from the judgment of conviction for second-degree drug possession, appellant Aleshia Lynn Becklund argues that the district court erred in denying her motion to withdraw her guilty plea because her plea was constitutionally invalid. Appellant also argues that the district court abused its discretion in denying her motion to withdraw her plea because plea withdrawal would have been fair and just. Because Becklund’s plea was constitutionally valid and the district court did not abuse its discretion by denying plea withdrawal under the fair-and-just standard, we affirm.
    +
    +Date: + October + 30, 2023
    + +
    +
    + +
    Appellant challenges his conviction of third-degree controlled-substance crime, arguing the evidence is insufficient to prove he unlawfully possessed the 90 Oxycodone pills he obtained through a prescription attributed to a doctor who did not write or sign it. We affirm.
    +
    +Date: + October + 30, 2023
    + +
    +
    + +
    Appellant State of Minnesota challenges the district court’s pretrial orders deferring a decision on the state’s request for a continuance after an essential witness failed to appear and denying the state’s motion to amend the complaint to include a three-year mandatory minimum sentence under Minn. Stat. § 609.11, subd. 4 (2022). Because the district court did not abuse its discretion in deferring a ruling on the state’s continuance request, we affirm.
    +
    +Date: + October + 30, 2023
    + +
    +
    + +
    Appellant challenges her convictions of unlawful possession of ammunition and giving a peace officer a false name, arguing that (1) she is entitled to withdraw her unlawful-possession guilty plea because she did not understand that she faced a mandatory minimum sentence under Minn. Stat. § 609.11 (2018), (2) she is entitled to withdraw her false-name guilty plea because she did not admit an essential element of the offense, and (3) the district court erred by not impaneling a sentencing jury or obtaining a jury waiver with respect to the factors that would deprive it of discretion to depart from the mandatory minimum sentence for unlawful possession. We affirm in part, reverse in part, and remand.
    +
    +Date: + October + 30, 2023
    + +
    +
    + +
    In this direct appeal from the judgment of conviction, appellant Joseph Manasseh Johnson argues that (1) his conviction for depriving animals of nourishment and shelter under Minn. Stat. § 343.21, subd. 2 (2022) should be reversed and remanded because he was denied his right to present a complete defense when his trial continuance requests were denied and because his waiver of his right to counsel was inadequate. Johnson also argues that his conviction for having inadequate enclosures under Minn. Stat. § 343.21, subd. 3 (2022)
    +
    +Date: + October + 30, 2023
    + +
    +
    + +
    Appellant-father challenges the district court’s order establishing a parenting-time schedule for the 2022-2023 school year. Appellant seeks reversal and remand, arguing that the district court’s decision regarding the parenting-time schedule is not supported by sufficient factual findings. We affirm.
    +
    +Date: + October + 30, 2023
    + +
    +
    + +
    Appellant challenges the district court’s decision to adjudicate him delinquent, arguing that the district court abused its discretion by failing to determine that adjudication was necessary for his rehabilitation. Because a district court is not required to make such a determination when deciding whether to adjudicate a juvenile delinquent, we affirm.
    +
    +Date: + October + 30, 2023
    + +
    +
    + +
    In this appeal from the district court’s judgment affirming respondent city’s special assessment against appellant’s property, appellant argues that the district court erred because (1) the presumption that a special assessment is valid did not apply here; (2) even if the presumption applied, appellant rebutted it; and (3) the special assessment was not uniform across the same class of property. We conclude, first, that the district court did not err by determining the presumption of validity applied and, second, that appellant failed to rebut the presumption and overcome the city’s prima facie proof. Third, we conclude that appellant forfeited any challenge to the uniformity of the special assessment because he failed to raise the issue in district court; alternatively, we discern no error. Thus, we affirm.
    +
    +Date: + October + 30, 2023
    + +
    +
    + +
    In this parenting-time dispute, appellant-father argues that the district court abused its discretion by denying his motions to (1) vacate and amend portions of the stipulated marital dissolution judgment and decree based on fraud by respondent-mother, and (2) award him conduct-based attorney fees. We affirm.
    +
    +Date: + October + 30, 2023
    + +
    +
    + +
    +
    + +
    + + +
    + + +
    + + + + + +
    + +
    + +

    Footer navigation

    + + + + +
    +
    + +
    + + + +
    + + +
    +
    + + + +
    + +
    + + back to top + + + + + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/mo_example.compare.json b/tests/examples/opinions/united_states/mo_example.compare.json index 9dd4a0c56..3838fea94 100644 --- a/tests/examples/opinions/united_states/mo_example.compare.json +++ b/tests/examples/opinions/united_states/mo_example.compare.json @@ -1,602 +1,587 @@ [ { - "case_dates": "2016-06-28", - "case_names": "Tanisha Ross-Paige v. Saint Louis Metropolitan Police Department Steven A. Gori, Michael A. Deeba, Sr., Saint Louis Board of Police Commissioners, Richard H. Gray, Bettye Battle Turner, Thomas J. Irwin, and Francis G. Slay", - "download_urls": "/file.jsp?id=102857", + "case_dates": "2023-10-03", + "case_names": "State v. Harris", + "download_urls": "/file.jsp?id=201734", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. All concur.", - "docket_numbers": "SC95214", - "judges": "Judge George W. Draper III", - "case_name_shorts": "" + "dispositions": "APPEAL DISMISSED", + "docket_numbers": "SC99977", + "judges": "Russell, C.J., Powell, Breckenridge, Ransom, and Wilson, JJ., and Hardin-Tammons, Sp.J., concur. Broniec, J., not participating.", + "case_name_shorts": "Harris", + "authors": "Judge Zel M. Fischer" }, { - "case_dates": "2016-06-28", - "case_names": "State of Missouri v. Adriano Raphael Clark, Sr.", - "download_urls": "/file.jsp?id=102853", + "case_dates": "2023-08-29", + "case_names": "State ex rel. Steven Wishom, Relator v. The Honorable Paula P. Bryant", + "download_urls": "/file.jsp?id=200413", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Stith, Draper and Teitelman, JJ., concur Wilson, J., concurs in result in separate opinion filed Fischer and Russell, JJ., concur in opinion of Wilson, J.", - "docket_numbers": "SC94959", - "judges": "Chief Justice Patricia Breckenridge", - "case_name_shorts": "" + "dispositions": "PRELIMINARY WRIT MADE PERMANENT", + "docket_numbers": "SC99949", + "judges": "Russell, C.J., Powell, Breckenridge, Fischer, Ransom and Wilson, JJ., concur. Draper, J., not participating.", + "case_name_shorts": "", + "authors": "Judge W. Brent Powell" }, { - "case_dates": "2016-06-28", - "case_names": "State of Missouri ex rel. Attorney General Chris Koster and the Missouri Petroleum Storage Tank Insurance Fund Board of Directors v. ConocoPhillips Company and Phillips 66 Company, and Cory Wagoner", - "download_urls": "/file.jsp?id=102858", + "case_dates": "2023-08-15", + "case_names": "State of Missouri v. Caitlyn Cordell Williams, and State of Missouri v. Tamarae Lynn LaRue", + "download_urls": "/file.jsp?id=198519", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Breckenridge, C.J., Fischer, Stith, Draper and Teitelman, JJ., and Dolan, Sp.J., concur. Russell, J., not participating.", - "docket_numbers": "SC95444", - "judges": "Judge Paul C. Wilson", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99719_and_SC99823", + "judges": "Russell, C.J., Powell, Breckenridge, Fischer and Wilson, JJ., concur. Draper, J., not participating.", + "case_name_shorts": "", + "authors": "Judge Robin Ransom" }, { - "case_dates": "2016-06-28", - "case_names": "Ronald Malam v. State of Missouri, Department of Corrections", - "download_urls": "/file.jsp?id=102860", + "case_dates": "2023-08-15", + "case_names": "State ex rel. Monsanto Company, Relator v. The Honorable Michael Mullen", + "download_urls": "/file.jsp?id=198516", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Breckenridge, C.J., Stith and Draper, JJ., concur Russell, J., dissents in separate opinion filed Fischer and Wilson, JJ., concur in opinion of Russell, J.", - "docket_numbers": "SC95170", - "judges": "Judge Richard B. Teitelman", - "case_name_shorts": "" + "dispositions": "PRELIMINARY WRIT MADE PERMANENT", + "docket_numbers": "SC99942", + "judges": "Russell, C.J., Breckenridge, Fischer, Ransom and Wilson, JJ., concur Draper, J., dissents in part and concurs in part in separate opinion filed.", + "case_name_shorts": "", + "authors": "Judge W. Brent Powell" }, { - "case_dates": "2016-06-28", - "case_names": "Rachal Laut, f/k/a Rachal Govro, and John M. Soellner v. City of Arnold", - "download_urls": "/file.jsp?id=102855", + "case_dates": "2023-08-15", + "case_names": "Shannon Robinson v. Missouri Department of Health and Senior Services, St. Louis County, Board of Trustees, Livingston County Health Center and Melanie Hutton, Administrator, Cooper County Public Health Center, Jefferson County Health Center, Jackson County, Missouri", + "download_urls": "/file.jsp?id=198517", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Breckenridge, C.J., Draper, Teitelman and Russell, JJ., concur Fischer, J., dissents in separate opinion filed Wilson, J., dissents in separate opinion filed.", - "docket_numbers": "SC95307", - "judges": "Judge Laura Denvir Stith", - "case_name_shorts": "" + "dispositions": "VACATED AND REMANDED", + "docket_numbers": "SC99864", + "judges": "Russell, C.J., Powell, Fischer, Ransom and Wilson, JJ., concur. Draper, J., not participating.", + "case_name_shorts": "", + "authors": "Judge Patricia Breckenridge" }, { - "case_dates": "2016-06-28", - "case_names": "Missouri Real Estate Appraisers Commission v. Mark A. Funk", - "download_urls": "/file.jsp?id=102854", + "case_dates": "2023-08-15", + "case_names": "In the Matter of the Joint Application of Missouri-American Water Company and DCM Land, LLC, for a Variance from the Company's Tariff Provisions Regarding the Extension of Company Mains v. Office of Public Counsel", + "download_urls": "/file.jsp?id=198518", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Breckenridge, C.J., Fischer, Draper, Wilson and Russell, JJ., concur Teitelman, J., concurs in part in separate opinion filed.", - "docket_numbers": "SC95255", - "judges": "Judge Laura Denvir Stith", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "SC99978", + "judges": "Russell, C.J., Powell, Breckenridge, Ransom and Wilson, JJ., concur. Draper, J., not participating.", + "case_name_shorts": "", + "authors": "Judge Zel M. Fischer" }, { - "case_dates": "2016-06-28", - "case_names": "Kyle Sanford v. CenturyTel of Missouri, LLC d/b/a CenturyLink", - "download_urls": "/file.jsp?id=102856", + "case_dates": "2023-07-20", + "case_names": "State of Missouri ex rel. Dr. Anna Fitz-James v. Andrew Bailey, In His Official Capacity, and Scott Fitzpatrick", + "download_urls": "/file.jsp?id=197720", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "APPEAL DISMISSED. All concur.", - "docket_numbers": "SC95465", - "judges": "Judge Laura Denvir Stith", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC100132", + "judges": "Russell, C.J., Powell, Breckenridge, Fischer and Ransom, JJ., concur Draper, J., not participating.", + "case_name_shorts": "", + "authors": "Judge Paul C. Wilson" }, { - "case_dates": "2016-06-28", - "case_names": "Avery Contracting, LLC v. Richard Niehaus, Lisa J. Niehaus, Alicia Niehaus, Creekstone Homeowners Association, and Missouri Highways and Transportation Commission", - "download_urls": "/file.jsp?id=102859", + "case_dates": "2023-07-20", + "case_names": "State of Missouri ex rel. Department of Natural Resources v. Fowler Land Company, Inc., and Margaret Leist Revocable Trust, Sandy Runnels and Linda Henderson, Trustees", + "download_urls": "/file.jsp?id=197719", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. All concur.", - "docket_numbers": "SC95064", - "judges": "Judge Richard B. Teitelman", - "case_name_shorts": "" + "dispositions": "REVERSED", + "docket_numbers": "SC99740", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge George W. Draper III" }, { - "case_dates": "2016-06-07", - "case_names": "Paige Parr, a minor, by and through her Conservator, Janett Waid, Jerimy Morehead, and Charles Parr v. Charles Breeden, Wendy Cogdill, and Melanie Buttry", - "download_urls": "/file.jsp?id=101874", + "case_dates": "2023-07-20", + "case_names": "Christina Forester v. Crystal May", + "download_urls": "/file.jsp?id=197718", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Stith, Draper and Russell, JJ., concur Fischer, J., concurs in result in separate opinion filed Wilson, J., concurs in result in separate opinion filed Teitelman, J., dissents in separate opinion filed.tuu", - "docket_numbers": "SC94393", - "judges": "Chief Justice Patricia Breckenridge", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99928", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge Patricia Breckenridge" }, { - "case_dates": "2016-06-07", - "case_names": "Curt Peters and Cheri Peters v. Wady Industries, Inc., and Patrick Terrio", - "download_urls": "/file.jsp?id=101875", + "case_dates": "2023-06-27", + "case_names": "Susan F. Bridegan v. Gary L. Turntine", + "download_urls": "/file.jsp?id=196973", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Stith, Draper and Russell, JJ., concur Fischer, J., concurs in result in separate opinion filed Wilson, J., concurs in result in separate opinion filed Teitelman, J., dissents in separate opinion filed.", - "docket_numbers": "SC94442", - "judges": "Chief Justice Patricia Breckenridge", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99700", + "judges": "Russell, Powell, Breckenridge, Fischer and Ransom, JJ., concur Draper, J., dissents without opinion.", + "case_name_shorts": "", + "authors": "Chief Justice Paul C. Wilson" }, { - "case_dates": "2016-05-24", - "case_names": "State ex rel. Ryan W. Amorine, Relator v. The Honorable Kelly Wayne Parker", - "download_urls": "/file.jsp?id=101534", + "case_dates": "2023-06-27", + "case_names": "State of Missouri v. Nicholas A. Barton", + "download_urls": "/file.jsp?id=196974", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "PRELIMINARY WRIT MADE PERMANENT. All concur.", - "docket_numbers": "SC95301", - "judges": "Judge George W. Draper III", - "case_name_shorts": "" + "dispositions": "VACATED AND REMANDED", + "docket_numbers": "SC99886", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Chief Justice Paul C. Wilson" }, { - "case_dates": "2016-05-24", - "case_names": "Peggy Stevens McGraw and Samuel C. Jones, on behalf of themselves and all others similarly situated v. State of Missouri, Missouri State Employees' Retirement System, Missouri Commissioner of Administration Doug Nelson, and Missouri State Treasurer Clint Zweifel", - "download_urls": "/file.jsp?id=101535", + "case_dates": "2023-06-27", + "case_names": "State of Missouri v. Lindsay Michelle Forbes", + "download_urls": "/file.jsp?id=196976", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. All concur.", - "docket_numbers": "SC95271", - "judges": "Per Curiam", - "case_name_shorts": "" + "dispositions": "DISMISSED AND REMANDED", + "docket_numbers": "SC99658", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge Zel M. Fischer" }, { - "case_dates": "2016-05-24", - "case_names": "Missouri Municipal League, City of Springfield, and Richard Sheets v. State of Missouri", - "download_urls": "/file.jsp?id=101533", + "case_dates": "2023-06-27", + "case_names": "Jenette Konopasek v. Douglas and Laura Konopasek", + "download_urls": "/file.jsp?id=196975", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Breckenridge, C.J., Stith, Draper, Wilson and Russell, JJ., concur Teitelman, J., dissents in part and concurs in part in separate opinion filed.", - "docket_numbers": "SC95337", - "judges": "Judge Zel M. Fischer", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "SC99816", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge Patricia Breckenridge" }, { - "case_dates": "2016-05-20", - "case_names": "Joshua Peters, The Missouri Attorney General, Intervenor/Respondent v. Rachel M. Johns", - "download_urls": "/file.jsp?id=101430", + "case_dates": "2023-06-13", + "case_names": "State of Missouri v. Sylvester Onyejiaka, Jr.", + "download_urls": "/file.jsp?id=196618", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Fischer, Draper and Wilson, JJ., concur Stith, J., dissents in separate opinion filed Breckenridge, C.J., and Teitelman, J., concur in opinion of Stith, J.", - "docket_numbers": "SC95678", - "judges": "Judge Mary R. Russell", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99871", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge Robin Ransom" }, { - "case_dates": "2016-05-03", - "case_names": "Walter Barton v. State of Missouri", - "download_urls": "/file.jsp?id=100515", + "case_dates": "2023-06-13", + "case_names": "State of Missouri v. John A. Hamby", + "download_urls": "/file.jsp?id=196615", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. All concur.", - "docket_numbers": "SC95139", - "judges": "Judge Laura Denvir Stith", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99554", + "judges": "Wilson, C.J., Russell, Fischer and Ransom, JJ., concur Breckenridge, J., dissents in separate opinion filed Draper, J., concurs in opinion of Breckenridge, J.", + "case_name_shorts": "", + "authors": "Judge W. Brent Powell" }, { - "case_dates": "2016-05-03", - "case_names": "Krispy Kreme Doughnut Corporation v. Director of Revenue", - "download_urls": "/file.jsp?id=100514", + "case_dates": "2023-06-13", + "case_names": "State of Missouri v. Jarrad Ryan Vandergrift", + "download_urls": "/file.jsp?id=196617", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. All concur.", - "docket_numbers": "SC95181", - "judges": "Judge Zel M. Fischer", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99913", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge Zel M. Fischer" }, { - "case_dates": "2016-05-03", - "case_names": "Jodie Nevils v. Group Health Plan, Inc. and ACS Recovery Services, Inc.", - "download_urls": "/file.jsp?id=100516", + "case_dates": "2023-06-13", + "case_names": "Patriots Bank v. Black River Motel, LLC", + "download_urls": "/file.jsp?id=196614", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Fischer, Stith, Draper and Russell, JJ., concur Wilson, J., concurs in result in separate opinion filed Breckenridge, C.J., Fischer, Stith, Draper and Russell, JJ., concur in opinion of Wilson, J.", - "docket_numbers": "SC93134", - "judges": "Judge Richard B. Teitelman", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99567", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge Mary R. Russell" }, { - "case_dates": "2016-05-03", - "case_names": "Edward L. Hoeber v. State of Missouri", - "download_urls": "/file.jsp?id=100513", + "case_dates": "2023-06-13", + "case_names": "In the Interest of: P.D.E. v. Juvenile Officer", + "download_urls": "/file.jsp?id=196619", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Stith, Draper, Teitelman and Russell, JJ., concur Fischer, J., dissents in separate opinion filed Wilson, J., concurs in opinion of Fischer, J.", - "docket_numbers": "SC95079", - "judges": "Chief Justice Patricia Breckenridge", - "case_name_shorts": "" + "dispositions": "APPEAL DISMISSED", + "docket_numbers": "SC99896", + "judges": "Wilson, C.J., Russell, Powell, Fischer and Draper, JJ., concur Breckenridge, J., dissents in separate opinion filed.", + "case_name_shorts": "", + "authors": "Judge Robin Ransom" }, { - "case_dates": "2016-05-03", - "case_names": "Bartlett International, Inc., and Bartlett Grain Co., L.P. v. Director of Revenue", - "download_urls": "/file.jsp?id=100517", + "case_dates": "2023-06-13", + "case_names": "David Prior Wilmoth v. Director of Revenue", + "download_urls": "/file.jsp?id=196616", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. All concur.", - "docket_numbers": "SC95205", - "judges": "Judge Mary R. Russell", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99655", + "judges": "Wilson, C.J., Russell, Powell, Ransom and Draper, JJ., and Growcock, Sp.J., concur. Fischer, J., not participating.", + "case_name_shorts": "", + "authors": "Judge Patricia Breckenridge" }, { - "case_dates": "2016-04-19", - "case_names": "Ruth Mickels v. Raman Danrad, M.D.", - "download_urls": "/file.jsp?id=100013", + "case_dates": "2023-06-13", + "case_names": "Conservation Commission and Missouri Department of Conservation v. Andrew Bailey, in his Official Capacity as Attorney General of Missouri, and Ken Zellers, in his Official Capacity as Commissioner of the Office of Administration", + "download_urls": "/file.jsp?id=196620", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "VACATED AND REMANDED. Breckenridge, C.J., Fischer and Russell, JJ., concur Teitelman, J., dissents in separate opinion filed Stith and Draper, JJ., concur in opinion of Teitelman, J.", - "docket_numbers": "SC94844", - "judges": "Judge Paul C. Wilson", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99092", + "judges": "Wilson, C.J., Russell, Ransom and Draper, JJ., concur Breckenridge, J., dissents in separate opinion filed Powell and Fischer, JJ., concur in opinion of Breckenridge, J.", + "case_name_shorts": "", + "authors": "Per Curiam" }, { - "case_dates": "2016-04-19", - "case_names": "Jason D. Dodson and Jason D. Dodson, Jr., a Minor, and Eva Raine Dodson-Lohse, a Minor, and August William Davis Dodson, a Minor, said Minors appearing by the duly appointed Next Friend Jason D. Dodson, Respondent/Cross-Appellant v. Robert P. Ferrara, M.D., and Mercy Clinic Heart and Vascular, LLC, Appellants/Cross-Respondents.", - "download_urls": "/file.jsp?id=100015", + "case_dates": "2023-06-08", + "case_names": "State ex rel. Johnny A. Johnson v. David Vandergriff", + "download_urls": "/file.jsp?id=196433", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Breckenridge, C.J., and Stith, J., concur Fischer and Wilson, JJ., concur in result in separate opinion filed Draper, J., dissents in separate opinion filed Teitelman, J., concurs in opinion of Draper, J. Teitelman, J., dissents in separate opinion filed.", - "docket_numbers": "SC95151", - "judges": "Judge Mary R. Russell", - "case_name_shorts": "" + "dispositions": "PETITION DENIED AND MOTION OVERRULED AS MOOT", + "docket_numbers": "SC100077", + "judges": "Wilson, C. J., Powell, Breckenridge, Fischer, and Ransom, JJ., concur Draper, J., dissents without opinion.", + "case_name_shorts": "", + "authors": "Judge Mary R. Russell" }, { - "case_dates": "2016-04-19", - "case_names": "Brittany Hunter v. Charles Moore, Sr.", - "download_urls": "/file.jsp?id=100014", + "case_dates": "2023-05-16", + "case_names": "State ex rel. Betty Grooms, Relator v. The Honorable Steven A. Privette", + "download_urls": "/file.jsp?id=195473", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED AS MODIFIED. All concur.", - "docket_numbers": "SC95083", - "judges": "Judge Mary R. Russell", - "case_name_shorts": "" + "dispositions": "PRELIMINARY WRIT MADE PERMANENT", + "docket_numbers": "SC99794", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge W. Brent Powell" }, { - "case_dates": "2016-04-05", - "case_names": "State ex rel. City of Grandview, Missouri, Relator v. The Honorable Jack R. Grate", - "download_urls": "/file.jsp?id=99373", + "case_dates": "2023-05-16", + "case_names": "John Lisle v. Meyer Electric Co., Inc.", + "download_urls": "/file.jsp?id=195474", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "WRIT MADE PERMANENT. All concur.", - "docket_numbers": "SC95283", - "judges": "Judge Zel M. Fischer", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99670", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge Patricia Breckenridge" }, { - "case_dates": "2016-04-05", - "case_names": "Richard D. Davis v. State of Missouri", - "download_urls": "/file.jsp?id=99376", + "case_dates": "2023-05-02", + "case_names": "State of Missouri v. Randy G. Teter", + "download_urls": "/file.jsp?id=195113", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. All concur.", - "docket_numbers": "SC94622", - "judges": "Judge George W. Draper III", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99464", + "judges": "Russell, Powell and Ransom, JJ., concur Breckenridge, J., concurs in separate opinion filed Wilson, C.J., and Draper, J., concur in separate opinion of Breckenridge., J.", + "case_name_shorts": "", + "authors": "Judge Zel M. Fischer" }, { - "case_dates": "2016-04-05", - "case_names": "Office Depot, Inc. v. Director of Revenue", - "download_urls": "/file.jsp?id=99375", + "case_dates": "2023-04-18", + "case_names": "Charter Communications Entertainment I, LLC v. Director of Revenue", + "download_urls": "/file.jsp?id=194613", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. All concur.", - "docket_numbers": "SC95029", - "judges": "Judge Laura Denvir Stith", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99517", + "judges": "Wilson, C.J., Powell, Fischer, Ransom and Draper, JJ., and Clark II, Sp.J., concur. Russell, J., not participating.", + "case_name_shorts": "", + "authors": "Judge Patricia Breckenridge" }, { - "case_dates": "2016-04-05", - "case_names": "Macon County Emergency Services Board v. Macon County Commission, Alan Wyatt, in his official capacity as a Macon County Commissioner, Drew Belt, in his official capacity as a Macon County Commissioner, and Jon Dwiggins, in his official capacity as a Macon County Commissioner", - "download_urls": "/file.jsp?id=99379", + "case_dates": "2023-04-04", + "case_names": "Liana MacColl (formerly known as Liana M. Bradford) v. Missouri State Highway Patrol and Boone County, Missouri, Sheriff", + "download_urls": "/file.jsp?id=194133", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. All concur.", - "docket_numbers": "SC95003", - "judges": "Judge Mary R. Russell", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "SC99656", + "judges": "Wilson, C.J., Russell and Breckenridge, JJ., concur Fischer, J., dissents in separate opinion filed Powell and Ransom, JJ., concur in opinion of Fischer, J.", + "case_name_shorts": "", + "authors": "Judge George W. Draper III" }, { - "case_dates": "2016-04-05", - "case_names": "Janet S. Delana, Individually, and as the Wife of Decedent Tex C. Delana v. CED Sales, Inc. d/b/a Odessa Gun & Pawn, Charles Doleshal, and Derrick Dady", - "download_urls": "/file.jsp?id=99377", + "case_dates": "2023-03-21", + "case_names": "Wesley Hatmon v. State of Missouri", + "download_urls": "/file.jsp?id=193496", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED IN PART REVERSED IN PART REMANDED. All concur.", - "docket_numbers": "SC95013", - "judges": "Judge Richard B. Teitelman", - "case_name_shorts": "" + "dispositions": "VACATED AND REMANDED", + "docket_numbers": "SC99591", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Chief Justice Paul C. Wilson" }, { - "case_dates": "2016-04-05", - "case_names": "In re: Joel B. Eisenstein", - "download_urls": "/file.jsp?id=99378", + "case_dates": "2023-03-21", + "case_names": "State of Missouri v. Jason Michael Hurst", + "download_urls": "/file.jsp?id=193499", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "DISCIPLINE IMPOSED. Breckenridge, C.J., Stith, Draper and Russell, JJ., concur Fischer, J., dissents in separate opinion filed Wilson, J., concurs in opinion of Fischer, J. Wilson, J., dissents in separate opinion filed Fischer, J., concurs in opinion of Wilson, J.", - "docket_numbers": "SC95331", - "judges": "Judge Richard B. Teitelman", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99799", + "judges": "Wilson, C.J., Breckenridge, Fischer, Ransom and Draper, JJ., concur Powell, J., concurs in separate opinion filed.", + "case_name_shorts": "", + "authors": "Judge Mary R. Russell" }, { - "case_dates": "2016-04-05", - "case_names": "IBM Corporation, Respondent/Cross-Appellant v. Director of Revenue, Appellant/Cross-Respondent.", - "download_urls": "/file.jsp?id=99374", + "case_dates": "2023-03-21", + "case_names": "State of Missouri v. Jacob Hilbert", + "download_urls": "/file.jsp?id=193501", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED. All concur.", - "docket_numbers": "SC94999", - "judges": "Judge Laura Denvir Stith", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99747", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge Robin Ransom" }, { - "case_dates": "2016-03-15", - "case_names": "State of Missouri v. S.F.", - "download_urls": "/file.jsp?id=98657", + "case_dates": "2023-03-21", + "case_names": "Kristine Hill and Dennis Hill, Relators v. The Honorable Stanley J. Wallach", + "download_urls": "/file.jsp?id=193497", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. All concur.", - "docket_numbers": "SC94923", - "judges": "Judge Mary R. Russell", - "case_name_shorts": "S.F." + "dispositions": "PRELIMINARY WRIT QUASHED", + "docket_numbers": "SC99650", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Chief Justice Paul C. Wilson" }, { - "case_dates": "2016-03-15", - "case_names": "State of Missouri v. Robert Blake Blurton", - "download_urls": "/file.jsp?id=98653", + "case_dates": "2023-03-21", + "case_names": "In the Interest of: L.N.G.S., Juvenile Juvenile Officer, and Missouri Department of Social Services, Children's Division v. A.S. and A.S.", + "download_urls": "/file.jsp?id=193498", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Russell, J., concurs Fischer, J., concurs in separate opinion filed Wilson, J., concurs in opinion of Fischer, J. Draper, J., concurs in result in separate opinion filed Stith and Teitelman, JJ., concur in opinion of Draper, J.", - "docket_numbers": "SC93648", - "judges": "Chief Justice Patricia Breckenridge", - "case_name_shorts": "" + "dispositions": "APPEAL DISMISSED", + "docket_numbers": "SC99786", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Chief Justice Paul C. Wilson" }, { - "case_dates": "2016-03-15", - "case_names": "State of Missouri v. Daniel D. Hartman", - "download_urls": "/file.jsp?id=98655", + "case_dates": "2023-03-21", + "case_names": "In re: Dan K. Purdy", + "download_urls": "/file.jsp?id=193502", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "VACATED AND REMANDED. Breckenridge, C.J., Stith, Teitelman and Russell, JJ., concur Wilson, J., dissents in separate opinion filed Fischer, J., concurs in opinion of Wilson, J.", - "docket_numbers": "SC95110", - "judges": "Judge George W. Draper III", - "case_name_shorts": "" + "dispositions": "SUSPENDED", + "docket_numbers": "SC99818", + "judges": "Russell, Breckenridge and Ransom, JJ., concur Fischer, J., dissents in separate opinion filed Wilson, C.J., and Powell, J., concur in opinion of Fischer, J.", + "case_name_shorts": "", + "authors": "Judge George W. Draper III" }, { - "case_dates": "2016-03-15", - "case_names": "State ex rel. Heart of America Council, Boy Scouts of America and Boy Scouts of America, Relators v. The Honorable Charles H. McKenzie", - "download_urls": "/file.jsp?id=98654", + "case_dates": "2023-03-21", + "case_names": "Glendale Shooting Club, Inc., A Missouri Non-Profit Corporation v. William K. Landolt and Jeri F. Landolt", + "download_urls": "/file.jsp?id=193511", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "PRELIMINARY WRIT MADE PERMANENT. All concur.", - "docket_numbers": "SC94942", - "judges": "Judge Laura Denvir Stith", - "case_name_shorts": "" + "dispositions": "VACATED AND REMANDED", + "docket_numbers": "SC99701", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge W. Brent Powell" }, { - "case_dates": "2016-03-15", - "case_names": "Harry Fischer v. Director of Revenue", - "download_urls": "/file.jsp?id=98656", + "case_dates": "2023-03-21", + "case_names": "Cedar County Commission v. Governor Michael Parson", + "download_urls": "/file.jsp?id=193495", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. All concur.", - "docket_numbers": "SC95055", - "judges": "Judge Paul C. Wilson", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99488", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Chief Justice Paul C. Wilson" }, { - "case_dates": "2016-03-01", - "case_names": "State of Missouri v. Luis Zetina-Torres", - "download_urls": "/file.jsp?id=98033", + "case_dates": "2023-03-07", + "case_names": "James J. Wilson, Respondents/Cross-Appellants v. City of St. Louis, and Adam Layne, Appellant/Cross-Respondent. City of St. Louis v. State of Missouri, Appellant/Cross-Respondent.", + "download_urls": "/file.jsp?id=193118", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. All concur.", - "docket_numbers": "SC95194", - "judges": "Judge George W. Draper III", - "case_name_shorts": "" + "dispositions": "AFFIRMED IN PART AND REVERSED IN PART", + "docket_numbers": "SC98907", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge Patricia Breckenridge" }, { - "case_dates": "2016-02-09", - "case_names": "William David Hill v. Oliver \"Glenn\" Boyer, Sheriff of Jefferson County, Missouri", - "download_urls": "/file.jsp?id=97239", + "case_dates": "2023-02-14", + "case_names": "State of Missouri v. Clinton M. Boyd", + "download_urls": "/file.jsp?id=192433", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. All concur.", - "docket_numbers": "SC95088", - "judges": "Judge Richard B. Teitelman", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99625", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge W. Brent Powell" }, { - "case_dates": "2016-02-09", - "case_names": "State of Missouri v. Raymond Robinson, (and) State of Missouri v. Steve Lomax", - "download_urls": "/file.jsp?id=97273", + "case_dates": "2023-02-14", + "case_names": "State ex rel. Andrew Bailey, Relator v. The Honorable Robin E. Fulton", + "download_urls": "/file.jsp?id=192434", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Breckenridge, C.J., Fischer, Wilson and Russell, JJ., concur Teitelman, J., dissents in separate opinion filed Draper, J., concurs in opinion of Teitelman, J.", - "docket_numbers": "SC94936, SC94989", - "judges": "Judge Laura Denvir Stith", - "case_name_shorts": "" + "dispositions": "PRELIMINARY WRIT MADE PERMANENT AS MODIFIED", + "docket_numbers": "SC99813", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge Patricia Breckenridge" }, { - "case_dates": "2016-02-09", - "case_names": "State of Missouri v. Pierre Clay", - "download_urls": "/file.jsp?id=97237", + "case_dates": "2023-01-31", + "case_names": "Lillian Singleton v. Sheila Singleton", + "download_urls": "/file.jsp?id=192036", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Breckenridge, C.J., Fischer, Wilson and Russell, JJ., concur Teitelman, J., dissents in separate opinion filed Draper, J., concurs in opinion of Teitelman, J.", - "docket_numbers": "SC94954", - "judges": "Judge Laura Denvir Stith", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "SC99592", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge George W. Draper III" }, { - "case_dates": "2016-02-09", - "case_names": "State of Missouri v. Claude Chambers", - "download_urls": "/file.jsp?id=97241", + "case_dates": "2023-01-31", + "case_names": "In re: Philip E. Prewitt", + "download_urls": "/file.jsp?id=192035", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Stith, Draper and Teitelman, JJ., concur Breckenridge, C.J., concurs in separate opinion filed Fischer, J., concurs in result in separate opinion filed Breckenridge, C.J., and Wilson, J., concur in opinion of Fischer, J.", - "docket_numbers": "SC95094", - "judges": "Judge Mary R. Russell", - "case_name_shorts": "" + "dispositions": "SUSPENDED", + "docket_numbers": "SC99627", + "judges": "All concur.", + "case_name_shorts": "", + "authors": "Judge Robin Ransom" }, { - "case_dates": "2016-02-09", - "case_names": "State of Missouri v. Blaec James Lammers", - "download_urls": "/file.jsp?id=97240", + "case_dates": "2023-01-31", + "case_names": "Christopher Zang v. City of St. Charles, Missouri", + "download_urls": "/file.jsp?id=192034", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Breckenridge, C.J., Fischer, Stith, Draper and Wilson, JJ., concur Teitelman, J., dissents in separate opinion filed.", - "docket_numbers": "SC94977", - "judges": "Judge Mary R. Russell", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99419", + "judges": "Wilson, C.J., Russell, Powell, Breckenridge and Draper, JJ., concur Fischer, J., concurs in result.", + "case_name_shorts": "", + "authors": "Judge Robin Ransom" }, { - "case_dates": "2016-01-26", - "case_names": "State of Missouri v. Justin Floyd Eugene Jones", - "download_urls": "/file.jsp?id=96556", + "case_dates": "2023-01-31", + "case_names": "Brock Smith v. St. Louis County Police, and Gary Nelson Ford v. Col. Jon Belmar, Chief of Police as Chief Law Enforcement Officer of St. Louis County, Pursuant to County Charter, and Missouri State Highway Patrol, and Jim Buckles, Sheriff of St. Louis County as \"Chief Law Enforcement Official\" as Defined by RSMo 589.404(3)", + "download_urls": "/file.jsp?id=192033", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Breckenridge, C.J., Fischer, Stith and Russell, JJ., concur Draper, J., concurs in part and dissents in part in separate opinion filed Teitelman, J., concurs in opinion of Draper, J.", - "docket_numbers": "SC94924", - "judges": "Judge Paul C. Wilson", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99715_and_SC99714", + "judges": "Wilson, C.J., Russell, Powell and Ransom, JJ., concur Breckenridge, J., dissents in separate opinion filed Draper, J., concurs in opinion of Breckenridge, J.", + "case_name_shorts": "", + "authors": "Judge Zel M. Fischer" }, { - "case_dates": "2016-01-26", - "case_names": "State of Missouri v. Jerri Smiley", - "download_urls": "/file.jsp?id=96555", + "case_dates": "2023-01-10", + "case_names": "Thomas Dubuc v. Treasurer of the State of Missouri Custodian of the Second Injury Fund", + "download_urls": "/file.jsp?id=191588", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "APPEAL DISMISSED. All concur.", - "docket_numbers": "SC94745", - "judges": "Judge Paul C. Wilson", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99605", + "judges": "Wilson, C.J., Powell, Fischer and Ransom, JJ., concur Breckenridge, J., concurs in part and dissents in part in separate opinion filed Draper, J., concurs in opinion of Breckenridge, J.", + "case_name_shorts": "", + "authors": "Judge Mary R. Russell" }, { - "case_dates": "2016-01-26", - "case_names": "State of Missouri v. Chadwick Leland Walter", - "download_urls": "/file.jsp?id=96553", + "case_dates": "2023-01-10", + "case_names": "M.O. v. GEICO General Insurance Company and Government Employees Insurance Company", + "download_urls": "/file.jsp?id=191589", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "VACATED AND REMANDED. Breckenridge, C.J., Stith and Teitelman, JJ., concur Wilson, J., dissents in separate opinion filed Russell, J., dissents in separate opinion filed Fischer, J., concurs in opinion of Russell, J.", - "docket_numbers": "SC94658", - "judges": "Judge George W. Draper III", - "case_name_shorts": "" + "dispositions": "VACATED AND REMANDED", + "docket_numbers": "SC99732", + "judges": "All concur.", + "case_name_shorts": "M.O.", + "authors": "Judge Zel M. Fischer" }, { - "case_dates": "2016-01-26", - "case_names": "In re: Sanford P. Krigel", - "download_urls": "/file.jsp?id=96554", + "case_dates": "2023-01-10", + "case_names": "James Swafford v. Treasurer of Missouri as Custodian of Second Injury Fund", + "download_urls": "/file.jsp?id=191587", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "DISCIPLINE IMPOSED. Stith and Russell, JJ., concur Breckenridge, C.J., concurs in part and dissents in part in separate opinion filed Fischer, J., dissents in separate opinion filed Wilson and Teitelman, JJ., concur in opinion of Fischer, J.", - "docket_numbers": "SC95098", - "judges": "Judge George W. Draper III", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99563", + "judges": "Wilson, C.J., Powell, Fischer and Ransom, JJ., concur Breckenridge, J., dissents in separate opinion filed Draper, J., concurs in opinion of Breckenridge, J.", + "case_name_shorts": "", + "authors": "Judge Mary R. Russell" }, { - "case_dates": "2016-01-12", - "case_names": "The Metropolitan St. Louis Sewer District v. The City of Bellefontaine Neighbors, Sherrell Construction, Inc.", - "download_urls": "/file.jsp?id=95896", + "case_dates": "2023-01-10", + "case_names": "Gary M. Weibrecht v. Treasurer of Missouri as Custodian of Second Injury Fund", + "download_urls": "/file.jsp?id=191586", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Breckenridge, C.J., Draper, Wilson, Teitelman and Russell, JJ., concur Fischer, J., concurs in separate opinion filed.", - "docket_numbers": "SC94831", - "judges": "Judge Laura Denvir Stith", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-12", - "case_names": "State of Missouri v. Derrick L. Carrawell", - "download_urls": "/file.jsp?id=95893", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Stith and Draper, JJ., concur Wilson, J., concurs in separate opinion filed Breckenridge, C.J., and Russell, J., concur in opinion of Wilson, J. Teitelman, J., concurs in part and dissents in part in separate opinion filed.", - "docket_numbers": "SC94927", - "judges": "Judge Zel M. Fischer", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-12", - "case_names": "Miss Dianna's School of Dance, Inc. v. Director of Revenue", - "download_urls": "/file.jsp?id=95894", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Breckenridge, C.J., Wilson and Russell, JJ., concur Draper, J., dissents in separate opinion filed Stith and Teitelman, JJ., concur in opinion of Draper, J.", - "docket_numbers": "SC95102", - "judges": "Judge Zel M. Fischer", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-12", - "case_names": "Lashiya D. Ellis v. JF Enterprises, LLC d/b/a Jeremy Franklin's Suzuki of Kansas City, Condor Capital Corp.", - "download_urls": "/file.jsp?id=95898", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "VACATED AND REMANDED. Breckenridge, C.J., Fischer and Russell, JJ., concur Teitelman, J., dissents in separate opinion filed Stith and Draper, JJ., concur in opinion of Teitelman, J.", - "docket_numbers": "SC95066", - "judges": "Judge Paul C. Wilson", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-12", - "case_names": "Kristin Nicole Stiers v. Director of Revenue", - "download_urls": "/file.jsp?id=95897", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Fischer, Draper and Teitelman, JJ., concur Wilson, J., dissents in separate opinion filed Breckenridge, C.J., and Russell, J., concur in opinion of Wilson, J.", - "docket_numbers": "SC94840", - "judges": "Judge Laura Denvir Stith", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-12", - "case_names": "City of DeSoto, a Political Subdivision of the State of Missouri, and James Acres v. Jeremiah W. Nixon, Governor of the State of Missouri, and Chris Koster, Attorney General of the State of Missouri", - "download_urls": "/file.jsp?id=95895", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "dispositions": "REVERSED AND JUDGMENT ENTERED IN FAVOR OF APPELLANTS. All concur.", - "docket_numbers": "SC94746", - "judges": "Judge Laura Denvir Stith", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "SC99493", + "judges": "Wilson, C.J., Powell, Fischer, Ransom and Draper, JJ., concur Breckenridge, J., dissents in separate opinion filed.", + "case_name_shorts": "", + "authors": "Judge Mary R. Russell" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/mo_example.html b/tests/examples/opinions/united_states/mo_example.html index c7381affc..5374b57db 100644 --- a/tests/examples/opinions/united_states/mo_example.html +++ b/tests/examples/opinions/united_states/mo_example.html @@ -1,47 +1,57 @@ - - - - - - - + Opinions - - - - - - - - - + + - - - - - - - - - - - + +.modal { + display: none; /* Hide the modal by default */ + position: fixed; + z-index: 1; + left: 0; + top: 0; + width: 100%; + height: 100%; + overflow: auto; + background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */ + } + .modal-content { + background-color: #fefefe; + margin: 15% auto; + padding: 20px; + border: 1px solid #888; + width: 80%; + } + .close { + color: #aaa; + float: right; + font-size: 28px; + font-weight: bold; + cursor: pointer; + } -
    + - -
    -
    -
    -

    Step 2. Search Opinions ...

    -
    - -
    - - -      - Need Help?
    +
    -
    -
    +
    +
    + Click on a date below to view opinions. +
    +
    -

    ... OR View By Date

    -
    - - - - - - - - - - -
    Year of Opinion:  - +
    +
    +
    10/03/2023
    + +
    - - +
    +
    + SC99977:  Overview/Summary
    + State v. Harris
    Author:   Judge Zel M. Fischer +
    Vote:  APPEAL DISMISSED. Russell, C.J., Powell, Breckenridge, Ransom, and Wilson, JJ., and Hardin-Tammons, Sp.J., concur. Broniec, J., not participating. +
    +
    - - - - - - - - - - - - - - - - - - - -
    - Show all Opinions for Year   - Hide all Opinions -
    - Click on a date below to view opinions. -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - -
    - SC95465: Overview/Summary
    - Kyle Sanford, Respondent, vs. CenturyTel of Missouri, LLC d/b/a CenturyLink, Appellant.
    - Author:  Judge Laura Denvir Stith  Vote:  APPEAL DISMISSED. All concur. -
      -
    - - - - -
    - SC95444: Overview/Summary
    - State of Missouri ex rel. Attorney General Chris Koster and the Missouri Petroleum Storage Tank Insurance Fund Board of Directors, Respondents, vs. ConocoPhillips Company and Phillips 66 Company, Respondents, and Cory Wagoner, Appellant.
    - Author:  Judge Paul C. Wilson  Vote:  AFFIRMED. Breckenridge, C.J., Fischer, Stith, Draper and Teitelman, JJ., and Dolan, Sp.J., concur. Russell, J., not participating. -
      -
    - - - - -
    - SC95307: Overview/Summary
    - Rachal Laut, f/k/a Rachal Govro, and John M. Soellner, Appellants, vs. City of Arnold, Respondent.
    - Author:  Judge Laura Denvir Stith  Vote:  AFFIRMED. Breckenridge, C.J., Draper, Teitelman and Russell, JJ., concur; Fischer, J., dissents in separate opinion filed; Wilson, J., dissents in separate opinion filed. -
      -
    - - - - -
    - SC95255: Overview/Summary
    - Missouri Real Estate Appraisers Commission, Respondent, vs. Mark A. Funk, Appellant.
    - Author:  Judge Laura Denvir Stith  Vote:  AFFIRMED. Breckenridge, C.J., Fischer, Draper, Wilson and Russell, JJ., concur; Teitelman, J., concurs in part in separate opinion filed. -
      -
    - - - - -
    - SC95214: Overview/Summary
    - Tanisha Ross-Paige, Respondent, vs. Saint Louis Metropolitan Police Department Steven A. Gori, Michael A. Deeba, Sr., Saint Louis Board of Police Commissioners, Richard H. Gray, Bettye Battle Turner, Thomas J. Irwin, and Francis G. Slay, Appellants.
    - Author:  Judge George W. Draper III  Vote:  REVERSED AND REMANDED. All concur. -
      -
    - - - - -
    - SC95170: Overview/Summary
    - Ronald Malam, Appellant, vs. State of Missouri, Department of Corrections, Respondent.
    - Author:  Judge Richard B. Teitelman  Vote:  REVERSED AND REMANDED. Breckenridge, C.J., Stith and Draper, JJ., concur; Russell, J., dissents in separate opinion filed; Fischer and Wilson, JJ., concur in opinion of Russell, J. -
      -
    - - - - -
    - SC95064: Overview/Summary
    - Avery Contracting, LLC, Appellant, vs. Richard Niehaus, Lisa J. Niehaus, Alicia Niehaus, Creekstone Homeowners Association, and Missouri Highways and Transportation Commission, Respondents.
    - Author:  Judge Richard B. Teitelman  Vote:  AFFIRMED. All concur. -
      -
    - - - - -
    - SC94959: Overview/Summary
    - State of Missouri, Respondent vs. Adriano Raphael Clark, Sr., Appellant.
    - Author:  Chief Justice Patricia Breckenridge  Vote:  REVERSED AND REMANDED. Stith, Draper and Teitelman, JJ., concur; Wilson, J., concurs in result in separate opinion filed; Fischer and Russell, JJ., concur in opinion of Wilson, J. -
      -
    @@ -579,11 +469,30 @@

    ... OR View By Date

    + + + +
    + +
    + +
    +
    +
    08/29/2023
    + +
    +
    +
    + SC99949:  Overview/Summary
    + State ex rel. Steven Wishom, Relator, vs. The Honorable Paula P. Bryant, Respondent.
    Author:   Judge W. Brent Powell +
    Vote:  PRELIMINARY WRIT MADE PERMANENT. Russell, C.J., Powell, Breckenridge, Fischer, Ransom and Wilson, JJ., concur. Draper, J., not participating. +
    +
    @@ -619,13 +528,7 @@

    ... OR View By Date

    -
    - - @@ -644,29 +547,9 @@

    ... OR View By Date

    - - - - -
    - SC94442: Overview/Summary
    - Curt Peters and Cheri Peters, Appellants, vs. Wady Industries, Inc., Defendant, and Patrick Terrio, Respondent.
    - Author:  Chief Justice Patricia Breckenridge  Vote:  AFFIRMED. Stith, Draper and Russell, JJ., concur; Fischer, J., concurs in result in separate opinion filed; Wilson, J., concurs in result in separate opinion filed; Teitelman, J., dissents in separate opinion filed. -
      -
    - - - - -
    - SC94393: Overview/Summary
    - Paige Parr, a minor, by and through her Conservator, Janett Waid, Jerimy Morehead, and Charles Parr, Appellants, vs. Charles Breeden, Wendy Cogdill, and Melanie Buttry, Respondents.
    - Author:  Chief Justice Patricia Breckenridge  Vote:  AFFIRMED. Stith, Draper and Russell, JJ., concur; Fischer, J., concurs in result in separate opinion filed; Wilson, J., concurs in result in separate opinion filed; Teitelman, J., dissents in separate opinion filed.tuu -
      -
    @@ -698,22 +581,64 @@

    ... OR View By Date

    + + + +
    + +
    + +
    +
    +
    08/15/2023
    + +
    +
    +
    + SC99978:  Overview/Summary
    + In the Matter of the Joint Application of Missouri-American Water Company and DCM Land, LLC, for a Variance from the Company's Tariff Provisions Regarding the Extension of Company Mains, Respondents, vs. Office of Public Counsel, Appellant.
    Author:   Judge Zel M. Fischer +
    Vote:  REVERSED AND REMANDED. Russell, C.J., Powell, Breckenridge, Ransom and Wilson, JJ., concur. Draper, J., not participating. +
    +
    +
    +
    + SC99942:  Overview/Summary
    + State ex rel. Monsanto Company, Relator, vs. The Honorable Michael Mullen, Respondent.
    Author:   Judge W. Brent Powell +
    Vote:  PRELIMINARY WRIT MADE PERMANENT. Russell, C.J., Breckenridge, Fischer, Ransom and Wilson, JJ., concur; Draper, J., dissents in part and concurs in part in separate opinion filed. +
    +
    + +
    +
    + SC99719_and_SC99823:  Overview/Summary
    + State of Missouri, Respondent, vs. Caitlyn Cordell Williams, Appellant. +and +State of Missouri, Respondent, vs. Tamarae Lynn LaRue, Appellant.
    Author:   Judge Robin Ransom +
    Vote:  AFFIRMED. Russell, C.J., Powell, Breckenridge, Fischer and Wilson, JJ., concur. Draper, J., not participating. +
    +
    @@ -749,13 +674,7 @@

    ... OR View By Date

    -
    - - @@ -778,42 +697,12 @@

    ... OR View By Date

    - - - - -
    - SC95337: Overview/Summary
    - Missouri Municipal League, City of Springfield, and Richard Sheets, Appellants vs. State of Missouri, Respondent.
    - Author:  Judge Zel M. Fischer  Vote:  AFFIRMED. Breckenridge, C.J., Stith, Draper, Wilson and Russell, JJ., concur; Teitelman, J., dissents in part and concurs in part in separate opinion filed. -
      -
    - - - - -
    - SC95301: Overview/Summary
    - State ex rel. Ryan W. Amorine, Relator vs. The Honorable Kelly Wayne Parker, Respondent.
    - Author:  Judge George W. Draper III  Vote:  PRELIMINARY WRIT MADE PERMANENT. All concur. -
      -
    - - - - -
    - SC95271: Overview/Summary
    - Peggy Stevens McGraw and Samuel C. Jones, on behalf of themselves and all others similarly situated, Appellants vs. State of Missouri, Missouri State Employees' Retirement System, Missouri Commissioner of Administration Doug Nelson, and Missouri State Treasurer Clint Zweifel, Respondents.
    - Author:  Per Curiam  Vote:  AFFIRMED. All concur. -
      -
    @@ -830,7 +719,19 @@

    ... OR View By Date

    + + + +
    + +
    + +
    +
    +
    07/20/2023
    + +
    @@ -845,12 +746,33 @@

    ... OR View By Date

    +
    +
    + SC99928:  Overview/Summary
    + Christina Forester, Appellant, vs. Crystal May, Respondent.
    Author:   Judge Patricia Breckenridge +
    Vote:  AFFIRMED. All concur. +
    +
    + +
    +
    + SC100132:  Overview/Summary
    + State of Missouri ex rel. Dr. Anna Fitz-James, Respondent, vs. Andrew Bailey, In His Official Capacity, Appellant, and Scott Fitzpatrick, et al., Respondent.
    Author:   Judge Paul C. Wilson +
    Vote:  AFFIRMED. Russell, C.J., Powell, Breckenridge, Fischer and Ransom, JJ., concur; Draper, J., not participating. +
    +
    @@ -890,13 +812,7 @@

    ... OR View By Date

    -
    - - @@ -925,23 +841,25 @@

    ... OR View By Date

    - - - - -
    - SC95678: Overview/Summary
    - Joshua Peters, Respondent, The Missouri Attorney General, Intervenor/Respondent, vs. Rachel M. Johns, Appellant.
    - Author:  Judge Mary R. Russell  Vote:  AFFIRMED. Fischer, Draper and Wilson, JJ., concur; Stith, J., dissents in separate opinion filed; Breckenridge, C.J., and Teitelman, J., concur in opinion of Stith, J. -
      -
    + + + +
    + +
    + +
    +
    +
    06/27/2023
    + +
    @@ -962,15 +880,43 @@

    ... OR View By Date

    +
    +
    + SC99886:  Overview/Summary
    + State of Missouri, Appellant, vs. Nicholas A. Barton, Respondent.
    Author:   Chief Justice Paul C. Wilson +
    Vote:  VACATED AND REMANDED. All concur. +
    +
    +
    +
    + SC99816:  Overview/Summary
    + Jenette Konopasek, Appellant, vs. Douglas and Laura Konopasek, Respondents.
    Author:   Judge Patricia Breckenridge +
    Vote:  REVERSED AND REMANDED. All concur. +
    +
    +
    +
    + SC99700:  Overview/Summary
    + Susan F. Bridegan, Appellant, vs. Gary L. Turntine, Respondent.
    Author:   Chief Justice Paul C. Wilson +
    Vote:  AFFIRMED. Russell, Powell, Breckenridge, Fischer and Ransom, JJ., concur; Draper, J., dissents without opinion. +
    +
    +
    +
    + SC99658:  Overview/Summary
    + State of Missouri, Respondent, vs. Lindsay Michelle Forbes, Appellant.
    Author:   Judge Zel M. Fischer +
    Vote:  DISMISSED AND REMANDED. All concur. +
    +
    @@ -1009,13 +955,7 @@

    ... OR View By Date

    -
    - - @@ -1043,71 +983,33 @@

    ... OR View By Date

    + + + +
    + +
    + +
    +
    +
    06/13/2023
    + +
    - - - - -
    - SC95205: Overview/Summary
    - Bartlett International, Inc., and Bartlett Grain Co., L.P., Respondents vs. Director of Revenue, Appellant.
    - Author:  Judge Mary R. Russell  Vote:  REVERSED AND REMANDED. All concur. -
      -
    - - - - -
    - SC95181: Overview/Summary
    - Krispy Kreme Doughnut Corporation, Appellant vs. Director of Revenue, Respondent.
    - Author:  Judge Zel M. Fischer  Vote:  AFFIRMED. All concur. -
      -
    - - - - -
    - SC95139: Overview/Summary
    - Walter Barton, Appellant vs. State of Missouri, Respondent.
    - Author:  Judge Laura Denvir Stith  Vote:  AFFIRMED. All concur. -
      -
    - - - - -
    - SC95079: Overview/Summary
    - Edward L. Hoeber, Appellant vs. State of Missouri, Respondent.
    - Author:  Chief Justice Patricia Breckenridge  Vote:  REVERSED AND REMANDED. Stith, Draper, Teitelman and Russell, JJ., concur; Fischer, J., dissents in separate opinion filed; Wilson, J., concurs in opinion of Fischer, J. -
      -
    - - - - -
    - SC93134: Overview/Summary
    - Jodie Nevils, Appellant vs. Group Health Plan, Inc. and ACS Recovery Services, Inc., Respondents.
    - Author:  Judge Richard B. Teitelman  Vote:  REVERSED AND REMANDED. Fischer, Stith, Draper and Russell, JJ., concur; Wilson, J., concurs in result in separate opinion filed; Breckenridge, C.J., Fischer, Stith, Draper and Russell, JJ., concur in opinion of Wilson, J. -
      -
    @@ -1122,24 +1024,73 @@

    ... OR View By Date

    +
    +
    + SC99913:  Overview/Summary
    + State of Missouri, Respondent, vs. Jarrad Ryan Vandergrift, Appellant.
    Author:   Judge Zel M. Fischer +
    Vote:  AFFIRMED. All concur. +
    +
    +
    +
    + SC99896:  Overview/Summary
    + In the Interest of: P.D.E., Appellant, vs. Juvenile Officer, Respondent.
    Author:   Judge Robin Ransom +
    Vote:  APPEAL DISMISSED. Wilson, C.J., Russell, Powell, Fischer and Draper, JJ., concur; Breckenridge, J., dissents in separate opinion filed. +
    +
    +
    +
    + SC99871:  Overview/Summary
    + State of Missouri, Respondent, vs. Sylvester Onyejiaka, Jr., Appellant.
    Author:   Judge Robin Ransom +
    Vote:  AFFIRMED. All concur. +
    +
    +
    +
    + SC99655:  Overview/Summary
    + David Prior Wilmoth, Appellant, vs. Director of Revenue, Respondent.
    Author:   Judge Patricia Breckenridge +
    Vote:  AFFIRMED. Wilson, C.J., Russell, Powell, Ransom and Draper, JJ., and Growcock, Sp.J., concur. Fischer, J., not participating. +
    +
    +
    +
    + SC99567:  Overview/Summary
    + Patriots Bank, Respondent, vs. Black River Motel, LLC, et al., Appellants.
    Author:   Judge Mary R. Russell +
    Vote:  AFFIRMED. All concur. +
    +
    +
    +
    + SC99554:  Overview/Summary
    + State of Missouri, Respondent, vs. John A. Hamby, Appellant.
    Author:   Judge W. Brent Powell +
    Vote:  AFFIRMED. Wilson, C.J., Russell, Fischer and Ransom, JJ., concur; Breckenridge, J., dissents in separate opinion filed; Draper, J., concurs in opinion of Breckenridge, J. +
    +
    +
    +
    + SC99092:  Overview/Summary
    + Conservation Commission and Missouri Department of Conservation, Respondents, vs. Andrew Bailey, in his Official Capacity as Attorney General of Missouri, and Ken Zellers, in his Official Capacity as Commissioner of the Office of Administration, Appellants.
    Author:   Per Curiam +
    Vote:  AFFIRMED. Wilson, C.J., Russell, Ransom and Draper, JJ., concur; Breckenridge, J., dissents in separate opinion filed; Powell and Fischer, JJ., concur in opinion of Breckenridge, J. +
    +
    @@ -1172,13 +1123,7 @@

    ... OR View By Date

    -
    - - @@ -1198,7 +1143,19 @@

    ... OR View By Date

    + + + +
    + +
    + +
    +
    +
    06/08/2023
    + +
    @@ -1219,42 +1176,12 @@

    ... OR View By Date

    - - - - -
    - SC95151: Overview/Summary
    - Jason D. Dodson and Jason D. Dodson, Jr., a Minor, and Eva Raine Dodson-Lohse, a Minor, and August William Davis Dodson, a Minor, said Minors appearing by the duly appointed Next Friend Jason D. Dodson, Respondent/Cross-Appellant vs. Robert P. Ferrara, M.D., and Mercy Clinic Heart and Vascular, LLC, Appellants/Cross-Respondents.
    - Author:  Judge Mary R. Russell  Vote:  AFFIRMED. Breckenridge, C.J., and Stith, J., concur; Fischer and Wilson, JJ., concur in result in separate opinion filed; Draper, J., dissents in separate opinion filed; Teitelman, J., concurs in opinion of Draper, J.; Teitelman, J., dissents in separate opinion filed. -
      -
    - - - - -
    - SC95083: Overview/Summary
    - Brittany Hunter, Respondent vs. Charles Moore, Sr., Appellant.
    - Author:  Judge Mary R. Russell  Vote:  AFFIRMED AS MODIFIED. All concur. -
      -
    - - - - -
    - SC94844: Overview/Summary
    - Ruth Mickels, et al., Appellants vs. Raman Danrad, M.D., Respondent.
    - Author:  Judge Paul C. Wilson  Vote:  VACATED AND REMANDED. Breckenridge, C.J., Fischer and Russell, JJ., concur; Teitelman, J., dissents in separate opinion filed; Stith and Draper, JJ., concur in opinion of Teitelman, J. -
      -
    @@ -1271,6 +1198,13 @@

    ... OR View By Date

    +
    +
    + SC100077:  Overview/Summary
    + State ex rel. Johnny A. Johnson, Petitioner, vs. David Vandergriff, Respondent
    Author:   Judge Mary R. Russell +
    Vote:  PETITION DENIED AND MOTION OVERRULED AS MOOT. Wilson, C. J., Powell, Breckenridge, Fischer, and Ransom, JJ., concur; Draper, J., dissents without opinion. +
    +
    @@ -1313,13 +1247,7 @@

    ... OR View By Date

    -
    - - @@ -1327,7 +1255,19 @@

    ... OR View By Date

    + + + +
    + +
    + +
    +
    +
    05/16/2023
    + +
    @@ -1366,94 +1306,38 @@

    ... OR View By Date

    - - - - -
    - SC95331: Overview/Summary
    - In re: Joel B. Eisenstein, Respondent.
    - Author:  Judge Richard B. Teitelman  Vote:  DISCIPLINE IMPOSED. Breckenridge, C.J., Stith, Draper and Russell, JJ., concur; Fischer, J., dissents in separate opinion filed; Wilson, J., concurs in opinion of Fischer, J.; Wilson, J., dissents in separate opinion filed; Fischer, J., concurs in opinion of Wilson, J. -
      -
    - - - - -
    - SC95283: Overview/Summary
    - State ex rel. City of Grandview, Missouri, Relator vs. The Honorable Jack R. Grate, Respondent.
    - Author:  Judge Zel M. Fischer  Vote:  WRIT MADE PERMANENT. All concur. -
      -
    - - - - -
    - SC95029: Overview/Summary
    - Office Depot, Inc., Respondent vs. Director of Revenue, Appellant.
    - Author:  Judge Laura Denvir Stith  Vote:  AFFIRMED. All concur. -
      -
    +
    +
    + SC99794:  Overview/Summary
    + State ex rel. Betty Grooms, Relator, vs. The Honorable Steven A. Privette, Respondent.
    Author:   Judge W. Brent Powell +
    Vote:  PRELIMINARY WRIT MADE PERMANENT. All concur. +
    +
    - - - - -
    - SC95013: Overview/Summary
    - Janet S. Delana, Individually, and as the Wife of Decedent Tex C. Delana, Appellant vs. CED Sales, Inc. d/b/a Odessa Gun & Pawn, Charles Doleshal, and Derrick Dady, Respondents.
    - Author:  Judge Richard B. Teitelman  Vote:  AFFIRMED IN PART; REVERSED IN PART; REMANDED. All concur. -
      -
    +
    +
    + SC99670:  Overview/Summary
    + John Lisle, Appellant, vs. Meyer Electric Co., Inc., Respondent.
    Author:   Judge Patricia Breckenridge +
    Vote:  AFFIRMED. All concur. +
    +
    - - - - -
    - SC95003: Overview/Summary
    - Macon County Emergency Services Board, Appellant vs. Macon County Commission, Alan Wyatt, in his official capacity as a Macon County Commissioner, Drew Belt, in his official capacity as a Macon County Commissioner, and Jon Dwiggins, in his official capacity as a Macon County Commissioner, Respondents.
    - Author:  Judge Mary R. Russell  Vote:  AFFIRMED. All concur. -
      -
    - - - - -
    - SC94999: Overview/Summary
    - IBM Corporation, Respondent/Cross-Appellant vs. Director of Revenue, Appellant/Cross-Respondent.
    - Author:  Judge Laura Denvir Stith  Vote:  REVERSED. All concur. -
      -
    - - - - -
    - SC94622: Overview/Summary
    - Richard D. Davis, Appellant vs. State of Missouri, Respondent.
    - Author:  Judge George W. Draper III  Vote:  AFFIRMED. All concur. -
      -
    @@ -1491,20 +1375,26 @@

    ... OR View By Date

    +
    +
    +
    +
    +
    +
    + +
    +
    +
    05/02/2023
    + +
    -
    - - @@ -1546,6 +1436,13 @@

    ... OR View By Date

    +
    +
    + SC99464:  Overview/Summary
    + State of Missouri, Respondent, vs. Randy G. Teter, Appellant.
    Author:   Judge Zel M. Fischer +
    Vote:  AFFIRMED. Russell, Powell and Ransom, JJ., concur; Breckenridge, J., concurs in separate opinion filed; Wilson, C.J., and Draper, J., concur in separate opinion of Breckenridge., J. +
    +
    @@ -1565,68 +1462,18 @@

    ... OR View By Date

    - - - - -
    - SC95110: Overview/Summary
    - State of Missouri, Respondent vs. Daniel D. Hartman, Appellant.
    - Author:  Judge George W. Draper III  Vote:  VACATED AND REMANDED. Breckenridge, C.J., Stith, Teitelman and Russell, JJ., concur; Wilson, J., dissents in separate opinion filed; Fischer, J., concurs in opinion of Wilson, J. -
      -
    - - - - -
    - SC95055: Overview/Summary
    - Harry Fischer, Appellant vs. Director of Revenue, Respondent.
    - Author:  Judge Paul C. Wilson  Vote:  AFFIRMED. All concur. -
      -
    - - - - -
    - SC94942: Overview/Summary
    - State ex rel. Heart of America Council, Boy Scouts of America and Boy Scouts of America, Relators vs. The Honorable Charles H. McKenzie, Respondent.
    - Author:  Judge Laura Denvir Stith  Vote:  PRELIMINARY WRIT MADE PERMANENT. All concur. -
      -
    - - - - -
    - SC94923: Overview/Summary
    - State of Missouri, Respondent vs. S.F., Appellant.
    - Author:  Judge Mary R. Russell  Vote:  AFFIRMED. All concur. -
      -
    - - - - -
    - SC93648: Overview/Summary
    - State of Missouri, Respondent vs. Robert Blake Blurton, Appellant.
    - Author:  Chief Justice Patricia Breckenridge  Vote:  AFFIRMED. Russell, J., concurs; Fischer, J., concurs in separate opinion filed; Wilson, J., concurs in opinion of Fischer, J.; Draper, J., concurs in result in separate opinion filed; Stith and Teitelman, JJ., concur in opinion of Draper, J. -
      -
    @@ -1640,7 +1487,19 @@

    ... OR View By Date

    + + + +
    + +
    + +
    +
    +
    04/18/2023
    + +
    @@ -1661,13 +1520,7 @@

    ... OR View By Date

    -
    - - @@ -1697,6 +1550,13 @@

    ... OR View By Date

    +
    +
    + SC99517:  Overview/Summary
    + Charter Communications Entertainment I, LLC, Respondent, vs. Director of Revenue, Appellant.
    Author:   Judge Patricia Breckenridge +
    Vote:  AFFIRMED. Wilson, C.J., Powell, Fischer, Ransom and Draper, JJ., and Clark II, Sp.J., concur. Russell, J., not participating. +
    +
    @@ -1738,18 +1598,20 @@

    ... OR View By Date

    - - - - -
    - SC95194: Overview/Summary
    - State of Missouri, Respondent vs. Luis Zetina-Torres, Appellant.
    - Author:  Judge George W. Draper III  Vote:  AFFIRMED. All concur. -
      -
    + + + +
    + +
    + +
    +
    +
    04/04/2023
    + +
    @@ -1780,13 +1642,7 @@

    ... OR View By Date

    -
    - - @@ -1808,6 +1664,13 @@

    ... OR View By Date

    +
    +
    + SC99656:  Overview/Summary
    + Liana MacColl (formerly known as Liana M. Bradford), Appellant, vs. Missouri State Highway Patrol and Boone County, Missouri, Sheriff, Respondents.
    Author:   Judge George W. Draper III +
    Vote:  REVERSED AND REMANDED. Wilson, C.J., Russell and Breckenridge, JJ., concur; Fischer, J., dissents in separate opinion filed; Powell and Ransom, JJ., concur in opinion of Fischer, J. +
    +
    @@ -1848,7 +1711,19 @@

    ... OR View By Date

    + + + +
    + +
    + +
    +
    +
    03/21/2023
    + +
    @@ -1859,70 +1734,18 @@

    ... OR View By Date

    - - - - -
    - SC95094: Overview/Summary
    - State of Missouri, Respondent vs. Claude Chambers, Appellant.
    - Author:  Judge Mary R. Russell  Vote:  AFFIRMED. Stith, Draper and Teitelman, JJ., concur; Breckenridge, C.J., concurs in separate opinion filed; Fischer, J., concurs in result in separate opinion filed; Breckenridge, C.J., and Wilson, J., concur in opinion of Fischer, J. -
      -
    - - - - -
    - SC95088: Overview/Summary
    - William David Hill, Appellant, vs. Oliver "Glenn" Boyer, Sheriff of Jefferson County, Missouri, Respondent.
    - Author:  Judge Richard B. Teitelman  Vote:  AFFIRMED. All concur. -
      -
    - - - - -
    - SC94977: Overview/Summary
    - State of Missouri, Respondent, vs. Blaec James Lammers, Appellant.
    - Author:  Judge Mary R. Russell  Vote:  AFFIRMED. Breckenridge, C.J., Fischer, Stith, Draper and Wilson, JJ., concur; Teitelman, J., dissents in separate opinion filed. -
      -
    - - - - -
    - SC94954: Overview/Summary
    - State of Missouri, Appellant vs. Pierre Clay, Respondent.
    - Author:  Judge Laura Denvir Stith  Vote:  REVERSED AND REMANDED. Breckenridge, C.J., Fischer, Wilson and Russell, JJ., concur; Teitelman, J., dissents in separate opinion filed; Draper, J., concurs in opinion of Teitelman, J. -
      -
    - - - - -
    - SC94936_and_SC94989: Overview/Summary
    - State of Missouri, Appellant, vs. Raymond Robinson, Respondent. -(and) -State of Missouri, Appellant, vs. Steve Lomax, Respondent.
    - Author:  Judge Laura Denvir Stith  Vote:  REVERSED AND REMANDED. Breckenridge, C.J., Fischer, Wilson and Russell, JJ., concur; Teitelman, J., dissents in separate opinion filed; Draper, J., concurs in opinion of Teitelman, J. -
      -
    @@ -1945,13 +1768,7 @@

    ... OR View By Date

    -
    - - @@ -1961,27 +1778,83 @@

    ... OR View By Date

    +
    +
    + SC99818:  Overview/Summary
    + In re: Dan K. Purdy, Respondent.
    Author:   Judge George W. Draper III +
    Vote:  SUSPENDED. Russell, Breckenridge and Ransom, JJ., concur; Fischer, J., dissents in separate opinion filed; Wilson, C.J., and Powell, J., concur in opinion of Fischer, J. +
    +
    +
    +
    + SC99799:  Overview/Summary
    + State of Missouri, Respondent, vs. Jason Michael Hurst, Appellant.
    Author:   Judge Mary R. Russell +
    Vote:  AFFIRMED. Wilson, C.J., Breckenridge, Fischer, Ransom and Draper, JJ., concur; Powell, J., concurs in separate opinion filed. +
    +
    + +
    +
    + SC99747:  Overview/Summary
    + State of Missouri, Respondent, vs. Jacob Hilbert, Appellant.
    Author:   Judge Robin Ransom +
    Vote:  AFFIRMED. All concur. +
    +
    +
    +
    + SC99701:  Overview/Summary
    + Glendale Shooting Club, Inc., A Missouri Non-Profit Corporation, Respondent, vs. William K. Landolt and Jeri F. Landolt, Appellants.
    Author:   Judge W. Brent Powell +
    Vote:  VACATED AND REMANDED. All concur. +
    +
    +
    +
    + SC99650:  Overview/Summary
    + Kristine Hill and Dennis Hill, Relators, vs. The Honorable Stanley J. Wallach, Respondent.
    Author:   Chief Justice Paul C. Wilson +
    Vote:  PRELIMINARY WRIT QUASHED. All concur. +
    +
    +
    +
    + SC99591:  Overview/Summary
    + Wesley Hatmon, Appellant, vs. State of Missouri, Respondent.
    Author:   Chief Justice Paul C. Wilson +
    Vote:  VACATED AND REMANDED. All concur. +
    +
    +
    +
    + SC99488:  Overview/Summary
    + Cedar County Commission, et al., Appellants, vs. Governor Michael Parson, et al., Respondents.
    Author:   Chief Justice Paul C. Wilson +
    Vote:  AFFIRMED. All concur. +
    +
    @@ -2006,7 +1879,19 @@

    ... OR View By Date

    + + + +
    + +
    + +
    +
    +
    03/07/2023
    + +
    @@ -2034,55 +1919,15 @@

    ... OR View By Date

    - - - - -
    - SC95098: Overview/Summary
    - In re: Sanford P. Krigel, Respondent.
    - Author:  Judge George W. Draper III  Vote:  DISCIPLINE IMPOSED. Stith and Russell, JJ., concur; Breckenridge, C.J., concurs in part and dissents in part in separate opinion filed; Fischer, J., dissents in separate opinion filed; Wilson and Teitelman, JJ., concur in opinion of Fischer, J. -
      -
    - - - - -
    - SC94924: Overview/Summary
    - State of Missouri, Respondent vs. Justin Floyd Eugene Jones, Appellant.
    - Author:  Judge Paul C. Wilson  Vote:  AFFIRMED. Breckenridge, C.J., Fischer, Stith and Russell, JJ., concur; Draper, J., concurs in part and dissents in part in separate opinion filed; Teitelman, J., concurs in opinion of Draper, J. -
      -
    - - - - -
    - SC94745: Overview/Summary
    - State of Missouri, Appellant vs. Jerri Smiley, Respondent.
    - Author:  Judge Paul C. Wilson  Vote:  APPEAL DISMISSED. All concur. -
      -
    - - - - -
    - SC94658: Overview/Summary
    - State of Missouri, Respondent vs. Chadwick Leland Walter, Appellant.
    - Author:  Judge George W. Draper III  Vote:  VACATED AND REMANDED. Breckenridge, C.J., Stith and Teitelman, JJ., concur; Wilson, J., dissents in separate opinion filed; Russell, J., dissents in separate opinion filed; Fischer, J., concurs in opinion of Russell, J. -
      -
    @@ -2097,13 +1942,7 @@

    ... OR View By Date

    -
    - - @@ -2123,6 +1962,13 @@

    ... OR View By Date

    + @@ -2145,7 +1991,19 @@

    ... OR View By Date

    + + + +
    + +
    + +
    +
    +
    02/14/2023
    + +
    @@ -2194,110 +2052,367 @@

    ... OR View By Date

    - - - - -
    - SC95102: Overview/Summary
    - Miss Dianna's School of Dance, Inc., Appellant vs. Director of Revenue, Respondent.
    - Author:  Judge Zel M. Fischer  Vote:  AFFIRMED. Breckenridge, C.J., Wilson and Russell, JJ., concur; Draper, J., dissents in separate opinion filed; Stith and Teitelman, JJ., concur in opinion of Draper, J. -
      -
    - - - - -
    - SC95066: Overview/Summary
    - Lashiya D. Ellis, Respondent vs. JF Enterprises, LLC d/b/a Jeremy Franklin's Suzuki of Kansas City, Appellant, Condor Capital Corp., Defendant.
    - Author:  Judge Paul C. Wilson  Vote:  VACATED AND REMANDED. Breckenridge, C.J., Fischer and Russell, JJ., concur; Teitelman, J., dissents in separate opinion filed; Stith and Draper, JJ., concur in opinion of Teitelman, J. -
      -
    - - - - -
    - SC94927: Overview/Summary
    - State of Missouri, Respondent vs. Derrick L. Carrawell, Appellant.
    - Author:  Judge Zel M. Fischer  Vote:  AFFIRMED. Stith and Draper, JJ., concur; Wilson, J., concurs in separate opinion filed; Breckenridge, C.J., and Russell, J., concur in opinion of Wilson, J.; Teitelman, J., concurs in part and dissents in part in separate opinion filed. -
      -
    - - - - -
    - SC94840: Overview/Summary
    - Kristin Nicole Stiers, Respondent vs. Director of Revenue, Appellant.
    - Author:  Judge Laura Denvir Stith  Vote:  AFFIRMED. Fischer, Draper and Teitelman, JJ., concur; Wilson, J., dissents in separate opinion filed; Breckenridge, C.J., and Russell, J., concur in opinion of Wilson, J. -
      -
    - - - - -
    - SC94831: Overview/Summary
    - The Metropolitan St. Louis Sewer District, Appellant vs. The City of Bellefontaine Neighbors, Respondent, Sherrell Construction, Inc., et al., Defendants.
    - Author:  Judge Laura Denvir Stith  Vote:  AFFIRMED. Breckenridge, C.J., Draper, Wilson, Teitelman and Russell, JJ., concur; Fischer, J., concurs in separate opinion filed. -
      -
    - - - - -
    - SC94746: Overview/Summary
    - City of DeSoto, a Political Subdivision of the State of Missouri, and James Acres, Appellants vs. Jeremiah W. Nixon, Governor of the State of Missouri, and Chris Koster, Attorney General of the State of Missouri, Respondents.
    - Author:  Judge Laura Denvir Stith  Vote:  REVERSED AND JUDGMENT ENTERED IN FAVOR OF APPELLANTS. All concur. -
      -
    -
    -
    - -
    -
    -
    + +
    + +
    +
    +
    01/31/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SC99627:  Overview/Summary
    + In re: Philip E. Prewitt, Respondent.
    Author:   Judge Robin Ransom +
    Vote:  SUSPENDED. All concur. +
    +
    + + + +
    +
    + SC99592:  Overview/Summary
    + Lillian Singleton, Respondent, vs. Sheila Singleton, et al., Appellants.
    Author:   Judge George W. Draper III +
    Vote:  REVERSED AND REMANDED. All concur. +
    +
    + + + +
    +
    + SC99419:  Overview/Summary
    + Christopher Zang, Appellant, vs. City of St. Charles, Missouri, Respondent.
    Author:   Judge Robin Ransom +
    Vote:  AFFIRMED. Wilson, C.J., Russell, Powell, Breckenridge and Draper, JJ., concur; Fischer, J., concurs in result. +
    +
    + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/10/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SC99732:  Overview/Summary
    + M.O., Respondent, vs. GEICO General Insurance Company and Government Employees Insurance Company, Appellants.
    Author:   Judge Zel M. Fischer +
    Vote:  VACATED AND REMANDED. All concur. +
    +
    + + + +
    +
    + SC99605:  Overview/Summary
    + Thomas Dubuc, Appellant, vs. Treasurer of the State of Missouri Custodian of the Second Injury Fund, Respondent.
    Author:   Judge Mary R. Russell +
    Vote:  AFFIRMED. Wilson, C.J., Powell, Fischer and Ransom, JJ., concur; Breckenridge, J., concurs in part and dissents in part in separate opinion filed; Draper, J., concurs in opinion of Breckenridge, J. +
    +
    + + + +
    +
    + SC99563:  Overview/Summary
    + James Swafford, Appellant, vs. Treasurer of Missouri as Custodian of Second Injury Fund, Respondent.
    Author:   Judge Mary R. Russell +
    Vote:  AFFIRMED. Wilson, C.J., Powell, Fischer and Ransom, JJ., concur; Breckenridge, J., dissents in separate opinion filed; Draper, J., concurs in opinion of Breckenridge, J. +
    +
    + + + +
    +
    + SC99493:  Overview/Summary
    + Gary M. Weibrecht, Appellant, vs. Treasurer of Missouri as Custodian of Second Injury Fund, Respondent.
    Author:   Judge Mary R. Russell +
    Vote:  AFFIRMED. Wilson, C.J., Powell, Fischer, Ransom and Draper, JJ., concur; Breckenridge, J., dissents in separate opinion filed. +
    +
    + + +
    +
    +
    +
    +
    + + +
    +
    +
    +

    -
    - -
    - - - + + +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/moctapp_eastern_example.compare.json b/tests/examples/opinions/united_states/moctapp_eastern_example.compare.json index c2c8a20ba..4f21a26d7 100644 --- a/tests/examples/opinions/united_states/moctapp_eastern_example.compare.json +++ b/tests/examples/opinions/united_states/moctapp_eastern_example.compare.json @@ -1,1458 +1,2563 @@ [ { - "case_dates": "2014-05-06", - "case_names": "Valerie Naeger v. Farmers Insurance Company, Inc., Defendant/Respondent.", - "download_urls": "/file.jsp?id=73135", + "case_dates": "2023-10-31", + "case_names": "Troy Callahan v. State of Missouri", + "download_urls": "/file.jsp?id=202395", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Robert G. Dowd, Jr., J., concurs. Lawrence E. Mooney, P.J., dissents in separate opinion.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100012", - "judges": "Sherri B. Sullivan, J.", - "case_name_shorts": "" + "dispositions": "AFFIRM", + "docket_numbers": "ED111206", + "judges": "Gary M. Gaertner, Jr., J., and Angela T. Quigless, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." }, { - "case_dates": "2014-05-06", - "case_names": "Steve Hibbs v. Brian Berger", - "download_urls": "/file.jsp?id=73138", + "case_dates": "2023-10-31", + "case_names": "State of Missouri v. Teraz Bateman", + "download_urls": "/file.jsp?id=202394", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Clifford H. Ahrens, J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100114", - "judges": "Roy L. Richter, P.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111111", + "judges": "Lisa P. Page, P.J., and Angela T. Quigless, J., concur.", + "case_name_shorts": "", + "authors": "Gary M. Gaertner, Jr., J." }, { - "case_dates": "2014-05-06", - "case_names": "State of Missouri v. Jeremiah F. McMillon", - "download_urls": "/file.jsp?id=73134", + "case_dates": "2023-10-31", + "case_names": "State of Missouri v. David F. Schneider", + "download_urls": "/file.jsp?id=202393", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Roy L. Richter, P.J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99696", - "judges": "Clifford H. Ahrens, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110653", + "judges": "Robert M. Clayton III, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." }, { - "case_dates": "2014-05-06", - "case_names": "State of Missouri v. Jeffrey A. Chandler", - "download_urls": "/file.jsp?id=73136", + "case_dates": "2023-10-31", + "case_names": "Daniel Crowder v. Ingram Barge Company, LLC", + "download_urls": "/file.jsp?id=202396", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Roy L. Richter, P.J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100035", - "judges": "Clifford H. Ahrens, J.", - "case_name_shorts": "" + "dispositions": "AFFIRM", + "docket_numbers": "ED111416", + "judges": "Gary M. Gaertner, Jr., J., and Angela T. Quigless, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." }, { - "case_dates": "2014-05-06", - "case_names": "Jennifer Philips, Amber Philips, Mariah Philips, and Ian Philips Next Friend Jennifer Philips v. Citimortgage, Inc.", - "download_urls": "/file.jsp?id=73140", + "case_dates": "2023-10-24", + "case_names": "State of Missouri v. Timothy Meding", + "download_urls": "/file.jsp?id=202265", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED IN PART AND REVERSED AND REMANDED IN PART. Clifford H. Ahrens, J., and Mary R. Russell, Sp.J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100289", - "judges": "Robert M. Clayton III, C.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111438", + "judges": "Robert M. Clayton III, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." }, { - "case_dates": "2014-05-06", - "case_names": "In Re the Marriage of: Tracey Marie Steinberg v. Michael Frank Steinberg", - "download_urls": "/file.jsp?id=73139", + "case_dates": "2023-10-24", + "case_names": "State of Missouri v. Joshua O'Keefe", + "download_urls": "/file.jsp?id=202257", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED WITH INSTRUCTIONS. Robert G. Dowd, Jr., J., and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100215", - "judges": "Lawrence E. Mooney, P.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110330", + "judges": "Michael E. Gardner, J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, P.J." }, { - "case_dates": "2014-05-06", - "case_names": "Aaron Davis v. J.P. Collier, Inc. and Division of Employment Security", - "download_urls": "/file.jsp?id=73137", + "case_dates": "2023-10-24", + "case_names": "State of Missouri v. Jesse M. Jansen", + "download_urls": "/file.jsp?id=202258", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Roy L. Richter, P.J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100075", - "judges": "Clifford H. Ahrens, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110787", + "judges": "Michael E. Gardner, J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, P.J." }, { - "case_dates": "2014-04-29", - "case_names": "State of Missouri, Respondent/Cross-Appellant v. Elvis Smith", - "download_urls": "/file.jsp?id=72795", + "case_dates": "2023-10-24", + "case_names": "Ronald Greco v. Director of Revenue", + "download_urls": "/file.jsp?id=202266", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED AND REMANDED FOR CORRECTION OF JUDGMENT NUNC PRO TUNC. Lisa S. Van Amburg, P.J., and Philip M. Hess, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99044", - "judges": "Patricia L. Cohen, J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED111549", + "judges": "Renee D. Hardin-Tammons, J., and Roy L. Richter, Sp.J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, P.J." }, { - "case_dates": "2014-04-29", - "case_names": "State of Missouri, Plaintiff/Respondent v. Keith Mason", - "download_urls": "/file.jsp?id=72801", + "case_dates": "2023-10-24", + "case_names": "Montel Berry v. State of Missouri", + "download_urls": "/file.jsp?id=202262", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lisa S. Van Amburg, P.J., and Patricia L. Cohen, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100036", - "judges": "Philip M. Hess, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111112", + "judges": "Kurt S. Odenwald, P.J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Michael E. Gardner, J." }, { - "case_dates": "2014-04-29", - "case_names": "State of Missouri, Plaintiff/Respondent v. Gary L. Francis, Jr.", - "download_urls": "/file.jsp?id=72800", + "case_dates": "2023-10-24", + "case_names": "Melissa Cavin v. Barrie Hair", + "download_urls": "/file.jsp?id=202261", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Lawrence E. Mooney, P.J. and Robert G. Dowd, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100009", - "judges": "Sherri B. Sullivan, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111110", + "judges": "Kurt S. Odenwald, P.J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Michael E. Gardner, J." }, { - "case_dates": "2014-04-29", - "case_names": "State of Missouri v. Raymon Denzmore", - "download_urls": "/file.jsp?id=72797", + "case_dates": "2023-10-24", + "case_names": "Eniz Poljarevic v. Division of Employment Security", + "download_urls": "/file.jsp?id=202264", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lisa S. Van Amburg, P.J., and Philip M. Hess, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99468", - "judges": "Patricia L. Cohen, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111381", + "judges": "Michael E. Gardner, J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, P.J." }, { - "case_dates": "2014-04-29", - "case_names": "State of Missouri v. Michael Sutherland", - "download_urls": "/file.jsp?id=72799", + "case_dates": "2023-10-24", + "case_names": "Dominique Kemper v. State of Missouri", + "download_urls": "/file.jsp?id=202260", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, Presiding Judge, concurs and Kurt S. Odenwald, Judge, dissents in separate opinion.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99778", - "judges": "Angela T. Quigless, Judge", - "case_name_shorts": "" + "dispositions": "REVERSE AND REMAND", + "docket_numbers": "ED111038", + "judges": "Thomas C. Clark, II, C.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-04-29", - "case_names": "Spirit & Truth Church, Plaintiffs/Respondents v. Mark Barnaby", - "download_urls": "/file.jsp?id=72804", + "case_dates": "2023-10-24", + "case_names": "Dana L. Girgis v. Mark S. Girgis", + "download_urls": "/file.jsp?id=202259", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED. Lawrence E. Mooney, P.J. and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100421", - "judges": "Robert G. Dowd, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED IN PART, REVERSED IN PART", + "docket_numbers": "ED110868", + "judges": "Thomas C. Clark, II, C.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, J." }, { - "case_dates": "2014-04-29", - "case_names": "Orpheus D. Warren, Movant/Appellant v. State of Missouri", - "download_urls": "/file.jsp?id=72798", + "case_dates": "2023-10-24", + "case_names": "Charles Ewing v. Col. John Hayden", + "download_urls": "/file.jsp?id=202263", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED UNDER RULE 84.16(b) AND CORRECTED TO REMOVE THE PRIOR AND PERSISTENT OFFENDER CLASSIFICATIONS FROM THE JUDGMENT AND SENTENCE FORM. Patricia L. Cohen, Judge, and Philip M. Hess, Judge, concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99545", - "judges": "Lisa S. Van Amburg, P.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111321", + "judges": "James M. Dowd, J., and Roy L. Richter, Sp.J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, P.J." }, { - "case_dates": "2014-04-29", - "case_names": "In the Matter of the Care and Treatment of William Doyle", - "download_urls": "/file.jsp?id=72802", + "case_dates": "2023-10-17", + "case_names": "Vivian DePaul v. Division of Employment Security", + "download_urls": "/file.jsp?id=202118", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Robert M. Clayton III, C.J., and Gary Dial, S.J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100202", - "judges": "Gary M. Gaertner, Jr., J.", - "case_name_shorts": "" + "dispositions": "DISMISSED", + "docket_numbers": "ED111120", + "judges": "Lisa P. Page, P.J., and Angela T. Quigless, J., concur.", + "case_name_shorts": "", + "authors": "Gary M. Gaertner, Jr., J." }, { - "case_dates": "2014-04-29", - "case_names": "David A. McArthur v. State of Missouri", - "download_urls": "/file.jsp?id=72796", + "case_dates": "2023-10-17", + "case_names": "Nexgen Silica, LLC, Appellant/Cross-Respondent v. Missouri Department of Natural Resources, and Operation Sand, LLC, Respondent/Cross-Appellant.", + "download_urls": "/file.jsp?id=202120", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED AND REMANDED FOR CORRECTION OF JUDGMENT NUNC PRO TUNC. Lisa S. Van Amburg, P.J., and Philip M. Hess, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99186", - "judges": "Patricia L. Cohen, Judge", - "case_name_shorts": "" + "dispositions": "DECISION AS TO NEXGEN SILICA, LLC AFFIRMED CROSS-APPEAL AS TO OPERATION SAND, LLC DISMISSED", + "docket_numbers": "ED111424", + "judges": "Lisa P. Page, P.J., and Gary M. Gaertner, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Angela T. Quigless, J." }, { - "case_dates": "2014-04-29", - "case_names": "Charlotte Benton v. Cracker Barrel Old Country Stores, Inc., Defendant/Respondent.", - "download_urls": "/file.jsp?id=72803", + "case_dates": "2023-10-17", + "case_names": "Kristal D. Fulton v. Drive Rite, LLC, and Xcel Holdings, LLC", + "download_urls": "/file.jsp?id=202119", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lisa S. Van Amburg, P.J. and Patricia L. Cohen, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100309", - "judges": "Philip M. Hess, J.", - "case_name_shorts": "" + "dispositions": "DISMISSED", + "docket_numbers": "ED111263", + "judges": "Thomas C. Clark, II, C.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-04-22", - "case_names": "Pulaski Bank v. Nantucket Partners, L.C., a Missouri Limited Liability Company, and Julian Hess, and Keith Barket", - "download_urls": "/file.jsp?id=72413", + "case_dates": "2023-10-10", + "case_names": "Michael C. Schmidt v. Ritter Horticultural Services, Inc., and Division of Employment Security", + "download_urls": "/file.jsp?id=202115", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, P.J., and Angela T. Quigless, J., Concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99060", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110938", + "judges": "John P. Torbitzky, J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Michael E. Gardner, P.J." }, { - "case_dates": "2014-04-22", - "case_names": "David Darr v. Roberts Marketing Group, LLC and Division of Employment Security", - "download_urls": "/file.jsp?id=72415", + "case_dates": "2023-10-10", + "case_names": "Clarksboro, LLC and WMAC 2013, LLC v. City of Overland, Missouri", + "download_urls": "/file.jsp?id=201917", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Robert M. Clayton III, C.J., and Gary M. Gaertner, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100197", - "judges": "Karl A.W. DeMarce, S.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111190", + "judges": "Robert M. Clayton III, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." }, { - "case_dates": "2014-04-22", - "case_names": "Charles K. Moore v. State of Missouri", - "download_urls": "/file.jsp?id=72414", + "case_dates": "2023-10-03", + "case_names": "In the Interest of: K.J.L.", + "download_urls": "/file.jsp?id=201694", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Lawrence E. Mooney, P.J. and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99603", - "judges": "Robert G. Dowd, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110726", + "judges": "Michael E. Gardner, J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, P.J." }, { - "case_dates": "2014-04-22", - "case_names": "Captiva Lake Investments, LLC, a Missouri Limited Liability Company, and Cypress Condominium at the Lake of the Ozarks Association v. Ameristructure, Inc., a Missouri Corporation, and Stephen J. Sacco, Defendants/Respondents.", - "download_urls": "/file.jsp?id=72416", + "case_dates": "2023-09-26", + "case_names": "State of Missouri v. Orlando Kim Ferguson, II", + "download_urls": "/file.jsp?id=202113", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J., and Robert G. Dowd, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100569", - "judges": "Sherri B. Sullivan, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED IN PART AND REVERSED AND REMANDED IN PART", + "docket_numbers": "ED110037", + "judges": "Thomas C. Clark, II, C.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, Judge" }, { - "case_dates": "2014-04-15", - "case_names": "Xiaoyan Gu v. Da Hua Hu, and ACE INA Insurance Company Canada, Defendants/Respondents.", - "download_urls": "/file.jsp?id=72193", + "case_dates": "2023-09-26", + "case_names": "State of Missouri v. Angela Brown", + "download_urls": "/file.jsp?id=201478", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Lisa S. Van Amburg, P.J., and Patricia L. Cohen, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100001", - "judges": "Philip M. Hess, J.", - "case_name_shorts": "" + "dispositions": "DISMISSED", + "docket_numbers": "ED110944", + "judges": "Thomas C. Clark, II, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, J." }, { - "case_dates": "2014-04-15", - "case_names": "State of Missouri, Plaintiff/Respondent v. Kevin Murray", - "download_urls": "/file.jsp?id=72186", + "case_dates": "2023-09-26", + "case_names": "Samantha Kelley v. State of Missouri, Department of Corrections", + "download_urls": "/file.jsp?id=201476", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Patricia L. Cohen, Judge, and Philip M. Hess, Judge, concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99089", - "judges": "Lisa S. Van Amburg, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED AND REMANDED TO DETERMINE ATTORNEYS' FEES", + "docket_numbers": "ED110609", + "judges": "Before Kelly C. Broniec, Sp.J., Philip M. Hess, J., and James M. Dowd, J.", + "case_name_shorts": "", + "authors": "PER CURIAM" }, { - "case_dates": "2014-04-15", - "case_names": "State of Missouri v. Stephen Caines", - "download_urls": "/file.jsp?id=72191", + "case_dates": "2023-09-26", + "case_names": "Pamela McCoy v. Meridian Medical Technology, New Hampshire Insurance Co., and Missouri State Treasurer, as Custodian of Second Injury Fund", + "download_urls": "/file.jsp?id=201480", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J., and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99819", - "judges": "Robert G. Dowd, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111299", + "judges": "Before Thomas C. Clark, II, P.J., James M. Dowd, J., and John P. Torbitzky, J.", + "case_name_shorts": "", + "authors": "PER CURIAM" }, { - "case_dates": "2014-04-15", - "case_names": "Rolanda D. Pearson v. Department of Employment Security", - "download_urls": "/file.jsp?id=72194", + "case_dates": "2023-09-26", + "case_names": "Lisa Weber v. Federal Home Loan Mortgage Corporation", + "download_urls": "/file.jsp?id=201479", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "APPEAL DISMISSED AND CAUSE REMANDED WITH INSTRUCTIONS. Robert G. Dowd., Jr., J., and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100027", - "judges": "Lawrence E. Mooney, P.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111226", + "judges": "Robert M. Clayton II, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." }, { - "case_dates": "2014-04-15", - "case_names": "Robert H. Gurley, Movant/Appellant v. State of Missouri", - "download_urls": "/file.jsp?id=72192", + "case_dates": "2023-09-26", + "case_names": "Jihad A. Spann v. State of Missouri", + "download_urls": "/file.jsp?id=201475", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Patricia L. Cohen, Judge, and Philip M. Hess, Judge, concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99938", - "judges": "Lisa S. Van Amburg, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110550", + "judges": "Philip M. Hess, J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "Robert M. Clayton III, P.J." }, { - "case_dates": "2014-04-15", - "case_names": "Meagan Garland v. Director, Family Support Division, Missouri Department of Social Services and Jeffrey Ruhl", - "download_urls": "/file.jsp?id=72188", + "case_dates": "2023-09-26", + "case_names": "J.J., by and through Next Friend, C.W. v. Poplar Bluff Regional Medical Center, L.L.C.", + "download_urls": "/file.jsp?id=201481", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Patricia L. Cohen, Judge, concurs. Gary M. Gaertner, Jr., Judge, dissents in separate opinion.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99773", - "judges": "Lisa S. Van Amburg, P.J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED111339", + "judges": "Lisa P. Page, P.J., and Angela T. Quigless, J., concur.", + "case_name_shorts": "", + "authors": "Gary M. Gaertner, Jr., J." }, { - "case_dates": "2014-04-15", - "case_names": "Mary L. Lehmann v. Bank of America, N.A., d/b/a U.S. Trust", - "download_urls": "/file.jsp?id=72189", + "case_dates": "2023-09-26", + "case_names": "In the Interest of: J.M.W.", + "download_urls": "/file.jsp?id=201477", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED IN PART AND REVERSED AND REMANDED IN PART. Mary K. Hoff, P.J., and Angela T. Quigless, J., Concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99782", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110708", + "judges": "Michael E. Gardner, J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, P.J." }, { - "case_dates": "2014-04-15", - "case_names": "Marcus McCoy, Movant/Appellant v. State of Missouri", - "download_urls": "/file.jsp?id=72187", + "case_dates": "2023-09-26", + "case_names": "C.H., and S.S. v. Infertility Center of Saint Louis", + "download_urls": "/file.jsp?id=201482", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lisa S. Van Amburg, P.J., and Patricia L. Cohen, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99701", - "judges": "Philip M. Hess, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111405", + "judges": "Lisa P. Page, P.J., and Angela T. Quigless, J., concur.", + "case_name_shorts": "", + "authors": "Gary M. Gaertner, Jr., J." }, { - "case_dates": "2014-04-15", - "case_names": "Investors Alliance, LLC, Plaintiff/Respondent v. Inez Bordeaux", - "download_urls": "/file.jsp?id=72190", + "case_dates": "2023-09-19", + "case_names": "Z.S., By and Through His Next Friend, P.S. v. Rockwood School District", + "download_urls": "/file.jsp?id=201222", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Lisa S. Van Amburg, P.J., and Patricia L. Cohen, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99804", - "judges": "Philip M. Hess, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111319", + "judges": "Michael E. Gardner, P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Renee Hardin-Tammons, J." }, { - "case_dates": "2014-04-15", - "case_names": "Desiree Ridgell v. Mark McDermott and Karen McDermott, Defendants/Respondents.", - "download_urls": "/file.jsp?id=72196", + "case_dates": "2023-09-19", + "case_names": "State of Missouri v. Santonio McCoy", + "download_urls": "/file.jsp?id=201218", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED. Mary K. Hoff, P.J., and Kurt S. Odenwald, J., Concurs.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100402", - "judges": "Angela T. Quigless, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110900", + "judges": "Kurt S. Odenwald, P.J., and Michael E. Gardner, J., concur.", + "case_name_shorts": "", + "authors": "Renee D. Hardin-Tammons, J." }, { - "case_dates": "2014-04-15", - "case_names": "Aaron H. Johnson v. State of Missouri", - "download_urls": "/file.jsp?id=72195", + "case_dates": "2023-09-19", + "case_names": "State of Missouri v. Samuel L. Scott", + "download_urls": "/file.jsp?id=201215", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "DISMISSED IN PART AFFIRMED IN PART. Clifford H. Ahrens, J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100117", - "judges": "Roy L. Richter, P.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110702", + "judges": "Thomas C. Clark II, P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-04-08", - "case_names": "State of Missouri v. Samuel Meeks", - "download_urls": "/file.jsp?id=71935", + "case_dates": "2023-09-19", + "case_names": "State of Missouri v. Nore K. Edmond", + "download_urls": "/file.jsp?id=201219", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Lawrence E. Mooney, P.J., and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99727", - "judges": "Robert G. Dowd., Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111055", + "judges": "Robert M. Clayton III, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." }, { - "case_dates": "2014-04-08", - "case_names": "State of Missouri v. Joe L. Johnson", - "download_urls": "/file.jsp?id=71938", + "case_dates": "2023-09-19", + "case_names": "State of Missouri ex rel. Melissa Hogg, Relator v. The Honorable Wendy Wexler Horn, Judge of the Twenty-Fourth Judicial Circuit, St. Francois County, Div. 1", + "download_urls": "/file.jsp?id=201223", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED. Robert M. Clayton III, C.J., and Gary Dial, S.J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100856", - "judges": "Gary M. Gaertner, Jr., J.", - "case_name_shorts": "" + "dispositions": "WRIT MADE PERMANENT", + "docket_numbers": "ED111910", + "judges": "Kelly C. Broniec, C.J., and Lisa P. Page, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, P.J." }, { - "case_dates": "2014-04-08", - "case_names": "State of Missouri v. Adam L. Steinmann", - "download_urls": "/file.jsp?id=71934", + "case_dates": "2023-09-19", + "case_names": "S.A.B. v. J.L.R.", + "download_urls": "/file.jsp?id=201221", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lisa S. Van Amburg, P.J., and Philip M. Hess, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99269", - "judges": "Patricia L. Cohen, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111235", + "judges": "Before Michael E. Gardner, P.J., Robert M. Clayton III, J., and Renee Hardin-Tammons, J.", + "case_name_shorts": "S.A.B.", + "authors": "PER CURIAM" }, { - "case_dates": "2014-04-08", - "case_names": "Lane House Construction, Inc. v. Doris Ogrowsky", - "download_urls": "/file.jsp?id=71936", + "case_dates": "2023-09-19", + "case_names": "Jonas Phillips v. State of Missouri", + "download_urls": "/file.jsp?id=201216", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Clifford H. Ahrens, J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99897", - "judges": "Roy L. Richter, P.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110785", + "judges": "Angela T. Quigless, P.J., and Michael E. Gardner, J., concur.", + "case_name_shorts": "", + "authors": "Renee Hardin-Tammons, J." }, { - "case_dates": "2014-04-08", - "case_names": "Christine A. Meissner v. Jeffrey Schnettgoecke", - "download_urls": "/file.jsp?id=71937", + "case_dates": "2023-09-19", + "case_names": "J.M.L. v. Missouri State Highway Patrol", + "download_urls": "/file.jsp?id=201214", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Gary M. Gaertner, Jr., J., and Gary Dial, Sp.J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100424", - "judges": "Robert M. Clayton III, C.J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110665", + "judges": "Robert M. Clayton III, P.J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "J.M.L.", + "authors": "Philip M. Hess, J." }, { - "case_dates": "2014-04-01", - "case_names": "Vicki Armour-Mottaz, Claimant/Appellant v. Division of Employment Security", - "download_urls": "/file.jsp?id=71640", + "case_dates": "2023-09-19", + "case_names": "J.C.S. v. Missouri State Highway Patrol Criminal Records Repository, and Jefferson County Sheriff's Office", + "download_urls": "/file.jsp?id=201220", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Kurt S. Odenwald, Judge, and Angela T. Quigless, Judge, concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100014", - "judges": "Mary K. Hoff, Judge", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED111139", + "judges": "Philip M. Hess, J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "J.C.S.", + "authors": "Robert M. Clayton III, P.J." }, { - "case_dates": "2014-04-01", - "case_names": "State of Missouri, Plaintiff/Respondent v. Belvin L. Williams, Jr.", - "download_urls": "/file.jsp?id=71637", + "case_dates": "2023-09-19", + "case_names": "Christopher J. Potter v. State of Missouri", + "download_urls": "/file.jsp?id=201217", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Robert M. Clayton III, C.J., and Angela T. Quigless, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99841", - "judges": "Sherri B. Sullivan, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110877", + "judges": "Thomas C. Clark, II, P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-04-01", - "case_names": "State of Missouri v. Mark G. Jackson", - "download_urls": "/file.jsp?id=71634", + "case_dates": "2023-09-12", + "case_names": "State of Missouri v. Eugene P. Campbell", + "download_urls": "/file.jsp?id=201015", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J., and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99519", - "judges": "Robert G. Dowd, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110923", + "judges": "Robert M. Clayton III, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." }, { - "case_dates": "2014-04-01", - "case_names": "State of Missouri v. Douglas J. Howery", - "download_urls": "/file.jsp?id=71635", + "case_dates": "2023-09-12", + "case_names": "State of Missouri Ex Rel. David Hutchinson, Relator v. The Honorable Antonio M. Manansala, Associate Circuit Judge, Twenty-Third Judicial Circuit, Jefferson County", + "download_urls": "/file.jsp?id=201018", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, P.J., and Angela T. Quigless, J., Concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99608", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "WRIT MADE PERMANENT", + "docket_numbers": "ED111931", + "judges": "Lisa P. Page, J., and Thomas C. Clark II, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, P.J." }, { - "case_dates": "2014-04-01", - "case_names": "Samson Desu v. Frederick Lewis, Defendant/Respondent.", - "download_urls": "/file.jsp?id=71638", + "case_dates": "2023-09-12", + "case_names": "State ex rel. Sedrick Phillip-Smith, Relator v. The Honorable Michael F. Stelzer, Circuit Judge, Twenty-Second Judicial Circuit, City of St. Louis", + "download_urls": "/file.jsp?id=201913", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED IN PART, REVERSED IN PART AND REMANDED. Patricia L. Cohen, Judge, and Philip M. Hess, Judge, concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99846", - "judges": "Lisa S. Van Amburg, J.", - "case_name_shorts": "" + "dispositions": "WRIT MADE PERMANENT", + "docket_numbers": "ED111912", + "judges": "Lisa P. Page, J., and Kelly C. Broniec, C.J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, P.J." }, { - "case_dates": "2014-04-01", - "case_names": "Carrie Little v. State of Missouri", - "download_urls": "/file.jsp?id=71639", + "case_dates": "2023-09-12", + "case_names": "J.R.M.-J., By and Through Her Next Friend, S.J., and S.J. Individually v. R.T.M.", + "download_urls": "/file.jsp?id=201016", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Clifford H. Ahrens, J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99940", - "judges": "Roy L. Richter, P.J.", - "case_name_shorts": "" + "dispositions": "JUDGMENT AFFIRMED", + "docket_numbers": "ED111017", + "judges": "Thomas C. Clark, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "R.T.M.", + "authors": "John P. Torbitzky, J." }, { - "case_dates": "2014-04-01", - "case_names": "Ashley Janelle Lord v. Directory of Revenue, State of Missouri", - "download_urls": "/file.jsp?id=71636", + "case_dates": "2023-09-05", + "case_names": "Zachariah Foltz v. City of St. Louis", + "download_urls": "/file.jsp?id=200755", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Mary K. Hoff, P.J., and Angela T. Quigless, J., Concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99769", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED111086", + "judges": "Thomas C. Clark II, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "John Torbitzky, J." }, { - "case_dates": "2014-03-25", - "case_names": "Todd C. Westergaard, Movant/Appellant v. State of Missouri, Respondent/Respondent.", - "download_urls": "/file.jsp?id=71415", + "case_dates": "2023-09-05", + "case_names": "State of Missouri v. Monica C. Shoemaker", + "download_urls": "/file.jsp?id=200754", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J., and Robert G. Dowd, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100063", - "judges": "Sherri B. Sullivan, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110820", + "judges": "Robert M. Clayton III, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." }, { - "case_dates": "2014-03-25", - "case_names": "Reliance Bank, Plaintiff/Respondent v. Paramont Properties, LLC, and Keith Barket", - "download_urls": "/file.jsp?id=71414", + "case_dates": "2023-09-05", + "case_names": "Matthew B. Randolph v. State of Missouri", + "download_urls": "/file.jsp?id=200756", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lisa S. Van Amburg, P.J. and Patricia L. Cohen, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99837", - "judges": "Philip M. Hess, J.", - "case_name_shorts": "" + "dispositions": "DISMISSED", + "docket_numbers": "ED111343", + "judges": "James M. Dowd, J., and John Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Thomas C. Clark II, P.J." }, { - "case_dates": "2014-03-25", - "case_names": "Lawrence Miller v. Treasurer, State of Missouri, as Custodian of the Second Injury Fund", - "download_urls": "/file.jsp?id=71416", + "case_dates": "2023-08-29", + "case_names": "State of Missouri v. Melvin J. Scherrer", + "download_urls": "/file.jsp?id=200374", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND VACATED. Roy L. Richter, P.J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100308", - "judges": "Clifford H. Ahrens, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110639", + "judges": "Philp M. Hess, J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "Robert M. Clayton III, P.J." }, { - "case_dates": "2014-03-25", - "case_names": "Drury Company, Respondent/Cross-Appellant v. Missouri United School Insurance Counsel, and Jackson R-2 School District, and Warner-Nease-Bost Architects, Inc.", - "download_urls": "/file.jsp?id=71417", + "case_dates": "2023-08-29", + "case_names": "State of Missouri ex rel. Organic Remedies Mo. Inc. v. Board of Zoning Adjustment of St. Louis County, Missouri", + "download_urls": "/file.jsp?id=200377", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, P.J., and Kurt S. Odenwald, J., Concurs.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100320", - "judges": "Angela T. Quigless, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111005", + "judges": "Gary M. Gaertner, Jr., J., and Angela T. Quigless, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." }, { - "case_dates": "2014-03-25", - "case_names": "Collins-Camden Partnership, L.P. v. County of Jefferson, Missouri, and Jefferson County Council Members Don Bickowski, Renee Reuter, Bob Boyer, Charles Groeteke, Terri S. Kreitler, Cliff Lane and Kelly Waymon, Defendants/Respondents.", - "download_urls": "/file.jsp?id=71419", + "case_dates": "2023-08-29", + "case_names": "Jonathan Lukefahr, ex ux. v. Carol Taylor, et ux.", + "download_urls": "/file.jsp?id=200375", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J., and Robert G. Dowd, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100357", - "judges": "Sherri B. Sullivan, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110773", + "judges": "Kurt S. Odenwald, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "Thomas C. Clark II, J." }, { - "case_dates": "2014-03-25", - "case_names": "Ardell Fields v. State of Missouri", - "download_urls": "/file.jsp?id=71418", + "case_dates": "2023-08-29", + "case_names": "Gerald Puetz, David Puetz, and Jeannette Puetz v. Canice Timothy Rice", + "download_urls": "/file.jsp?id=200376", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Roy L. Richter, P.J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100321", - "judges": "Clifford H. Ahrens, J.", - "case_name_shorts": "" + "dispositions": "DISMISSED AND REMANDED", + "docket_numbers": "ED110934", + "judges": "Gary M. Gaertner, Jr., J., and Angela T. Quigless, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." }, { - "case_dates": "2014-03-18", - "case_names": "Tiffaney Hampton v. Aerotek, Inc., and Division of Employment Security", - "download_urls": "/file.jsp?id=71298", + "case_dates": "2023-08-22", + "case_names": "Thomas Sullivan v. City of University City", + "download_urls": "/file.jsp?id=202253", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "APPEAL DISMISSED. Roy L. Richter, P.J. and Clifford H. Ahrens, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100137", - "judges": "Glenn A. Norton, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111084", + "judges": "Robert M. Clayton III, P.J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." }, { - "case_dates": "2014-03-18", - "case_names": "State of Missouri v. Nasir N. Ahmad", - "download_urls": "/file.jsp?id=71297", + "case_dates": "2023-08-22", + "case_names": "Larry Obermann v. Treasurer of the State of Missouri as Custodian of the Second Injury Fund", + "download_urls": "/file.jsp?id=198795", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "DISMISSED. Clifford H. Ahrens, J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99907", - "judges": "Roy L. Richter, P.J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED111004", + "judges": "Kelly C. Broniec, C.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-03-18", - "case_names": "Shane Null v. New Haven Care Center, Inc., and Treasurer of Missouri as Custodian of the Second Injury Fund", - "download_urls": "/file.jsp?id=71299", + "case_dates": "2023-08-22", + "case_names": "Jordan Medlin v. State of Missouri", + "download_urls": "/file.jsp?id=198794", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, P.J., and Angela T. Quigless, J., Concurs.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100191", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "DISMISSED", + "docket_numbers": "ED110461", + "judges": "Thomas C. Clark, II, P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-03-18", - "case_names": "Lonnie Harris, Plaintiff/Respondent v. Bi-State Development Agency", - "download_urls": "/file.jsp?id=71300", + "case_dates": "2023-08-22", + "case_names": "ACWSTL, LLC d/b/a Advantaclean of West St. Louis County v. Treisa Gladney", + "download_urls": "/file.jsp?id=198796", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J., and Robert G. Dowd, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100452", - "judges": "Sherri B. Sullivan, J.", - "case_name_shorts": "" + "dispositions": "DISMISSED", + "docket_numbers": "ED111007", + "judges": "Gary M. Gaertner, Jr., J., and Angela T. Quigless, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." }, { - "case_dates": "2014-03-18", - "case_names": "Kevin Plager v. Tiffany Plager", - "download_urls": "/file.jsp?id=71295", + "case_dates": "2023-08-15", + "case_names": "Sophia D. Chatman v. Thomas Chatman", + "download_urls": "/file.jsp?id=198496", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Robert M. Clayton III, C.J., and Karl A.W. DeMarce, S.J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99203", - "judges": "Gary M. Gaertner, Jr., J.", - "case_name_shorts": "" + "dispositions": "RESPONDENT'S MOTION GRANTED APPEAL DISMISSED", + "docket_numbers": "ED111310", + "judges": "Lisa P. Page, P.J., and Gary M. Gaertner, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Angela T. Quigless, J." }, { - "case_dates": "2014-03-18", - "case_names": "Greg Haddock v. State of Missouri", - "download_urls": "/file.jsp?id=71296", + "case_dates": "2023-08-15", + "case_names": "In the Matter of: Timothy Lee Isreal", + "download_urls": "/file.jsp?id=198495", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, P.J., and Angela T. Quigless, J., Concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99747", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED111010", + "judges": "Lisa P. Page, P.J., and Gary M. Gaertner, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Angela T. Quigless, J." }, { - "case_dates": "2014-03-11", - "case_names": "State of Missouri v. George Dewey McCleary, III", - "download_urls": "/file.jsp?id=70889", + "case_dates": "2023-08-15", + "case_names": "In the Interest of: D.L.T.", + "download_urls": "/file.jsp?id=198494", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "JUDGMENT AFFIRMED. Robert G. Dowd, Jr., J., and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED98906", - "judges": "Lawrence E. Mooney, P.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110966", + "judges": "Robert M. Clayton III, P.J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." }, { - "case_dates": "2014-03-11", - "case_names": "State of Missouri v. Cemon Byrd", - "download_urls": "/file.jsp?id=70934", + "case_dates": "2023-08-08", + "case_names": "State of Missouri v. Paul W. Bodenhamer", + "download_urls": "/file.jsp?id=198315", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Robert M. Clayton III, C.J., and Karl A.W. DeMarce, S.J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99366", - "judges": "Gary M. Gaertner, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED IN PART AND DISMISSED IN PART", + "docket_numbers": "ED110766", + "judges": "Angela T. Quigless, P.J., and Sherri B. Sullivan, J., concur.", + "case_name_shorts": "", + "authors": "Robert M. Clayton III, J." }, { - "case_dates": "2014-03-11", - "case_names": "Jeffrey G. Thurman v. State of Missouri", - "download_urls": "/file.jsp?id=70892", + "case_dates": "2023-08-08", + "case_names": "State of Missouri v. John M. Hamm", + "download_urls": "/file.jsp?id=198314", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, P.J., and Angela T. Quigless, J., Concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99619", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110472", + "judges": "Michael E. Gardner, P.J., and Renee Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, J." }, { - "case_dates": "2014-03-11", - "case_names": "Henry Frazier v. State of Missouri", - "download_urls": "/file.jsp?id=70891", + "case_dates": "2023-08-08", + "case_names": "State of Missouri ex rel. Andrew Bailey, Relator v. The Honorable Bruce F. Hilton, Circuit Judge of St. Louis County, and Joan M. Gilmer, Circuit Clerk, St. Louis County Circuit Court", + "download_urls": "/file.jsp?id=198316", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lisa S. Van Amburg, P.J., and Gary M. Gaertner, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99517", - "judges": "Patricia L. Cohen, J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND THE RECORD IS QUASHED", + "docket_numbers": "ED111501", + "judges": "Michael E. Gardner, J., and Thomas C. Clark II, J., concur.", + "case_name_shorts": "", + "authors": "Kelly C. Broniec, C.J." }, { - "case_dates": "2014-03-11", - "case_names": "Anastasia M. Hoffman, Respondent/Cross-Appellant v. Richard W. Hoffman", - "download_urls": "/file.jsp?id=70890", + "case_dates": "2023-08-01", + "case_names": "Timothy Waldorf v. State of Missouri", + "download_urls": "/file.jsp?id=198077", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lisa S. Van Amburg, P.J., and Gary M. Gaertner, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99057", - "judges": "Patricia L. Cohen, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111167", + "judges": "Kelly C. Broniec, C.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." }, { - "case_dates": "2014-03-04", - "case_names": "Tracy M. Atkinson v. Douglas D. Atkinson", - "download_urls": "/file.jsp?id=70656", + "case_dates": "2023-08-01", + "case_names": "State of Missouri v. Michael K. Humphrey", + "download_urls": "/file.jsp?id=198075", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Roy L. Richter, P.J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99492", - "judges": "Clifford H. Ahrens, J.", - "case_name_shorts": "" + "dispositions": "DISMISSED", + "docket_numbers": "ED110491", + "judges": "Gary M. Gaertner, Jr., P.J., and Thomas C. Clark II, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, J." }, { - "case_dates": "2014-03-04", - "case_names": "State of Missouri v. Keith Stubblefield", - "download_urls": "/file.jsp?id=70659", + "case_dates": "2023-08-01", + "case_names": "State of Missouri v. Herbert Welch", + "download_urls": "/file.jsp?id=198074", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Robert M. Clayton III, C.J., and Karl A.W. DeMarce, S.J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100064", - "judges": "Gary M. Gaertner, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110318", + "judges": "Kelly C. Broniec, C.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." }, { - "case_dates": "2014-03-04", - "case_names": "State of Missouri v. Brenda Churchill", - "download_urls": "/file.jsp?id=70655", + "case_dates": "2023-08-01", + "case_names": "Mark Brommelhorst and Barbara Brommelhorst, Individually and on Behalf of Gabriel Brommelhorst v. Automobile Club Inter-Insurance Exchange, and Danielle Johnson", + "download_urls": "/file.jsp?id=198076", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Angela T. Quigless, J., Concurs in result only and Mary K. Hoff, P.J., Dissents in separate opinion.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99261", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110912", + "judges": "Angela T. Quigless, P.J., and Sherri B. Sullivan, J., concur.", + "case_name_shorts": "", + "authors": "Robert M. Clayton III, J." }, { - "case_dates": "2014-03-04", - "case_names": "State of Missouri ex rel. Jason O. Salm, Relator v. The Honorable Chris Kunza Mennemeyer", - "download_urls": "/file.jsp?id=70661", + "case_dates": "2023-07-25", + "case_names": "State of Missouri v. Kevin Fields", + "download_urls": "/file.jsp?id=197854", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "PRELIMINARY ORDER IN MANDAMUS MADE PERMANENT. Sherri B. Sullivan, J., and Patricia L. Cohen, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100929", - "judges": "Glenn A. Norton, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110076", + "judges": "Michael E. Gardner, P.J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, J." }, { - "case_dates": "2014-03-04", - "case_names": "Richard Simmons v. State of Missouri", - "download_urls": "/file.jsp?id=70654", + "case_dates": "2023-07-25", + "case_names": "Sanford Sachtleben and Luciann Hruza v. Alliant National Title Insurance Co.", + "download_urls": "/file.jsp?id=197855", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Clifford H. Ahrens, J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99128", - "judges": "Roy L. Richter, P.J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110612", + "judges": "Lisa P. Page, P.J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Thomas C. Clark II, J." }, { - "case_dates": "2014-03-04", - "case_names": "Morion S. Dawson v. State of Missouri", - "download_urls": "/file.jsp?id=70660", + "case_dates": "2023-07-25", + "case_names": "Orthopedic Ambulatory Surgery Center of Chesterfield, LLC, and Chesterfield Spine Center, LLC v. Sharpe Holdings, Inc.", + "download_urls": "/file.jsp?id=197856", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Robert M. Clayton III, C.J., and Karl A.W. DeMarce, S.J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100276", - "judges": "Gary M. Gaertner, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110859", + "judges": "Kelly C. Broniec, C.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-03-04", - "case_names": "Biri M. Blevins, John T. Busey, and Charles W. Jones v. American Family Mutual Insurance Company and Janey Foust", - "download_urls": "/file.jsp?id=70693", + "case_dates": "2023-07-25", + "case_names": "Julius Copeland v. WRBM, LLC, d/b/a Western Rivers Boat Management, Inc.", + "download_urls": "/file.jsp?id=197857", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED IN PART AND AFFIRMED IN PART. Roy L. Richter, J., and Gary M. Gaertner, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99852", - "judges": "Robert M. Clayton III, C.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111141", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." }, { - "case_dates": "2014-03-04", - "case_names": "Arbab Adum v. St. Louis Metropolitan Police Department", - "download_urls": "/file.jsp?id=70658", + "case_dates": "2023-07-18", + "case_names": "State of Missouri v. Leron Robinson", + "download_urls": "/file.jsp?id=197614", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED. Lawrence E. Mooney, P.J., concurs in result. Sherri B. Sullivan, J., concurs.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99909", - "judges": "Robert G. Dowd, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110585", + "judges": "Kelly C. Broniec, C.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-02-25", - "case_names": "State of Missouri v. Paul Curtis White", - "download_urls": "/file.jsp?id=70415", + "case_dates": "2023-07-18", + "case_names": "State of Missouri v. Dexter Wiggley", + "download_urls": "/file.jsp?id=197616", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J. and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99033", - "judges": "Robert G. Dowd, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110950", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." }, { - "case_dates": "2014-02-25", - "case_names": "State of Missouri v. Darion Jordan Ivy", - "download_urls": "/file.jsp?id=70414", + "case_dates": "2023-07-18", + "case_names": "State of Missouri ex rel. Willie James Nutall v. Missouri Department of Corrections", + "download_urls": "/file.jsp?id=197618", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, P.J., and Angela T. Quigless J., Concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED98978", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "REVERSED", + "docket_numbers": "ED111143", + "judges": "Kelly C. Broniec, C.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-02-25", - "case_names": "State of Missouri ex rel. Michael Lovelace, Relator v. Honorable Chris Kunza Mennemeyer, Judge of the Circuit Court of Lincoln County, Missouri", - "download_urls": "/file.jsp?id=70426", + "case_dates": "2023-07-18", + "case_names": "Old Navy, LLC v. South Lakeview Plaza I, LLC", + "download_urls": "/file.jsp?id=197619", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "PRELIMINARY ORDER IN MANDAMUS MADE PERMANENT. Glenn A. Norton, J. and Gary M. Gaertner, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100782", - "judges": "Lawrence E. Mooney, P.J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED IN PART AND AFFIRMED IN PART", + "docket_numbers": "ED111214", + "judges": "Kelly C. Broniec, C.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." }, { - "case_dates": "2014-02-25", - "case_names": "State of Missouri ex rel. Ernest Kizer, Relator v. Honorable Chris Kunza Mennemeyer, Judge of the Circuit Court of Lincoln County, Missouri", - "download_urls": "/file.jsp?id=70427", + "case_dates": "2023-07-18", + "case_names": "Jessica Huett v. Kent Branson, M.D.", + "download_urls": "/file.jsp?id=197617", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "PRELIMINARY ORDER IN MANDAMUS MADE PERMANENT. Glenn A. Norton, J. and Gary M. Gaertner, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100826", - "judges": "Lawrence E. Mooney, P.J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110991", + "judges": "Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, J." }, { - "case_dates": "2014-02-25", - "case_names": "Romell Bates v. State of Missouri", - "download_urls": "/file.jsp?id=70425", + "case_dates": "2023-07-18", + "case_names": "Hemant Godara v. Guari Singh", + "download_urls": "/file.jsp?id=197615", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J. and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100153", - "judges": "Robert G. Dowd, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110648", + "judges": "Kelly C. Broniec, C.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-02-25", - "case_names": "Manuel Burgess v. State of Missouri", - "download_urls": "/file.jsp?id=70416", + "case_dates": "2023-07-11", + "case_names": "David Duvall v. James Ray Maxey", + "download_urls": "/file.jsp?id=197393", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lisa S. Van Amburg, P.J., and Philip M. Hess, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99440", - "judges": "Patricia L. Cohen, J.", - "case_name_shorts": "" + "dispositions": "DISMISSED", + "docket_numbers": "ED111144", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." }, { - "case_dates": "2014-02-25", - "case_names": "Karl Gardner v. MERS/Missouri Goodwill Industries, and Division of Employment Security", - "download_urls": "/file.jsp?id=70423", + "case_dates": "2023-06-30", + "case_names": "State of Missouri v. Ashley Colville", + "download_urls": "/file.jsp?id=197135", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "APPEAL DISMISSED. Roy L. Richter, P.J. and Clifford H. Ahrens, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99914", - "judges": "Glenn A. Norton, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110771", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-02-25", - "case_names": "Jonathan Joyner v. State of Missouri", - "download_urls": "/file.jsp?id=70422", + "case_dates": "2023-06-30", + "case_names": "Crown-Diversified Industries, Corp. v. Jake Zimmerman, Assessor, St. Louis County, Missouri", + "download_urls": "/file.jsp?id=197134", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J. and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99869", - "judges": "Robert G. Dowd, Jr., J.", - "case_name_shorts": "" + "dispositions": "REVERSED", + "docket_numbers": "ED110120", + "judges": "Kurt S. Odenwald, P.J., and Kelly C. Broniec, J., concur.", + "case_name_shorts": "", + "authors": "Thomas C. Clark II, J." }, { - "case_dates": "2014-02-25", - "case_names": "John J. Smith v. Lora J. Smith", - "download_urls": "/file.jsp?id=70421", + "case_dates": "2023-06-27", + "case_names": "Tamell Campbell v. State of Missouri", + "download_urls": "/file.jsp?id=196958", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "DISMISSED. Lawrence E. Mooney, P.J. and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99868", - "judges": "Robert G. Dowd, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110661", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-02-25", - "case_names": "John F. Maness v. City of De Soto and Missouri Intergovernmental Risk Management Association, and Treasurer of Missouri as Custodian of the Second Injury Fund", - "download_urls": "/file.jsp?id=70424", + "case_dates": "2023-06-27", + "case_names": "Tabatha Moore v. Dennis Crocker and One Stop Muffler", + "download_urls": "/file.jsp?id=196962", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, P.J. and Kurt S. Odenwald, J., Concurs.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100074", - "judges": "Angela T. Quigless, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111163", + "judges": "Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, J." }, { - "case_dates": "2014-02-25", - "case_names": "Gavin Hauk v. Scotland County Commission and It's Commissioners: Charles Harris, Jr., David Wiggins and Danette Clatt in their Official Capacities", - "download_urls": "/file.jsp?id=70419", + "case_dates": "2023-06-27", + "case_names": "State of Missouri v. Troy Jackson-Bey", + "download_urls": "/file.jsp?id=196954", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "WE AFFIRM. Clifford H. Ahrens, J. and Gary M. Gaertner, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99724", - "judges": "Robert M. Clayton III, C.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110308", + "judges": "Lisa P. Page, P.J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Thomas C. Clark II, J." }, { - "case_dates": "2014-02-25", - "case_names": "Danin Gray v. Division of Employment Security", - "download_urls": "/file.jsp?id=70420", + "case_dates": "2023-06-27", + "case_names": "State of Missouri v. Oscar Garner", + "download_urls": "/file.jsp?id=196955", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J. and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99858", - "judges": "Robert G. Dowd, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110405", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." }, { - "case_dates": "2014-02-25", - "case_names": "Antonio Jackson v. State of Missouri", - "download_urls": "/file.jsp?id=70418", + "case_dates": "2023-06-27", + "case_names": "State of Missouri v. Christopher D. Robertson", + "download_urls": "/file.jsp?id=196956", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, P.J., and Angela T. Quigless, J., Concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99651", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110552", + "judges": "Kelly C. Broniec, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." }, { - "case_dates": "2014-02-25", - "case_names": "A.L.C. v. D.A.L.", - "download_urls": "/file.jsp?id=70417", + "case_dates": "2023-06-27", + "case_names": "State of Missouri v. Christopher C. Pool, Jr.", + "download_urls": "/file.jsp?id=196957", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Roy L. Richter, P.J. and Clifford H. Ahrens, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99566", - "judges": "Glenn A. Norton, J.", - "case_name_shorts": "A.L.C." + "dispositions": "AFFIRMED", + "docket_numbers": "ED110620", + "judges": "Michael E. Gardner, C.J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, J." }, { - "case_dates": "2014-02-18", - "case_names": "Trudy A. Zahn, Appellant/Cross-Respondent v. Charles W. Zahn, Respondent/Cross-Appellant.", - "download_urls": "/file.jsp?id=70137", + "case_dates": "2023-06-27", + "case_names": "Orin Wallace, and Donna Wallace v. Michael P. Byrne", + "download_urls": "/file.jsp?id=196959", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED IN PART AND REVERSED AND REMANDED IN PART. Lisa S. Van Amburg, P.J. and Patricia L. Cohen, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99950", - "judges": "Gary M. Gaertner, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED AND REMANDED", + "docket_numbers": "ED110783", + "judges": "Gary M. Gaertner, Jr., P.J., concurs. John P. Torbitzky, J., concurs in a separate opinion.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." }, { - "case_dates": "2014-02-18", - "case_names": "Thomas Binkley, Harlene J. Binkley, Roland E. Sturhahn, and Susan J. Sturhahn v. American Equity Mortgage, Inc.", - "download_urls": "/file.jsp?id=70138", + "case_dates": "2023-06-27", + "case_names": "L.A.C. v. R.A.P.", + "download_urls": "/file.jsp?id=196960", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lisa S. Van Amburg, P.J., and Gary M. Gaertner, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100044", - "judges": "Patricia L. Cohen, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110930", + "judges": "Philip M. Hess, J., and James M. Dowd, J., concur.", + "case_name_shorts": "L.A.C.", + "authors": "Kelly C. Broniec, P.J." }, { - "case_dates": "2014-02-18", - "case_names": "State of Missouri, Plaintiff/Respondent v. Claude Dale Brooks", - "download_urls": "/file.jsp?id=70133", + "case_dates": "2023-06-27", + "case_names": "In the Matter of the Foreclosure of Liens for Delinquent Land Taxes by Action in Rem, City of St. Louis, Mo. v. Parcels of Land Encumbered with Delinquent Tax Liens", + "download_urls": "/file.jsp?id=196961", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "VACATED AND REMANDED. Patricia L. Cohen, Judge, concurs. Gary M. Gaertner, Jr., Judge, dissents in separate opinion.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99427", - "judges": "Lisa S. Van Amburg, J.", - "case_name_shorts": "" + "dispositions": "DISMISSED", + "docket_numbers": "ED111094", + "judges": "Philip M. Hess, J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Kelly C. Broniec, P.J." }, { - "case_dates": "2014-02-18", - "case_names": "State of Missouri v. Leonard M. Slocum", - "download_urls": "/file.jsp?id=70135", + "case_dates": "2023-06-20", + "case_names": "State of Missouri v. Marcell Foster", + "download_urls": "/file.jsp?id=196754", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lisa S. Van Amburg, P.J., and Philip M. Hess, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99712", - "judges": "Patricia L. Cohen, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110489", + "judges": "Michael E. Gardner, C.J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, J." }, { - "case_dates": "2014-02-18", - "case_names": "Stacey L. Blackshear, Claimant/Respondent v. Adecco, Employer/Respondent, and American Home Assurance Company c/o Broadspire Services, Inc., and Treasurer of the State of Missouri, Custodian of the Second Injury Fund", - "download_urls": "/file.jsp?id=70139", + "case_dates": "2023-06-20", + "case_names": "State of Missouri v. Garry Denson", + "download_urls": "/file.jsp?id=196757", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J., and Robert G. Dowd, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100251", - "judges": "Sherri B. Sullivan, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110690", + "judges": "John P. Torbitzky, J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "Gary M. Gaertner, Jr., P.J." }, { - "case_dates": "2014-02-18", - "case_names": "Larry Abt, Claimant/Appellant v. Mississippi Lime Company, Employer/Respondent, and Treasurer of Missouri as Custodian of the Second Injury Fund, Additional Party/Respondent.", - "download_urls": "/file.jsp?id=70136", + "case_dates": "2023-06-20", + "case_names": "L.E.C. v. K.R.C.", + "download_urls": "/file.jsp?id=196755", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED IN PART AND AFFIRMED IN PART. Robert G. Dowd, Jr., J., and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99779", - "judges": "Lawrence E. Mooney, P.J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110515", + "judges": "Sherri B. Sullivan, J., and Robert M. Clayton III, J., concur.", + "case_name_shorts": "L.E.C.", + "authors": "Angela T. Quigless, P.J." }, { - "case_dates": "2014-02-18", - "case_names": "John Doe v. Col. Daniel Isom", - "download_urls": "/file.jsp?id=70134", + "case_dates": "2023-06-20", + "case_names": "In the Interest of: D.J.S.", + "download_urls": "/file.jsp?id=196756", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Clifford H. Ahrens, J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99707", - "judges": "Roy L. Richter, P.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110652", + "judges": "Michael E. Gardner, C.J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, J." }, { - "case_dates": "2014-02-11", - "case_names": "State of Missouri, Plaintiff/Respondent v. Robert Baker", - "download_urls": "/file.jsp?id=70000", + "case_dates": "2023-06-20", + "case_names": "Carly Munoz v. Six Flags St. Louis, LLC d/b/a Six Flags St. Louis and John/Jane Doe", + "download_urls": "/file.jsp?id=196759", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J., and Robert G. Dowd, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99555", - "judges": "Sherri B. Sullivan, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111118", + "judges": "Angela T. Quigless, P.J., and Robert M. Clayton III, J., concur.", + "case_name_shorts": "", + "authors": "Sherri B. Sullivan, J." }, { - "case_dates": "2014-02-11", - "case_names": "State of Missouri, Plaintiff/Respondent v. Christopher Sonnier", - "download_urls": "/file.jsp?id=69996", + "case_dates": "2023-06-20", + "case_names": "Barbara S. Thomas v. Emir Ramushi", + "download_urls": "/file.jsp?id=196758", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Patricia L. Cohen, J., and Philip M. Hess, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED98875", - "judges": "Lisa S. Van Amburg, J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED111064", + "judges": "Kelly C. Broniec, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." }, { - "case_dates": "2014-02-11", - "case_names": "State of Missouri, Plaintiff/Respondent v. Chris Edward Reed", - "download_urls": "/file.jsp?id=69999", + "case_dates": "2023-06-13", + "case_names": "Tyler Hollis, a Minor By and Through His Next Friend, Mother and Conservator, Karen Hollis v. Poplar Bluff Regional Medical Center, LLC", + "download_urls": "/file.jsp?id=196599", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J., and Robert G. Dowd, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99531", - "judges": "Sherri B. Sullivan, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110884", + "judges": "Thomas C. Clark, II, J., and William L. Syler, S.J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, P.J." }, { - "case_dates": "2014-02-11", - "case_names": "Richard Burton and Patricia Burton v. Janice Klaus", - "download_urls": "/file.jsp?id=69995", + "case_dates": "2023-06-13", + "case_names": "State of Missouri v. Gerardo Gonzalez, Sr.", + "download_urls": "/file.jsp?id=196595", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "DISMISSED. Mary K. Hoff,P.J., and Angela T. Quigless, J., Concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED98171", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110580", + "judges": "John P. Torbitzky, J., concurs. Gary M. Gaertner, Jr., P.J., concurs in the result only.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." }, { - "case_dates": "2014-02-11", - "case_names": "John T. Haidul v. State of Missouri", - "download_urls": "/file.jsp?id=69997", + "case_dates": "2023-06-13", + "case_names": "State of Missouri v. Adam Craft", + "download_urls": "/file.jsp?id=196594", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, P.J., and Kurt S. Odenwald, J., Concurs.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99319", - "judges": "Angela T. Quigless, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110314", + "judges": "Lisa P. Page, P.J., and Thomas C. Clark II, J., concur.", + "case_name_shorts": "", + "authors": "Renee D. Hardin-Tammons, J." }, { - "case_dates": "2014-02-11", - "case_names": "James Moore v. State of Missouri", - "download_urls": "/file.jsp?id=70001", + "case_dates": "2023-06-13", + "case_names": "Ronald D. Ruff v. Bequette Construction, Inc.", + "download_urls": "/file.jsp?id=196596", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "DISMISSED. Clifford H. Ahrens, J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99615", - "judges": "Roy L. Richter, P.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110707", + "judges": "Kelly C. Broniec, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." }, { - "case_dates": "2014-02-11", - "case_names": "Genevieve-Anne Gaudreau v. Richard A. Barnes", - "download_urls": "/file.jsp?id=69998", + "case_dates": "2023-06-13", + "case_names": "Nicole E. Williams v. Bryan L. Williams", + "download_urls": "/file.jsp?id=196598", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Clifford H. Ahrens, J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99452", - "judges": "Roy L. Richter, P.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110866", + "judges": "Philip M. Hess, J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Kelly C. Broniec, P.J." }, { - "case_dates": "2014-02-11", - "case_names": "Christopher J. Ivory, Movant/Appellant v. State of Missouri", - "download_urls": "/file.jsp?id=70002", + "case_dates": "2023-06-13", + "case_names": "Jimmy D. Cook v. Parkland Health Center, and Dr. Lawrence Brown", + "download_urls": "/file.jsp?id=196600", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Kurt S. Odenwald, J., and Angela T. Quigless, J., Concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99916", - "judges": "Mary K. Hoff, P.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111044", + "judges": "Michael E. Gardner, C.J., and Thomas C. Clark, II, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, J." }, { - "case_dates": "2014-02-11", - "case_names": "Cheryl Hirsch, Employee/Appellant v. Convergys Customer Management Group, Inc., Employer/Respondent, and Division of Employment Security, Respondent/Respondent.", - "download_urls": "/file.jsp?id=70003", + "case_dates": "2023-06-13", + "case_names": "Donald Placke, Jr. v. The City of Sunset Hills, Missouri, City of Sunset Hills Board of Adjustment, Patricia Fribis, Ryan Patton, and William Weber", + "download_urls": "/file.jsp?id=196597", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Lawrence E. Mooney, P.J., and Robert G. Dowd, Jr., J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99945", - "judges": "Sherri B. Sullivan, J.", - "case_name_shorts": "" + "dispositions": "DISMISSED", + "docket_numbers": "ED110799", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-02-11", - "case_names": "Bank of America, N.A. v. Ronald Duff d/b/a Ron Duff Video Productions and Jo Duff", - "download_urls": "/file.jsp?id=70004", + "case_dates": "2023-06-06", + "case_names": "Tammy A. Morre v. Missouri Gaming Commission and Division of Employment Security", + "download_urls": "/file.jsp?id=196280", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, P.J., and Kurt S. Odenwald, J., Concurs.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99989", - "judges": "Angela T. Quigless, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111031", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-02-04", - "case_names": "Karen Hidritch-Hamann v. David Hidritch and Hidritch Properties, LLC", - "download_urls": "/file.jsp?id=69783", + "case_dates": "2023-06-06", + "case_names": "Michael Feldman v. Patrish, L.L.C., d/b/a Northwest Airport Inn, John Stillwell, Naresh Patel, and Robert Reichenbach", + "download_urls": "/file.jsp?id=196277", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "DISMISSED. Mary K. Hoff,P.J., and Angela T. Quigless, J., Concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100008", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110737", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." }, { - "case_dates": "2014-01-28", - "case_names": "State of Missouri v. George Turner", - "download_urls": "/file.jsp?id=69594", + "case_dates": "2023-06-06", + "case_names": "Leslie E. Cheek, Petitioner-Respondent v. Kevin R. Cheek v. Kaleb Cheek, Third-Party", + "download_urls": "/file.jsp?id=196276", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, P.J., and Angela T. Quigless J., Concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED98277", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED IN PART REVERSED AND REMANDED IN PART", + "docket_numbers": "ED110511", + "judges": "Before Angela T. Quigless, P.J., Sherri B. Sullivan, J., and Robert M. Clayton III, J.", + "case_name_shorts": "", + "authors": "PER CURIAM" }, { - "case_dates": "2014-01-28", - "case_names": "State of Missouri v. Christopher Eric Hunt", - "download_urls": "/file.jsp?id=69595", + "case_dates": "2023-06-06", + "case_names": "John Wright III v. State of Missouri", + "download_urls": "/file.jsp?id=196274", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED IN PART AND REVERSED AND REMANDED IN PART. Lawrence E. Mooney, P.J. and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99088", - "judges": "Robert G. Dowd, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110335", + "judges": "Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, J." }, { - "case_dates": "2014-01-28", - "case_names": "Rochelle Hardin v. Adecco USA, Inc., Defendant/Respondent, and Biomerieux, Inc., and Tony Dansberry", - "download_urls": "/file.jsp?id=69600", + "case_dates": "2023-06-06", + "case_names": "In the Interest of: D.G.J., Jr.", + "download_urls": "/file.jsp?id=196279", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "APPEAL DISMISSED. Robert G. Dowd, Jr., J., and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED100045", - "judges": "Lawrence E. Mooney, P.J.", - "case_name_shorts": "" + "dispositions": "AFFIRM", + "docket_numbers": "ED110993", + "judges": "Thomas C. Clark, II, J., and Renee Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." }, { - "case_dates": "2014-01-28", - "case_names": "KNT Management, LLC v. Kimberly Flenoid, Defendant/Respondent.", - "download_urls": "/file.jsp?id=69599", + "case_dates": "2023-06-06", + "case_names": "Emilee D. Williams, n/k/a Emilee Corey v. Jason Jai Williams, and Katherine Tyler", + "download_urls": "/file.jsp?id=196281", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Robert G. Dowd, Jr., J., and Sherri B. Sullivan, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99981", - "judges": "Lawrence E. Mooney, P.J.", - "case_name_shorts": "" + "dispositions": "DISMISSED", + "docket_numbers": "ED111200", + "judges": "Lisa P. Page, P.J., and Thomas C. Clark II, J., concur.", + "case_name_shorts": "", + "authors": "Renee D. Hardin-Tammons, J." }, { - "case_dates": "2014-01-28", - "case_names": "In the Matter of: T.S.D.", - "download_urls": "/file.jsp?id=69596", + "case_dates": "2023-06-06", + "case_names": "David L. Jones v. Impact Agape Ministries", + "download_urls": "/file.jsp?id=196275", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Mary K. Hoff, P.J., and Angela T. Quigless, J., Concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99499", - "judges": "Kurt S. Odenwald, J.", - "case_name_shorts": "" + "dispositions": "DISMISSED", + "docket_numbers": "ED110507", + "judges": "Philip M. Hess, J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Kelly C. Broniec, P.J." }, { - "case_dates": "2014-01-28", - "case_names": "City of Moline Acres v. Charles W. Brennan, Defendant/Respondent.", - "download_urls": "/file.jsp?id=69597", + "case_dates": "2023-06-06", + "case_names": "Behavioral Science Institute, Inc. v. Transitional Center, Inc.", + "download_urls": "/file.jsp?id=196278", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED. Patricia L. Cohen, J. and Philip M. Hess, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99787", - "judges": "Lisa S. Van Amburg, P.J.", - "case_name_shorts": "" + "dispositions": "REVERSED", + "docket_numbers": "ED110968", + "judges": "Lisa P. Page, P.J., and Thomas C. Clark, II, J., concur.", + "case_name_shorts": "", + "authors": "Renee D. Hardin-Tammons, J." }, { - "case_dates": "2014-01-27", - "case_names": "State of Missouri ex rel. Arnie C. Dienoff v. Patricia Galkowski, St. Charles County Ambulance District, and Rich A. Chrismer and St. Charles County, Missouri", - "download_urls": "/file.jsp?id=69653", + "case_dates": "2023-05-30", + "case_names": "State of Missouri v. Rachel Nixon", + "download_urls": "/file.jsp?id=195993", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Lisa S. Van Amburg, P.J., Patricia L. Cohen, J., and Gary M. Gaertner, Jr., J.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99832", - "judges": "PER CURIAM.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110548", + "judges": "James M. Dowd, J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "Gary M. Gaertner, Jr., P.J." }, { - "case_dates": "2014-01-21", - "case_names": "Phillip R. Sullins v. Snow C. Sullins", - "download_urls": "/file.jsp?id=69299", + "case_dates": "2023-05-30", + "case_names": "State of Missouri v. Karen A. Quinn", + "download_urls": "/file.jsp?id=195994", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRM IN PART REVERSE AND REMAND IN PART. Clifford H. Ahrens, J., and Glenn A. Norton, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99569", - "judges": "Roy L. Richter, P.J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110549", + "judges": "James M. Dowd, J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "Gary M. Gaertner, Jr., P.J." }, { - "case_dates": "2014-01-21", - "case_names": "Dr. John B. Weltmer, Jr. v. Signature Health Services Inc. f/k/a Premier Care, Inc., St. Louis County Orthopedic Group Inc., SLCOG Property Management & Leasing Company, LLC, and Premier Care Leasing, LLC", - "download_urls": "/file.jsp?id=69298", + "case_dates": "2023-05-30", + "case_names": "Logan R. Humphrey v. Tramar Contracting, Inc., and Division of Employment Security", + "download_urls": "/file.jsp?id=195996", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED IN PART AND AFFIRMED IN PART. Lisa S. Van Amburg, P.J. and Patricia L. Cohen, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99553", - "judges": "Gary M. Gaertner, Jr., J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED111155", + "judges": "Philip M. Hess, J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Kelly C. Broniec, P.J." }, { - "case_dates": "2014-01-21", - "case_names": "Charles Kyles v. State of Missouri", - "download_urls": "/file.jsp?id=69300", + "case_dates": "2023-05-30", + "case_names": "Anastasia Collier v. Andrea Steinbach", + "download_urls": "/file.jsp?id=195995", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "REVERSED AND REMANDED. Lisa S. Van Amburg, P.J., and Philip M. Hess, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99632", - "judges": "Patricia L. Cohen, J.", - "case_name_shorts": "" + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110937", + "judges": "Thomas C. Clark, II, J., and Renee Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." }, { - "case_dates": "2014-01-14", - "case_names": "State of Missouri v. Willie Davis", - "download_urls": "/file.jsp?id=69174", + "case_dates": "2023-05-23", + "case_names": "In the Interest of: K.M.F.", + "download_urls": "/file.jsp?id=195776", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "AFFIRMED IN PART AND REVERSED AND REMANDED IN PART. Glenn A. Norton, J. and Patricia L. Cohen, J., concur.", - "divisions": "Eastern Dist.", - "docket_numbers": "ED99135", - "judges": "Robert M. Clayton III, C.J.", - "case_name_shorts": "" + "dispositions": "AFFIRMED", + "docket_numbers": "ED110649", + "judges": "Kelly C. Broniec, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." + }, + { + "case_dates": "2023-05-23", + "case_names": "Creative Compounds, LLC v. Thermolife International, LLC", + "download_urls": "/file.jsp?id=195778", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED111095", + "judges": "Kelly C. Broniec, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." + }, + { + "case_dates": "2023-05-23", + "case_names": "Aaron D. Summers v. State of Missouri", + "download_urls": "/file.jsp?id=195777", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110896", + "judges": "John P. Torbitzky, J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "Gary M. Gaertner, Jr., P.J." + }, + { + "case_dates": "2023-05-16", + "case_names": "Walter Nickels, Movant/Appellant v. State of Missouri", + "download_urls": "/file.jsp?id=195436", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110571", + "judges": "Angela T. Quigless, P.J., and Robert M. Clayton III, J., concur.", + "case_name_shorts": "", + "authors": "Sherri B. Sullivan, J." + }, + { + "case_dates": "2023-05-16", + "case_names": "St. Louis Center for Aesthetic and Restorative Dentistry v. A. Thomas Dewoskin", + "download_urls": "/file.jsp?id=195773", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110598", + "judges": "Philip M. Hess, J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Kelly C. Broniec, P.J." + }, + { + "case_dates": "2023-05-16", + "case_names": "S.C.J.M., and B.J.J.M., By Their Next Friend, S.D.M., and S.D.M., Individually v. B.J.N.S.", + "download_urls": "/file.jsp?id=195435", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRM", + "docket_numbers": "ED110409", + "judges": "Michael E. Gardner, C.J., and Kurt S. Odenwald, J., concur.", + "case_name_shorts": "B.J.N.S.", + "authors": "Lisa P. Page, P.J." + }, + { + "case_dates": "2023-05-16", + "case_names": "M.M. v. C.S.", + "download_urls": "/file.jsp?id=195434", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED IN PART, REVERSED AND REMANDED IN PART", + "docket_numbers": "ED110317", + "judges": "John P. Torbitzky, J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "M.M.", + "authors": "Gary M. Gaertner, Jr., P.J." + }, + { + "case_dates": "2023-05-16", + "case_names": "Levi D. Lauck v. State of Missouri", + "download_urls": "/file.jsp?id=195439", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110619", + "judges": "Thomas C. Clark, II, J., and Renee Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." + }, + { + "case_dates": "2023-05-16", + "case_names": "Herbert Morrison v. Karen Goodwin, City Clerk for the City of Florissant, Missouri", + "download_urls": "/file.jsp?id=195440", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "DISMISSED", + "docket_numbers": "ED110776", + "judges": "Michael E. Gardner, C.J., and Robert M. Clayton III, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, J." + }, + { + "case_dates": "2023-05-16", + "case_names": "Brian Scott Lewis v. Sara Marie (Hartsock) Lewis", + "download_urls": "/file.jsp?id=195437", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED IN PART AND REVERSED AND REMANDED IN PART", + "docket_numbers": "ED110596", + "judges": "Robert M. Clayton III, J., and Lisa P. Page, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, P.J." + }, + { + "case_dates": "2023-05-16", + "case_names": "Aaron Roesch v. Aaron Birch-Edmundson", + "download_urls": "/file.jsp?id=195441", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "DISMISSED", + "docket_numbers": "ED111018", + "judges": "Kurt S. Odenwald, J., and Thomas C. Clark, II, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." + }, + { + "case_dates": "2023-05-09", + "case_names": "Yes Chancellor Farms, LLC, Plaintiff/Respondent v. Vicki Merkel", + "download_urls": "/file.jsp?id=195303", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED IN PART AND REVERSED IN PART", + "docket_numbers": "ED111217", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." + }, + { + "case_dates": "2023-05-09", + "case_names": "Vicki Shad-Schaefer, Individually, and Vicki Shade-Schaefer on Behalf of the Estate of Wayne Schaefer, Christopher Schaefer, and Stephanie Schaefer v. City of Eureka, Robert Wade, and Richard Green", + "download_urls": "/file.jsp?id=195297", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED IN PART AFFIRMED IN PART", + "docket_numbers": "ED110581", + "judges": "Kelly C. Broniec, P.J., and Lisa P. Page, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." + }, + { + "case_dates": "2023-05-09", + "case_names": "State of Missouri v. Jesse E. Callaway", + "download_urls": "/file.jsp?id=195301", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110964", + "judges": "Philip M. Hess, J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Kelly C. Broniec, P.J." + }, + { + "case_dates": "2023-05-09", + "case_names": "State of Missouri v. Eric Lawson", + "download_urls": "/file.jsp?id=195295", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED109743", + "judges": "Angela T. Quigless, P.J., and Laura Denvir Stith, Sp.J., concur.", + "case_name_shorts": "", + "authors": "Sherri B. Sullivan, J." + }, + { + "case_dates": "2023-05-09", + "case_names": "Sharon Dash, Bill Blacksher, and Cynthia Sowell, as Trustees of Riverwood Estates Homeowners Association v. Ada Taylor", + "download_urls": "/file.jsp?id=195299", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED IN PART REVERSED IN PART", + "docket_numbers": "ED110838", + "judges": "Angela T. Quigless, P.J., and Robert M. Clayton III, J., concur.", + "case_name_shorts": "", + "authors": "Sherri B. Sullivan, J." + }, + { + "case_dates": "2023-05-09", + "case_names": "In the Interest of: T.P.", + "download_urls": "/file.jsp?id=195298", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110623", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." + }, + { + "case_dates": "2023-05-09", + "case_names": "In the Interest of: E.R.M.S., T.M.D.S., and Z.W.D.S.", + "download_urls": "/file.jsp?id=195302", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED111003", + "judges": "Michael E. Gardner, C.J., and Robert M. Clayton III, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, J." + }, + { + "case_dates": "2023-05-09", + "case_names": "CIBC Bank USA and CIBC National Trust Company v. Christopher William", + "download_urls": "/file.jsp?id=195296", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110284", + "judges": "Angela T. Quigless, P.J., and Sherri B. Sullivan, J., concur.", + "case_name_shorts": "", + "authors": "Robert M. Clayton III, J." + }, + { + "case_dates": "2023-05-02", + "case_names": "State of Missouri v. Tyrone Valentine", + "download_urls": "/file.jsp?id=195094", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110295", + "judges": "Kelly C. Broniec, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." + }, + { + "case_dates": "2023-05-02", + "case_names": "Paul E. Jinkerson, Jr. v. State of Missouri", + "download_urls": "/file.jsp?id=195095", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110518", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." + }, + { + "case_dates": "2023-05-02", + "case_names": "LT Group USA, LLC v. Mounanet Clark", + "download_urls": "/file.jsp?id=195096", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "DISMISSED", + "docket_numbers": "ED110910", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." + }, + { + "case_dates": "2023-04-25", + "case_names": "State of Missouri v. Mark Aaron", + "download_urls": "/file.jsp?id=194855", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110394", + "judges": "Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, J." + }, + { + "case_dates": "2023-04-25", + "case_names": "State of Missouri v. Haverley Bracy", + "download_urls": "/file.jsp?id=194854", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED109927", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." + }, + { + "case_dates": "2023-04-25", + "case_names": "In the Interest of: A.O.B.", + "download_urls": "/file.jsp?id=194857", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110921", + "judges": "Kelly C. Broniec, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." + }, + { + "case_dates": "2023-04-18", + "case_names": "State of Missouri v. Jennifer A. Heidbrink", + "download_urls": "/file.jsp?id=194599", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110697", + "judges": "Michael E. Gardner, C.J., and Gary M. Gaertner, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, J." + }, + { + "case_dates": "2023-04-18", + "case_names": "State of Missouri v. James S. Murphy", + "download_urls": "/file.jsp?id=194597", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "APPEAL DISMISSED", + "docket_numbers": "ED110600", + "judges": "Angela T. Quigless, P.J., and Sherri B. Sullivan, J., concur.", + "case_name_shorts": "", + "authors": "Robert M. Clayton III, J." + }, + { + "case_dates": "2023-04-18", + "case_names": "State of Missouri v. Chicory Griffin", + "download_urls": "/file.jsp?id=194595", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110282", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." + }, + { + "case_dates": "2023-04-18", + "case_names": "Rachel Sender v. City of St. Louis", + "download_urls": "/file.jsp?id=194600", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSE AND REMAND", + "docket_numbers": "ED110898", + "judges": "Thomas C. Clark, II, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Renee D. Hardin-Tammons, J." + }, + { + "case_dates": "2023-04-18", + "case_names": "Jessica Stacy and Brian Stacy v. The Bar Plan Mutual Insurance Company", + "download_urls": "/file.jsp?id=194598", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110678", + "judges": "Lisa P. Page, P.J., and Thomas C. Clark, II, J., concur.", + "case_name_shorts": "", + "authors": "Renee D. Hardin-Tammons, J." + }, + { + "case_dates": "2023-04-18", + "case_names": "In the Interest of: J.K.M.", + "download_urls": "/file.jsp?id=194594", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRM", + "docket_numbers": "ED110278", + "judges": "Thomas C. Clark, II, J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." + }, + { + "case_dates": "2023-04-18", + "case_names": "Hubert L. Harris v. State of Missouri", + "download_urls": "/file.jsp?id=194596", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110449", + "judges": "Thomas C. Clark, II, J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." + }, + { + "case_dates": "2023-04-11", + "case_names": "State of Missouri v. Daniel Ray Robertson", + "download_urls": "/file.jsp?id=194354", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110046", + "judges": "Michael E. Gardner, C.J., and Gary M. Gaertner, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, J." + }, + { + "case_dates": "2023-04-11", + "case_names": "Jamie A. Marx v. Division of Employment Security", + "download_urls": "/file.jsp?id=194356", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110579", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." + }, + { + "case_dates": "2023-04-11", + "case_names": "Daniel McCullen v. Matthew P. O'Grady", + "download_urls": "/file.jsp?id=194357", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110811", + "judges": "Angela T. Quigless, P.J., and Sherri B. Sullivan, J., concur.", + "case_name_shorts": "", + "authors": "Robert M. Clayton III, J." + }, + { + "case_dates": "2023-04-11", + "case_names": "Andrew Denney v. Syberg's Westport, Inc., d/b/a Syberg's", + "download_urls": "/file.jsp?id=194355", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110498", + "judges": "Sherri B. Sullivan, P.J., and Laura D. Stith, Sp.J., concur.", + "case_name_shorts": "", + "authors": "Renee D. Hardin-Tammons, J." + }, + { + "case_dates": "2023-04-04", + "case_names": "St. Louis Police Officer's Association v. St. Louis County", + "download_urls": "/file.jsp?id=194099", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110948", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." + }, + { + "case_dates": "2023-04-04", + "case_names": "Mikala E. Harris v. David W. Harris, Jr.", + "download_urls": "/file.jsp?id=194098", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED IN PART REVERSED IN PART AND REMANDED", + "docket_numbers": "ED110533", + "judges": "Angela T. Quigless, P.J., and Robert M. Clayton III, J., concur.", + "case_name_shorts": "", + "authors": "Sherri B. Sullivan, J." + }, + { + "case_dates": "2023-03-28", + "case_names": "Thomas M. Bruns v. Courtney C. Bruns", + "download_urls": "/file.jsp?id=193694", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110124", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." + }, + { + "case_dates": "2023-03-28", + "case_names": "M.S. Bracely-Mosley v. Hunter Engineering Co.", + "download_urls": "/file.jsp?id=194095", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110687", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." + }, + { + "case_dates": "2023-03-28", + "case_names": "Donte McGary v. State of Missouri", + "download_urls": "/file.jsp?id=193695", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110408", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." + }, + { + "case_dates": "2023-03-28", + "case_names": "Darnell Hollings v. State of Missouri", + "download_urls": "/file.jsp?id=193699", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110767", + "judges": "Kelly C. Broniec, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." + }, + { + "case_dates": "2023-03-28", + "case_names": "Clayton D. Reehten v. State of Missouri", + "download_urls": "/file.jsp?id=193696", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110538", + "judges": "Kelly C. Broniec, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." + }, + { + "case_dates": "2023-03-28", + "case_names": "Brian C. Lee v. State of Missouri", + "download_urls": "/file.jsp?id=193698", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110693", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." + }, + { + "case_dates": "2023-03-21", + "case_names": "Smaila Mujakic v. Division of Employment Security", + "download_urls": "/file.jsp?id=193477", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110805", + "judges": "Angela T. Quigless, P.J., and Robert M. Clayton III, J., concur.", + "case_name_shorts": "", + "authors": "Sherri B. Sullivan, J." + }, + { + "case_dates": "2023-03-21", + "case_names": "O.H.B. and E.K.B., by Next Friend S.M.B., and S.M.B., Individually v. L.Y.S.", + "download_urls": "/file.jsp?id=193474", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110427", + "judges": "Lisa P. Page, P.J., and Thomas C. Clark II, J., concur.", + "case_name_shorts": "L.Y.S.", + "authors": "Renee D. Hardin-Tammons, J." + }, + { + "case_dates": "2023-03-21", + "case_names": "Leland Dent v. State of Missouri", + "download_urls": "/file.jsp?id=193475", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110430", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." + }, + { + "case_dates": "2023-03-21", + "case_names": "Dorsey Thompson, Claimant/Appellant v. Special School District of St. Louis County, MO. Educational Facilities Authority and Division of Employment Security", + "download_urls": "/file.jsp?id=193478", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "DISMISSED", + "docket_numbers": "ED110852", + "judges": "Robert M. Clayton III, J., and Sherri B. Sullivan, J., concur.", + "case_name_shorts": "", + "authors": "Angela T. Quigless, P.J." + }, + { + "case_dates": "2023-03-21", + "case_names": "Debbie M. Earley v. Mary V. Dunn", + "download_urls": "/file.jsp?id=193476", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110514", + "judges": "Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, J." + }, + { + "case_dates": "2023-03-14", + "case_names": "State of Missouri v. Stephen Craig Ingram", + "download_urls": "/file.jsp?id=193274", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110207", + "judges": "Angela T. Quigless, P.J., and Sherri B. Sullivan, J., concur.", + "case_name_shorts": "", + "authors": "Robert M. Clayton III, J." + }, + { + "case_dates": "2023-03-14", + "case_names": "Liora Tech, Inc. v. United Medical Network, Inc., and Alan M. Kneller", + "download_urls": "/file.jsp?id=193275", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110668", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." + }, + { + "case_dates": "2023-03-07", + "case_names": "Stephanie Clark v. SSM Healthcare St. Louis, d/b/a SSM Health St. Joseph Hospital, Wentzville, Dawn Holemon, M.D., Lee M. Freund, D.O., and St. Charles Emergency Group, LLC.", + "download_urls": "/file.jsp?id=193099", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED", + "docket_numbers": "ED110638", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." + }, + { + "case_dates": "2023-03-07", + "case_names": "State of Missouri v. Thomas Clement", + "download_urls": "/file.jsp?id=193098", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "VACATED AND REMANDED", + "docket_numbers": "ED110406", + "judges": "Michael E. Gardner, C.J., and Kelly C. Broniec, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, J." + }, + { + "case_dates": "2023-03-07", + "case_names": "State of Missouri v. Michael Allen Black", + "download_urls": "/file.jsp?id=193096", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110114", + "judges": "Lisa P. Page, P.J., and Thomas C. Clark II, J., concur.", + "case_name_shorts": "", + "authors": "Renee D. Hardin-Tammons, J." + }, + { + "case_dates": "2023-03-07", + "case_names": "State of Missouri v. Eugene P. Hampton", + "download_urls": "/file.jsp?id=193097", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110252", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." + }, + { + "case_dates": "2023-03-07", + "case_names": "Karla K. Allsberry v. Judge Patrick S. Flynn, In His Individual Capacity", + "download_urls": "/file.jsp?id=193100", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "DISMISSED", + "docket_numbers": "ED110744", + "judges": "Thomas C. Clark, II, J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." + }, + { + "case_dates": "2023-02-28", + "case_names": "State of Missouri v. Todd R. Shepard", + "download_urls": "/file.jsp?id=192817", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110268", + "judges": "Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, J." + }, + { + "case_dates": "2023-02-28", + "case_names": "Progressive Casualty Insurance Company v. Kenneth Moore, and Lashun Givands", + "download_urls": "/file.jsp?id=192820", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "DISMISSED", + "docket_numbers": "ED110432", + "judges": "Michael E. Gardner, C.J., and Kelly C. Broniec, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, J." + }, + { + "case_dates": "2023-02-28", + "case_names": "Mo Cann Do, Inc. v. Missouri Department of Health and Senior Services", + "download_urls": "/file.jsp?id=192819", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED", + "docket_numbers": "ED110329", + "judges": "Philip M. Hess, J., concurs, and Judge Kelly C. Broniec dissents in separate opinion.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." + }, + { + "case_dates": "2023-02-28", + "case_names": "Melanie L. Hill v. S.M. Huber Enterprises, Inc., and Division of Employment Security", + "download_urls": "/file.jsp?id=192823", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110563", + "judges": "Michael E. Gardner, C.J., and Kelly C. Broniec, J., concur.", + "case_name_shorts": "", + "authors": "Kurt S. Odenwald, J." + }, + { + "case_dates": "2023-02-28", + "case_names": "John J. Benoist, Jr. v. Westin Trading, Inc., and Division of Employment Security", + "download_urls": "/file.jsp?id=192824", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110753", + "judges": "Philip M. Hess, J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Kelly C. Broniec, P.J." + }, + { + "case_dates": "2023-02-28", + "case_names": "Isaiah Forman v. State of Missouri", + "download_urls": "/file.jsp?id=192818", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110319", + "judges": "Lisa P. Page, P.J., and Thomas C. Clark II, J., concur.", + "case_name_shorts": "", + "authors": "Renee D. Hardin-Tammons, J." + }, + { + "case_dates": "2023-02-28", + "case_names": "Iria Hapsari Kline v. Division of Employment Security", + "download_urls": "/file.jsp?id=192822", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110502", + "judges": "Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, J." + }, + { + "case_dates": "2023-02-28", + "case_names": "Iria Hapsari Kline v. Division of Employment Security", + "download_urls": "/file.jsp?id=192821", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110500", + "judges": "Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, J." + }, + { + "case_dates": "2023-02-21", + "case_names": "N.M.C., Petitioner/Respondent v. Missouri State Highway Patrol Criminal Records Repository, and Creve Coeur Municipal Police Department, City of Creve Coeur Municipal Court, City of Chesterfield Municipal Division, St. Louis County Prosecuting Attorney, St. Louis County Circuit Court Division 32, Chesterfield Municipal Police Department, and St. Louis County Police Department", + "download_urls": "/file.jsp?id=192637", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110683", + "judges": "Sherri B. Sullivan, J., and Robert M. Clayton III, J., concur.", + "case_name_shorts": "", + "authors": "Angela T. Quigless, P.J." + }, + { + "case_dates": "2023-02-21", + "case_names": "Megan L. Hendricks, Movant/Appellant v. State of Missouri", + "download_urls": "/file.jsp?id=192634", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110418", + "judges": "Angela T. Quigless, P.J., and Robert M. Clayton III, J., concur.", + "case_name_shorts": "", + "authors": "Sherri B. Sullivan, J." + }, + { + "case_dates": "2023-02-21", + "case_names": "Markell D. Jackson v. State of Missouri", + "download_urls": "/file.jsp?id=192635", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110501", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." + }, + { + "case_dates": "2023-02-21", + "case_names": "In the Interest of: F.S.K., a minor.", + "download_urls": "/file.jsp?id=192638", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110706", + "judges": "Sherri B. Sullivan, J., and Robert M. Clayton III, J., concur.", + "case_name_shorts": "", + "authors": "Angela T. Quigless, P.J." + }, + { + "case_dates": "2023-02-21", + "case_names": "Antoine Watkins v. State of Missouri", + "download_urls": "/file.jsp?id=192636", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110551", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." + }, + { + "case_dates": "2023-02-14", + "case_names": "Sharon Dash v. Tressa Mitchell", + "download_urls": "/file.jsp?id=192419", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED", + "docket_numbers": "ED110698", + "judges": "Kelly C. Broniec, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." + }, + { + "case_dates": "2023-02-14", + "case_names": "Robin L. Mecey v. Harps Food Stores, Inc., and Division of Employment Security", + "download_urls": "/file.jsp?id=192420", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "DISMISSED", + "docket_numbers": "ED110701", + "judges": "Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Cristian M. Stevens, J." + }, + { + "case_dates": "2023-02-14", + "case_names": "Keith Lewis v. State of Missouri, Second Injury Fund", + "download_urls": "/file.jsp?id=192421", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "DISMISSED", + "docket_numbers": "ED110715", + "judges": "Kelly C. Broniec, P.J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Philip M. Hess, J." + }, + { + "case_dates": "2023-02-07", + "case_names": "Xtra Lease, LLC v. Pigeon Freight Services, Inc.", + "download_urls": "/file.jsp?id=192294", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110391", + "judges": "Lisa P. Page, P.J., and Thomas C. Clark II, J., concur.", + "case_name_shorts": "", + "authors": "Renee D. Hardin-Tammons, J." + }, + { + "case_dates": "2023-02-07", + "case_names": "Travon D. Johnson v. State of Missouri", + "download_urls": "/file.jsp?id=192298", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSE AND REMAND", + "docket_numbers": "ED110531", + "judges": "Thomas C. Clark, II, J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." + }, + { + "case_dates": "2023-02-07", + "case_names": "State of Missouri v. Sara M. Eyler", + "download_urls": "/file.jsp?id=192293", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110234", + "judges": "Lisa P. Page, P.J., and Thomas C. Clark, II, J., concur.", + "case_name_shorts": "", + "authors": "Renee D. Hardin-Tammons, J." + }, + { + "case_dates": "2023-02-07", + "case_names": "State of Missouri v. Christopher Robert Sokolic", + "download_urls": "/file.jsp?id=192297", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110467", + "judges": "Lisa P. Page, P.J., and Thomas C. Clark II, J., concur.", + "case_name_shorts": "", + "authors": "Renee D. Hardin-Tammons, J." + }, + { + "case_dates": "2023-02-07", + "case_names": "Robert S. Jones v. State of Missouri", + "download_urls": "/file.jsp?id=192296", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRM", + "docket_numbers": "ED110457", + "judges": "Thomas C. Clark, II, J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." + }, + { + "case_dates": "2023-02-07", + "case_names": "Johnathan Wyatt v. State of Missouri", + "download_urls": "/file.jsp?id=192299", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED IN PART, REVERSED IN PART, AND REMANDED", + "docket_numbers": "ED110537", + "judges": "Kurt S. Odenwald, J., and John P. Torbitzky, J., concur.", + "case_name_shorts": "", + "authors": "Michael E. Gardner, C.J." + }, + { + "case_dates": "2023-02-07", + "case_names": "In the Interest of: D.D.B.", + "download_urls": "/file.jsp?id=192295", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRM", + "docket_numbers": "ED110414", + "judges": "Thomas C. Clark, II, J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Lisa P. Page, P.J." + }, + { + "case_dates": "2023-01-31", + "case_names": "State of Missouri v. James P. Golden", + "download_urls": "/file.jsp?id=192014", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110113", + "judges": "Cristian M. Stevens, J., and Julia M. Koester, Sp.J., concur.", + "case_name_shorts": "", + "authors": "Michael E. Gardner, C.J." + }, + { + "case_dates": "2023-01-31", + "case_names": "Dwight Moore v. State of Missouri", + "download_urls": "/file.jsp?id=192015", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110189", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." + }, + { + "case_dates": "2023-01-17", + "case_names": "Ronald D. Ruff v. Bequette Construction", + "download_urls": "/file.jsp?id=191754", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110182", + "judges": "Philip M. Hess, J., and James M. Dowd, J., concur.", + "case_name_shorts": "", + "authors": "Kelly C. Broniec, P.J." + }, + { + "case_dates": "2023-01-17", + "case_names": "Gina Kalish v. James Kalish", + "download_urls": "/file.jsp?id=191755", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "AFFIRMED", + "docket_numbers": "ED110301", + "judges": "Kelly C. Broniec, P.J., and Philip M. Hess, J., concur.", + "case_name_shorts": "", + "authors": "James M. Dowd, J." + }, + { + "case_dates": "2023-01-17", + "case_names": "David L. Ross v. State of Missouri", + "download_urls": "/file.jsp?id=191756", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110423", + "judges": "Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur.", + "case_name_shorts": "", + "authors": "John P. Torbitzky, J." + }, + { + "case_dates": "2023-01-10", + "case_names": "Maryann Gray, Respondent/Cross-Appellant v. Hawthorn Children's Psychiatric Hospital/State of Missouri, Appellant/Cross-Respondent, and Treasurer of the State of Missouri, as Custodian of the Second Injury Fund, Additional Party/Cross-Respondent.", + "download_urls": "/file.jsp?id=191578", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED", + "docket_numbers": "ED110400", + "judges": "Lisa P. Page, P.J., and Kurt S. Odenwald, J., concur.", + "case_name_shorts": "", + "authors": "Thomas C. Clark II, J." + }, + { + "case_dates": "2023-01-10", + "case_names": "Kyle Herrington, Movant/Appellant v. State of Missouri", + "download_urls": "/file.jsp?id=191577", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "REVERSED AND REMANDED", + "docket_numbers": "ED110395", + "judges": "Lisa P. Page, P.J., and Renee D. Hardin-Tammons, J., concur.", + "case_name_shorts": "", + "authors": "Thomas C. Clark II, J." } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/moctapp_eastern_example.html b/tests/examples/opinions/united_states/moctapp_eastern_example.html index 29bca0ae8..891191cab 100644 --- a/tests/examples/opinions/united_states/moctapp_eastern_example.html +++ b/tests/examples/opinions/united_states/moctapp_eastern_example.html @@ -1,2395 +1,23208 @@ - - - - - - - - Opinions + + + + + + + + + + +Opinions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Opinions

    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +

    Opinions for Eastern Appellate District

    +
    +
    + +
    +
    +
    +
    + +
    +

    Step 1. Select or Change Court

    +
    + + +
    +
    +
    +
    +

    Step 2. Search Opinions ...

    + +
    + + + + + Need Help? +
    +
    +
    +
    +
    +
    +

    ... OR View By Date

    +
    + + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + Click on a date below to view opinions. +
    +
    + +
    + +
    +
    +
    10/31/2023
    + +
    + + +
    +
    + ED111416:  Overview/Summary
    + Daniel Crowder, Respondent, vs. Ingram Barge Company, LLC, Appellant.
    Author:   Lisa P. Page, P.J. +
    Vote:  AFFIRM. Gary M. Gaertner, Jr., J., and Angela T. Quigless, J., concur. +
    +
    + + + +
    +
    + ED111206:  Overview/Summary
    + Troy Callahan, Appellant, vs. State of Missouri, Respondent.
    Author:   Lisa P. Page, P.J. +
    Vote:  AFFIRM. Gary M. Gaertner, Jr., J., and Angela T. Quigless, J., concur. +
    +
    + + + +
    +
    + ED111111:  Overview/Summary
    + State of Missouri, Respondent, v. Teraz Bateman, Appellant.
    Author:   Gary M. Gaertner, Jr., J. +
    Vote:  AFFIRMED. Lisa P. Page, P.J., and Angela T. Quigless, J., concur. +
    +
    + + + +
    +
    + ED110653:  Overview/Summary
    + State of Missouri, Respondent, v. David F. Schneider, Appellant.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Robert M. Clayton III, P.J., and Philip M. Hess, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/24/2023
    + +
    + + + + + + + + + + +
    +
    + EDOrder-10-24-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111549:  Overview/Summary
    + Ronald Greco, Respondent, v. Director of Revenue, Appellant.
    Author:   John P. Torbitzky, P.J. +
    Vote:  REVERSED AND REMANDED. Renee D. Hardin-Tammons, J., and Roy L. Richter, Sp.J., concur. +
    +
    + + + +
    +
    + ED111438:  Overview/Summary
    + State of Missouri, Respondent, v. Timothy Meding, Appellant.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Robert M. Clayton III, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED111381:  Overview/Summary
    + Eniz Poljarevic, Appellant, vs. Division of Employment Security, Respondent.
    Author:   Kurt S. Odenwald, P.J. +
    Vote:  AFFIRMED. Michael E. Gardner, J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED111321:  Overview/Summary
    + Charles Ewing, Appellant, v. Col. John Hayden, et al., Respondents.
    Author:   John P. Torbitzky, P.J. +
    Vote:  AFFIRMED. James M. Dowd, J., and Roy L. Richter, Sp.J., concur. +
    +
    + + + +
    +
    + ED111112:  Overview/Summary
    + Montel Berry, Appellant, vs. State of Missouri, Respondent.
    Author:   Michael E. Gardner, J. +
    Vote:  AFFIRMED. Kurt S. Odenwald, P.J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED111110:  Overview/Summary
    + Melissa Cavin, Respondent, vs. Barrie Hair, Appellant.
    Author:   Michael E. Gardner, J. +
    Vote:  AFFIRMED. Kurt S. Odenwald, P.J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED111038:  Overview/Summary
    + Dominique Kemper, Appellant, vs. State of Missouri, Respondent.
    Author:   James M. Dowd, J. +
    Vote:  REVERSE AND REMAND. Thomas C. Clark, II, C.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110868:  Overview/Summary
    + Dana L. Girgis, Respondent, v. Mark S. Girgis, Appellant.
    Author:   John P. Torbitzky, J. +
    Vote:  AFFIRMED IN PART, REVERSED IN PART. Thomas C. Clark, II, C.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110787:  Overview/Summary
    + State of Missouri, Respondent, vs. Jesse M. Jansen, Appellant.
    Author:   Kurt S. Odenwald, P.J. +
    Vote:  AFFIRMED. Michael E. Gardner, J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED110330:  Overview/Summary
    + State of Missouri, Respondent, vs. Joshua O'Keefe, Appellant.
    Author:   Kurt S. Odenwald, P.J. +
    Vote:  AFFIRMED. Michael E. Gardner, J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/17/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-10-17-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111424:  Overview/Summary
    + Nexgen Silica, LLC, Appellant/Cross-Respondent, vs. Missouri Department of Natural Resources, Respondent, and Operation Sand, LLC, Respondent/Cross-Appellant.
    Author:   Angela T. Quigless, J. +
    Vote:  DECISION AS TO NEXGEN SILICA, LLC AFFIRMED; CROSS-APPEAL AS TO OPERATION SAND, LLC DISMISSED. Lisa P. Page, P.J., and Gary M. Gaertner, Jr., J., concur. +
    +
    + + + +
    +
    + ED111263:  Overview/Summary
    + Kristal D. Fulton, Appellant, vs. Drive Rite, LLC, and Xcel Holdings, LLC, Respondents.
    Author:   James M. Dowd, J. +
    Vote:  DISMISSED. Thomas C. Clark, II, C.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED111120:  Overview/Summary
    + Vivian DePaul, Appellant, v. Division of Employment Security, Respondent.
    Author:   Gary M. Gaertner, Jr., J. +
    Vote:  DISMISSED. Lisa P. Page, P.J., and Angela T. Quigless, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/10/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-10-10-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111190:  Overview/Summary
    + Clarksboro, LLC and WMAC 2013, LLC, Appellants, vs. City of Overland, Missouri, Respondent.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Robert M. Clayton III, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110938:  Overview/Summary
    + Michael C. Schmidt, Appellant, vs. Ritter Horticultural Services, Inc., and Division of Employment Security, Respondents.
    Author:   Michael E. Gardner, P.J. +
    Vote:  REVERSED AND REMANDED. John P. Torbitzky, J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/03/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + ED110726:  Overview/Summary
    + In the Interest of: K.J.L.
    Author:   Kurt S. Odenwald, P.J. +
    Vote:  AFFIRMED. Michael E. Gardner, J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/26/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-09-26-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111405:  Overview/Summary
    + C.H., and S.S., Appellants, v. Infertility Center of Saint Louis, et al., Respondents.
    Author:   Gary M. Gaertner, Jr., J. +
    Vote:  AFFIRMED. Lisa P. Page, P.J., and Angela T. Quigless, J., concur. +
    +
    + + + +
    +
    + ED111339:  Overview/Summary
    + J.J., by and through Next Friend, C.W., Appellant, v. Poplar Bluff Regional Medical Center, L.L.C., Respondent.
    Author:   Gary M. Gaertner, Jr., J. +
    Vote:  REVERSED AND REMANDED. Lisa P. Page, P.J., and Angela T. Quigless, J., concur. +
    +
    + + + +
    +
    + ED111299:  Overview/Summary
    + Pamela McCoy, Appellant, v. Meridian Medical Technology, New Hampshire Insurance Co., and Missouri State Treasurer, as Custodian of Second Injury Fund, Respondents.
    Author:   PER CURIAM +
    Vote:  AFFIRMED. Before Thomas C. Clark, II, P.J., James M. Dowd, J., and John P. Torbitzky, J. +
    +
    + + + +
    +
    + ED111226:  Overview/Summary
    + Lisa Weber, et al., Appellants, v. Federal Home Loan Mortgage Corporation, Defendant.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Robert M. Clayton II, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110944:  Overview/Summary
    + State of Missouri, Respondent, v. Angela Brown, Appellant.
    Author:   John P. Torbitzky, J. +
    Vote:  DISMISSED. Thomas C. Clark, II, P.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110708:  Overview/Summary
    + In the Interest of: J.M.W.
    Author:   Kurt S. Odenwald, P.J. +
    Vote:  AFFIRMED. Michael E. Gardner, J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED110609:  Overview/Summary
    + Samantha Kelley, Respondent, vs. State of Missouri, Department of Corrections, Appellant.
    Author:   PER CURIAM +
    Vote:  AFFIRMED AND REMANDED TO DETERMINE ATTORNEYS' FEES. Before Kelly C. Broniec, Sp.J., Philip M. Hess, J., and James M. Dowd, J. +
    +
    + + + +
    +
    + ED110550:  Overview/Summary
    + Jihad A. Spann, Appellant, vs. State of Missouri, Respondent.
    Author:   Robert M. Clayton III, P.J. +
    Vote:  AFFIRMED. Philip M. Hess, J., and Cristian M. Stevens, J., concur. +
    +
    + + + +
    +
    + ED110037:  Overview/Summary
    + State of Missouri, Respondent, vs. Orlando Kim Ferguson, II, Appellant.
    Author:   James M. Dowd, Judge +
    Vote:  AFFIRMED IN PART AND REVERSED AND REMANDED IN PART. Thomas C. Clark, II, C.J., and John P. Torbitzky, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/19/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-09-19-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111910:  Overview/Summary
    + State of Missouri ex rel. Melissa Hogg, Relator, v. The Honorable Wendy Wexler Horn, Judge of the Twenty-Fourth Judicial Circuit, St. Francois County, Div. 1, Respondent.
    Author:   John P. Torbitzky, P.J. +
    Vote:  WRIT MADE PERMANENT. Kelly C. Broniec, C.J., and Lisa P. Page, J., concur. +
    +
    + + + +
    +
    + ED111319:  Overview/Summary
    + Z.S., By and Through His Next Friend, P.S., Appellant, v. Rockwood School District, Respondent.
    Author:   Renee Hardin-Tammons, J. +
    Vote:  AFFIRMED. Michael E. Gardner, P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED111235:  Overview/Summary
    + S.A.B., Respondent, v. J.L.R., Appellant.
    Author:   PER CURIAM +
    Vote:  AFFIRMED. Before Michael E. Gardner, P.J., Robert M. Clayton III, J., and Renee Hardin-Tammons, J. +
    +
    + + + +
    +
    + ED111139:  Overview/Summary
    + J.C.S., Respondent, vs. Missouri State Highway Patrol Criminal Records Repository, Appellant, and Jefferson County Sheriff's Office, Defendant.
    Author:   Robert M. Clayton III, P.J. +
    Vote:  REVERSED AND REMANDED. Philip M. Hess, J., and Cristian M. Stevens, J., concur. +
    +
    + + + +
    +
    + ED111055:  Overview/Summary
    + State of Missouri, Respondent, v. Nore K. Edmond, Appellant.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Robert M. Clayton III, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110900:  Overview/Summary
    + State of Missouri, Respondent, v. Santonio McCoy, Appellant.
    Author:   Renee D. Hardin-Tammons, J. +
    Vote:  AFFIRMED. Kurt S. Odenwald, P.J., and Michael E. Gardner, J., concur. +
    +
    + + + +
    +
    + ED110877:  Overview/Summary
    + Christopher J. Potter, Appellant, vs. State of Missouri, Respondent.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Thomas C. Clark, II, P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110785:  Overview/Summary
    + Jonas Phillips, Appellant, v. State of Missouri, Respondent.
    Author:   Renee Hardin-Tammons, J. +
    Vote:  AFFIRMED. Angela T. Quigless, P.J., and Michael E. Gardner, J., concur. +
    +
    + + + +
    +
    + ED110702:  Overview/Summary
    + State of Missouri, Respondent, vs. Samuel L. Scott, Appellant.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Thomas C. Clark II, P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110665:  Overview/Summary
    + J.M.L., Respondent, vs. Missouri State Highway Patrol, et al., Appellant.
    Author:   Philip M. Hess, J. +
    Vote:  REVERSED AND REMANDED. Robert M. Clayton III, P.J., and Cristian M. Stevens, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/12/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-09-12-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111931:  Overview/Summary
    + State of Missouri Ex Rel. David Hutchinson, Relator, v. The Honorable Antonio M. Manansala, Associate Circuit Judge, Twenty-Third Judicial Circuit, Jefferson County, Respondent.
    Author:   John P. Torbitzky, P.J. +
    Vote:  WRIT MADE PERMANENT. Lisa P. Page, J., and Thomas C. Clark II, J., concur. +
    +
    + + + +
    +
    + ED111912:  Overview/Summary
    + State ex rel. Sedrick Phillip-Smith, Relator, vs. The Honorable Michael F. Stelzer, Circuit Judge, Twenty-Second Judicial Circuit, City of St. Louis, Respondent.
    Author:   John P. Torbitzky, P.J. +
    Vote:  WRIT MADE PERMANENT. Lisa P. Page, J., and Kelly C. Broniec, C.J., concur. +
    +
    + + + +
    +
    + ED111017:  Overview/Summary
    + J.R.M.-J., By and Through Her Next Friend, S.J., and S.J. Individually, Respondents, v. R.T.M., Appellant.
    Author:   John P. Torbitzky, J. +
    Vote:  JUDGMENT AFFIRMED. Thomas C. Clark, P.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110923:  Overview/Summary
    + State of Missouri, Respondent, v. Eugene P. Campbell, Defendant/Appellant.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Robert M. Clayton III, P.J., and Philip M. Hess, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/05/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-09-05-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111343:  Overview/Summary
    + Matthew B. Randolph, Appellant, vs. State of Missouri, Respondent.
    Author:   Thomas C. Clark II, P.J. +
    Vote:  DISMISSED. James M. Dowd, J., and John Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED111086:  Overview/Summary
    + Zachariah Foltz, Appellant, vs. City of St. Louis, et al, Respondents.
    Author:   John Torbitzky, J. +
    Vote:  REVERSED AND REMANDED. Thomas C. Clark II, P.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110820:  Overview/Summary
    + State of Missouri, Respondent, vs. Monica C. Shoemaker, Appellant.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Robert M. Clayton III, P.J., and Philip M. Hess, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/29/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-08-29-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111005:  Overview/Summary
    + State of Missouri ex rel. Organic Remedies Mo. Inc., Appellant, vs. Board of Zoning Adjustment of St. Louis County, Missouri, Respondent.
    Author:   Lisa P. Page, P.J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., J., and Angela T. Quigless, J., concur. +
    +
    + + + +
    +
    + ED110934:  Overview/Summary
    + Gerald Puetz, David Puetz, and Jeannette Puetz, Appellants, vs. Canice Timothy Rice, Respondent.
    Author:   Lisa P. Page, P.J. +
    Vote:  DISMISSED AND REMANDED. Gary M. Gaertner, Jr., J., and Angela T. Quigless, J., concur. +
    +
    + + + +
    +
    + ED110773:  Overview/Summary
    + Jonathan Lukefahr, ex ux. Appellants, vs. Carol Taylor, et ux., Respondents.
    Author:   Thomas C. Clark II, J. +
    Vote:  AFFIRMED. Kurt S. Odenwald, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110639:  Overview/Summary
    + State of Missouri, Respondent, vs. Melvin J. Scherrer, Appellant.
    Author:   Robert M. Clayton III, P.J. +
    Vote:  AFFIRMED. Philp M. Hess, J., and Cristian M. Stevens, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/22/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-08-22-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111084:  Overview/Summary
    + Thomas Sullivan, et al., Appellants, vs. City of University City, et al., Respondents.
    Author:   Philip M. Hess, J. +
    Vote:  AFFIRMED. Robert M. Clayton III, P.J., and Cristian M. Stevens, J., concur. +
    +
    + + + +
    +
    + ED111007:  Overview/Summary
    + ACWSTL, LLC d/b/a Advantaclean of West St. Louis County, Respondent, vs. Treisa Gladney, Appellant.
    Author:   Lisa P. Page, P.J. +
    Vote:  DISMISSED. Gary M. Gaertner, Jr., J., and Angela T. Quigless, J., concur. +
    +
    + + + +
    +
    + ED111004:  Overview/Summary
    + Larry Obermann, Appellant, vs. Treasurer of the State of Missouri as Custodian of the Second Injury Fund, Respondent.
    Author:   James M. Dowd, J. +
    Vote:  REVERSED AND REMANDED. Kelly C. Broniec, C.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110461:  Overview/Summary
    + Jordan Medlin, Appellant, vs. State of Missouri, Respondent.
    Author:   James M. Dowd, J. +
    Vote:  DISMISSED. Thomas C. Clark, II, P.J., and John P. Torbitzky, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/15/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-08-15-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111310:  Overview/Summary
    + Sophia D. Chatman, Appellant, v. Thomas Chatman, Respondent.
    Author:   Angela T. Quigless, J. +
    Vote:  RESPONDENT'S MOTION GRANTED; APPEAL DISMISSED. Lisa P. Page, P.J., and Gary M. Gaertner, Jr., J., concur. +
    +
    + + + +
    +
    + ED111010:  Overview/Summary
    + In the Matter of: Timothy Lee Isreal, Appellant.
    Author:   Angela T. Quigless, J. +
    Vote:  REVERSED AND REMANDED. Lisa P. Page, P.J., and Gary M. Gaertner, Jr., J., concur. +
    +
    + + + +
    +
    + ED110966:  Overview/Summary
    + In the Interest of: D.L.T.
    Author:   Philip M. Hess, J. +
    Vote:  AFFIRMED. Robert M. Clayton III, P.J., and Cristian M. Stevens, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/08/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-08-08-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111501:  Overview/Summary
    + State of Missouri ex rel. Andrew Bailey, Relator, vs. The Honorable Bruce F. Hilton, Circuit Judge of St. Louis County, and Joan M. Gilmer, Circuit Clerk, St. Louis County Circuit Court, Respondents.
    Author:   Kelly C. Broniec, C.J. +
    Vote:  REVERSED AND THE RECORD IS QUASHED. Michael E. Gardner, J., and Thomas C. Clark II, J., concur. +
    +
    + + + +
    +
    + ED110766:  Overview/Summary
    + State of Missouri, Respondent, vs. Paul W. Bodenhamer, Appellant.
    Author:   Robert M. Clayton III, J. +
    Vote:  AFFIRMED IN PART AND DISMISSED IN PART. Angela T. Quigless, P.J., and Sherri B. Sullivan, J., concur. +
    +
    + + + +
    +
    + ED110472:  Overview/Summary
    + State of Missouri, Respondent, v. John M. Hamm, Appellant.
    Author:   John P. Torbitzky, J. +
    Vote:  AFFIRMED. Michael E. Gardner, P.J., and Renee Hardin-Tammons, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/01/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-08-01-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111167:  Overview/Summary
    + Timothy Waldorf, Appellant, vs. State of Missouri, Respondent.
    Author:   Philip M. Hess, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, C.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110912:  Overview/Summary
    + Mark Brommelhorst and Barbara Brommelhorst, Individually and on Behalf of Gabriel Brommelhorst, Deceased, Respondents, vs. Automobile Club Inter-Insurance Exchange, Appellant, and Danielle Johnson, Defendant.
    Author:   Robert M. Clayton III, J. +
    Vote:  REVERSED AND REMANDED. Angela T. Quigless, P.J., and Sherri B. Sullivan, J., concur. +
    +
    + + + +
    +
    + ED110491:  Overview/Summary
    + State of Missouri, Respondent, v. Michael K. Humphrey, Appellant.
    Author:   John P. Torbitzky, J. +
    Vote:  DISMISSED. Gary M. Gaertner, Jr., P.J., and Thomas C. Clark II, J., concur. +
    +
    + + + +
    +
    + ED110318:  Overview/Summary
    + State of Missouri, Respondent, vs. Herbert Welch, Appellant.
    Author:   Philip M. Hess, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, C.J., and James M. Dowd, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/25/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-07-25-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111141:  Overview/Summary
    + Julius Copeland, Appellant, v. WRBM, LLC, d/b/a Western Rivers Boat Management, Inc., Respondent.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110859:  Overview/Summary
    + Orthopedic Ambulatory Surgery Center of Chesterfield, LLC, and Chesterfield Spine Center, LLC, Appellants, vs. Sharpe Holdings, Inc., et al., Respondents.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, C.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110612:  Overview/Summary
    + Sanford Sachtleben and Luciann Hruza, Appellants, vs. Alliant National Title Insurance Co., Respondent.
    Author:   Thomas C. Clark II, J. +
    Vote:  REVERSED AND REMANDED. Lisa P. Page, P.J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED110076:  Overview/Summary
    + State of Missouri, Respondent, vs. Kevin Fields, Appellant.
    Author:   Kurt S. Odenwald, J. +
    Vote:  AFFIRMED. Michael E. Gardner, P.J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/18/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-07-18-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111214:  Overview/Summary
    + Old Navy, LLC, Appellant, vs. South Lakeview Plaza I, LLC, Respondent.
    Author:   Philip M. Hess, J. +
    Vote:  REVERSED AND REMANDED IN PART AND AFFIRMED IN PART. Kelly C. Broniec, C.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED111143:  Overview/Summary
    + State of Missouri ex rel. Willie James Nutall, Respondent, vs. Missouri Department of Corrections, Appellant.
    Author:   James M. Dowd, J. +
    Vote:  REVERSED. Kelly C. Broniec, C.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110991:  Overview/Summary
    + Jessica Huett, Appellant, v. Kent Branson, M.D., et al., Respondents.
    Author:   John P. Torbitzky, J. +
    Vote:  REVERSED AND REMANDED. Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur. +
    +
    + + + +
    +
    + ED110950:  Overview/Summary
    + State of Missouri, Respondent, v. Dexter Wiggley, Appellant.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110648:  Overview/Summary
    + Hemant Godara, Appellant, vs. Guari Singh, Respondent.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, C.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110585:  Overview/Summary
    + State of Missouri, Respondent, vs. Leron Robinson, Appellant.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, C.J., and Philip M. Hess, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/11/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + ED111144:  Overview/Summary
    + David Duvall, Appellant, v. James Ray Maxey, et al., Respondents
    Author:   Cristian M. Stevens, J. +
    Vote:  DISMISSED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/30/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-06-30-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110771:  Overview/Summary
    + State of Missouri, Appellant, vs. Ashley Colville, Respondent.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110120:  Overview/Summary
    + Crown-Diversified Industries, Corp., et al., Respondent, vs. Jake Zimmerman, Assessor, St. Louis County, Missouri, Appellant.
    Author:   Thomas C. Clark II, J. +
    Vote:  REVERSED. Kurt S. Odenwald, P.J., and Kelly C. Broniec, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/27/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-06-27-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111163:  Overview/Summary
    + Tabatha Moore, Respondent, v. Dennis Crocker and One Stop Muffler, Appellants.
    Author:   John P. Torbitzky, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur. +
    +
    + + + + + + + +
    +
    + ED110930:  Overview/Summary
    + L.A.C., Respondent, vs. R.A.P., Appellant.
    Author:   Kelly C. Broniec, P.J. +
    Vote:  AFFIRMED. Philip M. Hess, J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110783:  Overview/Summary
    + Orin Wallace, and Donna Wallace, Respondents, v. Michael P. Byrne, Appellant.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED AND REMANDED. Gary M. Gaertner, Jr., P.J., concurs. John P. Torbitzky, J., concurs in a separate opinion. +
    +
    + + + +
    +
    + ED110661:  Overview/Summary
    + Tamell Campbell, Appellant, vs. State of Missouri, Respondent.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110620:  Overview/Summary
    + State of Missouri, Respondent, vs. Christopher C. Pool, Jr., Appellant.
    Author:   Kurt S. Odenwald, J. +
    Vote:  AFFIRMED. Michael E. Gardner, C.J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED110552:  Overview/Summary
    + State of Missouri, Respondent, vs. Christopher D. Robertson, Appellant.
    Author:   Philip M. Hess, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110405:  Overview/Summary
    + State of Missouri, Respondent, v. Oscar Garner, Appellant.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110308:  Overview/Summary
    + State of Missouri, Respondent, vs. Troy Jackson-Bey, Appellant.
    Author:   Thomas C. Clark II, J. +
    Vote:  AFFIRMED. Lisa P. Page, P.J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/20/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-06-20-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111118:  Overview/Summary
    + Carly Munoz, Appellant, vs. Six Flags St. Louis, LLC d/b/a Six Flags St. Louis and John/Jane Doe, Respondents.
    Author:   Sherri B. Sullivan, J. +
    Vote:  AFFIRMED. Angela T. Quigless, P.J., and Robert M. Clayton III, J., concur. +
    +
    + + + +
    +
    + ED111064:  Overview/Summary
    + Barbara S. Thomas, Appellant, vs. Emir Ramushi, Respondent.
    Author:   Philip M. Hess, J. +
    Vote:  REVERSED AND REMANDED. Kelly C. Broniec, P.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110690:  Overview/Summary
    + State of Missouri, Respondent, v. Garry Denson, Appellant.
    Author:   Gary M. Gaertner, Jr., P.J. +
    Vote:  AFFIRMED. John P. Torbitzky, J., and Cristian M. Stevens, J., concur. +
    +
    + + + +
    +
    + ED110652:  Overview/Summary
    + In the Interest of: D.J.S.
    Author:   Kurt S. Odenwald, J. +
    Vote:  AFFIRMED. Michael E. Gardner, C.J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED110515:  Overview/Summary
    + L.E.C., Respondent, v. K.R.C., Appellant.
    Author:   Angela T. Quigless, P.J. +
    Vote:  REVERSED AND REMANDED. Sherri B. Sullivan, J., and Robert M. Clayton III, J., concur. +
    +
    + + + +
    +
    + ED110489:  Overview/Summary
    + State of Missouri, Respondent, vs. Marcell Foster, Appellant.
    Author:   Kurt S. Odenwald, J. +
    Vote:  AFFIRMED. Michael E. Gardner, C.J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/13/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-06-13-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111044:  Overview/Summary
    + Jimmy D. Cook, Appellant, vs. Parkland Health Center, et al., Defendants, and Dr. Lawrence Brown, et al., Respondents.
    Author:   Kurt S. Odenwald, J. +
    Vote:  AFFIRMED. Michael E. Gardner, C.J., and Thomas C. Clark, II, J., concur. +
    +
    + + + +
    +
    + ED110884:  Overview/Summary
    + Tyler Hollis, a Minor By and Through His Next Friend, Mother and Conservator, Karen Hollis, Appellant, vs. Poplar Bluff Regional Medical Center, LLC, et al., Respondents.
    Author:   Kurt S. Odenwald, P.J. +
    Vote:  AFFIRMED. Thomas C. Clark, II, J., and William L. Syler, S.J., concur. +
    +
    + + + +
    +
    + ED110866:  Overview/Summary
    + Nicole E. Williams, Respondent, vs. Bryan L. Williams, Appellant.
    Author:   Kelly C. Broniec, P.J. +
    Vote:  AFFIRMED. Philip M. Hess, J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110799:  Overview/Summary
    + Donald Placke, Jr., Appellant, vs. The City of Sunset Hills, Missouri, City of Sunset Hills Board of Adjustment, Patricia Fribis, Ryan Patton, and William Weber, Respondents.
    Author:   James M. Dowd, J. +
    Vote:  DISMISSED. Kelly C. Broniec, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110707:  Overview/Summary
    + Ronald D. Ruff, et al., Appellants, vs. Bequette Construction, Inc., et al., Respondents.
    Author:   Philip M. Hess, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110580:  Overview/Summary
    + State of Missouri, Respondent, v. Gerardo Gonzalez, Sr., Appellant.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. John P. Torbitzky, J., concurs. Gary M. Gaertner, Jr., P.J., concurs in the result only. +
    +
    + + + +
    +
    + ED110314:  Overview/Summary
    + State of Missouri, Respondent, v. Adam Craft, Appellant.
    Author:   Renee D. Hardin-Tammons, J. +
    Vote:  AFFIRMED. Lisa P. Page, P.J., and Thomas C. Clark II, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/06/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-06-06-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111200:  Overview/Summary
    + Emilee D. Williams, n/k/a Emilee Corey, Respondent, v. Jason Jai Williams, Appellant, and Katherine Tyler, Respondent.
    Author:   Renee D. Hardin-Tammons, J. +
    Vote:  DISMISSED. Lisa P. Page, P.J., and Thomas C. Clark II, J., concur. +
    +
    + + + +
    +
    + ED111031:  Overview/Summary
    + Tammy A. Morre, Appellant, vs. Missouri Gaming Commission and Division of Employment Security, Respondents.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110993:  Overview/Summary
    + In the Interest of: D.G.J., Jr.
    Author:   Lisa P. Page, P.J. +
    Vote:  AFFIRM. Thomas C. Clark, II, J., and Renee Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED110968:  Overview/Summary
    + Behavioral Science Institute, Inc., Appellant, v. Transitional Center, Inc., Respondent.
    Author:   Renee D. Hardin-Tammons, J. +
    Vote:  REVERSED. Lisa P. Page, P.J., and Thomas C. Clark, II, J., concur. +
    +
    + + + +
    +
    + ED110737:  Overview/Summary
    + Michael Feldman, Appellant, vs. Patrish, L.L.C., d/b/a Northwest Airport Inn, John Stillwell, Naresh Patel, and Robert Reichenbach, Respondents.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110511:  Overview/Summary
    + Leslie E. Cheek, Petitioner-Respondent, v. Kevin R. Cheek, Respondent-Appellant, v. Kaleb Cheek, Third-Party Respondent.
    Author:   PER CURIAM +
    Vote:  AFFIRMED IN PART; REVERSED AND REMANDED IN PART. Before Angela T. Quigless, P.J., Sherri B. Sullivan, J., and Robert M. Clayton III, J. +
    +
    + + + +
    +
    + ED110507:  Overview/Summary
    + David L. Jones, Appellant, vs. Impact Agape Ministries, et al., Respondents.
    Author:   Kelly C. Broniec, P.J. +
    Vote:  DISMISSED. Philip M. Hess, J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110335:  Overview/Summary
    + John Wright III, Appellant, v. State of Missouri, Respondent.
    Author:   John P. Torbitzky, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/30/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + ED111155:  Overview/Summary
    + Logan R. Humphrey, Appellant, vs. Tramar Contracting, Inc., and Division of Employment Security, Respondents.
    Author:   Kelly C. Broniec, P.J. +
    Vote:  AFFIRMED. Philip M. Hess, J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110937:  Overview/Summary
    + Anastasia Collier, Respondent, vs. Andrea Steinbach, Appellant.
    Author:   Lisa P. Page, P.J. +
    Vote:  REVERSED AND REMANDED. Thomas C. Clark, II, J., and Renee Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED110549:  Overview/Summary
    + State of Missouri, Appellant, v. Karen A. Quinn, Respondent.
    Author:   Gary M. Gaertner, Jr., P.J. +
    Vote:  REVERSED AND REMANDED. James M. Dowd, J., and Cristian M. Stevens, J., concur. +
    +
    + + + +
    +
    + ED110548:  Overview/Summary
    + State of Missouri, Appellant, v. Rachel Nixon, Respondent.
    Author:   Gary M. Gaertner, Jr., P.J. +
    Vote:  REVERSED AND REMANDED. James M. Dowd, J., and Cristian M. Stevens, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/23/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-05-23-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111095:  Overview/Summary
    + Creative Compounds, LLC, Appellant, vs. Thermolife International, LLC, Respondent.
    Author:   Philip M. Hess, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110896:  Overview/Summary
    + Aaron D. Summers, Appellant, v. State of Missouri, Respondent.
    Author:   Gary M. Gaertner, Jr., P.J. +
    Vote:  REVERSED AND REMANDED. John P. Torbitzky, J., and Cristian M. Stevens, J., concur. +
    +
    + + + +
    +
    + ED110649:  Overview/Summary
    + In the Interest of: K.M.F.
    Author:   Philip M. Hess, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and James M. Dowd, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/16/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-05-16-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111018:  Overview/Summary
    + Aaron Roesch, Appellant, vs. Aaron Birch-Edmundson, Respondent.
    Author:   Lisa P. Page, P.J. +
    Vote:  DISMISSED. Kurt S. Odenwald, J., and Thomas C. Clark, II, J., concur. +
    +
    + + + +
    +
    + ED110776:  Overview/Summary
    + Herbert Morrison, Appellant, vs. Karen Goodwin, City Clerk for the City of Florissant, Missouri, Respondent.
    Author:   Kurt S. Odenwald, J. +
    Vote:  DISMISSED. Michael E. Gardner, C.J., and Robert M. Clayton III, J., concur. +
    +
    + + + +
    +
    + ED110619:  Overview/Summary
    + Levi D. Lauck, Appellant, v. State of Missouri, Respondent.
    Author:   Lisa P. Page, P.J. +
    Vote:  REVERSED AND REMANDED. Thomas C. Clark, II, J., and Renee Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED110598:  Overview/Summary
    + St. Louis Center for Aesthetic and Restorative Dentistry, et al., Appellants, vs. A. Thomas Dewoskin, et al., Respondents.
    Author:   Kelly C. Broniec, P.J. +
    Vote:  REVERSED AND REMANDED. Philip M. Hess, J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110596:  Overview/Summary
    + Brian Scott Lewis, Respondent, vs. Sara Marie (Hartsock) Lewis, Appellant.
    Author:   Kurt S. Odenwald, P.J. +
    Vote:  AFFIRMED IN PART AND REVERSED AND REMANDED IN PART. Robert M. Clayton III, J., and Lisa P. Page, J., concur. +
    +
    + + + +
    +
    + ED110571:  Overview/Summary
    + Walter Nickels, Movant/Appellant, vs. State of Missouri, Respondent.
    Author:   Sherri B. Sullivan, J. +
    Vote:  REVERSED AND REMANDED. Angela T. Quigless, P.J., and Robert M. Clayton III, J., concur. +
    +
    + + + +
    +
    + ED110409:  Overview/Summary
    + S.C.J.M., and B.J.J.M., By Their Next Friend, S.D.M., and S.D.M., Individually, Appellants, vs. B.J.N.S., Respondent.
    Author:   Lisa P. Page, P.J. +
    Vote:  AFFIRM. Michael E. Gardner, C.J., and Kurt S. Odenwald, J., concur. +
    +
    + + + +
    +
    + ED110317:  Overview/Summary
    + M.M., Respondent, v. C.S., Appellant.
    Author:   Gary M. Gaertner, Jr., P.J. +
    Vote:  AFFIRMED IN PART, REVERSED AND REMANDED IN PART. John P. Torbitzky, J., and Cristian M. Stevens, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/09/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-05-09-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED111217:  Overview/Summary
    + Yes Chancellor Farms, LLC, Plaintiff/Respondent, v. Vicki Merkel, et al., Defendants/Appellants.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED IN PART AND REVERSED IN PART. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED111003:  Overview/Summary
    + In the Interest of: E.R.M.S., T.M.D.S., and Z.W.D.S.
    Author:   Kurt S. Odenwald, J. +
    Vote:  AFFIRMED. Michael E. Gardner, C.J., and Robert M. Clayton III, J., concur. +
    +
    + + + +
    +
    + ED110964:  Overview/Summary
    + State of Missouri, Appellant, vs. Jesse E. Callaway, Respondent.
    Author:   Kelly C. Broniec, P.J. +
    Vote:  REVERSED AND REMANDED. Philip M. Hess, J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110838:  Overview/Summary
    + Sharon Dash, Bill Blacksher, and Cynthia Sowell, as Trustees of Riverwood Estates Homeowners Association, Appellants, vs. Ada Taylor, Respondent.
    Author:   Sherri B. Sullivan, J. +
    Vote:  AFFIRMED IN PART; REVERSED IN PART. Angela T. Quigless, P.J., and Robert M. Clayton III, J., concur. +
    +
    + + + +
    +
    + ED110623:  Overview/Summary
    + In the Interest of: T.P.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110581:  Overview/Summary
    + Vicki Shad-Schaefer, Individually, and Vicki Shade-Schaefer on Behalf of the Estate of Wayne Schaefer, Christopher Schaefer, and Stephanie Schaefer, Appellants, vs. City of Eureka, Robert Wade, and Richard Green, Appellants.
    Author:   James M. Dowd, J. +
    Vote:  REVERSED AND REMANDED IN PART; AFFIRMED IN PART. Kelly C. Broniec, P.J., and Lisa P. Page, J., concur. +
    +
    + + + +
    +
    + ED110284:  Overview/Summary
    + CIBC Bank USA and CIBC National Trust Company, Appellants, vs. Christopher William, et al., Respondents.
    Author:   Robert M. Clayton III, J. +
    Vote:  REVERSED AND REMANDED. Angela T. Quigless, P.J., and Sherri B. Sullivan, J., concur. +
    +
    + + + +
    +
    + ED109743:  Overview/Summary
    + State of Missouri, Respondent, vs. Eric Lawson, Appellant.
    Author:   Sherri B. Sullivan, J. +
    Vote:  AFFIRMED. Angela T. Quigless, P.J., and Laura Denvir Stith, Sp.J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/02/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-05-02-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110910:  Overview/Summary
    + LT Group USA, LLC, Respondent, v. Mounanet Clark, Appellant.
    Author:   Cristian M. Stevens, J. +
    Vote:  DISMISSED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110518:  Overview/Summary
    + Paul E. Jinkerson, Jr., Appellant, v. State of Missouri, Respondent.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110295:  Overview/Summary
    + State of Missouri, Respondent, vs. Tyrone Valentine, Appellant.
    Author:   Philip M. Hess, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and James M. Dowd, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/25/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-04-25-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110921:  Overview/Summary
    + In the Interest of: A.O.B.
    Author:   Philip M. Hess, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110394:  Overview/Summary
    + State of Missouri, Respondent, v. Mark Aaron, Appellant.
    Author:   John P. Torbitzky, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur. +
    +
    + + + +
    +
    + ED109927:  Overview/Summary
    + State of Missouri, Respondent, vs. Haverley Bracy, Appellant.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and Philip M. Hess, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/18/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-04-18-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110898:  Overview/Summary
    + Rachel Sender, Appellant, v. City of St. Louis, Respondent.
    Author:   Renee D. Hardin-Tammons, J. +
    Vote:  REVERSE AND REMAND. Thomas C. Clark, II, P.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110697:  Overview/Summary
    + State of Missouri, Respondent, vs. Jennifer A. Heidbrink, Appellant.
    Author:   Kurt S. Odenwald, J. +
    Vote:  AFFIRMED. Michael E. Gardner, C.J., and Gary M. Gaertner, Jr., J., concur. +
    +
    + + + +
    +
    + ED110678:  Overview/Summary
    + Jessica Stacy and Brian Stacy, Appellants, v. The Bar Plan Mutual Insurance Company, Respondent.
    Author:   Renee D. Hardin-Tammons, J. +
    Vote:  REVERSED AND REMANDED. Lisa P. Page, P.J., and Thomas C. Clark, II, J., concur. +
    +
    + + + +
    +
    + ED110600:  Overview/Summary
    + State of Missouri, Respondent, vs. James S. Murphy, Appellant.
    Author:   Robert M. Clayton III, J. +
    Vote:  APPEAL DISMISSED. Angela T. Quigless, P.J., and Sherri B. Sullivan, J., concur. +
    +
    + + + +
    +
    + ED110449:  Overview/Summary
    + Hubert L. Harris, Appellant, v. State of Missouri, Respondent.
    Author:   Lisa P. Page, P.J. +
    Vote:  AFFIRMED. Thomas C. Clark, II, J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED110282:  Overview/Summary
    + State of Missouri, Respondent, v. Chicory Griffin, Appellant.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110278:  Overview/Summary
    + In the Interest of: J.K.M.
    Author:   Lisa P. Page, P.J. +
    Vote:  AFFIRM. Thomas C. Clark, II, J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/11/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-04-11-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110811:  Overview/Summary
    + Daniel McCullen, Appellant, vs. Matthew P. O'Grady, et al., Respondents.
    Author:   Robert M. Clayton III, J. +
    Vote:  REVERSED AND REMANDED. Angela T. Quigless, P.J., and Sherri B. Sullivan, J., concur. +
    +
    + + + +
    +
    + ED110579:  Overview/Summary
    + Jamie A. Marx, Appellant, v. Division of Employment Security, Respondent.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110498:  Overview/Summary
    + Andrew Denney, Appellant, v. Syberg's Westport, Inc., d/b/a Syberg's, Respondent.
    Author:   Renee D. Hardin-Tammons, J. +
    Vote:  AFFIRMED. Sherri B. Sullivan, P.J., and Laura D. Stith, Sp.J., concur. +
    +
    + + + +
    +
    + ED110046:  Overview/Summary
    + State of Missouri, Respondent, vs. Daniel Ray Robertson, Appellant.
    Author:   Kurt S. Odenwald, J. +
    Vote:  AFFIRMED. Michael E. Gardner, C.J., and Gary M. Gaertner, Jr., J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/04/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-04-04-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110948:  Overview/Summary
    + St. Louis Police Officer's Association, Respondent, vs. St. Louis County, Appellant.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110533:  Overview/Summary
    + Mikala E. Harris, Respondent, vs. David W. Harris, Jr., Appellant.
    Author:   Sherri B. Sullivan, J. +
    Vote:  AFFIRMED IN PART; REVERSED IN PART AND REMANDED. Angela T. Quigless, P.J., and Robert M. Clayton III, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/28/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-03-28-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110767:  Overview/Summary
    + Darnell Hollings, Appellant, vs. State of Missouri, Respondent.
    Author:   Philip M. Hess, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110693:  Overview/Summary
    + Brian C. Lee, Appellant, vs. State of Missouri, Respondent.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110687:  Overview/Summary
    + M.S. Bracely-Mosley, Appellant, v. Hunter Engineering Co., Respondent.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110538:  Overview/Summary
    + Clayton D. Reehten, Appellant, vs. State of Missouri, Respondent.
    Author:   Philip M. Hess, J. +
    Vote:  REVERSED AND REMANDED. Kelly C. Broniec, P.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110408:  Overview/Summary
    + Donte McGary, Appellant, vs. State of Missouri, Respondent.
    Author:   James M. Dowd, J. +
    Vote:  REVERSED AND REMANDED. Kelly C. Broniec, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110124:  Overview/Summary
    + Thomas M. Bruns, Appellant, vs. Courtney C. Bruns, Respondent.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and Philip M. Hess, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/21/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-03-21-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110852:  Overview/Summary
    + Dorsey Thompson, Claimant/Appellant, v. Special School District of St. Louis County, MO. Educational Facilities Authority and Division of Employment Security, Respondents.
    Author:   Angela T. Quigless, P.J. +
    Vote:  DISMISSED. Robert M. Clayton III, J., and Sherri B. Sullivan, J., concur. +
    +
    + + + +
    +
    + ED110805:  Overview/Summary
    + Smaila Mujakic, Appellant, vs. Division of Employment Security, Respondent.
    Author:   Sherri B. Sullivan, J. +
    Vote:  AFFIRMED. Angela T. Quigless, P.J., and Robert M. Clayton III, J., concur. +
    +
    + + + +
    +
    + ED110514:  Overview/Summary
    + Debbie M. Earley, Appellant, v. Mary V. Dunn, Respondent.
    Author:   John P. Torbitzky, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur. +
    +
    + + + +
    +
    + ED110430:  Overview/Summary
    + Leland Dent, Appellant, v. State of Missouri, Respondent.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110427:  Overview/Summary
    + O.H.B. and E.K.B., by Next Friend S.M.B., and S.M.B., Individually, Appellants, v. L.Y.S., Respondent.
    Author:   Renee D. Hardin-Tammons, J. +
    Vote:  AFFIRMED. Lisa P. Page, P.J., and Thomas C. Clark II, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/14/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-03-14-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110668:  Overview/Summary
    + Liora Tech, Inc., Appellant, v. United Medical Network, Inc., and Alan M. Kneller, Respondents.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110207:  Overview/Summary
    + State of Missouri, Respondent, vs. Stephen Craig Ingram, Appellant.
    Author:   Robert M. Clayton III, J. +
    Vote:  AFFIRMED. Angela T. Quigless, P.J., and Sherri B. Sullivan, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/07/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-03-07-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110744:  Overview/Summary
    + Karla K. Allsberry, Respondent, vs. Judge Patrick S. Flynn, In His Individual Capacity, Appellant.
    Author:   Lisa P. Page, P.J. +
    Vote:  DISMISSED. Thomas C. Clark, II, J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + + + + + +
    +
    + ED110406:  Overview/Summary
    + State of Missouri, Respondent, v. Thomas Clement, Appellant.
    Author:   Kurt S. Odenwald, J. +
    Vote:  VACATED AND REMANDED. Michael E. Gardner, C.J., and Kelly C. Broniec, J., concur. +
    +
    + + + +
    +
    + ED110252:  Overview/Summary
    + State of Missouri, Respondent, v. Eugene P. Hampton, Appellant.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110114:  Overview/Summary
    + State of Missouri, Respondent, v. Michael Allen Black, Appellant.
    Author:   Renee D. Hardin-Tammons, J. +
    Vote:  AFFIRMED. Lisa P. Page, P.J., and Thomas C. Clark II, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/28/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-02-28-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110753:  Overview/Summary
    + John J. Benoist, Jr., Appellant, vs. Westin Trading, Inc., and Division of Employment Security, Respondents.
    Author:   Kelly C. Broniec, P.J. +
    Vote:  REVERSED AND REMANDED. Philip M. Hess, J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110563:  Overview/Summary
    + Melanie L. Hill, Appellant, vs. S.M. Huber Enterprises, Inc., and Division of Employment Security, Respondents.
    Author:   Kurt S. Odenwald, J. +
    Vote:  AFFIRMED. Michael E. Gardner, C.J., and Kelly C. Broniec, J., concur. +
    +
    + + + +
    +
    + ED110502:  Overview/Summary
    + Iria Hapsari Kline, Appellant, v. Division of Employment Security, Respondent.
    Author:   John P. Torbitzky, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur. +
    +
    + + + +
    +
    + ED110500:  Overview/Summary
    + Iria Hapsari Kline, Appellant, v. Division of Employment Security, Respondent.
    Author:   John P. Torbitzky, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur. +
    +
    + + + +
    +
    + ED110432:  Overview/Summary
    + Progressive Casualty Insurance Company, Respondent, vs. Kenneth Moore, Appellant, and Lashun Givands, Respondent.
    Author:   Kurt S. Odenwald, J. +
    Vote:  DISMISSED. Michael E. Gardner, C.J., and Kelly C. Broniec, J., concur. +
    +
    + + + +
    +
    + ED110329:  Overview/Summary
    + Mo Cann Do, Inc., Appellant, vs. Missouri Department of Health and Senior Services, Respondent.
    Author:   James M. Dowd, J. +
    Vote:  REVERSED. Philip M. Hess, J., concurs, and Judge Kelly C. Broniec dissents in separate opinion. +
    +
    + + + +
    +
    + ED110319:  Overview/Summary
    + Isaiah Forman, Appellant, v. State of Missouri, Respondent.
    Author:   Renee D. Hardin-Tammons, J. +
    Vote:  REVERSED AND REMANDED. Lisa P. Page, P.J., and Thomas C. Clark II, J., concur. +
    +
    + + + +
    +
    + ED110268:  Overview/Summary
    + State of Missouri, Respondent, v. Todd R. Shepard, Appellant.
    Author:   John P. Torbitzky, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/21/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-02-21-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110706:  Overview/Summary
    + In the Interest of: F.S.K., a minor.
    Author:   Angela T. Quigless, P.J. +
    Vote:  REVERSED AND REMANDED. Sherri B. Sullivan, J., and Robert M. Clayton III, J., concur. +
    +
    + + + + + + + +
    +
    + ED110551:  Overview/Summary
    + Antoine Watkins, Appellant, v. State of Missouri, Respondent.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110501:  Overview/Summary
    + Markell D. Jackson, Appellant, v. State of Missouri, Respondent.
    Author:   Cristian M. Stevens, J. +
    Vote:  AFFIRMED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110418:  Overview/Summary
    + Megan L. Hendricks, Movant/Appellant, vs. State of Missouri, Respondent.
    Author:   Sherri B. Sullivan, J. +
    Vote:  AFFIRMED. Angela T. Quigless, P.J., and Robert M. Clayton III, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/14/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-02-14-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110715:  Overview/Summary
    + Keith Lewis, Appellant, vs. State of Missouri, Second Injury Fund, Respondent.
    Author:   Philip M. Hess, J. +
    Vote:  DISMISSED. Kelly C. Broniec, P.J., and James M. Dowd, J., concur. +
    +
    + + + +
    +
    + ED110701:  Overview/Summary
    + Robin L. Mecey, Appellant, v. Harps Food Stores, Inc., and Division of Employment Security, Respondents.
    Author:   Cristian M. Stevens, J. +
    Vote:  DISMISSED. Gary M. Gaertner, Jr., P.J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110698:  Overview/Summary
    + Sharon Dash, et al., Appellants, vs. Tressa Mitchell, et al., Respondents.
    Author:   Philip M. Hess, J. +
    Vote:  REVERSED. Kelly C. Broniec, P.J., and James M. Dowd, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/07/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + ED110537:  Overview/Summary
    + Johnathan Wyatt, Appellant, vs. State of Missouri, Respondent.
    Author:   Michael E. Gardner, C.J. +
    Vote:  AFFIRMED IN PART, REVERSED IN PART, AND REMANDED. Kurt S. Odenwald, J., and John P. Torbitzky, J., concur. +
    +
    + + + +
    +
    + ED110531:  Overview/Summary
    + Travon D. Johnson, Appellant, vs. State of Missouri, Respondent.
    Author:   Lisa P. Page, P.J. +
    Vote:  REVERSE AND REMAND. Thomas C. Clark, II, J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED110467:  Overview/Summary
    + State of Missouri, Respondent, v. Christopher Robert Sokolic, Appellant.
    Author:   Renee D. Hardin-Tammons, J. +
    Vote:  AFFIRMED. Lisa P. Page, P.J., and Thomas C. Clark II, J., concur. +
    +
    + + + +
    +
    + ED110457:  Overview/Summary
    + Robert S. Jones, Appellant, vs. State of Missouri, Respondent.
    Author:   Lisa P. Page, P.J. +
    Vote:  AFFIRM. Thomas C. Clark, II, J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED110414:  Overview/Summary
    + In the Interest of: D.D.B.
    Author:   Lisa P. Page, P.J. +
    Vote:  AFFIRM. Thomas C. Clark, II, J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + + +
    +
    + ED110391:  Overview/Summary
    + Xtra Lease, LLC, Respondent, v. Pigeon Freight Services, Inc., Appellant.
    Author:   Renee D. Hardin-Tammons, J. +
    Vote:  AFFIRMED. Lisa P. Page, P.J., and Thomas C. Clark II, J., concur. +
    +
    + + + +
    +
    + ED110234:  Overview/Summary
    + State of Missouri, Respondent, v. Sara M. Eyler, Appellant.
    Author:   Renee D. Hardin-Tammons, J. +
    Vote:  AFFIRMED. Lisa P. Page, P.J., and Thomas C. Clark, II, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/31/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-01-31-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110189:  Overview/Summary
    + Dwight Moore, Appellant, vs. State of Missouri, Respondent.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110113:  Overview/Summary
    + State of Missouri, Respondent, vs. James P. Golden, Appellant.
    Author:   Michael E. Gardner, C.J. +
    Vote:  AFFIRMED. Cristian M. Stevens, J., and Julia M. Koester, Sp.J., concur. +
    +
    + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/17/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-01-17-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + ED110423:  Overview/Summary
    + David L. Ross, Appellant, v. State of Missouri, Respondent.
    Author:   John P. Torbitzky, J. +
    Vote:  REVERSED AND REMANDED. Gary M. Gaertner, Jr., P.J., and Cristian M. Stevens, J., concur. +
    +
    + + + +
    +
    + ED110301:  Overview/Summary
    + Gina Kalish, Respondent, vs. James Kalish, Appellant.
    Author:   James M. Dowd, J. +
    Vote:  AFFIRMED. Kelly C. Broniec, P.J., and Philip M. Hess, J., concur. +
    +
    + + + +
    +
    + ED110182:  Overview/Summary
    + Ronald D. Ruff, et al., Appellants, vs. Bequette Construction, et al., Respondents.
    Author:   Kelly C. Broniec, P.J. +
    Vote:  AFFIRMED. Philip M. Hess, J., and James M. Dowd, J., concur. +
    +
    + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/10/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - -
    - - -
    -
    -
    - -
    -
    - -

    Opinions for Eastern Appellate District

    -
    -

    Step 1. Select or Change Court

    -
    -
    -Court:   - -
    - -
    -
    -
    -
    -

    Step 2. Search Opinions ...

    -
    - -
    - - -      - Need Help? -
    -
    -
    -

    ... OR View By Date

    -
    - - - - - - - - - - -
    Year of Opinion:  - -
    - Show all Opinions for Year   - Hide all Opinions -
    - Click on a date below to view opinions. -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - -
    - EDOrder-05-06-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99696: Overview/Summary
    - State of Missouri, Respondent, vs. Jeremiah F. McMillon, - Appellant.
    - Author:  Clifford H. Ahrens, J.  Vote:  AFFIRMED. Roy L. - Richter, P.J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED100289: Overview/Summary
    - Jennifer Philips, Amber Philips, Mariah Philips, and Ian Philips - Next Friend Jennifer Philips, Appellants, vs. Citimortgage, Inc., Respondent.
    - Author:  Robert M. Clayton III, C.J.  Vote:  AFFIRMED IN PART - AND REVERSED AND REMANDED IN PART. Clifford H. Ahrens, J., and Mary R. Russell, Sp.J., concur. -
      -
    - - - - - - -
    - ED100215: Overview/Summary
    - In Re the Marriage of: Tracey Marie Steinberg, Appellant, vs. - Michael Frank Steinberg, Respondent.
    - Author:  Lawrence E. Mooney, P.J.  Vote:  REVERSED AND REMANDED - WITH INSTRUCTIONS. Robert G. Dowd, Jr., J., and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED100114: Overview/Summary
    - Steve Hibbs, Appellant, vs. Brian Berger, et al., - Respondents.
    - Author:  Roy L. Richter, P.J.  Vote:  AFFIRMED. Clifford H. - Ahrens, J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED100075: Overview/Summary
    - Aaron Davis, Appellant, v. J.P. Collier, Inc. and Division of - Employment Security, Respondents.
    - Author:  Clifford H. Ahrens, J.  Vote:  AFFIRMED. Roy L. - Richter, P.J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED100035: Overview/Summary
    - State of Missouri, Respondent, v. Jeffrey A. Chandler, - Appellant.
    - Author:  Clifford H. Ahrens, J.  Vote:  AFFIRMED. Roy L. - Richter, P.J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED100012: Overview/Summary
    - Valerie Naeger, Plaintiff/Appellant, v. Farmers Insurance - Company, Inc., Defendant/Respondent.
    - Author:  Sherri B. Sullivan, J.  Vote:  AFFIRMED. Robert G. - Dowd, Jr., J., concurs. Lawrence E. Mooney, P.J., dissents in separate opinion. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-04-29-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99778: Overview/Summary
    - State of Missouri, Respondent, vs. Michael Sutherland, - Appellant.
    - Author:  Angela T. Quigless, Judge  Vote:  AFFIRMED. Mary K. - Hoff, Presiding Judge, concurs and Kurt S. Odenwald, Judge, dissents in separate opinion. -
      -
    - - - - - - -
    - ED99545: Overview/Summary
    - Orpheus D. Warren, Movant/Appellant, vs. State of Missouri, - Respondent.
    - Author:  Lisa S. Van Amburg, P.J.  Vote:  AFFIRMED UNDER RULE - 84.16(b) AND CORRECTED TO REMOVE THE PRIOR AND PERSISTENT OFFENDER CLASSIFICATIONS FROM THE JUDGMENT AND - SENTENCE FORM. Patricia L. Cohen, Judge, and Philip M. Hess, Judge, concur. -
      -
    - - - - - - -
    - ED99468: Overview/Summary
    - State of Missouri, Respondent, vs. Raymon Denzmore, - Appellant.
    - Author:  Patricia L. Cohen, J.  Vote:  AFFIRMED. Lisa S. Van - Amburg, P.J., and Philip M. Hess, J., concur. -
      -
    - - - - - - -
    - ED99186: Overview/Summary
    - David A. McArthur, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Patricia L. Cohen, Judge  Vote:  AFFIRMED AND REMANDED - FOR CORRECTION OF JUDGMENT NUNC PRO TUNC. Lisa S. Van Amburg, P.J., and Philip M. Hess, J., concur. -
      -
    - - - - - - -
    - ED99044: Overview/Summary
    - State of Missouri, Respondent/Cross-Appellant, vs. Elvis Smith, - Appellant.
    - Author:  Patricia L. Cohen, J.  Vote:  AFFIRMED AND REMANDED FOR - CORRECTION OF JUDGMENT NUNC PRO TUNC. Lisa S. Van Amburg, P.J., and Philip M. Hess, J., concur. -
      -
    - - - - - - -
    - ED100421: Overview/Summary
    - Spirit & Truth Church, et al., Plaintiffs/Respondents, vs. Mark - Barnaby, et al., Defendants/Appellants.
    - Author:  Robert G. Dowd, Jr., J.  Vote:  REVERSED. Lawrence E. - Mooney, P.J. and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED100309: Overview/Summary
    - Charlotte Benton, Plaintiff/Appellant, vs. Cracker Barrel Old - Country Stores, Inc., Defendant/Respondent.
    - Author:  Philip M. Hess, J.  Vote:  AFFIRMED. Lisa S. Van - Amburg, P.J. and Patricia L. Cohen, J., concur. -
      -
    - - - - - - -
    - ED100202: Overview/Summary
    - In the Matter of the Care and Treatment of William Doyle, - Appellant.
    - Author:  Gary M. Gaertner, Jr., J.   Vote:  AFFIRMED. Robert M. - Clayton III, C.J., and Gary Dial, S.J., concur. -
      -
    - - - - - - -
    - ED100036: Overview/Summary
    - State of Missouri, Plaintiff/Respondent, vs. Keith Mason, - Defendant/Appellant.
    - Author:  Philip M. Hess, J.  Vote:  AFFIRMED. Lisa S. Van - Amburg, P.J., and Patricia L. Cohen, J., concur. -
      -
    - - - - - - -
    - ED100009: Overview/Summary
    - State of Missouri, Plaintiff/Respondent, v. Gary L. Francis, Jr., - Defendant/Appellant.
    - Author:  Sherri B. Sullivan, J.  Vote:  REVERSED AND REMANDED. - Lawrence E. Mooney, P.J. and Robert G. Dowd, Jr., J., concur. -
      -
    - - -
    - - - - - - - - -
    - ED99603: Overview/Summary
    - Charles K. Moore, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Robert G. Dowd, Jr., J.  Vote:  REVERSED AND REMANDED. - Lawrence E. Mooney, P.J. and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED99060: Overview/Summary
    - Pulaski Bank, Respondent, vs. Nantucket Partners, L.C., a - Missouri Limited Liability Company, and Julian Hess, Defendants, and Keith Barket, Appellant.
    - Author:  Kurt S. Odenwald, J.  Vote:  AFFIRMED. Mary K. Hoff, - P.J., and Angela T. Quigless, J., Concur. -
      -
    - - - - - - -
    - ED100569: Overview/Summary
    - Captiva Lake Investments, LLC, a Missouri Limited Liability - Company, and Cypress Condominium at the Lake of the Ozarks Association, Plaintiffs/Appellants, v. - Ameristructure, Inc., a Missouri Corporation, and Stephen J. Sacco, Defendants/Respondents.
    - Author:  Sherri B. Sullivan, J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J., and Robert G. Dowd, Jr., J., concur. -
      -
    - - - - - - -
    - ED100197: Overview/Summary
    - David Darr, Appellant, vs. Roberts Marketing Group, LLC and - Division of Employment Security, Respondents.
    - Author:  Karl A.W. DeMarce, S.J.  Vote:  REVERSED AND REMANDED. - Robert M. Clayton III, C.J., and Gary M. Gaertner, Jr., J., concur. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-04-15-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99938: Overview/Summary
    - Robert H. Gurley, Movant/Appellant, vs. State of Missouri, - Respondent.
    - Author:  Lisa S. Van Amburg, J.  Vote:  AFFIRMED. Patricia L. - Cohen, Judge, and Philip M. Hess, Judge, concur. -
      -
    - - - - - - -
    - ED99819: Overview/Summary
    - State of Missouri, Respondent, vs. Stephen Caines, Appellant.
    - Author:  Robert G. Dowd, Jr., J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J., and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED99804: Overview/Summary
    - Investors Alliance, LLC, Plaintiff/Respondent, vs. Inez Bordeaux, - Defendant/Appellant.
    - Author:  Philip M. Hess, J.  Vote:  REVERSED AND REMANDED. Lisa - S. Van Amburg, P.J., and Patricia L. Cohen, J., concur. -
      -
    - - - - - - -
    - ED99782: Overview/Summary
    - Mary L. Lehmann, et al., Respondents, vs. Bank of America, N.A., - d/b/a U.S. Trust, Appellant.
    - Author:  Kurt S. Odenwald, J.  Vote:  AFFIRMED IN PART AND - REVERSED AND REMANDED IN PART. Mary K. Hoff, P.J., and Angela T. Quigless, J., Concur. -
      -
    - - - - - - -
    - ED99773: Overview/Summary
    - Meagan Garland, Petitioner/Appellant, vs. Director, Family - Support Division, Missouri Department of Social Services and Jeffrey Ruhl, Respondents.
    - Author:  Lisa S. Van Amburg, P.J.  Vote:  REVERSED AND REMANDED. - Patricia L. Cohen, Judge, concurs. Gary M. Gaertner, Jr., Judge, dissents in separate opinion. -
      -
    - - - - - - -
    - ED99701: Overview/Summary
    - Marcus McCoy, Movant/Appellant, vs. State of Missouri, - Respondent.
    - Author:  Philip M. Hess, J.  Vote:  AFFIRMED. Lisa S. Van - Amburg, P.J., and Patricia L. Cohen, J., concur. -
      -
    - - - - - - -
    - ED99089: Overview/Summary
    - State of Missouri, Plaintiff/Respondent, vs. Kevin Murray, - Defendant/Appellant.
    - Author:  Lisa S. Van Amburg, J.  Vote:  AFFIRMED. Patricia L. - Cohen, Judge, and Philip M. Hess, Judge, concur. -
      -
    - - - - - - -
    - ED100402: Overview/Summary
    - Desiree Ridgell, Plaintiff/Appellant, vs. Mark McDermott and - Karen McDermott, Defendants/Respondents.
    - Author:  Angela T. Quigless, J.  Vote:  REVERSED. Mary K. Hoff, - P.J., and Kurt S. Odenwald, J., Concurs. -
      -
    - - - - - - -
    - ED100117: Overview/Summary
    - Aaron H. Johnson, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Roy L. Richter, P.J.  Vote:  DISMISSED IN PART; - AFFIRMED IN PART. Clifford H. Ahrens, J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED100027: Overview/Summary
    - Rolanda D. Pearson, Appellant, vs. Department of Employment - Security, Respondent.
    - Author:  Lawrence E. Mooney, P.J.  Vote:  APPEAL DISMISSED AND - CAUSE REMANDED WITH INSTRUCTIONS. Robert G. Dowd., Jr., J., and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED100001: Overview/Summary
    - Xiaoyan Gu, Plaintiff/Appellant, vs. Da Hua Hu, and ACE INA - Insurance Company Canada, Defendants/Respondents.
    - Author:  Philip M. Hess, J.  Vote:  REVERSED AND REMANDED. Lisa - S. Van Amburg, P.J., and Patricia L. Cohen, J., concur. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-04-08-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99897: Overview/Summary
    - Lane House Construction, Inc., Respondent, vs. Doris Ogrowsky, - Appellant.
    - Author:  Roy L. Richter, P.J.  Vote:  REVERSED AND REMANDED. - Clifford H. Ahrens, J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED99727: Overview/Summary
    - State of Missouri, Respondent, vs. Samuel Meeks, - Appellant.
    - Author:  Robert G. Dowd., Jr., J.  Vote:  REVERSED AND REMANDED. - Lawrence E. Mooney, P.J., and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED99269: Overview/Summary
    - State of Missouri, Respondent, vs. Adam L. Steinmann, - Appellant.
    - Author:  Patricia L. Cohen, J.  Vote:  AFFIRMED. Lisa S. Van - Amburg, P.J., and Philip M. Hess, J., concur. -
      -
    - - - - - - -
    - ED100856: Overview/Summary
    - State of Missouri, Appellant, v. Joe L. Johnson, - Respondent.
    - Author:  Gary M. Gaertner, Jr., J.  Vote:  REVERSED. Robert M. - Clayton III, C.J., and Gary Dial, S.J., concur. -
      -
    - - - - - - -
    - ED100424: Overview/Summary
    - Christine A. Meissner, Appellant, vs. Jeffrey Schnettgoecke, - Respondent.
    - Author:  Robert M. Clayton III, C.J.  Vote:  REVERSED AND - REMANDED. Gary M. Gaertner, Jr., J., and Gary Dial, Sp.J., concur. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-04-01-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99940: Overview/Summary
    - Carrie Little, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Roy L. Richter, P.J.  Vote:  AFFIRMED. Clifford H. - Ahrens, J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED99846: Overview/Summary
    - Samson Desu, Plaintiff/Appellant, vs. Frederick Lewis, - Defendant/Respondent.
    - Author:  Lisa S. Van Amburg, J.  Vote:  AFFIRMED IN PART, - REVERSED IN PART AND REMANDED. Patricia L. Cohen, Judge, and Philip M. Hess, Judge, concur. -
      -
    - - - - - - -
    - ED99841: Overview/Summary
    - State of Missouri, Plaintiff/Respondent, v. Belvin L. Williams, - Jr., Defendant/Appellant.
    - Author:  Sherri B. Sullivan, J.  Vote:  AFFIRMED. Robert M. - Clayton III, C.J., and Angela T. Quigless, J., concur. -
      -
    - - - - - - -
    - ED99769: Overview/Summary
    - Ashley Janelle Lord, Respondent, vs. Directory of Revenue, State - of Missouri, Appellant.
    - Author:  Kurt S. Odenwald, J.  Vote:  REVERSED AND REMANDED. - Mary K. Hoff, P.J., and Angela T. Quigless, J., Concur. -
      -
    - - - - - - -
    - ED99608: Overview/Summary
    - State of Missouri, Respondent, vs. Douglas J. Howery, - Appellant.
    - Author:  Kurt S. Odenwald, J.  Vote:  AFFIRMED. Mary K. Hoff, - P.J., and Angela T. Quigless, J., Concur. -
      -
    - - - - - - -
    - ED99519: Overview/Summary
    - State of Missouri, Respondent, vs. Mark G. Jackson, - Appellant.
    - Author:  Robert G. Dowd, Jr., J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J., and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED100014: Overview/Summary
    - Vicki Armour-Mottaz, Claimant/Appellant, vs. Division of - Employment Security, Respondent.
    - Author:  Mary K. Hoff, Judge  Vote:  AFFIRMED. Kurt S. Odenwald, - Judge, and Angela T. Quigless, Judge, concur. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-03-25-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99837: Overview/Summary
    - Reliance Bank, Plaintiff/Respondent, vs. Paramont Properties, - LLC, and Keith Barket, Defendants/Appellants.
    - Author:  Philip M. Hess, J.  Vote:  AFFIRMED. Lisa S. Van - Amburg, P.J. and Patricia L. Cohen, J., concur. -
      -
    - - - - - - -
    - ED100357: Overview/Summary
    - Collins-Camden Partnership, L.P., Plaintiff/Appellant, v. County - of Jefferson, Missouri, and Jefferson County Council Members Don Bickowski, Renee Reuter, Bob Boyer, - Charles Groeteke, Terri S. Kreitler, Cliff Lane and Kelly Waymon, Defendants/Respondents.
    - Author:  Sherri B. Sullivan, J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J., and Robert G. Dowd, Jr., J., concur. -
      -
    - - - - - - -
    - ED100321: Overview/Summary
    - Ardell Fields, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Clifford H. Ahrens, J.  Vote:  REVERSED AND REMANDED. - Roy L. Richter, P.J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED100320: Overview/Summary
    - Drury Company, Respondent/Cross-Appellant, vs. Missouri United - School Insurance Counsel, Appellant, and Jackson R-2 School District, Cross-Respondent, and - Warner-Nease-Bost Architects, Inc., Defendant.
    - Author:  Angela T. Quigless, J.  Vote:  AFFIRMED. Mary K. Hoff, - P.J., and Kurt S. Odenwald, J., Concurs. -
      -
    - - - - - - -
    - ED100308: Overview/Summary
    - Lawrence Miller, Respondent, vs. Treasurer, State of Missouri, as - Custodian of the Second Injury Fund, Appellant.
    - Author:  Clifford H. Ahrens, J.  Vote:  REVERSED AND VACATED. - Roy L. Richter, P.J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED100063: Overview/Summary
    - Todd C. Westergaard, Movant/Appellant, v. State of Missouri, - Respondent/Respondent.
    - Author:  Sherri B. Sullivan, J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J., and Robert G. Dowd, Jr., J., concur. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-03-18-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99907: Overview/Summary
    - State of Missouri, Respondent, vs. Nasir N. Ahmad, Appellant.
    - Author:  Roy L. Richter, P.J.  Vote:  DISMISSED. Clifford H. - Ahrens, J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED99747: Overview/Summary
    - Greg Haddock, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Kurt S. Odenwald, J.  Vote:  AFFIRMED. Mary K. Hoff, - P.J., and Angela T. Quigless, J., Concur. -
      -
    - - - - - - -
    - ED99203: Overview/Summary
    - Kevin Plager, Appellant, vs. Tiffany Plager, Respondent.
    - Author:  Gary M. Gaertner, Jr., J.  Vote:  REVERSED AND - REMANDED. Robert M. Clayton III, C.J., and Karl A.W. DeMarce, S.J., concur. -
      -
    - - - - - - -
    - ED100452: Overview/Summary
    - Lonnie Harris, Plaintiff/Respondent, v. Bi-State Development - Agency, Defendant/Appellant.
    - Author:  Sherri B. Sullivan, J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J., and Robert G. Dowd, Jr., J., concur. -
      -
    - - - - - - -
    - ED100191: Overview/Summary
    - Shane Null, Respondent, vs. New Haven Care Center, Inc., - Appellant, and Treasurer of Missouri as Custodian of the Second Injury Fund, Respondent.
    - Author:  Kurt S. Odenwald, J.  Vote:  AFFIRMED. Mary K. Hoff, - P.J., and Angela T. Quigless, J., Concurs. -
      -
    - - - - - - -
    - ED100137: Overview/Summary
    - Tiffaney Hampton, Appellant, vs. Aerotek, Inc., and Division of - Employment Security, Respondents.
    - Author:  Glenn A. Norton, J.  Vote:  APPEAL DISMISSED. Roy L. - Richter, P.J. and Clifford H. Ahrens, J., concur. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-03-11-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99619: Overview/Summary
    - Jeffrey G. Thurman, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Kurt S. Odenwald, J.  Vote:  AFFIRMED. Mary K. Hoff, - P.J., and Angela T. Quigless, J., Concur. -
      -
    - - - - - - -
    - ED99517: Overview/Summary
    - Henry Frazier, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Patricia L. Cohen, J.  Vote:  AFFIRMED. Lisa S. Van - Amburg, P.J., and Gary M. Gaertner, Jr., J., concur. -
      -
    - - - - - - -
    - ED99366: Overview/Summary
    - State of Missouri, Respondent, v. Cemon Byrd, Appellant
    - Author:  Gary M. Gaertner, Jr., J.  Vote:  AFFIRMED. Robert M. - Clayton III, C.J., and Karl A.W. DeMarce, S.J., concur. -
      -
    - - - - - - -
    - ED99057: Overview/Summary
    - Anastasia M. Hoffman, Respondent/Cross-Appellant, vs. Richard W. - Hoffman, Appellant.
    - Author:  Patricia L. Cohen, J.  Vote:  AFFIRMED. Lisa S. Van - Amburg, P.J., and Gary M. Gaertner, Jr., J., concur. -
      -
    - - - - - - -
    - ED98906: Overview/Summary
    - State of Missouri, Respondent, vs. George Dewey McCleary, III, - Appellant.
    - Author:  Lawrence E. Mooney, P.J.  Vote:  JUDGMENT AFFIRMED. - Robert G. Dowd, Jr., J., and Sherri B. Sullivan, J., concur. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-03-04-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99909: Overview/Summary
    - Arbab Adum, Respondent, vs. St. Louis Metropolitan Police - Department, et al., Appellant.
    - Author:  Robert G. Dowd, Jr., J.  Vote:  REVERSED. Lawrence E. - Mooney, P.J., concurs in result. Sherri B. Sullivan, J., concurs. -
      -
    - - - - - - -
    - ED99852: Overview/Summary
    - Biri M. Blevins, John T. Busey, and Charles W. Jones, Appellants, - vs. American Family Mutual Insurance Company and Janey Foust, Respondents.
    - Author:  Robert M. Clayton III, C.J.  Vote:  REVERSED AND - REMANDED IN PART AND AFFIRMED IN PART. Roy L. Richter, J., and Gary M. Gaertner, Jr., J., concur. -
      -
    - - - - - - -
    - ED99492: Overview/Summary
    - Tracy M. Atkinson, Respondent, v. Douglas D. Atkinson, - Appellant.
    - Author:  Clifford H. Ahrens, J.  Vote:  REVERSED AND REMANDED. - Roy L. Richter, P.J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED99261: Overview/Summary
    - State of Missouri, Respondent, vs. Brenda Churchill, - Appellant.
    - Author:  Kurt S. Odenwald, J.  Vote:  AFFIRMED. Angela T. - Quigless, J., Concurs in result only and Mary K. Hoff, P.J., Dissents in separate opinion. -
      -
    - - - - - - -
    - ED99128: Overview/Summary
    - Richard Simmons, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Roy L. Richter, P.J.  Vote:  AFFIRMED. Clifford H. - Ahrens, J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED100929: Overview/Summary
    - State of Missouri ex rel. Jason O. Salm, Relator, vs. The - Honorable Chris Kunza Mennemeyer, Respondent.
    - Author:  Glenn A. Norton, J.  Vote:  PRELIMINARY ORDER IN - MANDAMUS MADE PERMANENT. Sherri B. Sullivan, J., and Patricia L. Cohen, J., concur. -
      -
    - - - - - - -
    - ED100276: Overview/Summary
    - Morion S. Dawson, Appellant, v. State of Missouri, - Respondent.
    - Author:  Gary M. Gaertner, Jr., J.  Vote:  AFFIRMED. Robert M. - Clayton III, C.J., and Karl A.W. DeMarce, S.J., concur. -
      -
    - - - - - - -
    - ED100064: Overview/Summary
    - State of Missouri, Respondent, v. Keith Stubblefield, - Appellant.
    - Author:  Gary M. Gaertner, Jr., J.  Vote:  AFFIRMED. Robert M. - Clayton III, C.J., and Karl A.W. DeMarce, S.J., concur. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-02-25-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99914: Overview/Summary
    - Karl Gardner, Appellant, vs. MERS/Missouri Goodwill Industries, - and Division of Employment Security, Respondents.
    - Author:  Glenn A. Norton, J.  Vote:  APPEAL DISMISSED. Roy L. - Richter, P.J. and Clifford H. Ahrens, J., concur. -
      -
    - - - - - - -
    - ED99869: Overview/Summary
    - Jonathan Joyner, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Robert G. Dowd, Jr., J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J. and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED99868: Overview/Summary
    - John J. Smith, Appellant, vs. Lora J. Smith, Respondent.
    - Author:  Robert G. Dowd, Jr., J.  Vote:  DISMISSED. Lawrence E. - Mooney, P.J. and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED99858: Overview/Summary
    - Danin Gray, Appellant, vs. Division of Employment Security, - Respondent.
    - Author:  Robert G. Dowd, Jr., J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J. and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED99724: Overview/Summary
    - Gavin Hauk, Respondent, vs. Scotland County Commission and It's - Commissioners: Charles Harris, Jr., David Wiggins and Danette Clatt in their Official Capacities, - Appellants.
    - Author:  Robert M. Clayton III, C.J.  Vote:  WE AFFIRM. Clifford - H. Ahrens, J. and Gary M. Gaertner, Jr., J., concur. -
      -
    - - - - - - -
    - ED99651: Overview/Summary
    - Antonio Jackson, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Kurt S. Odenwald, J.  Vote:  AFFIRMED. Mary K. Hoff, - P.J., and Angela T. Quigless, J., Concur. -
      -
    - - - - - - -
    - ED99566: Overview/Summary
    - A.L.C., Respondent, vs. D.A.L., Appellant.
    - Author:  Glenn A. Norton, J.  Vote:  REVERSED AND REMANDED. Roy - L. Richter, P.J. and Clifford H. Ahrens, J., concur. -
      -
    - - - - - - -
    - ED99440: Overview/Summary
    - Manuel Burgess, Appellant, vs. State of Missouri, Respondent.
    - Author:  Patricia L. Cohen, J.  Vote:  AFFIRMED. Lisa S. Van - Amburg, P.J., and Philip M. Hess, J., concur. -
      -
    - - - - - - -
    - ED99033: Overview/Summary
    - State of Missouri, Respondent, vs. Paul Curtis White, - Appellant.
    - Author:  Robert G. Dowd, Jr., J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J. and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED98978: Overview/Summary
    - State of Missouri, Respondent, vs. Darion Jordan Ivy, - Appellant.
    - Author:  Kurt S. Odenwald, J.  Vote:  AFFIRMED. Mary K. Hoff, - P.J., and Angela T. Quigless J., Concur. -
      -
    - - - - - - -
    - ED100826: Overview/Summary
    - State of Missouri ex rel. Ernest Kizer, Relator, vs. Honorable - Chris Kunza Mennemeyer, Judge of the Circuit Court of Lincoln County, Missouri, Respondent.
    - Author:  Lawrence E. Mooney, P.J.  Vote:  PRELIMINARY ORDER IN - MANDAMUS MADE PERMANENT. Glenn A. Norton, J. and Gary M. Gaertner, Jr., J., concur. -
      -
    - - - - - - -
    - ED100782: Overview/Summary
    - State of Missouri ex rel. Michael Lovelace, Relator, vs. - Honorable Chris Kunza Mennemeyer, Judge of the Circuit Court of Lincoln County, Missouri, - Respondent.
    - Author:  Lawrence E. Mooney, P.J.  Vote:  PRELIMINARY ORDER IN - MANDAMUS MADE PERMANENT. Glenn A. Norton, J. and Gary M. Gaertner, Jr., J., concur. -
      -
    - - - - - - -
    - ED100153: Overview/Summary
    - Romell Bates, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Robert G. Dowd, Jr., J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J. and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED100074: Overview/Summary
    - John F. Maness, Respondent, vs. City of De Soto and Missouri - Intergovernmental Risk Management Association, Appellants, and Treasurer of Missouri as Custodian of the - Second Injury Fund, Respondent.
    - Author:  Angela T. Quigless, J.  Vote:  AFFIRMED. Mary K. Hoff, - P.J. and Kurt S. Odenwald, J., Concurs. -
      -
    - - -
    - - - - - - - - -
    - ED99950: Overview/Summary
    - Trudy A. Zahn, Appellant/Cross-Respondent, v. Charles W. Zahn, - Respondent/Cross-Appellant.
    - Author:  Gary M. Gaertner, Jr., J.  Vote:  AFFIRMED IN PART AND - REVERSED AND REMANDED IN PART. Lisa S. Van Amburg, P.J. and Patricia L. Cohen, J., concur. -
      -
    - - - - - - -
    - ED99779: Overview/Summary
    - Larry Abt, Claimant/Appellant, vs. Mississippi Lime Company, - Employer/Respondent, and Treasurer of Missouri as Custodian of the Second Injury Fund, Additional - Party/Respondent.
    - Author:  Lawrence E. Mooney, P.J.  Vote:  REVERSED AND REMANDED - IN PART AND AFFIRMED IN PART. Robert G. Dowd, Jr., J., and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED99712: Overview/Summary
    - State of Missouri, Respondent, vs. Leonard M. Slocum, - Appellant.
    - Author:  Patricia L. Cohen, J.  Vote:  AFFIRMED. Lisa S. Van - Amburg, P.J., and Philip M. Hess, J., concur. -
      -
    - - - - - - -
    - ED99707: Overview/Summary
    - John Doe, Respondent, vs. Col. Daniel Isom, et al., - Appellants.
    - Author:  Roy L. Richter, P.J.  Vote:  REVERSED AND REMANDED. - Clifford H. Ahrens, J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED99427: Overview/Summary
    - State of Missouri, Plaintiff/Respondent, vs. Claude Dale Brooks, - Defendant/Appellant.
    - Author:  Lisa S. Van Amburg, J.  Vote:  VACATED AND REMANDED. - Patricia L. Cohen, Judge, concurs. Gary M. Gaertner, Jr., Judge, dissents in separate opinion. -
      -
    - - - - - - -
    - ED100251: Overview/Summary
    - Stacey L. Blackshear, Claimant/Respondent, v. Adecco, - Employer/Respondent, and American Home Assurance Company c/o Broadspire Services, Inc., Respondent, and - Treasurer of the State of Missouri, Custodian of the Second Injury Fund, Appellant.
    - Author:  Sherri B. Sullivan, J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J., and Robert G. Dowd, Jr., J., concur. -
      -
    - - - - - - -
    - ED100044: Overview/Summary
    - Thomas Binkley, Harlene J. Binkley, Roland E. Sturhahn, and Susan - J. Sturhahn, Appellants, vs. American Equity Mortgage, Inc., Respondent.
    - Author:  Patricia L. Cohen, J.  Vote:  AFFIRMED. Lisa S. Van - Amburg, P.J., and Gary M. Gaertner, Jr., J., concur. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-02-11-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99989: Overview/Summary
    - Bank of America, N.A., Respondent, vs. Ronald Duff d/b/a Ron Duff - Video Productions and Jo Duff, Appellants.
    - Author:  Angela T. Quigless, J.  Vote:  AFFIRMED. Mary K. Hoff, - P.J., and Kurt S. Odenwald, J., Concurs. -
      -
    - - - - - - -
    - ED99945: Overview/Summary
    - Cheryl Hirsch, Employee/Appellant, v. Convergys Customer - Management Group, Inc., Employer/Respondent, and Division of Employment Security, - Respondent/Respondent.
    - Author:  Sherri B. Sullivan, J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J., and Robert G. Dowd, Jr., J., concur. -
      -
    - - - - - - -
    - ED99916: Overview/Summary
    - Christopher J. Ivory, Movant/Appellant, vs. State of Missouri, - Respondent.
    - Author:  Mary K. Hoff, P.J.  Vote:  AFFIRMED. Kurt S. Odenwald, - J., and Angela T. Quigless, J., Concur. -
      -
    - - - - - - -
    - ED99615: Overview/Summary
    - James Moore, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Roy L. Richter, P.J.  Vote:  DISMISSED. Clifford H. - Ahrens, J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED99555: Overview/Summary
    - State of Missouri, Plaintiff/Respondent, v. Robert Baker, - Defendant/Appellant.
    - Author:  Sherri B. Sullivan, J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J., and Robert G. Dowd, Jr., J., concur. -
      -
    - - - - - - -
    - ED99531: Overview/Summary
    - State of Missouri, Plaintiff/Respondent, v. Chris Edward Reed, - Defendant/Appellant.
    - Author:  Sherri B. Sullivan, J.  Vote:  AFFIRMED. Lawrence E. - Mooney, P.J., and Robert G. Dowd, Jr., J., concur. -
      -
    - - - - - - -
    - ED99452: Overview/Summary
    - Genevieve-Anne Gaudreau, Respondent, vs. Richard A. Barnes, - Appellant.
    - Author:  Roy L. Richter, P.J.  Vote:  AFFIRMED. Clifford H. - Ahrens, J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED99319: Overview/Summary
    - John T. Haidul, Appellant, vs. State of Missouri, Respondent.
    - Author:  Angela T. Quigless, J.  Vote:  AFFIRMED. Mary K. Hoff, - P.J., and Kurt S. Odenwald, J., Concurs. -
      -
    - - - - - - -
    - ED98875: Overview/Summary
    - State of Missouri, Plaintiff/Respondent, vs. Christopher Sonnier, - Defendant/Appellant.
    - Author:  Lisa S. Van Amburg, J.  Vote:  AFFIRMED. Patricia L. - Cohen, J., and Philip M. Hess, J., concur. -
      -
    - - - - - - -
    - ED98171: Overview/Summary
    - Richard Burton and Patricia Burton, Appellants, vs. Janice Klaus, - Respondent.
    - Author:  Kurt S. Odenwald, J.  Vote:  DISMISSED. Mary K. - Hoff,P.J., and Angela T. Quigless, J., Concur. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-02-04-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED100008: Overview/Summary
    - Karen Hidritch-Hamann, Respondent, vs. David Hidritch and - Hidritch Properties, LLC, Appellants.
    - Author:  Kurt S. Odenwald, J.  Vote:  DISMISSED. Mary K. - Hoff,P.J., and Angela T. Quigless, J., Concur. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-01-28-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99981: Overview/Summary
    - KNT Management, LLC, Plaintiff/Appellant, vs. Kimberly Flenoid, - Defendant/Respondent.
    - Author:  Lawrence E. Mooney, P.J.  Vote:  REVERSED AND REMANDED. - Robert G. Dowd, Jr., J., and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED99787: Overview/Summary
    - City of Moline Acres, Plaintiff/Appellant, vs. Charles W. - Brennan, Defendant/Respondent.
    - Author:  Lisa S. Van Amburg, P.J.  Vote:  AFFIRMED. Patricia L. - Cohen, J. and Philip M. Hess, J., concur. -
      -
    - - - - - - -
    - ED99499: Overview/Summary
    - In the Matter of: T.S.D.
    - Author:  Kurt S. Odenwald, J.  Vote:  AFFIRMED. Mary K. Hoff, - P.J., and Angela T. Quigless, J., Concur. -
      -
    - - - - - - -
    - ED99088: Overview/Summary
    - State of Missouri, Respondent, vs. Christopher Eric Hunt, - Appellant.
    - Author:  Robert G. Dowd, Jr., J.  Vote:  AFFIRMED IN PART AND - REVERSED AND REMANDED IN PART. Lawrence E. Mooney, P.J. and Sherri B. Sullivan, J., concur. -
      -
    - - - - - - -
    - ED98277: Overview/Summary
    - State of Missouri, Respondent, vs. George Turner, - Appellant.
    - Author:  Kurt S. Odenwald, J.  Vote:  AFFIRMED. Mary K. Hoff, - P.J., and Angela T. Quigless J., Concur. -
      -
    - - - - - - -
    - ED100045: Overview/Summary
    - Rochelle Hardin, Appellant, vs. Adecco USA, Inc., - Defendant/Respondent, and Biomerieux, Inc., Defendant, and Tony Dansberry, Defendant.
    - Author:  Lawrence E. Mooney, P.J.  Vote:  APPEAL DISMISSED. - Robert G. Dowd, Jr., J., and Sherri B. Sullivan, J., concur. -
      -
    - - -
    - - - - - - - - -
    - ED99832: Overview/Summary
    - State of Missouri ex rel. Arnie C. Dienoff, Respondent, vs. - Patricia Galkowski, St. Charles County Ambulance District, Appellants, and Rich A. Chrismer and St. - Charles County, Missouri, Defendants.
    - Author:  PER CURIAM.  Vote:  REVERSED AND REMANDED. Lisa S. Van - Amburg, P.J., Patricia L. Cohen, J., and Gary M. Gaertner, Jr., J. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-01-21-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99632: Overview/Summary
    - Charles Kyles, Appellant, vs. State of Missouri, - Respondent.
    - Author:  Patricia L. Cohen, J.  Vote:  REVERSED AND REMANDED. - Lisa S. Van Amburg, P.J., and Philip M. Hess, J., concur. -
      -
    - - - - - - -
    - ED99569: Overview/Summary
    - Phillip R. Sullins, Appellant, vs. Snow C. Sullins, - Respondent.
    - Author:  Roy L. Richter, P.J.  Vote:  AFFIRM IN PART; REVERSE - AND REMAND IN PART. Clifford H. Ahrens, J., and Glenn A. Norton, J., concur. -
      -
    - - - - - - -
    - ED99553: Overview/Summary
    - Dr. John B. Weltmer, Jr., Appellant, vs. Signature Health - Services Inc. f/k/a Premier Care, Inc., St. Louis County Orthopedic Group Inc., SLCOG Property - Management & Leasing Company, LLC, and Premier Care Leasing, LLC, Respondents.
    - Author:  Gary M. Gaertner, Jr., J.  Vote:  REVERSED IN PART AND - AFFIRMED IN PART. Lisa S. Van Amburg, P.J. and Patricia L. Cohen, J., concur. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-01-14-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - ED99135: Overview/Summary
    - State of Missouri, Respondent, vs. Willie Davis, - Appellant.
    - Author:  Robert M. Clayton III, C.J.  Vote:  AFFIRMED IN PART - AND REVERSED AND REMANDED IN PART. Glenn A. Norton, J. and Patricia L. Cohen, J., concur. -
      -
    - - -
    - - - - - - - - -
    - EDOrder-01-07-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + EDOrder-01-10-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + +
    +
    + ED110395:  Overview/Summary
    + Kyle Herrington, Movant/Appellant, vs. State of Missouri, Respondent.
    Author:   Thomas C. Clark II, J. +
    Vote:  REVERSED AND REMANDED. Lisa P. Page, P.J., and Renee D. Hardin-Tammons, J., concur. +
    +
    + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + -
    - - + + +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/moctapp_southern_example.compare.json b/tests/examples/opinions/united_states/moctapp_southern_example.compare.json index a749888a6..efefcafde 100644 --- a/tests/examples/opinions/united_states/moctapp_southern_example.compare.json +++ b/tests/examples/opinions/united_states/moctapp_southern_example.compare.json @@ -1,1016 +1,1770 @@ [ { - "case_dates": "2014-05-09", - "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. ANTHONY W. KALTER", - "download_urls": "/file.jsp?id=73253", + "case_dates": "2023-10-31", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. CARL W. DILL, II", + "download_urls": "/file.jsp?id=202435", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded for New Trial. Bates, P.J., and Lynch, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32125", - "judges": "Judge Don E. Burrell", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37153", + "judges": "Burrell, J., Sheffield, J., Borthwick, J., Gooch, J. and Lynch, Senior Judge - Concur Growcock, J. - Concurs in Part and Dissents in Part in Separate Opinion Bates, J. - Concurs with Separate Opinion of Growcock, J.", + "case_name_shorts": "", + "authors": "Per Curiam" }, { - "case_dates": "2014-05-07", - "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. MICHAEL LEE HOLT", - "download_urls": "/file.jsp?id=73234", + "case_dates": "2023-10-24", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. KEVIN LEE HAUSMANN", + "download_urls": "/file.jsp?id=202333", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Scott, J., Concurs in Separate Opinion and Francis, C.J., Concurs", - "divisions": "Southern Distr.", - "docket_numbers": "SD32812", - "judges": "Judge Nancy Steffen Rahmeyer", - "case_name_shorts": "" + "dispositions": "Affirmed and Remanded with Instructions", + "docket_numbers": "SD37514", + "judges": "Bates, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" }, { - "case_dates": "2014-05-06", - "case_names": "State of Missouri v. JACOB W. BOOK", - "download_urls": "/file.jsp?id=73213", + "case_dates": "2023-10-17", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. THAISEN PAUL OLLERICH", + "download_urls": "/file.jsp?id=202153", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., and Scott, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32709", - "judges": "Judge William W. Francis, Jr.", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37758", + "judges": "Sheffield, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" }, { - "case_dates": "2014-05-06", - "case_names": "FARM BUREAU TOWN & COUNTRY INSURANCE COMPANY OF MISSOURI v. JAMES AND PATRICIA SHIPMAN, Defendants-Respondents", - "download_urls": "/file.jsp?id=73214", + "case_dates": "2023-10-17", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. KENNY JACKSON", + "download_urls": "/file.jsp?id=202154", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Francis, C.J., Concurs, Rahmeyer, P.J., Concurs in part Dissents in part in separate opinion.", - "divisions": "Southern Distr.", - "docket_numbers": "SD32416", - "judges": "Judge Daniel E. Scott", - "case_name_shorts": "" + "dispositions": "Dismissed in Part and Affirmed", + "docket_numbers": "SD37762", + "judges": "Burrell, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" }, { - "case_dates": "2014-05-05", - "case_names": "MARK E. McGUIRE, Claimant-Respondent v. CHRISTIAN COUNTY, Employer-Appellant, and MISSOURI ASSOCIATION OF COUNTIES, Insurer-Appellant", - "download_urls": "/file.jsp?id=73154", + "case_dates": "2023-10-17", + "case_names": "IN THE INTEREST OF M.M.B., Reynolds County Juvenile Office v. S.D.B.", + "download_urls": "/file.jsp?id=202155", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Burrell, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32731", - "judges": "Judge Gary W. Lynch", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded with Instructions", + "docket_numbers": "SD37865", + "judges": "Bates, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "S.D.B.", + "authors": "Judge Becky J.W. Borthwick" }, { - "case_dates": "2014-04-30", - "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. DALE S. OLTEN, SR.", - "download_urls": "/file.jsp?id=73053", + "case_dates": "2023-10-06", + "case_names": "GREG ALAN MARVIN v. STATE OF MISSOURI", + "download_urls": "/file.jsp?id=201882", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Scott, J., and Francis, Jr., C.J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32615", - "judges": "Nancy Steffen Rahmeyer, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37704", + "judges": "Burrell, J and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" }, { - "case_dates": "2014-04-30", - "case_names": "JULIA ERSKINE, Petitioner/Respondent v. DIRECTOR OF REVENUE, STATE OF MISSOURI", - "download_urls": "/file.jsp?id=73054", + "case_dates": "2023-10-05", + "case_names": "IN THE INTEREST OF N.D.P.H. and Z.L.P.H, Minor children under seventeen years of age, K.E.H. v. GREENE COUNTY JUVENILE OFFICER, Petitioner-Respondent", + "download_urls": "/file.jsp?id=201833", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded with Directions. Rahmeyer, P.J., and Scott, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32799", - "judges": "William W. Francis, Jr., Chief Judge", - "case_name_shorts": "" + "dispositions": "Affirmed Goodman, C", + "docket_numbers": "SD37993 and SD37994 (Consolidated)", + "judges": "J. and Borthwick, J. - Concur", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" }, { - "case_dates": "2014-04-29", - "case_names": "DEBORAH A. STRATMAN and TIMOTHY M. STRATMAN, Plaintiffs-Respondents v. HAZEL I. WAGNER", - "download_urls": "/file.jsp?id=72993", + "case_dates": "2023-10-02", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. JANTZEN BLAKE STRICKLAND", + "download_urls": "/file.jsp?id=201673", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Scott, J., and Francis, Jr., C.J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32679", - "judges": "Nancy Steffen Rahmeyer, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed Goodman, C", + "docket_numbers": "SD37531", + "judges": "J. and Burrell, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" }, { - "case_dates": "2014-04-28", - "case_names": "CAROL HINESLY, Dunklin County Clerk,Plaintiff/Appellant/Respondent v. TOM TODD and KENT HAMPTON, Defendants/Respondents/Cross-Appellants.", - "download_urls": "/file.jsp?id=72893", + "case_dates": "2023-09-29", + "case_names": "ROB SPRUEILL, n/k/a ROBERT DEAN HOLLOWAY, and FIVE STAR PRODUCTIONS, LLC v. DAVID LOTT and MISSOURI HOLDING GROUP, INC., Respondents-Respondents", + "download_urls": "/file.jsp?id=201593", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Appeal No. SD32495 Dismissed Appeal Nos. SD32467 & SD32586 Reversed and Remanded with Instructions. Bates, P.J., and Francis, C.J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32467, SD32495, &, SD32586", - "judges": "Gary W. Lynch, Judge", - "case_name_shorts": "" + "dispositions": "Appeal Dismissed Burrell, J", + "docket_numbers": "SD37355", + "judges": "and Growcock, J. - Concur", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" }, { - "case_dates": "2014-04-25", - "case_names": "JONATHAN SAGE, Claimant-Respondent/Cross-Appellant v. TALBOT INDUSTRIES, Employer-Appellant/Cross-Respondent, and FIDELITY & GUARANTY INSURANCE COMPANY, Insurer-Appellant/Cross-Respondent, and TREASURER OF THE STATE OF MISSOURI AS CUSTODIAN OF THE SECOND INJURY FUND, Respondent-Respondent.", - "download_urls": "/file.jsp?id=72815", + "case_dates": "2023-09-28", + "case_names": "IN THE INTEREST OF S.L.C., Greene County Juvenile Office v. M.A.C.", + "download_urls": "/file.jsp?id=201555", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Burrell, J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32901, SD32906, &, SD32907", - "judges": "Jeffrey W. Bates, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37952", + "judges": "Sheffield, J. and Goodman, J. - Concurs", + "case_name_shorts": "M.A.C.", + "authors": "Judge Becky J.W. Borthwick" }, { - "case_dates": "2014-04-24", - "case_names": "STATE OF MISSOURI v. JEFFREY BARKER STONE, Defendant-Respondent.", - "download_urls": "/file.jsp?id=72753", + "case_dates": "2023-09-27", + "case_names": "ESTATE OF NANCY MCKEAN, BY AND THROUGH PERSONAL REPRESENTATIVE CHRISTI EGLOFF v. GLORIA D. BAKER, KENNETH BAKER, and JUSTIN BLAKE", + "download_urls": "/file.jsp?id=201533", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Burrell, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32867", - "judges": "Gary W. Lynch, Judge", - "case_name_shorts": "" + "dispositions": "Vacated in Part and Remanded with Instructions", + "docket_numbers": "SD37650 and SD37651 (Consolidated)", + "judges": "Goodman, C.J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" }, { - "case_dates": "2014-04-23", - "case_names": "KEVIN JOHNSON, Claimant-Appellant/Cross v. CITY OF CARTHAGE, Employer-Respondent/Cross", - "download_urls": "/file.jsp?id=72653", + "case_dates": "2023-09-26", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. TYSON J. FAIRLEY", + "download_urls": "/file.jsp?id=201494", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, J., and Francis, Jr., C.J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32936, &, SD32958", - "judges": "Nancy Steffen Rahmeyer, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37719", + "judges": "Bates, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" }, { - "case_dates": "2014-04-22", - "case_names": "JOHN MATTHEW CLARK, Petitioner-Respondent v. DIRECTOR OF REVENUE, STATE OF MISSOURI", - "download_urls": "/file.jsp?id=72613", + "case_dates": "2023-09-26", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. LAKOTA GILBERT TUCKER", + "download_urls": "/file.jsp?id=201493", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Scott, J., and Francis, Jr., C.J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32777", - "judges": "Nancy Steffen Rahmeyer, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37806", + "judges": "Sheffield, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" }, { - "case_dates": "2014-04-21", - "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. JAMES CARL DUKE III", - "download_urls": "/file.jsp?id=72560", + "case_dates": "2023-09-26", + "case_names": "DOROTHY ROSS, Plaintiff-Respondent v. VENERABLE INSURANCE AND ANNUITY CO.", + "download_urls": "/file.jsp?id=201495", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Lynch, J., and Burrell, J., Concurs", - "divisions": "Southern Distr.", - "docket_numbers": "SD32459", - "judges": "Mary W. Sheffield, Judge", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded with Directions", + "docket_numbers": "SD37826", + "judges": "Bates, J. and Sheffield, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" }, { - "case_dates": "2014-04-21", - "case_names": "POPLAR BLUFF INTERNET, INC. v. CITY OF POPLAR BLUFF, Defendant/Respondent.", - "download_urls": "/file.jsp?id=72561", + "case_dates": "2023-09-25", + "case_names": "IN THE ESTATE OF ANTHONY M. VRANA, DECEDENT, SANDRA FIDURA-PHILLIPS v. AARON WILSON", + "download_urls": "/file.jsp?id=201453", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., and Scott, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32823", - "judges": "William W. Francis, Jr., Chief Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37889", + "judges": "Growcock, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J.W. Borthwick" }, { - "case_dates": "2014-04-18", - "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. PETER D. HANSEN", - "download_urls": "/file.jsp?id=72530", + "case_dates": "2023-09-22", + "case_names": "STATE OF MISSOURI v. DESMOND TYEZ GREER", + "download_urls": "/file.jsp?id=201492", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part, Reversed in Part, and Remanded with Directions. Francis, Jr., C.J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32109", - "judges": "Nancy Steffen Rahmeyer, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37706", + "judges": "Burrell, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" }, { - "case_dates": "2014-04-18", - "case_names": "DONALD BRANDENBURG v. TREASURER OF THE STATE OF MISSOURI, CUSTODIAN OF SECOND INJURY FUND", - "download_urls": "/file.jsp?id=72531", + "case_dates": "2023-09-20", + "case_names": "WILLIAM H. COOK v. STATE OF MISSOURI", + "download_urls": "/file.jsp?id=201355", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., and Scott, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32849", - "judges": "William W. Francis, Jr., Chief Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37681", + "judges": "Bates, J. and Burrell, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" }, { - "case_dates": "2014-04-16", - "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. CHRISTOPHER RYAN BEARD", - "download_urls": "/file.jsp?id=72374", + "case_dates": "2023-09-19", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. KIMBERLY RISTON", + "download_urls": "/file.jsp?id=201258", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32417", - "judges": "Don E. Burrell, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37522", + "judges": "Growcock, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" }, { - "case_dates": "2014-04-10", - "case_names": "THE BANK OF MISSOURI, Plaintiff-Respondent v. SOUTH CREEK PROPERTIES, LLC, HAMMER COLLECTIONS, LLC, MICHAEL and CHARLOTTE DEWLEY, and TREDWELL ENTERPRISES, INC., Third-Party Defendant-Respondent.", - "download_urls": "/file.jsp?id=72113", + "case_dates": "2023-09-19", + "case_names": "QWENTEN DEON AMLIN, Movant-Appellant v. STATE OF MISSOURI, Respondent-Respondent", + "download_urls": "/file.jsp?id=201256", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Lynch, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32374, &, SD32543", - "judges": "Mary W. Sheffield, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37647", + "judges": "Goodman, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" }, { - "case_dates": "2014-04-08", - "case_names": "KIM FLORA, Petitioner-Respondent v. BRADLEY L. FLORA", - "download_urls": "/file.jsp?id=72020", + "case_dates": "2023-09-19", + "case_names": "JOHNNY LEE COOPER v. STATE OF MISSOURI", + "download_urls": "/file.jsp?id=201257", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Lynch, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32498", - "judges": "Don E. Burrell, Judge", - "case_name_shorts": "" + "dispositions": "Dismissed", + "docket_numbers": "SD37877", + "judges": "Bates, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" }, { - "case_dates": "2014-04-07", - "case_names": "MICHAEL D. BURNS v. STATE OF MISSOURI", - "download_urls": "/file.jsp?id=71993", + "case_dates": "2023-09-12", + "case_names": "RICK LISEK AND JENNIFER LISEK v. GREG TABER AND COLLEEN S. TABER, Defendants-Respondents", + "download_urls": "/file.jsp?id=201053", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., and Francis, Jr., C.J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32775", - "judges": "Daniel E. Scott, Judge", - "case_name_shorts": "" + "dispositions": "Appeal Dismissed", + "docket_numbers": "SD37897", + "judges": "Sheffield, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" }, { - "case_dates": "2014-04-04", - "case_names": "AMANDA MEDLOCK and SAM MEDLOCK v. ST. JOHN'S HEALTH SYSTEM, INC., and ST. JOHN'S CLINIC, INC., Defendants-Respondents.", - "download_urls": "/file.jsp?id=71944", + "case_dates": "2023-09-12", + "case_names": "MICHELLE L. KURZ v. RODD E. KURZ", + "download_urls": "/file.jsp?id=201055", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Burrell, J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32776", - "judges": "Gary W. Lynch, Judge", - "case_name_shorts": "" + "dispositions": "Dismissed", + "docket_numbers": "SD37918", + "judges": "Bates, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jack A. L. Goodman" }, { - "case_dates": "2014-04-02", - "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. TENA D. CADY", - "download_urls": "/file.jsp?id=71833", + "case_dates": "2023-09-12", + "case_names": "JANE E. ZAMORA v. HUGO E. ZAMORA, Respondent-Respondent", + "download_urls": "/file.jsp?id=201054", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Burrell, J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32636", - "judges": "Gary W. Lynch, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37807", + "judges": "Bates, J. and Sheffield, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" }, { - "case_dates": "2014-03-31", - "case_names": "In the Interest of: D.J.G., Minor, MISSOURI DEPARTMENT OF SOCIAL SERVICES, CHILDREN'S DIVISION, and, HOWELL COUNTY JUVENILE OFFICE, Petitioners-Respondents. v. A.B., Natural Father", - "download_urls": "/file.jsp?id=71696", + "case_dates": "2023-09-08", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. TYMAN DEVETTE LATIN", + "download_urls": "/file.jsp?id=200934", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Lynch, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32887", - "judges": "Don E. Burrell, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37722", + "judges": "Goodman, C.J. and Bates, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" }, { - "case_dates": "2014-03-31", - "case_names": "In The Estate Of: KENNETH SUMMER, JR., Respondent-Respondent v. MISSOURI DEPARTMENT OF MENTAL HEALTH", - "download_urls": "/file.jsp?id=71697", + "case_dates": "2023-09-08", + "case_names": "STATE OF MISSOURI v. LORANDIS M. PHILLIPS", + "download_urls": "/file.jsp?id=200933", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded. Lynch, J., and Burrell, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32761", - "judges": "Jeffrey W. Bates, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37382", + "judges": "Bates, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jack A. L. Goodman" }, { - "case_dates": "2014-03-31", - "case_names": "DOUG A. HOLMES v. AMY F. HOLMES", - "download_urls": "/file.jsp?id=71713", + "case_dates": "2023-09-07", + "case_names": "CARMEN E. WOOD (f/k/a Carmen E. Ready), an individual in her capacity as Trustee of the Donald J. Ready and Carmen E. Ready Revocable Living Trust dated November 19, 2009 v. MILLSAP & SINGER, P.C., Defendants-Respondents", + "download_urls": "/file.jsp?id=200833", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part, Reversed in Part, and Remanded with Directions. Rahmeyer, P.J., Dissents in Separate Opinion, Francis, Jr., C.J., Concurs", - "divisions": "Southern Distr.", - "docket_numbers": "SD32396", - "judges": "Daniel E. Scott, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37921", + "judges": "Sheffield, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" }, { - "case_dates": "2014-03-28", - "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. SHELBY A. GAY", - "download_urls": "/file.jsp?id=71648", + "case_dates": "2023-09-06", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. IRA S. BRUCE", + "download_urls": "/file.jsp?id=200775", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Scott, J., and Francis, Jr., C.J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32427", - "judges": "Nancy Steffen Rahmeyer, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37363", + "judges": "Bates, J. and Burrell, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" }, { - "case_dates": "2014-03-27", - "case_names": "COLE ANDREW ANYAN, Petitioner-Respondent v. DIRECTOR OF REVENUE, STATE OF MISSOURI", - "download_urls": "/file.jsp?id=71593", + "case_dates": "2023-09-06", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. CHRISTOPHER B. SHULTZ", + "download_urls": "/file.jsp?id=200773", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded with Instructions. Lynch, J., and Burrell, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32681", - "judges": "Mary W. Sheffield, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37585", + "judges": "Sheffield, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" }, { - "case_dates": "2014-03-25", - "case_names": "THE EXECUTIVE BOARD OF THE MISSOURI BAPTIST CONVENTION v. WINDERMERE BAPTIST CONFERENCE CENTER, INC., JAMES L. HILL, RELIANCE TRUST COMPANY, NATIONAL CITY BANK OF THE MIDWEST, CONSOLIDATED MORTGAGE, INC., and FIRST AMERICAN TITLE MISSOURI AGENCY, INC., Defendants/Respondents.", - "download_urls": "/file.jsp?id=71515", + "case_dates": "2023-09-06", + "case_names": "STATE OF MISSOURI v. JOHN WILLIS HOUGH", + "download_urls": "/file.jsp?id=200774", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J. - Concurs Scott, J. - Concurs in Separate Opinion", - "divisions": "Southern Distr.", - "docket_numbers": "SD32699, SD32735", - "judges": "William W. Francis, Jr., Chief Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37664", + "judges": "Growcock, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" }, { - "case_dates": "2014-03-25", - "case_names": "STATE OF MISSOURI v. KELLY ANN BURY, Defendant-Respondent.", - "download_urls": "/file.jsp?id=71513", + "case_dates": "2023-09-01", + "case_names": "JOSE A. HUCKLEBERRY, JR., Movant-Appellant v. STATE OF MISSOURI, Respondent-Respondent", + "download_urls": "/file.jsp?id=200633", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded. Bates, P.J., and Burrell, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32661, SD32662", - "judges": "Mary W. Sheffield, Judge", - "case_name_shorts": "" + "dispositions": "Appeal Dismissed", + "docket_numbers": "SD37782", + "judges": "Burrell, J. and Growcock, J. - Concur", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" }, { - "case_dates": "2014-03-25", - "case_names": "INTERNATIONAL DIVISION, INC. v. DeWITT AND ASSOCIATES, INC., Defendant-Respondent.", - "download_urls": "/file.jsp?id=71514", + "case_dates": "2023-08-30", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. JOHN MARTIN HAMILTON, JR.", + "download_urls": "/file.jsp?id=200514", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded. Bates, P.J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32496", - "judges": "Gary W. Lynch, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37508", + "judges": "Bates, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" }, { - "case_dates": "2014-03-20", - "case_names": "FARMERS INSURANCE CO., INC., and MID-CENTURY INSURANCE CO., Plaintiffs-Respondents v. ROBIN WILSON and DONALD BILLINGSLEY", - "download_urls": "/file.jsp?id=71426", + "case_dates": "2023-08-30", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. CHRISTOPHER N. JOHNSON", + "download_urls": "/file.jsp?id=200516", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32632", - "judges": "Gary W. Lynch, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37780", + "judges": "Burrell, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" }, { - "case_dates": "2014-03-17", - "case_names": "STATE OF MISSOURI EX REL. CHRIS KOSTER, Relator v. THE HONORABLE MARK FITZSIMMONS, ASSOCIATE CIRCUIT JUDGE OF GREENE COUNTY, AND STEVE HELMS, CIRCUIT CLERK, GREENE COUNTY CIRCUIT COURT", - "download_urls": "/file.jsp?id=71313", + "case_dates": "2023-08-30", + "case_names": "STATE OF MISSOURI v. JERRY M. PIERCE", + "download_urls": "/file.jsp?id=200515", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Record and Writ of Habeas Corpus Quashed. Bates, P.J., Lynch, J., and Sheffield, J.", - "divisions": "Southern Distr.", - "docket_numbers": "SD33124", - "judges": "PER CURIAM", - "case_name_shorts": "" + "dispositions": "Affirmed and Remanded with Instructions", + "docket_numbers": "SD37577", + "judges": "Sheffield, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jack A. L. Goodman" }, { - "case_dates": "2014-03-17", - "case_names": "RAYDIANT TECHNOLOGY, LLC v. FLY-N-HOG MEDIA GROUP, INC.", - "download_urls": "/file.jsp?id=71315", + "case_dates": "2023-08-30", + "case_names": "JOAN RISTER and FRED RISTER, Plaintiffs-Respondents v. NHC HEALTHCARE \u2013 OSAGE BEACH, LLC, d/b/a OSAGE BEACH REHABILITATION & HEALTHCARE CENTER", + "download_urls": "/file.jsp?id=200517", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., and Francis, Jr., C.J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32478", - "judges": "Daniel E. Scott, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37374", + "judges": "Sheffield, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" }, { - "case_dates": "2014-03-17", - "case_names": "MARGARET ARD and ROBERT COMELY, Petitioners-Respondents v. SHANNON COUNTY COMMISSION", - "download_urls": "/file.jsp?id=71314", + "case_dates": "2023-08-29", + "case_names": "VICKY FRANCO v. LESTER E. COX MEDICAL CENTERS, Defendants-Respondents", + "download_urls": "/file.jsp?id=200453", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Burrell, J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32173", - "judges": "Jeffrey W. Bates, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Appeal Dismissed", + "docket_numbers": "SD37714", + "judges": "Bates, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" }, { - "case_dates": "2014-03-14", - "case_names": "REJA LYNN COOPER, n/k/a REJA LYNN SPAENY v. RONALD FRANCIS COOPER, Respondent-Respondent.", - "download_urls": "/file.jsp?id=71278", + "case_dates": "2023-08-21", + "case_names": "STATE OF MISSOURI v. CORNELIUS PERKINS", + "download_urls": "/file.jsp?id=198773", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Lynch, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32236", - "judges": "Mary W. Sheffield, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37450", + "judges": "Bates, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" }, { - "case_dates": "2014-03-13", - "case_names": "ROBERTS HOLDINGS, INC. v. BECCA'S BARKERY, INC., STEVEN KALCH, and REBECCA E. KALCH, Defendants-Respondents.", - "download_urls": "/file.jsp?id=71073", + "case_dates": "2023-08-17", + "case_names": "ASIA ASHBY v. WOODRIDGE OF MISSOURI, INC., Defendants-Respondents", + "download_urls": "/file.jsp?id=198673", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32757", - "judges": "Don E. Burrell, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37420", + "judges": "Bates, J. and Burrell, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" }, { - "case_dates": "2014-03-13", - "case_names": "ELLEN A. WISS and O. ELIZABETH CORBETT, Plaintiffs-Respondents v. GENE W. SPITZMILLER, Defendant/Trustee/Beneficiary-Appellant, and SHARON E. GUNN, Defendant/Trustee/Beneficiary-Respondent, and LINDA J. BRIDGER, Defendant/Beneficiary-Respondent.", - "download_urls": "/file.jsp?id=71074", + "case_dates": "2023-08-10", + "case_names": "RANDALL OWENS, Movant-Appellant v. STATE OF MISSOURI, Respondent-Respondent", + "download_urls": "/file.jsp?id=198396", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Remanded with Directions. Lynch, J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32758", - "judges": "Don E. Burrell, Judge", - "case_name_shorts": "" + "dispositions": "Vacated and Remanded with Instructions", + "docket_numbers": "SD37515", + "judges": "Goodman, C.J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" }, { - "case_dates": "2014-03-11", - "case_names": "KATHY LYNN SHAFER v. DANIEL DEL SHAFER, Respondent/Respondent.", - "download_urls": "/file.jsp?id=70994", + "case_dates": "2023-08-07", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. ALPHONSE D. AVILA", + "download_urls": "/file.jsp?id=198293", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded in Part with Directions Affirmed in Part. Rahmeyer, P.J., and Scott, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32627", - "judges": "William W. Francis, Jr., Chief Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37718", + "judges": "Bates, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" }, { - "case_dates": "2014-03-11", - "case_names": "DEBORAH K. MORRIS, Personal Representative of the Estate of Steven W. Groves v. TRUST COMPANY OF THE OZARKS, as Trustee of the William and Kathryn Groves Trust Under Agreement dated July 2, 1991, as amended, Maurice Houghton, Martha Rains, Louise Zook, Evangeline Skelton, John Jack Munsey, Park University, and Fitchburg State College", - "download_urls": "/file.jsp?id=70995", + "case_dates": "2023-08-04", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. BENNY LYNN JOHNSON", + "download_urls": "/file.jsp?id=198255", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Lynch, J., and Bates, P.J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32794", - "judges": "Daniel E. Scott, Judge", - "case_name_shorts": "" + "dispositions": "Goodman, C", + "docket_numbers": "SD37373", + "judges": "J. and Sheffield, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" }, { - "case_dates": "2014-03-11", - "case_names": "BRYAN LEE STEELE, Petitioner/Respondent v. JUDY ANN STEELE", - "download_urls": "/file.jsp?id=70993", + "case_dates": "2023-08-04", + "case_names": "NATIONWIDE TRANSFER LLC, D/B/A NATIONWIDE SETTLEMENT SOLUTIONS, and YOUR TIME SHARE STOPS HERE, LLC, D/B/A AMERICAN SETTLEMENT SERVICES v. NEALLY LAW, LLC, and JOSHUA NEALLY", + "download_urls": "/file.jsp?id=198254", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., and Scott, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32326", - "judges": "William W. Francis, Jr., Chief Judge", - "case_name_shorts": "" + "dispositions": "Affirmed Bates, J", + "docket_numbers": "SD37267", + "judges": "and Burrell, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jack A. L. Goodman" }, { - "case_dates": "2014-03-10", - "case_names": "TERRY A. GUENGERICH and LORRAINE GUENGERICH v. KAYLA BARKER and CLARENCE EDWARD HIGGINS, JR., Defendants-Respondents.", - "download_urls": "/file.jsp?id=70956", + "case_dates": "2023-08-03", + "case_names": "STATE OF MISSOURI v. RODNEY BAKER", + "download_urls": "/file.jsp?id=198193", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed as Modified. Barney, Sr., J. - Concurs Scott, J. - Concurs in Part and Dissents in Part (Separate Opinion)", - "divisions": "Southern Distr.", - "docket_numbers": "SD31479", - "judges": "Jeffrey W. Bates, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37713", + "judges": "Goodman, C.J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" }, { - "case_dates": "2014-03-10", - "case_names": "GRAU CONTRACTING, INC. v. CAPTIVA LAKE INVESTMENTS, LLC, Appellant/Cross-Respondent, MISSOURI BUILDERS SERVICE, INC., Respondent/Cross-Appellant, QUESTEC CONTRUCTORS, INC., BUTLER SUPPLY, INC., HOUSE OF CARPET, INC., and MEYER ELECTRIC CO., INC.", - "download_urls": "/file.jsp?id=70954", + "case_dates": "2023-08-02", + "case_names": "In the Interest of T.E.L.I. Greene County Juvenile Office v. D.W.L.", + "download_urls": "/file.jsp?id=198133", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., and Francis, Jr., C.J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32382, SD32406", - "judges": "Daniel E. Scott, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37948", + "judges": "Sheffield, J. and Growcock, J. - Concurs", + "case_name_shorts": "D.W.L.", + "authors": "Judge Becky J. W. Borthwick" }, { - "case_dates": "2014-03-05", - "case_names": "2 MIKES, INC. v. TURNING LEAF PROPERTIES, LLC, Defendant-Respondent.", - "download_urls": "/file.jsp?id=70813", + "case_dates": "2023-07-31", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. RAYMOND CROSS", + "download_urls": "/file.jsp?id=198054", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32688", - "judges": "Don E. Burrell, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37587", + "judges": "Borthwick, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" }, { - "case_dates": "2014-03-04", - "case_names": "In Re the Marriage of: SCOTT D. YONKER, and VALERIE K. YONKER, SCOTT DAMIAN YONKER, Petitioner-Respondent v. VALERIE KAY YONKER, n/k/a VALERIE KAY BOYCE", - "download_urls": "/file.jsp?id=70756", + "case_dates": "2023-07-28", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. MITCHELL BRUMFIELD", + "download_urls": "/file.jsp?id=197993", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part, Reversed in Part, and Remanded with Instructions. Bates, P.J., and Lynch, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32564", - "judges": "Don E. Burrell, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37173", + "judges": "Burrell, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" }, { - "case_dates": "2014-02-24", - "case_names": "LEE HARRELL, Movant-Appellant v. STATE OF MISSOURI, Respondent-Respondent.", - "download_urls": "/file.jsp?id=70496", + "case_dates": "2023-07-25", + "case_names": "VENA SUE PENTECOST, Plaintiff-Respondent v. MICHAEL WEBSTER, and RICHARD L. PENTECOST", + "download_urls": "/file.jsp?id=197896", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Lynch, J., and Burrell, J., Concurs", - "divisions": "Southern Distr.", - "docket_numbers": "SD32710", - "judges": "Jeffrey W. Bates, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37447", + "judges": "Bates, J. and Sheffield, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" }, { - "case_dates": "2014-02-21", - "case_names": "In the Interest of: A.A.R., and A.N.R., Minors, GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent v. M.S.R., Mother", - "download_urls": "/file.jsp?id=70442", + "case_dates": "2023-07-25", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. LOUIS ANTHONY MEALER", + "download_urls": "/file.jsp?id=197894", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Lynch, J., Concurs", - "divisions": "Southern Distr.", - "docket_numbers": "SD32873, SD32874", - "judges": "Don E. Burrell, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37623", + "judges": "Bates, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" }, { - "case_dates": "2014-02-20", - "case_names": "CINDY SILLYMAN v. DAVID O. BARBE, M.D., and ST. JOHN'S PHYSICIANS AND CLINICS, INC., d/b/a ST. JOHN'S CLINIC, Defendants-Respondents.", - "download_urls": "/file.jsp?id=70373", + "case_dates": "2023-07-25", + "case_names": "STATE OF MISSOURI , Plaintiff-Respondent v. STEPHEN GREGORY PERRY", + "download_urls": "/file.jsp?id=197895", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Lynch, J., Concurs", - "divisions": "Southern Distr.", - "docket_numbers": "SD32778", - "judges": "Mary W. Sheffield, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37678", + "judges": "Sheffield, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" }, { - "case_dates": "2014-02-18", - "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. BOBBY GLEN ROST", - "download_urls": "/file.jsp?id=70293", + "case_dates": "2023-07-25", + "case_names": "MARK D. O'BRIEN v. STATE OF MISSOURI", + "download_urls": "/file.jsp?id=197893", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Scott, J., and Francis, Jr., C.J., Concurs", - "divisions": "Southern Distr.", - "docket_numbers": "SD32293", - "judges": "Nancy Steffen Rahmeyer, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37779", + "judges": "Growcock, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" }, { - "case_dates": "2014-02-18", - "case_names": "SKAGGS REGIONAL MEDICAL CENTER v. TAMMIE M. POWERS", - "download_urls": "/file.jsp?id=70294", + "case_dates": "2023-07-21", + "case_names": "DAVID JAMES MILCENDEAU v. STATE OF MISSOURI", + "download_urls": "/file.jsp?id=197797", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., and Francis, Jr., C.J., Concurs", - "divisions": "Southern Distr.", - "docket_numbers": "SD32741", - "judges": "Daniel E. Scott, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37479", + "judges": "Goodman, C.J. and Burrell, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" }, { - "case_dates": "2014-02-14", - "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. DANNY K. THOMAS", - "download_urls": "/file.jsp?id=70233", + "case_dates": "2023-07-19", + "case_names": "WILLIAM B. WATSON v. TUTHILL CORPORATION and SENTRY INSURANCE COMPANY, And TREASURER OF THE STATE OF MISSOURI AS CUSTODIAN OF THE SECOND INJURY FUND", + "download_urls": "/file.jsp?id=197693", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Lynch, J., and Burrell, J., Concur.", - "divisions": "Southern Distr.", - "docket_numbers": "SD32542", - "judges": "Judge Mary W. Sheffield", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37923 and SD37294 (Consolidated)", + "judges": "Bates, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jack A. L. Goodman" }, { - "case_dates": "2014-02-11", - "case_names": "JAMES R. BAKER and LINDA BAKER, and CHARLES E. HIGHTOWER, DIANE HIGHTOWER, MARVIN D. GRIFFITH, MARILYN SUE GRIFFITH, and THE UNKNOWN HEIRS, DEVISEES, GRANTEES, SUCCESSORS AND ASSIGNS OF JAMES ELLIS THOMPSON, JR v. WALNUT BOWLS, INC., Defendant-Respondent.", - "download_urls": "/file.jsp?id=70113", + "case_dates": "2023-07-18", + "case_names": "IN THE INTEREST OF W.J.J.W., A minor child under seventeen years of age, GREENE COUNTY JUVENILE OFFICER, Petitioner-Respondent v. M.P.W.", + "download_urls": "/file.jsp?id=197634", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded. Barney, Sr., J., and Scott, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD31205", - "judges": "Jeffrey W. Bates, Judge", - "case_name_shorts": "" + "dispositions": "Vacated and Remanded", + "docket_numbers": "SD37928", + "judges": "Burrell, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "M.P.W.", + "authors": "Judge Jeffrey W. Bates" }, { - "case_dates": "2014-02-10", - "case_names": "MARLENE STEWART v. CLINT ZWIEFEL, TREASURER OF THE STATE OF MISSOURI AS CUSTODIAN OF THE SECOND INJURY FUND", - "download_urls": "/file.jsp?id=70073", + "case_dates": "2023-07-18", + "case_names": "IN INTEREST OF W.J.J.W., GREENE COUNTY JUVENILE OFFICE v. M.A.W.", + "download_urls": "/file.jsp?id=197633", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., and Francis, C.J., concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32827", - "judges": "Judge Daniel E. Scott", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded with Directions", + "docket_numbers": "SD37933", + "judges": "Sheffield, J. and Growcock, J. - Concurs", + "case_name_shorts": "M.A.W.", + "authors": "Judge Becky J. W. Borthwick" }, { - "case_dates": "2014-02-10", - "case_names": "JENNIFER DEARBORN, Claimant-Respondent v. GREAT SOUTHERN FINANCIAL CORPORATION, Employer-Appellant, DIVISION OF EMPLOYMENT SECURITY", - "download_urls": "/file.jsp?id=70074", + "case_dates": "2023-07-12", + "case_names": "IN THE INTEREST OF E.M.F., N.A.F., AND A.M.F., minor children under seventeen years of age. GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent v. J.A.F.", + "download_urls": "/file.jsp?id=197453", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Burrell, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32774", - "judges": "Judge Gary W. Lynch", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37944, SD37945 and SD37946 (Consolidated)", + "judges": "Goodman, C.J. and Borthwick, J. - Concurs", + "case_name_shorts": "J.A.F.", + "authors": "Judge Ginger K. Gooch" }, { - "case_dates": "2014-02-07", - "case_names": "RHONDA PARROTT, as Surviving Spouse of JAMES KELSO PARROT, and Individually, Plaintiff-Respondent v. SEVERS TRUCKING, LLC, and BRANDON G. BLACK", - "download_urls": "/file.jsp?id=70015", + "case_dates": "2023-07-10", + "case_names": "TOMMY R. MORRIS v. STATE OF MISSOURI, Respondent-Respondent", + "download_urls": "/file.jsp?id=197373", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded. Bates, P.J., and Burrell, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32470", - "judges": "Gary W. Lynch, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37698", + "judges": "Growcock, J. and Burrell, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" }, { - "case_dates": "2014-02-06", - "case_names": "RICKY LEE GRIFFITTS, Plaintiff-Respondent v. JAMES M. CAMPBELL, Defendant-Respondent, and BNSF RAILWAY COMPANY and OLD REPUBLIC INSURANCE COMPANY, Intervenors-Appellants.", - "download_urls": "/file.jsp?id=69933", + "case_dates": "2023-06-30", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. SETH ANDREW GOMEZ", + "download_urls": "/file.jsp?id=197154", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Scott, J., and Francis, Jr., C.J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32626, SD32663", - "judges": "Nancy Steffen Rahmeyer, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37330", + "judges": "Goodman, C.J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" }, { - "case_dates": "2014-02-05", - "case_names": "TOM M. ROBERTSON, IAFF LOCAL 2618, ADAM GRINES, LARIN TRENARY, and DANIEL JOBE, Plaintiffs-Respondents v. POLICE AND FIREMEN'S PENSION PLAN OF CITY OF JOPLIN, TRUSTEES OF POLICE AND FIREMEN'S PENSION PLAN OF CITY OF JOPLIN, and CITY OF JOPLIN, MISSOURI", - "download_urls": "/file.jsp?id=69873", + "case_dates": "2023-06-30", + "case_names": "STATE OF MISSOURI v. CURTIS JEROME WEBB, JR.", + "download_urls": "/file.jsp?id=197155", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded with Instructions. Lynch, J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32475", - "judges": "Don E. Burrell, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37484", + "judges": "Burrell, J. and Sheffield, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J.W. Borthwick" }, { - "case_dates": "2014-02-05", - "case_names": "MARK HOPWOOD and MARY HOPWOOD, Plaintiffs-Respondents v. CITIFINANCIAL, INC. and ZACHREY B. BOULWARE", - "download_urls": "/file.jsp?id=69874", + "case_dates": "2023-06-29", + "case_names": "STATE OF MISSOURI v. STEVEN RAY ENDSLEY", + "download_urls": "/file.jsp?id=197093", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Burrell, J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32633", - "judges": "Jeffrey W. Bates, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37572", + "judges": "Borthwick, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" }, { - "case_dates": "2014-01-31", - "case_names": "MICHAEL A. TIMBERLAKE v. STATE OF MISSOURI", - "download_urls": "/file.jsp?id=69794", + "case_dates": "2023-06-28", + "case_names": "JAMES WILLIAM GAMBLIN v. DIRECTOR OF REVENUE, Respondent-Respondent", + "download_urls": "/file.jsp?id=197054", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded with Directions. Rahmeyer, P.J., and Scott, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32580", - "judges": "William W. Francis, Jr., Chief Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37960", + "judges": "Sheffield, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" }, { - "case_dates": "2014-01-31", - "case_names": "LINDA DORRIS, Employee-Respondent v. STODDARD COUNTY, Employer-Appellant.", - "download_urls": "/file.jsp?id=69793", + "case_dates": "2023-06-27", + "case_names": "IN THE INTEREST OF: S.M.L.E. and W.W.L.E., minor children under seventeen years of age GREENE COUNTY JUVENILE OFFICE, Plaintiff-Respondent v. S.W.E., Natural Father", + "download_urls": "/file.jsp?id=196993", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Lynch, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32830", - "judges": "Mary W. Sheffield, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37900 and SD37901 (Consolidated)", + "judges": "Goodman, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" }, { - "case_dates": "2014-01-29", - "case_names": "JEFFREY BROYLES v. DIRECTOR OF REVENUE, STATE OF MISSOURI", - "download_urls": "/file.jsp?id=69733", + "case_dates": "2023-06-26", + "case_names": "IN RE THE MARRIAGE OF: ALEXANDER SCHIELE v. CORINNE DURNAL, Respondent-Respondent", + "download_urls": "/file.jsp?id=196933", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., and Scott, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32783", - "judges": "William W. Francis, Jr., Chief Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37725", + "judges": "Goodman, C.J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" }, { - "case_dates": "2014-01-29", - "case_names": "CAROL BALLARD, Claimant-Respondent v. WOODS SUPERMARKETS, INC., Employer-Appellant, and TREASURER OF THE STATE OF MISSOURI AS CUSTODIAN OF THE SECOND INJURY FUND", - "download_urls": "/file.jsp?id=69734", + "case_dates": "2023-06-23", + "case_names": "PUBLIC WATER SUPPLY DISTRICT NO. 1 of GREENE COUNTY MISSOURI v. CITY OF SPRINGFIELD, MISSOURI, A MUNICIPAL CORPORATION", + "download_urls": "/file.jsp?id=196893", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Burrell, J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32590", - "judges": "Jeffrey W. Bates, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Vacated and Remanded", + "docket_numbers": "SD37695", + "judges": "Bates, J. and Burrell, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" }, { - "case_dates": "2014-01-28", - "case_names": "ST. JOHN'S CLINIC, INC. v. PULASKI COUNTY AMBULANCE DISTRICT", - "download_urls": "/file.jsp?id=69693", + "case_dates": "2023-06-14", + "case_names": "TERRY BRACKNEY, AS PERSONAL REPRESENTATIVE OF THE ESTATE OF RENATE MACK v. ROBERT WALKER and NANCY WALKER, CRYSTAL HOUSE and NATHANIEL HOUSE, CENTURY BANK OF THE OZARKS, and DIRECTOR, DEPARTMENT OF REVENUE, STATE OF MISSOURI", + "download_urls": "/file.jsp?id=196673", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., Dissents in Separate Opinion, Francis, Jr., C.J., Concurs", - "divisions": "Southern Distr.", - "docket_numbers": "SD32739", - "judges": "Daniel E. Scott, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37733", + "judges": "Growcock, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" }, { - "case_dates": "2014-01-27", - "case_names": "SANDY JACKSON v. HAZELRIGG AUTOMOTIVE SERVICE CENTER, INC., Defendant-Respondent.", - "download_urls": "/file.jsp?id=69634", + "case_dates": "2023-06-13", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. LONNIE JAMES SKELTON", + "download_urls": "/file.jsp?id=196633", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Lynch, J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32526", - "judges": "Jeffrey W. Bates, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37596", + "judges": "Sheffield, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" }, { - "case_dates": "2014-01-27", - "case_names": "IN THE INTEREST OF: D.T.L. and C.J.L., children under seventeen years of age. GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent v. V.D.L.", - "download_urls": "/file.jsp?id=69633", + "case_dates": "2023-06-13", + "case_names": "STATE OF MISSOURI v. KEITH H. BROWN", + "download_urls": "/file.jsp?id=196634", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Scott, J., and Lynch, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32759, SD32760", - "judges": "Nancy Steffen Rahmeyer, Presiding Judge", - "case_name_shorts": "V.D.L." + "dispositions": "Affirmed", + "docket_numbers": "SD37168", + "judges": "Sheffield, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jack A. L. Goodman" }, { - "case_dates": "2014-01-24", - "case_names": "In the Matter of KATRINA BARNES, Claimant/Appellant v. JASPER PRODUCTS, L.L.C., Employer/Respondent, and MISSOURI DIVISION OF EMPLOYMENT SECURITY", - "download_urls": "/file.jsp?id=69608", + "case_dates": "2023-06-06", + "case_names": "IN THE INTEREST OF: Y.B. and Y.M., minor children under seventeen years of age. GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent v. C.V.B.", + "download_urls": "/file.jsp?id=196313", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded with Directions. Rahmeyer, P.J., and Scott, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32858", - "judges": "William W. Francis, Jr., Chief Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37863 and SD37864 (Consolidated)", + "judges": "Burrell, J. and Sheffield, J. - Concurs", + "case_name_shorts": "C.V.B.", + "authors": "Judge Ginger K. Gooch" }, { - "case_dates": "2014-01-23", - "case_names": "STATE OF MISSOURI EX REL. BOB T. BEISLY II, Relator v. THE HONORABLE TIMOTHY PERIGO", - "download_urls": "/file.jsp?id=69553", + "case_dates": "2023-05-31", + "case_names": "ISIS K. SCHAUER, Movant-Appellant v. STATE OF MISSOURI, Respondent-Respondent", + "download_urls": "/file.jsp?id=196093", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Permanent Writ in Prohibition Issued. Bates, P.J., Burrell, J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32800", - "judges": "Per Curiam", - "case_name_shorts": "" + "dispositions": "Vacated and Remanded", + "docket_numbers": "SD37458", + "judges": "Goodman, C.J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" }, { - "case_dates": "2014-01-23", - "case_names": "J.T. AND A.T., BY AND THROUGH THEIR FATHER, JOHN TAYLOR, FOR THE DEATH OF THEIR MOTHER, LINDY TAYLOR, and J.T. AS AD LITEM v. MARTIN ANBARI, M.D., LITTON & GIDDINGS RADIOLOGICAL ASSOCIATES, P.C., and MICHAEL WORKMAN, M.D., Defendants-Respondents.", - "download_urls": "/file.jsp?id=69554", + "case_dates": "2023-05-30", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. ROBERT JAMES COOPER", + "download_urls": "/file.jsp?id=196055", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Bates, P.J., and Lynch, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32562", - "judges": "Mary W. Sheffield, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37542", + "judges": "Borthwick, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" }, { - "case_dates": "2014-01-21", - "case_names": "RICHARD E. BEECHER v. TERRY L. BEECHER", - "download_urls": "/file.jsp?id=69414", + "case_dates": "2023-05-30", + "case_names": "STATE OF MISSOURI v. JESSE WARREN DEVORE", + "download_urls": "/file.jsp?id=196053", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in Part, Reversed in Part, and Remanded with Directions. Rahmeyer, P.J., and Lynch, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32620", - "judges": "Daniel E. Scott, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37598", + "judges": "Goodman, C.J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" }, { - "case_dates": "2014-01-17", - "case_names": "ELIZABETH DOWNING, Employee-Respondent v. McDONALD'S SIRLOIN STOCKADE, Employer-Appellant.", - "download_urls": "/file.jsp?id=69356", + "case_dates": "2023-05-30", + "case_names": "STATE OF MISSOURI v. BRIAN MATTHEW SMITH", + "download_urls": "/file.jsp?id=196054", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Lynch, J., and Burrell, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32683", - "judges": "Mary W. Sheffield, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37546", + "judges": "Bates, J. and Burrell, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" }, { - "case_dates": "2014-01-16", - "case_names": "TAMBRA LESTER v. DEPARTMENT OF SOCIAL SERVICES, FAMILY SUPPORT DIVISION, Respondent-Respondent.", - "download_urls": "/file.jsp?id=69313", + "case_dates": "2023-05-25", + "case_names": "IN THE INTEREST OF: K.A.C. and E.A.G., minor children under seventeen years of age. GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent v. J.R.M.", + "download_urls": "/file.jsp?id=195953", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Lynch, J., and Sheffield, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32457", - "judges": "Jeffrey W. Bates, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37852 & SD37853 (Consolidated)", + "judges": "Bates, J. and Growcock, J. - Concurs", + "case_name_shorts": "J.R.M.", + "authors": "Judge Ginger K. Gooch" }, { - "case_dates": "2014-01-16", - "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. BRENT LONG", - "download_urls": "/file.jsp?id=69314", + "case_dates": "2023-05-23", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. JERRY R. YOAKUM", + "download_urls": "/file.jsp?id=195861", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Lynch, J., and Burrell, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32413", - "judges": "Jeffrey W. Bates, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37607", + "judges": "Sheffield, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" }, { - "case_dates": "2014-01-14", - "case_names": "SHERI STEPHENS v. SHERIFF W. ARCHIE DUNN, SHERIFF JACK L. MERRITT, RETIRED, C.E. WELLS, JOHN DOE I, JOHN DOE III, and JOHN DOE IV, Defendants/Respondents, and GERALD TUCK, JOHN DOE II, JOHN DOE V, and JOHN B. FREITAS, DO", - "download_urls": "/file.jsp?id=69275", + "case_dates": "2023-05-23", + "case_names": "CHARANJIT SINGH v. LUCKY'S TRAVEL CENTER, LLC, MANJINDER SINGH, DAVINDERPAL SINGH, SUKHVIR KAUR, KL & SG, LLC, d/b/a LUCKY'S TRAVEL CENTER, KULDIP SINGH LUBANA, and SUNILPURI GOSWAMI, Defendants-Respondents", + "download_urls": "/file.jsp?id=195862", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., and Scott, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32563", - "judges": "William W. Francis, Jr., Chief Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37729", + "judges": "Goodman, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" }, { - "case_dates": "2014-01-14", - "case_names": "DONALD PAYNE, Claimant/Appellant v. TREASURER OF THE STATE OF MISSOURI, CUSTODIAN OF SECOND INJURY FUND", - "download_urls": "/file.jsp?id=69274", + "case_dates": "2023-05-22", + "case_names": "TAMMY KAY CAMPBELL v. TIMOTHY CAMPBELL", + "download_urls": "/file.jsp?id=195753", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., and Scott, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32541", - "judges": "William W. Francis, Jr., Chief Judge", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded with Directions", + "docket_numbers": "SD37620", + "judges": "Bates, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" }, { - "case_dates": "2014-01-14", - "case_names": "DANNY HARNESS and FAYE SAVAGE, Plaintiffs-Respondents v. JIM RICHARDSON, HAZEL THOMAS, BETTY NICHOLS, MIKE PRITCHETT, and RODNEY SANFORD", - "download_urls": "/file.jsp?id=69273", + "case_dates": "2023-05-19", + "case_names": "CHRIS WOOD, Petitioner-Respondent v. DIRECTOR OF REVENUE", + "download_urls": "/file.jsp?id=195693", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded with Instructions. Bates, P.J., and Burrell, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32585", - "judges": "Mary W. Sheffield, Judge", - "case_name_shorts": "" + "dispositions": "Vacated and Remanded with Instructions", + "docket_numbers": "SD37261", + "judges": "Bates, J. and Sheffield, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" }, { - "case_dates": "2014-01-13", - "case_names": "ROY MEDLIN v. RLC, INC., Defendant/Respondent, and JEREMIAH J. HAYES, Intervenors/Respondents.", - "download_urls": "/file.jsp?id=69234", + "case_dates": "2023-05-12", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. DANIEL A. BURPO", + "download_urls": "/file.jsp?id=195393", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Rahmeyer, P.J., Concurs in result only and Scott, J., Concurs.", - "divisions": "Southern Distr.", - "docket_numbers": "SD32629", - "judges": "William W. Francis, Jr., Chief Judge", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded with Instructions Goodman, C", + "docket_numbers": "SD37563", + "judges": "J. and Borthwick, J. - Concur", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" }, { - "case_dates": "2014-01-13", - "case_names": "IN THE INTEREST OF K.J.L., S.L.L. v. GREENE COUNTY JUVENILE OFFICE", - "download_urls": "/file.jsp?id=69233", + "case_dates": "2023-05-12", + "case_names": "CHARLOTTE WRIGHT v. ARTURO MARRUFO ARMIJO, Defendant-Respondent", + "download_urls": "/file.jsp?id=195394", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Remanded with Directions. Rahmeyer, P.J., and Francis, Jr., C.J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32843", - "judges": "Daniel E. Scott, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed Burrell, J", + "docket_numbers": "SD37445", + "judges": "and Sheffield, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" }, { - "case_dates": "2014-01-09", - "case_names": "In the Matter of JENNA STAFFORD, Claimant/Respondent v. GREAT SOUTHERN BANK, Employer/Appellant, and MISSOURI DIVISION OF EMPLOYMENT SECURITY", - "download_urls": "/file.jsp?id=69133", + "case_dates": "2023-05-04", + "case_names": "IN THE MATTER OF THE CARE AND TREATMENT OF CORY BALLARD A/K/A CORY R. BALLARD, A/K/A CORY RAY BALLARD", + "download_urls": "/file.jsp?id=195213", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed and Remanded with Directions. Rahmeyer, P.J., Scott, J., Concur", - "divisions": "Southern Distr.", - "docket_numbers": "SD32658", - "judges": "William W. Francis, Jr., Chief Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "SD37526", + "judges": "Goodman, C.J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" + }, + { + "case_dates": "2023-05-04", + "case_names": "IN THE INTEREST OF: W.B.H.B., a minor child under seventeen years of age. GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent v. W.J.B.", + "download_urls": "/file.jsp?id=195214", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37825", + "judges": "Bates, J. and Burrell, J. - Concurs", + "case_name_shorts": "W.J.B.", + "authors": "Judge Ginger K. Gooch" + }, + { + "case_dates": "2023-05-03", + "case_names": "In the Interest of: J.R.S. and L.X.S., GREENE COUNTY JUVENILE OFFICE v. H.A.S., SR.", + "download_urls": "/file.jsp?id=195173", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37768 and SD37769 (Consolidated)", + "judges": "Bates, J. and Sheffield, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" + }, + { + "case_dates": "2023-05-01", + "case_names": "COURTNEY GARNER v. AMCO INSURANCE COMPANY", + "download_urls": "/file.jsp?id=195073", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded with Instructions", + "docket_numbers": "SD37632", + "judges": "Goodman, C.J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" + }, + { + "case_dates": "2023-04-28", + "case_names": "JEFFREY BALDWIN, Individually, as agent for his children and grandchildren named below, as Beneficiary of the Roger Woodard Baldwin Revocable Trust dtd. November 5, 2001, as Amended and Restated, and certain sub-trusts created thereunder, and as Trustee of a descendant's trust in his name as described below v. JAN KAYE BALDWIN, Individually, as Beneficiary, and as Trustee of the Roger Woodard Baldwin Revocable Trust dtd. November 5, 2001, as Amended and Restated, and certain sub-trusts created thereunder, and KAYLI BALDWIN-HYTEN, Individually, as a Beneficiary of the Roger Woodard Baldwin Revocable Trust dtd. November 5, 2001, as Amended and Restated, and certain sub-trusts created thereunder, and as Trustee of a descendant's trust in her name as described below, and ANDREA BALDWIN-GREGG, Individually, as a Beneficiary of the Roger Woodard Baldwin Revocable Trust dtd. November 5, 2001, as Amended and Restated, and certain sub-trusts created thereunder, and as Trustee of a descendant's trust in her name as described below, Respondents-Respondents.", + "download_urls": "/file.jsp?id=195034", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37567", + "judges": "Burrell, J. and Sheffield, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" + }, + { + "case_dates": "2023-04-28", + "case_names": "DAWN BLAND, Plaintiff-Respondent v. PROGRESSIVE CASUALTY INSURANCE COMPANY", + "download_urls": "/file.jsp?id=195033", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37582", + "judges": "Goodman, C.J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" + }, + { + "case_dates": "2023-04-24", + "case_names": "SPENSER A. FARR v. STATE OF MISSOURI", + "download_urls": "/file.jsp?id=194833", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Dismissed", + "docket_numbers": "SD37645", + "judges": "Burrell, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" + }, + { + "case_dates": "2023-04-18", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. MICHAEL ANTHONY NUGENT", + "download_urls": "/file.jsp?id=194670", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed Growcock, J", + "docket_numbers": "SD37396", + "judges": "and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" + }, + { + "case_dates": "2023-04-17", + "case_names": "POINTE ROYALE PROPERTY OWNERS' ASSOCIATION, INC., Plaintiff-Respondent v. RICKEY MCBROOM", + "download_urls": "/file.jsp?id=194582", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37274", + "judges": "Goodman, C.J. and Bates, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" + }, + { + "case_dates": "2023-04-14", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. KENNETH L. LIVINGSTON", + "download_urls": "/file.jsp?id=194513", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed Sheffield, J", + "docket_numbers": "SD37489", + "judges": "and Gooch, J. - Concur", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" + }, + { + "case_dates": "2023-04-11", + "case_names": "VIVIAN BADILLO v. THE HOME CITY ICE COMPANY, and MYLES MATHIS", + "download_urls": "/file.jsp?id=194393", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37398", + "judges": "Borthwick, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" + }, + { + "case_dates": "2023-04-10", + "case_names": "IN THE INTEREST OF: H.M.W. and W.E.L., children under seventeen years of age. GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent v. R.W.", + "download_urls": "/file.jsp?id=194333", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37737 and SD37738", + "judges": "Goodman, C.J. and Gooch, J. - Concurs", + "case_name_shorts": "R.W.", + "authors": "Judge Jennifer R. Growcock" + }, + { + "case_dates": "2023-04-06", + "case_names": "JAMES W. HENNEHA, Movant-Appellant v. STATE OF MISSOURI, Respondent-Respondent", + "download_urls": "/file.jsp?id=194273", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37556", + "judges": "Sheffield, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" + }, + { + "case_dates": "2023-04-05", + "case_names": "JOSHUA JOHNSON, Movant-Appellant v. STATE OF MISSOURI, Respondent-Respondent", + "download_urls": "/file.jsp?id=194233", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37528", + "judges": "Burrell, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" + }, + { + "case_dates": "2023-04-03", + "case_names": "QUEEN BARRETT v. MALLORY MOVING & STORAGE, INC., d/b/a APPLE MOVING OF ROLLA", + "download_urls": "/file.jsp?id=194019", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37663", + "judges": "Burrell, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" + }, + { + "case_dates": "2023-03-31", + "case_names": "STATE OF MISSOURI v. ERIC CHRISTOPHER GIBBS", + "download_urls": "/file.jsp?id=193935", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37369 & SD37370 Consolidated", + "judges": "Goodman, C.J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" + }, + { + "case_dates": "2023-03-31", + "case_names": "IN THE INTEREST OF P.T.M., BARRY COUNTY JUVENILE OFFICE v. P.T.M.", + "download_urls": "/file.jsp?id=193936", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37606_FINAL", + "judges": "Burrell, J and Borthwick, J. - Concurs", + "case_name_shorts": "P.T.M.", + "authors": "Judge Mary W. Sheffield" + }, + { + "case_dates": "2023-03-31", + "case_names": "DESIREE (RAMOS) SCHUPPAN v. TONY W. RAMOS, IV, Respondent-Respondent", + "download_urls": "/file.jsp?id=193937", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in Part, Vacated in Part, and Remanded with Directions", + "docket_numbers": "SD37503", + "judges": "Bates, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" + }, + { + "case_dates": "2023-03-28", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. JOHN A. HAYES", + "download_urls": "/file.jsp?id=193734", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37427", + "judges": "Sheffield, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" + }, + { + "case_dates": "2023-03-22", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. DAVID MICHAEL KING", + "download_urls": "/file.jsp?id=193534", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37354", + "judges": "Sheffield, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" + }, + { + "case_dates": "2023-03-21", + "case_names": "SCOTT J. BRICK, D.O., and LAKE REGIONAL HEALTH SYSTEM, Relators v. THE HONORABLE AARON KOEPPEN", + "download_urls": "/file.jsp?id=193515", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Preliminary Writ of Mandamus Made Permanent", + "docket_numbers": "SD37767", + "judges": "Growcock, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" + }, + { + "case_dates": "2023-03-16", + "case_names": "DYLAN ACEVEDO v. DIRECTOR OF REVENUE", + "download_urls": "/file.jsp?id=193393", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded", + "docket_numbers": "SD37588", + "judges": "Bates, J. and Sheffield, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" + }, + { + "case_dates": "2023-03-13", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. BRYAN S. JONES", + "download_urls": "/file.jsp?id=193254", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37453", + "judges": "Bates, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" + }, + { + "case_dates": "2023-03-13", + "case_names": "SAVON JONES v. STATE OF MISSOURI", + "download_urls": "/file.jsp?id=193255", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37654", + "judges": "Burrell, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" + }, + { + "case_dates": "2023-03-09", + "case_names": "CHRIS COURTOIS, Movant-Appellant v. STATE OF MISSOURI, Respondent-Respondent", + "download_urls": "/file.jsp?id=193193", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded with Directions", + "docket_numbers": "SD37328", + "judges": "Sheffield, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" + }, + { + "case_dates": "2023-03-08", + "case_names": "IN THE INTEREST OF: K.E.H. STONE COUNTY JUVENILE OFFICE, Plaintiff-Respondent v. K.E.H., Juvenile", + "download_urls": "/file.jsp?id=193174", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37511", + "judges": "Borthwick, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" + }, + { + "case_dates": "2023-03-07", + "case_names": "STEVEN HARNER, Plaintiff-Respondent v. MERCY HOSPITAL JOPLIN", + "download_urls": "/file.jsp?id=193155", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed Growcock, J", + "docket_numbers": "SD37266", + "judges": "Concurs and Burrell, J. Dissents in Separate Opinion", + "case_name_shorts": "", + "authors": "Judge Ginger K Gooch" + }, + { + "case_dates": "2023-03-07", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. GERALD HENRY YOUNG, Jr.", + "download_urls": "/file.jsp?id=193154", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed and Remanded with Directions", + "docket_numbers": "SD37547", + "judges": "Sheffield, J. and Growcock, J., Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" + }, + { + "case_dates": "2023-03-07", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. DERIK CLAYTON OSBORN", + "download_urls": "/file.jsp?id=193153", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37305", + "judges": "Bates, J. and Gooch, J., Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" + }, + { + "case_dates": "2023-03-02", + "case_names": "STATE OF MISSOURI v. SHAWN KELLY MARTIN", + "download_urls": "/file.jsp?id=192973", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37408", + "judges": "Sheffield, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" + }, + { + "case_dates": "2023-03-02", + "case_names": "In the Estate of Sandra Louise McLaughlin, NICOLE McLAUGHLIN and BRANDON McLAUGHLIN v. ROBERT CANMAN, personally and as Personal Representative of the Estate of Sandra McLaughlin, and BARBARA WAYNER, NANCI MOLENAAR-LOTKOWSKI and SUSAN LUBIENIECKI", + "download_urls": "/file.jsp?id=192974", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37394", + "judges": "Burrell, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" + }, + { + "case_dates": "2023-03-01", + "case_names": "IN THE MATTER OF THE CARE AND TREATMENT OF THEODORE STILES, a/k/a THEODORE R. STILES, a/k/a THEODORE RAYMOND STILES", + "download_urls": "/file.jsp?id=193053", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37180", + "judges": "Goodman, C.J. and Burrell, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" + }, + { + "case_dates": "2023-02-28", + "case_names": "STATE OF MISSOURI v. KEVIN RAY JOBE", + "download_urls": "/file.jsp?id=192856", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Remanded with Directions", + "docket_numbers": "SD37496", + "judges": "Goodman, C.J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" + }, + { + "case_dates": "2023-02-27", + "case_names": "STATE OF MISSOURI v. RAMIE A. HALBROOK", + "download_urls": "/file.jsp?id=192813", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reverse and Remand with Directions", + "docket_numbers": "SD37288", + "judges": "Goodman, C.J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" + }, + { + "case_dates": "2023-02-27", + "case_names": "KDD ENTERPRISES, LLC, GREGORY WILLIAMS, and JYO, LLC, Plaintiffs-Respondents v. JUSTIN JEFFRIES, and DIVENERGY, LLC, Defendant-Respondent", + "download_urls": "/file.jsp?id=192815", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37491", + "judges": "Burrell, J. and Sheffield, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" + }, + { + "case_dates": "2023-02-27", + "case_names": "ANGALINE RYAN v. STATE OF MISSOURI", + "download_urls": "/file.jsp?id=192814", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37272", + "judges": "Sheffield, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" + }, + { + "case_dates": "2023-02-24", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. DARIUS E. BROWN", + "download_urls": "/file.jsp?id=192780", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37256", + "judges": "Burrell, J. and Sheffield, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" + }, + { + "case_dates": "2023-02-21", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. MICHAEL PAUL SHANDS", + "download_urls": "/file.jsp?id=192673", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD36965", + "judges": "Goodman, C.J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jeffrey W. Bates" + }, + { + "case_dates": "2023-02-16", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. LONNIE STULL TILTON, JR.", + "download_urls": "/file.jsp?id=192553", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37339", + "judges": "Sheffield, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" + }, + { + "case_dates": "2023-02-15", + "case_names": "IN THE INTEREST OF: Z.Y.M.B., a minor child under seventeen years of age. PHELPS COUNTY JUVENILE OFFICE, Petitioner-Respondent v. W.S.B.", + "download_urls": "/file.jsp?id=192513", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37564", + "judges": "Burrell, J. and Growcock, J. - Concurs", + "case_name_shorts": "W.S.B.", + "authors": "Judge Ginger K. Gooch" + }, + { + "case_dates": "2023-02-08", + "case_names": "STATE OF MISSOURI v. DAVID TROYER, JR.", + "download_urls": "/file.jsp?id=192379", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Vacated and Remanded", + "docket_numbers": "SD37379", + "judges": "Bates, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" + }, + { + "case_dates": "2023-02-06", + "case_names": "JEANNIE E. HARPER, Claimant-Respondent v. SPRINGFIELD REHAB AND HEALTH CARE CENTER/NHC HEALTH, Employer-Appellant PREMIER GROUP INSURANCE COMPANY CORVEL ENTERPRISE COMPANY, INC. (TPA), Insurer-Appellant and TREASURER OF MISSOURI AS CUSTODIAN OF THE SECOND INJURY FUND, Additional Party-Respondent", + "download_urls": "/file.jsp?id=192274", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37268", + "judges": "Burrell, J. and Lynch, S.J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jennifer R. Growcock" + }, + { + "case_dates": "2023-02-06", + "case_names": "JAMES D. MORELAND, Movant-Appellant v. STATE OF MISSOURI, Respondent-Respondent", + "download_urls": "/file.jsp?id=192273", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37482", + "judges": "Sheffield, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" + }, + { + "case_dates": "2023-02-03", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. BRYON ALAN HANSEN", + "download_urls": "/file.jsp?id=192124", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37423", + "judges": "Burrell, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" + }, + { + "case_dates": "2023-02-03", + "case_names": "EMERALD POINTE, LLC. v. TANEY COUNTY PLANNING COMMISSION, TANEY COUNTY BOARD OF ADJUSTMENT", + "download_urls": "/file.jsp?id=192125", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Dismissed", + "docket_numbers": "SD37630", + "judges": "Bates, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" + }, + { + "case_dates": "2023-02-01", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. MATTHEW THOMAS ESTES", + "download_urls": "/file.jsp?id=192093", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37368", + "judges": "Bates, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Ginger K. Gooch" + }, + { + "case_dates": "2023-02-01", + "case_names": "In the Estate of Richard E. Smith, APRIL M. SVEC, Personal Representative of the Estate of Deidre A. Smith, and ASHLEY A. LUX v. AMIE M. BROOKS, ERIC R. SMITH, and JOSHUA C. SMITH", + "download_urls": "/file.jsp?id=192095", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37438", + "judges": "Burrell, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J.W. Borthwick" + }, + { + "case_dates": "2023-02-01", + "case_names": "IN INTEREST OF Z.S.C. and H.E.C., GREENE COUNTY JUVENILE OFFICE v. J.E.", + "download_urls": "/file.jsp?id=192094", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37583 and SD37584 (Consolidated)", + "judges": "Burrell, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "J.E.", + "authors": "Judge Becky J. W. Borthwick" + }, + { + "case_dates": "2023-01-31", + "case_names": "STATE OF MISSOURI v. MICHAEL EDWARD COX", + "download_urls": "/file.jsp?id=192053", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in Part, Reversed in Part, and Remanded", + "docket_numbers": "SD37513", + "judges": "Growcock, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" + }, + { + "case_dates": "2023-01-27", + "case_names": "JULIE ANN THOMAS, Plaintiff/Respondent v. KURT E. H'DOUBLER, individually and as trustee of the F.T. H'Doubler, Jr.,Revocable Trust dated May 2, 2000, and the Francis T. H'Doubler, Jr., Family Trust created thereunder, and as co-trustee of the F.T. H'Doubler, Jr., Irrevocable Trust dated May 1, 2000, and the Julie Ann Thomas Trust created thereunder, and as trustee of the Joan L. H'Doubler Irrevocable Trust dated December 28, 1982, and the Trust for the benefit of Julie Thomas and the Credit Shelter Trust created thereunder and SARAH ELLEN MUEGGE, individually, and as co-trustee of the F.T. Doubler, Jr. Irrevocable Trust dated May 1, 2000, and the Julie Ann Thomas Trust created thereunder DAVID A. HEALY, as personal representative of the Estate of Scott W. H'Doubler BRIAN MUEGGE, individually and as next friend of S.F.M. and B.W.M. BETH MCGEE, individually and as next friend of R.C.M. and E.M. TODD H'DOUBLER SALLY H'DOUBLER LAURIE THOMAS BECKY THOMAS COLLEEN T. WALTON, individually and as co-guardian of the person Marie H'Doubler and co-conservator of the Estate of Marie H'Doubler GARY T. WALTON, SR., in his capacity as co-guardian of the person Marie H'Doubler and co-conservator of the Estate of Marie H'Doubler and RICK STEVEN DENNEY, Defendants/Respondents.", + "download_urls": "/file.jsp?id=191953", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Bates, J and Growcock, J", + "docket_numbers": "SD37483", + "judges": "Concurs", + "case_name_shorts": "", + "authors": "Judge Jack A. L. Goodman" + }, + { + "case_dates": "2023-01-26", + "case_names": "STATE OF MISSOURI v. ARCH KEITH ROBINSON", + "download_urls": "/file.jsp?id=191933", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37356", + "judges": "Bates, J. and Goodman, C.J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Becky J. W. Borthwick" + }, + { + "case_dates": "2023-01-26", + "case_names": "STATE OF MISSOURI ex rel. KEVIN KNASEL, Relator v. THE HONORABLE JASON R. BROWN", + "download_urls": "/file.jsp?id=191934", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Preliminary Writ of Prohibition Made Permanent", + "docket_numbers": "SD37861", + "judges": "Gaertner, Jr., P.J. and Clayton, III, J.J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Alok Ahuja" + }, + { + "case_dates": "2023-01-24", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. DAVID L. WILLIAMS", + "download_urls": "/file.jsp?id=191914", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37474", + "judges": "Bates, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" + }, + { + "case_dates": "2023-01-24", + "case_names": "STATE OF MISSOURI, Plaintiff-Respondent v. DAVID C. COPLEY", + "download_urls": "/file.jsp?id=191915", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37492", + "judges": "Bates, J. and Sheffield, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don E. Burrell" + }, + { + "case_dates": "2023-01-24", + "case_names": "SAI NATH, LLC v. GIRAKUMARI PATEL and SHAILESH D. PATEL, Defendants/Cross-Claim Plaintiffs-Respondents and DHANSUKHBHAI PATEL, Cross-Claim", + "download_urls": "/file.jsp?id=191913", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in Part Reversed and Remanded in Part", + "docket_numbers": "SD37419", + "judges": "Goodman, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Don. E. Burrell" + }, + { + "case_dates": "2023-01-20", + "case_names": "STATE OF MISSOURI v. AUSTIN TYLER GRAY", + "download_urls": "/file.jsp?id=191874", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37158", + "judges": "Burrell, J. and Gooch, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" + }, + { + "case_dates": "2023-01-19", + "case_names": "JARED FORD and MARY WILLIAMS v. ROBERT D. GIOVANELLI II, and KERITH A. GIOVANELLI", + "download_urls": "/file.jsp?id=191853", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37271", + "judges": "Bates, J. and Borthwick, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Mary W. Sheffield" + }, + { + "case_dates": "2023-01-09", + "case_names": "IN THE INTEREST OF: J.C.S., a minor child under seventeen years of age. GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent v. K.A.G.", + "download_urls": "/file.jsp?id=191573", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "SD37736", + "judges": "Bates, J. and Sheffield, J. - Concurs", + "case_name_shorts": "K.A.G.", + "authors": "Judge Ginger K. Gooch" + }, + { + "case_dates": "2023-01-06", + "case_names": "LOUIE R. KEEN v. AMBER WOLFE, individually and in her capacity as Trustee of the April 4, 2011 Restatement of Revocable Trust Agreement of Rosetta Keen, and CYNTHIA KEEN", + "download_urls": "/file.jsp?id=191533", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Appeal Dismissed", + "docket_numbers": "SD37345", + "judges": "Bates, J. and Growcock, J. - Concurs", + "case_name_shorts": "", + "authors": "Judge Jack A. L. Goodman" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/moctapp_southern_example.html b/tests/examples/opinions/united_states/moctapp_southern_example.html index 8887cddc1..7725d6351 100644 --- a/tests/examples/opinions/united_states/moctapp_southern_example.html +++ b/tests/examples/opinions/united_states/moctapp_southern_example.html @@ -1,2606 +1,46230 @@ - - - - - - - - Opinions + + + + + + + + + + +Opinions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Opinions

    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +

    Opinions for Southern Appellate District

    +
    +
    + +
    +
    +
    +
    + +
    +

    Step 1. Select or Change Court

    +
    + + +
    +
    +
    +
    +

    Step 2. Search Opinions ...

    + +
    + + + + + Need Help? +
    +
    +
    +
    +
    +
    +

    ... OR View By Date

    +
    + + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + Click on a date below to view opinions. +
    +
    + +
    + +
    +
    +
    10/31/2023
    + +
    + + +
    +
    + SD37153:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +CARL W. DILL, II, Defendant-Appellant
    Author:   Per Curiam +
    Vote:  Affirmed. Burrell, J., Sheffield, J., Borthwick, J., Gooch, J. and Lynch, Senior Judge - Concur; Growcock, J. - Concurs in Part and Dissents in Part in Separate Opinion; Bates, J. - Concurs with Separate Opinion of Growcock, J. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/30/2023
    + +
    + + + + +
    +
    + SDOrder-10-30-2023.:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/24/2023
    + +
    + + + + + + +
    +
    + SD37514:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +KEVIN LEE HAUSMANN, Defendant-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed and Remanded with Instructions. Bates, J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/17/2023
    + +
    + + + + + + + + +
    +
    + SD37865:   + IN THE INTEREST OF M.M.B., +Reynolds County Juvenile Office, Respondent +vs. +S.D.B., Appellant
    Author:   Judge Becky J.W. Borthwick +
    Vote:  Reversed and Remanded with Instructions. Bates, J. and Goodman, C.J. - Concurs +
    +
    + + + +
    +
    + SD37762:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +KENNY JACKSON, Defendant-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Dismissed in Part and Affirmed. Burrell, J. and Growcock, J. - Concurs +
    +
    + + + +
    +
    + SD37758:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +THAISEN PAUL OLLERICH, Defendant-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Sheffield, J. and Goodman, C.J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/13/2023
    + +
    + + + + + + + + + + + + + + +
    +
    + SDOrder-10-13-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/10/2023
    + +
    + + + + + + + + + + + + + + + + +
    +
    + SDOrder-10-10-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/06/2023
    + +
    + + + + + + + + + + + + + + + + + + +
    +
    + SD37704:   + GREG ALAN MARVIN, Appellant +v. +STATE OF MISSOURI, Respondent
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed. Burrell, J and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/05/2023
    + +
    + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37993 and SD37994 (Consolidated):   + IN THE INTEREST OF N.D.P.H. and Z.L.P.H, Minor children under seventeen years of age, +K.E.H., Respondent-Appellant +v. +GREENE COUNTY JUVENILE OFFICER, Petitioner-Respondent
    Author:   Judge Jeffrey W. Bates +
    Vote:  Affirmed Goodman, C.J. and Borthwick, J. - Concur +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/02/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37531:   + STATE OF MISSOURI, Plaintiff-Respondent +vs. +JANTZEN BLAKE STRICKLAND, Defendant-Appellant
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed Goodman, C.J. and Burrell, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/29/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37355:   + ROB SPRUEILL, n/k/a ROBERT DEAN HOLLOWAY, and FIVE STAR PRODUCTIONS, LLC, Petitioners-Appellants +v. +DAVID LOTT and MISSOURI HOLDING GROUP, INC., Respondents-Respondents
    Author:   Judge Jeffrey W. Bates +
    Vote:  Appeal Dismissed Burrell, J. and Growcock, J. - Concur +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/28/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37952:   + IN THE INTEREST OF S.L.C., Greene County Juvenile Office, Respondent +vs. +M.A.C., Appellant
    Author:   Judge Becky J.W. Borthwick +
    Vote:  Affirmed. Sheffield, J. and Goodman, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/27/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37650 and SD37651 (Consolidated):   + ESTATE OF NANCY MCKEAN, DECEASED BY AND THROUGH PERSONAL REPRESENTATIVE CHRISTI EGLOFF, Appellant +v. +GLORIA D. BAKER, KENNETH BAKER, and JUSTIN BLAKE, Respondents
    Author:   Judge Mary W. Sheffield +
    Vote:  Vacated in Part and Remanded with Instructions. Goodman, C.J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/26/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37826:   + DOROTHY ROSS, Plaintiff-Respondent +v. +VENERABLE INSURANCE AND ANNUITY CO., Defendant-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Reversed and Remanded with Directions. Bates, J. and Sheffield, J. - Concurs +
    +
    + + + +
    +
    + SD37806:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +LAKOTA GILBERT TUCKER, Defendant-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed. Sheffield, J. and Growcock, J. - Concurs +
    +
    + + + +
    +
    + SD37719:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +TYSON J. FAIRLEY, Defendant-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Bates, J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/25/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37889:   + IN THE ESTATE OF ANTHONY M. VRANA, DECEDENT, SANDRA FIDURA-PHILLIPS, Appellant +vs. +AARON WILSON, Respondent
    Author:   Judge Becky J.W. Borthwick +
    Vote:  Affirmed. Growcock, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/22/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37706:   + STATE OF MISSOURI, Respondent +v. +DESMOND TYEZ GREER, Appellant
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed. Burrell, J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/21/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-09-21-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/20/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37681:   + WILLIAM H. COOK, Appellant +v. +STATE OF MISSOURI, Respondent
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed. Bates, J. and Burrell, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/19/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-09-19-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37877:   + JOHNNY LEE COOPER, Appellant +v. +STATE OF MISSOURI, Respondent
    Author:   Judge Mary W. Sheffield +
    Vote:  Dismissed. Bates, J. and Gooch, J. - Concurs +
    +
    + + + +
    +
    + SD37647:   + QWENTEN DEON AMLIN, Movant-Appellant +v. +STATE OF MISSOURI, Respondent-Respondent
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed. Goodman, J. and Gooch, J. - Concurs +
    +
    + + + +
    +
    + SD37522:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +KIMBERLY RISTON, Defendant-Appellant
    Author:   Judge Jeffrey W. Bates +
    Vote:  Affirmed. Growcock, J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/12/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37918:   + MICHELLE L. KURZ, Respondent +vs. +RODD E. KURZ, Appellant
    Author:   Judge Jack A. L. Goodman +
    Vote:  Dismissed. Bates, J. and Borthwick, J. - Concurs +
    +
    + + + +
    +
    + SD37897:   + RICK LISEK AND JENNIFER LISEK, Plaintiffs-Appellants +v. +GREG TABER AND COLLEEN S. TABER, Defendants-Respondents
    Author:   Judge Don E. Burrell +
    Vote:  Appeal Dismissed. Sheffield, J. and Borthwick, J. - Concurs +
    +
    + + + +
    +
    + SD37807:   + JANE E. ZAMORA, Petitioner-Appellant +v. +HUGO E. ZAMORA, Respondent-Respondent
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Bates, J. and Sheffield, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/08/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37722:   + STATE OF MISSOURI, Plaintiff-Respondent +vs. +TYMAN DEVETTE LATIN, Defendant-Appellant
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed. Goodman, C.J. and Bates, J. - Concurs +
    +
    + + + +
    +
    + SD37382:   + STATE OF MISSOURI, Respondent +v. +LORANDIS M. PHILLIPS, Appellant
    Author:   Judge Jack A. L. Goodman +
    Vote:  Affirmed. Bates, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/07/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/06/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-09-06-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37664:   + STATE OF MISSOURI, Respondent +vs. +JOHN WILLIS HOUGH, Appellant
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Affirmed. Growcock, J. and Gooch, J. - Concurs +
    +
    + + + +
    +
    + SD37585:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +CHRISTOPHER B. SHULTZ, Defendant-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Sheffield, J. and Borthwick, J. - Concurs +
    +
    + + + +
    +
    + SD37363:   + STATE OF MISSOURI, Plaintiff-Respondent +vs. +IRA S. BRUCE, Defendant-Appellant
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed. Bates, J. and Burrell, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/01/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37782:   + JOSE A. HUCKLEBERRY, JR., Movant-Appellant +v. +STATE OF MISSOURI, Respondent-Respondent
    Author:   Judge Jeffrey W. Bates +
    Vote:  Appeal Dismissed. Burrell, J. and Growcock, J. - Concur +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/30/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-08-30-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37780:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +CHRISTOPHER N. JOHNSON, Defendant-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Burrell, J. and Growcock, J. - Concurs +
    +
    + + + +
    +
    + SD37577:   + STATE OF MISSOURI, Respondent +v. +JERRY M. PIERCE, Appellant
    Author:   Judge Jack A. L. Goodman +
    Vote:  Affirmed and Remanded with Instructions. Sheffield, J. and Growcock, J. - Concurs +
    +
    + + + +
    +
    + SD37508:   + STATE OF MISSOURI, Plaintiff-Respondent +vs. +JOHN MARTIN HAMILTON, JR., Defendant-Appellant
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed. Bates, J. and Gooch, J. - Concurs +
    +
    + + + +
    +
    + SD37374:   + JOAN RISTER and FRED RISTER, Plaintiffs-Respondents +v. +NHC HEALTHCARE – OSAGE BEACH, LLC, d/b/a OSAGE BEACH REHABILITATION & HEALTHCARE CENTER, Defendant-Appellant
    Author:   Judge Jeffrey W. Bates +
    Vote:  Affirmed. Sheffield, J. and Goodman, C.J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/29/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37714:   + VICKY FRANCO, Plaintiff-Appellant +v. +LESTER E. COX MEDICAL CENTERS, et al., Defendants-Respondents
    Author:   Judge Don E. Burrell +
    Vote:  Appeal Dismissed. Bates, J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/21/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37450:   + STATE OF MISSOURI, Respondent +vs. +CORNELIUS PERKINS, Appellant
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Affirmed. Bates, J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/17/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37420:   + ASIA ASHBY, Plaintiff-Appellant +vs. +WOODRIDGE OF MISSOURI, INC., et al., Defendants-Respondents
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed. Bates, J. and Burrell, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/11/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-08-11-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/10/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-08-10-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37515:   + RANDALL OWENS, Movant-Appellant +v. +STATE OF MISSOURI, Respondent-Respondent
    Author:   Judge Jeffrey W. Bates +
    Vote:  Vacated and Remanded with Instructions. Goodman, C.J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/07/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-08-07-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37718:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +ALPHONSE D. AVILA, Defendant-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Bates, J. and Goodman, C.J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/04/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37373:   + STATE OF MISSOURI, Plaintiff-Respondent +vs. +BENNY LYNN JOHNSON, Defendant-Appellant
    Author:   Judge Jennifer R. Growcock +
    Vote:  Goodman, C.J. and Sheffield, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/03/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37713:   + STATE OF MISSOURI, Respondent +v. +RODNEY BAKER, Appellant
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed. Goodman, C.J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/02/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37948:   + In the Interest of T.E.L.I. +Greene County Juvenile Office, Respondent +vs. +D.W.L., Appellant
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Affirmed. Sheffield, J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/31/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-07-31-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37587:   + STATE OF MISSOURI, Plaintiff-Respondent +vs. +RAYMOND CROSS, Defendant-Appellant
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed. Borthwick, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/28/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37173:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +MITCHELL BRUMFIELD, Defendant-Appellant
    Author:   Judge Jeffrey W. Bates +
    Vote:  Affirmed. Burrell, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/25/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37779:   + MARK D. O'BRIEN, Appellant +v. +STATE OF MISSOURI, Respondent
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed. Growcock, J. and Gooch, J. - Concurs +
    +
    + + + +
    +
    + SD37678:   + STATE OF MISSOURI , Plaintiff-Respondent +v. +STEPHEN GREGORY PERRY, Defendant-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed. Sheffield, J. and Growcock, J. - Concurs +
    +
    + + + +
    +
    + SD37623:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +LOUIS ANTHONY MEALER, Defendant-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed. Bates, J. and Gooch, J. - Concurs +
    +
    + + + +
    +
    + SD37447:   + VENA SUE PENTECOST, Plaintiff-Respondent +v. +MICHAEL WEBSTER, Defendant-Appellant +and RICHARD L. PENTECOST, et al., Defendants
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed. Bates, J. and Sheffield, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/21/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37479:   + DAVID JAMES MILCENDEAU, Appellant +v. +STATE OF MISSOURI, Respondent
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed. Goodman, C.J. and Burrell, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/19/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37923 and SD37294 (Consolidated):   + WILLIAM B. WATSON, Respondent +vs. +TUTHILL CORPORATION and SENTRY INSURANCE COMPANY, Appellants +And +TREASURER OF THE STATE OF MISSOURI AS CUSTODIAN OF THE SECOND INJURY FUND, Respondent
    Author:   Judge Jack A. L. Goodman +
    Vote:  Affirmed. Bates, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/18/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37933:   + IN INTEREST OF W.J.J.W., +GREENE COUNTY JUVENILE OFFICE, Respondent +vs. +M.A.W., Appellant
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Reversed and Remanded with Directions. Sheffield, J. and Growcock, J. - Concurs +
    +
    + + + +
    +
    + SD37928:   + IN THE INTEREST OF W.J.J.W., A minor child under seventeen years of age, +GREENE COUNTY JUVENILE OFFICER, Petitioner-Respondent +v. +M.P.W., Respondent-Appellant
    Author:   Judge Jeffrey W. Bates +
    Vote:  Vacated and Remanded. Burrell, J. and Goodman, C.J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/14/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-07-14-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/12/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37944, SD37945 and SD37946 (Consolidated):   + IN THE INTEREST OF E.M.F., N.A.F., AND A.M.F., minor children under seventeen years of age. +GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent +v. +J.A.F., Respondent-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Goodman, C.J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/10/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37698:   + TOMMY R. MORRIS, Plaintiff-Appellant +v. +STATE OF MISSOURI, Respondent-Respondent
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Growcock, J. and Burrell, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/07/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-07-07-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/06/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-07-06-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/30/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-06-30-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37484:   + STATE OF MISSOURI, Respondent +vs. +CURTIS JEROME WEBB, JR., Appellant
    Author:   Judge Becky J.W. Borthwick +
    Vote:  Affirmed. Burrell, J. and Sheffield, J. - Concurs +
    +
    + + + +
    +
    + SD37330:   + STATE OF MISSOURI, Plaintiff-Respondent +vs. +SETH ANDREW GOMEZ, Defendant-Appellant
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed. Goodman, C.J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/29/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37572:   + STATE OF MISSOURI, Respondent +v. +STEVEN RAY ENDSLEY, Appellant
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed. Borthwick, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/28/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37960:   + JAMES WILLIAM GAMBLIN, Petitioner-Appellant +v. +DIRECTOR OF REVENUE, Respondent-Respondent
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed. Sheffield, J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/27/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37900 and SD37901 (Consolidated):   + IN THE INTEREST OF: S.M.L.E. and W.W.L.E., minor children under seventeen years of age +GREENE COUNTY JUVENILE OFFICE, Plaintiff-Respondent +v. +S.W.E., Natural Father, Respondent-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed. Goodman, J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/26/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37725:   + IN RE THE MARRIAGE OF: +ALEXANDER SCHIELE, Petitioner-Appellant +v. +CORINNE DURNAL, Respondent-Respondent
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Goodman, C.J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/23/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37695:   + PUBLIC WATER SUPPLY DISTRICT NO. 1 of GREENE COUNTY MISSOURI, Appellant +vs. +CITY OF SPRINGFIELD, MISSOURI, A MUNICIPAL CORPORATION, Respondent
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Vacated and Remanded. Bates, J. and Burrell, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/15/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-06-15-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/14/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/13/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-06-13-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37596:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +LONNIE JAMES SKELTON, Defendant-Appellant
    Author:   Judge Jeffrey W. Bates +
    Vote:  Affirmed. Sheffield, J. and Goodman, C.J. - Concurs +
    +
    + + + +
    +
    + SD37168:   + STATE OF MISSOURI, Respondent +v. +KEITH H. BROWN, Appellant
    Author:   Judge Jack A. L. Goodman +
    Vote:  Affirmed. Sheffield, J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/09/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-06-09-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/08/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-06-08-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/06/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37863 and SD37864 (Consolidated):   + IN THE INTEREST OF: Y.B. and Y.M., minor children under seventeen years of age. +GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent +v. +C.V.B., Respondent-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Burrell, J. and Sheffield, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/31/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-05-31-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37458:   + ISIS K. SCHAUER, Movant-Appellant +v. +STATE OF MISSOURI, Respondent-Respondent
    Author:   Judge Jeffrey W. Bates +
    Vote:  Vacated and Remanded. Goodman, C.J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/30/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-05-30-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37598:   + STATE OF MISSOURI, Respondent +v. +JESSE WARREN DEVORE, Appellant
    Author:   Judge Mary W. Sheffield +
    Vote:   Affirmed. Goodman, C.J. and Gooch, J. - Concurs +
    +
    + + + +
    +
    + SD37546:   + STATE OF MISSOURI, Respondent +vs. +BRIAN MATTHEW SMITH, Appellant
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed. Bates, J. and Burrell, J. - Concurs +
    +
    + + + +
    +
    + SD37542:   + STATE OF MISSOURI, Plaintiff-Respondent +vs. +ROBERT JAMES COOPER, Defendant-Appellant
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed. Borthwick, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/25/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37852 & SD37853 (Consolidated):   + IN THE INTEREST OF: +K.A.C. and E.A.G., minor children under seventeen years of age. +GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent +v. +J.R.M., Respondent-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Bates, J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/23/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37607:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +JERRY R. YOAKUM, Defendant-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed. Sheffield, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/22/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37620:   + TAMMY KAY CAMPBELL, Respondent +vs. +TIMOTHY CAMPBELL, Appellant
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Reversed and Remanded with Directions. Bates, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/19/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37261:   + CHRIS WOOD, Petitioner-Respondent +v. +DIRECTOR OF REVENUE, Respondent-Appellant
    Author:   Judge Jennifer R. Growcock +
    Vote:  Vacated and Remanded with Instructions. Bates, J. and Sheffield, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/17/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-05-17-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/12/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37563:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +DANIEL A. BURPO, Defendant-Appellant
    Author:   Judge Jeffrey W. Bates +
    Vote:  Reversed and Remanded with Instructions Goodman, C.J. and Borthwick, J. - Concur +
    +
    + + + +
    +
    + SD37445:   + CHARLOTTE WRIGHT, Plaintiff-Appellant +v +ARTURO MARRUFO ARMIJO, Defendant-Respondent
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed Burrell, J. and Sheffield, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/11/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-05-11-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/04/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-05-04-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37825:   + IN THE INTEREST OF: W.B.H.B., a minor child under seventeen years of age. +GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent +v. +W.J.B., Respondent-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Bates, J. and Burrell, J. - Concurs +
    +
    + + + +
    +
    + SD37526:   + IN THE MATTER OF THE CARE AND TREATMENT OF CORY BALLARD A/K/A CORY R. BALLARD, A/K/A CORY RAY BALLARD, Respondent-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Goodman, C.J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/03/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-05-03-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37768 and SD37769 (Consolidated):   + In the Interest of: J.R.S. and L.X.S., GREENE COUNTY JUVENILE OFFICE, Respondent +vs. +H.A.S., SR., Appellant
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Affirmed. Bates, J. and Sheffield, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/02/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-05-02-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/01/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-05-01-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37632:   + COURTNEY GARNER, Respondent +v. +AMCO INSURANCE COMPANY, Appellant
    Author:   Judge Mary W. Sheffield +
    Vote:  Reversed and Remanded with Instructions. Goodman, C.J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/28/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37582:   + DAWN BLAND, Plaintiff-Respondent +v. +PROGRESSIVE CASUALTY INSURANCE COMPANY, Defendant-Appellant
    Author:   Judge Jeffrey W. Bates +
    Vote:  Affirmed. Goodman, C.J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/27/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-04-27-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/24/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37645:   + SPENSER A. FARR, Appellant +vs. +STATE OF MISSOURI, Respondent
    Author:   Judge Mary W. Sheffield +
    Vote:  Dismissed. Burrell, J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/18/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37396:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +MICHAEL ANTHONY NUGENT, Defendant-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed Growcock, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/17/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37274:   + POINTE ROYALE PROPERTY OWNERS' ASSOCIATION, INC., Plaintiff-Respondent +vs. +RICKEY MCBROOM, Defendant-Appellant
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed. Goodman, C.J. and Bates, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/14/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37489:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +KENNETH L. LIVINGSTON, Defendant-Appellant
    Author:   Judge Jeffrey W. Bates +
    Vote:  Affirmed Sheffield, J. and Gooch, J. - Concur +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/11/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37398:   + VIVIAN BADILLO, Appellant +vs. +THE HOME CITY ICE COMPANY, and MYLES MATHIS, Respondents
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed. Borthwick, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/10/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37737 and SD37738:   + IN THE INTEREST OF: H.M.W. and W.E.L., children under seventeen years of age. +GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent +vs. +R.W., Respondent-Appellant
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed. Goodman, C.J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/06/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37556:   + JAMES W. HENNEHA, Movant-Appellant +v. +STATE OF MISSOURI, Respondent-Respondent
    Author:   Judge Ginger K. Gooch +
    Vote:   Affirmed. Sheffield, J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/05/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37528:   + JOSHUA JOHNSON, Movant-Appellant +v. +STATE OF MISSOURI, Respondent-Respondent
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Burrell, J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/03/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37663:   + QUEEN BARRETT, Respondent +vs. +MALLORY MOVING & STORAGE, INC., d/b/a APPLE MOVING OF ROLLA, Appellant
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Affirmed. Burrell, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/31/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37606_FINAL:   + IN THE INTEREST OF P.T.M., BARRY COUNTY JUVENILE OFFICE, Respondent +v. +P.T.M., Appellant
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed. Burrell, J and Borthwick, J. - Concurs +
    +
    + + + +
    +
    + SD37503:   + DESIREE (RAMOS) SCHUPPAN, Petitioner-Appellant +v +TONY W. RAMOS, IV, Respondent-Respondent
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed in Part, Vacated in Part, and Remanded with Directions. Bates, J. and Goodman, C.J. - Concurs +
    +
    + + + +
    +
    + SD37369 & SD37370 Consolidated:   + STATE OF MISSOURI, Respondent +v. +ERIC CHRISTOPHER GIBBS, Appellant
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed. Goodman, C.J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/28/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37427:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +JOHN A. HAYES, Defendant-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed. Sheffield, J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/23/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-03-23-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/22/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-03-22-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37354:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +DAVID MICHAEL KING, Defendant-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Sheffield, J. and Goodman, C.J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/21/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37767:   + SCOTT J. BRICK, D.O., and LAKE REGIONAL HEALTH SYSTEM, Relators +v. +THE HONORABLE AARON KOEPPEN, Respondent
    Author:   Judge Mary W. Sheffield +
    Vote:  Preliminary Writ of Mandamus Made Permanent. Growcock, J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/17/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-03-17-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/16/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37588:   + DYLAN ACEVEDO, Respondent +vs. +DIRECTOR OF REVENUE, Appellant
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Reversed and Remanded. Bates, J. and Sheffield, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/15/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-03-15-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/14/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-03-14-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/13/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37654:   + SAVON JONES, Appellant +vs. +STATE OF MISSOURI, Respondent
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Affirmed. Burrell, J. and Growcock, J. - Concurs +
    +
    + + + +
    +
    + SD37453:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +BRYAN S. JONES, Defendant-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Bates, J. and Goodman, C.J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/09/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37328:   + CHRIS COURTOIS, Movant-Appellant +v. +STATE OF MISSOURI, Respondent-Respondent
    Author:   Judge Jennifer R. Growcock +
    Vote:  Reversed and Remanded with Directions. Sheffield, J. and Goodman, C.J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/08/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37511:   + IN THE INTEREST OF: K.E.H. +STONE COUNTY JUVENILE OFFICE, Plaintiff-Respondent +v. +K.E.H., Juvenile, Respondent-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed. Borthwick, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/07/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37547:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +GERALD HENRY YOUNG, Jr., Defendant-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed and Remanded with Directions. Sheffield, J. and Growcock, J., Concurs +
    +
    + + + +
    +
    + SD37305:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +DERIK CLAYTON OSBORN, Defendant-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed. Bates, J. and Gooch, J., Concurs +
    +
    + + + +
    +
    + SD37266:   + STEVEN HARNER, Plaintiff-Respondent +v. +MERCY HOSPITAL JOPLIN, Defendant-Appellant
    Author:   Judge Ginger K Gooch +
    Vote:  Affirmed Growcock, J. Concurs and Burrell, J. Dissents in Separate Opinion +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/02/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-03-02-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37408:   + STATE OF MISSOURI, Respondent +vs. +SHAWN KELLY MARTIN, Appellant
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Affirmed. Sheffield, J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/01/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-03-01-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37180:   + IN THE MATTER OF THE CARE AND TREATMENT OF THEODORE STILES, a/k/a THEODORE R. STILES, a/k/a THEODORE RAYMOND STILES, Respondent-Appellant
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed. Goodman, C.J. and Burrell, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/28/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37496:   + STATE OF MISSOURI, Respondent +v. +KEVIN RAY JOBE, Appellant
    Author:   Judge Mary W. Sheffield +
    Vote:  Remanded with Directions. Goodman, C.J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/27/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37491:   + KDD ENTERPRISES, LLC, GREGORY WILLIAMS, and JYO, LLC, Plaintiffs-Respondents +v. +JUSTIN JEFFRIES, Defendant-Appellant +and DIVENERGY, LLC, Defendant-Respondent
    Author:   Judge Jeffrey W. Bates +
    Vote:  Affirmed. Burrell, J. and Sheffield, J. - Concurs +
    +
    + + + +
    +
    + SD37288:   + STATE OF MISSOURI, Respondent +v. +RAMIE A. HALBROOK, Appellant
    Author:   Judge Mary W. Sheffield +
    Vote:  Reverse and Remand with Directions. Goodman, C.J. and Growcock, J. - Concurs +
    +
    + + + +
    +
    + SD37272:   + ANGALINE RYAN, Appellant +vs. +STATE OF MISSOURI, Respondent
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Affirmed. Sheffield, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/24/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37256:   + STATE OF MISSOURI, Plaintiff-Respondent +vs. +DARIUS E. BROWN, Defendant-Appellant
    Author:   Judge Jennifer R. Growcock +
    Vote:  Affirmed. Burrell, J. and Sheffield, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/21/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD36965:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +MICHAEL PAUL SHANDS, Defendant-Appellant
    Author:   Judge Jeffrey W. Bates +
    Vote:  Affirmed. Goodman, C.J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/16/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37339:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +LONNIE STULL TILTON, JR., Defendant-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed. Sheffield, J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/15/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37564:   + IN THE INTEREST OF: Z.Y.M.B., a minor child under seventeen years of age. +PHELPS COUNTY JUVENILE OFFICE, Petitioner-Respondent +v. +W.S.B., Respondent-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Burrell, J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/10/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-02-10-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/08/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37379:   + STATE OF MISSOURI, Respondent +vs. +DAVID TROYER, JR., Appellant
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Vacated and Remanded. Bates, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/07/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-02-07-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/06/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-02-06-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37482:   + JAMES D. MORELAND, Movant-Appellant +v. +STATE OF MISSOURI, Respondent-Respondent
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Sheffield, J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/03/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37630:   + EMERALD POINTE, LLC., Appellant +vs. +TANEY COUNTY PLANNING COMMISSION, TANEY COUNTY BOARD OF ADJUSTMENT, Respondent
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Dismissed. Bates, J. and Growcock, J. - Concurs +
    +
    + + + +
    +
    + SD37423:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +BRYON ALAN HANSEN, Defendant-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Burrell, J. and Goodman, C.J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/01/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-02-01-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37583 and SD37584 (Consolidated):   + IN INTEREST OF Z.S.C. and H.E.C., +GREENE COUNTY JUVENILE OFFICE, Respondent +vs. +J.E., Appellant
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Affirmed. Burrell, J. and Goodman, C.J. - Concurs +
    +
    + + + + + + + +
    +
    + SD37368:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +MATTHEW THOMAS ESTES, Defendant-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Bates, J. and Goodman, C.J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/31/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-01-31-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37513:   + STATE OF MISSOURI, Respondent +v. +MICHAEL EDWARD COX, Appellant
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed in Part, Reversed in Part, and Remanded. Growcock, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/27/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/26/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-01-26-2022:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37861:   + STATE OF MISSOURI ex rel. +KEVIN KNASEL, Relator +v. +THE HONORABLE JASON R. BROWN, Respondent
    Author:   Judge Alok Ahuja +
    Vote:  Preliminary Writ of Prohibition Made Permanent. Gaertner, Jr., P.J. and Clayton, III, J.J. - Concurs +
    +
    + + + +
    +
    + SD37356:   + STATE OF MISSOURI, Respondent +vs. +ARCH KEITH ROBINSON, Appellant
    Author:   Judge Becky J. W. Borthwick +
    Vote:  Affirmed. Bates, J. and Goodman, C.J. - Concurs +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/24/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-01-24-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37492:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +DAVID C. COPLEY, Defendant-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed. Bates, J. and Sheffield, J. - Concurs +
    +
    + + + +
    +
    + SD37474:   + STATE OF MISSOURI, Plaintiff-Respondent +v. +DAVID L. WILLIAMS, Defendant-Appellant
    Author:   Judge Don E. Burrell +
    Vote:  Affirmed. Bates, J. and Gooch, J. - Concurs +
    +
    + + + +
    +
    + SD37419:   + SAI NATH, LLC, Plaintiff-Appellant +v. +GIRAKUMARI PATEL and SHAILESH D. PATEL, Defendants/Cross-Claim Plaintiffs-Respondents +and +DHANSUKHBHAI PATEL, Cross-Claim Defendant-Appellant
    Author:   Judge Don. E. Burrell +
    Vote:  Affirmed in Part; Reversed and Remanded in Part. Goodman, J. and Growcock, J. - Concurs +
    +
    + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/20/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37158:   + STATE OF MISSOURI, Respondent +v. +AUSTIN TYLER GRAY, Appellant
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed. Burrell, J. and Gooch, J. - Concurs +
    +
    + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/19/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SD37271:   + JARED FORD and MARY WILLIAMS, Respondents +v. +ROBERT D. GIOVANELLI II, and KERITH A. GIOVANELLI, Appellants
    Author:   Judge Mary W. Sheffield +
    Vote:  Affirmed. Bates, J. and Borthwick, J. - Concurs +
    +
    + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/18/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-01-18-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/09/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + SDOrder-01-09-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + SD37736:   + IN THE INTEREST OF: J.C.S., a minor child under seventeen years of age. +GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent +v. +K.A.G., Respondent-Appellant
    Author:   Judge Ginger K. Gooch +
    Vote:  Affirmed. Bates, J. and Sheffield, J. - Concurs +
    +
    + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/06/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - -
    - - -
    -
    -
    - -
    -
    - -

    Opinions for Southern Appellate District

    -
    -

    Step 1. Select or Change Court

    -
    -
    -Court:   - -
    - -
    -
    -
    -
    -

    Step 2. Search Opinions ...

    -
    - -
    - - -      - Need Help? -
    -
    -
    -

    ... OR View By Date

    -
    - - - - - - - - - - -
    Year of Opinion:  - -
    - Show all Opinions for Year   - Hide all Opinions -
    - Click on a date below to view opinions. -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - -
    - SDOrders_05-09-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - -
    - SD32125:  - STATE OF MISSOURI, Plaintiff-Respondent - vs. - ANTHONY W. KALTER, Defendant-Appellant
    - Author:  Judge Don E. Burrell  Vote:  Reversed and Remanded for - New Trial. Bates, P.J., and Lynch, J., Concur -
      -
    - - -
    - - - - - - -
    - SD32812:  - STATE OF MISSOURI, Plaintiff-Respondent - vs. - MICHAEL LEE HOLT, Defendant-Appellant
    - Author:  Judge Nancy Steffen Rahmeyer  Vote:  Affirmed. Scott, - J., Concurs in Separate Opinion and Francis, C.J., Concurs -
      -
    - - -
    - - - - - - - - -
    - SD32709:  - State of Missouri, Respondent - vs. - JACOB W. BOOK, Appellant
    - Author:  Judge William W. Francis, Jr.  Vote:  Affirmed. - Rahmeyer, P.J., and Scott, J., Concur -
      -
    - - - - - - -
    - SD32416:  - FARM BUREAU TOWN & COUNTRY INSURANCE COMPANY OF MISSOURI, - Plaintiff-Appellant - vs. - JAMES AND PATRICIA SHIPMAN, Defendants-Respondents
    - Author:  Judge Daniel E. Scott  Vote:  Francis, C.J., Concurs, - Rahmeyer, P.J., Concurs in part; Dissents in part in separate opinion. -
      -
    - - -
    - - - - - - - - -
    - SDOrder_05-05-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD32731:  - MARK E. McGUIRE, Claimant-Respondent - vs. - CHRISTIAN COUNTY, Employer-Appellant, and MISSOURI ASSOCIATION OF COUNTIES, Insurer-Appellant
    - Author:  Judge Gary W. Lynch  Vote:  Affirmed. Bates, P.J., and - Burrell, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32799:  - JULIA ERSKINE, Petitioner/Respondent, - vs. - DIRECTOR OF REVENUE, - STATE OF MISSOURI, Respondent/Appellant.
    - Author:  William W. Francis, Jr., Chief Judge  Vote:  Reversed - and Remanded with Directions. Rahmeyer, P.J., and Scott, J., Concur -
      -
    - - - - - - -
    - SD32615:  - STATE OF MISSOURI, Plaintiff-Respondent, - vs. - DALE S. OLTEN, SR., Defendant-Appellant.
    - Author:  Nancy Steffen Rahmeyer, Presiding Judge  Vote:  Affirmed. - Scott, J., and Francis, Jr., C.J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32679:  - DEBORAH A. STRATMAN and - TIMOTHY M. STRATMAN, Plaintiffs-Respondents, - vs. - HAZEL I. WAGNER, Defendant-Appellant.
    - Author:  Nancy Steffen Rahmeyer, Presiding Judge  Vote:  Affirmed. - Scott, J., and Francis, Jr., C.J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-04-28-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD32467, SD32495 & SD32586 (Consolidated):  - CAROL HINESLY, Dunklin County - Clerk,Plaintiff/Appellant/Respondent, - vs. - TOM TODD and KENT HAMPTON, - Defendants/Respondents/Cross-Appellants.
    - Author:  Gary W. Lynch, Judge  Vote:  Appeal No. SD32495 - Dismissed; Appeal Nos. SD32467 & SD32586 Reversed and Remanded with Instructions. Bates, P.J., and Francis, - C.J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32901, SD32906 & SD32907 (Consolidated):  - JONATHAN SAGE, Claimant-Respondent/Cross-Appellant, - v. - TALBOT INDUSTRIES, Employer-Appellant/Cross-Respondent, - and FIDELITY & GUARANTY INSURANCE - COMPANY, Insurer-Appellant/Cross-Respondent, - and TREASURER OF THE STATE OF - MISSOURI AS CUSTODIAN OF THE SECOND - INJURY FUND, Respondent-Respondent.
    - Author:  Jeffrey W. Bates, Presiding Judge  Vote:  Affirmed. - Burrell, J., and Sheffield, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32867:  - STATE OF MISSOURI, Plaintiff-Appellant, - vs. - JEFFREY BARKER STONE, Defendant-Respondent.
    - Author:  Gary W. Lynch, Judge  Vote:  Affirmed. Bates, P.J., and - Burrell, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-04-23-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD32936 & SD32958 (Consolidated):  - KEVIN JOHNSON, Claimant-Appellant/Cross Respondent, - vs. - CITY OF CARTHAGE, Employer-Respondent/Cross Appellant.
    - Author:  Nancy Steffen Rahmeyer, Presiding Judge  Vote:  Affirmed. - Bates, J., and Francis, Jr., C.J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-04-22-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD32777:  - JOHN MATTHEW CLARK, Petitioner-Respondent, - v. - DIRECTOR OF REVENUE, STATE OF - MISSOURI, Respondent-Appellant.
    - Author:  Nancy Steffen Rahmeyer, Presiding Judge  Vote:  Affirmed. - Scott, J., and Francis, Jr., C.J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32823:  - POPLAR BLUFF INTERNET, INC., Plaintiff/Appellant, - vs. - CITY OF POPLAR BLUFF, Defendant/Respondent.
    - Author:  William W. Francis, Jr., Chief Judge  Vote:  Affirmed. - Rahmeyer, P.J., and Scott, J., Concur -
      -
    - - - - - - -
    - SD32459:  - STATE OF MISSOURI, Plaintiff-Respondent, - vs. - JAMES CARL DUKE III, Defendant-Appellant.
    - Author:  Mary W. Sheffield, Judge  Vote:  Affirmed. Lynch, J., - and Burrell, J., Concurs -
      -
    - - -
    - - - - - - - - -
    - SD32849:  - DONALD BRANDENBURG, Respondent, - vs. - TREASURER OF THE STATE OF MISSOURI, - CUSTODIAN OF SECOND INJURY FUND, Appellant.
    - Author:  William W. Francis, Jr., Chief Judge  Vote:  Affirmed. - Rahmeyer, P.J., and Scott, J., Concur -
      -
    - - - - - - -
    - SD32109:  - STATE OF MISSOURI, Plaintiff-Respondent, - vs. - PETER D. HANSEN, Defendant-Appellant.
    - Author:  Nancy Steffen Rahmeyer, Presiding Judge  Vote:  Affirmed - in Part, Reversed in Part, and Remanded with Directions. Francis, Jr., C.J., and Sheffield, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32417:  - STATE OF MISSOURI, Plaintiff-Respondent, - vs. - CHRISTOPHER RYAN BEARD, Defendant-Appellant.
    - Author:  Don E. Burrell, Judge  Vote:  Affirmed. Rahmeyer, P.J., - and Sheffield, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-04-15-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - -
    - - - - - - - - -
    - SD32374 & SD32543 (Consolidated):  - THE BANK OF MISSOURI, Plaintiff-Respondent, - vs. - SOUTH CREEK PROPERTIES, LLC, - HAMMER COLLECTIONS, LLC, - MICHAEL and CHARLOTTE DEWLEY, Defendants-Appellants, - and - TREDWELL ENTERPRISES, INC., Third-Party Defendant-Respondent.
    - Author:  Mary W. Sheffield, Judge  Vote:  Affirmed. Bates, P.J., - and Lynch, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32498:  - KIM FLORA, Petitioner-Respondent, - vs. - BRADLEY L. FLORA, Respondent-Appellant.
    - Author:  Don E. Burrell, Judge  Vote:  Affirmed. Bates, P.J., - and Lynch, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32775:  - MICHAEL D. BURNS, Appellant, - vs. - STATE OF MISSOURI, Respondent.
    - Author:  Daniel E. Scott, Judge  Vote:  Affirmed. Rahmeyer, - P.J., and Francis, Jr., C.J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32776:  - AMANDA MEDLOCK and - SAM MEDLOCK, Plaintiffs-Appellants, - vs. - ST. JOHN'S HEALTH SYSTEM, INC., - and ST. JOHN'S CLINIC, INC., Defendants-Respondents.
    - Author:  Gary W. Lynch, Judge  Vote:  Affirmed. Burrell, J., and - Sheffield, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-04-03-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - -
    - - - - - - - - -
    - SD32636:  - STATE OF MISSOURI, Plaintiff-Respondent, - vs. - TENA D. CADY, Defendant-Appellant.
    - Author:  Gary W. Lynch, Judge  Vote:  Affirmed. Burrell, J., and - Sheffield, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32887:  - In the Interest of: - D.J.G., Minor, - MISSOURI DEPARTMENT OF - SOCIAL SERVICES, - CHILDREN'S DIVISION, and, - HOWELL COUNTY JUVENILE - OFFICE, Petitioners-Respondents. - vs. - A.B., Natural Father, Respondent-Appellant.
    - Author:  Don E. Burrell, Judge  Vote:  Affirmed. Bates, P.J., - and Lynch, J., Concur -
      -
    - - - - - - -
    - SD32761:  - In The Estate Of: - KENNETH SUMMER, JR., Respondent-Respondent, - v. - MISSOURI DEPARTMENT OF - MENTAL HEALTH, Petitioner-Appellant.
    - Author:  Jeffrey W. Bates, Presiding Judge  Vote:  Reversed and - Remanded. Lynch, J., and Burrell, J., Concur -
      -
    - - - - - - -
    - SD32396:  - DOUG A. HOLMES, Respondent, - vs. - AMY F. HOLMES, Appellant.
    - Author:  Daniel E. Scott, Judge  Vote:  Affirmed in Part, - Reversed in Part, and Remanded with Directions. Rahmeyer, P.J., Dissents in Separate Opinion, Francis, Jr., - C.J., Concurs -
      -
    - - -
    - - - - - - - - -
    - SDOrder-03-28-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD32427:  - STATE OF MISSOURI, Plaintiff-Respondent, - vs. - SHELBY A. GAY, Defendant-Appellant.
    - Author:  Nancy Steffen Rahmeyer, Presiding Judge  Vote:  Affirmed. - Scott, J., and Francis, Jr., C.J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-03-27-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD32681:  - COLE ANDREW ANYAN, Petitioner-Respondent, - vs. - DIRECTOR OF REVENUE, - STATE OF MISSOURI, Respondent-Appellant.
    - Author:  Mary W. Sheffield, Judge  Vote:  Reversed and Remanded - with Instructions. Lynch, J., and Burrell, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32699 and SD32735 (Consolidated):  - THE EXECUTIVE BOARD - OF THE MISSOURI BAPTIST CONVENTION, Plaintiff/Appellant, - vs. - WINDERMERE BAPTIST CONFERENCE - CENTER, INC., JAMES L. HILL, RELIANCE - TRUST COMPANY, NATIONAL CITY BANK - OF THE MIDWEST, CONSOLIDATED - MORTGAGE, INC., and FIRST AMERICAN - TITLE MISSOURI AGENCY, INC., Defendants/Respondents.
    - Author:  William W. Francis, Jr., Chief Judge  Vote:  Affirmed. - Rahmeyer, P.J. - Concurs Scott, J. - Concurs in Separate Opinion -
      -
    - - - - - - -
    - SD32661 and SD32662:  - STATE OF MISSOURI, Plaintiff-Appellant, - vs. - KELLY ANN BURY, Defendant-Respondent.
    - Author:  Mary W. Sheffield, Judge  Vote:  Reversed and Remanded. - Bates, P.J., and Burrell, J., Concur -
      -
    - - - - - - -
    - SD32496:  - INTERNATIONAL DIVISION, INC., Plaintiff-Appellant, - vs. - DeWITT AND ASSOCIATES, INC., Defendant-Respondent.
    - Author:  Gary W. Lynch, Judge  Vote:  Reversed and Remanded. - Bates, P.J., and Sheffield, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-03-24-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - -
    - - - - - - - - -
    - SD32632:  - FARMERS INSURANCE CO., INC., - and MID-CENTURY INSURANCE CO., Plaintiffs-Respondents, - vs. - ROBIN WILSON and - DONALD BILLINGSLEY, Defendants-Appellants.
    - Author:  Gary W. Lynch, Judge  Vote:  Affirmed. Bates, P.J., and - Sheffield, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-03-18-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - -
    - - - - - - - - -
    - SDOrder-03-17-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD33124:  - STATE OF MISSOURI EX REL. - CHRIS KOSTER, Relator, - vs. - THE HONORABLE MARK FITZSIMMONS, - ASSOCIATE CIRCUIT JUDGE OF GREENE - COUNTY, AND STEVE HELMS, CIRCUIT - CLERK, GREENE COUNTY CIRCUIT COURT, Respondents.
    - Author:  PER CURIAM  Vote:  Record and Writ of Habeas Corpus - Quashed. Bates, P.J., Lynch, J., and Sheffield, J. -
      -
    - - - - - - -
    - SD32478:  - RAYDIANT TECHNOLOGY, LLC, Appellant, - v. - FLY-N-HOG MEDIA GROUP, INC., Respondent.
    - Author:  Daniel E. Scott, Judge  Vote:  Affirmed. Rahmeyer, - P.J., and Francis, Jr., C.J., Concur -
      -
    - - - - - - -
    - SD32173:  - MARGARET ARD and - ROBERT COMELY, Petitioners-Respondents, - v. - SHANNON COUNTY COMMISSION, Respondent-Appellant.
    - Author:  Jeffrey W. Bates, Presiding Judge  Vote:  Affirmed. - Burrell, J., and Sheffield, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32236:  - REJA LYNN COOPER, - n/k/a REJA LYNN SPAENY, Petitioner-Appellant, - vs. - RONALD FRANCIS COOPER, Respondent-Respondent.
    - Author:  Mary W. Sheffield, Judge  Vote:  Affirmed. Bates, P.J., - and Lynch, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32758:  - ELLEN A. WISS and O. ELIZABETH - CORBETT, Plaintiffs-Respondents, - vs. - GENE W. SPITZMILLER, Defendant/Trustee/Beneficiary-Appellant, - and - SHARON E. GUNN, Defendant/Trustee/Beneficiary-Respondent, - and - LINDA J. BRIDGER, Defendant/Beneficiary-Respondent.
    - Author:  Don E. Burrell, Judge  Vote:  Remanded with Directions. - Lynch, J., and Sheffield, J., Concur -
      -
    - - - - - - -
    - SD32757:  - ROBERTS HOLDINGS, INC., Plaintiff-Appellant, - vs. - BECCA'S BARKERY, INC., - STEVEN KALCH, and REBECCA - E. KALCH, Defendants-Respondents.
    - Author:  Don E. Burrell, Judge  Vote:  Affirmed. Bates, P.J., - and Sheffield, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32794:  - DEBORAH K. MORRIS, Personal Representative - of the Estate of Steven W. Groves, Deceased, Appellant, - vs. - TRUST COMPANY OF THE OZARKS, as Trustee - of the William and Kathryn Groves Trust Under - Agreement dated July 2, 1991, as amended, - Maurice Houghton, Martha Rains, Louise Zook, - Evangeline Skelton, John Jack Munsey, Park University, - and Fitchburg State College, Respondents.
    - Author:  Daniel E. Scott, Judge  Vote:  Affirmed. Lynch, J., and - Bates, P.J., Concur -
      -
    - - - - - - -
    - SD32627:  - KATHY LYNN SHAFER, Petitioner/Appellant, - vs. - DANIEL DEL SHAFER, Respondent/Respondent.
    - Author:  William W. Francis, Jr., Chief Judge  Vote:  Reversed - and Remanded in Part with Directions; Affirmed in Part. Rahmeyer, P.J., and Scott, J., Concur -
      -
    - - - - - - -
    - SD32326:  - BRYAN LEE STEELE, Petitioner/Respondent, - vs. - JUDY ANN STEELE, Respondent/Appellant.
    - Author:  William W. Francis, Jr., Chief Judge  Vote:  Affirmed. - Rahmeyer, P.J., and Scott, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-03-10-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD32382 and SD32406 (Consolidated):  - GRAU CONTRACTING, INC., Plaintiff, - vs. - CAPTIVA LAKE INVESTMENTS, LLC, Appellant/Cross-Respondent, - MISSOURI BUILDERS SERVICE, INC., Respondent/Cross-Appellant, - QUESTEC CONTRUCTORS, INC., - BUTLER SUPPLY, INC., - HOUSE OF CARPET, INC., - and MEYER ELECTRIC CO., INC., Respondents.
    - Author:  Daniel E. Scott, Judge  Vote:  Affirmed. Rahmeyer, - P.J., and Francis, Jr., C.J., Concur -
      -
    - - - - - - -
    - SD31479:  - TERRY A. GUENGERICH and - LORRAINE GUENGERICH, Plaintiffs-Appellants, - v. - KAYLA BARKER and CLARENCE - EDWARD HIGGINS, JR., Defendants-Respondents.
    - Author:  Jeffrey W. Bates, Judge  Vote:  Affirmed as Modified. - Barney, Sr., J. - Concurs Scott, J. - Concurs in Part and Dissents in Part (Separate Opinion) -
      -
    - - -
    - - - - - - - - -
    - SDOrder-03-05-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD32688:  - 2 MIKES, INC., Plaintiff-Appellant, - vs. - TURNING LEAF PROPERTIES, LLC, Defendant-Respondent.
    - Author:  Don E. Burrell, Judge  Vote:  Affirmed. Bates, P.J., - and Sheffield, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32564:  - In Re the Marriage of: - SCOTT D. YONKER, and - VALERIE K. YONKER, - - SCOTT DAMIAN YONKER, Petitioner-Respondent, - vs. - VALERIE KAY YONKER, - n/k/a VALERIE KAY BOYCE, Respondent-Appellant.
    - Author:  Don E. Burrell, Judge  Vote:  Affirmed in Part, - Reversed in Part, and Remanded with Instructions. Bates, P.J., and Lynch, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32710:  - LEE HARRELL, Movant-Appellant, - v. - STATE OF MISSOURI, Respondent-Respondent.
    - Author:  Jeffrey W. Bates, Presiding Judge  Vote:  Affirmed. - Lynch, J., and Burrell, J., Concurs -
      -
    - - -
    - - - - - - - - -
    - SD32873 and SD32874 (Consolidated):  - In the Interest of: - A.A.R., and A.N.R., Minors, - GREENE COUNTY JUVENILE - OFFICE, Petitioner-Respondent, - vs. - M.S.R., Mother, Respondent-Appellant.
    - Author:  Don E. Burrell, Judge  Vote:  Affirmed. Bates, P.J., - and Lynch, J., Concurs -
      -
    - - -
    - - - - - - - - -
    - SD32778:  - CINDY SILLYMAN, Plaintiff-Appellant, - vs. - DAVID O. BARBE, M.D., and - ST. JOHN'S PHYSICIANS AND - CLINICS, INC., d/b/a - ST. JOHN'S CLINIC, Defendants-Respondents.
    - Author:  Mary W. Sheffield, Judge  Vote:  Affirmed. Bates, P.J., - and Lynch, J., Concurs -
      -
    - - -
    - - - - - - - - -
    - SDOrder-02-18-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD32741:  - SKAGGS REGIONAL MEDICAL CENTER, Respondent, - vs. - TAMMIE M. POWERS, Appellant.
    - Author:  Daniel E. Scott, Judge  Vote:  Affirmed. Rahmeyer, - P.J., and Francis, Jr., C.J., Concurs -
      -
    - - - - - - -
    - SD32293:  - STATE OF MISSOURI, Plaintiff-Respondent, - vs. - BOBBY GLEN ROST, Defendant-Appellant.
    - Author:  Nancy Steffen Rahmeyer, Presiding Judge  Vote:  Affirmed. - Scott, J., and Francis, Jr., C.J., Concurs -
      -
    - - -
    - - - - - - - - -
    - SD32542:  - STATE OF MISSOURI, Plaintiff-Respondent - vs. - DANNY K. THOMAS, Defendant-Appellant
    - Author:  Judge Mary W. Sheffield  Vote:  Affirmed. Lynch, J., - and Burrell, J., Concur. -
      -
    - - -
    - - - - - - - - -
    - SDOrder-02-13-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - -
    - - - - - - - - -
    - SDOrder-02-11-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD31205:  - JAMES R. BAKER and - LINDA BAKER, Plaintiffs-Appellants, - and - CHARLES E. HIGHTOWER, - DIANE HIGHTOWER, MARVIN D. - GRIFFITH, MARILYN SUE - GRIFFITH, and THE UNKNOWN - HEIRS, DEVISEES, GRANTEES, - SUCCESSORS AND ASSIGNS OF - JAMES ELLIS THOMPSON, JR, - DECEASED, Plaintiffs, - v. - WALNUT BOWLS, INC., Defendant-Respondent.
    - Author:  Jeffrey W. Bates, Judge  Vote:  Reversed and Remanded. - Barney, Sr., J., and Scott, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32827:  - MARLENE STEWART, Respondent - vs. - CLINT ZWIEFEL, TREASURER OF THE STATE OF MISSOURI AS CUSTODIAN OF THE SECOND INJURY FUND, - Appellant
    - Author:  Judge Daniel E. Scott  Vote:  Affirmed. Rahmeyer, P.J., - and Francis, C.J., concur -
      -
    - - - - - - -
    - SD32774:  - JENNIFER DEARBORN, Claimant-Respondent - vs. - GREAT SOUTHERN FINANCIAL CORPORATION, Employer-Appellant, DIVISION OF EMPLOYMENT SECURITY, - Respondent
    - Author:  Judge Gary W. Lynch  Vote:  Affirmed. Bates, P.J., and - Burrell, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32470:  - RHONDA PARROTT, as Surviving - Spouse of JAMES KELSO PARROT, - Deceased, and Individually, Plaintiff-Respondent, - vs. - SEVERS TRUCKING, LLC, and - BRANDON G. BLACK, Defendants-Appellants.
    - Author:  Gary W. Lynch, Judge  Vote:  Reversed and Remanded. - Bates, P.J., and Burrell, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32626 and SD32663:  - RICKY LEE GRIFFITTS, Plaintiff-Respondent, - vs. - JAMES M. CAMPBELL, Defendant-Respondent, - and - BNSF RAILWAY COMPANY - and OLD REPUBLIC INSURANCE - COMPANY, Intervenors-Appellants.
    - Author:  Nancy Steffen Rahmeyer, Presiding Judge  Vote:  Affirmed. - Scott, J., and Francis, Jr., C.J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32633:  - MARK HOPWOOD and - MARY HOPWOOD, Plaintiffs-Respondents, - v. - CITIFINANCIAL, INC. and - ZACHREY B. BOULWARE, Defendants-Appellants.
    - Author:  Jeffrey W. Bates, Presiding Judge  Vote:  Affirmed. - Burrell, J., and Sheffield, J., Concur -
      -
    - - - - - - -
    - SD32475:  - TOM M. ROBERTSON, IAFF LOCAL - 2618, ADAM GRINES, LARIN - TRENARY, and DANIEL JOBE, Plaintiffs-Respondents, - vs. - POLICE AND FIREMEN'S PENSION - PLAN OF CITY OF JOPLIN, TRUSTEES - OF POLICE AND FIREMEN'S PENSION - PLAN OF CITY OF JOPLIN, and CITY - OF JOPLIN, MISSOURI, Defendants-Appellants.
    - Author:  Don E. Burrell, Judge  Vote:  Reversed and Remanded - with Instructions. Lynch, J., and Sheffield, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32830:  - LINDA DORRIS, Employee-Respondent, - vs. - STODDARD COUNTY, Employer-Appellant.
    - Author:  Mary W. Sheffield, Judge  Vote:  Affirmed. Bates, P.J., - and Lynch, J., Concur -
      -
    - - - - - - -
    - SD32580:  - MICHAEL A. TIMBERLAKE, Appellant, - vs. - STATE OF MISSOURI, Respondent.
    - Author:  William W. Francis, Jr., Chief Judge  Vote:  Reversed - and Remanded with Directions. Rahmeyer, P.J., and Scott, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-01-30-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - -
    - - - - - - - - -
    - SDOrder-01-29-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD32783:  - JEFFREY BROYLES, Appellant, - vs. - DIRECTOR OF REVENUE, - STATE OF MISSOURI, Respondent.
    - Author:  William W. Francis, Jr., Chief Judge  Vote:  Affirmed. - Rahmeyer, P.J., and Scott, J., Concur -
      -
    - - - - - - -
    - SD32590:  - CAROL BALLARD, Claimant-Respondent, - v. - WOODS SUPERMARKETS, INC., Employer-Appellant, - and TREASURER OF THE STATE OF - MISSOURI AS CUSTODIAN OF THE - SECOND INJURY FUND, Respondent.
    - Author:  Jeffrey W. Bates, Presiding Judge  Vote:  Affirmed. - Burrell, J., and Sheffield, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32739:  - ST. JOHN'S CLINIC, INC., Appellant, - vs. - PULASKI COUNTY AMBULANCE DISTRICT, Respondent.
    - Author:  Daniel E. Scott, Judge  Vote:  Affirmed. Rahmeyer, - P.J., Dissents in Separate Opinion, Francis, Jr., C.J., Concurs -
      -
    - - -
    - - - - - - - - -
    - SDOrder-01-27-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD32759 and SD32760 (Consolidated):  - IN THE INTEREST OF: - D.T.L. and C.J.L., - children under seventeen years of age. - GREENE COUNTY JUVENILE OFFICE, Petitioner-Respondent, - vs. - V.D.L., Respondent-Appellant.
    - Author:  Nancy Steffen Rahmeyer, Presiding Judge  Vote:  Affirmed. - Scott, J., and Lynch, J., Concur -
      -
    - - - - - - -
    - SD32526:  - SANDY JACKSON, Plaintiff-Appellant, - v. - HAZELRIGG AUTOMOTIVE - SERVICE CENTER, INC., Defendant-Respondent.
    - Author:  Jeffrey W. Bates, Presiding Judge  Vote:  Affirmed. - Lynch, J., and Sheffield, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-01-24-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD32858:  - In the Matter of - KATRINA BARNES, Claimant/Appellant, - vs. - JASPER PRODUCTS, L.L.C., Employer/Respondent, - and MISSOURI DIVISION OF EMPLOYMENT SECURITY, Respondent.
    - Author:  William W. Francis, Jr., Chief Judge  Vote:  Reversed - and Remanded with Directions. Rahmeyer, P.J., and Scott, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32800:  - STATE OF MISSOURI EX REL. - BOB T. BEISLY II, Relator, - vs. - THE HONORABLE TIMOTHY PERIGO, Respondent.
    - Author:  Per Curiam  Vote:  Permanent Writ in Prohibition - Issued. Bates, P.J., Burrell, J., and Sheffield, J., Concur -
      -
    - - - - - - -
    - SD32562:  - J.T. AND A.T., BY AND THROUGH - THEIR FATHER, JOHN TAYLOR, FOR - THE DEATH OF THEIR MOTHER, - LINDY TAYLOR, and - J.T. AS PLAINTIFF AD LITEM, Plaintiffs-Appellants, - vs. - MARTIN ANBARI, M.D., - LITTON & GIDDINGS RADIOLOGICAL - ASSOCIATES, P.C., and - MICHAEL WORKMAN, M.D., Defendants-Respondents.
    - Author:  Mary W. Sheffield, Judge  Vote:  Affirmed. Bates, P.J., - and Lynch, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-01-22-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - -
    - - - - - - - - -
    - SD32620:  - RICHARD E. BEECHER, Appellant, - vs. - TERRY L. BEECHER, Respondent.
    - Author:  Daniel E. Scott, Judge  Vote:  Affirmed in Part, - Reversed in Part, and Remanded with Directions. Rahmeyer, P.J., and Lynch, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32683:  - ELIZABETH DOWNING, Employee-Respondent, - vs. - McDONALD'S SIRLOIN STOCKADE, Employer-Appellant.
    - Author:  Mary W. Sheffield, Judge  Vote:  Affirmed. Lynch, J., - and Burrell, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32457:  - TAMBRA LESTER, Petitioner-Appellant, - v. - DEPARTMENT OF SOCIAL SERVICES, - FAMILY SUPPORT DIVISION, Respondent-Respondent.
    - Author:  Jeffrey W. Bates, Presiding Judge  Vote:  Affirmed. - Lynch, J., and Sheffield, J., Concur -
      -
    - - - - - - -
    - SD32413:  - STATE OF MISSOURI, Plaintiff-Respondent, - v. - BRENT LONG, Defendant-Appellant.
    - Author:  Jeffrey W. Bates, Presiding Judge  Vote:  Affirmed. - Lynch, J., and Burrell, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SD32585:  - DANNY HARNESS and FAYE SAVAGE, Plaintiffs-Respondents, - vs. - JIM RICHARDSON, HAZEL THOMAS, - BETTY NICHOLS, MIKE PRITCHETT, - and RODNEY SANFORD, Defendants-Appellants.
    - Author:  Mary W. Sheffield, Judge  Vote:  Reversed and Remanded - with Instructions. Bates, P.J., and Burrell, J., Concur -
      -
    - - - - - - -
    - SD32563:  - SHERI STEPHENS, Plaintiff/Appellant, - vs. - SHERIFF W. ARCHIE DUNN, - SHERIFF JACK L. MERRITT, RETIRED, - C.E. WELLS, JOHN DOE I, - JOHN DOE III, and JOHN DOE IV, Defendants/Respondents, - and - GERALD TUCK, JOHN DOE II, - JOHN DOE V, and JOHN B. FREITAS, DO, Defendants.
    - Author:  William W. Francis, Jr., Chief Judge  Vote:  Affirmed. - Rahmeyer, P.J., and Scott, J., Concur -
      -
    - - - - - - -
    - SD32541:  - DONALD PAYNE, Claimant/Appellant, - vs. - TREASURER OF THE STATE OF MISSOURI, - CUSTODIAN OF SECOND INJURY FUND, Respondent.
    - Author:  William W. Francis, Jr., Chief Judge  Vote:  Affirmed. - Rahmeyer, P.J., and Scott, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-01-13-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - SD32843:  - IN THE INTEREST OF K.J.L., S.L.L., Appellant, - vs. - GREENE COUNTY JUVENILE OFFICE, Respondent.
    - Author:  Daniel E. Scott, Judge  Vote:  Remanded with - Directions. Rahmeyer, P.J., and Francis, Jr., C.J., Concur -
      -
    - - - - - - -
    - SD32629:  - ROY MEDLIN, Plaintiff/Appellant, - vs. - RLC, INC., Defendant/Respondent, - and - JEREMIAH J. HAYES, et al., Intervenors/Respondents.
    - Author:  William W. Francis, Jr., Chief Judge  Vote:  Affirmed. - Rahmeyer, P.J., Concurs in result only; and Scott, J., Concurs. -
      -
    - - -
    - - - - - - - - -
    - SD32658:  - In the Matter of - JENNA STAFFORD, Claimant/Respondent, - vs. - GREAT SOUTHERN BANK, Employer/Appellant, - and MISSOURI DIVISION - OF EMPLOYMENT SECURITY, Respondent.
    - Author:  William W. Francis, Jr., Chief Judge  Vote:  Reversed - and Remanded with Directions. Rahmeyer, P.J., Scott, J., Concur -
      -
    - - -
    - - - - - - - - -
    - SDOrder-01-07-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + -
    - - + + +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/moctapp_western_example.compare.json b/tests/examples/opinions/united_states/moctapp_western_example.compare.json index 2c0ccd9ab..2e0a79f6c 100644 --- a/tests/examples/opinions/united_states/moctapp_western_example.compare.json +++ b/tests/examples/opinions/united_states/moctapp_western_example.compare.json @@ -1,1029 +1,2251 @@ [ { - "case_dates": "2014-05-06", - "case_names": "Mark Kershaw v. City of Kansas City, Missouri", - "download_urls": "/file.jsp?id=73114", + "case_dates": "2023-10-31", + "case_names": "Z.R., a Minor, By and Through Her Mother and Next Friend, T.R. and By and Through Her Father and Next Friend, R.R. v. Kansas City Pediatrics, LLC, and Scott Dattel, M.D.", + "download_urls": "/file.jsp?id=202359", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded. Ellis, P.J. and Gabbert, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76864", - "judges": "Karen King Mitchell, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85751", + "judges": "Gabbert, J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Edward R. Ardini, Jr., Presiding Judge" }, { - "case_dates": "2014-05-06", - "case_names": "Manuel H. Lopez, on Behalf of Himself and All Others Similarly Situated v. H&R Block, Inc.", - "download_urls": "/file.jsp?id=73113", + "case_dates": "2023-10-31", + "case_names": "Vicente Roldan-Marron v. State of Missouri", + "download_urls": "/file.jsp?id=202357", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded. Ahuja, JJ. and Witt, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76724", - "judges": "Victor C. Howard, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85510", + "judges": "Hardwick, P.J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" }, { - "case_dates": "2014-04-29", - "case_names": "Stephen A. Oliver v. Ford Motor Credit Company, LLC", - "download_urls": "/file.jsp?id=72867", + "case_dates": "2023-10-31", + "case_names": "Phillip Crisp v. Missouri School for the Deaf, Department of Elementary & Secondary Education", + "download_urls": "/file.jsp?id=202362", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Howard, JJ. and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75585, with, WD75619", - "judges": "Anthony Rex Gabbert, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85660", + "judges": "Ahuja, J., and Pfeiffer, J., concur.", + "case_name_shorts": "", + "authors": "Janet Sutton, Presiding Judge" }, { - "case_dates": "2014-04-29", - "case_names": "Star Development Corporation v. Urgent Care Associates, Inc.", - "download_urls": "/file.jsp?id=73093", + "case_dates": "2023-10-31", + "case_names": "Olga Sparks v. Joseph Michael Sparks", + "download_urls": "/file.jsp?id=202361", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed & remanded. Welsh, C.J. Presiding and McBeth, Sp. J., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76619", - "judges": "Lisa White Hardwick, Judge", - "case_name_shorts": "" + "dispositions": "Dismissed", + "docket_numbers": "WD85864", + "judges": "Ardini, Jr., P.J., and Gabbert, J., concur.", + "case_name_shorts": "", + "authors": "Thomas N. Chapman, Judge" }, { - "case_dates": "2014-04-29", - "case_names": "Stacey L. Deane v. Missouri Employers Mutual Insurance Company", - "download_urls": "/file.jsp?id=72871", + "case_dates": "2023-10-31", + "case_names": "Jason L. Collins v. Century Ready Mix, Inc., and Treasurer of the State of Missouri - Custodian of the Second Injury Fund", + "download_urls": "/file.jsp?id=202356", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Mitchell, JJ. and Gabbert, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76508", - "judges": "Joseph M. Ellis, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD86101_and_WD86102", + "judges": "Sutton, P.J., and Ahuja, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" }, { - "case_dates": "2014-04-29", - "case_names": "Richard Brown v. Susan Brown-Thill", - "download_urls": "/file.jsp?id=72875", + "case_dates": "2023-10-31", + "case_names": "Janet Perea and Mav Mirfasihi v. Progressive Northwestern Insurance Company", + "download_urls": "/file.jsp?id=202355", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded. Howard, P.J. and Gabbert, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76778", - "judges": "Alok Ahuja, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD86038", + "judges": "Martin, J., and Gabbert, J., concur.", + "case_name_shorts": "", + "authors": "Lisa White Hardwick, Presiding Judge" }, { - "case_dates": "2014-04-29", - "case_names": "Ray Charles Bate and Deborah Sue Bate v. Greenwich Insurance Company", - "download_urls": "/file.jsp?id=72869", + "case_dates": "2023-10-31", + "case_names": "Hannah Sue Kelly, Kathleen Anne Forck, and Mary Elizabeth Anne Coleman v. Scott Fitzpatrick, Missouri State Auditor, John R. Ashcroft, Missouri Secretary of State, and Anna Fitz-James", + "download_urls": "/file.jsp?id=202473", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed & remanded. Newton, P.J. and Pfeiffer, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76086", - "judges": "Cynthia L. Martin, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD86594", + "judges": "Pfeiffer, J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Presiding Judge" }, { - "case_dates": "2014-04-29", - "case_names": "Mary Kingsley v. Richard McDonald", - "download_urls": "/file.jsp?id=72876", + "case_dates": "2023-10-31", + "case_names": "Gary Jolley v. State of Missouri", + "download_urls": "/file.jsp?id=202358", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded. Howard, P.J. and Witt, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76783", - "judges": "Alok Ahuja, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85522", + "judges": "Ahuja, J., and Thomson, J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" }, { - "case_dates": "2014-04-29", - "case_names": "Jimmie Lee Taylor v. The Bar Plan Mutual Insurance Company", - "download_urls": "/file.jsp?id=72870", + "case_dates": "2023-10-31", + "case_names": "Dr. Anna Fitz-James v. John R. Ashcroft, Missouri Secretary of State", + "download_urls": "/file.jsp?id=202415", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed. Reversed. Martin, P.J., concurs, Fischer, Sp. J., concurs in part and dissents in part in a separate opinion", - "divisions": "Western Dist.", - "docket_numbers": "WD76380", - "judges": "Gary D. Witt, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed in Part and Reversed in Part and Alternative Summary Statements Certified to the Secretary of State", + "docket_numbers": "WD86595", + "judges": "Hardwick, PJ., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Thomas N. Chapman, Judge" }, { - "case_dates": "2014-04-29", - "case_names": "Jerry Allan Ridge, Jr. v. Director of Revenue", - "download_urls": "/file.jsp?id=72868", + "case_dates": "2023-10-31", + "case_names": "Brendan Ford v. Director of Revenue, State of Missouri", + "download_urls": "/file.jsp?id=202354", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Howard, JJ. and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75986", - "judges": "Anthony Rex Gabbert, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85505", + "judges": "Mitchell, J., and Martin, J., concur.", + "case_name_shorts": "", + "authors": "Lisa White Hardwick, Presiding Judge" }, { - "case_dates": "2014-04-29", - "case_names": "Janet Hurst v. Kansas City Missouri School District", - "download_urls": "/file.jsp?id=72872", + "case_dates": "2023-10-31", + "case_names": "Brandon McNeese v. John Wheeler", + "download_urls": "/file.jsp?id=202360", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed & remanded. Mitchell, JJ. and Gabbert, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76534", - "judges": "Joseph M. Ellis, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Appeal Dismissed", + "docket_numbers": "WD85812", + "judges": "Ardini, Jr., P.J., and Gabbert, J., concur.", + "case_name_shorts": "", + "authors": "Thomas N. Chapman, Judge" }, { - "case_dates": "2014-04-29", - "case_names": "In the Estate of Kevin N. Merritt, By and Through Its Duly Appointed Personal Representative, Monique Merritt v. Rebecca L. Wachter Fidelity Brokerage Services, LLC", - "download_urls": "/file.jsp?id=72873", + "case_dates": "2023-10-24", + "case_names": "Wilford Freestone v. Board of Police Commissioners Kansas City, Missouri", + "download_urls": "/file.jsp?id=202238", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded. Howard, JJ. and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76581", - "judges": "Anthony Rex Gabbert, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85492", + "judges": "Chapman, J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Presiding Judge" }, { - "case_dates": "2014-04-22", - "case_names": "State of Missouri v. Travis Lovett", - "download_urls": "/file.jsp?id=72517", + "case_dates": "2023-10-24", + "case_names": "The Public School Retirement System of Missouri v. Regions Bank Inc.", + "download_urls": "/file.jsp?id=202235", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Dismissed & remanded. Welsh, C.J. and Rhodes, Sp. J., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76646", - "judges": "Joseph M. Ellis, Judge", - "case_name_shorts": "" + "dispositions": "Reversed and Judgment Entered For Bank On All Claims Pursuant To Rule 84", + "docket_numbers": "WD85795", + "judges": "14. Thomson, J., and Vandeloecht, Sp. J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" }, { - "case_dates": "2014-04-22", - "case_names": "State of Missouri v. Stephen D. Wright", - "download_urls": "/file.jsp?id=72518", + "case_dates": "2023-10-24", + "case_names": "State of Missouri v. Marqus Andrew Wilson", + "download_urls": "/file.jsp?id=202237", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Dismissed & remanded. Martin, P.J. and Pfeiffer, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76647", - "judges": "Karen King Mitchell, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85247", + "judges": "Witt, P.J., and Vandeloecht, Sp. J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Judge" }, { - "case_dates": "2014-04-22", - "case_names": "State of Missouri v. Henry L. Sutton, III", - "download_urls": "/file.jsp?id=72513", + "case_dates": "2023-10-24", + "case_names": "State of Missouri v. James Eugene Logan", + "download_urls": "/file.jsp?id=202233", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Newton, P.J. and Pfeiffer, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76304", - "judges": "Cynthia L. Martin, Judge", - "case_name_shorts": "" + "dispositions": "Transferred to Missouri Supreme Court", + "docket_numbers": "WD85830", + "judges": "Gabbert, J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Presiding Judge" }, { - "case_dates": "2014-04-22", - "case_names": "Rocking H Trucking, LLC, and John Payne Harrison, IV v. H.B.I.C., LLC, Michelle Alderson, and David Fenton, D.V.M.", - "download_urls": "/file.jsp?id=72516", + "case_dates": "2023-10-24", + "case_names": "St Louis-Jefferson Solid Waste Management District v. Department of Natural Resources, State of Missouri", + "download_urls": "/file.jsp?id=202236", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Dismissed. Newton, P.J. and Martin, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76470", - "judges": "Mark D. Pfeiffer, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed and Remanded For a Determination of Reasonable Attorneys' Fees On Appeal", + "docket_numbers": "WD85984", + "judges": "Thomson, J., and Vandeloecht, Sp. J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" }, { - "case_dates": "2014-04-22", - "case_names": "Priscella Gilley v. Missouri Public Entity Risk Management Fund", - "download_urls": "/file.jsp?id=72519", + "case_dates": "2023-10-24", + "case_names": "Quincy Clark Entertainment, LLC v. Liquor Control", + "download_urls": "/file.jsp?id=202234", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Newton, p.J. and Martin, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76933", - "judges": "Mark D. Pfeiffer, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85531", + "judges": "Martin, J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" }, { - "case_dates": "2014-04-22", - "case_names": "Ericka J. Sauvain, Amy Leigh Sauvain, by Next Friend Ericka J. Sauvain, and Bonnie S. Hughes v. Acceptance Indemnity Insurance Company", - "download_urls": "/file.jsp?id=72514", + "case_dates": "2023-10-17", + "case_names": "State of Missouri v. Eric J. Devalkenaere", + "download_urls": "/file.jsp?id=202033", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Martin, P.J. and Mitchell, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76356", - "judges": "Mark D. Pfeiffer, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85232", + "judges": "Thomson, P.J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "Thomas N. Chapman, Judge" }, { - "case_dates": "2014-04-22", - "case_names": "Christopher Estes v. Cole County of Missouri", - "download_urls": "/file.jsp?id=72515", + "case_dates": "2023-10-10", + "case_names": "Willow Farm Pool and Homes Association, INC. v. Rachel Zorn and Scott Zorn", + "download_urls": "/file.jsp?id=201876", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Newton, P.J. and Pfeiffer, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76419", - "judges": "Cynthia L. Martin, Judge", - "case_name_shorts": "" + "dispositions": "Circuit Court Judgment Reversed and Vacated, and Judgment Entered Pursuant to Rule 84", + "docket_numbers": "WD85837", + "judges": "14. Hardwick, J., and Pfeiffer, J., concur.", + "case_name_shorts": "", + "authors": "Anthony Rex Gabbert, Presiding Judge" }, { - "case_dates": "2014-04-15", - "case_names": "Kwang H. Kim v. Won Il Kim", - "download_urls": "/file.jsp?id=72174", + "case_dates": "2023-10-10", + "case_names": "State of Missouri v. Tiffany J Mills", + "download_urls": "/file.jsp?id=201875", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Dismissed. Ellis, JJ. and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76414", - "judges": "James E. Welsh, Chief Judge", - "case_name_shorts": "" + "dispositions": "Transferred to Missouri Supreme Court", + "docket_numbers": "WD85624", + "judges": "Ahuja, P.J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Anthony Rex Gabbert, Judge" }, { - "case_dates": "2014-04-15", - "case_names": "In the Matter of the Estate of M. Stanley Ginn, Nancy Almond, Personal Representative (Administrator De Bonis Non) and Individually v. Carrie Almond", - "download_urls": "/file.jsp?id=72175", + "case_dates": "2023-10-10", + "case_names": "State of Missouri v. Joshua Armando Aldana", + "download_urls": "/file.jsp?id=201874", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Ellis, JJ. and Russell, Sp. J., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76552", - "judges": "James E. Welsh, Chief Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85526", + "judges": "Martin, J., and Gaddie, Sp. J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" }, { - "case_dates": "2014-04-15", - "case_names": "Deborah Barkley v. McKeever Enterprises, Inc. D/B/A Price Chopper", - "download_urls": "/file.jsp?id=72156", + "case_dates": "2023-10-10", + "case_names": "Roslyn T. Barnes v. Athene Annuity & Life Assurance Company f/k/a Liberty Life Insurance f/k/a Business Men's Assurance Company of America", + "download_urls": "/file.jsp?id=201873", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Ahuja, P.J., concurs Gabbert, JJ., dissents in a separate opinion", - "divisions": "Western Dist.", - "docket_numbers": "WD75944", - "judges": "Thomas H. Newton, Judge", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded, With the Motion for Sanctions, for Further Proceedings Consistent With This Opinion", + "docket_numbers": "WD85464", + "judges": "Martin, J., and Gaddie, Sp. J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" }, { - "case_dates": "2014-04-15", - "case_names": "David A. Kline v. State of Missouri", - "download_urls": "/file.jsp?id=72173", + "case_dates": "2023-10-03", + "case_names": "State of Missouri v. Lonnie Allen Ogle", + "download_urls": "/file.jsp?id=201636", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Witt, P.J. and Hardwick, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76228", - "judges": "Alok Ahuja, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85498", + "judges": "Martin, J., and Gabbert, J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" }, { - "case_dates": "2014-04-15", - "case_names": "Cindy Walden v. Kenneth Smith and American Family Mutual Insurance Company", - "download_urls": "/file.jsp?id=72157", + "case_dates": "2023-10-03", + "case_names": "In the Interest of: A.L.H. v. Juvenile Officer", + "download_urls": "/file.jsp?id=201635", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Pfeiffer, JJ., and Mitchell, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75982", - "judges": "Cynthia L. Martin, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85774", + "judges": "Gabbert, P.J., and Pfeiffer, J., concur.", + "case_name_shorts": "", + "authors": "Lisa White Hardwick, Judge" }, { - "case_dates": "2014-04-15", - "case_names": "Central Bank of Kansas City v. donald Perry, et ux", - "download_urls": "/file.jsp?id=72833", + "case_dates": "2023-09-26", + "case_names": "State of Missouri v. Rex Braden Gash", + "download_urls": "/file.jsp?id=201437", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Newton, JJ. and Gabbert, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76102", - "judges": "Alok Ahuja, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85805", + "judges": "Witt, P.J., and Gaddie, Sp. J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" }, { - "case_dates": "2014-04-15", - "case_names": "Brian Hauge and Susan Hanley v. Trustees of Highlands of Chesterfield", - "download_urls": "/file.jsp?id=72176", + "case_dates": "2023-09-26", + "case_names": "State of Missouri v. John W. Caudill", + "download_urls": "/file.jsp?id=201434", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Ellis, JJ. and Russell, Sp. J., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76589", - "judges": "James E. Welsh, Chief Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85603", + "judges": "Gabbert, P.J., and Hardwick, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" }, { - "case_dates": "2014-04-08", - "case_names": "Vincent Burton v. SS Auto Inc.", - "download_urls": "/file.jsp?id=71959", + "case_dates": "2023-09-26", + "case_names": "In The Matter of The Application of Evergy Missouri West INC d/b/a Evergy Missouri West for a Financing Order Authorizing The Financing of Extraordinary Storm Costs Through an Issuance of Securitized Utility Tariff Bonds, Missouri Public Service Commission Evergy Missouri West INC. v. Office of Public Counsel", + "download_urls": "/file.jsp?id=201438", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded with directions. Martin, P.J. and Mitchell, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76513", - "judges": "Mark D. Pfeiffer, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85958", + "judges": "Witt, P.J., and Gaddie, Sp. J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" }, { - "case_dates": "2014-04-08", - "case_names": "State of Missouri v. Deandre J. Key", - "download_urls": "/file.jsp?id=71954", + "case_dates": "2023-09-26", + "case_names": "Gary Joe Lemon v. Chad N. Hopkins and Stacie A. Hopkins", + "download_urls": "/file.jsp?id=201435", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Martin, P.J. and Pfeiffer, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75596", - "judges": "Karen King Mitchell, Judge", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85652", + "judges": "Ahuja, P.J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Karen King Mitchell, Judge" }, { - "case_dates": "2014-04-08", - "case_names": "State of Missouri ex rel Ideker, Inc. v. The Honorable Jack Grate", - "download_urls": "/file.jsp?id=71961", + "case_dates": "2023-09-26", + "case_names": "Driss Zarhouni v. State of Missouri", + "download_urls": "/file.jsp?id=201436", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Writ made absolute. Hardwick, P.J. and Mitchell, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD77031", - "judges": "Alok Ahuja, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85758", + "judges": "Witt, P.J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" }, { - "case_dates": "2014-04-08", - "case_names": "Mindy L. Schler and Cindy L. Schler v. Coves North Homes Association", - "download_urls": "/file.jsp?id=71955", + "case_dates": "2023-09-26", + "case_names": "Bernard Williams v. Doris Falkenrath, Warden, Jefferson City Correctional Center", + "download_urls": "/file.jsp?id=201433", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed. Gabbert, P.J. and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75983", - "judges": "Victor C. Howard, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Petition for Writ Of Habeas Corpus Granted", + "docket_numbers": "WD86437", + "judges": "Sutton, P.J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Judge" }, { - "case_dates": "2014-04-08", - "case_names": "Larry Nance (Deceased) v. Maxon Electric, Inc., and National Surety Corp., c/o Fireman's Fund Insurance CO", - "download_urls": "/file.jsp?id=71960", + "case_dates": "2023-09-19", + "case_names": "State of Missouri v. Jeromy L. Jenkins", + "download_urls": "/file.jsp?id=201194", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Martin, P.J. and Mitchell, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76587", - "judges": "Mark D. Pfeiffer, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85228", + "judges": "Gabbert, P.J., and Hardwick, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" }, { - "case_dates": "2014-04-08", - "case_names": "Kevin Rowan v. Coves North Homes Association", - "download_urls": "/file.jsp?id=71962", + "case_dates": "2023-09-19", + "case_names": "State of Missouri v. James Eugene Logan", + "download_urls": "/file.jsp?id=201193", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed. Gabbert, P.J. and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76265", - "judges": "Victor C. Howard, Judge", - "case_name_shorts": "" + "dispositions": "Appeal Held in Abeyance and Limited Remand to Circuit Court for Entry of Written Judgment", + "docket_numbers": "WD85830", + "judges": "Gabbert, J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Presiding Judge" }, { - "case_dates": "2014-04-08", - "case_names": "Developer Services Corporation v. Triple J. Construction, Inc. Brazin Excavating, Inc.", - "download_urls": "/file.jsp?id=71953", + "case_dates": "2023-09-19", + "case_names": "Aaron M. Malin v. Cole County Prosecuting Attorney", + "download_urls": "/file.jsp?id=201195", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Welsh, C.J., Presiding and Messina, Sp. J., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75051, with, WD75081", - "judges": "Alok Ahuja, Judge", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85703", + "judges": "Pfeiffer, P.J., concur. Ahuja, J., dissents in a separate opinion.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Judge" }, { - "case_dates": "2014-04-01", - "case_names": "The Village at Deer Creek Homeowners Association, Inc. v. Mid-Continent Casualty Company", - "download_urls": "/file.jsp?id=71656", + "case_dates": "2023-09-12", + "case_names": "State of Missouri v. James Eugene Logan", + "download_urls": "/file.jsp?id=200975", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in part, vacated & modified in part. Pfeiffer, JJ., and Mitchell, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76191, WD76192", - "judges": "Cynthia L. Martin, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85831", + "judges": "Gabbert, J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Presiding Judge" }, { - "case_dates": "2014-04-01", - "case_names": "State of Missouri v. Kathryn Avent", - "download_urls": "/file.jsp?id=71658", + "case_dates": "2023-09-12", + "case_names": "State of Missouri ex. rel., DKM Enterprises, LLC v. Honorable Stacey Lett, In Her Official Capacity as Circuit Judge, Circuit Court of Cass County", + "download_urls": "/file.jsp?id=200976", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Howard, JJ., concurs Pfeiffer, JJ., dissents in a separate opinion", - "divisions": "Western Dist.", - "docket_numbers": "WD76395", - "judges": "Joseph M. Ellis, Judge", - "case_name_shorts": "" + "dispositions": "Preliminary Writ of Prohibition Made Permanent", + "docket_numbers": "WD86384", + "judges": "Sutton, P.J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Judge" }, { - "case_dates": "2014-04-01", - "case_names": "State of Missouri v. Daniel A. Ivey", - "download_urls": "/file.jsp?id=71654", + "case_dates": "2023-09-12", + "case_names": "City of Kansas City, Missouri v. Occupational Health Centers of the Southwest, P.C., d/b/a Concentra Medical Centers", + "download_urls": "/file.jsp?id=200974", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Pfeiffer, JJ., and Mitchell, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75850", - "judges": "Cynthia L. Martin, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85602", + "judges": "Mitchell, J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Presiding Judge" }, { - "case_dates": "2014-04-01", - "case_names": "Greg White v. Cole county, Missouri", - "download_urls": "/file.jsp?id=71657", + "case_dates": "2023-09-05", + "case_names": "In Re: The Matter Of: D.H.C v. Juvenile officer", + "download_urls": "/file.jsp?id=200593", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Hardwick, JJ., and Ahuja, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76321", - "judges": "Gary D. Witt, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded for Further Proceedings", + "docket_numbers": "WD85324", + "judges": "Mitchell, J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Presiding Judge" }, { - "case_dates": "2014-04-01", - "case_names": "Greg Hall v. Lowell Fox and Gina Fox", - "download_urls": "/file.jsp?id=71655", + "case_dates": "2023-08-29", + "case_names": "State of Missouri, Ex Rel., Jeffrey K. Basinger v. John R. Ashcroft in his official capacity as Missouri Secretary of State", + "download_urls": "/file.jsp?id=200358", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Howard, JJ., Fischer, SpJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76147", - "judges": "Anthony Rex Gabbert, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85857", + "judges": "Chapman, J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Presiding Judge" }, { - "case_dates": "2014-03-25", - "case_names": "Troy Marlin Hill v. Director of Revenue", - "download_urls": "/file.jsp?id=71437", + "case_dates": "2023-08-29", + "case_names": "State of Missouri, Ex Rel., Jeff Peters and John Newman v. Scott Fitzpatrick, Treasurer, State of Missouri and Colleen Joern Vetter, Director of the Missouri Division of Workers' Compensation", + "download_urls": "/file.jsp?id=200357", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Pfeiffer, JJ. and Mitchell, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76689", - "judges": "Cynthia L. Martin, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed in part, Reversed in part", + "docket_numbers": "WD85719_and_WD85777", + "judges": "Writ of Mandamus is Quashed. Thomson, P.J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "Thomas N. Chapman, Judge" }, { - "case_dates": "2014-03-25", - "case_names": "Taqwa Thompson v. State of Missouri", - "download_urls": "/file.jsp?id=71433", + "case_dates": "2023-08-29", + "case_names": "State of Missouri v. Andrew P. Minnick", + "download_urls": "/file.jsp?id=200356", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Gabbert, P.J. and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75688", - "judges": "Victor C. Howard, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85943", + "judges": "Witt, P.J., and Gabbert, J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" }, { - "case_dates": "2014-03-25", - "case_names": "State of Missouri v. Chane Nutt", - "download_urls": "/file.jsp?id=71434", + "case_dates": "2023-08-29", + "case_names": "James F. Herrmann v. Division of Employment Security", + "download_urls": "/file.jsp?id=200354", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded. Gabbert, P.J. and Howard, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75765", - "judges": "Thomas H. Newton, Judge", - "case_name_shorts": "" + "dispositions": "Appeal Dismissed", + "docket_numbers": "WD85823", + "judges": "Ahuja, J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Karen King Mitchell, Presiding Judge" }, { - "case_dates": "2014-03-25", - "case_names": "MacKenzie Sheridan v. Division of Employment Security", - "download_urls": "/file.jsp?id=71435", + "case_dates": "2023-08-29", + "case_names": "Jabyn Micheaux v. State of Missouri", + "download_urls": "/file.jsp?id=200355", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded. Hardwick, JJ. and Ahuja, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76046, WD76387, WD76388", - "judges": "Gary D. Witt, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85462", + "judges": "Witt, P.J., and Weir, Sp.J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" }, { - "case_dates": "2014-03-25", - "case_names": "AG Processing, Inc. v. KCP&L Greater Missouri Operations Company Missouri Public Service Commission Triumph Foods, LLC", - "download_urls": "/file.jsp?id=71436", + "case_dates": "2023-08-29", + "case_names": "Brooklyn Roe v. Darden Restaurants, INC.", + "download_urls": "/file.jsp?id=200359", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Dismissed. Witt, P.J. and Ahuja, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76353", - "judges": "Lisa White Hardwick, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD86109", + "judges": "Thomson, P.J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Janet Sutton, Judge" }, { - "case_dates": "2014-03-18", - "case_names": "Craig Herrington v. Medevac Medical Response, Inc.", - "download_urls": "/file.jsp?id=72915", + "case_dates": "2023-08-29", + "case_names": "Brenda L. Jackson v. Missouri State Board of Nursing", + "download_urls": "/file.jsp?id=200353", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Gabbert, P.J. and Howard, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75618", - "judges": "Thomas H. Newton, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85431", + "judges": "Witt, P.J., and Gabbert, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" }, { - "case_dates": "2014-03-11", - "case_names": "Tylicee S. Greene v. Alliance Automotive, Inc. D/B/A JD Byrider and AutoBanc-2 Corporation D/B/A CNAC", - "download_urls": "/file.jsp?id=70873", + "case_dates": "2023-08-22", + "case_names": "State of Missouri v. Jeffery E. Morgan", + "download_urls": "/file.jsp?id=198753", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Howard, P.J. and Ellis, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75863", - "judges": "Anthony Rex Gabbert, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD84845", + "judges": "Witt, P.J., and Gabbert, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" }, { - "case_dates": "2014-03-11", - "case_names": "Tricia Barron v. Division of Employment Security", - "download_urls": "/file.jsp?id=70874", + "case_dates": "2023-08-22", + "case_names": "In the Interest of: K.R. & C.R., Juveniles J.P. & D.P. v. S.R. & T.R.", + "download_urls": "/file.jsp?id=198754", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded. Witt, P.J. and Hardwick, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75934", - "judges": "Alok Ahuja, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85969", + "judges": "Witt, P.J., and Pfeiffer, J., concur.", + "case_name_shorts": "", + "authors": "Anthony Rex Gabbert, Judge" }, { - "case_dates": "2014-03-11", - "case_names": "The Salvation Army, Kansas and Western Missouri Division v. Bank of America", - "download_urls": "/file.jsp?id=70877", + "case_dates": "2023-08-22", + "case_names": "In Re The Adoption of: K.L.C.B. J.A.S. and C.S. v. D.L.B.", + "download_urls": "/file.jsp?id=198756", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Martin, P.J. and Mitchell, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76464", - "judges": "Mark D. Pfeiffer, Judge", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85559", + "judges": "Thomson, J., and Sutton, J., concur.", + "case_name_shorts": "D.L.B.", + "authors": "Thomas N. Chapman, Presiding Judge" }, { - "case_dates": "2014-03-11", - "case_names": "State of Missouri v. Nelson E. Hopkins", - "download_urls": "/file.jsp?id=70876", + "case_dates": "2023-08-22", + "case_names": "IN the Matter of Evergy Metro, INC., d/b/a Evergy Missouri Metro's Request for Authority to Implement a General Rate Increase for Electric Service Missouri Public Service Commission v. Office of Public Counsel", + "download_urls": "/file.jsp?id=198755", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Dismissed. Martin, P.J. and Pfeiffer, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76128", - "judges": "Karen King Mitchell, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD86023", + "judges": "Witt, P.J., and Pfeiffer, J., concur.", + "case_name_shorts": "", + "authors": "Anthony Rex Gabbert, Judge" }, { - "case_dates": "2014-03-11", - "case_names": "Rex A. Sinquefield and Travis Brown v. Todd J. Jones and Missouri Roundtable for Life", - "download_urls": "/file.jsp?id=70878", + "case_dates": "2023-08-15", + "case_names": "State of Missouri v. Brenda L. Ivy", + "download_urls": "/file.jsp?id=198433", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded. Welsh, C.J. and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD77056", - "judges": "Victor C. Howard, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85259", + "judges": "Witt, P.J., and Otto, S.J., concur.", + "case_name_shorts": "", + "authors": "Lisa White Hardwick, Judge" }, { - "case_dates": "2014-03-11", - "case_names": "John Doe B.P. v. Catholic Diocese of Kansas City-St. Joseph", - "download_urls": "/file.jsp?id=71333", + "case_dates": "2023-08-15", + "case_names": "Shawn H. Flaherty v. State of Missouri", + "download_urls": "/file.jsp?id=198434", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Welsh, P.J., and Harman, Sp. J., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76155", - "judges": "Joseph M. Ellis, Judge", - "case_name_shorts": "" + "dispositions": "Reversed, Convictions Vacated, and New Trial Ordered", + "docket_numbers": "WD85542", + "judges": "Mitchell, J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Presiding Judge" }, { - "case_dates": "2014-03-04", - "case_names": "State of Missouri v. Joseph B. Sprofera", - "download_urls": "/file.jsp?id=70674", + "case_dates": "2023-08-15", + "case_names": "Lawrence L. Ciesemier v. Directory of Department of Public Safety", + "download_urls": "/file.jsp?id=198437", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in part, reversed & remanded in part. Welsh, C.J., and Witt, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75698", - "judges": "Joseph M. Ellis,Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85770", + "judges": "Gabbert, J., and Pfeiffer, J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" }, { - "case_dates": "2014-03-04", - "case_names": "Kenneth G. Middleton v. State of Missouri", - "download_urls": "/file.jsp?id=70673", + "case_dates": "2023-08-15", + "case_names": "Joseph Evan Dunbar v. Director of Revenue", + "download_urls": "/file.jsp?id=198438", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Ahuja, P.J., and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75669", - "judges": "Anthony Rex Gabbert, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85727", + "judges": "Witt, P.J., and Hamner, S.J., concur.", + "case_name_shorts": "", + "authors": "Janet Sutton, Judge" }, { - "case_dates": "2014-03-04", - "case_names": "Juvenile Officer W.J., S.C. and C.M. v. A.S.M. (Mother)", - "download_urls": "/file.jsp?id=70675", + "case_dates": "2023-08-15", + "case_names": "In the Interest of: A.M.R., R.H.H. III, and H.H. Juvenile Officer and Guardian Ad Litem v. J.M.", + "download_urls": "/file.jsp?id=198435", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Pfeiffer, JJ., and Mitchell, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76303", - "judges": "Cynthia L. Martin, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85850_and_ WD85858", + "judges": "Ahuja, P.J., and Ardini, Jr., concur.", + "case_name_shorts": "J.M.", + "authors": "Karen King Mitchell, Judge" }, { - "case_dates": "2014-03-04", - "case_names": "In the Interest of: T.J.P., Jr. Juvenile Officer v. T.L. (Mother)", - "download_urls": "/file.jsp?id=72865", + "case_dates": "2023-08-15", + "case_names": "In The Matter of L.T.", + "download_urls": "/file.jsp?id=198513", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Martin, P.J. and Pfeiffer, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76551", - "judges": "Karen King Mitchell, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD86405", + "judges": "Chapman, J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Presiding Judge" }, { - "case_dates": "2014-03-04", - "case_names": "Charles Rademan v. Al Scheppers Motor Company and Division of Employment Security", - "download_urls": "/file.jsp?id=70677", + "case_dates": "2023-08-15", + "case_names": "Carter Andrew Kinkead v. Director of Revenue", + "download_urls": "/file.jsp?id=198436", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Dismissed. Howard, JJ., and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76396", - "judges": "Anthony Rex Gabbert, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85506", + "judges": "Sutton, J., and Hamner, S.J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" }, { - "case_dates": "2014-03-04", - "case_names": "C.I.A. v. T.E.", - "download_urls": "/file.jsp?id=70676", + "case_dates": "2023-08-08", + "case_names": "Ray Johnson v. State of Missouri", + "download_urls": "/file.jsp?id=198273", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Dismissed as moot. Gabbert, P.J., and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76381", - "judges": "Victor c. Howard, Judge", - "case_name_shorts": "T.E." + "dispositions": "Affirmed", + "docket_numbers": "WD85293", + "judges": "Hardwick, J., and Thomson, J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" }, { - "case_dates": "2014-02-25", - "case_names": "State of Missouri v. Trent L. Williams", - "download_urls": "/file.jsp?id=70453", + "case_dates": "2023-08-01", + "case_names": "State of Missouri v. Kylr Charles Yust", + "download_urls": "/file.jsp?id=198017", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed in part, reversed in part & remanded. Martin, P.J., and Mitchell, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD74285", - "judges": "Mark D. Pfeiffer, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD84633", + "judges": "Martin, J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Presiding Judge" }, { - "case_dates": "2014-02-25", - "case_names": "State of Missouri v. Maura Celis-Garcia", - "download_urls": "/file.jsp?id=70455", + "case_dates": "2023-08-01", + "case_names": "State of Missouri v. Joseph Duane Elledge", + "download_urls": "/file.jsp?id=198016", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Hardwick, JJ., and Ahuja, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75582", - "judges": "Gary Witt, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85109", + "judges": "Ahuja, P.J., and Gabbert, J., concur.", + "case_name_shorts": "", + "authors": "Thomas N. Chapman, Judge" }, { - "case_dates": "2014-02-25", - "case_names": "Jenn Baier v. Darden Restaurants", - "download_urls": "/file.jsp?id=70456", + "case_dates": "2023-08-01", + "case_names": "State of Missouri v. Antwoine R. King", + "download_urls": "/file.jsp?id=198014", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Witt, JJ., and Fischer, Sp. J., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76584", - "judges": "Cynthia L. Martin, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85149", + "judges": "Gabbert, P.J., and Hardwick, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" }, { - "case_dates": "2014-02-25", - "case_names": "City of Harrisonville v. McCall Service Stations d/b/a Big Tank Oil The Missouri Petroleum Storage Tank Insurance Func", - "download_urls": "/file.jsp?id=70454", + "case_dates": "2023-08-01", + "case_names": "In the matter of the petition of the Empire District Electric Company d/b/a Liberty to obtain a Financing Order that Authorizes the Issuance of Securitized Utility Tariff Bonds for Qualified Extraordinary Costs and In the matter of the Petition of the Empire District Electric Company d/b/a Liberty to Obtain a Financing Order that Authorizes the Issuance of Securitized Utility Tariff Bonds for Energy Transition Costs Related to the Asbury Plant Empire District Electric Company d/b/a Liberty Office Public Counsel v. Public Service Commission of the State of Missouri", + "download_urls": "/file.jsp?id=198013", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed as modified. Pfeiffer, JJ., and Gabbert, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD74429", - "judges": "Alok Ahuja, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85800", + "judges": "Gabbert, P.J., and Pfeiffer, J., concur.", + "case_name_shorts": "", + "authors": "Lisa White Hardwick, Judge" }, { - "case_dates": "2014-02-18", - "case_names": "State of Missouri v. Antonio West", - "download_urls": "/file.jsp?id=70153", + "case_dates": "2023-08-01", + "case_names": "Andrea E. Stockman v. Brian G. Schmidt", + "download_urls": "/file.jsp?id=198015", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Martin, P.J., and Fischer, Sp. J.,, concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75335", - "judges": "Gary D. Witt, Judge", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85691", + "judges": "Ahuja, P.J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Anthony Rex Gabbert, Judge" }, { - "case_dates": "2014-02-18", - "case_names": "Jay Wolfe Used Cars of Blue Springs, LLC D/B/A Jay Wolfe Auto Outlet v. Tyrell C. Jackson and Liane K. Jackson, on Their Own Behalf and on Behalf of All Others Similarly Situated", - "download_urls": "/file.jsp?id=70154", + "case_dates": "2023-07-25", + "case_names": "William H. Drewel v. Missouri State Highway Patrol and Cole County Sheriff John P. Wheeler", + "download_urls": "/file.jsp?id=197833", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Witt, JJ., and Fischer, Sp. J., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76644", - "judges": "Cynthia L. Martin, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Reversed", + "docket_numbers": "WD85246_and_WD85269", + "judges": "Gabbert, P.J., and Hardwick, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" }, { - "case_dates": "2014-02-04", - "case_names": "Tracy Gunn v. Division of Employment Security", - "download_urls": "/file.jsp?id=69776", + "case_dates": "2023-07-25", + "case_names": "Timothy S. Kelley v. State of Missouri", + "download_urls": "/file.jsp?id=197838", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Ahuja, P.J., and Gabbert, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76383", - "judges": "Thomas H. Newton, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85606", + "judges": "Thomson, P.J., and Martin, J., concur.", + "case_name_shorts": "", + "authors": "Thomas N. Chapman, Judge" }, { - "case_dates": "2014-02-04", - "case_names": "Shana Medley v. Division of Employment Security", - "download_urls": "/file.jsp?id=69774", + "case_dates": "2023-07-25", + "case_names": "Payton Chiann Comer v. Director of Revenue, State of Missouri", + "download_urls": "/file.jsp?id=197834", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Dismissed. Howard, JJ., and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76197", - "judges": "Anthony Rex Gabbert, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85493", + "judges": "Thomson, P.J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" }, { - "case_dates": "2014-02-04", - "case_names": "Michael W. Schlax v. State of Missouri", - "download_urls": "/file.jsp?id=69773", + "case_dates": "2023-07-25", + "case_names": "Ken Auman v. Janiece Richard", + "download_urls": "/file.jsp?id=197837", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Witt, P.J., and Ahuja, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75874", - "judges": "Lisa White Hardwick, Judge", - "case_name_shorts": "" + "dispositions": "Dismissed", + "docket_numbers": "WD85461", + "judges": "Mitchell, J., and Ahuja, J., concur.", + "case_name_shorts": "", + "authors": "Edward R. Ardini, Jr., Judge" }, { - "case_dates": "2014-02-04", - "case_names": "Dawn Stewart v. Division of Employment Security", - "download_urls": "/file.jsp?id=69775", + "case_dates": "2023-07-25", + "case_names": "John Kirby v. State of Missouri", + "download_urls": "/file.jsp?id=197836", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded. Ahuja, P.J., and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76338", - "judges": "Anthony Rex Gabbert, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85425", + "judges": "Hardwick, J., and Thomson, J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" }, { - "case_dates": "2014-01-28", - "case_names": "Joseph Sanders v. Division of Employment Security", - "download_urls": "/file.jsp?id=69573", + "case_dates": "2023-07-25", + "case_names": "In Re The Matter Of: Y.R.H. by and through her next friend J.N.H. v. M.J.S.", + "download_urls": "/file.jsp?id=197835", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Pfeiffer, JJ. and Mitchell, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76105", - "judges": "Cynthia L. Martin, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85773", + "judges": "Thomson, P.J., and Chapman, J., concur.", + "case_name_shorts": "M.J.S.", + "authors": "Cynthia L. Martin, Judge" }, { - "case_dates": "2014-01-28", - "case_names": "In the Matter of Kansas City Power & Light Company's Request for Authority to Implement a General Rate Increase for Electric Service v. Midwest Energy Consumers Group Office of Public Counsel Missouri Public Service Commission Dogwood Energy, Inc. Union Electric D/B/A Ameren Missouri", - "download_urls": "/file.jsp?id=69574", + "case_dates": "2023-07-25", + "case_names": "Daniel Starcher v. Division of Employment Security", + "download_urls": "/file.jsp?id=197839", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Dismissed. Newton, P.J. and Gabbert, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76164, WD76165", - "judges": "Anthony Rex Gabbert, Judge", - "case_name_shorts": "" + "dispositions": "Dismissed", + "docket_numbers": "WD85952_WD85953_WD85954_WD85955_WD85956", + "judges": "Thomson, P.J., and Martin, J., concur.", + "case_name_shorts": "", + "authors": "Thomas N. Chapman, Judge" }, { - "case_dates": "2014-01-28", - "case_names": "Darnay Session v. Director of Revenue", - "download_urls": "/file.jsp?id=69576", + "case_dates": "2023-07-18", + "case_names": "In the Interest of: C.R.B. v. Juvenile Officer", + "download_urls": "/file.jsp?id=197501", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Ahuja, P.J. and Newton, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76415", - "judges": "Anthony Rex Gabbert, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85433", + "judges": "Hardwick, J., and Otto, S.J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" }, { - "case_dates": "2014-01-28", - "case_names": "Blythe M. Groff v. Robert M. Groff", - "download_urls": "/file.jsp?id=69575", + "case_dates": "2023-07-18", + "case_names": "Erick E. Beckett v. State of Missouri", + "download_urls": "/file.jsp?id=197500", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Dismissed as moot. Ahuja, P.J. and Gabbert, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76174", - "judges": "Thomas H. Newton, Judge", - "case_name_shorts": "" + "dispositions": "Reversed the Judgment of the Motion Court, Vacated the Conviction and Sentence, and Remanded for a New Trail", + "docket_numbers": "WD85222", + "judges": "Hardwick, J., and Harrel, S.J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" }, { - "case_dates": "2014-01-21", - "case_names": "Terrance Robinson v. State of Missouri", - "download_urls": "/file.jsp?id=69305", + "case_dates": "2023-07-18", + "case_names": "All Star Awards & AD Specialties, INC. v. Halo Branded Solutions", + "download_urls": "/file.jsp?id=197499", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Vacated in part & remanded. Pfeiffer, P.J., and Howard, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75283", - "judges": "Joseph M. Ellis,Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85491", + "judges": "Gabbert, J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Presiding Judge" }, { - "case_dates": "2014-01-21", - "case_names": "Shawn Stevens v. Markirk Construction, Inc. Kirk Jones and Damar Development, Inc.", - "download_urls": "/file.jsp?id=69306", + "case_dates": "2023-07-05", + "case_names": "Shannon Maxwell v. Division of Employment Security", + "download_urls": "/file.jsp?id=197074", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded. Mitchell, P.J., and Witt, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75532", - "judges": "Lisa White Hardwick, Judge", - "case_name_shorts": "" + "dispositions": "Dismissed", + "docket_numbers": "WD85874", + "judges": "Pfeiffer, P.J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Judge" }, { - "case_dates": "2014-01-21", - "case_names": "Adam Dutton v. American Family Mutual Insurance Company", - "download_urls": "/file.jsp?id=69339", + "case_dates": "2023-07-05", + "case_names": "Angela Lewis v. Dennis Lewis and Deborah Lewis", + "download_urls": "/file.jsp?id=197073", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed. Ellis, JJ., Howard, JJ., Newton JJ., Pfeiffer., JJ Gabbert. JJ.,Concur, Dissenting Opinion by Judge Ahuja., Joined by Welsh, CJ., Hardwick, JJ., Mitchell, JJ., Dissenting Opinion by Judge Martin, Joined by Welsh, CJ., Hardwick, JJ., Ahuja, JJ., Mitchell, JJ", - "divisions": "Western Dist.", - "docket_numbers": "WD74940", - "judges": "Gary D. Witt, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85395", + "judges": "Ahuja, J., and Thomson, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Presiding Judge" }, { - "case_dates": "2014-01-14", - "case_names": "State of Missouri v. Hector C. Castro", - "download_urls": "/file.jsp?id=69193", + "case_dates": "2023-06-27", + "case_names": "Thu Hong Nguyen v. State of Missouri", + "download_urls": "/file.jsp?id=196859", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Dismissed as moot. Mitchell, P.J. and Hardwick, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD75878", - "judges": "Gary D. Witt, Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85341", + "judges": "Sutton, P.J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" }, { - "case_dates": "2014-01-14", - "case_names": "In The Matter of The Application of Laclede Gas Company D/B/A Missouri Gas Energy, For Approval to Change its Infrastructure System Replacement Surcharge Public Service Commission of The State of Missouri v. The Office of Public Counsel", - "download_urls": "/file.jsp?id=69197", + "case_dates": "2023-06-27", + "case_names": "State of Missouri v. Tyesha Lynette Peck", + "download_urls": "/file.jsp?id=196862", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Martin, JJ. and Robb, Sp. J., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76509", - "judges": "James Edward Welsh, Chief Judge Presiding", - "case_name_shorts": "" + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85256", + "judges": "Martin, J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Janet Sutton, Presiding Judge" }, { - "case_dates": "2014-01-14", - "case_names": "In The Matter of Foreclosure of Liens for Delinquent Land Taaxes By Action in Rem: Collector of Revenue, by and Through The Director of Collections for Jackson County, Missouri v. Terry Holton, Christina McIntosh", - "download_urls": "/file.jsp?id=69196", + "case_dates": "2023-06-27", + "case_names": "State of Missouri v. Timothy R. Fernandez", + "download_urls": "/file.jsp?id=196853", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed with directions. Hardwick, JJ. and Witt, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76280", - "judges": "Karen King Mitchell, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85536", + "judges": "Mitchell, J., and Thomson, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Presiding Judge" }, { - "case_dates": "2014-01-14", - "case_names": "Gary Scott v. Treasurer of The State of Missouri-Custodian of The Second Injury Fund", - "download_urls": "/file.jsp?id=69198", + "case_dates": "2023-06-27", + "case_names": "State of Missouri v. Rocky L. Coyle", + "download_urls": "/file.jsp?id=196857", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded. Ellis, JJ. and Howard, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76602, amd, WD76603", - "judges": "Mark D. Pfeiffer, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85186", + "judges": "Sutton, P.J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" }, { - "case_dates": "2014-01-14", - "case_names": "Federal National Mortgage Association and Nationstar Mortgage, LLC v. Jeffrey A. Conover", - "download_urls": "/file.jsp?id=69195", + "case_dates": "2023-06-27", + "case_names": "State of Missouri v. Robert A. Woolery", + "download_urls": "/file.jsp?id=197862", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Reversed & remanded. Ellis, JJ. and Howard, JJ., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76276, WD76347", - "judges": "Mark D. Pfeiffer, Presiding Judge", - "case_name_shorts": "" + "dispositions": "Affirmed", + "docket_numbers": "WD85530", + "judges": "Thomson, P.J., and Hardwick, J,. concur.", + "case_name_shorts": "", + "authors": "Karen King Mitchell, Judge" }, { - "case_dates": "2014-01-14", - "case_names": "City of North Kansas City, Missouri v. K.C. Beaton Holding Company, LLC Platte Valley Bank of Missouri and Keith Hicklin", - "download_urls": "/file.jsp?id=69194", + "case_dates": "2023-06-27", + "case_names": "R.M. v. Tre L. King", + "download_urls": "/file.jsp?id=196863", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "dispositions": "Affirmed. Cross Appeal dismissed. Martin, JJ. and robb, Sp. J., concur", - "divisions": "Western Dist.", - "docket_numbers": "WD76068, &, WD76110", - "judges": "James E. Welsh, Chief Judge", - "case_name_shorts": "" + "dispositions": "Appeal Dismissed", + "docket_numbers": "WD85539", + "judges": "Martin, J., and Ardini, Jr., J., concur.", + "case_name_shorts": "R.M.", + "authors": "Janet Sutton, Presiding Judge" + }, + { + "case_dates": "2023-06-27", + "case_names": "Marlayna Kenney v. Kailey K. Myers", + "download_urls": "/file.jsp?id=196856", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85014", + "judges": "Sutton, P.J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" + }, + { + "case_dates": "2023-06-27", + "case_names": "Maria-Fernanda Fast v. Division of Employment Security", + "download_urls": "/file.jsp?id=196855", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Appeal Dismissed", + "docket_numbers": "WD85872", + "judges": "Pfeiffer, P.J., and Thomson, J., concur.", + "case_name_shorts": "", + "authors": "Karen King Mitchell, Judge" + }, + { + "case_dates": "2023-06-27", + "case_names": "Joseph T. Sousley v. State of Missouri", + "download_urls": "/file.jsp?id=196861", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85175", + "judges": "Ahuja, P.J., and Gabbert, J., concur.", + "case_name_shorts": "", + "authors": "Thomas N. Chapman, Judge" + }, + { + "case_dates": "2023-06-27", + "case_names": "Charles E. Copper Jr. and Anita J. Copper v. Minter D. Ringen and Diane E. Ringen, As Co-Trustees of the Minter D. Ringen and Diane E. Ringen Family Trust, U/A Dated March 25, 2021", + "download_urls": "/file.jsp?id=196860", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85620", + "judges": "Sutton, P.J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" + }, + { + "case_dates": "2023-06-27", + "case_names": "Andrew Shores v. State of Missouri", + "download_urls": "/file.jsp?id=196858", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85314", + "judges": "Pfeiffer, P.J., and Thomson, J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" + }, + { + "case_dates": "2023-06-20", + "case_names": "Timothy Davis v. State of Missouri", + "download_urls": "/file.jsp?id=196773", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Remanded", + "docket_numbers": "WD85335", + "judges": "Ahuja, P.J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Anthony Rex Gabbert, Judge" + }, + { + "case_dates": "2023-06-20", + "case_names": "Kyle Odermann and Audrey Odermann v. Gerald Mancuso, Desarae G. Harrah and Harrah Law, LLC", + "download_urls": "/file.jsp?id=196775", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Judgment Entered", + "docket_numbers": "WD85561 and WD85607", + "judges": "Martin, J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Janet Sutton, Presiding Judge" + }, + { + "case_dates": "2023-06-20", + "case_names": "David Steele v. Johnson Controls, Inc.", + "download_urls": "/file.jsp?id=196774", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85681 and WD85863", + "judges": "Sutton, P.J., and Martin, J., concur.", + "case_name_shorts": "", + "authors": "Edward R. Ardini, Jr., Judge" + }, + { + "case_dates": "2023-05-30", + "case_names": "Susan Miller v. Division of Employment Security", + "download_urls": "/file.jsp?id=195895", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85582", + "judges": "Sutton, P.J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" + }, + { + "case_dates": "2023-05-30", + "case_names": "Linda Rinehart v. Missouri Department of Corrections", + "download_urls": "/file.jsp?id=195894", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85112", + "judges": "Mitchell, J., and Thomson, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Presiding Judge" + }, + { + "case_dates": "2023-05-30", + "case_names": "City of Clinton v. Robert Dahman", + "download_urls": "/file.jsp?id=195893", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85780", + "judges": "Gabbert, J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Presiding Judge" + }, + { + "case_dates": "2023-05-23", + "case_names": "Timothy W. Johnes v. Division of Employment Security", + "download_urls": "/file.jsp?id=195659", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded for a hearing on the merits", + "docket_numbers": "WD85570", + "judges": "Pfeiffer, J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" + }, + { + "case_dates": "2023-05-23", + "case_names": "Shelter Insurance Company v. John W. Long", + "download_urls": "/file.jsp?id=195661", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85564", + "judges": "Ahuja, P.J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Anthony Rex Gabbert, Judge" + }, + { + "case_dates": "2023-05-23", + "case_names": "Save-A-Connie, INC., d/b/a Airline History Museum v. Executive Beechcraft, INC. and the City of Kansas City, Missouri", + "download_urls": "/file.jsp?id=195660", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85355", + "judges": "Ahuja, P.J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Anthony Rex Gabbert, Judge" + }, + { + "case_dates": "2023-05-23", + "case_names": "Jordan Wood v. Criminal Records Repository", + "download_urls": "/file.jsp?id=195662", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85024", + "judges": "Ahuja, J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Presiding Judge" + }, + { + "case_dates": "2023-05-23", + "case_names": "Jessica Lynne Johnson, n/k/a Jessica L. Gould v. Isaiah Ben Johnson", + "download_urls": "/file.jsp?id=195663", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Dismissed", + "docket_numbers": "WD85534", + "judges": "Gabbert, P.J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Judge" + }, + { + "case_dates": "2023-05-16", + "case_names": "Vicky Church, Sarah Austin and Jacob Church, on behalf of all Beneficiaries v. CNH Industrial America, LLC", + "download_urls": "/file.jsp?id=195377", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in part, Reversed in part, and Modified", + "docket_numbers": "WD85103", + "judges": "Sutton, P.J., and Martin, J., concur.", + "case_name_shorts": "", + "authors": "Edward R. Ardini, Jr., Judge" + }, + { + "case_dates": "2023-05-16", + "case_names": "State of Missouri v. Chukwuemeka U. Emmanuel", + "download_urls": "/file.jsp?id=195374", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85165", + "judges": "Thomson, P.J., and Hardwick, J., concur.", + "case_name_shorts": "", + "authors": "Karen King Mitchell, Judge" + }, + { + "case_dates": "2023-05-16", + "case_names": "Pendragon Properties, LLC. v. Latanya Haywood", + "download_urls": "/file.jsp?id=195373", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Appeal Dismissed", + "docket_numbers": "WD85365", + "judges": "Thomson, P.J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Lisa White Hardwick, Judge" + }, + { + "case_dates": "2023-05-16", + "case_names": "Heather (McCubbins) Pickett v. Michael Bostwick", + "download_urls": "/file.jsp?id=195378", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Appeal Dismissed", + "docket_numbers": "WD85528", + "judges": "Martin, J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Janet Sutton, Presiding Judge" + }, + { + "case_dates": "2023-05-16", + "case_names": "City of Skidmore, Missouri v. Rickie L. Stanton", + "download_urls": "/file.jsp?id=195375", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in part Reversed in part", + "docket_numbers": "WD85487", + "judges": "Ardini, Jr., P.J., and Hardwick, J., concur.", + "case_name_shorts": "", + "authors": "Karen King Mitchell, Judge" + }, + { + "case_dates": "2023-05-16", + "case_names": "Aaron M. Malin v. Missouri Association of Community Task Forces (d/b/a/ ACT Missouri)", + "download_urls": "/file.jsp?id=195376", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85453", + "judges": "Sutton, P.J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" + }, + { + "case_dates": "2023-05-09", + "case_names": "State of Missouri, ex rel., Dale J. Meller and Elaine Meller, and Ashley Farm Services, LLC v. The Honorable Jon E. Beetem, Judge of the Circuit Court of Cole County, Missouri", + "download_urls": "/file.jsp?id=195197", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Preliminary Writ Made Permanent", + "docket_numbers": "WD85870", + "judges": "Hardwick, J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Presiding Judge" + }, + { + "case_dates": "2023-05-09", + "case_names": "State of Missouri v. Roger D. Iman", + "download_urls": "/file.jsp?id=195194", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85141", + "judges": "Witt, P.J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" + }, + { + "case_dates": "2023-05-09", + "case_names": "Knockerball Midmo, LLC v. McGowan & Company, INC. d/b/a McGowan Excess & Casualty", + "download_urls": "/file.jsp?id=195195", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85458", + "judges": "Witt, P.J., and Gebhardt, S.J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" + }, + { + "case_dates": "2023-05-09", + "case_names": "David Kubiak v. Missouri State Board of Nursing", + "download_urls": "/file.jsp?id=195196", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed the Circuit Court's Judgment Reversing the Board's Order", + "docket_numbers": "WD85529", + "judges": "Pfeiffer, J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" + }, + { + "case_dates": "2023-05-02", + "case_names": "Sylvia Pride v. Boone County Sheriff's Department and Diana O'Neill", + "download_urls": "/file.jsp?id=195014", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85605", + "judges": "Witt, P.J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" + }, + { + "case_dates": "2023-05-02", + "case_names": "State of Missouri v. Joseph C. Griest", + "download_urls": "/file.jsp?id=195018", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85179", + "judges": "Hardwick, J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Presiding Judge" + }, + { + "case_dates": "2023-05-02", + "case_names": "Nathan Canfield v. State of Missouri", + "download_urls": "/file.jsp?id=195015", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD84989", + "judges": "Ahuja, J., and Hardwick, J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" + }, + { + "case_dates": "2023-05-02", + "case_names": "Mark C. Brandolese v. State of Missouri", + "download_urls": "/file.jsp?id=195016", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85169", + "judges": "Pfeiffer, J., and Gebhardt, J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" + }, + { + "case_dates": "2023-05-02", + "case_names": "Greg Halderman v. City of Sturgeon, Missouri and Tyler Patterson", + "download_urls": "/file.jsp?id=195013", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in part, Reversed in part, and Remanded for a Determination of Attorney's Fees", + "docket_numbers": "WD85066", + "judges": "Witt, P.J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Judge" + }, + { + "case_dates": "2023-05-02", + "case_names": "Emanuel Matthews v. Harley Davidson", + "download_urls": "/file.jsp?id=195017", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded for Further Proceedings", + "docket_numbers": "WD85267", + "judges": "Gabbert, P.J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Judge" + }, + { + "case_dates": "2023-04-25", + "case_names": "In the Interest of: D.J.T.S. v. Juvenile Officer", + "download_urls": "/file.jsp?id=195733", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85142", + "judges": "Thomson, P.J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Lisa White Hardwick, Judge" + }, + { + "case_dates": "2023-04-25", + "case_names": "Donald Nussbaum v. State of Missouri", + "download_urls": "/file.jsp?id=194821", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85400", + "judges": "Martin, J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Janet Sutton, Presiding Judge" + }, + { + "case_dates": "2023-04-25", + "case_names": "David Seymour v. Switzer Tenant LLC", + "download_urls": "/file.jsp?id=194820", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85134 consolidated with WD85157 and WD85166", + "judges": "Martin, J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Janet Sutton, Presiding Judge" + }, + { + "case_dates": "2023-04-18", + "case_names": "Suzanne Steinbach v. Maxion Wheels, Sedalia, LLC, Hayes Lemmerz International", + "download_urls": "/file.jsp?id=194544", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85697", + "judges": "Ahuja, P.J., and Gabbert, J., concur.", + "case_name_shorts": "", + "authors": "Thomas N. Chapman, Judge" + }, + { + "case_dates": "2023-04-18", + "case_names": "State of Missouri v. Justin Andrew Marks", + "download_urls": "/file.jsp?id=194541", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD84927", + "judges": "Ahuja, J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" + }, + { + "case_dates": "2023-04-18", + "case_names": "S.K. v. T.K., M.K., and R.R.", + "download_urls": "/file.jsp?id=194540", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Appeal Dismissed", + "docket_numbers": "WD85701", + "judges": "Sutton, P.J., and Ardini, Jr., J., concur.", + "case_name_shorts": "S.K.", + "authors": "Cynthia L. Martin, Judge" + }, + { + "case_dates": "2023-04-18", + "case_names": "Ramalina Steiner v. Stephanie Stribrny", + "download_urls": "/file.jsp?id=194545", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85649", + "judges": "Hardwick, J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Presiding Judge" + }, + { + "case_dates": "2023-04-18", + "case_names": "Melissa Aldridge v. Devin Martin", + "download_urls": "/file.jsp?id=196014", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85520", + "judges": "Hardwick, J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Edward R. Ardini, Jr., Presiding Judge" + }, + { + "case_dates": "2023-04-18", + "case_names": "Leslie M. Henson, Individually, and As Personal Representative of the Estate of Leslie S. Henson v. Merob Logistics, LLC, and Tedros S. Lakew, and Zurich American Insurance Company", + "download_urls": "/file.jsp?id=194537", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85158", + "judges": "Ardini, Jr., P.J., and Hardwick, J., concur.", + "case_name_shorts": "", + "authors": "Karen King Mitchell, Judge" + }, + { + "case_dates": "2023-04-18", + "case_names": "Kim Huebert v. City of Kansas City", + "download_urls": "/file.jsp?id=194535", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded for Further Proceedings", + "docket_numbers": "WD85737", + "judges": "Gabbert, J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Presiding Judge" + }, + { + "case_dates": "2023-04-18", + "case_names": "Kevin LaBranche v. Kansas City Public Schools", + "download_urls": "/file.jsp?id=194542", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD84914", + "judges": "Thomson, J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "Anthony Rex Gabbert, Presiding Judge" + }, + { + "case_dates": "2023-04-18", + "case_names": "Jefferson City Medical Group, P.C. v. David Brummett", + "download_urls": "/file.jsp?id=194534", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Appeal Dismissed", + "docket_numbers": "WD85467", + "judges": "Gabbert, J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Presiding Judge" + }, + { + "case_dates": "2023-04-18", + "case_names": "Independence School District No. 30 v. county of Jackson, Missouri", + "download_urls": "/file.jsp?id=194538", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed and Remanded for Further Proceedings", + "docket_numbers": "WD85398", + "judges": "Ardini, Jr., P.J., and Hardwick, J., concur.", + "case_name_shorts": "", + "authors": "Karen King Mitchell, Judge" + }, + { + "case_dates": "2023-04-18", + "case_names": "Hui Jun Lin v. Ann Clark, Successor of Hsiao Li Chang Estate", + "download_urls": "/file.jsp?id=194536", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85124", + "judges": "Chapman, P.J., and Martin, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" + }, + { + "case_dates": "2023-04-18", + "case_names": "Four B. Corp. and Harrisonville Marketplace II, LLC v. City of Harrisonville, Missouri Board of Zoning Adjustments", + "download_urls": "/file.jsp?id=194539", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85325", + "judges": "Sutton, P.J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" + }, + { + "case_dates": "2023-04-18", + "case_names": "Colleen Spurlock v. City of Columbia, Missouri", + "download_urls": "/file.jsp?id=194543", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85580", + "judges": "Sutton, P.J., and Martin, J., concur.", + "case_name_shorts": "", + "authors": "Edward R. Ardini, Jr., Judge" + }, + { + "case_dates": "2023-04-18", + "case_names": "Angela Christine Wilson v. Christopher Darnell Wilson", + "download_urls": "/file.jsp?id=194533", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed, In Part, Reversed, In Part, and Remanded", + "docket_numbers": "WD85210", + "judges": "Ardini, Jr., P.J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Lisa White Hardwick, Judge" + }, + { + "case_dates": "2023-04-11", + "case_names": "State of Missouri v. Viola Bowman", + "download_urls": "/file.jsp?id=194294", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85002", + "judges": "Chapman, P.J., and Martin, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" + }, + { + "case_dates": "2023-04-11", + "case_names": "Andrea M. Curns v. Phyllis Akins", + "download_urls": "/file.jsp?id=194295", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85486", + "judges": "Gabbert, P.J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Judge" + }, + { + "case_dates": "2023-04-04", + "case_names": "Willa Hynes v. Missouri Department of Corrections", + "download_urls": "/file.jsp?id=193916", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Dismissed", + "docket_numbers": "WD85329", + "judges": "Witt, Chief Judge, and Ahuja, J., concur.", + "case_name_shorts": "", + "authors": "Janet Sutton, Judge" + }, + { + "case_dates": "2023-04-04", + "case_names": "State of Missouri v. David A. Harris", + "download_urls": "/file.jsp?id=193924", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD84804", + "judges": "Ahuja, J., and Limbaugh, Special J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" + }, + { + "case_dates": "2023-04-04", + "case_names": "Peter Loew and Kathy Loew v. Heartland Trophy Properties, Inc.", + "download_urls": "/file.jsp?id=194253", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in part, reversed in part, and remanded", + "docket_numbers": "WD85343", + "judges": "Witt, Chief Judge., and Ahuja, J., concur.", + "case_name_shorts": "", + "authors": "Janet Sutton, Judge" + }, + { + "case_dates": "2023-04-04", + "case_names": "Joanthony D. Johnson v. State of Missouri", + "download_urls": "/file.jsp?id=193915", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85067", + "judges": "Ahuja, J., and Limbaugh, Special J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" + }, + { + "case_dates": "2023-04-04", + "case_names": "Dane Templeton v. Charles Orth, D.O., and Orthopedic Surgeons, Inc.", + "download_urls": "/file.jsp?id=193918", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in part, reversed in part, and remanded", + "docket_numbers": "WD85405", + "judges": "Martin, J., concurs. Chapman, P.J., dissents in a separate opinion.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" + }, + { + "case_dates": "2023-03-28", + "case_names": "Willie Hampton v. Yvonne A. Llewellyn", + "download_urls": "/file.jsp?id=193594", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD84925", + "judges": "Chapman, P.J., and Martin, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" + }, + { + "case_dates": "2023-03-28", + "case_names": "State of Missouri v. Thomas Eugene Antle", + "download_urls": "/file.jsp?id=193593", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD83333", + "judges": "Pfeiffer, P.J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Judge" + }, + { + "case_dates": "2023-03-28", + "case_names": "State of Missouri v. Kimberly E. Vandervort", + "download_urls": "/file.jsp?id=193600", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed in part and affirmed in part", + "docket_numbers": "WD85748", + "judges": "Ardini, Jr., P.J. and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Lisa White Hardwick, Judge" + }, + { + "case_dates": "2023-03-28", + "case_names": "State of Missouri v. Jaquan D. Whirley", + "download_urls": "/file.jsp?id=193595", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Original judgment reversed, amended judgment vacated, and case remanded for resentencing", + "docket_numbers": "WD85010", + "judges": "Witt, C.J., and Hardwick, J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Judge" + }, + { + "case_dates": "2023-03-28", + "case_names": "In the Interest of: A.R.K. v. Juvenile Officer", + "download_urls": "/file.jsp?id=193597", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85237", + "judges": "Gabbert, P.J., and Thomson, J., concur.", + "case_name_shorts": "", + "authors": "Janet Sutton, Judge" + }, + { + "case_dates": "2023-03-28", + "case_names": "In re: The Matter of J.R.K. v. Juvenile Officer", + "download_urls": "/file.jsp?id=193596", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85143", + "judges": "Ardini, Jr., P.J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Lisa White Hardwick, Judge" + }, + { + "case_dates": "2023-03-28", + "case_names": "Floyd S. Wiedner v. Ferrellgas, Inc.", + "download_urls": "/file.jsp?id=193599", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in part, reversed in part, and remanded", + "docket_numbers": "WD85747", + "judges": "Hardwick, J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Edward R. Ardini, Jr., Presiding Judge" + }, + { + "case_dates": "2023-03-28", + "case_names": "City of Kansas City, Missouri, A Municipal Corporation v. Phillip J. Troyer", + "download_urls": "/file.jsp?id=193598", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85432", + "judges": "Chapman, P.J., and Pfeiffer, J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" + }, + { + "case_dates": "2023-03-21", + "case_names": "Sultany Trucking, LLC and Sultany Farms, LLC v. Missouri Clean Water Commission and Missouri Department of Natural Resources", + "download_urls": "/file.jsp?id=193415", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85445", + "judges": "Chapman, P.J., and Pfeiffer, J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" + }, + { + "case_dates": "2023-03-21", + "case_names": "Mary Crawford and Jason Crawford v. Family Tree, Inc.", + "download_urls": "/file.jsp?id=193416", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85628", + "judges": "Gabbert, P.J., and Thomson, J., concur.", + "case_name_shorts": "", + "authors": "Janet Sutton, Judge" + }, + { + "case_dates": "2023-03-21", + "case_names": "Lakeith R. Courtney v. State of Missouri", + "download_urls": "/file.jsp?id=193414", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85114", + "judges": "Chapman, P.J., and Pfeiffer J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" + }, + { + "case_dates": "2023-03-21", + "case_names": "In Re the Interest of: C.P.B. Juvenile Officer Missouri Department of Social Services, Children's Division v. T.G.B.", + "download_urls": "/file.jsp?id=195135", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85619", + "judges": "Thomson, J., and Sutton, J., concur.", + "case_name_shorts": "T.G.B.", + "authors": "Anthony Rex Gabbert, Presiding Judge" + }, + { + "case_dates": "2023-03-21", + "case_names": "In Re the Interest of: B.G.B. Juvenile Officer Missouri Department of Social Services, Children's Division v. T.G.B.", + "download_urls": "/file.jsp?id=195134", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85618", + "judges": "Thomson, J., and Sutton, J., concur.", + "case_name_shorts": "T.G.B.", + "authors": "Anthony Rex Gabbert, Presiding Judge" + }, + { + "case_dates": "2023-03-21", + "case_names": "Aaron Hecker v. State of Missouri", + "download_urls": "/file.jsp?id=193413", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Vacated and Remanded", + "docket_numbers": "WD84950", + "judges": "Thomson, J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "Anthony Rex Gabbert, Presiding Judge" + }, + { + "case_dates": "2023-03-07", + "case_names": "State of Missouri v. Richard Leon Kerksiek", + "download_urls": "/file.jsp?id=193106", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD84784", + "judges": "Ardini, Jr., PJ, and Hardwick, J., concur.", + "case_name_shorts": "", + "authors": "Karen King Mitchell, Judge" + }, + { + "case_dates": "2023-03-07", + "case_names": "State of Missouri v. Lee Allen Haneline", + "download_urls": "/file.jsp?id=193107", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded for a new trial", + "docket_numbers": "WD84964", + "judges": "Ahuja, J., and Zhang, Special J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" + }, + { + "case_dates": "2023-03-07", + "case_names": "Amina Alhalabi v. Missouri Department of Corrections", + "download_urls": "/file.jsp?id=193108", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed and Remanded", + "docket_numbers": "WD85012", + "judges": "Pfeiffer, J., and Martin, J., concur.", + "case_name_shorts": "", + "authors": "Thomas N. Chapman, Presiding Judge" + }, + { + "case_dates": "2023-02-28", + "case_names": "In the Interest of: M.T.W. v. Juvenile Officer", + "download_urls": "/file.jsp?id=192769", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85020", + "judges": "Hardwick, J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Edward R. Ardini, Jr., Presiding Judge" + }, + { + "case_dates": "2023-02-28", + "case_names": "In the Interest of: A.B.W., Juvenile Officer v. A.B.W.", + "download_urls": "/file.jsp?id=192770", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Appeal Dismissed", + "docket_numbers": "WD85049", + "judges": "Chapman, P.J., and Martin, J., concur.", + "case_name_shorts": "A.B.W.", + "authors": "Mark D. Pfeiffer, Judge" + }, + { + "case_dates": "2023-02-21", + "case_names": "Thomas Iseman v. Missouri Department of Corrections", + "download_urls": "/file.jsp?id=192615", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded for further proceedings", + "docket_numbers": "WD85178", + "judges": "Witt, Chief Judge, and Zhang, Special Judge, concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Judge" + }, + { + "case_dates": "2023-02-21", + "case_names": "LME, Inc. v. Robert Powell and Second Injury Fund", + "download_urls": "/file.jsp?id=192616", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85427", + "judges": "Gabbert, P.J. and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Judge" + }, + { + "case_dates": "2023-02-21", + "case_names": "In the Matter of the H. Boone Porter Trust created under the deed of trust dated August 1, 1960, as amended by amendment dated May 14, 1968, as reformed by judgment dated July 27, 1999, and as further amended by consent judgment dated November 21, 2002, and April 23, 2004, and also known as registered trust no. 169041, H. Boone Porter, III. v. Caroline Porter Hayes", + "download_urls": "/file.jsp?id=192613", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed, in part, and reversed and remanded, in part", + "docket_numbers": "WD84894", + "judges": "Ardini, Jr., P.J and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Lisa White Hardwick, Judge" + }, + { + "case_dates": "2023-02-21", + "case_names": "City of Harrisonville v. Missouri Dept. of Natural Resources and Board of Trustees for the Petroleum Storage Tank Insurance Fund.", + "download_urls": "/file.jsp?id=192614", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85091", + "judges": "Thomson, J., and Sutton, J., concur.", + "case_name_shorts": "", + "authors": "Anthony Rex Gabbert, Presiding Judge" + }, + { + "case_dates": "2023-02-14", + "case_names": "Trevon Henry v. State of Missouri", + "download_urls": "/file.jsp?id=192413", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD84685", + "judges": "Witt, Chief Judge, Presiding, and Martin, J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" + }, + { + "case_dates": "2023-02-14", + "case_names": "J.H., A Minor, By and Through His Natural Mother and Next Friend, Roxanna Louis Meudt-Antele v. Jefferson City Public School District", + "download_urls": "/file.jsp?id=192414", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85288", + "judges": "Pfeiffer, J., and Martin, J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" + }, + { + "case_dates": "2023-02-07", + "case_names": "State of Missouri, ex rel., The School District of Kansas City 33 v. The Honorable Jerri J. Zhang", + "download_urls": "/file.jsp?id=192117", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ of Prohibition made permanent", + "docket_numbers": "WD85738", + "judges": "Ahuja, J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Edward R. Ardini, Jr., Presiding Judge" + }, + { + "case_dates": "2023-02-07", + "case_names": "State of Missouri v. David Scott Nowicki", + "download_urls": "/file.jsp?id=192113", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in part reversed in part and remanded with instructions", + "docket_numbers": "WD84851", + "judges": "Witt, Chief Judge, Presiding, and Flook, Special J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" + }, + { + "case_dates": "2023-02-07", + "case_names": "Mary Ann Dewes v. Division of Employment Security", + "download_urls": "/file.jsp?id=192115", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed the Commission's order of dismissal and remanded to the commission", + "docket_numbers": "WD85578", + "judges": "Pfeiffer, J., and Martin, J., concur.", + "case_name_shorts": "", + "authors": "Thomas N. Chapman, Presiding Judge" + }, + { + "case_dates": "2023-02-07", + "case_names": "Eric S. Clark v. Bridgette Shaffer", + "download_urls": "/file.jsp?id=192116", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85589", + "judges": "Pfeiffer, J., and Chapman, J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" + }, + { + "case_dates": "2023-02-07", + "case_names": "Cassandra Cox v. Callaway County Sheriff's Department", + "download_urls": "/file.jsp?id=192114", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85350", + "judges": "Witt, Chief Judge, Presiding, and Flook, Special J., concur.", + "case_name_shorts": "", + "authors": "Cynthia L. Martin, Judge" + }, + { + "case_dates": "2023-01-31", + "case_names": "Tracy L. Sanders v. Division of Employment Security", + "download_urls": "/file.jsp?id=191976", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded", + "docket_numbers": "WD85554", + "judges": "Gabbert, P.J., and Thomson, J., concur.", + "case_name_shorts": "", + "authors": "Janet Sutton, Judge" + }, + { + "case_dates": "2023-01-31", + "case_names": "Nathaniel W. Osborn v. State of Missouri", + "download_urls": "/file.jsp?id=191973", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD84942", + "judges": "Ahuja, J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Presiding Judge" + }, + { + "case_dates": "2023-01-31", + "case_names": "In the Estate of Virgil D. Williams, Estate of Virgil D. Williams v. Kim Bauman, Randy Bauman, Kae Lewis and Chad Lewis", + "download_urls": "/file.jsp?id=191975", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85399", + "judges": "Witt, Chief Judge, Presiding, and Gabbert, J., concur.", + "case_name_shorts": "", + "authors": "Alok Ahuja, Judge" + }, + { + "case_dates": "2023-01-31", + "case_names": "In re the Matter of K.L.M. v. Juvenile Officer", + "download_urls": "/file.jsp?id=191974", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Appeal Dismissed", + "docket_numbers": "WD85029", + "judges": "Ardini, Jr., J., and Mitchell, J., concur.", + "case_name_shorts": "", + "authors": "Lisa White Hardwick, Judge" + }, + { + "case_dates": "2023-01-17", + "case_names": "Michael Walsh v. State Farm Mutual Automobile Insurance Company and Sheryl Craig", + "download_urls": "/file.jsp?id=191735", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85260", + "judges": "Witt, Chief Judge, Presiding, and Torrence, Special J., concur.", + "case_name_shorts": "", + "authors": "Mark D. Pfeiffer, Judge" + }, + { + "case_dates": "2023-01-10", + "case_names": "Tim Laske, Individually and on Behalf of Others v. Mark Krueger, Werner Sublette, Ron Phillips and Charles Zeman", + "download_urls": "/file.jsp?id=191516", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85173", + "judges": "Pfeiffer, J., and Torrence, Special J., concur.", + "case_name_shorts": "", + "authors": "Gary D. Witt, Chief Judge, Presiding" + }, + { + "case_dates": "2023-01-10", + "case_names": "State of Missouri v. Jesus Torres", + "download_urls": "/file.jsp?id=191514", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD84666", + "judges": "Ahuja, J., and Ardini, Jr., J., concur.", + "case_name_shorts": "", + "authors": "W. Douglas Thomson, Presiding Judge" + }, + { + "case_dates": "2023-01-10", + "case_names": "In the Interest of: E.T.S. Juvenile Officer v. E.T.S.", + "download_urls": "/file.jsp?id=191515", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed", + "docket_numbers": "WD85088", + "judges": "Martin, J., and Gabbert, J., concur.", + "case_name_shorts": "E.T.S.", + "authors": "Karen King Mitchell, Presiding Judge" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/moctapp_western_example.html b/tests/examples/opinions/united_states/moctapp_western_example.html index b8ddd6a2b..8fa5a0fae 100644 --- a/tests/examples/opinions/united_states/moctapp_western_example.html +++ b/tests/examples/opinions/united_states/moctapp_western_example.html @@ -1,1898 +1,22252 @@ - - - - - - - - Opinions + + + + + + + + + + +Opinions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Opinions

    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +

    Opinions for Western Appellate District

    +
    +
    + +
    +
    +
    +
    + +
    +

    Step 1. Select or Change Court

    +
    + + +
    +
    +
    +
    +

    Step 2. Search Opinions ...

    + +
    + + + + + Need Help? +
    +
    +
    +
    +
    +
    +

    ... OR View By Date

    +
    + + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + Click on a date below to view opinions. +
    +
    + +
    + +
    +
    +
    10/31/2023
    + +
    + + +
    +
    + WDOrder10-31-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD86595:  Overview/Summary
    + Dr. Anna Fitz-James +vs. +John R. Ashcroft, Missouri Secretary of State
    Author:   Thomas N. Chapman, Judge +
    Vote:  Affirmed in Part and Reversed in Part and Alternative Summary Statements Certified to the Secretary of State. Hardwick, PJ., and Ardini, Jr., J., concur. +
    +
    + + + + + + + +
    +
    + WD86101_and_WD86102:  Overview/Summary
    + Jason L. Collins +vs. +Century Ready Mix, Inc., and Treasurer of the State of Missouri - Custodian of the Second Injury Fund
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed. Sutton, P.J., and Ahuja, J., concur. +
    +
    + + + +
    +
    + WD86038:  Overview/Summary
    + Janet Perea and Mav Mirfasihi +vs. +Progressive Northwestern Insurance Company
    Author:   Lisa White Hardwick, Presiding Judge +
    Vote:  Affirmed. Martin, J., and Gabbert, J., concur. +
    +
    + + + +
    +
    + WD85864:  Overview/Summary
    + Olga Sparks +vs. +Joseph Michael Sparks
    Author:   Thomas N. Chapman, Judge +
    Vote:  Dismissed. Ardini, Jr., P.J., and Gabbert, J., concur. +
    +
    + + + +
    +
    + WD85812:  Overview/Summary
    + Brandon McNeese +vs. +John Wheeler, et al.
    Author:   Thomas N. Chapman, Judge +
    Vote:  Appeal Dismissed. Ardini, Jr., P.J., and Gabbert, J., concur. +
    +
    + + + +
    +
    + WD85751:  Overview/Summary
    + Z.R., a Minor, By and Through Her Mother and Next Friend, T.R. and By and Through Her Father and Next Friend, R.R. +vs. +Kansas City Pediatrics, LLC, and Scott Dattel, M.D.
    Author:   Edward R. Ardini, Jr., Presiding Judge +
    Vote:  Affirmed. Gabbert, J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85660:  Overview/Summary
    + Phillip Crisp +vs. +Missouri School for the Deaf, Department of Elementary & Secondary Education
    Author:   Janet Sutton, Presiding Judge +
    Vote:  Affirmed. Ahuja, J., and Pfeiffer, J., concur. +
    +
    + + + +
    +
    + WD85522:  Overview/Summary
    + Gary Jolley +vs. +State of Missouri
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Ahuja, J., and Thomson, J., concur. +
    +
    + + + +
    +
    + WD85510:  Overview/Summary
    + Vicente Roldan-Marron +vs. +State of Missouri
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Hardwick, P.J., and Mitchell, J., concur. +
    +
    + + + +
    +
    + WD85505:  Overview/Summary
    + Brendan Ford +vs. +Director of Revenue, State of Missouri
    Author:   Lisa White Hardwick, Presiding Judge +
    Vote:  Reversed and Remanded. Mitchell, J., and Martin, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/24/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder10-24-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85984:  Overview/Summary
    + St Louis-Jefferson Solid Waste Management District +vs. +Department of Natural Resources, State of Missouri
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed and Remanded For a Determination of Reasonable Attorneys' Fees On Appeal. Thomson, J., and Vandeloecht, Sp. J., concur. +
    +
    + + + +
    +
    + WD85830:  Overview/Summary
    + State of Missouri +vs. +James Eugene Logan
    Author:   Alok Ahuja, Presiding Judge +
    Vote:  Transferred to Missouri Supreme Court. Gabbert, J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85795:  Overview/Summary
    + The Public School Retirement System of Missouri +vs. +Regions Bank Inc.
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Reversed and Judgment Entered For Bank On All Claims Pursuant To Rule 84.14. Thomson, J., and Vandeloecht, Sp. J., concur. +
    +
    + + + +
    +
    + WD85531:  Overview/Summary
    + Quincy Clark Entertainment, LLC +vs. +Liquor Control, Et Al
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Martin, J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85492:  Overview/Summary
    + Wilford Freestone +vs. +Board of Police Commissioners Kansas City, Missouri, Et Al
    Author:   W. Douglas Thomson, Presiding Judge +
    Vote:  Reversed and Remanded. Chapman, J., and Sutton, J., concur. +
    +
    + + + +
    +
    + WD85247:  Overview/Summary
    + State of Missouri +vs. +Marqus Andrew Wilson
    Author:   W. Douglas Thomson, Judge +
    Vote:  Affirmed. Witt, P.J., and Vandeloecht, Sp. J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/17/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder10-17-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85232:  Overview/Summary
    + State of Missouri +vs. +Eric J. Devalkenaere
    Author:   Thomas N. Chapman, Judge +
    Vote:  Affirmed. Thomson, P.J., and Sutton, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/10/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder10-10-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85837:  Overview/Summary
    + Willow Farm Pool and Homes Association, INC. +vs. +Rachel Zorn and Scott Zorn
    Author:   Anthony Rex Gabbert, Presiding Judge +
    Vote:  Circuit Court Judgment Reversed and Vacated, and Judgment Entered Pursuant to Rule 84.14. Hardwick, J., and Pfeiffer, J., concur. +
    +
    + + + +
    +
    + WD85624:  Overview/Summary
    + State of Missouri +vs. +Tiffany J Mills
    Author:   Anthony Rex Gabbert, Judge +
    Vote:  Transferred to Missouri Supreme Court. Ahuja, P.J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85526:  Overview/Summary
    + State of Missouri +vs. +Joshua Armando Aldana
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Martin, J., and Gaddie, Sp. J., concur. +
    +
    + + + +
    +
    + WD85464:  Overview/Summary
    + Roslyn T. Barnes +vs. +Athene Annuity & Life Assurance Company f/k/a Liberty Life Insurance f/k/a Business Men's Assurance Company of America, et al.
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Reversed and Remanded, With the Motion for Sanctions, for Further Proceedings Consistent With This Opinion. Martin, J., and Gaddie, Sp. J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    10/03/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder10-03-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85774:  Overview/Summary
    + In the Interest of: A.L.H. +vs. +Juvenile Officer
    Author:   Lisa White Hardwick, Judge +
    Vote:  Reversed and Remanded. Gabbert, P.J., and Pfeiffer, J., concur. +
    +
    + + + +
    +
    + WD85498:  Overview/Summary
    + State of Missouri +vs. +Lonnie Allen Ogle
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Martin, J., and Gabbert, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/26/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder09-26-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD86437:  Overview/Summary
    + Bernard Williams +vs. +Doris Falkenrath, Warden, Jefferson City Correctional Center
    Author:   Alok Ahuja, Judge +
    Vote:  Petition for Writ Of Habeas Corpus Granted. Sutton, P.J., and Ardini, Jr., J., concur. +
    +
    + + + + + + + +
    +
    + WD85805:  Overview/Summary
    + State of Missouri +vs. +Rex Braden Gash
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Witt, P.J., and Gaddie, Sp. J., concur. +
    +
    + + + +
    +
    + WD85758:  Overview/Summary
    + Driss Zarhouni +vs. +State of Missouri
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Witt, P.J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85652:  Overview/Summary
    + Gary Joe Lemon +vs. +Chad N. Hopkins and Stacie A. Hopkins
    Author:   Karen King Mitchell, Judge +
    Vote:  Reversed and Remanded. Ahuja, P.J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85603:  Overview/Summary
    + State of Missouri +vs. +John W. Caudill
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed. Gabbert, P.J., and Hardwick, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/19/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder09-19-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85830:  Overview/Summary
    + State of Missouri +vs. +James Eugene Logan
    Author:   Alok Ahuja, Presiding Judge +
    Vote:  Appeal Held in Abeyance and Limited Remand to Circuit Court for Entry of Written Judgment. Gabbert, J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85703:  Overview/Summary
    + Aaron M. Malin +vs. +Cole County Prosecuting Attorney
    Author:   W. Douglas Thomson, Judge +
    Vote:  Reversed and Remanded. Pfeiffer, P.J., concur. Ahuja, J., dissents in a separate opinion. +
    +
    + + + +
    +
    + WD85228:  Overview/Summary
    + State of Missouri +vs. +Jeromy L. Jenkins
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed. Gabbert, P.J., and Hardwick, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/12/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder09-12-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD86384:  Overview/Summary
    + State of Missouri ex. rel., DKM Enterprises, LLC +vs. +Honorable Stacey Lett, In Her Official Capacity as Circuit Judge, Circuit Court of Cass County
    Author:   Alok Ahuja, Judge +
    Vote:  Preliminary Writ of Prohibition Made Permanent. Sutton, P.J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85831:  Overview/Summary
    + State of Missouri +vs. +James Eugene Logan
    Author:   Alok Ahuja, Presiding Judge +
    Vote:  Affirmed. Gabbert, J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85602:  Overview/Summary
    + City of Kansas City, Missouri +vs. +Occupational Health Centers of the Southwest, P.C., d/b/a Concentra Medical Centers
    Author:   Alok Ahuja, Presiding Judge +
    Vote:  Affirmed. Mitchell, J., and Ardini, Jr., J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    09/05/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder09-05-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85324:  Overview/Summary
    + In Re: The Matter Of: D.H.C +vs. +Juvenile officer
    Author:   Alok Ahuja, Presiding Judge +
    Vote:  Reversed and Remanded for Further Proceedings. Mitchell, J., and Ardini, Jr., J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/29/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder08-29-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD86109:  Overview/Summary
    + Brooklyn Roe +vs. +Darden Restaurants, INC.
    Author:   Janet Sutton, Judge +
    Vote:  Affirmed. Thomson, P.J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85943:  Overview/Summary
    + State of Missouri +vs. +Andrew P. Minnick
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Witt, P.J., and Gabbert, J., concur. +
    +
    + + + +
    +
    + WD85857:  Overview/Summary
    + State of Missouri, Ex Rel., Jeffrey K. Basinger +vs. +John R. Ashcroft in his official capacity as Missouri Secretary of State, Et Al.
    Author:   W. Douglas Thomson, Presiding Judge +
    Vote:  Affirmed. Chapman, J., and Sutton, J., concur. +
    +
    + + + +
    +
    + WD85823:  Overview/Summary
    + James F. Herrmann +vs. +Division of Employment Security
    Author:   Karen King Mitchell, Presiding Judge +
    Vote:  Appeal Dismissed. Ahuja, J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85719_and_WD85777:  Overview/Summary
    + State of Missouri, Ex Rel., Jeff Peters and John Newman +vs. +Scott Fitzpatrick, Treasurer, State of Missouri and Colleen Joern Vetter, Director of the Missouri Division of Workers' Compensation
    Author:   Thomas N. Chapman, Judge +
    Vote:  Affirmed in part, Reversed in part. Writ of Mandamus is Quashed. Thomson, P.J., and Sutton, J., concur. +
    +
    + + + +
    +
    + WD85462:  Overview/Summary
    + Jabyn Micheaux +vs. +State of Missouri
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Witt, P.J., and Weir, Sp.J., concur. +
    +
    + + + +
    +
    + WD85431:  Overview/Summary
    + Brenda L. Jackson +vs. +Missouri State Board of Nursing
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed. Witt, P.J., and Gabbert, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/22/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WD85969:  Overview/Summary
    + In the Interest of: K.R. & C.R., Juveniles; J.P. & D.P. +vs. +S.R. & T.R.
    Author:   Anthony Rex Gabbert, Judge +
    Vote:  Affirmed. Witt, P.J., and Pfeiffer, J., concur. +
    +
    + + + +
    +
    + WD85559:  Overview/Summary
    + In Re The Adoption of: K.L.C.B.; J.A.S.; and C.S. +vs. +D.L.B.
    Author:   Thomas N. Chapman, Presiding Judge +
    Vote:  Reversed and Remanded. Thomson, J., and Sutton, J., concur. +
    +
    + + + +
    +
    + WD84845:  Overview/Summary
    + State of Missouri +vs. +Jeffery E. Morgan
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed. Witt, P.J., and Gabbert, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/15/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder08-15-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD86405:  Overview/Summary
    + In The Matter of L.T.
    Author:   Cynthia L. Martin, Presiding Judge +
    Vote:  Affirmed. Chapman, J., and Sutton, J., concur. +
    +
    + + + +
    +
    + WD85850_and_ WD85858:  Overview/Summary
    + In the Interest of: A.M.R., R.H.H. III, and H.H. +Juvenile Officer and Guardian Ad Litem +vs. +J.M.
    Author:   Karen King Mitchell, Judge +
    Vote:  Affirmed. Ahuja, P.J., and Ardini, Jr., concur. +
    +
    + + + +
    +
    + WD85770:  Overview/Summary
    + Lawrence L. Ciesemier +vs. +Directory of Department of Public Safety
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Gabbert, J., and Pfeiffer, J., concur. +
    +
    + + + +
    +
    + WD85727:  Overview/Summary
    + Joseph Evan Dunbar +vs. +Director of Revenue
    Author:   Janet Sutton, Judge +
    Vote:  Affirmed. Witt, P.J., and Hamner, S.J., concur. +
    +
    + + + +
    +
    + WD85542:  Overview/Summary
    + Shawn H. Flaherty +vs. +State of Missouri
    Author:   Alok Ahuja, Presiding Judge +
    Vote:  Reversed, Convictions Vacated, and New Trial Ordered. Mitchell, J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85506:  Overview/Summary
    + Carter Andrew Kinkead +vs. +Director of Revenue
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Sutton, J., and Hamner, S.J., concur. +
    +
    + + + +
    +
    + WD85259:  Overview/Summary
    + State of Missouri +vs. +Brenda L. Ivy
    Author:   Lisa White Hardwick, Judge +
    Vote:  Affirmed. Witt, P.J., and Otto, S.J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/08/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder08-08-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85293:  Overview/Summary
    + Ray Johnson +vs. +State of Missouri
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Hardwick, J., and Thomson, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    08/01/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder08-01-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + +
    +
    + WD85691:  Overview/Summary
    + Andrea E. Stockman +vs. +Brian G. Schmidt
    Author:   Anthony Rex Gabbert, Judge +
    Vote:  Reversed and Remanded. Ahuja, P.J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85149:  Overview/Summary
    + State of Missouri +vs. +Antwoine R. King
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed. Gabbert, P.J., and Hardwick, J., concur. +
    +
    + + + +
    +
    + WD85109:  Overview/Summary
    + State of Missouri +vs. +Joseph Duane Elledge
    Author:   Thomas N. Chapman, Judge +
    Vote:  Affirmed. Ahuja, P.J., and Gabbert, J., concur. +
    +
    + + + +
    +
    + WD84633:  Overview/Summary
    + State of Missouri +vs. +Kylr Charles Yust
    Author:   W. Douglas Thomson, Presiding Judge +
    Vote:  Affirmed. Martin, J., and Chapman, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/25/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder07-25-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85952_WD85953_WD85954_WD85955_WD85956:  Overview/Summary
    + Daniel Starcher +vs. +Division of Employment Security
    Author:   Thomas N. Chapman, Judge +
    Vote:  Dismissed. Thomson, P.J., and Martin, J., concur. +
    +
    + + + +
    +
    + WD85773:  Overview/Summary
    + In Re The Matter Of: Y.R.H. by and through her next friend J.N.H. +vs. +M.J.S.
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Thomson, P.J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85606:  Overview/Summary
    + Timothy S. Kelley +vs. +State of Missouri
    Author:   Thomas N. Chapman, Judge +
    Vote:  Affirmed. Thomson, P.J., and Martin, J., concur. +
    +
    + + + +
    +
    + WD85493:  Overview/Summary
    + Payton Chiann Comer +vs. +Director of Revenue, State of Missouri
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Thomson, P.J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85461:  Overview/Summary
    + Ken Auman +vs. +Janiece Richard
    Author:   Edward R. Ardini, Jr., Judge +
    Vote:  Dismissed. Mitchell, J., and Ahuja, J., concur. +
    +
    + + + +
    +
    + WD85425:  Overview/Summary
    + John Kirby +vs. +State of Missouri
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Hardwick, J., and Thomson, J., concur. +
    +
    + + + +
    +
    + WD85246_and_WD85269:  Overview/Summary
    + William H. Drewel +vs. +Missouri State Highway Patrol and Cole County Sheriff John P. Wheeler
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Reversed. Gabbert, P.J., and Hardwick, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/18/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder07-18-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85491:  Overview/Summary
    + All Star Awards & AD Specialties, INC. +vs. +Halo Branded Solutions
    Author:   Alok Ahuja, Presiding Judge +
    Vote:  Affirmed. Gabbert, J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85433:  Overview/Summary
    + In the Interest of: C.R.B. +vs. +Juvenile Officer
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Hardwick, J., and Otto, S.J., concur. +
    +
    + + + +
    +
    + WD85222:  Overview/Summary
    + Erick E. Beckett +vs. +State of Missouri
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Reversed the Judgment of the Motion Court, Vacated the Conviction and Sentence, and Remanded for a New Trail. Hardwick, J., and Harrel, S.J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/11/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder07-11-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    07/05/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + +
    +
    + WD85874:  Overview/Summary
    + Shannon Maxwell +vs. +Division of Employment Security
    Author:   W. Douglas Thomson, Judge +
    Vote:  Dismissed. Pfeiffer, P.J., and Mitchell, J., concur. +
    +
    + + + +
    +
    + WD85395:  Overview/Summary
    + Angela Lewis +vs. +Dennis Lewis and Deborah Lewis
    Author:   Mark D. Pfeiffer, Presiding Judge +
    Vote:  Affirmed. Ahuja, J., and Thomson, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/27/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder06-27-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85872:  Overview/Summary
    + Maria-Fernanda Fast +vs. +Division of Employment Security
    Author:   Karen King Mitchell, Judge +
    Vote:  Appeal Dismissed. Pfeiffer, P.J., and Thomson, J., concur. +
    +
    + + + + + + + +
    +
    + WD85539:  Overview/Summary
    + R.M. +vs. +Tre L. King
    Author:   Janet Sutton, Presiding Judge +
    Vote:  Appeal Dismissed. Martin, J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85536:  Overview/Summary
    + State of Missouri +vs. +Timothy R. Fernandez
    Author:   Mark D. Pfeiffer, Presiding Judge +
    Vote:  Affirmed. Mitchell, J., and Thomson, J., concur. +
    +
    + + + +
    +
    + WD85530:  Overview/Summary
    + State of Missouri +vs. +Robert A. Woolery
    Author:   Karen King Mitchell, Judge +
    Vote:  Affirmed. Thomson, P.J., and Hardwick, J,. concur. +
    +
    + + + +
    +
    + WD85341:  Overview/Summary
    + Thu Hong Nguyen +vs. +State of Missouri
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Sutton, P.J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85314:  Overview/Summary
    + Andrew Shores +vs. +State of Missouri
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Pfeiffer, P.J., and Thomson, J., concur. +
    +
    + + + +
    +
    + WD85256:  Overview/Summary
    + State of Missouri +vs. +Tyesha Lynette Peck
    Author:   Janet Sutton, Presiding Judge +
    Vote:  Reversed and Remanded. Martin, J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85186:  Overview/Summary
    + State of Missouri +vs. +Rocky L. Coyle
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Sutton, P.J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85175:  Overview/Summary
    + Joseph T. Sousley +vs. +State of Missouri
    Author:   Thomas N. Chapman, Judge +
    Vote:  Affirmed. Ahuja, P.J., and Gabbert, J., concur. +
    +
    + + + +
    +
    + WD85014:  Overview/Summary
    + Marlayna Kenney +vs. +Kailey K. Myers
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Sutton, P.J., and Ardini, Jr., J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/20/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder06-20-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85681 and WD85863:  Overview/Summary
    + David Steele +vs. +Johnson Controls, Inc.
    Author:   Edward R. Ardini, Jr., Judge +
    Vote:  Affirmed. Sutton, P.J., and Martin, J., concur. +
    +
    + + + +
    +
    + WD85561 and WD85607:  Overview/Summary
    + Kyle Odermann and Audrey Odermann +vs. +Gerald Mancuso, Desarae G. Harrah and Harrah Law, LLC
    Author:   Janet Sutton, Presiding Judge +
    Vote:  Reversed and Judgment Entered. Martin, J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85335:  Overview/Summary
    + Timothy Davis +vs. +State of Missouri
    Author:   Anthony Rex Gabbert, Judge +
    Vote:  Remanded. Ahuja, P.J., and Chapman, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    06/06/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder06-06-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/30/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder05-30-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85780:  Overview/Summary
    + City of Clinton +vs. +Robert Dahman
    Author:   Alok Ahuja, Presiding Judge +
    Vote:  Affirmed. Gabbert, J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85582:  Overview/Summary
    + Susan Miller +vs. +Division of Employment Security
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Sutton, P.J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85112:  Overview/Summary
    + Linda Rinehart +vs. +Missouri Department of Corrections
    Author:   Mark D. Pfeiffer, Presiding Judge +
    Vote:  Affirmed. Mitchell, J., and Thomson, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/23/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder05-23-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85570:  Overview/Summary
    + Timothy W. Johnes +vs. +Division of Employment Security
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Reversed and Remanded for a hearing on the merits. Pfeiffer, J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85564:  Overview/Summary
    + Shelter Insurance Company +vs. +John W. Long, Et al.
    Author:   Anthony Rex Gabbert, Judge +
    Vote:  Reversed and Remanded. Ahuja, P.J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85534:  Overview/Summary
    + Jessica Lynne Johnson, n/k/a Jessica L. Gould +vs. +Isaiah Ben Johnson
    Author:   W. Douglas Thomson, Judge +
    Vote:  Dismissed. Gabbert, P.J., and Sutton, J., concur. +
    +
    + + + +
    +
    + WD85355:  Overview/Summary
    + Save-A-Connie, INC., d/b/a Airline History Museum +vs. +Executive Beechcraft, INC. and the City of Kansas City, Missouri
    Author:   Anthony Rex Gabbert, Judge +
    Vote:  Affirmed. Ahuja, P.J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85024:  Overview/Summary
    + Jordan Wood +vs. +Criminal Records Repository, Et al.
    Author:   W. Douglas Thomson, Presiding Judge +
    Vote:  Affirmed. Ahuja, J., and Ardini, Jr., J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/16/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder05-16-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85528:  Overview/Summary
    + Heather (McCubbins) Pickett +vs. +Michael Bostwick
    Author:   Janet Sutton, Presiding Judge +
    Vote:  Appeal Dismissed. Martin, J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85487:  Overview/Summary
    + City of Skidmore, Missouri +vs. +Rickie L. Stanton
    Author:   Karen King Mitchell, Judge +
    Vote:  Affirmed in part; Reversed in part. Ardini, Jr., P.J., and Hardwick, J., concur. +
    +
    + + + +
    +
    + WD85453:  Overview/Summary
    + Aaron M. Malin +vs. +Missouri Association of Community Task Forces (d/b/a/ ACT Missouri)
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Sutton, P.J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85365:  Overview/Summary
    + Pendragon Properties, LLC. +vs. +Latanya Haywood
    Author:   Lisa White Hardwick, Judge +
    Vote:  Appeal Dismissed. Thomson, P.J., and Mitchell, J., concur. +
    +
    + + + +
    +
    + WD85165:  Overview/Summary
    + State of Missouri +vs. +Chukwuemeka U. Emmanuel
    Author:   Karen King Mitchell, Judge +
    Vote:  Affirmed. Thomson, P.J., and Hardwick, J., concur. +
    +
    + + + +
    +
    + WD85103:  Overview/Summary
    + Vicky Church, Sarah Austin and Jacob Church, on behalf of all Beneficiaries +vs. +CNH Industrial America, LLC
    Author:   Edward R. Ardini, Jr., Judge +
    Vote:  Affirmed in part, Reversed in part, and Modified. Sutton, P.J., and Martin, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/09/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder05-09-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85870:  Overview/Summary
    + State of Missouri, ex rel., Dale J. Meller and Elaine Meller, and Ashley Farm Services, LLC +vs. +The Honorable Jon E. Beetem, Judge of the Circuit Court of Cole County, Missouri
    Author:   W. Douglas Thomson, Presiding Judge +
    Vote:  Preliminary Writ Made Permanent. Hardwick, J., and Sutton, J., concur. +
    +
    + + + +
    +
    + WD85529:  Overview/Summary
    + David Kubiak +vs. +Missouri State Board of Nursing
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed the Circuit Court's Judgment Reversing the Board's Order. Pfeiffer, J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85458:  Overview/Summary
    + Knockerball Midmo, LLC +vs. +McGowan & Company, INC. d/b/a McGowan Excess & Casualty
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed. Witt, P.J., and Gebhardt, S.J., concur. +
    +
    + + + +
    +
    + WD85141:  Overview/Summary
    + State of Missouri +vs. +Roger D. Iman
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed. Witt, P.J., and Chapman, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    05/02/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder05-02-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85605:  Overview/Summary
    + Sylvia Pride +vs. +Boone County Sheriff's Department and Diana O'Neill
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Reversed and Remanded. Witt, P.J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85267:  Overview/Summary
    + Emanuel Matthews, Et al. +vs. +Harley Davidson, Et al.
    Author:   W. Douglas Thomson, Judge +
    Vote:  Reversed and Remanded for Further Proceedings. Gabbert, P.J., and Sutton, J., concur. +
    +
    + + + +
    +
    + WD85179:  Overview/Summary
    + State of Missouri +vs. +Joseph C. Griest
    Author:   W. Douglas Thomson, Presiding Judge +
    Vote:  Affirmed. Hardwick, J., and Mitchell, J., concur. +
    +
    + + + +
    +
    + WD85169:  Overview/Summary
    + Mark C. Brandolese +vs. +State of Missouri
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Reversed and Remanded. Pfeiffer, J., and Gebhardt, J., concur. +
    +
    + + + +
    +
    + WD85066:  Overview/Summary
    + Greg Halderman +vs. +City of Sturgeon, Missouri and Tyler Patterson
    Author:   Alok Ahuja, Judge +
    Vote:  Affirmed in part, Reversed in part, and Remanded for a Determination of Attorney's Fees. Witt, P.J., and Sutton, J., concur. +
    +
    + + + +
    +
    + WD84989:  Overview/Summary
    + Nathan Canfield +vs. +State of Missouri
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Ahuja, J., and Hardwick, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/25/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 04-25-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85400:  Overview/Summary
    + Donald Nussbaum +vs. +State of Missouri
    Author:   Janet Sutton, Presiding Judge +
    Vote:  Reversed and Remanded. Martin, J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85142:  Overview/Summary
    + In the Interest of: D.J.T.S. +vs. +Juvenile Officer
    Author:   Lisa White Hardwick, Judge +
    Vote:  Affirmed. Thomson, P.J., and Mitchell, J., concur. +
    +
    + + + +
    +
    + WD85134 consolidated with WD85157 and WD85166:  Overview/Summary
    + David Seymour, Et al. +vs. +Switzer Tenant LLC, Et al.
    Author:   Janet Sutton, Presiding Judge +
    Vote:  Affirmed. Martin, J., and Ardini, Jr., J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/18/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 04-18-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85737:  Overview/Summary
    + Kim Huebert +vs. +City of Kansas City
    Author:   Alok Ahuja, Presiding Judge +
    Vote:  Reversed and Remanded for Further Proceedings. Gabbert, J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85701:  Overview/Summary
    + S.K., Et al. +vs. +T.K., M.K., and R.R.
    Author:   Cynthia L. Martin, Judge +
    Vote:  Appeal Dismissed. Sutton, P.J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85697:  Overview/Summary
    + Suzanne Steinbach +vs. +Maxion Wheels, Sedalia, LLC, Hayes Lemmerz International
    Author:   Thomas N. Chapman, Judge +
    Vote:  Affirmed. Ahuja, P.J., and Gabbert, J., concur. +
    +
    + + + +
    +
    + WD85649:  Overview/Summary
    + Ramalina Steiner +vs. +Stephanie Stribrny
    Author:   W. Douglas Thomson, Presiding Judge +
    Vote:  Affirmed. Hardwick, J., and Mitchell, J., concur. +
    +
    + + + +
    +
    + WD85580:  Overview/Summary
    + Colleen Spurlock +vs. +City of Columbia, Missouri
    Author:   Edward R. Ardini, Jr., Judge +
    Vote:  Reversed and Remanded. Sutton, P.J., and Martin, J., concur. +
    +
    + + + +
    +
    + WD85520:  Overview/Summary
    + Melissa Aldridge +vs. +Devin Martin
    Author:   Edward R. Ardini, Jr., Presiding Judge +
    Vote:  Affirmed. Hardwick, J., and Mitchell, J., concur. +
    +
    + + + +
    +
    + WD85467:  Overview/Summary
    + Jefferson City Medical Group, P.C. +vs. +David Brummett
    Author:   Alok Ahuja, Presiding Judge +
    Vote:  Appeal Dismissed. Gabbert, J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85398:  Overview/Summary
    + Independence School District No. 30 +vs. +county of Jackson, Missouri
    Author:   Karen King Mitchell, Judge +
    Vote:  Affirmed and Remanded for Further Proceedings. Ardini, Jr., P.J., and Hardwick, J., concur. +
    +
    + + + +
    +
    + WD85325:  Overview/Summary
    + Four B. Corp. and Harrisonville Marketplace II, LLC +vs. +City of Harrisonville, Missouri Board of Zoning Adjustments
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Sutton, P.J., and Ardini, Jr., J., concur. +
    +
    + + + +
    +
    + WD85210:  Overview/Summary
    + Angela Christine Wilson +vs. +Christopher Darnell Wilson
    Author:   Lisa White Hardwick, Judge +
    Vote:  Affirmed, In Part, Reversed, In Part, and Remanded. Ardini, Jr., P.J., and Mitchell, J., concur. +
    +
    + + + + + + + +
    +
    + WD85124:  Overview/Summary
    + Hui Jun Lin +vs. +Ann Clark, Successor of Hsiao Li Chang Estate
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed. Chapman, P.J., and Martin, J., concur. +
    +
    + + + +
    +
    + WD84927:  Overview/Summary
    + State of Missouri +vs. +Justin Andrew Marks
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Ahuja, J., and Sutton, J., concur. +
    +
    + + + +
    +
    + WD84914:  Overview/Summary
    + Kevin LaBranche +vs. +Kansas City Public Schools
    Author:   Anthony Rex Gabbert, Presiding Judge +
    Vote:  Reversed and Remanded. Thomson, J., and Sutton, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/11/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 04-11-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85486:  Overview/Summary
    + Andrea M. Curns +vs. +Phyllis Akins
    Author:   W. Douglas Thomson, Judge +
    Vote:  Affirmed. Gabbert, P.J., and Sutton, J., concur. +
    +
    + + + +
    +
    + WD85002:  Overview/Summary
    + State of Missouri +vs. +Viola Bowman
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed. Chapman, P.J., and Martin, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    04/04/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 04-04-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85405:  Overview/Summary
    + Dane Templeton +vs. +Charles Orth, D.O., and Orthopedic Surgeons, Inc.
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed in part, reversed in part, and remanded. Martin, J., concurs. Chapman, P.J., dissents in a separate opinion. +
    +
    + + + +
    +
    + WD85343:  Overview/Summary
    + Peter Loew and Kathy Loew +vs. +Heartland Trophy Properties, Inc.
    Author:   Janet Sutton, Judge +
    Vote:  Affirmed in part, reversed in part, and remanded. Witt, Chief Judge., and Ahuja, J., concur. +
    +
    + + + +
    +
    + WD85329:  Overview/Summary
    + Willa Hynes +vs. +Missouri Department of Corrections
    Author:   Janet Sutton, Judge +
    Vote:  Dismissed. Witt, Chief Judge, and Ahuja, J., concur. +
    +
    + + + +
    +
    + WD85067:  Overview/Summary
    + Joanthony D. Johnson +vs. +State of Missouri
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Ahuja, J., and Limbaugh, Special J., concur. +
    +
    + + + +
    +
    + WD84804:  Overview/Summary
    + State of Missouri +vs. +David A. Harris
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Ahuja, J., and Limbaugh, Special J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/28/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 03-28-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85748:  Overview/Summary
    + State of Missouri +vs. +Kimberly E. Vandervort
    Author:   Lisa White Hardwick, Judge +
    Vote:  Reversed in part and affirmed in part. Ardini, Jr., P.J. and Mitchell, J., concur. +
    +
    + + + +
    +
    + WD85747:  Overview/Summary
    + Floyd S. Wiedner +vs. +Ferrellgas, Inc., et al
    Author:   Edward R. Ardini, Jr., Presiding Judge +
    Vote:  Affirmed in part, reversed in part, and remanded. Hardwick, J., and Mitchell, J., concur. +
    +
    + + + +
    +
    + WD85432:  Overview/Summary
    + City of Kansas City, Missouri, A Municipal Corporation +vs. +Phillip J. Troyer
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Chapman, P.J., and Pfeiffer, J., concur. +
    +
    + + + +
    +
    + WD85237:  Overview/Summary
    + In the Interest of: A.R.K. +vs. +Juvenile Officer
    Author:   Janet Sutton, Judge +
    Vote:  Affirmed. Gabbert, P.J., and Thomson, J., concur. +
    +
    + + + +
    +
    + WD85143:  Overview/Summary
    + In re: The Matter of J.R.K. +vs. +Juvenile Officer
    Author:   Lisa White Hardwick, Judge +
    Vote:  Affirmed. Ardini, Jr., P.J., and Mitchell, J., concur. +
    +
    + + + +
    +
    + WD85010:  Overview/Summary
    + State of Missouri +vs. +Jaquan D. Whirley
    Author:   Alok Ahuja, Judge +
    Vote:  Original judgment reversed, amended judgment vacated, and case remanded for resentencing. Witt, C.J., and Hardwick, J., concur. +
    +
    + + + +
    +
    + WD84925:  Overview/Summary
    + Willie Hampton +vs. +Yvonne A. Llewellyn
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed. Chapman, P.J., and Martin, J., concur. +
    +
    + + + +
    +
    + WD83333:  Overview/Summary
    + State of Missouri +vs. +Thomas Eugene Antle
    Author:   Alok Ahuja, Judge +
    Vote:  Affirmed. Pfeiffer, P.J., and Mitchell, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/21/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 03-21-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85628:  Overview/Summary
    + Mary Crawford and Jason Crawford +vs. +Family Tree, Inc.
    Author:   Janet Sutton, Judge +
    Vote:  Reversed and Remanded. Gabbert, P.J., and Thomson, J., concur. +
    +
    + + + +
    +
    + WD85619:  Overview/Summary
    + In Re the Interest of: C.P.B.; Juvenile Officer; Missouri Department of Social Services, Children's Division +vs. +T.G.B.
    Author:   Anthony Rex Gabbert, Presiding Judge +
    Vote:  Affirmed. Thomson, J., and Sutton, J., concur. +
    +
    + + + +
    +
    + WD85618:  Overview/Summary
    + In Re the Interest of: B.G.B.; Juvenile Officer; Missouri Department of Social Services, Children's Division +vs. +T.G.B.
    Author:   Anthony Rex Gabbert, Presiding Judge +
    Vote:  Affirmed. Thomson, J., and Sutton, J., concur. +
    +
    + + + +
    +
    + WD85445:  Overview/Summary
    + Sultany Trucking, LLC and Sultany Farms, LLC +vs. +Missouri Clean Water Commission and Missouri Department of Natural Resources
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Chapman, P.J., and Pfeiffer, J., concur. +
    +
    + + + +
    +
    + WD85114:  Overview/Summary
    + Lakeith R. Courtney +vs. +State of Missouri
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Chapman, P.J., and Pfeiffer J., concur. +
    +
    + + + +
    +
    + WD84950:  Overview/Summary
    + Aaron Hecker +vs. +State of Missouri
    Author:   Anthony Rex Gabbert, Presiding Judge +
    Vote:  Vacated and Remanded. Thomson, J., and Sutton, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/14/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 03-14-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    03/07/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 03-07-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85012:  Overview/Summary
    + Amina Alhalabi +vs. +Missouri Department of Corrections
    Author:   Thomas N. Chapman, Presiding Judge +
    Vote:  Affirmed and Remanded. Pfeiffer, J., and Martin, J., concur. +
    +
    + + + +
    +
    + WD84964:  Overview/Summary
    + State of Missouri +vs. +Lee Allen Haneline
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Reversed and Remanded for a new trial. Ahuja, J., and Zhang, Special J., concur. +
    +
    + + + +
    +
    + WD84784:  Overview/Summary
    + State of Missouri +vs. +Richard Leon Kerksiek
    Author:   Karen King Mitchell, Judge +
    Vote:  Affirmed. Ardini, Jr., PJ, and Hardwick, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/28/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 02-28-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85049:  Overview/Summary
    + In the Interest of: A.B.W., Juvenile Officer, +vs. +A.B.W.
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Appeal Dismissed. Chapman, P.J., and Martin, J., concur. +
    +
    + + + +
    +
    + WD85020:  Overview/Summary
    + In the Interest of: M.T.W. +vs. +Juvenile Officer
    Author:   Edward R. Ardini, Jr., Presiding Judge +
    Vote:  Affirmed. Hardwick, J., and Mitchell, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/21/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 02-21-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85427:  Overview/Summary
    + LME, Inc. +vs. +Robert Powell and Second Injury Fund
    Author:   W. Douglas Thomson, Judge +
    Vote:  Affirmed. Gabbert, P.J. and Sutton, J., concur. +
    +
    + + + +
    +
    + WD85178:  Overview/Summary
    + Thomas Iseman +vs. +Missouri Department of Corrections, et al.
    Author:   Alok Ahuja, Judge +
    Vote:  Reversed and Remanded for further proceedings. Witt, Chief Judge, and Zhang, Special Judge, concur. +
    +
    + + + +
    +
    + WD85091:  Overview/Summary
    + City of Harrisonville, et al. +vs. +Missouri Dept. of Natural Resources and Board of Trustees for the Petroleum Storage Tank Insurance Fund.
    Author:   Anthony Rex Gabbert, Presiding Judge +
    Vote:  Affirmed. Thomson, J., and Sutton, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/14/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 02-14-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85288:  Overview/Summary
    + J.H., A Minor, By and Through His Natural Mother and Next Friend, Roxanna Louis Meudt-Antele +vs. +Jefferson City Public School District, et al.
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Reversed and Remanded. Pfeiffer, J., and Martin, J., concur. +
    +
    + + + +
    +
    + WD84685:  Overview/Summary
    + Trevon Henry +vs. +State of Missouri
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed. Witt, Chief Judge, Presiding, and Martin, J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    02/07/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 02-07-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85738:  Overview/Summary
    + State of Missouri, ex rel., The School District of Kansas City 33 +vs. +The Honorable Jerri J. Zhang
    Author:   Edward R. Ardini, Jr., Presiding Judge +
    Vote:  Writ of Prohibition made permanent. Ahuja, J., and Mitchell, J., concur. +
    +
    + + + +
    +
    + WD85589:  Overview/Summary
    + Eric S. Clark +vs. +Bridgette Shaffer, et al.
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Pfeiffer, J., and Chapman, J., concur. +
    +
    + + + +
    +
    + WD85578:  Overview/Summary
    + Mary Ann Dewes +vs. +Division of Employment Security
    Author:   Thomas N. Chapman, Presiding Judge +
    Vote:  Reversed the Commission's order of dismissal and remanded to the commission. Pfeiffer, J., and Martin, J., concur. +
    +
    + + + +
    +
    + WD85350:  Overview/Summary
    + Cassandra Cox +vs. +Callaway County Sheriff's Department, et al.
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed. Witt, Chief Judge, Presiding, and Flook, Special J., concur. +
    +
    + + + +
    +
    + WD84851:  Overview/Summary
    + State of Missouri +vs. +David Scott Nowicki
    Author:   Cynthia L. Martin, Judge +
    Vote:  Affirmed in part; reversed in part; and remanded with instructions. Witt, Chief Judge, Presiding, and Flook, Special J., concur. +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/31/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 01-31-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85554:  Overview/Summary
    + Tracy L. Sanders +vs. +Division of Employment Security
    Author:   Janet Sutton, Judge +
    Vote:  Reversed and Remanded. Gabbert, P.J., and Thomson, J., concur. +
    +
    + + + +
    +
    + WD85399:  Overview/Summary
    + In the Estate of Virgil D. Williams, Deceased; Estate of Virgil D. Williams +vs. +Kim Bauman, Randy Bauman, Kae Lewis and Chad Lewis
    Author:   Alok Ahuja, Judge +
    Vote:  Affirmed. Witt, Chief Judge, Presiding, and Gabbert, J., concur. +
    +
    + + + +
    +
    + WD85029:  Overview/Summary
    + In re the Matter of K.L.M. +vs. +Juvenile Officer
    Author:   Lisa White Hardwick, Judge +
    Vote:  Appeal Dismissed. Ardini, Jr., J., and Mitchell, J., concur. +
    +
    + + + +
    +
    + WD84942:  Overview/Summary
    + Nathaniel W. Osborn +vs. +State of Missouri
    Author:   W. Douglas Thomson, Presiding Judge +
    Vote:  Affirmed. Ahuja, J., and Ardini, Jr., J., concur. +
    +
    + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/24/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 01-24-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/17/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 01-17-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85260:  Overview/Summary
    + Michael Walsh +vs. +State Farm Mutual Automobile Insurance Company and Sheryl Craig
    Author:   Mark D. Pfeiffer, Judge +
    Vote:  Affirmed. Witt, Chief Judge, Presiding, and Torrence, Special J., concur. +
    +
    + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/10/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 01-10-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + + +
    +
    + WD85173:  Overview/Summary
    + Tim Laske, Individually and on Behalf of Others +vs. +Mark Krueger, Werner Sublette, Ron Phillips and Charles Zeman
    Author:   Gary D. Witt, Chief Judge, Presiding +
    Vote:  Affirmed. Pfeiffer, J., and Torrence, Special J., concur. +
    +
    + + + +
    +
    + WD85088:  Overview/Summary
    + In the Interest of: E.T.S. +Juvenile Officer, +vs. +E.T.S.
    Author:   Karen King Mitchell, Presiding Judge +
    Vote:  Affirmed. Martin, J., and Gabbert, J., concur. +
    +
    + + + +
    +
    + WD84666:  Overview/Summary
    + State of Missouri +vs. +Jesus Torres
    Author:   W. Douglas Thomson, Presiding Judge +
    Vote:  Affirmed. Ahuja, J., and Ardini, Jr., J., concur. +
    +
    + + + + +
    +
    +
    +
    +
    + +
    + +
    +
    +
    01/03/2023
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - -
    - - -
    -
    -
    - -
    -
    - -

    Opinions for Western Appellate District

    -
    -

    Step 1. Select or Change Court

    -
    -
    -Court:   - -
    - -
    -
    -
    -
    -

    Step 2. Search Opinions ...

    -
    - -
    - - -      - Need Help? -
    -
    -
    -

    ... OR View By Date

    -
    - - - - - - - - - - -
    Year of Opinion:  - -
    - Show all Opinions for Year   - Hide all Opinions -
    - Click on a date below to view opinions. -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - -
    - WDOrder05-06-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD76864: Overview/Summary
    - Mark Kershaw, et al - vs. - City of Kansas City, Missouri
    - Author:  Karen King Mitchell, Judge  Vote:  Reversed & remanded. - Ellis, P.J. and Gabbert, JJ., concur -
      -
    - - - - - - -
    - WD76724: Overview/Summary
    - Manuel H. Lopez, on Behalf of Himself and All Others Similarly - Situated - vs. - H&R Block, Inc., et al
    - Author:  Victor C. Howard, Presiding Judge  Vote:  Reversed & - remanded. Ahuja, JJ. and Witt, JJ., concur -
      -
    - - -
    - - - - - - - - -
    - WDOrder04-29-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD76783: Overview/Summary
    - Mary Kingsley - vs. - Richard McDonald
    - Author:  Alok Ahuja, Judge  Vote:  Reversed & remanded. Howard, - P.J. and Witt, JJ., concur -
      -
    - - - - - - -
    - WD76778: Overview/Summary
    - Richard Brown, Et Al - vs. - Susan Brown-Thill
    - Author:  Alok Ahuja, Judge  Vote:  Reversed & remanded. Howard, - P.J. and Gabbert, JJ., concur -
      -
    - - - - - - -
    - WD76619: Overview/Summary
    - Star Development Corporation - vs. - Urgent Care Associates, Inc., et al
    - Author:  Lisa White Hardwick, Judge  Vote:  Affirmed & remanded. - Welsh, C.J. Presiding and McBeth, Sp. J., concur -
      -
    - - - - - - -
    - WD76581: Overview/Summary
    - In the Estate of Kevin N. Merritt, Deceased, By and Through Its - Duly Appointed Personal Representative, Monique Merritt - vs. - Rebecca L. Wachter - Fidelity Brokerage Services, LLC
    - Author:  Anthony Rex Gabbert, Presiding Judge  Vote:  Reversed & - remanded. Howard, JJ. and Newton, JJ., concur -
      -
    - - - - - - -
    - WD76534: Overview/Summary
    - Janet Hurst - vs. - Kansas City Missouri School District
    - Author:  Joseph M. Ellis, Presiding Judge  Vote:  Affirmed & - remanded. Mitchell, JJ. and Gabbert, JJ., concur -
      -
    - - - - - - -
    - WD76508: Overview/Summary
    - Stacey L. Deane - vs. - Missouri Employers Mutual Insurance Company
    - Author:  Joseph M. Ellis, Presiding Judge  Vote:  Affirmed. - Mitchell, JJ. and Gabbert, JJ., concur -
      -
    - - - - - - -
    - WD76380: Overview/Summary
    - Jimmie Lee Taylor - vs. - The Bar Plan Mutual Insurance Company, Et Al
    - Author:  Gary D. Witt, Judge  Vote:  Reversed. Reversed. Martin, - P.J., concurs, Fischer, Sp. J., concurs in part and dissents in part in a separate opinion -
      -
    - - - - - - -
    - WD76086: Overview/Summary
    - Ray Charles Bate and Deborah Sue Bate - vs. - Greenwich Insurance Company
    - Author:  Cynthia L. Martin, Judge  Vote:  Affirmed & remanded. - Newton, P.J. and Pfeiffer, JJ., concur -
      -
    - - - - - - -
    - WD75986: Overview/Summary
    - Jerry Allan Ridge, Jr. - vs. - Director of Revenue
    - Author:  Anthony Rex Gabbert, Presiding Judge  Vote:  Affirmed. - Howard, JJ. and Newton, JJ., concur -
      -
    - - - - - - -
    - WD75585 Consolidated with WD75619: Overview/Summary
    - Stephen A. Oliver, Et Al - vs. - Ford Motor Credit Company, LLC, Et Al
    - Author:  Anthony Rex Gabbert, Presiding Judge  Vote:  Affirmed. - Howard, JJ. and Newton, JJ., concur -
      -
    - - -
    - - - - - - - - -
    - WDOrder04-22-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD76933: Overview/Summary
    - Priscella Gilley vs. Missouri Public Entity Risk Management - Fund
    - Author:  Mark D. Pfeiffer, Judge  Vote:  Affirmed. Newton, p.J. - and Martin, JJ., concur -
      -
    - - - - - - -
    - WD76647: Overview/Summary
    - State of Missouri vs. Stephen D. Wright
    - Author:  Karen King Mitchell, Judge  Vote:  Dismissed & - remanded. Martin, P.J. and Pfeiffer, JJ., concur -
      -
    - - - - - - -
    - WD76646: Overview/Summary
    - State of Missouri vs. Travis Lovett
    - Author:  Joseph M. Ellis, Judge  Vote:  Dismissed & remanded. - Welsh, C.J. and Rhodes, Sp. J., concur -
      -
    - - - - - - -
    - WD76470: Overview/Summary
    - Rocking H Trucking, LLC, and John Payne Harrison, IV vs. - H.B.I.C., LLC, Michelle Alderson, and David Fenton, D.V.M.
    - Author:  Mark D. Pfeiffer, Judge  Vote:  Dismissed. Newton, P.J. - and Martin, JJ., concur -
      -
    - - - - - - -
    - WD76419: Overview/Summary
    - Christopher Estes vs. Cole County of Missouri, et al
    - Author:  Cynthia L. Martin, Judge  Vote:  Affirmed. Newton, P.J. - and Pfeiffer, JJ., concur -
      -
    - - - - - - -
    - WD76356: Overview/Summary
    - Ericka J. Sauvain, Amy Leigh Sauvain, by Next Friend Ericka J. - Sauvain, and Bonnie S. Hughes vs. Acceptance Indemnity Insurance Company
    - Author:  Mark D. Pfeiffer, Judge  Vote:  Affirmed. Martin, P.J. - and Mitchell, JJ., concur -
      -
    - - - - - - -
    - WD76304: Overview/Summary
    - State of Missouri vs. Henry L. Sutton, III
    - Author:  Cynthia L. Martin, Judge  Vote:  Affirmed. Newton, P.J. - and Pfeiffer, JJ., concur -
      -
    - - -
    - - - - - - - - -
    - WDOrder04-15-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD76589: Overview/Summary
    - Brian Hauge and Susan Hanley vs. Trustees of Highlands of - Chesterfield
    - Author:  James E. Welsh, Chief Judge  Vote:  Affirmed. Ellis, - JJ. and Russell, Sp. J., concur -
      -
    - - - - - - -
    - WD76552: Overview/Summary
    - In the Matter of the Estate of M. Stanley Ginn, Deceased, Nancy - Almond, Personal Representative (Administrator De Bonis Non) and Individually vs. Carrie Almond, et - al
    - Author:  James E. Welsh, Chief Judge  Vote:  Affirmed. Ellis, - JJ. and Russell, Sp. J., concur -
      -
    - - - - - - -
    - WD76414: Overview/Summary
    - Kwang H. Kim vs. Won Il Kim
    - Author:  James E. Welsh, Chief Judge  Vote:  Dismissed. Ellis, - JJ. and Newton, JJ., concur -
      -
    - - - - - - -
    - WD76228: Overview/Summary
    - David A. Kline vs. State of Missouri
    - Author:  Alok Ahuja, Judge  Vote:  Affirmed. Witt, P.J. and - Hardwick, JJ., concur -
      -
    - - - - - - -
    - WD76102: Overview/Summary
    - Central Bank of Kansas City vs. donald Perry, et ux
    - Author:  Alok Ahuja, Presiding Judge  Vote:  Affirmed. Newton, - JJ. and Gabbert, JJ., concur -
      -
    - - - - - - -
    - WD75982: Overview/Summary
    - Cindy Walden vs. Kenneth Smith and American Family Mutual - Insurance Company
    - Author:  Cynthia L. Martin, Presiding Judge  Vote:  Affirmed. - Pfeiffer, JJ., and Mitchell, JJ., concur -
      -
    - - - - - - -
    - WD75944: Overview/Summary
    - Deborah Barkley vs. McKeever Enterprises, Inc. D/B/A Price - Chopper
    - Author:  Thomas H. Newton, Judge  Vote:  Affirmed. Ahuja, P.J., - concurs Gabbert, JJ., dissents in a separate opinion -
      -
    - - -
    - - - - - - - - -
    - WDOrder04-08-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD77031: Overview/Summary
    - State of Missouri ex rel Ideker, Inc. vs. The Honorable Jack - Grate
    - Author:  Alok Ahuja, Judge  Vote:  Writ made absolute. Hardwick, - P.J. and Mitchell, JJ., concur -
      -
    - - - - - - -
    - WD76587: Overview/Summary
    - Larry Nance (Deceased) vs. Maxon Electric, Inc., and National - Surety Corp., c/o Fireman's Fund Insurance CO
    - Author:  Mark D. Pfeiffer, Judge  Vote:  Affirmed. Martin, P.J. - and Mitchell, JJ., concur -
      -
    - - - - - - -
    - WD76513: Overview/Summary
    - Vincent Burton vs. SS Auto Inc.
    - Author:  Mark D. Pfeiffer, Judge  Vote:  Reversed & remanded - with directions. Martin, P.J. and Mitchell, JJ., concur -
      -
    - - - - - - -
    - WD76265: Overview/Summary
    - Kevin Rowan vs. Coves North Homes Association
    - Author:  Victor C. Howard, Judge  Vote:  Reversed. Gabbert, P.J. - and Newton, JJ., concur -
      -
    - - - - - - -
    - WD75983: Overview/Summary
    - Mindy L. Schler and Cindy L. Schler vs. Coves North Homes - Association
    - Author:  Victor C. Howard, Presiding Judge  Vote:  Reversed. - Gabbert, P.J. and Newton, JJ., concur -
      -
    - - - - - - -
    - WD75596: Overview/Summary
    - State of Missouri vs. Deandre J. Key
    - Author:  Karen King Mitchell, Judge  Vote:  Affirmed. Martin, - P.J. and Pfeiffer, JJ., concur -
      -
    - - - - - - -
    - WD75051 with WD75081: Overview/Summary
    - Developer Services Corporation vs. Triple J. Construction, Inc., - et al; - Brazin Excavating, Inc.
    - Author:  Alok Ahuja, Judge  Vote:  Affirmed. Welsh, C.J., - Presiding and Messina, Sp. J., concur -
      -
    - - -
    - - - - - - - - -
    - WDOrder04-01-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD76395: Overview/Summary
    - State of Missouri vs. Kathryn Avent
    - Author:  Joseph M. Ellis, Judge  Vote:  Affirmed. Howard, JJ., - concurs Pfeiffer, JJ., dissents in a separate opinion -
      -
    - - - - - - -
    - WD76321: Overview/Summary
    - Greg White vs. Cole county, Missouri, et al
    - Author:  Gary D. Witt, Presiding Judge  Vote:  Affirmed. - Hardwick, JJ., and Ahuja, JJ., concur -
      -
    - - - - - - -
    - WD76191 and WD76192: Overview/Summary
    - The Village at Deer Creek Homeowners Association, Inc. vs. - Mid-Continent Casualty Company
    - Author:  Cynthia L. Martin, Presiding Judge  Vote:  Affirmed in - part, vacated & modified in part. Pfeiffer, JJ., and Mitchell, JJ., concur -
      -
    - - - - - - -
    - WD76147: Overview/Summary
    - Greg Hall vs. Lowell Fox and Gina Fox, et al
    - Author:  Anthony Rex Gabbert, Presiding Judge  Vote:  Affirmed. - Howard, JJ., Fischer, SpJ., concur -
      -
    - - - - - - -
    - WD75850: Overview/Summary
    - State of Missouri vs. Daniel A. Ivey
    - Author:  Cynthia L. Martin, Presiding Judge  Vote:  Affirmed. - Pfeiffer, JJ., and Mitchell, JJ., concur -
      -
    - - -
    - - - - - - - - -
    - WDOrder03-25-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD76689: Overview/Summary
    - Troy Marlin Hill vs. Director of Revenue
    - Author:  Cynthia L. Martin, Presiding Judge  Vote:  Affirmed. - Pfeiffer, JJ. and Mitchell, JJ., concur -
      -
    - - - - - - -
    - WD76353: Overview/Summary
    - AG Processing, Inc. vs. KCP&L Greater Missouri Operations - Company; Missouri Public Service Commission; Triumph Foods, LLC
    - Author:  Lisa White Hardwick, Judge  Vote:  Dismissed. Witt, - P.J. and Ahuja, JJ., concur -
      -
    - - - - - - -
    - WD76046 and WD76387 and WD76388: Overview/Summary
    - MacKenzie Sheridan vs. Division of Employment Security
    - Author:  Gary D. Witt, Presiding Judge  Vote:  Reversed & - remanded. Hardwick, JJ. and Ahuja, JJ., concur -
      -
    - - - - - - -
    - WD75765: Overview/Summary
    - State of Missouri vs. Chane Nutt
    - Author:  Thomas H. Newton, Judge  Vote:  Reversed & remanded. - Gabbert, P.J. and Howard, JJ., concur -
      -
    - - - - - - -
    - WD75688: Overview/Summary
    - Taqwa Thompson vs. State of Missouri
    - Author:  Victor C. Howard, Judge  Vote:  Affirmed. Gabbert, P.J. - and Newton, JJ., concur -
      -
    - - -
    - - - - - - - - -
    - WDOrder03-18-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD75618: Overview/Summary
    - Craig Herrington - vs. - Medevac Medical Response, Inc.
    - Author:  Thomas H. Newton, Judge  Vote:  Affirmed. Gabbert, P.J. - and Howard, JJ., concur -
      -
    - - -
    - - - - - - - - -
    - WDOrder03-11-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD77056: Overview/Summary
    - Rex A. Sinquefield and Travis Brown vs. Todd J. Jones and - Missouri Roundtable for Life
    - Author:  Victor C. Howard, Judge  Vote:  Reversed & remanded. - Welsh, C.J. and Newton, JJ., concur -
      -
    - - - - - - -
    - WD76464: Overview/Summary
    - The Salvation Army, Kansas and Western Missouri Division vs. Bank - of America, et al
    - Author:  Mark D. Pfeiffer, Judge  Vote:  Affirmed. Martin, P.J. - and Mitchell, JJ., concur -
      -
    - - - - - - -
    - WD76155: Overview/Summary
    - John Doe B.P. vs. Catholic Diocese of Kansas City-St. - Joseph
    - Author:  Joseph M. Ellis, Judge  Vote:  Affirmed. Welsh, P.J., - and Harman, Sp. J., concur -
      -
    - - - - - - -
    - WD76128: Overview/Summary
    - State of Missouri vs. Nelson E. Hopkins
    - Author:  Karen King Mitchell, Judge  Vote:  Dismissed. Martin, - P.J. and Pfeiffer, JJ., concur -
      -
    - - - - - - -
    - WD75934: Overview/Summary
    - Tricia Barron vs. Division of Employment Security
    - Author:  Alok Ahuja, Judge  Vote:  Reversed & remanded. Witt, - P.J. and Hardwick, JJ., concur -
      -
    - - - - - - -
    - WD75863: Overview/Summary
    - Tylicee S. Greene vs. Alliance Automotive, Inc. D/B/A JD Byrider - and AutoBanc-2 Corporation D/B/A CNAC
    - Author:  Anthony Rex Gabbert, Judge  Vote:  Affirmed. Howard, - P.J. and Ellis, JJ., concur -
      -
    - - -
    - - - - - - - - -
    - WDOrder03-04-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD76551: Overview/Summary
    - In the Interest of: T.J.P., Jr. - Juvenile Officer vs. - T.L. (Mother)
    - Author:  Karen King Mitchell, Judge  Vote:  Affirmed. Martin, - P.J. and Pfeiffer, JJ., concur -
      -
    - - - - - - -
    - WD76396: Overview/Summary
    - Charles Rademan vs. Al Scheppers Motor Company and Division of - Employment - Security
    - Author:  Anthony Rex Gabbert, Presiding Judge  Vote:  Dismissed. - Howard, JJ., and Newton, JJ., concur -
      -
    - - - - - - -
    - WD76381: Overview/Summary
    - C.I.A. vs. T.E.
    - Author:  Victor c. Howard, Judge  Vote:  Dismissed as moot. - Gabbert, P.J., and Newton, JJ., concur -
      -
    - - - - - - -
    - WD76303: Overview/Summary
    - Juvenile Officer - W.J., S.C. and C.M. vs. - A.S.M. (Mother)
    - Author:  Cynthia L. Martin, Presiding Judge  Vote:  Affirmed. - Pfeiffer, JJ., and Mitchell, JJ., concur -
      -
    - - - - - - -
    - WD75698: Overview/Summary
    - State of Missouri vs. Joseph B. Sprofera
    - Author:  Joseph M. Ellis,Judge  Vote:  Affirmed in part, - reversed & remanded in part. Welsh, C.J., and Witt, JJ., concur -
      -
    - - - - - - -
    - WD75669: Overview/Summary
    - Kenneth G. Middleton vs. State of Missouri
    - Author:  Anthony Rex Gabbert, Judge  Vote:  Affirmed. Ahuja, - P.J., and Newton, JJ., concur -
      -
    - - -
    - - - - - - - - -
    - WDOrder02-25-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD76584: Overview/Summary
    - Jenn Baier vs. Darden Restaurants, et al
    - Author:  Cynthia L. Martin, Presiding Judge  Vote:  Affirmed. - Witt, JJ., and Fischer, Sp. J., concur -
      -
    - - - - - - -
    - WD75582: Overview/Summary
    - State of Missouri vs. Maura Celis-Garcia
    - Author:  Gary Witt, Presiding Judge  Vote:  Affirmed. Hardwick, - JJ., and Ahuja, JJ., concur -
      -
    - - - - - - -
    - WD74429: Overview/Summary
    - City of Harrisonville vs. McCall Service Stations d/b/a Big Tank - Oil, et al; - The Missouri Petroleum Storage Tank Insurance Func
    - Author:  Alok Ahuja, Presiding Judge  Vote:  Affirmed as - modified. Pfeiffer, JJ., and Gabbert, JJ., concur -
      -
    - - - - - - -
    - WD74285: Overview/Summary
    - State of Missouri vs. Trent L. Williams
    - Author:  Mark D. Pfeiffer, Judge  Vote:  Affirmed in part, - reversed in part & remanded. Martin, P.J., and Mitchell, JJ., concur -
      -
    - - -
    - - - - - - - - -
    - WDOrder02-18-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD76644: Overview/Summary
    - Jay Wolfe Used Cars of Blue Springs, LLC D/B/A Jay Wolfe Auto - Outlet vs. - Tyrell C. Jackson and Liane K. Jackson, on Their Own Behalf and on Behalf of All Others Similarly - Situated
    - Author:  Cynthia L. Martin, Presiding Judge  Vote:  Affirmed. - Witt, JJ., and Fischer, Sp. J., concur -
      -
    - - - - - - -
    - WD75335: Overview/Summary
    - State of Missouri vs. Antonio West
    - Author:  Gary D. Witt, Judge  Vote:  Affirmed. Martin, P.J., and - Fischer, Sp. J.,, concur -
      -
    - - -
    - - - - - - - - -
    - WDOrder02-04-2013:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD76383: Overview/Summary
    - Tracy Gunn vs. Division of Employment Security
    - Author:  Thomas H. Newton, Judge  Vote:  Affirmed. Ahuja, P.J., - and Gabbert, JJ., concur -
      -
    - - - - - - -
    - WD76338: Overview/Summary
    - Dawn Stewart vs. Division of Employment Security
    - Author:  Anthony Rex Gabbert, Judge  Vote:  Reversed & remanded. - Ahuja, P.J., and Newton, JJ., concur -
      -
    - - - - - - -
    - WD76197: Overview/Summary
    - Shana Medley vs. Division of Employment Security
    - Author:  Anthony Rex Gabbert, Presiding Judge  Vote:  Dismissed. - Howard, JJ., and Newton, JJ., concur -
      -
    - - - - - - -
    - WD75874: Overview/Summary
    - Michael W. Schlax vs. State of Missouri
    - Author:  Lisa White Hardwick, Judge  Vote:  Affirmed. Witt, - P.J., and Ahuja, JJ., concur -
      -
    - - -
    - - - - - - - - -
    - WDOrder01-28-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD76415: Overview/Summary
    - Darnay Session vs. Director of Revenue
    - Author:  Anthony Rex Gabbert, Judge  Vote:  Affirmed. Ahuja, - P.J. and Newton, JJ., concur -
      -
    - - - - - - -
    - WD76174: Overview/Summary
    - Blythe M. Groff vs. Robert M. Groff
    - Author:  Thomas H. Newton, Judge  Vote:  Dismissed as moot. - Ahuja, P.J. and Gabbert, JJ., concur -
      -
    - - - - - - -
    - WD76164 and WD76165: Overview/Summary
    - In the Matter of Kansas City Power & Light Company's Request for - Authority to Implement a General Rate Increase for Electric Service vs. Midwest Energy Consumers Group; - Office of Public Counsel; Missouri Public Service Commission; Dogwood Energy, Inc.; Union Electric D/B/A - Ameren Missouri
    - Author:  Anthony Rex Gabbert, Judge  Vote:  Dismissed. Newton, - P.J. and Gabbert, JJ., concur -
      -
    - - - - - - -
    - WD76105: Overview/Summary
    - Joseph Sanders vs. Division of Employment Security
    - Author:  Cynthia L. Martin, Presiding Judge  Vote:  Affirmed. - Pfeiffer, JJ. and Mitchell, JJ., concur -
      -
    - - -
    - - - - - - - - -
    - WDOrder01-21-2013:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD75532: Overview/Summary
    - Shawn Stevens vs. Markirk Construction, Inc. - Kirk Jones and Damar Development, Inc.
    - Author:  Lisa White Hardwick, Judge  Vote:  Reversed & remanded. - Mitchell, P.J., and Witt, JJ., concur -
      -
    - - - - - - -
    - WD75283: Overview/Summary
    - Terrance Robinson vs. State of Missouri
    - Author:  Joseph M. Ellis,Judge  Vote:  Vacated in part & - remanded. Pfeiffer, P.J., and Howard, JJ., concur -
      -
    - - - - - - -
    - WD74940: Overview/Summary
    - Adam Dutton vs. American Family Mutual Insurance Company
    - Author:  Gary D. Witt, Judge  Vote:  Reversed. Ellis, JJ., - Howard, JJ., Newton JJ., Pfeiffer., JJ Gabbert. JJ.,Concur, Dissenting Opinion by Judge Ahuja., Joined by - Welsh, CJ., Hardwick, JJ., Mitchell, JJ., Dissenting Opinion by Judge Martin, Joined by Welsh, CJ., - Hardwick, JJ., Ahuja, JJ., Mitchell, JJ -
      -
    - - -
    - - - - - - - - -
    - WDOrder01-14-2014:  - Orders Pursuant to Rules 30.25(b) and/or 84.16(b) -    -
      -
    - - - - - - -
    - WD76602 amd WD76603: Overview/Summary
    - Gary Scott vs. Treasurer of The State of Missouri-Custodian of - The Second Injury Fund
    - Author:  Mark D. Pfeiffer, Presiding Judge  Vote:  Reversed & - remanded. Ellis, JJ. and Howard, JJ., concur -
      -
    - - - - - - -
    - WD76509: Overview/Summary
    - In The Matter of The Application of Laclede Gas Company D/B/A - Missouri Gas Energy, For Approval to Change its Infrastructure System Replacement Surcharge; - Public Service Commission of The State of Missouri vs. The Office of Public Counsel
    - Author:  James Edward Welsh, Chief Judge Presiding  Vote:  Affirmed. - Martin, JJ. and Robb, Sp. J., concur -
      -
    - - - - - - -
    - WD76280: Overview/Summary
    - In The Matter of Foreclosure of Liens for Delinquent Land Taaxes - By Action in Rem: Collector of Revenue, by and Through The Director of Collections for Jackson County, - Missouri vs. Terry Holton, Christina McIntosh
    - Author:  Karen King Mitchell, Presiding Judge  Vote:  Reversed - with directions. Hardwick, JJ. and Witt, JJ., concur -
      -
    - - - - - - -
    - WD76276 and WD76347: Overview/Summary
    - Federal National Mortgage Association and Nationstar Mortgage, - LLC vs. Jeffrey A. Conover, et al
    - Author:  Mark D. Pfeiffer, Presiding Judge  Vote:  Reversed & - remanded. Ellis, JJ. and Howard, JJ., concur -
      -
    - - - - - - -
    - WD76068 & WD76110: Overview/Summary
    - City of North Kansas City, Missouri vs. K.C. Beaton Holding - Company, LLC, et al; Platte Valley Bank of Missouri and Keith Hicklin
    - Author:  James E. Welsh, Chief Judge  Vote:  Affirmed. Cross - Appeal dismissed. Martin, JJ. and robb, Sp. J., concur -
      -
    - - - - - - -
    - WD75878: Overview/Summary
    - State of Missouri vs. Hector C. Castro
    - Author:  Gary D. Witt, Judge  Vote:  Dismissed as moot. - Mitchell, P.J. and Hardwick, JJ., concur -
      -
    - - -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + WDOrder 01-03-2023:   + Orders Pursuant to Rules 30.25(b) and/or 84.16(b) + +
    +
    + + +
    +
    +
    +
    +
    + + +
    +
    +
    + + -
    - - + + +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/mont_example.compare.json b/tests/examples/opinions/united_states/mont_example.compare.json index 8d518948b..d37747893 100644 --- a/tests/examples/opinions/united_states/mont_example.compare.json +++ b/tests/examples/opinions/united_states/mont_example.compare.json @@ -8,7 +8,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 19-0388", "nature_of_suit": "Direct Appeal", - "summaries": "Order - Grant - Extension of Time Appellant is granted an extension of time to and including April 6, 2020, within which to prepare, file, and serve Appellant's opening brief on appeal.", + "summaries": "Order - Grant - Extension of Time; Appellant is granted an extension of time to and including April 6, 2020, within which to prepare, file, and serve Appellant's opening brief on appeal.", "case_name_shorts": "" }, { @@ -176,7 +176,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 19-0202", "nature_of_suit": "Direct Appeal", - "summaries": "Order - the motion to supplement the record and stay briefing schedule is GRANTED pending filing of additional transcripts upon filing of the transcripts Appellant's Opening Brief shall be due in 30 days.", + "summaries": "Order - the motion to supplement the record and stay briefing schedule is GRANTED pending filing of additional transcripts; upon filing of the transcripts Appellant's Opening Brief shall be due in 30 days.", "case_name_shorts": "" }, { @@ -188,7 +188,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 19-0455", "nature_of_suit": "Direct Appeal", - "summaries": "Order - Grant - Extension of Time Appellant is granted an extension of time to and including April 6, 2020, within which to prepare, file, and serve Appellant's opening brief on appeal.", + "summaries": "Order - Grant - Extension of Time; Appellant is granted an extension of time to and including April 6, 2020, within which to prepare, file, and serve Appellant's opening brief on appeal.", "case_name_shorts": "" }, { @@ -200,7 +200,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 19-0395", "nature_of_suit": "Direct Appeal", - "summaries": "Order - Grant - Extension of Time Appellant is granted an extension of time to and including April 8, 2020, within which to prepare, file, and serve Appellant's opening brief on appeal.", + "summaries": "Order - Grant - Extension of Time; Appellant is granted an extension of time to and including April 8, 2020, within which to prepare, file, and serve Appellant's opening brief on appeal.", "case_name_shorts": "" }, { @@ -212,7 +212,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 19-0569", "nature_of_suit": "Direct Appeal", - "summaries": "Order - Grant - Extension of Time Appellant is granted an extension of time to and including April 8, 2020, within which to prepare, file, and serve Appellant's opening brief on appeal.", + "summaries": "Order - Grant - Extension of Time; Appellant is granted an extension of time to and including April 8, 2020, within which to prepare, file, and serve Appellant's opening brief on appeal.", "case_name_shorts": "Cox" }, { @@ -260,7 +260,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 19-0497", "nature_of_suit": "Direct Appeal", - "summaries": "Order - Grant - Extension of TimeAppellant is granted an extension of time to and including April 6, 2020, within which to prepare, file, and serve Appellant's opening brief on appeal.", + "summaries": "Order - Grant - Extension of Time;Appellant is granted an extension of time to and including April 6, 2020, within which to prepare, file, and serve Appellant's opening brief on appeal.", "case_name_shorts": "" }, { @@ -344,7 +344,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 17-0697", "nature_of_suit": "Direct Appeal", - "summaries": "Extension - Grant of Extension - Appellant is given until 3/30/20 to file the reply brief no further extensions will be granted.", + "summaries": "Extension - Grant of Extension - Appellant is given until 3/30/20 to file the reply brief; no further extensions will be granted.", "case_name_shorts": "" }, { @@ -632,7 +632,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 18-0087", "nature_of_suit": "Direct Appeal", - "summaries": "Extension - Grant of Extension - Appellant is given until 4/2/20 to file the reply brief no further extensions will be granted.", + "summaries": "Extension - Grant of Extension - Appellant is given until 4/2/20 to file the reply brief; no further extensions will be granted.", "case_name_shorts": "" }, { @@ -692,7 +692,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 19-0733", "nature_of_suit": "Direct Appeal", - "summaries": "Order - Deficiencies-Brief - Appellant's Opening Brief returned to comply with Rules 12(1)-subsections 12(1)(b)-(f)-statement of issues, procedural background, review, summary of argument Rule 12(1)(d)-references to record.", + "summaries": "Order - Deficiencies-Brief - Appellant's Opening Brief returned to comply with Rules 12(1)-subsections; 12(1)(b)-(f)-statement of issues, procedural background, review, summary of argument; Rule 12(1)(d)-references to record.", "case_name_shorts": "McAdam" }, { @@ -776,7 +776,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 18-0092", "nature_of_suit": "Direct Appeal", - "summaries": "Order - the DC Judgment of 1/4/18 is REVERSED Harris's conviction is VACATED this matter is REMANDED to the 4th Judicial District, Missoula County, with instructions to assign this matter to a different judge.", + "summaries": "Order - the DC Judgment of 1/4/18 is REVERSED; Harris's conviction is VACATED; this matter is REMANDED to the 4th Judicial District, Missoula County, with instructions to assign this matter to a different judge.", "case_name_shorts": "" }, { @@ -800,7 +800,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 19-0317", "nature_of_suit": "Direct Appeal", - "summaries": "Order - Grant - Extension of Time Appellant is granted an extension of time to and including April 8, 2020, within which to prepare, file, and serve Appellant's opening brief", + "summaries": "Order - Grant - Extension of Time; Appellant is granted an extension of time to and including April 8, 2020, within which to prepare, file, and serve Appellant's opening brief", "case_name_shorts": "" }, { @@ -1076,7 +1076,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 19-0591", "nature_of_suit": "Direct Appeal", - "summaries": "Order - Deficiencies-Brief - within 30 days, Appellant shall file the exhibits referenced in the opening brief subsequent briefing shall run from the date of filing the exhibits.", + "summaries": "Order - Deficiencies-Brief - within 30 days, Appellant shall file the exhibits referenced in the opening brief; subsequent briefing shall run from the date of filing the exhibits.", "case_name_shorts": "" }, { @@ -1412,7 +1412,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 19-0057", "nature_of_suit": "Direct Appeal", - "summaries": "Order - Grant - Extension of Time - Appellant is granted until 4/17/20 to file the opening brief no further extensions will be granted.", + "summaries": "Order - Grant - Extension of Time - Appellant is granted until 4/17/20 to file the opening brief; no further extensions will be granted.", "case_name_shorts": "" }, { @@ -2024,7 +2024,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 20-0091", "nature_of_suit": "Direct Appeal", - "summaries": "Order - the petition for out of time appeal is GRANTED OAD shall have 30 days to file a notice of appeal and request for transcripts.", + "summaries": "Order - the petition for out of time appeal is GRANTED; OAD shall have 30 days to file a notice of appeal and request for transcripts.", "case_name_shorts": "" }, { @@ -2144,7 +2144,7 @@ "date_filed_is_approximate": false, "docket_numbers": "PR 06-0544", "nature_of_suit": "Professional Regulation", - "summaries": "Order - the petition of MICHELLE LYNN GOMEZ for reinstatement to active status is GRANTED upon payment of any dues or fees Gomez shall be reinstated.", + "summaries": "Order - the petition of MICHELLE LYNN GOMEZ for reinstatement to active status is GRANTED; upon payment of any dues or fees Gomez shall be reinstated.", "case_name_shorts": "Petition for Reinstatement" }, { @@ -2156,7 +2156,7 @@ "date_filed_is_approximate": false, "docket_numbers": "PR 06-0544", "nature_of_suit": "Professional Regulation", - "summaries": "Order - the petition of ETHAN BLEVINS for reinstatement to active status is GRANTED upon payment of any dues or fees Blevins shall be reinstated.", + "summaries": "Order - the petition of ETHAN BLEVINS for reinstatement to active status is GRANTED; upon payment of any dues or fees Blevins shall be reinstated.", "case_name_shorts": "Petition for Reinstatement" }, { @@ -2168,7 +2168,7 @@ "date_filed_is_approximate": false, "docket_numbers": "OP 20-0063", "nature_of_suit": "Original Proceeding", - "summaries": "Order - the motion of Montana Board of Investments (MBOI) for leave to file an amicus brief is GRANTED the brief shall be due by 2/25/20.", + "summaries": "Order - the motion of Montana Board of Investments (MBOI) for leave to file an amicus brief is GRANTED; the brief shall be due by 2/25/20.", "case_name_shorts": "PERB" }, { @@ -2276,7 +2276,7 @@ "date_filed_is_approximate": false, "docket_numbers": "DA 19-0282", "nature_of_suit": "Direct Appeal", - "summaries": "Opinion - Noncite/Memorandum Justice Rice Author - Affirmed in part, reversed in part and remanded.", + "summaries": "Opinion - Noncite/Memorandum; Justice Rice Author - Affirmed in part, reversed in part and remanded.", "case_name_shorts": "Marriage of Hamling" }, { diff --git a/tests/examples/opinions/united_states/nc_example.compare.json b/tests/examples/opinions/united_states/nc_example.compare.json index 622be3cb6..9b8a2b1f8 100644 --- a/tests/examples/opinions/united_states/nc_example.compare.json +++ b/tests/examples/opinions/united_states/nc_example.compare.json @@ -32,7 +32,7 @@ "date_filed_is_approximate": false, "docket_numbers": "390PA11-2", "citations": "", - "summaries": "Interlocutory appeal whether the trial court erred in denying plaintiffs' motion for class certification of their inverse condemnation claim", + "summaries": "Interlocutory appeal; whether the trial court erred in denying plaintiffs' motion for class certification of their inverse condemnation claim", "case_name_shorts": "" }, { @@ -44,7 +44,7 @@ "date_filed_is_approximate": false, "docket_numbers": "527A12", "citations": "", - "summaries": "Whether indictments charging Jones with obtaining property by false pretenses and charging his codefendant with trafficking in stolen identities were properly dismissed by the trial court whether the State offered sufficient proof of identity theft to support Jones's conviction for that offense", + "summaries": "Whether indictments charging Jones with obtaining property by false pretenses and charging his codefendant with trafficking in stolen identities were properly dismissed by the trial court; whether the State offered sufficient proof of identity theft to support Jones's conviction for that offense", "case_name_shorts": "Jones" }, { @@ -56,7 +56,7 @@ "date_filed_is_approximate": false, "docket_numbers": "333PA11-2", "citations": "", - "summaries": "On remand whether trial court erred in granting defendant's pretrial motions to suppress and to dismiss the charge of resisting a public officer", + "summaries": "On remand; whether trial court erred in granting defendant's pretrial motions to suppress and to dismiss the charge of resisting a public officer", "case_name_shorts": "Joe" }, { @@ -68,7 +68,7 @@ "date_filed_is_approximate": false, "docket_numbers": "320A13", "citations": "", - "summaries": "Firearms possession charge admissibility of evidence under Rule 404(b) about defendant's previous arrest whether defendant properly preserved the issue he argued on appeal", + "summaries": "Firearms possession charge; admissibility of evidence under Rule 404(b) about defendant's previous arrest; whether defendant properly preserved the issue he argued on appeal", "case_name_shorts": "Howard" }, { @@ -92,7 +92,7 @@ "date_filed_is_approximate": false, "docket_numbers": "302PA13", "citations": "", - "summaries": "Whether DSS can voluntarily dismiss a juvenile petition alleging abuse and neglect before an adjudication hearing is held interpretation of N.C. R. Civ. P. 41(a) in conjunction with N.C.G.S. \u00a7 7B-201(a)", + "summaries": "Whether DSS can voluntarily dismiss a juvenile petition alleging abuse and neglect before an adjudication hearing is held; interpretation of N.C. R. Civ. P. 41(a) in conjunction with N.C.G.S. \u00a7 7B-201(a)", "case_name_shorts": "In re E.H." }, { @@ -104,7 +104,7 @@ "date_filed_is_approximate": false, "docket_numbers": "116PA13", "citations": "", - "summaries": "Workers' Compensation whether plaintiff's decedent, an employee of a temporary agency that assigned him to work at a County facility, was also a County employee under the special employment doctrine", + "summaries": "Workers' Compensation; whether plaintiff's decedent, an employee of a temporary agency that assigned him to work at a County facility, was also a County employee under the special employment doctrine", "case_name_shorts": "Pearson" }, { @@ -116,7 +116,7 @@ "date_filed_is_approximate": false, "docket_numbers": "291PA12", "citations": "", - "summaries": "Whether a defendant's Confrontation Clause rights were violated when a witness who did not conduct tests identifying a substance as opium testified to the results of an analysis done by a nontestifying chemist application of the waiver provisions of N.C.G.S. \u00a7 90-95(g)", + "summaries": "Whether a defendant's Confrontation Clause rights were violated when a witness who did not conduct tests identifying a substance as opium testified to the results of an analysis done by a nontestifying chemist; application of the waiver provisions of N.C.G.S. \u00a7 90-95(g)", "case_name_shorts": "Whittington" }, { @@ -128,7 +128,7 @@ "date_filed_is_approximate": false, "docket_numbers": "79A13", "citations": "", - "summaries": "Action to recover balance due on a purchase money promissory note and secured by a purchase money deed of trust trial court's grant of partial summary judgment for amount due on note whether the trial court made an error of law for which defendant is entitled to amendment of the partial summary judgment order", + "summaries": "Action to recover balance due on a purchase money promissory note and secured by a purchase money deed of trust; trial court's grant of partial summary judgment for amount due on note; whether the trial court made an error of law for which defendant is entitled to amendment of the partial summary judgment order", "case_name_shorts": "" }, { diff --git a/tests/examples/opinions/united_states/ncctapp_example_2013.compare.json b/tests/examples/opinions/united_states/ncctapp_example_2013.compare.json index 4b71fba2c..2411eb52d 100644 --- a/tests/examples/opinions/united_states/ncctapp_example_2013.compare.json +++ b/tests/examples/opinions/united_states/ncctapp_example_2013.compare.json @@ -32,7 +32,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-425", "citations": "", - "summaries": "Breach of trust reappointment of trustee.", + "summaries": "Breach of trust; reappointment of trustee.", "case_name_shorts": "McCrea" }, { @@ -56,7 +56,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-578", "citations": "", - "summaries": "State actor security guard", + "summaries": "State actor; security guard", "case_name_shorts": "Weaver" }, { @@ -92,7 +92,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-308", "citations": "", - "summaries": "Assault inflicting serious injury Acting in concert Jury instruction or lesser-8included offense Jail fees", + "summaries": "Assault inflicting serious injury; Acting in concert; Jury instruction or lesser-8included offense; Jail fees", "case_name_shorts": "Rowe" }, { @@ -116,7 +116,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-717", "citations": "", - "summaries": "Law of the case resentencing new evidence", + "summaries": "Law of the case; resentencing; new evidence", "case_name_shorts": "Paul" }, { @@ -188,7 +188,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-559", "citations": "", - "summaries": "Constitutional Law, effective assistance of counsel request for appointment of substitute counsel double jeopardy punishment for both kidnapping and underlying sexual assault", + "summaries": "Constitutional Law, effective assistance of counsel; request for appointment of substitute counsel; double jeopardy punishment for both kidnapping and underlying sexual assault", "case_name_shorts": "Holloman" }, { @@ -260,7 +260,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-561", "citations": "", - "summaries": "Premeditation deliberation affirmative defenses", + "summaries": "Premeditation; deliberation; affirmative defenses", "case_name_shorts": "" }, { @@ -296,7 +296,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-329", "citations": "", - "summaries": "Malicious Prosecution Probable Cause Motion to Dismiss", + "summaries": "Malicious Prosecution; Probable Cause; Motion to Dismiss", "case_name_shorts": "Simpson" }, { @@ -308,7 +308,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-278", "citations": "", - "summaries": "Evidence Rule 403 analysis", + "summaries": "Evidence; Rule 403 analysis", "case_name_shorts": "Schmidt" }, { @@ -320,7 +320,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-714", "citations": "", - "summaries": "Modification of alimony and child support Attorney's fees", + "summaries": "Modification of alimony and child support; Attorney's fees", "case_name_shorts": "Parsons" }, { @@ -332,7 +332,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1485", "citations": "", - "summaries": "Workers' Compensation Arising out of and in the course of", + "summaries": "Workers' Compensation; Arising out of and in the course of", "case_name_shorts": "Morgan" }, { @@ -356,7 +356,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-379", "citations": "", - "summaries": "Failure to Mitigate Damages Excessive Damages", + "summaries": "Failure to Mitigate Damages; Excessive Damages", "case_name_shorts": "Lloyd" }, { @@ -368,7 +368,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-446", "citations": "", - "summaries": "Career status whole record test arbitrary and capricious", + "summaries": "Career status; whole record test; arbitrary and capricious", "case_name_shorts": "Joyner" }, { @@ -440,7 +440,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-610", "citations": "", - "summaries": "End of Probation Modification Motion Prior History Points", + "summaries": "End of Probation; Modification Motion; Prior History Points", "case_name_shorts": "In re A.F." }, { @@ -512,7 +512,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-352", "citations": "", - "summaries": "Arbitration Class Action Waiver", + "summaries": "Arbitration; Class Action; Waiver", "case_name_shorts": "Elliott" }, { @@ -548,7 +548,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-696", "citations": "", - "summaries": "Venue Forum Selection Clauses Consent to Jurisdiction Clauses", + "summaries": "Venue; Forum Selection Clauses; Consent to Jurisdiction Clauses", "case_name_shorts": "Cameron" }, { @@ -644,7 +644,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-517", "citations": "", - "summaries": "Workers Compensation-Insurance Policy-Plain Language Workers Compensation-scope of review Workers Compensation-G.S. 97-86.1(d) Reimbursement", + "summaries": "Workers Compensation-Insurance Policy-Plain Language; Workers Compensation-scope of review; Workers Compensation-G.S. 97-86.1(d) Reimbursement", "case_name_shorts": "Tovar-Mauricio" }, { @@ -692,7 +692,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-283", "citations": "", - "summaries": "admissibility of evidence under Rules 401, 402, 403 (photographs & testimony) motion to dismiss - sufficiency of evidence", + "summaries": "admissibility of evidence under Rules 401, 402, 403 (photographs & testimony); motion to dismiss - sufficiency of evidence", "case_name_shorts": "Stewart" }, { @@ -776,7 +776,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-593", "citations": "", - "summaries": "maximum month sentencing correction correction of defendant's prior record level point calculation", + "summaries": "maximum month sentencing correction; correction of defendant's prior record level point calculation", "case_name_shorts": "Powell" }, { @@ -860,7 +860,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-115", "citations": "", - "summaries": "Jurisdiction felonious restraint based on fraud", + "summaries": "Jurisdiction; felonious restraint based on fraud", "case_name_shorts": "Lalinde" }, { @@ -872,7 +872,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-286", "citations": "", - "summaries": "satellite-based monitoring (SBM) ex post facto law search and seizure", + "summaries": "satellite-based monitoring (SBM); ex post facto law; search and seizure", "case_name_shorts": "Jones" }, { @@ -896,7 +896,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-632", "citations": "", - "summaries": "Sufficiency of the evidence Second degree murder Involuntary manslaughter Remanding for judgment on a lesser included offense", + "summaries": "Sufficiency of the evidence; Second degree murder; Involuntary manslaughter; Remanding for judgment on a lesser included offense", "case_name_shorts": "Hatcher" }, { @@ -968,7 +968,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-276", "citations": "", - "summaries": "Fourth Amendment warrantless search exigent circumstances withdrawal of a blood sample DUI totality of the circumstances", + "summaries": "Fourth Amendment; warrantless search; exigent circumstances; withdrawal of a blood sample; DUI; totality of the circumstances", "case_name_shorts": "Dahlquist" }, { @@ -1088,7 +1088,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-667", "citations": "", - "summaries": "First Degree Burglary Sufficiency of the Evidence of Defendant?s Intent to Commit a Felony Within the Structure Entered Validity of Visitation-Related Condition of Probation", + "summaries": "First Degree Burglary; Sufficiency of the Evidence of Defendant?s Intent to Commit a Felony Within the Structure Entered; Validity of Visitation-Related Condition of Probation", "case_name_shorts": "Allah" }, { @@ -1124,7 +1124,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-144", "citations": "", - "summaries": "Summary Judgment Actual Authority Manager of LLC.", + "summaries": "Summary Judgment; Actual Authority; Manager of LLC.", "case_name_shorts": "" }, { @@ -1148,7 +1148,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-249", "citations": "", - "summaries": "Equitable distribution commission bonus attorney fees", + "summaries": "Equitable distribution; commission; bonus; attorney fees", "case_name_shorts": "Simon" }, { @@ -1184,7 +1184,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-534", "citations": "", - "summaries": "Motion to dismiss Statute of limitations Legal malpractice", + "summaries": "Motion to dismiss; Statute of limitations; Legal malpractice", "case_name_shorts": "Podrebarac" }, { @@ -1256,7 +1256,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-324", "citations": "", - "summaries": "Foreclosure standing holder of note real party in interest appeal to superior court", + "summaries": "Foreclosure; standing; holder of note; real party in interest; appeal to superior court", "case_name_shorts": "In re Webb" }, { @@ -1340,7 +1340,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-325", "citations": "", - "summaries": "Workers' Compensation Frustration of purpose Restitution", + "summaries": "Workers' Compensation; Frustration of purpose; Restitution", "case_name_shorts": "Holmes" }, { @@ -1352,7 +1352,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-331", "citations": "", - "summaries": "Guarantor N.C.G.S. Sec. 45-21.36 offset defense", + "summaries": "Guarantor; N.C.G.S. Sec. 45-21.36; offset defense", "case_name_shorts": "" }, { @@ -1364,7 +1364,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-544", "citations": "", - "summaries": "Motion to set aside separation agreement Mutual mistake", + "summaries": "Motion to set aside separation agreement; Mutual mistake", "case_name_shorts": "Herring" }, { @@ -1376,7 +1376,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-629", "citations": "", - "summaries": "Attorney's fees N.C.G.S. \u00a7 50-13", + "summaries": "Attorney's fees; N.C.G.S. \u00a7 50-13", "case_name_shorts": "Hennessey" }, { @@ -1400,7 +1400,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-375", "citations": "", - "summaries": "Wills Testator's Intent", + "summaries": "Wills; Testator's Intent", "case_name_shorts": "Halstead" }, { @@ -1424,7 +1424,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-687", "citations": "", - "summaries": "Custody modification substantial change in circumstances", + "summaries": "Custody modification; substantial change in circumstances", "case_name_shorts": "Gary" }, { @@ -1460,7 +1460,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-466", "citations": "", - "summaries": "Adaptive Housing Retroactive Attendant Care Cost of Life Care Plan, Attorneys' Fees Industrial Commission Rules for Rehabilitation Professionals Post-Appeal Motions at Industrial Commission", + "summaries": "Adaptive Housing; Retroactive Attendant Care; Cost of Life Care Plan, Attorneys' Fees; Industrial Commission Rules for Rehabilitation Professionals; Post-Appeal Motions at Industrial Commission", "case_name_shorts": "Espinosa" }, { @@ -1472,7 +1472,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-220", "citations": "", - "summaries": "Adaptive Housing Retroactive Attendant Care Cost of Life Care Plan Attorneys' Fees Industrial Commission Rules for Rehabilitation Professionals Post-Appeal Motions at Industrial Commission", + "summaries": "Adaptive Housing; Retroactive Attendant Care; Cost of Life Care Plan; Attorneys' Fees; Industrial Commission Rules for Rehabilitation Professionals; Post-Appeal Motions at Industrial Commission", "case_name_shorts": "Espinosa" }, { @@ -1496,7 +1496,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1044", "citations": "", - "summaries": "CON substantial prejudice", + "summaries": "CON; substantial prejudice", "case_name_shorts": "" }, { @@ -1532,7 +1532,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-246", "citations": "", - "summaries": "Probation Revocation Subject Matter Jurisdiction", + "summaries": "Probation Revocation; Subject Matter Jurisdiction", "case_name_shorts": "" }, { @@ -1568,7 +1568,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-214", "citations": "", - "summaries": "Motion to Dismiss Intimidating a Witness Prospective Witness", + "summaries": "Motion to Dismiss; Intimidating a Witness; Prospective Witness", "case_name_shorts": "Shannon" }, { @@ -1664,7 +1664,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-374", "citations": "", - "summaries": "Prior Record Level Rule 9(a)", + "summaries": "Prior Record Level; Rule 9(a)", "case_name_shorts": "Martin" }, { @@ -1748,7 +1748,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-315", "citations": "", - "summaries": "Competency Findings of Fact", + "summaries": "Competency; Findings of Fact", "case_name_shorts": "Chukwu" }, { @@ -1772,7 +1772,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-617", "citations": "", - "summaries": "Workers Compensation three or more employees", + "summaries": "Workers Compensation; three or more employees", "case_name_shorts": "Mills" }, { @@ -1796,7 +1796,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-358", "citations": "", - "summaries": "Unjust Enrichment Deed of Trust Leave to Amend", + "summaries": "Unjust Enrichment; Deed of Trust; Leave to Amend", "case_name_shorts": "Browning" }, { @@ -1820,7 +1820,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-707", "citations": "", - "summaries": "Grounds for terminating parental rights Notice", + "summaries": "Grounds for terminating parental rights; Notice", "case_name_shorts": "In re T.J.F." }, { @@ -1892,7 +1892,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-35-2", "citations": "", - "summaries": "Waiver of Notice for Permanency Plan Hearing Sufficiency of Visitation Plan Sufficiency of Findings", + "summaries": "Waiver of Notice for Permanency Plan Hearing; Sufficiency of Visitation Plan; Sufficiency of Findings", "case_name_shorts": "In re J.P." }, { @@ -1916,7 +1916,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-152", "citations": "", - "summaries": "Release Pending Appeal Juvenile Proceedings", + "summaries": "Release Pending Appeal; Juvenile Proceedings", "case_name_shorts": "In re G.C." }, { @@ -2000,7 +2000,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-426", "citations": "", - "summaries": "Railroad crossing contributory negligence, summary judgment", + "summaries": "Railroad crossing; contributory negligence, summary judgment", "case_name_shorts": "Frazier" }, { @@ -2024,7 +2024,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-619", "citations": "", - "summaries": "Child support arrearages Motion to set aside judgment", + "summaries": "Child support arrearages; Motion to set aside judgment", "case_name_shorts": "Frazier" }, { @@ -2036,7 +2036,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1546", "citations": "", - "summaries": "Interlocutory order eminent domain police power admissibility of evidence", + "summaries": "Interlocutory order; eminent domain; police power; admissibility of evidence", "case_name_shorts": "Webster" }, { @@ -2060,7 +2060,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-165", "citations": "", - "summaries": "Rule 60(b) motion to set aside default judgment irregular judgment sufficiency of complaint to allege claims against defaulting party", + "summaries": "Rule 60(b) motion to set aside default judgment; irregular judgment; sufficiency of complaint to allege claims against defaulting party", "case_name_shorts": "Brown" }, { @@ -2072,7 +2072,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-180", "citations": "", - "summaries": "Novations Promissory Note Contract construction", + "summaries": "Novations; Promissory Note; Contract construction", "case_name_shorts": "Rice" }, { @@ -2084,7 +2084,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-608", "citations": "", - "summaries": "res judicata new circumstances, Rule 59(a)(8)", + "summaries": "res judicata; new circumstances, Rule 59(a)(8)", "case_name_shorts": "" }, { @@ -2096,7 +2096,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-532", "citations": "", - "summaries": "Sovereign Immunity Comity Interlocutory Orders", + "summaries": "Sovereign Immunity; Comity; Interlocutory Orders", "case_name_shorts": "" }, { @@ -2264,7 +2264,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-37", "citations": "", - "summaries": "N.C. CONST. art. I, \u00a7 24 coerced jury verdict standard of review expert witness opinion evidence Rule 404(b) other crimes evidence", + "summaries": "N.C. CONST. art. I, \u00a7 24; coerced jury verdict; standard of review; expert witness; opinion evidence; Rule 404(b) other crimes evidence", "case_name_shorts": "May" }, { @@ -2288,7 +2288,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-492", "citations": "", - "summaries": "N.C.G.S. Sec. 14-221.2 - Altering court documents sufficiency of the evidence", + "summaries": "N.C.G.S. Sec. 14-221.2 - Altering court documents; sufficiency of the evidence", "case_name_shorts": "Martinez" }, { @@ -2300,7 +2300,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-372", "citations": "", - "summaries": "search and seizure probable cause", + "summaries": "search and seizure; probable cause", "case_name_shorts": "Malunda" }, { @@ -2372,7 +2372,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1447", "citations": "", - "summaries": "Competency to stand trial failure to inquire sua sponte motion for appropriate relief competency failure to inquire sua sponte", + "summaries": "Competency to stand trial; failure to inquire sua sponte; motion for appropriate relief; competency; failure to inquire sua sponte", "case_name_shorts": "Holland" }, { @@ -2552,7 +2552,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-124", "citations": "", - "summaries": "Interlocutory Appeal-substantial right-right to do business N.C. Constitution-prohibition on monopolies and perpetuities", + "summaries": "Interlocutory Appeal-substantial right-right to do business; N.C. Constitution-prohibition on monopolies and perpetuities", "case_name_shorts": "" }, { @@ -2624,7 +2624,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-468", "citations": "", - "summaries": "zoning-procedural due process-notice and an opportunity to be heard zoning-interpretation of an ordinance", + "summaries": "zoning-procedural due process-notice and an opportunity to be heard; zoning-interpretation of an ordinance", "case_name_shorts": "Lipinski" }, { @@ -2648,7 +2648,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-288", "citations": "", - "summaries": "Law Enforcement Certification Due process Equal protection", + "summaries": "Law Enforcement Certification; Due process; Equal protection", "case_name_shorts": "Kreuger" }, { @@ -2672,7 +2672,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1496", "citations": "", - "summaries": "Public shool activity bus Tort Claims Act Negligence N.C.G.S. Sec. 143-300.1", + "summaries": "Public shool activity bus; Tort Claims Act; Negligence; N.C.G.S. Sec. 143-300.1", "case_name_shorts": "" }, { @@ -2684,7 +2684,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-451", "citations": "", - "summaries": "Summary judgment Undue influence Testamentary capacity", + "summaries": "Summary judgment; Undue influence; Testamentary capacity", "case_name_shorts": "" }, { @@ -2696,7 +2696,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-21", "citations": "", - "summaries": "Representation of corporations DMV Hearings", + "summaries": "Representation of corporations; DMV Hearings", "case_name_shorts": "" }, { @@ -2708,7 +2708,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-435", "citations": "", - "summaries": "Electric Supplier Agreements N.C.G.S. 160A-331.2(a) Statutory construction", + "summaries": "Electric Supplier Agreements; N.C.G.S. 160A-331.2(a); Statutory construction", "case_name_shorts": "" }, { @@ -2756,7 +2756,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-600", "citations": "", - "summaries": "Inconvenient forum Necessary findings of fact Terminating review hearings Visitation", + "summaries": "Inconvenient forum; Necessary findings of fact; Terminating review hearings; Visitation", "case_name_shorts": "In re M.M." }, { @@ -2804,7 +2804,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-385", "citations": "", - "summaries": "Extension of Commitment Mootness Sufficiency of Oral Notice", + "summaries": "Extension of Commitment; Mootness; Sufficiency of Oral Notice", "case_name_shorts": "In re J.L.H." }, { @@ -2828,7 +2828,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-546", "citations": "", - "summaries": "Competent evidence Permanency planning", + "summaries": "Competent evidence; Permanency planning", "case_name_shorts": "In re C.M." }, { @@ -2900,7 +2900,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-450", "citations": "", - "summaries": "Civil Procedure Pleadings Rule 12(b)(6) Rule 15(a)", + "summaries": "Civil Procedure; Pleadings; Rule 12(b)(6); Rule 15(a)", "case_name_shorts": "Aldridge" }, { @@ -2912,7 +2912,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-403", "citations": "", - "summaries": "Suit for Legal Fees Interest on Open Account Sufficiency of Notice", + "summaries": "Suit for Legal Fees; Interest on Open Account; Sufficiency of Notice", "case_name_shorts": "Farlow" }, { @@ -2984,7 +2984,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-332", "citations": "", - "summaries": "medical causation workers' compensation", + "summaries": "medical causation; workers' compensation", "case_name_shorts": "Chaffins" }, { @@ -2996,7 +2996,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1491", "citations": "", - "summaries": "Coastal Area Management Act Setback requirements Contested Case Hearing Coastal Resource Commission Interpretation of Setback Rules", + "summaries": "Coastal Area Management Act; Setback requirements; Contested Case Hearing; Coastal Resource Commission; Interpretation of Setback Rules", "case_name_shorts": "Busik" }, { @@ -3056,7 +3056,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-318", "citations": "", - "summaries": "Workers' Compensation Refusal to Renew", + "summaries": "Workers' Compensation; Refusal to Renew", "case_name_shorts": "Zaldana" }, { @@ -3272,7 +3272,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-253", "citations": "", - "summaries": "Motion to Dismiss - Sufficiency of the evidence of maintaining a vehicle for keeping or selling methamphetamine Jury Instructions - G.S. 90-87(15) Sentencing - Double Jeopardy", + "summaries": "Motion to Dismiss - Sufficiency of the evidence of maintaining a vehicle for keeping or selling methamphetamine; Jury Instructions - G.S. 90-87(15); Sentencing - Double Jeopardy", "case_name_shorts": "Simpson" }, { @@ -3548,7 +3548,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1560", "citations": "", - "summaries": "Motion to Suppress Anonymous tip Reasonable suspicion", + "summaries": "Motion to Suppress; Anonymous tip; Reasonable suspicion", "case_name_shorts": "Blankenship" }, { @@ -3824,7 +3824,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-236", "citations": "", - "summaries": "Summary Judgment Statute of Limitations Contract Under Seal", + "summaries": "Summary Judgment; Statute of Limitations; Contract Under Seal", "case_name_shorts": "Davis" }, { @@ -3836,7 +3836,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-341", "citations": "", - "summaries": "Public use or benefit Eminent domain", + "summaries": "Public use or benefit; Eminent domain", "case_name_shorts": "" }, { @@ -3968,7 +3968,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-232", "citations": "", - "summaries": "Admission of evidence closing arguments jury instructions", + "summaries": "Admission of evidence; closing arguments; jury instructions", "case_name_shorts": "Monroe" }, { @@ -4016,7 +4016,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1183", "citations": "", - "summaries": "Rule 404(b) evidence second degree murder based on impaired driving", + "summaries": "Rule 404(b) evidence; second degree murder based on impaired driving", "case_name_shorts": "Grooms" }, { @@ -4100,7 +4100,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-266", "citations": "", - "summaries": "Testimonial evidence unavailability of declarant", + "summaries": "Testimonial evidence; unavailability of declarant", "case_name_shorts": "Call" }, { @@ -4112,7 +4112,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-298", "citations": "", - "summaries": "Competence to stand trial Sua Sponte hearing Due process", + "summaries": "Competence to stand trial; Sua Sponte hearing; Due process", "case_name_shorts": "Ashe" }, { @@ -4124,7 +4124,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1141", "citations": "", - "summaries": "equitable distribution classification and valuation of property source of funds pre-marriage contribution post-marriage payments divisible property passive appreciation", + "summaries": "equitable distribution; classification and valuation of property; source of funds; pre-marriage contribution; post-marriage payments divisible property; passive appreciation", "case_name_shorts": "Ross" }, { @@ -4304,7 +4304,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1361", "citations": "", - "summaries": "Indefiniteness Rule 12(b)(6) Fraud Negligent misrepresentation", + "summaries": "Indefiniteness; Rule 12(b)(6); Fraud; Negligent misrepresentation", "case_name_shorts": "" }, { @@ -4340,7 +4340,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-181", "citations": "", - "summaries": "False Imprisonment Assault Negligent Supervision Motion to Amend Complaint", + "summaries": "False Imprisonment; Assault; Negligent Supervision; Motion to Amend Complaint", "case_name_shorts": "Wilkerson" }, { @@ -4376,7 +4376,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-260", "citations": "", - "summaries": "Prayer for Judgment Continued for sentencing Unreasonable delay jurisdiction", + "summaries": "Prayer for Judgment Continued for sentencing; Unreasonable delay jurisdiction", "case_name_shorts": "Watkins" }, { @@ -4400,7 +4400,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-209", "citations": "", - "summaries": "Invalid Plea Term Sufficient Advice by Court Voluntary Plea", + "summaries": "Invalid Plea Term; Sufficient Advice by Court; Voluntary Plea", "case_name_shorts": "Tinney" }, { @@ -4520,7 +4520,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-190", "citations": "", - "summaries": "Motion for appropriate relief Extranseous evidence before jurors", + "summaries": "Motion for appropriate relief; Extranseous evidence before jurors", "case_name_shorts": "Marsh" }, { @@ -4532,7 +4532,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-18", "citations": "", - "summaries": "Stipulations double jeopardy lesser included offense lifetime SBM", + "summaries": "Stipulations; double jeopardy; lesser included offense; lifetime SBM", "case_name_shorts": "Marlow" }, { @@ -4592,7 +4592,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1533", "citations": "", - "summaries": "Ineffective assistance of counsel GPS tracking evidence hearsay in-court identification", + "summaries": "Ineffective assistance of counsel; GPS tracking evidence; hearsay; in-court identification", "case_name_shorts": "" }, { @@ -4628,7 +4628,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-11", "citations": "", - "summaries": "Felony larceny Conspiracy Fair market value", + "summaries": "Felony larceny; Conspiracy; Fair market value", "case_name_shorts": "Fish" }, { @@ -4664,7 +4664,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-222-2", "citations": "", - "summaries": "Reconvening order plain error jury instruction attempted second-degree rape and attempted incest", + "summaries": "Reconvening order; plain error; jury instruction; attempted second-degree rape and attempted incest", "case_name_shorts": "Boyett" }, { @@ -4688,7 +4688,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-76", "citations": "", - "summaries": "Possession of Controlled Substance in Local Confinement Facility Nature of Voluntary Act Necessary for Finding of Guilt", + "summaries": "Possession of Controlled Substance in Local Confinement Facility; Nature of Voluntary Act Necessary for Finding of Guilt", "case_name_shorts": "Barnes" }, { @@ -4736,7 +4736,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-125", "citations": "", - "summaries": "North Carolina General Statute ? 36C-10-1005 Breach of trust", + "summaries": "North Carolina General Statute ? 36C-10-1005; Breach of trust", "case_name_shorts": "Peck" }, { @@ -4796,7 +4796,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-38", "citations": "", - "summaries": "Real Estate Purchase Enforceability of Non-Contractual Representations", + "summaries": "Real Estate Purchase; Enforceability of Non-Contractual Representations", "case_name_shorts": "Mancuso" }, { @@ -4844,7 +4844,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-113", "citations": "", - "summaries": "Modification to custody Visitation Necessary findings Contempt", + "summaries": "Modification to custody; Visitation; Necessary findings; Contempt", "case_name_shorts": "Davis" }, { @@ -4868,7 +4868,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1163", "citations": "", - "summaries": "Condemnation inverse condemnation temporary taking easement regulatory taking vested right compensation expert opinion testimony unity of ownership", + "summaries": "Condemnation; inverse condemnation; temporary taking; easement; regulatory taking; vested right; compensation expert opinion testimony; unity of ownership", "case_name_shorts": "Wayne" }, { @@ -4880,7 +4880,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1579", "citations": "", - "summaries": "Search and Seizure Governmental Action or Private Person Standard for Use in Evaluating Search by Governmental Actor Other than a Law Enforcement Officer", + "summaries": "Search and Seizure; Governmental Action or Private Person; Standard for Use in Evaluating Search by Governmental Actor Other than a Law Enforcement Officer", "case_name_shorts": "Verkerk" }, { @@ -4904,7 +4904,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-1", "citations": "", - "summaries": "Voluntary manslaughter self-defense jury instructions", + "summaries": "Voluntary manslaughter; self-defense; jury instructions", "case_name_shorts": "Gaston" }, { @@ -4928,7 +4928,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-159", "citations": "", - "summaries": "Industrial Commission terminating compensation causation between injury and wage loss.", + "summaries": "Industrial Commission; terminating compensation; causation between injury and wage loss.", "case_name_shorts": "Medlin" }, { @@ -4952,7 +4952,7 @@ "date_filed_is_approximate": false, "docket_numbers": "13-149", "citations": "", - "summaries": "Involuntary commitment Insanity acquittees Recommitment hearing Adequate findings", + "summaries": "Involuntary commitment; Insanity acquittees; Recommitment hearing; Adequate findings", "case_name_shorts": "In re Bullock" }, { @@ -4964,7 +4964,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1493", "citations": "", - "summaries": "Medical review privilege work product doctrine", + "summaries": "Medical review privilege; work product doctrine", "case_name_shorts": "Hammond" }, { @@ -4976,7 +4976,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1426", "citations": "", - "summaries": "No civil cause of action based on perjury failure to state a claim under N.C. RICO Act", + "summaries": "No civil cause of action based on perjury; failure to state a claim under N.C. RICO Act", "case_name_shorts": "Gilmore" }, { @@ -4988,7 +4988,7 @@ "date_filed_is_approximate": false, "docket_numbers": "12-1581", "citations": "", - "summaries": "Premises Liability Necessity to Take Affirmative Action to Protect Person Lawfully on Premises Non-Delegable Duty Doctrine", + "summaries": "Premises Liability; Necessity to Take Affirmative Action to Protect Person Lawfully on Premises; Non-Delegable Duty Doctrine", "case_name_shorts": "Burnham" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nd_example.compare.json b/tests/examples/opinions/united_states/nd_example.compare.json index 79a0ed209..266a07b33 100644 --- a/tests/examples/opinions/united_states/nd_example.compare.json +++ b/tests/examples/opinions/united_states/nd_example.compare.json @@ -1,1402 +1,1360 @@ [ { - "case_dates": "2019-02-26", - "case_names": "Robert Banderet,et al. v. Sargent Count Water Resource District", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND57", + "case_dates": "2024-05-02", + "case_names": "Zander v. Morsette", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/161770", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180253", - "judges": "VandeWalle, Gerald W.", - "nature_of_suit": "REAL PROPERTY", - "citations": "2019 ND 57", - "summaries": "In general, when an appeal from a local governing body's decision is authorized by law, equitable relief against the enforcement of the decision will not be allowed. An appeal of a local governing body's decision must be taken within 30 days of the decision.", - "case_name_shorts": "" + "docket_numbers": "20230103", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Civil - Other", + "summaries": "The district court controls the scope and substance of opening and closing arguments, and a district court's decision will not be reversed absent an abuse of discretion. A party is not prejudiced by a counsel's improper arguments when the district court instructs the jury not to consider counsel's comments as evidence. A court may grant a new trial on grounds the jury awarded excessive damages appearing to have been awarded under the influence of passion or prejudice. To justify the granting of a new trial, passion and prejudice usually connote anger, resentment, hate, and disregard of the rights of others. When a jury awards excessive damages, under appropriate circumstances, the district court and this Court on appeal, may order a reduction of the verdict instead of a new trial or order that a new trial be had unless the prevailing party remits the excess damages.", + "case_name_shorts": "Zander", + "per_curiam": false }, { - "case_dates": "2019-02-25", - "case_names": "Matter of Kulink", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND55", + "case_dates": "2024-05-02", + "case_names": "State v. Williams", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/161779", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180083", - "judges": "Per Curiam", - "nature_of_suit": "CIVIL COMMIT OF SEXUAL PREDATOR", - "citations": "2019 ND 55", - "summaries": "A district court order denying discharge from civil commitment as a sexually dangerous individual is summarily affirmed under N.D.R.App.P. 35.1(a)(2)", - "case_name_shorts": "Matter of Kulink" - }, - { - "case_dates": "2019-02-25", - "case_names": "Bindas v. Bindas", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND56", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20180232", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "DIVORCE/PROPERTY DIV./ALIMONY", - "citations": "2019 ND 56", - "summaries": "Section 14-05-24.1(3), N.D.C.C., which authorizes the district court to terminate spousal support when the spouse receiving support has been habitually cohabiting with another individual in a relationship analogous to a marriage for more than one year, does not apply when the parties have a contrary written agreement.", - "case_name_shorts": "Bindas" - }, - { - "case_dates": "2019-02-21", - "case_names": "Varty v. Varty", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND49", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20180279", + "docket_numbers": "20230300", "judges": "Crothers, Daniel John", - "nature_of_suit": "DIVORCE/PROPERTY DIV./ALIMONY", - "citations": "2019 ND 49", - "summaries": "Agreements between divorcing parties are encouraged, and stipulated spousal support awards should be changed only with great reluctance. The party seeking modification of spousal support must prove a material change in the financial circumstances of the parties warranting a change in support. The district court must consider the relevant factors under the Ruff-Fischer guidelines in determining an award of spousal support.", - "case_name_shorts": "Varty" + "nature_of_suit": "Appeal - Criminal - Misc. Felony", + "summaries": "A criminal judgment for attempted murder and conspiracy to commit murder is summarily affirmed under N.D.R.App.P. 35.1(a)(3) and (4).", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "State v. Vetter", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND43", + "case_dates": "2024-05-02", + "case_names": "State v. Pederson", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/161760", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180142", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "DUI/DUS", - "citations": "2019 ND 43", - "summaries": "The statutory implied consent advisory must be read after a person is placed under arrest and before a chemical test may be administered to determine alcohol concentration. The totality of the circumstances must be considered to determine whether a person voluntarily consented to submit to a blood test to determine blood-alcohol concentration. An accurate reading of the implied consent advisory does not constitute per se coercion.", - "case_name_shorts": "Vetter" + "docket_numbers": "20230318", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Criminal - Misc. Felony", + "summaries": "Case Highlight : To succeed in a challenge under Brady, the defendant must demonstrate the evidence was favorable to the defendant or plainly exculpatory. To preserve a sufficiency of the evidence challenge for appeal, the defendant must move for acquittal under N.D.R.Crim.P. 29 unless the district court committed obvious error.", + "case_name_shorts": "Pederson", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "State v. Powley", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND51", + "case_dates": "2024-05-02", + "case_names": "State v. Heintz", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/161765", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180226", - "judges": "McEvers, Lisa K. Fair", - "nature_of_suit": "SEXUAL OFFENSE", - "citations": "2019 ND 51", - "summaries": "A pre-trial order in limine excluding evidence is a preliminary order that does not dispense with the need for the proponent to make an offer of proof at trial so the district court can consider the proffered evidence in the context of other evidence presented during trial. An appeal by the State of an order in limine excluding evidence is not statutorily authorized. The authority to issue a supervisory writ is discretionary and we decide whether to exercise our supervisory jurisdiction on a case-by-case basis. An appeal by the State of an order denying a motion to amend an information is not statutorily authorized.", - "case_name_shorts": "Powley" - }, - { - "case_dates": "2019-02-21", - "case_names": "State v. Hansford", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND52", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20180179", - "judges": "McEvers, Lisa K. Fair", - "nature_of_suit": "SEXUAL OFFENSE", - "citations": "2019 ND 52", - "summaries": "Whether a suspect is in custody is a mixed question of fact and law which is fully reviewable on appeal. A reasonable person would not believe he was in custody when he traveled unrestrained to the police station, was not placed under arrest or otherwise restrained, was told he was free to leave at any time, sat closest to the door during the interview, was interviewed in a room with only one law enforcement agent present, did not show any apprehension about being in the agent's company, and told the agent he understood he was free to leave at any time. It is the State's burden to prove the voluntariness of a defendant's confession and to produce evidence on relevant factors. Even if a suspect is not in custody and Miranda warnings are given gratuitously, they are not rendered wholly irrelevant in determining whether incriminating statements were given voluntarily. Parties raising a constitutional claim must provide persuasive authority and a reasoned analysis to support the claim.", - "case_name_shorts": "Hansford" + "docket_numbers": "20230382", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Appeal - Criminal - Misc. Felony", + "summaries": "Orders for revocation of probation are summarily affirmed under N.D.R.App.P. 35.1(a)(4).", + "case_name_shorts": "Heintz", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "State v. Goldsack", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND36", + "case_dates": "2024-05-02", + "case_names": "State v. Hartson", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/161750", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180265", - "judges": "Per Curiam", - "nature_of_suit": "DRUGS/CONTRABAND", - "citations": "2019 ND 36", - "summaries": "Judgment revoking probation and sentencing defendant to six years' imprisonment summarily affirmed under N.D.R.App.P. 35.1(a)(2), (4) and (7).", - "case_name_shorts": "Goldsack" + "docket_numbers": "20230243", + "judges": "Jensen, Jon J.", + "nature_of_suit": "Appeal - Criminal - Homicide", + "summaries": "Case Highlight: Changing the culpability level of the crime charged is not a modification of a statute. Under N.D.C.C. \u00a7 12.1-02-02(4), a lesser degree of culpability is satisfied if the proven degree of culpability is higher. The district court's failure to submit statutory definition of that term was not obvious error affecting defendant's substantial rights. It is not clearly established law in North Dakota that, where the State alleges multiple predicate felonies in a felony murder prosecution under N.D.C.C. \u00a7 12.1-16-01(1)(c), the district court must include an instruction that the jury must unanimously agree on the predicate felony to convict the defendant of murder. Not including separate verdict forms for each predicate felony was not obvious error. There was sufficient evidence to convict the defendant of murder.", + "case_name_shorts": "Hartson", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "State v. Dowdy", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND50", + "case_dates": "2024-05-02", + "case_names": "SPOTTIE v. BAIUL-FARINA", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/161775", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180204", + "docket_numbers": "20230195", "judges": "Crothers, Daniel John", - "nature_of_suit": "DUI/DUS", - "citations": "2019 ND 50", - "summaries": "An arresting officer's inclusion of additional information in the implied consent advisory must not materially mislead or coerce a defendant. Whether a defendant voluntarily consents to chemical testing must be determined by the totality of the circumstances.", - "case_name_shorts": "Dowdy" + "nature_of_suit": "Appeal - Civil - Real Property", + "summaries": "Case Highlight: Wholesale adoption of proposed findings of fact and conclusions of law is disapproved. District courts retain authority to revisit interlocutory orders until entry of final judgment. Under the doctrine of merger, the provisions of an executory contract merge into an instrument conveying real property. Absent fraud or mistake, the conveying instrument alone governs determination of the rights of the parties to the transaction. Recordation of a granting instrument is not necessary to effect a conveyance. Nor is it necessary for a plaintiff to present the original conveying instrument to prevail in quiet title action. In a quiet title action ownership may be established through evidence that a conveying instrument was delivered but subsequently lost. The equitable defense of laches may be available when a party delays enforcing his rights and a change in conditions during the delay results in prejudice to an adverse party. To have standing to litigate an issue a party must have suffered some injury from the putatively illegal action and the party must assert his own legal rights and interests and cannot rest his claim on the legal rights and interests of third parties. Parties may contract to a fee recovery standard that is either looser or stricter than statutory standards.", + "case_name_shorts": "SPOTTIE", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "State v. Cody", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND38", + "case_dates": "2024-05-02", + "case_names": "Musland v. Musland", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/161754", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180229", - "judges": "Per Curiam", - "nature_of_suit": "MISC. STATUTORY OFF. (MISDEMEANOR)", - "citations": "2019 ND 38", - "summaries": "Jury verdict finding defendant guilty of willfully giving false information to a law enforcement officer under N.D.C.C. \u00a7 12.1-11-03(1) and preventing arrest under N.D.C.C. \u00a7 12.1-08-02(1) is summarily affirmed under N.D.R.App.P. 35.1(a)(3).", - "case_name_shorts": "Cody" + "docket_numbers": "20230345", + "judges": "Jensen, Jon J.", + "nature_of_suit": "Appeal - Civil - Divorce - Property", + "summaries": "A marital distribution does not need to be equal to be equitable, and while assessing a property division, a district court may consider the importance of preserving the viability of a business operation like a family farm. Liquidation of an ongoing farming operation or business is ordinarily a last resort. A district court property division granting one party a net estate of $3,224,357 while assigning them virtually no debt, and the other a net estate of $4,961,915 included all of the debt, almost no liquidity, and no retirement funds, was not clearly erroneous. A district court does not need to consider potential tax implications of a property division when the record failed to support a conclusion that the sale of the property was imminent, failed to indicate the tax liability, or quantified a specific liability to the court. A party is not entitled to an accrual of rent for the use of marital property during the pendency of divorce proceedings absent agreement or seeking district court intervention during the interim. Language in a right to first refusal that does not clarify if the right is triggered by a response to \"any\" offer made to purchase property or if it is triggered by a party's \"acceptance\" of an offer is ambiguous.", + "case_name_shorts": "Musland", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "State v. Christie", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND40", + "case_dates": "2024-05-02", + "case_names": "Morales v. Weatherford U.S.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/161795", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180286", - "judges": "Per Curiam", - "nature_of_suit": "SEXUAL OFFENSE", - "citations": "2019 ND 40", - "summaries": "Conviction of class AA felony gross sexual imposition is summarily affirmed under N.D.R.App.P. 35.1(a)(3).", - "case_name_shorts": "Christie" + "docket_numbers": "20230110", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Civil - Personal Injury", + "summaries": "Only those judgments and decrees which constitute a final determination of the parties' rights to an action and those orders enumerated in N.D.C.C. \u00a7 28-27-02 are appealable. Rule 60(b), N.D.R.Civ.P., applies to final judgments or orders. A final judgment is a decree, order, or judgment \"from which an appeal lies.\" N.D.R.Civ.P. 54(a). Rule 54(b), N.D.R.Civ.P., recognizes a district court may direct entry of a final judgment against only some of the parties to a litigation, but until final judgment is entered all orders are subject to revision.", + "case_name_shorts": "Morales", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "State v. Brakke", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND34", + "case_dates": "2024-05-02", + "case_names": "Interest of Skorick", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/161771", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180275", - "judges": "Per Curiam", - "nature_of_suit": "DUI/DUS", - "citations": "2019 ND 34", - "summaries": "A criminal judgment for driving with a suspended license is summarily affirmed under N.D.R.App.P. 35.1(a)(3).", - "case_name_shorts": "Brakke" + "docket_numbers": "20230330", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Appeal - Civil - Civil Commitment of Sexually Dangerous Individual", + "summaries": "A district court must have sufficient factual findings to show a sexually dangerous individual continues to have an inability to control his behavior. Past conduct is relevant and may be considered with present conduct to determine if an individual continues to have an inability to control his behavior. Failure to attend treatment might demonstrate inability to control behavior just as violation of other institutional rules. The district court's findings are sufficient to show the individual continues to have an inability to control his behavior.", + "case_name_shorts": "Interest of Skorick", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "State v. Abuhamda", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND44", + "case_dates": "2024-05-02", + "case_names": "Harris v. Oasis Petroleum", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/161790", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180127", + "docket_numbers": "20230279", "judges": "McEvers, Lisa K. Fair", - "nature_of_suit": "DRUGS/CONTRABAND", - "citations": "2019 ND 44", - "summaries": "The right to appeal in this state is purely statutory, and without statutory authorization to hear an appeal this Court lacks jurisdiction. An order approving pretrial diversion is not appealable under statutory authority contained in N.D.C.C. 29-28-06. Supervisory writs may be issued in extraordinary cases to prevent injustice when no adequate alternative remedies exist. While it is true N.D.R.Crim.P. 11(a)(2) does not require ritualistic compliance to enter a conditional guilty plea, courts must substantially comply with the rule's procedural requirements to ensure defendants enter the plea voluntarily and intelligently.", - "case_name_shorts": "Abuhamda" + "nature_of_suit": "Appeal - Civil - Personal Injury", + "summaries": "A motion to alter or amend the judgment under N.D.R.Civ.P. 59(j) is reviewed for an abuse of discretion. The question of who is a prevailing party under N.D.C.C. \u00a7 28-26-06 is a question of law, subject to de novo review. A prevailing party in a tort action must at least prevail on the issues of negligence and proximate cause. There may not be a single prevailing party when opposing parties each prevail on some issues. Under North Dakota's comparative fault statute, N.D.C.C. \u00a7 32-03.2-02, in the case of a contributorily negligent plaintiff, any damages allowed shall be diminished in proportion to the amount of negligence attributable to the person recovering. However, N.D.C.C. \u00a7 32-03.2-02 does not provide for any diminution in the costs and disbursements to be allowed to a recovering plaintiff. A district court has the discretion to award a prevailing party costs and disbursements under N.D.C.C. \u00a7 28-26-06, without reduction by the party's percentage of fault. The law does not require a court to reduce costs awarded to the prevailing party based on its percentage of fault.", + "case_name_shorts": "Harris", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "Smith v. State", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND33", + "case_dates": "2024-05-02", + "case_names": "Glaum v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/161784", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180276", - "judges": "Per Curiam", - "nature_of_suit": "POST-CONVICTION RELIEF", - "citations": "2019 ND 33", - "summaries": "A district court order denying application for post-conviction relief is summarily affirmed under N.D.R.App.P. 35.1(a)(2).", - "case_name_shorts": "" + "docket_numbers": "20230236", + "judges": "McEvers, Lisa K. Fair", + "nature_of_suit": "Appeal - Criminal - Misc. Felony", + "summaries": "Rule 58 of the North Dakota Supreme Court Administrative Rules addresses vexatious litigation. Litigation means any civil or disciplinary action or proceeding, including any appeal from an administrative agency, any review of a referee order by the district court, and any appeal to the supreme court. Rule 58 does not apply to criminal actions or documents filed in criminal actions. An appeal from a vexatious litigant pre-filing order must be filed with the clerk of the supreme court within 60 days of service of notice of entry of the order. When there is no service of notice of entry of the order or evidence of actual knowledge of entry, the time for filing a notice of appeal does not begin to run. A presiding judge may determine a person is a vexatious litigant based on the finding that in the immediately preceding seven-year period the person has commenced, prosecuted, or maintained as a self-represented party at least three litigations that have been finally determined adversely to that person. If a response to the proposed pre-filing order is filed, the presiding judge may, in the judge's discretion, grant a hearing on the proposed order. An appellant is precluded from challenging an order that was not appealed from in the notice of appeal and raising an issue for the first time on appeal.", + "case_name_shorts": "Glaum", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "Smith v. Erickson", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND48", + "case_dates": "2024-05-02", + "case_names": "Field v. Field", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/161751", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180124", - "judges": "Crothers, Daniel John", - "nature_of_suit": "CHILD CUST & SUPPORT (Div.\\Other)", - "citations": "2019 ND 48", - "summaries": "The district court has broad discretion in making contempt decisions and will not be overturned unless an abuse of discretion occurs. The lack of a trial transcript does not allow for meaningful and intelligent review of issues on appeal. The district court did not abuse its discretion in finding plaintiff a vexatious litigant when evidence supported finding litigant persistently and without reasonable grounds filed motions and requests not warranted under existing law.", - "case_name_shorts": "Erickson" + "docket_numbers": "20230405", + "judges": "McEvers, Lisa K. Fair", + "nature_of_suit": "Appeal - Civil - Child Support", + "summaries": "Under Rule 30(a), N.D.R.App.P., a party's references to evidence in any document on appeal must cite to items in the record. This Court does not consider documents that are not in the certified record. After an initial custody decision has been made, parenting time modifications are governed by N.D.C.C. \u00a7 14-05-22(2) and by standards set forth in caselaw. A parenting plan must include a provision on decision making responsibility under N.D.C.C. \u00a7 14-09-30(2)(a), and that responsibility must be allocated in the best interests of the child, N.D.C.C. \u00a7 14-09-31(2). A district court's decision on parenting time and decision making responsibility is a finding of fact subject to the clearly erroneous standard of review.", + "case_name_shorts": "Field", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "Schindler v. Wageman", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND41", + "case_dates": "2024-04-26", + "case_names": "Estate of Kish", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/157011", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180024", - "judges": "Jensen, Jon J.", - "nature_of_suit": "REAL PROPERTY", - "citations": "2019 ND 41", - "summaries": "Party was required to provide clear and convincing evidence that warranty deeds did not correctly state the parties' intent. Consent to try an issue outside the pleadings cannot be implied from evidence which is relevant to the pleadings but which also bears on an unpled issue.", - "case_name_shorts": "Schindler" + "docket_numbers": "20230275", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Appeal - Civil - Probate, Wills, Trusts", + "summaries": "A two-step analysis is required to determine whether an order is appealable. First, for this Court to have appellate jurisdiction, the order being appealed must meet statutory criteria for appealability. Second, for this Court to consider the appeal at this time, the requirements of N.D.R.Civ.P. 54(b) must have been satisfied. Decisions have stated that this Court lacks appellate jurisdiction when an appellant fails to obtain N.D.R.Civ.P. 54(b) certification when required, but dismissal under Rule 54(b) is not for lack of appellate jurisdiction. The parties did not request Rule 54(b) certification. The case is remanded under N.D.R.App.P. 35(a)(3)(B) so that the district court may determine in the first instance whether a Rule 54(b) certification is appropriate.", + "case_name_shorts": "Estate of Kish", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "Lenertz v. City of Minot N.D.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND53", + "case_dates": "2024-04-23", + "case_names": "Vacancy in Judgeship No. 8, ECJD", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/156761", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180153", - "judges": "Crothers, Daniel John", - "nature_of_suit": "REAL PROPERTY", - "citations": "2019 ND 53", - "summaries": "To establish an inverse condemnation claim, a property owner must prove a public entity took or damaged the owner's property for a public use and the public use was the proximate cause of the taking or damages. Whether private property was taken for public use is a question of law, fully reviewable on appeal. The district court has broad discretion determining whether to allow expert witness testimony, and its decision will not be reversed on appeal unless it abused its discretion. The district court's decision to grant a motion for judgment as a matter of law is based on whether the evidence, viewed in the light most favorable to the party against whom the motion is made, leads to but one conclusion as to the verdict about which there can be no reasonable difference of opinion. Whether the evidence is sufficient to create a question of fact for the jury is a question of law.", - "case_name_shorts": "Lenertz" + "docket_numbers": "20240055", + "judges": "Not Available", + "nature_of_suit": "Judicial Administration - Rule - Rule", + "summaries": "Vacancy retained at Fargo", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "Kuntz v. State", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND46", + "case_dates": "2024-04-19", + "case_names": "State v. Fuglesten", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/156540", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180135", + "docket_numbers": "20230299", "judges": "Tufte, Jerod E.", - "nature_of_suit": "OTHER (Civil)", - "citations": "2019 ND 46", - "summaries": "A district court's decision granting judgment on the pleadings under N.D.R.Civ.P. 12(c) is reviewed de novo. A public entity violates the open records law when a person's right to review or receive a copy of a record that is not exempt or confidential is denied or unreasonably delayed or when an excessive fee is charged. A civil action for a violation of the open records law may be filed after an unreasonably delayed disclosure if a person alleges prejudice or harm caused by the delay. An affidavit of service by mail filed with the court establishes service of the referenced documents. Service of an unsigned copy of the affidavit does not vitiate the evidence of service presented to the court by filing the signed affidavit.", - "case_name_shorts": "Kuntz" + "nature_of_suit": "Appeal - Criminal - DUI/DUS/APC", + "summaries": "A criminal judgment entered after a conditional plea is reversed and remanded to allow for withdrawal of the guilty plea because law enforcement illegally entered the home without exigent circumstances. If a misdemeanant is fleeing law enforcement, then exigent circumstances are required to permit law enforcement to enter the misdemeanant's home.", + "case_name_shorts": "Fuglesten", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "Interest of H.B.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND35", + "case_dates": "2024-04-19", + "case_names": "Schmidt v. Hess Corp.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/156541", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180439", - "judges": "Per Curiam", - "nature_of_suit": "TERMINATION/PARENTAL RIGHTS", - "citations": "2019 ND 35", - "summaries": "A juvenile court order terminating parental rights to H.B., V.B, and A.B. is summarily affirmed under N.D.R.App.P. 35.1(a)(2).", - "case_name_shorts": "Interest of H.B." + "docket_numbers": "20230272", + "judges": "Crothers, Daniel John", + "nature_of_suit": "Appeal - Civil - Personal Injury", + "summaries": "Case Highlight: To prove negligence, a plaintiff must establish the existence of a duty, breach of that duty, and an injury proximately caused by the breach of duty. The employer of an independent contractor who retains control of part of the work owes a duty of care to the independ ent contractor' s employees to exercise the retained control with reasonable care. A property owner who hires an independent contractor may be held liable to the independent contractor and its employees for injuries resulting from hazards at the workplace when the property owner retains control over the work.", + "case_name_shorts": "Schmidt", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "Heldstab v. Heldstab", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND39", + "case_dates": "2024-04-19", + "case_names": "Rennie v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/156532", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180299", - "judges": "Per Curiam", - "nature_of_suit": "CHILD CUST & SUPPORT (Div.\\Other)", - "citations": "2019 ND 39", - "summaries": "A district court's divorce judgment is summarily affirmed under N.D.R.App.P. 35.1(a)(2) and (7).", - "case_name_shorts": "Heldstab" + "docket_numbers": "20230303", + "judges": "McEvers, Lisa K. Fair", + "nature_of_suit": "Appeal - Civil - Post-Conviction Relief", + "summaries": "Case Highlight: A district court order denying a petition for postconviction relief is summarily affirmed under N.D.R.App.P. 35.1(a)(2).", + "case_name_shorts": "Rennie", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "Heidt v. Heidt", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND45", + "case_dates": "2024-04-19", + "case_names": "Garaas v. Continental Resources", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/156520", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180250", + "docket_numbers": "20230306", "judges": "Jensen, Jon J.", - "nature_of_suit": "CHILD CUST & SUPPORT (Div.\\Other)", - "citations": "2019 ND 45", - "summaries": "District court erred in finding mother had not made a prima facie case for modification of primary residential responsibility.", - "case_name_shorts": "Heidt" + "nature_of_suit": "Appeal - Civil - Contracts", + "summaries": "We will not consider an appeal in a multi-claim lawsuit where the district court order disposes of fewer than all the claims against all the parties unless the court has determined that a certification under N.D.R.Civ.P. 54(b) is appropriate.", + "case_name_shorts": "Garaas", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "Hagen v. Horst", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND37", + "case_dates": "2024-04-19", + "case_names": "Cichos v. Dakota Eye Institute, P.C.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/156565", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180344", - "judges": "Per Curiam", - "nature_of_suit": "CHILD CUST & SUPPORT (Div.\\Other)", - "citations": "2019 ND 37", - "summaries": "A district court's award of residential responsibility and child support, the implementation of supervised parenting time, and decision to issue an emergency ex parte custody order are summarily affirmed under N.D.R.App.P. 35.1(a) (2), (3) and(4).", - "case_name_shorts": "Hagen" + "docket_numbers": "20230212", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Appeal - Civil - Malpractice", + "summaries": "Case Highlight: Rule 54(b), N.D.R.Civ.P., preserves our long-standing policy against piecemeal appeals. When this Court considers the merits in a case involving a N.D.R.Civ.P. 54(b) certification, it does so because the resolution of the issue on appeal will always need to be resolved and is separate from the issue left to be adjudicated. To establish a prima facie case of professional negligence, a plaintiff must produce expert evidence establishing the applicable standard of care, violation of that standard, and a causal relationship between the violation and the harm complained of. To warrant a finding that a person's conduct is the proximate cause of an injury, the injury must be the natural and probable result of the conduct and must have been foreseen or reasonably anticipated by that person as a probable result of the conduct. Mere speculation is not enough.", + "case_name_shorts": "Cichos", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "Gonzalez v. State", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND47", + "case_dates": "2024-04-19", + "case_names": "Berdahl v. Berdahl", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/156524", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180188", - "judges": "McEvers, Lisa K. Fair", - "nature_of_suit": "POST-CONVICTION RELIEF", - "citations": "2019 ND 47", - "summaries": "When an applicant for post-conviction relief alleges newly discovered evidence, a district court errs in sua sponte summarily denying the application, after the State has responded to the application, without providing the applicant notice and the opportunity to submit an answer with supporting materials to show the existence of a genuine issue of material fact. A district court's error in sua sponte summarily denying an application for post-conviction relief alleging newly discovered evidence after response by the State does not prejudice the applicant if the district court later considers and correctly rules on the merits in the applicant's subsequent motion for reconsideration.", - "case_name_shorts": "Gonzalez" + "docket_numbers": "20230278", + "judges": "Crothers, Daniel John", + "nature_of_suit": "Appeal - Civil - Divorce - Property", + "summaries": "Case Highlight: When this Court has made a legal pronouncement and remanded a case for further proceedings, the parties may not relitigate the issue and the district court is required to follow the terms of our decision. The district court has some discretion on the procedures used on remand. However, that discretion is not without bounds and must be exercised within the scope of our decision. Adverse or erroneous rulings do not, by themselves, demonstrate bias of a district court judge.", + "case_name_shorts": "Berdahl", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "Estate of Krueger", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND42", + "case_dates": "2024-04-18", + "case_names": "Interest of H.J.J.N.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/156414", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180237", - "judges": "VandeWalle, Gerald W.", - "nature_of_suit": "PROBATE - WILLS - TRUSTS", - "citations": "2019 ND 42", - "summaries": "For purposes of Medicaid recovery from a surviving spouse's estate, the Department's recovery from a deceased recipient's joint tenancy property is limited to the deceased recipient's fractional interest in the property.", - "case_name_shorts": "Estate of Krueger" + "docket_numbers": "20240060", + "judges": "McEvers, Lisa K. Fair", + "nature_of_suit": "Appeal - Juvenile - Termination of Parental Rights", + "summaries": "Case Highlight: Litigants in civil nonjury cases have a right to have their attorneys make a final argument. A court errs by entering judgment prior to the closing of the briefing period. In parental-termination cases, the court has discretion, which can be exercised only after considering the evidence and arguments.", + "case_name_shorts": "Interest of H.J.J.N.", + "per_curiam": false }, { - "case_dates": "2019-02-21", - "case_names": "Dick v. Erman", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND54", + "case_dates": "2024-04-04", + "case_names": "Whitetail Wave v. XTO Energy", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/54768", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180236", + "docket_numbers": "20230283", "judges": "Jensen, Jon J.", - "nature_of_suit": "CHILD CUST & SUPPORT (Div.\\Other)", - "citations": "2019 ND 54", - "summaries": "A district court's award of primary residential responsibility is a finding of fact, which will not be reversed on appeal unless it is clearly erroneous. Absent a reason for denying it, some form of extended visitation with a fit non-custodial parent is routinely awarded. A district court's ruling on decision-making responsibility is a finding of fact, reviewed under the clearly erroneous standard.", - "case_name_shorts": "Dick" + "nature_of_suit": "Appeal - Civil - Oil, Gas and Minerals", + "summaries": "", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2019-01-31", - "case_names": "Tollefson v. Anderson & Fercho, PLLP", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND32", + "case_dates": "2024-04-04", + "case_names": "Urrabazo v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/82575", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180310", - "judges": "Per Curiam", - "nature_of_suit": "OTHER (Civil)", - "citations": "2019 ND 32", - "summaries": "Appellant's appeal of the district court's order granting summary judgment is summarily affirmed under N.D.R.App.P. 35.1(a)(1), (4), (7). This Court may award just damages and single or double costs, including reasonable attorney fees, if it determines an appeal is frivolous.", - "case_name_shorts": "Tollefson" + "docket_numbers": "20230317", + "judges": "", + "nature_of_suit": "Appeal - Civil - Post-Conviction Relief", + "summaries": "", + "case_name_shorts": "Urrabazo", + "per_curiam": true }, { - "case_dates": "2019-01-25", - "case_names": "Wald v. Benedictine Living Communities, Inc.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND31", + "case_dates": "2024-04-04", + "case_names": "Urrabazo v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/76272", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180048", - "judges": "McEvers, Lisa K. Fair", - "nature_of_suit": "EMPLOYER/EMPLOYEE DISPUTE", - "citations": "2019 ND 31", - "summaries": "A post-verdict motion for judgment as a matter of law is a renewal of the pre-verdict motion and can be granted only on grounds advanced in the pre-verdict motion. A jury verdict may not be based upon speculation of conjecture.", - "case_name_shorts": "Wald" + "docket_numbers": "20230316", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Civil - Post-Conviction Relief", + "summaries": "", + "case_name_shorts": "Urrabazo", + "per_curiam": false }, { - "case_dates": "2019-01-22", - "case_names": "State v. Bearrunner", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND29", + "case_dates": "2024-04-04", + "case_names": "State v. Thornton", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/134286", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180258", - "judges": "Jensen, Jon J.", - "nature_of_suit": "MISC. STATUTORY OFF. (MISDEMEANOR)", - "citations": "2019 ND 29", - "summaries": "Whether a fence is so enclosed as manifestly to exclude intruders is a finding of fact. Appellant's conduct did not rise to the level of \"tumultuous and violent\" as required under N.D.C.C. \u00a7 12.1-25-01.", - "case_name_shorts": "Bearrunner" + "docket_numbers": "20240017", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Original Proceeding - Criminal - Writ of Supervision", + "summaries": "", + "case_name_shorts": "Thornton", + "per_curiam": false }, { - "case_dates": "2019-01-22", - "case_names": "Friesner v. Friesner", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND30", + "case_dates": "2024-04-04", + "case_names": "State v. Nelson", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/124819", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180094", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "CHILD CUST & SUPPORT (Div.\\Other)", - "citations": "2019 ND 30", - "summaries": "A district court's choice for primary residential responsibility between two fit parents is a difficult one, and the Supreme Court will not retry the case or substitute its judgment for that of the district court when its decision is supported by the evidence. Permanent spousal support may be appropriate when there is a substantial income disparity between the spouses that cannot be remedied by property division or rehabilitative spousal support.", - "case_name_shorts": "Friesner" + "docket_numbers": "20230346", + "judges": "Crothers, Daniel John", + "nature_of_suit": "Appeal - Criminal - DUI/DUS/APC", + "summaries": "", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "Western Energy Corporation v. Stauffer", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND26", + "case_dates": "2024-04-04", + "case_names": "State v. Henke", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/53827", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180283", - "judges": "VandeWalle, Gerald W.", - "nature_of_suit": "OIL, GAS AND MINERALS", - "citations": "2019 ND 26", - "summaries": "District court judgment finding reformation of 1959 warranty deed barred by the ten-year statute of limitation under N.D.C.C. \u00a7 28-01-15(2) is affirmed.", - "case_name_shorts": "Stauffer" + "docket_numbers": "20230302", + "judges": "Crothers, Daniel John", + "nature_of_suit": "Appeal - Criminal - Sexual Offense", + "summaries": "", + "case_name_shorts": "Henke", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "Swanson v. Swanson", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND25", + "case_dates": "2024-04-04", + "case_names": "State v. Freeman", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/128777", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180158", - "judges": "VandeWalle, Gerald W.", - "nature_of_suit": "DIVORCE/PROPERTY DIV./ALIMONY", - "citations": "2019 ND 25", - "summaries": "District court division of marital property was not clearly erroneous. While long-term marriages generally support an equal distribution of the marital property, a court does not err by considering how the property was acquired and acting to preserve the viability of a business operation like a family farm by awarding a majority of the marital property, and its corresponding debt, to one party.", - "case_name_shorts": "Swanson" + "docket_numbers": "20230207", + "judges": "McEvers, Lisa K. Fair", + "nature_of_suit": "Appeal - Criminal - Homicide", + "summaries": "", + "case_name_shorts": "Freeman", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "State v. Strom", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND9", + "case_dates": "2024-04-04", + "case_names": "State v. Alameen", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/110400", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180167", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "MISC. STATUTORY OFFENSE (FELONY)", - "citations": "2019 ND 9", - "summaries": "When ordering restitution for a victim of a criminal act, district courts must not consider the defendant's ability to pay under N.D.C.C. \u00a7 12.1-32-08(1). North Dakota Constitution article I, \u00a7 25(1)(n) requires \"full\" restitution be awarded to the victim for \"all losses\" sustained. This amendment to the constitution implicitly repealed the statutory requirement to consider ability to pay.", - "case_name_shorts": "Strom" + "docket_numbers": "20230320", + "judges": "Jensen, Jon J.", + "nature_of_suit": "Appeal - Criminal - Sexual Offense", + "summaries": "", + "case_name_shorts": "Alameen", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "State v. Simundson", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND6", + "case_dates": "2024-04-04", + "case_names": "Kemmet v. Kemmet", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/115148", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180223", - "judges": "Per Curiam", - "nature_of_suit": "DUI/DUS", - "citations": "2019 ND 6", - "summaries": "Summary affirmance of jury conviction for actual physical control under N.D.C.C. \u00a7 39-08-01.", - "case_name_shorts": "Simundson" + "docket_numbers": "20230194", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Appeal - Civil - Child Support", + "summaries": "", + "case_name_shorts": "Kemmet", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "State v. Pittenger", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND22", + "case_dates": "2024-04-04", + "case_names": "Interest of Y.R.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/125441", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20170279", - "judges": "Crothers, Daniel John", - "nature_of_suit": "SEXUAL OFFENSE", - "citations": "2019 ND 22", - "summaries": "Closing a trial to the public without proper analysis is a structural error requiring automatic reversal.", - "case_name_shorts": "Pittenger" + "docket_numbers": "20240063", + "judges": "", + "nature_of_suit": "Appeal - Juvenile - Termination of Parental Rights", + "summaries": "", + "case_name_shorts": "Interest of Y.R.", + "per_curiam": true }, { - "case_dates": "2019-01-15", - "case_names": "State v. McGath", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND7", + "case_dates": "2024-04-04", + "case_names": "Interest of S.S.C.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/125884", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180186", - "judges": "Per Curiam", - "nature_of_suit": "CHILD CUST & SUPPORT (Div.\\Other)", - "citations": "2019 ND 7", - "summaries": "An appeal from a divorce judgment is summarily affirmed under Koenig v. Schuh, 2016 ND 252, 888 N.W.2d 385, and N.D.R.App.P. 35.1(a)(2), (4), and (7).", - "case_name_shorts": "McGath" + "docket_numbers": "20240053", + "judges": "", + "nature_of_suit": "Appeal - Juvenile - Termination of Parental Rights", + "summaries": "", + "case_name_shorts": "Interest of S.S.C.", + "per_curiam": true }, { - "case_dates": "2019-01-15", - "case_names": "State v. Lyon", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND21", + "case_dates": "2024-04-04", + "case_names": "Interest of S.B.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/149299", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180130", - "judges": "Crothers, Daniel John", - "nature_of_suit": "HOMICIDE", - "citations": "2019 ND 21", - "summaries": "A sentence in excess of a statutory provision or in some other way contrary to an applicable statute is an illegal sentence.", - "case_name_shorts": "Lyon" + "docket_numbers": "20240043", + "judges": "", + "nature_of_suit": "Appeal - Juvenile - Termination of Parental Rights", + "summaries": "", + "case_name_shorts": "Interest of S.B.", + "per_curiam": true }, { - "case_dates": "2019-01-15", - "case_names": "State v. Lott", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND18", + "case_dates": "2024-04-04", + "case_names": "Interest of J.D.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/8493", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180154", - "judges": "Jensen, Jon J.", - "nature_of_suit": "MISC. STATUTORY OFFENSE (FELONY)", - "citations": "2019 ND 18", - "summaries": "Criminal judgment of preventing arrest is summarily affirmed under N.D.R.App.P. 35.1(a)(3). N.D.R.Crim.P. 32., mandates a defendant be given an opportunity to make a statement prior to sentencing. An individual who has been denied the right of allocution has generally met the burden of showing their substantial rights were affected.", - "case_name_shorts": "Lott" + "docket_numbers": "20240059", + "judges": "", + "nature_of_suit": "Appeal - Juvenile - Termination of Parental Rights", + "summaries": "", + "case_name_shorts": "Interest of J.D.", + "per_curiam": true }, { - "case_dates": "2019-01-15", - "case_names": "State v. Foster", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND28", + "case_dates": "2024-04-04", + "case_names": "Hoever v. Wilder", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/3267", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180098", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "MISC. STATUTORY OFFENSE (FELONY)", - "citations": "2019 ND 28", - "summaries": "A witness may testify from personal knowledge about the witness's own actions and observations even when they relate to acts technical in nature. If evidence is admitted in error, this Court will consider the entire record and decide in light of all the evidence whether the error was so prejudicial the defendant's rights were affected and a different decision would have occurred absent the error.", - "case_name_shorts": "Foster" + "docket_numbers": "20230295", + "judges": "McEvers, Lisa K. Fair", + "nature_of_suit": "Appeal - Civil - Divorce - Property", + "summaries": "", + "case_name_shorts": "Hoever", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "State v. Christensen", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND11", + "case_dates": "2024-04-04", + "case_names": "Dahms v. Legacy Plumbing", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/131183", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180156", - "judges": "McEvers, Lisa K. Fair", - "nature_of_suit": "MISC. STATUTORY OFFENSE (FELONY)", - "citations": "2019 ND 11", - "summaries": "Appellate review of a criminal sentence is generally confined to whether the district court acted within the sentencing limits prescribed by statute, or substantially relied upon an impermissible factor. The presumptive probation statute requires a sentence of probation unless an exception applies.", - "case_name_shorts": "Christensen" + "docket_numbers": "20230349", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Civil - Torts (Negligence, Liab., Nuis.)", + "summaries": "", + "case_name_shorts": "Dahms", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "Seccombe v. Rohde", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND13", + "case_dates": "2024-04-04", + "case_names": "Cote v. Cote", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/109451", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180069", - "judges": "VandeWalle, Gerald W.", - "nature_of_suit": "REAL PROPERTY", - "citations": "2019 ND 13", - "summaries": "A county court acquired jurisdiction over property when executor of estate filed a petition to sell the property and the petition substantially complied with statutory requirements. When the sale of property by an executor or administrator of an estate is required to be confirmed by the court under statute, the order confirming the sale cures all nonjurisdictional errors and irregularities occurring after the court obtains jurisdiction.", - "case_name_shorts": "Seccombe" + "docket_numbers": "20230274", + "judges": "Jensen, Jon J.", + "nature_of_suit": "Appeal - Civil - Child Support", + "summaries": "", + "case_name_shorts": "Cote", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "Schwab v. State", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND4", + "case_dates": "2024-04-04", + "case_names": "Adoption of T.J.R. and B.L.R.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/114510", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180230", - "judges": "Per Curiam", - "nature_of_suit": "POST-CONVICTION RELIEF", - "citations": "2019 ND 4", - "summaries": "An appeal from a district court's order denying an application for post-conviction relief is summarily affirmed under N.D.R.App.P. 35.1(a)(7). If it is easier to dispose of an ineffective assistance of counsel claim on the ground of lack of sufficient prejudice, that course should be followed.", - "case_name_shorts": "Schwab" + "docket_numbers": "20240056", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Appeal - Juvenile - Termination of Parental Rights", + "summaries": "", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "S.E.L. v. J.A.P.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND16", + "case_dates": "2024-03-18", + "case_names": "State v. Glaum", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/118064", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180075", + "docket_numbers": "20230190", "judges": "McEvers, Lisa K. Fair", - "nature_of_suit": "PATERNITY", - "citations": "2019 ND 16", - "summaries": "Section 14-20-44(2), N.D.C.C., provides a statute of limitations barring proceedings to challenge an acknowledged father's paternity and to adjudicate paternity brought more than two years after the effective date of the paternity acknowledgment.", - "case_name_shorts": "S.E.L." + "nature_of_suit": "Appeal - Criminal - Sexual Offense", + "summaries": "", + "case_name_shorts": "Glaum", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "Ourada v. State", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND10", + "case_dates": "2024-03-18", + "case_names": "State v. Driver", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/85620", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180087", - "judges": "Jensen, Jon J.", - "nature_of_suit": "POST-CONVICTION RELIEF", - "citations": "2019 ND 10", - "summaries": "In a post-conviction relief proceeding, an applicant is entitled to notice that his application may be summarily dismissed.", - "case_name_shorts": "Ourada" + "docket_numbers": "20230259", + "judges": "McEvers, Lisa K. Fair", + "nature_of_suit": "Appeal - Criminal - Misc. Felony", + "summaries": "", + "case_name_shorts": "Driver", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "Lunde v. Paulson", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND5", + "case_dates": "2024-03-18", + "case_names": "Petro-Hunt v. Tank", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/74560", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180248", - "judges": "Per Curiam", - "nature_of_suit": "PERSONAL INJURY", - "citations": "2019 ND 5", - "summaries": "Summarily affirm default judgment based on a lack of errors appearing on the face of the judgment roll.", - "case_name_shorts": "Lunde" + "docket_numbers": "20230015", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Civil - Oil, Gas and Minerals", + "summaries": "", + "case_name_shorts": "Petro-Hunt", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "Kieson v. Kieson", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND15", + "case_dates": "2024-03-18", + "case_names": "Happel v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/125750", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180157", - "judges": "Per Curiam", - "nature_of_suit": "DIVORCE/PROPERTY DIV./ALIMONY", - "citations": "2019 ND 15", - "summaries": "A marital property distribution in a divorce case is summarily affirmed under N.D.R.App.P. 35.1(a)(2) and (7).", - "case_name_shorts": "Kieson" + "docket_numbers": "20230338", + "judges": "", + "nature_of_suit": "Appeal - Civil - Post-Conviction Relief", + "summaries": "", + "case_name_shorts": "Happel", + "per_curiam": true }, { - "case_dates": "2019-01-15", - "case_names": "Interest of P.T.D.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND3", + "case_dates": "2024-03-18", + "case_names": "Adoption of R.E.M.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/48552", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180192", - "judges": "Per Curiam", - "nature_of_suit": "JUVENILE LAW", - "citations": "2019 ND 3", - "summaries": "An appeal from a juvenile court order finding five children to be deprived is summarily affirmed under N.D.R.App.P. 35.1(a)(2).", - "case_name_shorts": "Interest of P.T.D." + "docket_numbers": "20230321", + "judges": "", + "nature_of_suit": "Appeal - Juvenile - Termination of Parental Rights", + "summaries": "", + "case_name_shorts": "Adoption of R.E.M.", + "per_curiam": true }, { - "case_dates": "2019-01-15", - "case_names": "Interest of Jane Doe", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND23", + "case_dates": "2024-03-07", + "case_names": "Weber v. NDDOT", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/110774", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180409", + "docket_numbers": "20230354", "judges": "Crothers, Daniel John", - "nature_of_suit": "MENTAL HEALTH", - "citations": "2019 ND 23", - "summaries": "A district court's finding that a person is mentally ill and in need of treatment will not be reversed unless it is clearly erroneous. In determining whether an individual is a person requiring treatment a district court must consider whether the individual is mentally ill, and whether there is a reasonable expectation that, if the individual is not hospitalized, there exists a serious risk of harm to himself, others, or property.", - "case_name_shorts": "" + "nature_of_suit": "Appeal - Civil - Administrative Proceeding", + "summaries": "", + "case_name_shorts": "Weber", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "Interest of E.S.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND12", + "case_dates": "2024-03-07", + "case_names": "Vacancy in Judgeship No. 3, SCJD", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/300", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180426", - "judges": "McEvers, Lisa K. Fair", - "nature_of_suit": "MENTAL HEALTH", - "citations": "2019 ND 12", - "summaries": "A district court's finding respondent is mentally ill and requires treatment will not be reversed unless it is clearly erroneous. To show a respondent is a person requiring treatment, the petitioner must prove by clear and convincing evidence that the person is mentally ill and there is a reasonable risk that, if the person is not treated, he poses a serious risk of harm to himself, others, or property.", - "case_name_shorts": "Interest of E.S." + "docket_numbers": "20240006", + "judges": "", + "nature_of_suit": "Judicial Administration - Rule - Rule", + "summaries": "", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2019-01-15", - "case_names": "Interest of D.M.W.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND8", + "case_dates": "2024-03-07", + "case_names": "State v. Wiese", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/154128", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180413", - "judges": "Per Curiam", - "nature_of_suit": "TERMINATION/PARENTAL RIGHTS", - "citations": "2019 ND 8", - "summaries": "An appeal from a juvenile court order terminating parental rights is summarily affirmed under N.D.R.App.P. 35.1(a)(2) and (7).", - "case_name_shorts": "Interest of D.M.W." + "docket_numbers": "20230220", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Criminal - Sexual Offense", + "summaries": "", + "case_name_shorts": "Wiese", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "Hogen v. Hogen", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND17", + "case_dates": "2024-03-07", + "case_names": "State v. Henderson", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/74850", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180143", + "docket_numbers": "20230253", "judges": "Tufte, Jerod E.", - "nature_of_suit": "REAL PROPERTY", - "citations": "2019 ND 17", - "summaries": "A transferor cannot convey an interest greater than the transferor has in the property, and a transferor who does not hold title to property cannot pass or transfer title to that property.", - "case_name_shorts": "Hogen" + "nature_of_suit": "Appeal - Criminal - Misc. Felony", + "summaries": "", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "Helbling v. Helbling", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND27", + "case_dates": "2024-03-07", + "case_names": "Papenhausen v. ConocoPhillips Co.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/104611", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180095", - "judges": "McEvers, Lisa K. Fair", - "nature_of_suit": "DIVORCE/PROPERTY DIV./ALIMONY", - "citations": "2019 ND 27", - "summaries": "When a divorce settlement agreement is incorporated and merged into a judgment, only the final judgment is interpreted and enforced, not the underlying contract between the parties.", - "case_name_shorts": "Helbling" + "docket_numbers": "20230280", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Certified Question - Civil - Civil", + "summaries": "", + "case_name_shorts": "Papenhausen", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "Grina v. Job Service", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND24", + "case_dates": "2024-03-07", + "case_names": "Meuchel v. Red Trail Energy", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/54441", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180284", - "judges": "Crothers, Daniel John", - "nature_of_suit": "JOB SERVICE", - "citations": "2019 ND 24", - "summaries": "A Job Service decision is affirmed when a reasoning mind reasonably could have determined the agency's factual conclusions were proved by the weight of evidence.", - "case_name_shorts": "Grina" + "docket_numbers": "20230127", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Civil - Other", + "summaries": "", + "case_name_shorts": "Meuchel", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "Desert Partners IV, L.P. v. Benson", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND19", + "case_dates": "2024-03-07", + "case_names": "Interest of R.K.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/158", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180112", - "judges": "Jensen, Jon J.", - "nature_of_suit": "OIL, GAS AND MINERALS", - "citations": "2019 ND 19", - "summaries": "A district court's decision on whether to grant a motion for a continuance will not be reversed on appeal absent an abuse of discretion. Whether or not a party was a good-faith purchaser without notice of a competing interest is a mixed question of fact and law. A good-faith purchaser is one who acquires rights without actual or constructive notice of another's rights.", - "case_name_shorts": "Benson" + "docket_numbers": "20240062", + "judges": "", + "nature_of_suit": "Appeal - Civil - Mental Health", + "summaries": "", + "case_name_shorts": "Interest of R.K.", + "per_curiam": true }, { - "case_dates": "2019-01-15", - "case_names": "DeLong v. Shields", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND2", + "case_dates": "2024-03-07", + "case_names": "Interest of J.C.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/125519", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180198", - "judges": "Per Curiam", - "nature_of_suit": "CHILD CUST & SUPPORT (Div.\\Other)", - "citations": "2019 ND 2", - "summaries": "A district court's award of unsupervised parenting time is summarily affirmed under N.D.R.App.P. 35.1(a)(2).", - "case_name_shorts": "DeLong" + "docket_numbers": "20230377", + "judges": "", + "nature_of_suit": "Appeal - Juvenile - Termination of Parental Rights", + "summaries": "", + "case_name_shorts": "Interest of J.C.", + "per_curiam": true }, { - "case_dates": "2019-01-15", - "case_names": "Cody v. Cody", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND14", + "case_dates": "2024-03-07", + "case_names": "Interest of A.P.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/52005", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180120", - "judges": "VandeWalle, Gerald W.", - "nature_of_suit": "DIVORCE/PROPERTY DIV./ALIMONY", - "citations": "2019 ND 14", - "summaries": "The district court has broad discretion in deciding evidentiary matters, including whether to admit telephonic testimony. Interlocutory orders generally are not appealable and may be revised or reconsidered any time before the final order or judgment is entered. Claims for ineffective assistance of counsel have not been extended to civil actions for divorce.", - "case_name_shorts": "Cody" + "docket_numbers": "20230404", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Appeal - Juvenile - Termination of Parental Rights", + "summaries": "", + "case_name_shorts": "Interest of A.P.", + "per_curiam": false }, { - "case_dates": "2019-01-15", - "case_names": "Avila v. Weaver", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND20", + "case_dates": "2024-03-07", + "case_names": "Archambault v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/84856", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180111", - "judges": "Jensen, Jon J.", - "nature_of_suit": "CONTRACTS", - "citations": "2019 ND 20", - "summaries": "If a post-trial motion does not require the amendment of the judgment, N.D.R.App.P. 4(a)(3) applies and the time for appeal begins upon service of the notice of the order disposing of the motion. Where the order disposing of the motion necessitates the entry of an amended judgment, N.D.R.App.P. 4(a)(1) applies and the time for appeal begins upon the service of the notice of the entry of the amended judgment. An initial judgment did not foreclose on an award of attorney fees under N.D.R.Civ.P. 54(e)(3). This Court does not consider questions that were not presented to the district court and that are raised for the first time on appeal.", - "case_name_shorts": "Avila" + "docket_numbers": "20230336", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Civil - Post-Conviction Relief", + "summaries": "", + "case_name_shorts": "Archambault", + "per_curiam": false }, { - "case_dates": "2019-01-09", - "case_names": "Petition to Permit Temporary Provision of Legal Services", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND1", + "case_dates": "2024-02-22", + "case_names": "State v. Rinde", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/111040", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20160436", - "judges": "Per Curiam", - "nature_of_suit": "", - "citations": "2019 ND 1", - "summaries": "Order on petition for temporary lawyer practice.", - "case_name_shorts": "" + "docket_numbers": "20230285", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Criminal - Misc. Felony", + "summaries": "", + "case_name_shorts": "Rinde", + "per_curiam": false }, { - "case_dates": "2018-12-11", - "case_names": "Berg v. North Dakota State Board of Registration", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND274", + "case_dates": "2024-02-22", + "case_names": "State v. Fischer", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/119822", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20170413", - "judges": "Jensen, Jon J.", - "nature_of_suit": "ADMINISTRATIVE PROCEEDING", - "citations": "2018 ND 274", - "summaries": "In reviewing an administrative agency's findings of fact, the Supreme Court does not make independent findings of fact or substitute its judgment for that of the agency. In an administrative proceeding, the administrative agency resolves conflicts of evidence and weighs the credibility of witnesses.", - "case_name_shorts": "Berg" + "docket_numbers": "20230239", + "judges": "Crothers, Daniel John", + "nature_of_suit": "Appeal - Criminal - Theft", + "summaries": "", + "case_name_shorts": "Fischer", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "Tornabeni v. Wold", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND253", + "case_dates": "2024-02-22", + "case_names": "NDIC v. Gould", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/46686", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180164", - "judges": "Jensen, Jon J.", - "nature_of_suit": "OTHER (Civil)", - "citations": "2018 ND 253", - "summaries": "The existence and terms of an oral contract are findings of fact subject to the clearly erroneous rule. A district court's determination of whether the facts support a finding of unjust enrichment is fully reviewable on appeal. An award of damages for an unjust enrichment claim is reviewed under the clearly erroneous standard. Issues not raised in the district court are waived.", - "case_name_shorts": "Tornabeni" + "docket_numbers": "20230188", + "judges": "Crothers, Daniel John", + "nature_of_suit": "Appeal - Civil - Foreclosure", + "summaries": "", + "case_name_shorts": "NDIC", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "Stein v. State", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND264", + "case_dates": "2024-02-22", + "case_names": "Garaas v. Petro-Hunt", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/152710", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180128", - "judges": "Jensen, Jon J.", - "nature_of_suit": "POST-CONVICTION RELIEF", - "citations": "2018 ND 264", - "summaries": "A district court may summarily dismiss an application for post-conviction relief if there is no genuine issue of material fact and the moving party is entitled to judgment as a matter of law. Ineffective assistance of counsel issues are mixed questions of law and fact, which are fully reviewable on appeal. When a claim made in an application for post-conviction relief is clearly and unambiguously contradicted by the record, summary disposition is appropriate. When determining if summary disposition is appropriate on claims of ineffective assistance of counsel, the record and transcripts are generally not adequate if the petitioner alleges incidents outside of the record.", - "case_name_shorts": "Stein" + "docket_numbers": "20230200", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Civil - Oil, Gas and Minerals", + "summaries": "", + "case_name_shorts": "Garaas", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "State v. White", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND266", + "case_dates": "2024-02-22", + "case_names": "Disciplinary Board v. Pilch", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/111370", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180020", - "judges": "Crothers, Daniel John", - "nature_of_suit": "DRUGS/CONTRABAND", - "citations": "2018 ND 266", - "summaries": "The warrantless search of supervised probationer's home is reasonable under totality of the circumstances and does not violate Fourth Amendment protections against unreasonable search and seizure.", - "case_name_shorts": "White" + "docket_numbers": "20240023", + "judges": "", + "nature_of_suit": "Discipline - Attorney - Original Proceeding", + "summaries": "", + "case_name_shorts": "Pilch", + "per_curiam": true }, { - "case_dates": "2018-12-06", - "case_names": "State v. Vollrath", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND269", + "case_dates": "2024-02-09", + "case_names": "Disciplinary Board v. Spencer", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/82332", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180161", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "MISC. STATUTORY OFFENSE (FELONY)", - "citations": "2018 ND 269", - "summaries": "Once a judgment is final, a district court generally no longer has jurisdiction to alter, amend, or modify that judgment.", - "case_name_shorts": "Vollrath" + "docket_numbers": "20240012", + "judges": "", + "nature_of_suit": "Discipline - Attorney - Original Proceeding", + "summaries": "", + "case_name_shorts": "Spencer", + "per_curiam": true }, { - "case_dates": "2018-12-06", - "case_names": "State v. Mejia", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND249", + "case_dates": "2024-02-08", + "case_names": "WSI v. Kringlie", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/129045", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180178", - "judges": "Per Curiam", - "nature_of_suit": "ASSAULT", - "citations": "2018 ND 249", - "summaries": "Summary affirmance is appropriate when there is sufficient evidence to support a guilty verdict. In a case tried without a jury, the court need only find the defendant guilty or not guilty.", - "case_name_shorts": "Mejia" + "docket_numbers": "20230184", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Civil - Administrative Proceeding", + "summaries": "", + "case_name_shorts": "WSI", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "State v. Martin", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND262", + "case_dates": "2024-02-08", + "case_names": "State v. Good Bear", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/80896", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180141", - "judges": "VandeWalle, Gerald W.", - "nature_of_suit": "CHILD CUST & SUPPORT (Div.\\Other)", - "citations": "2018 ND 262", - "summaries": "District court did not err in denying a Rule 60(b) motion for relief from judgment where party was properly provided notice and served with the motion for default judgment.", - "case_name_shorts": "Martin" + "docket_numbers": "20230193", + "judges": "Jensen, Jon J.", + "nature_of_suit": "Appeal - Criminal - Misc. Felony", + "summaries": "", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "State v. Hebert", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND252", + "case_dates": "2024-02-08", + "case_names": "Sherwood v. Sherwood", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/52208", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180171", - "judges": "Per Curiam", - "nature_of_suit": "MISC. STATUTORY OFF. (MISDEMEANOR)", - "citations": "2018 ND 252", - "summaries": "A criminal judgment convicting the defendant of tampering or damaging a public service is summarily reversed under N.D.R.App.P. 35.1(b).", - "case_name_shorts": "Hebert" + "docket_numbers": "20230230", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Civil - Other", + "summaries": "", + "case_name_shorts": "Sherwood", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "State v. Ferderer", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND254", + "case_dates": "2024-02-08", + "case_names": "Pinks v. Kelsch", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/907", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180072", - "judges": "Crothers, Daniel John", - "nature_of_suit": "MISC. STATUTORY OFFENSE (FELONY)", - "citations": "2018 ND 254", - "summaries": "A revocation of a sentence for a probation violation does not violate double jeopardy.", - "case_name_shorts": "Ferderer" + "docket_numbers": "20230161", + "judges": "McEvers, Lisa K. Fair", + "nature_of_suit": "Appeal - Civil - Malpractice", + "summaries": "", + "case_name_shorts": "Pinks", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "State v. Bornsen", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND256", + "case_dates": "2024-02-08", + "case_names": "Mahad v. WSI", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/133423", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180093", - "judges": "Jensen, Jon J.", - "nature_of_suit": "DUI/DUS", - "citations": "2018 ND 256", - "summaries": "Investigatory traffic stops are valid when the officer conducting the stop had a reasonable and articulable suspicion the motorist has violated or is violating the law. Traffic violations, even if considered common or minor, constitute prohibited conduct which provide officers with requisite suspicion for conducting investigatory stops.", - "case_name_shorts": "Bornsen" + "docket_numbers": "20230332", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Administrative - Workers Compensation", + "summaries": "", + "case_name_shorts": "Mahad", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "State ex rel. City of Marion v. Alber", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND267", + "case_dates": "2024-02-08", + "case_names": "Lyons v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/85291", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180074", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "OTHER (Civil)", - "citations": "2018 ND 267", - "summaries": "Under N.D.R.Civ.P. 60(b), a district court cannot amend an order to impose further affirmative relief. If an amendment grants no further relief but merely more clearly articulates the same substantive relief, it may be made under Rule 60(a) at any time.", - "case_name_shorts": "Alber" + "docket_numbers": "20230151", + "judges": "Crothers, Daniel John", + "nature_of_suit": "Appeal - Civil - Post-Conviction Relief", + "summaries": "", + "case_name_shorts": "Lyons", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "Sorlie v. Sorlie", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND248", + "case_dates": "2024-02-08", + "case_names": "Landis v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/109657", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180071", - "judges": "Per Curiam", - "nature_of_suit": "CHILD CUST & SUPPORT (Div.\\Other)", - "citations": "2018 ND 248", - "summaries": "A district court's award of residential responsibility is summarily affirmed under N.D.R.App.P. 35.1(a)(2).", - "case_name_shorts": "Sorlie" + "docket_numbers": "20230224", + "judges": "", + "nature_of_suit": "Appeal - Civil - Post-Conviction Relief", + "summaries": "", + "case_name_shorts": "Landis", + "per_curiam": true }, { - "case_dates": "2018-12-06", - "case_names": "Schultz v. Schultz", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND259", + "case_dates": "2024-02-08", + "case_names": "LAWC Holdings v. Vincent Watford", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/129645", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180097", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "DIVORCE/PROPERTY DIV./ALIMONY", - "citations": "2018 ND 259", - "summaries": "There is no bright-line rule to distinguish between short and long-term marriages. This Court will not reverse a district court's findings on valuation of marital property unless they are clearly erroneous. When a distribution of property includes periodic cash payments from one spouse to another, a district court has broad authority to provide for the payment of interest in order to achieve an equitable distribution of the property.", - "case_name_shorts": "Schultz" + "docket_numbers": "20230087", + "judges": "Jensen, Jon J.", + "nature_of_suit": "Appeal - Civil - Real Property", + "summaries": "", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "Sabot v. State", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND251", + "case_dates": "2024-02-08", + "case_names": "Keller v. Keller", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/106171", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180191", - "judges": "Per Curiam", - "nature_of_suit": "POST-CONVICTION RELIEF", - "citations": "2018 ND 251", - "summaries": "Summary dismissal of post-conviction relief summarily affirmed under N.D.R.App.P 35.1(a)(2) and (7).", - "case_name_shorts": "Sabot" + "docket_numbers": "20230258", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Civil - Contempt of Court", + "summaries": "", + "case_name_shorts": "Keller", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "Rustad v. Baumgartner", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND268", + "case_dates": "2024-02-08", + "case_names": "Friends of the Rail Bridge v. N.D. Dep't of Water Resources", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/3914", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180080", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "CHILD CUST & SUPPORT (Div.\\Other)", - "citations": "2018 ND 268", - "summaries": "A parenting plan is clearly erroneous when it denies a parent overnights or extended summer visitation without evidence of endangerment to the child's physical or emotional health.", - "case_name_shorts": "Rustad" + "docket_numbers": "20230240", + "judges": "McEvers, Lisa K. Fair", + "nature_of_suit": "Appeal - Civil - Administrative Proceeding", + "summaries": "", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "Matter of Kulink", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND260", + "case_dates": "2024-02-08", + "case_names": "Estate of Heath", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/112013", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180083", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "CIVIL COMMIT OF SEXUAL PREDATOR", - "citations": "2018 ND 260", - "summaries": "A district court order denying discharge from civil commitment as a sexually dangerous individual is summarily affirmed under N.D.R.App.P. 35.1(a)(2)", - "case_name_shorts": "Matter of Kulink" + "docket_numbers": "20230250", + "judges": "Jensen, Jon J.", + "nature_of_suit": "Appeal - Civil - Probate, Wills, Trusts", + "summaries": "", + "case_name_shorts": "Estate of Heath", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "Lechner v. WSI", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND270", + "case_dates": "2024-02-08", + "case_names": "Don's Garden Center v. The Garden District (consol. w/20230271)", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/86470", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180203", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "WORKERS COMPENSATION", - "citations": "2018 ND 270", - "summaries": "A claim for workers' compensation benefits must be filed within one year after the injury. The date of injury for purposes of determining whether a claim for benefits is timely filed is the first date a reasonable lay person, not learned in medicine, knew or should have known that he suffered a compensable work-related injury and has either lost wages or received medical treatment.", - "case_name_shorts": "Lechner" + "docket_numbers": "20230270", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Civil - Landlord/Tenant", + "summaries": "", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "LeClair v. Sorel", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND255", + "case_dates": "2024-01-22", + "case_names": "Swanson v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/77902", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180155", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "TRANSPORTATION DEPT.", - "citations": "2018 ND 255", - "summaries": "The implied consent advisory provided to a driver after an arrest for driving under the influence must be substantively complete. The entire substance of the advisory was conveyed despite the officer's omission of the word \"punishable\" from the statutory language in N.D.C.C. 39-20-01(3)(a).", - "case_name_shorts": "LeClair" + "docket_numbers": "20230249", + "judges": "", + "nature_of_suit": "Appeal - Civil - Post-Conviction Relief", + "summaries": "", + "case_name_shorts": "Swanson", + "per_curiam": true }, { - "case_dates": "2018-12-06", - "case_names": "Interest of D.V.A.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND250", + "case_dates": "2024-01-22", + "case_names": "Stancel v. Stancel", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/85428", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180166", - "judges": "Per Curiam", - "nature_of_suit": "CIVIL COMMIT OF SEXUAL PREDATOR", - "citations": "2018 ND 250", - "summaries": "A district court order denying discharge from civil commitment as a sexually dangerous individual is summarily affirmed under N.D.R.App.P. 35.1(a)(2).", - "case_name_shorts": "Interest of D.V.A." + "docket_numbers": "20230287", + "judges": "", + "nature_of_suit": "Appeal - Civil - Child Support", + "summaries": "", + "case_name_shorts": "Stancel", + "per_curiam": true }, { - "case_dates": "2018-12-06", - "case_names": "Interest of A.L.E.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND257", + "case_dates": "2024-01-22", + "case_names": "Plaisimond v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/130937", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180341", - "judges": "Jensen, Jon J.", - "nature_of_suit": "TERMINATION/PARENTAL RIGHTS", - "citations": "2018 ND 257", - "summaries": "Prenatal exposure to any controlled substance is a ground for a finding of deprivation. A parent's past conduct can form the basis to predict future behavior and a parent's lack of cooperation with social service agencies is evidence that the causes and conditions of deprivation will likely continue. When a parent, through voluntary actions, without reasonable justification, makes herself unavailable to care for and parent a young child, the child should not be expected to wait or assume the risk involved in waiting for permanency and stability in her life.", - "case_name_shorts": "Interest of A.L.E." + "docket_numbers": "20230252", + "judges": "", + "nature_of_suit": "Appeal - Civil - Post-Conviction Relief", + "summaries": "", + "case_name_shorts": "Plaisimond", + "per_curiam": true }, { - "case_dates": "2018-12-06", - "case_names": "Hunts Along v. N.D. Dep't of Transportation", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND261", + "case_dates": "2024-01-22", + "case_names": "Interest of R.S.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/116847", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180146", - "judges": "VandeWalle, Gerald W.", - "nature_of_suit": "TRANSPORTATION DEPT.", - "citations": "2018 ND 261", - "summaries": "Department did not err in revoking defendant's drivers license under N.D.C.C. \u00a7 39-20-14 following defendant's refusal of on-site breath test. A party who refuses a screening or chemical test cannot challenge the unperformed tests' compliance with statutory requirements. We cannot logically construe the statutes to require the State to provide foundational evidence for a test which was refuse, thus making the foundational evidence irrelevant.", - "case_name_shorts": "" + "docket_numbers": "20230410", + "judges": "", + "nature_of_suit": "Appeal - Civil - Mental Health", + "summaries": "", + "case_name_shorts": "Interest of R.S.", + "per_curiam": true }, { - "case_dates": "2018-12-06", - "case_names": "Green v. Swiers", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND258", + "case_dates": "2024-01-22", + "case_names": "Interest of J.C.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/125517", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180114", - "judges": "Jensen, Jon J.", - "nature_of_suit": "CHILD CUST & SUPPORT (Div.\\Other)", - "citations": "2018 ND 258", - "summaries": "A district court's decision on a motion to relocate is a finding of fact, which will not be reversed on appeal unless it is clearly erroneous. To modify parenting time, the movant must establish a material change of circumstances has occurred since the prior visitation order and that it is in the best interests of the child to modify the order. A material change in circumstances sufficient to amend a parenting time order is similar to, but distinct from, a material change in circumstances sufficient to change primary residential responsibility. A district court's decision to modify parenting time is a finding of fact, which will not be reversed on appeal unless clearly erroneous.", - "case_name_shorts": "Green" + "docket_numbers": "20230377", + "judges": "", + "nature_of_suit": "Appeal - Juvenile - Termination of Parental Rights", + "summaries": "", + "case_name_shorts": "Interest of J.C.", + "per_curiam": true }, { - "case_dates": "2018-12-06", - "case_names": "Dale Exploration, LLC v. Hiepler", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND271", + "case_dates": "2024-01-22", + "case_names": "Hoover v. NDDOT", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/113524", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180065", - "judges": "VandeWalle, Gerald W.", - "nature_of_suit": "REAL PROPERTY", - "citations": "2018 ND 271", - "summaries": "The settlor of an irrevocable trust with the power to remove trust property must convey mineral interests that he sold in an individual capacity while the property was titled under the trust.", - "case_name_shorts": "Hiepler" + "docket_numbers": "20230226", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Civil - Administrative Proceeding", + "summaries": "", + "case_name_shorts": "Hoover", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "Dahms v. Nodak Mutual Insurance Co.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND263", + "case_dates": "2024-01-22", + "case_names": "Estate of Lindberg", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/111009", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180202", - "judges": "VandeWalle, Gerald W.", - "nature_of_suit": "INSURANCE", - "citations": "2018 ND 263", - "summaries": "A detached garage connected to a dwelling by a deck constituted an \"other structure\" rather than a \"dwelling\" for purposes of determining insurance coverage. Summary judgment is appropriate against a party who fails to establish the existence of a factual dispute as to an essential element of his claim and on which he will bear the burden of proof at trial.", - "case_name_shorts": "Dahms" + "docket_numbers": "20230102", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Appeal - Civil - Probate, Wills, Trusts", + "summaries": "", + "case_name_shorts": "Estate of Lindberg", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "City of Grand Forks v. Barendt", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND272", + "case_dates": "2024-01-10", + "case_names": "Yalartai v. Miller", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/155245", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180227", - "judges": "McEvers, Lisa K. Fair", - "nature_of_suit": "DUI/DUS", - "citations": "2018 ND 272", - "summaries": "The implied consent advisory under N.D.C.C. 39-20-01(3) must be read after placing an individual under arrest and before administering a chemical test to determine alcohol concentration or the presence of other drugs.", - "case_name_shorts": "Barendt" + "docket_numbers": "20230159", + "judges": "Crothers, Daniel John", + "nature_of_suit": "Appeal - Civil - Child Support", + "summaries": "", + "case_name_shorts": "Yalartai", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "Bakke v. Magi-Touch Carpet One Floor & Home, Inc.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND273", + "case_dates": "2024-01-10", + "case_names": "State v. Williamson", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/126998", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180116", - "judges": "Jensen, Jon J.", - "nature_of_suit": "CONTRACTS", - "citations": "2018 ND 273", - "summaries": "An employer of an independent contractor generally is not liable for the negligence of the independent contractor. North Dakota law recognizes an implied warranty of fitness for a particular purpose in construction contracts. A contracting party cannot escape its liability on the contract by merely assigning its duties and rights under the contract to a third party. The remedy for fraud is rescission of the contract and requires returning the parties back to their original positions. Deceit is not an action dependent on a contract it is a tort cause of action, and allows recovery of damages upon proof of an affirmative misrepresentation or suppression of material facts. When a party requests leave to amend without requesting additional discovery and a summary judgment motion has been docketed, the proposed amendment must be both theoretically viable and solidly grounded in the record. The measure of damages for breach of contract is the amount which will compensate the injured person for the loss which fulfillment of the contract would have prevented or the breach of the contract now requires.", - "case_name_shorts": "Bakke" + "docket_numbers": "20230205", + "judges": "Bahr, Douglas Alan", + "nature_of_suit": "Appeal - Criminal - Sexual Offense", + "summaries": "", + "case_name_shorts": "Williamson", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "Adoption of A.S.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND265", + "case_dates": "2024-01-10", + "case_names": "State v. Salou", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/150015", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180326", - "judges": "McEvers, Lisa K. Fair", - "nature_of_suit": "TERMINATION/PARENTAL RIGHTS", - "citations": "2018 ND 265", - "summaries": "A district court's findings of fact in a termination of parental rights proceeding will not be reversed on appeal unless they are clearly erroneous. A finding on one of three alternative grounds authorizing termination of parental rights under N.D.C.C. 14-15-19(3) is sufficient to uphold a district court's order terminating parental rights on that ground.", - "case_name_shorts": "Adoption of A.S." + "docket_numbers": "20230196", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Appeal - Criminal - Misc. Felony", + "summaries": "", + "case_name_shorts": "Salou", + "per_curiam": false }, { - "case_dates": "2018-11-19", - "case_names": "Johnston Law Office, P.C. v. Brakke", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND247", + "case_dates": "2024-01-10", + "case_names": "State v. Gonzalez", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/76624", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180029", - "judges": "Crothers, Daniel John", - "nature_of_suit": "OTHER (Civil)", - "citations": "2018 ND 247", - "summaries": "If a party moving for summary judgment meets its initial burden of showing there are no genuine issues of material fact and it is entitled to judgment as a matter of law, the party opposing the motion must present competent admissible evidence to show the existence of a genuine issue of material fact.", - "case_name_shorts": "Brakke" + "docket_numbers": "20230133", + "judges": "McEvers, Lisa K. Fair", + "nature_of_suit": "Appeal - Criminal - Sexual Offense", + "summaries": "", + "case_name_shorts": "Gonzalez", + "per_curiam": false }, { - "case_dates": "2018-11-15", - "case_names": "Petition to Permit Temporary Provision of Legal Services", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2019ND1", + "case_dates": "2024-01-10", + "case_names": "State v. Gietzen", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/86590", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20160436", - "judges": "Per Curiam", - "nature_of_suit": "", - "citations": "2019 ND 1", - "summaries": "Order on petition for temporary lawyer practice.", - "case_name_shorts": "" + "docket_numbers": "20230181", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Appeal - Criminal - Misc. Felony", + "summaries": "", + "case_name_shorts": "Gietzen", + "per_curiam": false }, { - "case_dates": "2018-11-13", - "case_names": "Thompson v. Molde", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND245", + "case_dates": "2024-01-10", + "case_names": "State v. A.J.H.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/127572", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20170127", - "judges": "Crothers, Daniel John", - "nature_of_suit": "TAX RELATED", - "citations": "2018 ND 245", - "summaries": "Summary judgment allows for the prompt resolution of a controversy on the merits without a trial if there are no disputed issues of material fact and the moving party is entitled to judgment as a matter of law. The Supreme Court may award just damages and single or double costs, including reasonable attorney's fees for a frivolous appeal.", - "case_name_shorts": "Thompson" + "docket_numbers": "20230241", + "judges": "McEvers, Lisa K. Fair", + "nature_of_suit": "Appeal - Criminal - Misc. Felony", + "summaries": "", + "case_name_shorts": "A.J.H.", + "per_curiam": false }, { - "case_dates": "2018-11-06", - "case_names": "Upton v. Nolan", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND243", + "case_dates": "2024-01-10", + "case_names": "Larson Latham Huettl v. Vetter", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/40003", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180119", - "judges": "Crothers, Daniel John", - "nature_of_suit": "CHILD CUST & SUPPORT (Div.\\Other)", - "citations": "2018 ND 243", - "summaries": "Although a district court has continuing jurisdiction to modify parenting time, due process requires a parent receive adequate notice and a fair opportunity to be heard. Due process notice requirements are satisfied when an unpled issue is tried by the implied consent of the parties. Consent to try an issue outside the pleadings cannot be implied from evidence which is relevant to the pleadings but which also bears on an unpleaded issue. A district court has broad discretion in making contempt decisions and in awarding attorney fees as reimbursement for costs and expenses incurred as a result of the contempt.", - "case_name_shorts": "Upton" + "docket_numbers": "20230113", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Appeal - Civil - Contracts", + "summaries": "", + "case_name_shorts": "Vetter", + "per_curiam": false }, { - "case_dates": "2018-11-06", - "case_names": "State v. Sanchez", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND242", + "case_dates": "2023-12-28", + "case_names": "State v. Nelson", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/51719", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180063", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "THEFT", - "citations": "2018 ND 242", - "summaries": "A district court may extend on its own a self-imposed deadline for scheduling or holding a restitution hearing.", - "case_name_shorts": "Sanchez" + "docket_numbers": "20230234", + "judges": "Jensen, Jon J.", + "nature_of_suit": "Appeal - Criminal - Misc. Felony", + "summaries": "", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2018-11-06", - "case_names": "State v. Rogers", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND244", + "case_dates": "2023-12-28", + "case_names": "State v. Gai", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/48715", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20170389", - "judges": "Tufte, Jerod E.", - "nature_of_suit": "SEXUAL OFFENSE", - "citations": "2018 ND 244", - "summaries": "Defendant appeals from a district court judgment for gross sexual imposition. Because the district court did not make individualized findings supporting closure of the competency hearing under Waller, the Sixth Amendment public trial guarantee wasviolated. The restitution award was proper and it is affirmed consistent with our remand. We remand for further proceedings.", - "case_name_shorts": "" + "docket_numbers": "20230231", + "judges": "", + "nature_of_suit": "Appeal - Criminal - DUI/DUS/APC", + "summaries": "", + "case_name_shorts": "Gai", + "per_curiam": true }, { - "case_dates": "2018-11-06", - "case_names": "State v. Jessee", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND241", + "case_dates": "2023-12-28", + "case_names": "Mead v. Hatzenbeller", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/106590", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180047", + "docket_numbers": "20230185", "judges": "Crothers, Daniel John", - "nature_of_suit": "MISC. STATUTORY OFFENSE (FELONY)", - "citations": "2018 ND 241", - "summaries": "Questions of fact in a criminal bench trial are reviewed in the same manner as questions of fact in a criminal jury trial. Tampering with a public service requires an alteration or harmful change towards property under the control of the public service.", - "case_name_shorts": "Jessee" + "nature_of_suit": "Appeal - Civil - Other", + "summaries": "", + "case_name_shorts": "Mead", + "per_curiam": false }, { - "case_dates": "2018-11-06", - "case_names": "State v. Etemad", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND240", + "case_dates": "2023-12-28", + "case_names": "Koon v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/133082", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20170421", - "judges": "Per Curiam", - "nature_of_suit": "MISC. STATUTORY OFFENSE (FELONY)", - "citations": "2018 ND 240", - "summaries": "A district court judgment entered after a jury found Etemad guilty of terrorizing is summarily affirmed under N.D.R.App.P. 35.1(a)(3) and (7). Under an obvious error analysis, in order to find a violation affects substantial rights a moving party must demonstrate the violation significantly prejudiced him.", - "case_name_shorts": "Etemad" + "docket_numbers": "20230139", + "judges": "Tufte, Jerod E.", + "nature_of_suit": "Appeal - Civil - Post-Conviction Relief", + "summaries": "", + "case_name_shorts": "Koon", + "per_curiam": false }, { - "case_dates": "2018-11-06", - "case_names": "Prairie Winds Apartments 1, LLC v. Stark County Board of Commissioners (cons", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND233", + "case_dates": "2023-12-28", + "case_names": "Heywood v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/109701", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180149", - "judges": "Per Curiam", - "nature_of_suit": "ADMINISTRATIVE PROCEEDING", - "citations": "2018 ND 233", - "summaries": "To properly appeal a board of county commissioners' decision relating to tax matters, a landowner must file a notice of appeal on a board member and the state tax commissioner within thirty days of the board's decision.", - "case_name_shorts": "" + "docket_numbers": "20230223", + "judges": "", + "nature_of_suit": "Appeal - Civil - Post-Conviction Relief", + "summaries": "", + "case_name_shorts": "Heywood", + "per_curiam": true }, { - "case_dates": "2018-11-06", - "case_names": "Pederson v. State", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND239", + "case_dates": "2023-12-28", + "case_names": "Gaede v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/115512", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180126", - "judges": "Per Curiam", - "nature_of_suit": "POST-CONVICTION RELIEF", - "citations": "2018 ND 239", - "summaries": "Judgment denying motion for relief under N.D.R.Civ.P. 60(b) and application for post-conviction relief is summarily affirmed under N.D.R.App.P. 35.1(a)(4) and (7).", - "case_name_shorts": "Pederson" + "docket_numbers": "20230269", + "judges": "", + "nature_of_suit": "Appeal - Civil - Post-Conviction Relief", + "summaries": "", + "case_name_shorts": "Gaede", + "per_curiam": true }, { - "case_dates": "2018-11-06", - "case_names": "McGath v. Waide", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND234", + "case_dates": "2023-12-28", + "case_names": "Everett v. State", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/75623", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180159", - "judges": "Per Curiam", - "nature_of_suit": "OTHER (Civil)", - "citations": "2018 ND 234", - "summaries": "A district court disorderly conduct restraining order is summarily affirmed under N.D.R.App.P. 35.1(a)(4).", - "case_name_shorts": "McGath" + "docket_numbers": "20230192", + "judges": "Crothers, Daniel John", + "nature_of_suit": "Appeal - Civil - Post-Conviction Relief", + "summaries": "", + "case_name_shorts": "Everett", + "per_curiam": false }, { - "case_dates": "2018-11-06", - "case_names": "Marler v. Martin", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND238", + "case_dates": "2023-12-28", + "case_names": "Anderson v. Lamm", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/128308", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180019", - "judges": "Per Curiam", - "nature_of_suit": "CONTRACTS", - "citations": "2018 ND 238", - "summaries": "A judgment and order denying a motion for a new trial are summarily affirmed under N.D.R.App.P. 35.1(a)(4) and (7).", - "case_name_shorts": "Marler" + "docket_numbers": "20230301", + "judges": "Crothers, Daniel John", + "nature_of_suit": "Appeal - Civil - Other", + "summaries": "", + "case_name_shorts": "Anderson", + "per_curiam": false }, { - "case_dates": "2018-11-06", - "case_names": "Interest of G.F.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND236", + "case_dates": "2023-12-15", + "case_names": "Shift Services v. Ames Savage Water Solutions", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/80480", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180332", - "judges": "Per Curiam", - "nature_of_suit": "TERMINATION/PARENTAL RIGHTS", - "citations": "2018 ND 236", - "summaries": "Juvenile court order terminating parental rights under N.D.C.C. 27-20-44(1)(c)(1) and N.D.C.C. 27-20-44(1)(c)(2) is summarily affirmed under N.D.R.App.P. 35.1(a)(2).", - "case_name_shorts": "Interest of G.F." + "docket_numbers": "20230217", + "judges": "Jensen, Jon J.", + "nature_of_suit": "Appeal - Civil - Contracts", + "summaries": "", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2018-11-06", - "case_names": "Guardianship/Conservatorship of M.J.K.", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND235", + "case_dates": "2023-12-15", + "case_names": "Mathisen v. Becker-Johner", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/114841", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180058", - "judges": "Per Curiam", - "nature_of_suit": "GUARDIAN/CONSERVATOR", - "citations": "2018 ND 235", - "summaries": "District Court's finding that the ward fails to make a prima facie case to terminate guardianship is summarily affirmed under N.D.App.P. 35.1(a)(2) and (7). Constitutional issues not pursued in the district court cannot be raised for the first time on appeal.", - "case_name_shorts": "Guardianship/Conservatorship of M.J.K." + "docket_numbers": "20230263", + "judges": "", + "nature_of_suit": "Appeal - Civil - Real Property", + "summaries": "", + "case_name_shorts": "Mathisen", + "per_curiam": true }, { - "case_dates": "2018-11-06", - "case_names": "City of Fargo v. Nelson", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND237", + "case_dates": "2023-12-15", + "case_names": "Interest of Wedmore", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/127653", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20170424", - "judges": "Per Curiam", - "nature_of_suit": "OTHER (Civil)", - "citations": "2018 ND 237", - "summaries": "Civil judgment finding appellant's property constitutes a public nuisance, requiring abatement of the nuisance, and granting a permanent injunction from maintaining a nuisance on the property is summarily affirmed under N.D.R.App.P. 35.1(a)(2), (4),(7).", - "case_name_shorts": "" + "docket_numbers": "20230150", + "judges": "Crothers, Daniel John", + "nature_of_suit": "Appeal - Civil - Civil Commitment of Sexually Dangerous Individual", + "summaries": "", + "case_name_shorts": "Interest of Wedmore", + "per_curiam": false }, { - "case_dates": "2018-10-18", - "case_names": "Vacancy in Judgeship No. 2, East Central Judicial District", - "download_urls": "http://www.ndcourts.gov/supreme-court/opinion/2018ND232", + "case_dates": "2023-12-15", + "case_names": "Interest of J.M.M.", + "download_urls": "https://www.ndcourts.gov/supreme-court/opinions/121275", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20180334", - "judges": "Per Curiam", - "nature_of_suit": "", - "citations": "2018 ND 232", + "docket_numbers": "20230348", + "judges": "", + "nature_of_suit": "Appeal - Juvenile - Termination of Parental Rights", "summaries": "", - "case_name_shorts": "" + "case_name_shorts": "Interest of J.M.M.", + "per_curiam": true } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nd_example.html b/tests/examples/opinions/united_states/nd_example.html index ab4874f2f..ada77eb56 100644 --- a/tests/examples/opinions/united_states/nd_example.html +++ b/tests/examples/opinions/united_states/nd_example.html @@ -1,52 +1,25 @@ - - + + - North Dakota Court System - - - - - - - - - - - - - - - - - + -
    - - -
    -
    - - -
    -
    - - - -
    - -
    + -
    -
    -
    -
    -
    - - - - - - -
    -
    -

    Recent Opinions

    - -
    -
    -
    - - -
    -
    - - -
    -
    - - -
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    -

    - Robert Banderet,et al. vs. Sargent Count Water Resource District, et al. 2019 ND 57
    - Docket No.: 20180253
    - Filing Date: 2/26/2019
    - Case Type: REAL PROPERTY
    - Author: VandeWalle, Gerald W.
    -

    -

    -
    -
    -

    - Highlight: In general, when an appeal from a local governing body’s decision is authorized by law, equitable relief against the enforcement of the decision will not be allowed.
    An appeal of a local governing body’s decision must be taken within 30 days of the decision. -

    -
    -
    -
    -
    -
    -

    - Bindas v. Bindas 2019 ND 56
    - Docket No.: 20180232
    - Filing Date: 2/25/2019
    - Case Type: DIVORCE/PROPERTY DIV./ALIMONY
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: Section 14-05-24.1(3), N.D.C.C., which authorizes the district court to terminate spousal support when the spouse receiving support has been habitually cohabiting with another individual in a relationship analogous to a marriage for more than one year, does not apply when the parties have a contrary written agreement. -

    -
    -
    -
    -
    -
    -

    - Matter of Kulink 2019 ND 55
    - Docket No.: 20180083
    - Filing Date: 2/25/2019
    - Case Type: CIVIL COMMIT OF SEXUAL PREDATOR
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A district court order denying discharge from civil commitment as a sexually dangerous individual is summarily affirmed under N.D.R.App.P. 35.1(a)(2) -

    -
    -
    -
    -
    -
    -

    - Dick v. Erman 2019 ND 54
    - Docket No.: 20180236
    - Filing Date: 2/21/2019
    - Case Type: CHILD CUST & SUPPORT (Div.\Other)
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: A district court’s award of primary residential responsibility is a finding of fact, which will not be reversed on appeal unless it is clearly erroneous.

    Absent a reason for denying it, some form of extended visitation with a fit non-custodial parent is routinely awarded.

    A district court’s ruling on decision-making responsibility is a finding of fact, reviewed under the clearly erroneous standard. -

    -
    -
    -
    -
    -
    -

    - Lenertz v. City of Minot N.D. 2019 ND 53
    - Docket No.: 20180153
    - Filing Date: 2/21/2019
    - Case Type: REAL PROPERTY
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: To establish an inverse condemnation claim, a property owner must prove a public entity took or damaged the owner’s property for a public use and the public use was the proximate cause of the taking or damages.

    Whether private property was taken for public use is a question of law, fully reviewable on appeal.

    The district court has broad discretion determining whether to allow expert witness testimony, and its decision will not be reversed on appeal unless it abused its discretion.

    The district court’s decision to grant a motion for judgment as a matter of law is based on whether the evidence, viewed in the light most favorable to the party against whom the motion is made, leads to but one conclusion as to the verdict about which there can be no reasonable difference of opinion. Whether the evidence is sufficient to create a question of fact for the jury is a question of law. -

    -
    -
    -
    -
    -
    -

    - State v. Hansford 2019 ND 52
    - Docket No.: 20180179
    - Filing Date: 2/21/2019
    - Case Type: SEXUAL OFFENSE
    - Author: McEvers, Lisa K. Fair
    -

    -

    -
    -
    -

    - Highlight: Whether a suspect is in custody is a mixed question of fact and law which is fully reviewable on appeal.

    A reasonable person would not believe he was in custody when he traveled unrestrained to the police station, was not placed under arrest or otherwise restrained, was told he was free to leave at any time, sat closest to the door during the interview, was interviewed in a room with only one law enforcement agent present, did not show any apprehension about being in the agent’s company, and told the agent he understood he was free to leave at any time.

    It is the State’s burden to prove the voluntariness of a defendant’s confession and to produce evidence on relevant factors.

    Even if a suspect is not in custody and Miranda warnings are given gratuitously, they are not rendered wholly irrelevant in determining whether incriminating statements were given voluntarily.

    Parties raising a constitutional claim must provide persuasive authority and a reasoned analysis to support the claim.
    -

    -
    -
    -
    -
    -
    -

    - State v. Powley 2019 ND 51
    - Docket No.: 20180226
    - Filing Date: 2/21/2019
    - Case Type: SEXUAL OFFENSE
    - Author: McEvers, Lisa K. Fair
    -

    -

    -
    -
    -

    - Highlight: A pre-trial order in limine excluding evidence is a preliminary order that does not dispense with the need for the proponent to make an offer of proof at trial so the district court can consider the proffered evidence in the context of other evidence presented during trial.

    An appeal by the State of an order in limine excluding evidence is not statutorily authorized.

    The authority to issue a supervisory writ is discretionary and we decide whether to exercise our supervisory jurisdiction on a case-by-case basis.

    An appeal by the State of an order denying a motion to amend an information is not statutorily authorized.
    -

    -
    -
    -
    -
    -
    -

    - State v. Dowdy 2019 ND 50
    - Docket No.: 20180204
    - Filing Date: 2/21/2019
    - Case Type: DUI/DUS
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: An arresting officer’s inclusion of additional information in the implied consent advisory must not materially mislead or coerce a defendant.
    Whether a defendant voluntarily consents to chemical testing must be determined by the totality of the circumstances. -

    -
    -
    -
    -
    -
    -

    - Varty v. Varty 2019 ND 49
    - Docket No.: 20180279
    - Filing Date: 2/21/2019
    - Case Type: DIVORCE/PROPERTY DIV./ALIMONY
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: Agreements between divorcing parties are encouraged, and stipulated spousal support awards should be changed only with great reluctance.
    The party seeking modification of spousal support must prove a material change in the financial circumstances of the parties warranting a change in support.
    The district court must consider the relevant factors under the Ruff-Fischer guidelines in determining an award of spousal support. -

    -
    -
    -
    -
    -
    -

    - Smith v. Erickson 2019 ND 48
    - Docket No.: 20180124
    - Filing Date: 2/21/2019
    - Case Type: CHILD CUST & SUPPORT (Div.\Other)
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: The district court has broad discretion in making contempt decisions and will not be overturned unless an abuse of discretion occurs.

    The lack of a trial transcript does not allow for meaningful and intelligent review of issues on appeal.

    The district court did not abuse its discretion in finding plaintiff a vexatious litigant when evidence supported finding litigant persistently and without reasonable grounds filed motions and requests not warranted under existing law. -

    -
    -
    -
    -
    -
    -

    - Gonzalez v. State 2019 ND 47
    - Docket No.: 20180188
    - Filing Date: 2/21/2019
    - Case Type: POST-CONVICTION RELIEF
    - Author: McEvers, Lisa K. Fair
    -

    -

    -
    -
    -

    - Highlight: When an applicant for post-conviction relief alleges newly discovered evidence, a district court errs in sua sponte summarily denying the application, after the State has responded to the application, without providing the applicant notice and the opportunity to submit an answer with supporting materials to show the existence of a genuine issue of material fact.

    A district court’s error in sua sponte summarily denying an application for post-conviction relief alleging newly discovered evidence after response by the State does not prejudice the applicant if the district court later considers and correctly rules on the merits in the applicant’s subsequent motion for reconsideration.
    -

    -
    -
    -
    -
    -
    -

    - Kuntz v. State 2019 ND 46
    - Docket No.: 20180135
    - Filing Date: 2/21/2019
    - Case Type: OTHER (Civil)
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: A district court’s decision granting judgment on the pleadings under N.D.R.Civ.P. 12(c) is reviewed de novo.

    A public entity violates the open records law when a person’s right to review or receive a copy of a record that is not exempt or confidential is denied or unreasonably delayed or when an excessive fee is charged.

    A civil action for a violation of the open records law may be filed after an unreasonably delayed disclosure if a person alleges prejudice or harm caused by the delay.

    An affidavit of service by mail filed with the court establishes service of the referenced documents. Service of an unsigned copy of the affidavit does not vitiate the evidence of service presented to the court by filing the signed affidavit. -

    -
    -
    -
    -
    -
    -

    - Heidt v. Heidt 2019 ND 45
    - Docket No.: 20180250
    - Filing Date: 2/21/2019
    - Case Type: CHILD CUST & SUPPORT (Div.\Other)
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: District court erred in finding mother had not made a prima facie case for modification of primary residential responsibility.
    -

    -
    -
    -
    -
    -
    -

    - State v. Abuhamda 2019 ND 44
    - Docket No.: 20180127
    - Filing Date: 2/21/2019
    - Case Type: DRUGS/CONTRABAND
    - Author: McEvers, Lisa K. Fair
    -

    -

    -
    -
    -

    - Highlight: The right to appeal in this state is purely statutory, and without statutory authorization to hear an appeal this Court lacks jurisdiction.

    An order approving pretrial diversion is not appealable under statutory authority contained in N.D.C.C. 29-28-06.

    Supervisory writs may be issued in extraordinary cases to prevent injustice when no adequate alternative remedies exist.

    While it is true N.D.R.Crim.P. 11(a)(2) does not require ritualistic compliance to enter a conditional guilty plea, courts must substantially comply with the rule’s procedural requirements to ensure defendants enter the plea voluntarily and intelligently.
    -

    -
    -
    -
    -
    -
    -

    - State v. Vetter 2019 ND 43
    - Docket No.: 20180142
    - Filing Date: 2/21/2019
    - Case Type: DUI/DUS
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: The statutory implied consent advisory must be read after a person is placed under arrest and before a chemical test may be administered to determine alcohol concentration.

    The totality of the circumstances must be considered to determine whether a person voluntarily consented to submit to a blood test to determine blood-alcohol concentration.

    An accurate reading of the implied consent advisory does not constitute per se coercion. -

    -
    -
    -
    -
    -
    -

    - Estate of Krueger 2019 ND 42
    - Docket No.: 20180237
    - Filing Date: 2/21/2019
    - Case Type: PROBATE - WILLS - TRUSTS
    - Author: VandeWalle, Gerald W.
    -

    -

    -
    -
    -

    - Highlight: For purposes of Medicaid recovery from a surviving spouse’s estate, the Department’s recovery from a deceased recipient’s joint tenancy property is limited to the deceased recipient’s fractional interest in the property. -

    -
    -
    -
    -
    -
    -

    - Schindler, et al. v. Wageman, et al. 2019 ND 41
    - Docket No.: 20180024
    - Filing Date: 2/21/2019
    - Case Type: REAL PROPERTY
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: Party was required to provide clear and convincing evidence that warranty deeds did not correctly state the parties’ intent.

    Consent to try an issue outside the pleadings cannot be implied from evidence which is relevant to the pleadings but which also bears on an unpled issue. -

    -
    -
    -
    -
    -
    -

    - State v. Christie 2019 ND 40
    - Docket No.: 20180286
    - Filing Date: 2/21/2019
    - Case Type: SEXUAL OFFENSE
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: Conviction of class AA felony gross sexual imposition is summarily affirmed under N.D.R.App.P. 35.1(a)(3). -

    -
    -
    -
    -
    -
    -

    - Heldstab v. Heldstab 2019 ND 39
    - Docket No.: 20180299
    - Filing Date: 2/21/2019
    - Case Type: CHILD CUST & SUPPORT (Div.\Other)
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A district court’s divorce judgment is summarily affirmed under N.D.R.App.P. 35.1(a)(2) and (7). -

    -
    -
    -
    -
    -
    -

    - State v. Cody 2019 ND 38
    - Docket No.: 20180229
    - Filing Date: 2/21/2019
    - Case Type: MISC. STATUTORY OFF. (MISDEMEANOR)
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: Jury verdict finding defendant guilty of willfully giving false information to a law enforcement officer under N.D.C.C. § 12.1-11-03(1) and preventing arrest under N.D.C.C. § 12.1-08-02(1) is summarily affirmed under N.D.R.App.P. 35.1(a)(3). -

    -
    -
    -
    -
    -
    -

    - Hagen v. Horst 2019 ND 37
    - Docket No.: 20180344
    - Filing Date: 2/21/2019
    - Case Type: CHILD CUST & SUPPORT (Div.\Other)
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A district court’s award of residential responsibility and child support, the implementation of supervised parenting time, and decision to issue an emergency ex parte custody order are summarily affirmed under N.D.R.App.P. 35.1(a) (2), (3) and(4). -

    -
    -
    -
    -
    -
    -

    - State v. Goldsack 2019 ND 36
    - Docket No.: 20180265
    - Filing Date: 2/21/2019
    - Case Type: DRUGS/CONTRABAND
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: Judgment revoking probation and sentencing defendant to six years’ imprisonment summarily affirmed under N.D.R.App.P. 35.1(a)(2), (4) and (7). -

    -
    -
    -
    -
    -
    -

    - Interest of H.B. 2019 ND 35
    - Docket No.: 20180439
    - Filing Date: 2/21/2019
    - Case Type: TERMINATION/PARENTAL RIGHTS
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A juvenile court order terminating parental rights to H.B., V.B, and A.B. is summarily affirmed under N.D.R.App.P. 35.1(a)(2). -

    -
    -
    -
    -
    -
    -

    - State v. Brakke 2019 ND 34
    - Docket No.: 20180275
    - Filing Date: 2/21/2019
    - Case Type: DUI/DUS
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A criminal judgment for driving with a suspended license is summarily affirmed under N.D.R.App.P. 35.1(a)(3). -

    -
    -
    -
    -
    -
    -

    - Smith v. State 2019 ND 33
    - Docket No.: 20180276
    - Filing Date: 2/21/2019
    - Case Type: POST-CONVICTION RELIEF
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A district court order denying application for post-conviction relief is summarily affirmed under N.D.R.App.P. 35.1(a)(2). -

    -
    -
    -
    -
    -
    -

    - Tollefson v. Anderson & Fercho, PLLP, et al. 2019 ND 32
    - Docket No.: 20180310
    - Filing Date: 1/31/2019
    - Case Type: OTHER (Civil)
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: Appellant’s appeal of the district court’s order granting summary judgment is summarily affirmed under N.D.R.App.P. 35.1(a)(1), (4), (7).

    This Court may award just damages and single or double costs, including reasonable attorney fees, if it determines an appeal is frivolous. -

    -
    -
    -
    -
    -
    -

    - Wald v. Benedictine Living Communities, Inc. 2019 ND 31
    - Docket No.: 20180048
    - Filing Date: 1/25/2019
    - Case Type: EMPLOYER/EMPLOYEE DISPUTE
    - Author: McEvers, Lisa K. Fair
    -

    -

    -
    -
    -

    - Highlight: A post-verdict motion for judgment as a matter of law is a renewal of the pre-verdict motion and can be granted only on grounds advanced in the pre-verdict motion.

    A jury verdict may not be based upon speculation of conjecture.
    -

    -
    -
    -
    -
    -
    -

    - Friesner v. Friesner, et al. 2019 ND 30
    - Docket No.: 20180094
    - Filing Date: 1/22/2019
    - Case Type: CHILD CUST & SUPPORT (Div.\Other)
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: A district court’s choice for primary residential responsibility between two fit parents is a difficult one, and the Supreme Court will not retry the case or substitute its judgment for that of the district court when its decision is supported by the evidence.

    Permanent spousal support may be appropriate when there is a substantial income disparity between the spouses that cannot be remedied by property division or rehabilitative spousal support. -

    -
    -
    -
    -
    -
    -

    - State v. Bearrunner 2019 ND 29
    - Docket No.: 20180258
    - Filing Date: 1/22/2019
    - Case Type: MISC. STATUTORY OFF. (MISDEMEANOR)
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: Whether a fence is so enclosed as manifestly to exclude intruders is a finding of fact.

    Appellant’s conduct did not rise to the level of “tumultuous and violent” as required under N.D.C.C. § 12.1-25-01. -

    -
    -
    -
    -
    -
    -

    - State v. Strom 2019 ND 9
    - Docket No.: 20180167
    - Filing Date: 1/15/2019
    - Case Type: MISC. STATUTORY OFFENSE (FELONY)
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: When ordering restitution for a victim of a criminal act, district courts must not consider the defendant’s ability to pay under N.D.C.C. § 12.1-32-08(1). North Dakota Constitution article I, § 25(1)(n) requires “full” restitution be awarded to the victim for “all losses” sustained. This amendment to the constitution implicitly repealed the statutory requirement to consider ability to pay. -

    -
    -
    -
    -
    -
    -

    - Interest of D.M.W. 2019 ND 8
    - Docket No.: 20180413
    - Filing Date: 1/15/2019
    - Case Type: TERMINATION/PARENTAL RIGHTS
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: An appeal from a juvenile court order terminating parental rights is summarily affirmed under N.D.R.App.P. 35.1(a)(2) and (7). -

    -
    -
    -
    -
    -
    -

    - State, et al. v. McGath 2019 ND 7
    - Docket No.: 20180186
    - Filing Date: 1/15/2019
    - Case Type: CHILD CUST & SUPPORT (Div.\Other)
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: An appeal from a divorce judgment is summarily affirmed under Koenig v. Schuh, 2016 ND 252, 888 N.W.2d 385, and N.D.R.App.P. 35.1(a)(2), (4), and (7). -

    -
    -
    -
    -
    -
    -

    - State v. Simundson 2019 ND 6
    - Docket No.: 20180223
    - Filing Date: 1/15/2019
    - Case Type: DUI/DUS
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: Summary affirmance of jury conviction for actual physical control under N.D.C.C. § 39-08-01. -

    -
    -
    -
    -
    -
    -

    - Lunde v. Paulson 2019 ND 5
    - Docket No.: 20180248
    - Filing Date: 1/15/2019
    - Case Type: PERSONAL INJURY
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: Summarily affirm default judgment based on a lack of errors appearing on the face of the judgment roll. -

    -
    -
    -
    -
    -
    -

    - Schwab v. State 2019 ND 4
    - Docket No.: 20180230
    - Filing Date: 1/15/2019
    - Case Type: POST-CONVICTION RELIEF
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: An appeal from a district court’s order denying an application for post-conviction relief is summarily affirmed under N.D.R.App.P. 35.1(a)(7).

    If it is easier to dispose of an ineffective assistance of counsel claim on the ground of lack of sufficient prejudice, that course should be followed. -

    -
    -
    -
    -
    -
    -

    - Interest of P.T.D. 2019 ND 3
    - Docket No.: 20180192
    - Filing Date: 1/15/2019
    - Case Type: JUVENILE LAW
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: An appeal from a juvenile court order finding five children to be deprived is summarily affirmed under N.D.R.App.P. 35.1(a)(2). -

    -
    -
    -
    -
    -
    -

    - State v. Foster 2019 ND 28
    - Docket No.: 20180098
    - Filing Date: 1/15/2019
    - Case Type: MISC. STATUTORY OFFENSE (FELONY)
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: A witness may testify from personal knowledge about the witness’s own actions and observations even when they relate to acts technical in nature. If evidence is admitted in error, this Court will consider the entire record and decide in light of all the evidence whether the error was so prejudicial the defendant’s rights were affected and a different decision would have occurred absent the error. -

    -
    -
    -
    -
    -
    -

    - Helbling v. Helbling 2019 ND 27
    - Docket No.: 20180095
    - Filing Date: 1/15/2019
    - Case Type: DIVORCE/PROPERTY DIV./ALIMONY
    - Author: McEvers, Lisa K. Fair
    -

    -

    -
    -
    -

    - Highlight: When a divorce settlement agreement is incorporated and merged into a judgment, only the final judgment is interpreted and enforced, not the underlying contract between the parties.
    -

    -
    -
    -
    -
    -
    -

    - Western Energy Corporation v. Stauffer, et al. 2019 ND 26
    - Docket No.: 20180283
    - Filing Date: 1/15/2019
    - Case Type: OIL, GAS AND MINERALS
    - Author: VandeWalle, Gerald W.
    -

    -

    -
    -
    -

    - Highlight: District court judgment finding reformation of 1959 warranty deed barred by the ten-year statute of limitation under N.D.C.C. § 28-01-15(2) is affirmed. -

    -
    -
    -
    -
    -
    -

    - Swanson v. Swanson 2019 ND 25
    - Docket No.: 20180158
    - Filing Date: 1/15/2019
    - Case Type: DIVORCE/PROPERTY DIV./ALIMONY
    - Author: VandeWalle, Gerald W.
    -

    -

    -
    -
    -

    - Highlight: District court division of marital property was not clearly erroneous.

    While long-term marriages generally support an equal distribution of the marital property, a court does not err by considering how the property was acquired and acting to preserve the viability of a business operation like a family farm by awarding a majority of the marital property, and its corresponding debt, to one party. -

    -
    -
    -
    -
    -
    -

    - Grina v. Job Service, et al. 2019 ND 24
    - Docket No.: 20180284
    - Filing Date: 1/15/2019
    - Case Type: JOB SERVICE
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: A Job Service decision is affirmed when a reasoning mind reasonably could have determined the agency’s factual conclusions were proved by the weight of evidence. -

    -
    -
    -
    -
    -
    -

    - Interest of Jane Doe 2019 ND 23
    - Docket No.: 20180409
    - Filing Date: 1/15/2019
    - Case Type: MENTAL HEALTH
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: A district court’s finding that a person is mentally ill and in need of treatment will not be reversed unless it is clearly erroneous.

    In determining whether an individual is a person requiring treatment a district court must consider whether the individual is mentally ill, and whether there is a reasonable expectation that, if the individual is not hospitalized, there exists a serious risk of harm to himself, others, or property. -

    -
    -
    -
    -
    -
    -

    - State v. Pittenger 2019 ND 22
    - Docket No.: 20170279
    - Filing Date: 1/15/2019
    - Case Type: SEXUAL OFFENSE
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: Closing a trial to the public without proper analysis is a structural error requiring automatic reversal. -

    -
    -
    -
    -
    -
    -

    - State v. Lyon 2019 ND 21
    - Docket No.: 20180130
    - Filing Date: 1/15/2019
    - Case Type: HOMICIDE
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: A sentence in excess of a statutory provision or in some other way contrary to an applicable statute is an illegal sentence. -

    -
    -
    -
    -
    -
    -

    - Avila v. Weaver, et al. 2019 ND 20
    - Docket No.: 20180111
    - Filing Date: 1/15/2019
    - Case Type: CONTRACTS
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: If a post-trial motion does not require the amendment of the judgment, N.D.R.App.P. 4(a)(3) applies and the time for appeal begins upon service of the notice of the order disposing of the motion.

    Where the order disposing of the motion necessitates the entry of an amended judgment, N.D.R.App.P. 4(a)(1) applies and the time for appeal begins upon the service of the notice of the entry of the amended judgment.

    An initial judgment did not foreclose on an award of attorney fees under N.D.R.Civ.P. 54(e)(3).

    This Court does not consider questions that were not presented to the district court and that are raised for the first time on appeal. -

    -
    -
    -
    -
    -
    -

    - DeLong v. Shields, et al. 2019 ND 2
    - Docket No.: 20180198
    - Filing Date: 1/15/2019
    - Case Type: CHILD CUST & SUPPORT (Div.\Other)
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A district court’s award of unsupervised parenting time is summarily affirmed under N.D.R.App.P. 35.1(a)(2). -

    -
    -
    -
    -
    -
    -

    - Desert Partners IV, L.P., et al. v. Benson, et al. 2019 ND 19
    - Docket No.: 20180112
    - Filing Date: 1/15/2019
    - Case Type: OIL, GAS AND MINERALS
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: A district court’s decision on whether to grant a motion for a continuance will not be reversed on appeal absent an abuse of discretion.
    Whether or not a party was a good-faith purchaser without notice of a competing interest is a mixed question of fact and law.
    A good-faith purchaser is one who acquires rights without actual or constructive notice of another’s rights.
    -

    -
    -
    -
    -
    -
    -

    - State v. Lott 2019 ND 18
    - Docket No.: 20180154
    - Filing Date: 1/15/2019
    - Case Type: MISC. STATUTORY OFFENSE (FELONY)
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: Criminal judgment of preventing arrest is summarily affirmed under N.D.R.App.P. 35.1(a)(3).

    N.D.R.Crim.P. 32., mandates a defendant be given an opportunity to make a statement prior to sentencing.

    An individual who has been denied the right of allocution has generally met the burden of showing their substantial rights were affected. -

    -
    -
    -
    -
    -
    -

    - Hogen, et al. v. Hogen, et al. 2019 ND 17
    - Docket No.: 20180143
    - Filing Date: 1/15/2019
    - Case Type: REAL PROPERTY
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: A transferor cannot convey an interest greater than the transferor has in the property, and a transferor who does not hold title to property cannot pass or transfer title to that property. -

    -
    -
    -
    -
    -
    -

    - S.E.L. v. J.A.P., et al. 2019 ND 16
    - Docket No.: 20180075
    - Filing Date: 1/15/2019
    - Case Type: PATERNITY
    - Author: McEvers, Lisa K. Fair
    -

    -

    -
    -
    -

    - Highlight: Section 14-20-44(2), N.D.C.C., provides a statute of limitations barring proceedings to challenge an acknowledged father’s paternity and to adjudicate paternity brought more than two years after the effective date of the paternity acknowledgment. -

    -
    -
    -
    -
    -
    -

    - Kieson v. Kieson 2019 ND 15
    - Docket No.: 20180157
    - Filing Date: 1/15/2019
    - Case Type: DIVORCE/PROPERTY DIV./ALIMONY
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A marital property distribution in a divorce case is summarily affirmed under N.D.R.App.P. 35.1(a)(2) and (7). -

    -
    -
    -
    -
    -
    -

    - Cody v. Cody 2019 ND 14
    - Docket No.: 20180120
    - Filing Date: 1/15/2019
    - Case Type: DIVORCE/PROPERTY DIV./ALIMONY
    - Author: VandeWalle, Gerald W.
    -

    -

    -
    -
    -

    - Highlight: The district court has broad discretion in deciding evidentiary matters, including whether to admit telephonic testimony.
    Interlocutory orders generally are not appealable and may be revised or reconsidered any time before the final order or judgment is entered.
    Claims for ineffective assistance of counsel have not been extended to civil actions for divorce. -

    -
    -
    -
    -
    -
    -

    - Seccombe, et al. v. Rohde, et al. 2019 ND 13
    - Docket No.: 20180069
    - Filing Date: 1/15/2019
    - Case Type: REAL PROPERTY
    - Author: VandeWalle, Gerald W.
    -

    -

    -
    -
    -

    - Highlight: A county court acquired jurisdiction over property when executor of estate filed a petition to sell the property and the petition substantially complied with statutory requirements.
    When the sale of property by an executor or administrator of an estate is required to be confirmed by the court under statute, the order confirming the sale cures all nonjurisdictional errors and irregularities occurring after the court obtains jurisdiction.
    -

    -
    -
    -
    -
    -
    -

    - Interest of E.S. 2019 ND 12
    - Docket No.: 20180426
    - Filing Date: 1/15/2019
    - Case Type: MENTAL HEALTH
    - Author: McEvers, Lisa K. Fair
    -

    -

    -
    -
    -

    - Highlight: A district court’s finding respondent is mentally ill and requires treatment will not be reversed unless it is clearly erroneous.

    To show a respondent is a person requiring treatment, the petitioner must prove by clear and convincing evidence that the person is mentally ill and there is a reasonable risk that, if the person is not treated, he poses a serious risk of harm to himself, others, or property.
    -

    -
    -
    -
    -
    -
    -

    - State v. Christensen 2019 ND 11
    - Docket No.: 20180156
    - Filing Date: 1/15/2019
    - Case Type: MISC. STATUTORY OFFENSE (FELONY)
    - Author: McEvers, Lisa K. Fair
    -

    -

    -
    -
    -

    - Highlight: Appellate review of a criminal sentence is generally confined to whether the district court acted within the sentencing limits prescribed by statute, or substantially relied upon an impermissible factor.

    The presumptive probation statute requires a sentence of probation unless an exception applies. -

    -
    -
    -
    -
    -
    -

    - Ourada v. State 2019 ND 10
    - Docket No.: 20180087
    - Filing Date: 1/15/2019
    - Case Type: POST-CONVICTION RELIEF
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: In a post-conviction relief proceeding, an applicant is entitled to notice that his application may be summarily dismissed. -

    -
    -
    -
    -
    -
    -

    - Petition to Permit Temporary Provision of Legal Services 2019 ND 1
    - Docket No.: 20160436
    - Filing Date: 1/9/2019
    - Case Type:
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: Order on petition for temporary lawyer practice. -

    -
    -
    -
    -
    -
    -

    - Berg v. North Dakota State Board of Registration 2018 ND 274
    - Docket No.: 20170413
    - Filing Date: 12/11/2018
    - Case Type: ADMINISTRATIVE PROCEEDING
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: In reviewing an administrative agency’s findings of fact, the Supreme Court does not make independent findings of fact or substitute its judgment for that of the agency.
    In an administrative proceeding, the administrative agency resolves conflicts of evidence and weighs the credibility of witnesses.
    -

    -
    -
    -
    -
    -
    -

    - Matter of Kulink 2018 ND 260
    - Docket No.: 20180083
    - Filing Date: 12/6/2018
    - Case Type: CIVIL COMMIT OF SEXUAL PREDATOR
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: A district court order denying discharge from civil commitment as a sexually dangerous individual is summarily affirmed under N.D.R.App.P. 35.1(a)(2) -

    -
    -
    -
    -
    -
    -

    - Bakke v. Magi-Touch Carpet One Floor & Home, Inc., et al. 2018 ND 273
    - Docket No.: 20180116
    - Filing Date: 12/6/2018
    - Case Type: CONTRACTS
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: An employer of an independent contractor generally is not liable for the negligence of the independent contractor.

    North Dakota law recognizes an implied warranty of fitness for a particular purpose in construction contracts.

    A contracting party cannot escape its liability on the contract by merely assigning its duties and rights under the contract to a third party.

    The remedy for fraud is rescission of the contract and requires returning the parties back to their original positions.

    Deceit is not an action dependent on a contract; it is a tort cause of action, and allows recovery of damages upon proof of an affirmative misrepresentation or suppression of material facts.

    When a party requests leave to amend without requesting additional discovery and a summary judgment motion has been docketed, the proposed amendment must be both theoretically viable and solidly grounded in the record.

    The measure of damages for breach of contract is the amount which will compensate the injured person for the loss which fulfillment of the contract would have prevented or the breach of the contract now requires. -

    -
    -
    -
    -
    -
    -

    - City of Grand Forks v. Barendt 2018 ND 272
    - Docket No.: 20180227
    - Filing Date: 12/6/2018
    - Case Type: DUI/DUS
    - Author: McEvers, Lisa K. Fair
    -

    -

    -
    -
    -

    - Highlight: The implied consent advisory under N.D.C.C. 39-20-01(3) must be read after placing an individual under arrest and before administering a chemical test to determine alcohol concentration or the presence of other drugs. -

    -
    -
    -
    -
    -
    -

    - Dale Exploration, LLC, et al. v. Hiepler, et al. 2018 ND 271
    - Docket No.: 20180065
    - Filing Date: 12/6/2018
    - Case Type: REAL PROPERTY
    - Author: VandeWalle, Gerald W.
    -

    -

    -
    -
    -

    - Highlight: The settlor of an irrevocable trust with the power to remove trust property must convey mineral interests that he sold in an individual capacity while the property was titled under the trust.
    -

    -
    -
    -
    -
    -
    -

    - Lechner v. WSI, et al. 2018 ND 270
    - Docket No.: 20180203
    - Filing Date: 12/6/2018
    - Case Type: WORKERS COMPENSATION
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: A claim for workers’ compensation benefits must be filed within one year after the injury.
    The date of injury for purposes of determining whether a claim for benefits is timely filed is the first date a reasonable lay person, not learned in medicine, knew or should have known that he suffered a compensable work-related injury and has either lost wages or received medical treatment. -

    -
    -
    -
    -
    -
    -

    - State v. Vollrath 2018 ND 269
    - Docket No.: 20180161
    - Filing Date: 12/6/2018
    - Case Type: MISC. STATUTORY OFFENSE (FELONY)
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: Once a judgment is final, a district court generally no longer has jurisdiction to alter, amend, or modify that judgment. -

    -
    -
    -
    -
    -
    -

    - Rustad v. Baumgartner 2018 ND 268
    - Docket No.: 20180080
    - Filing Date: 12/6/2018
    - Case Type: CHILD CUST & SUPPORT (Div.\Other)
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: A parenting plan is clearly erroneous when it denies a parent overnights or extended summer visitation without evidence of endangerment to the child’s physical or emotional health. -

    -
    -
    -
    -
    -
    -

    - State ex rel. City of Marion v. Alber 2018 ND 267
    - Docket No.: 20180074
    - Filing Date: 12/6/2018
    - Case Type: OTHER (Civil)
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: Under N.D.R.Civ.P. 60(b), a district court cannot amend an order to impose further affirmative relief. If an amendment grants no further relief but merely more clearly articulates the same substantive relief, it may be made under Rule 60(a) at any time. -

    -
    -
    -
    -
    -
    -

    - State v. White 2018 ND 266
    - Docket No.: 20180020
    - Filing Date: 12/6/2018
    - Case Type: DRUGS/CONTRABAND
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: The warrantless search of supervised probationer’s home is reasonable under totality of the circumstances and does not violate Fourth Amendment protections against unreasonable search and seizure. -

    -
    -
    -
    -
    -
    -

    - Adoption of A.S. 2018 ND 265
    - Docket No.: 20180326
    - Filing Date: 12/6/2018
    - Case Type: TERMINATION/PARENTAL RIGHTS
    - Author: McEvers, Lisa K. Fair
    -

    -

    -
    -
    -

    - Highlight: A district court's findings of fact in a termination of parental rights proceeding will not be reversed on appeal unless they are clearly erroneous.

    A finding on one of three alternative grounds authorizing termination of parental rights under N.D.C.C. 14-15-19(3) is sufficient to uphold a district court's order terminating parental rights on that ground. -

    -
    -
    -
    -
    -
    -

    - Stein v. State 2018 ND 264
    - Docket No.: 20180128
    - Filing Date: 12/6/2018
    - Case Type: POST-CONVICTION RELIEF
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: A district court may summarily dismiss an application for post-conviction relief if there is no genuine issue of material fact and the moving party is entitled to judgment as a matter of law.

    Ineffective assistance of counsel issues are mixed questions of law and fact, which are fully reviewable on appeal.

    When a claim made in an application for post-conviction relief is clearly and unambiguously contradicted by the record, summary disposition is appropriate.

    When determining if summary disposition is appropriate on claims of ineffective assistance of counsel, the record and transcripts are generally not adequate if the petitioner alleges incidents outside of the record. -

    -
    -
    -
    -
    -
    -

    - Dahms, et al. v. Nodak Mutual Insurance Co., et al. 2018 ND 263
    - Docket No.: 20180202
    - Filing Date: 12/6/2018
    - Case Type: INSURANCE
    - Author: VandeWalle, Gerald W.
    -

    -

    -
    -
    -

    - Highlight: A detached garage connected to a dwelling by a deck constituted an “other structure” rather than a “dwelling” for purposes of determining insurance coverage.

    Summary judgment is appropriate against a party who fails to establish the existence of a factual dispute as to an essential element of his claim and on which he will bear the burden of proof at trial. -

    -
    -
    -
    -
    -
    -

    - State, et al. v. Martin 2018 ND 262
    - Docket No.: 20180141
    - Filing Date: 12/6/2018
    - Case Type: CHILD CUST & SUPPORT (Div.\Other)
    - Author: VandeWalle, Gerald W.
    -

    -

    -
    -
    -

    - Highlight: District court did not err in denying a Rule 60(b) motion for relief from judgment where party was properly provided notice and served with the motion for default judgment. -

    -
    -
    -
    -
    -
    -

    - Hunts Along v. N.D. Dep't of Transportation 2018 ND 261
    - Docket No.: 20180146
    - Filing Date: 12/6/2018
    - Case Type: TRANSPORTATION DEPT.
    - Author: VandeWalle, Gerald W.
    -

    -

    -
    -
    -

    - Highlight: Department did not err in revoking defendant’s drivers license under N.D.C.C. § 39-20-14 following defendant’s refusal of on-site breath test.

    A party who refuses a screening or chemical test cannot challenge the unperformed tests’ compliance with statutory requirements.

    We cannot logically construe the statutes to require the State to provide foundational evidence for a test which was refuse, thus making the foundational evidence irrelevant. -

    -
    -
    -
    -
    -
    -

    - Schultz v. Schultz 2018 ND 259
    - Docket No.: 20180097
    - Filing Date: 12/6/2018
    - Case Type: DIVORCE/PROPERTY DIV./ALIMONY
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: There is no bright-line rule to distinguish between short and long-term marriages.

    This Court will not reverse a district court’s findings on valuation of marital property unless they are clearly erroneous.

    When a distribution of property includes periodic cash payments from one spouse to another, a district court has broad authority to provide for the payment of interest in order to achieve an equitable distribution of the property. -

    -
    -
    -
    -
    -
    -

    - Green v. Swiers 2018 ND 258
    - Docket No.: 20180114
    - Filing Date: 12/6/2018
    - Case Type: CHILD CUST & SUPPORT (Div.\Other)
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: A district court’s decision on a motion to relocate is a finding of fact, which will not be reversed on appeal unless it is clearly erroneous.

    To modify parenting time, the movant must establish a material change of circumstances has occurred since the prior visitation order and that it is in the best interests of the child to modify the order.

    A material change in circumstances sufficient to amend a parenting time order is similar to, but distinct from, a material change in circumstances sufficient to change primary residential responsibility.

    A district court’s decision to modify parenting time is a finding of fact, which will not be reversed on appeal unless clearly erroneous. -

    -
    -
    -
    -
    -
    -

    - Interest of A.L.E. 2018 ND 257
    - Docket No.: 20180341
    - Filing Date: 12/6/2018
    - Case Type: TERMINATION/PARENTAL RIGHTS
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: Prenatal exposure to any controlled substance is a ground for a finding of deprivation.

    A parent’s past conduct can form the basis to predict future behavior and a parent’s lack of cooperation with social service agencies is evidence that the causes and conditions of deprivation will likely continue.

    When a parent, through voluntary actions, without reasonable justification, makes herself unavailable to care for and parent a young child, the child should not be expected to wait or assume the risk involved in waiting for permanency and stability in her life.
    -

    -
    -
    -
    -
    -
    -

    - State v. Bornsen 2018 ND 256
    - Docket No.: 20180093
    - Filing Date: 12/6/2018
    - Case Type: DUI/DUS
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: Investigatory traffic stops are valid when the officer conducting the stop had a reasonable and articulable suspicion the motorist has violated or is violating the law.

    Traffic violations, even if considered common or minor, constitute prohibited conduct which provide officers with requisite suspicion for conducting investigatory stops.

    -

    -
    -
    -
    -
    -
    -

    - LeClair v. Sorel 2018 ND 255
    - Docket No.: 20180155
    - Filing Date: 12/6/2018
    - Case Type: TRANSPORTATION DEPT.
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: The implied consent advisory provided to a driver after an arrest for driving under the influence must be substantively complete.
    The entire substance of the advisory was conveyed despite the officer’s omission of the word “punishable” from the statutory language in N.D.C.C. 39-20-01(3)(a). -

    -
    -
    -
    -
    -
    -

    - State v. Ferderer 2018 ND 254
    - Docket No.: 20180072
    - Filing Date: 12/6/2018
    - Case Type: MISC. STATUTORY OFFENSE (FELONY)
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: A revocation of a sentence for a probation violation does not violate double jeopardy. -

    -
    -
    -
    -
    -
    -

    - Tornabeni v. Wold, et al. 2018 ND 253
    - Docket No.: 20180164
    - Filing Date: 12/6/2018
    - Case Type: OTHER (Civil)
    - Author: Jensen, Jon J.
    -

    -

    -
    -
    -

    - Highlight: The existence and terms of an oral contract are findings of fact subject to the clearly erroneous rule.
    A district court’s determination of whether the facts support a finding of unjust enrichment is fully reviewable on appeal.
    An award of damages for an unjust enrichment claim is reviewed under the clearly erroneous standard.
    Issues not raised in the district court are waived. -

    -
    -
    -
    -
    -
    -

    - State v. Hebert 2018 ND 252
    - Docket No.: 20180171
    - Filing Date: 12/6/2018
    - Case Type: MISC. STATUTORY OFF. (MISDEMEANOR)
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A criminal judgment convicting the defendant of tampering or damaging a public service is summarily reversed under N.D.R.App.P. 35.1(b). -

    -
    -
    -
    -
    -
    -

    - Sabot v. State 2018 ND 251
    - Docket No.: 20180191
    - Filing Date: 12/6/2018
    - Case Type: POST-CONVICTION RELIEF
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: Summary dismissal of post-conviction relief summarily affirmed under N.D.R.App.P 35.1(a)(2) and (7). -

    -
    -
    -
    -
    -
    -

    - Interest of D.V.A. 2018 ND 250
    - Docket No.: 20180166
    - Filing Date: 12/6/2018
    - Case Type: CIVIL COMMIT OF SEXUAL PREDATOR
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A district court order denying discharge from civil commitment as a sexually dangerous individual is summarily affirmed under N.D.R.App.P. 35.1(a)(2). -

    -
    -
    -
    -
    -
    -

    - State v. Mejia 2018 ND 249
    - Docket No.: 20180178
    - Filing Date: 12/6/2018
    - Case Type: ASSAULT
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: Summary affirmance is appropriate when there is sufficient evidence to support a guilty verdict.

    In a case tried without a jury, the court need only find the defendant guilty or not guilty. -

    -
    -
    -
    -
    -
    -

    - Sorlie v. Sorlie 2018 ND 248
    - Docket No.: 20180071
    - Filing Date: 12/6/2018
    - Case Type: CHILD CUST & SUPPORT (Div.\Other)
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A district court’s award of residential responsibility is summarily affirmed under N.D.R.App.P. 35.1(a)(2). -

    -
    -
    -
    -
    -
    -

    - Johnston Law Office, P.C. v. Brakke, et al. 2018 ND 247
    - Docket No.: 20180029
    - Filing Date: 11/19/2018
    - Case Type: OTHER (Civil)
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: If a party moving for summary judgment meets its initial burden of showing there are no genuine issues of material fact and it is entitled to judgment as a matter of law, the party opposing the motion must present competent admissible evidence to show the existence of a genuine issue of material fact. -

    -
    -
    -
    -
    -
    -

    - Petition to Permit Temporary Provision of Legal Services 2019 ND 1
    - Docket No.: 20160436
    - Filing Date: 11/15/2018
    - Case Type:
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: Order on petition for temporary lawyer practice. -

    -
    -
    -
    -
    -
    -

    - Thompson, et al. v. Molde, et al. 2018 ND 245
    - Docket No.: 20170127
    - Filing Date: 11/13/2018
    - Case Type: TAX RELATED
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: Summary judgment allows for the prompt resolution of a controversy on the merits without a trial if there are no disputed issues of material fact and the moving party is entitled to judgment as a matter of law.

    The Supreme Court may award just damages and single or double costs, including reasonable attorney’s fees for a frivolous appeal. -

    -
    -
    -
    -
    -
    -

    - State v. Rogers 2018 ND 244
    - Docket No.: 20170389
    - Filing Date: 11/6/2018
    - Case Type: SEXUAL OFFENSE
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: Defendant appeals from a district court judgment for gross sexual imposition. Because the district court did not make individualized findings supporting closure of the competency hearing under Waller, the Sixth Amendment public trial guarantee wasviolated. The restitution award was proper and it is affirmed consistent with our remand. We remand for further proceedings. -

    -
    -
    -
    -
    -
    -

    - Upton v. Nolan 2018 ND 243
    - Docket No.: 20180119
    - Filing Date: 11/6/2018
    - Case Type: CHILD CUST & SUPPORT (Div.\Other)
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: Although a district court has continuing jurisdiction to modify parenting time, due process requires a parent receive adequate notice and a fair opportunity to be heard.

    Due process notice requirements are satisfied when an unpled issue is tried by the implied consent of the parties.

    Consent to try an issue outside the pleadings cannot be implied from evidence which is relevant to the pleadings but which also bears on an unpleaded issue.

    A district court has broad discretion in making contempt decisions and in awarding attorney fees as reimbursement for costs and expenses incurred as a result of the contempt. -

    -
    -
    -
    -
    -
    -

    - State v. Sanchez 2018 ND 242
    - Docket No.: 20180063
    - Filing Date: 11/6/2018
    - Case Type: THEFT
    - Author: Tufte, Jerod E.
    -

    -

    -
    -
    -

    - Highlight: A district court may extend on its own a self-imposed deadline for scheduling or holding a restitution hearing. -

    -
    -
    -
    -
    -
    -

    - State v. Jessee 2018 ND 241
    - Docket No.: 20180047
    - Filing Date: 11/6/2018
    - Case Type: MISC. STATUTORY OFFENSE (FELONY)
    - Author: Crothers, Daniel John
    -

    -

    -
    -
    -

    - Highlight: Questions of fact in a criminal bench trial are reviewed in the same manner as questions of fact in a criminal jury trial.

    Tampering with a public service requires an alteration or harmful change towards property under the control of the public service.
    -

    -
    -
    -
    -
    -
    -

    - State v. Etemad 2018 ND 240
    - Docket No.: 20170421
    - Filing Date: 11/6/2018
    - Case Type: MISC. STATUTORY OFFENSE (FELONY)
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A district court judgment entered after a jury found Etemad guilty of terrorizing is summarily affirmed under N.D.R.App.P. 35.1(a)(3) and (7).

    Under an obvious error analysis, in order to find a violation affects substantial rights a moving party must demonstrate the violation significantly prejudiced him.
    -

    -
    -
    -
    -
    -
    -

    - Pederson v. State 2018 ND 239
    - Docket No.: 20180126
    - Filing Date: 11/6/2018
    - Case Type: POST-CONVICTION RELIEF
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: Judgment denying motion for relief under N.D.R.Civ.P. 60(b) and application for post-conviction relief is summarily affirmed under N.D.R.App.P. 35.1(a)(4) and (7). -

    -
    -
    -
    -
    -
    -

    - Marler v. Martin, et al. 2018 ND 238
    - Docket No.: 20180019
    - Filing Date: 11/6/2018
    - Case Type: CONTRACTS
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A judgment and order denying a motion for a new trial are summarily affirmed under N.D.R.App.P. 35.1(a)(4) and (7).
    -

    -
    -
    -
    -
    -
    -

    - City of Fargo v. Nelson 2018 ND 237
    - Docket No.: 20170424
    - Filing Date: 11/6/2018
    - Case Type: OTHER (Civil)
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: Civil judgment finding appellant's property constitutes a public nuisance, requiring abatement of the nuisance, and granting a permanent injunction from maintaining a nuisance on the property is summarily affirmed under N.D.R.App.P. 35.1(a)(2), (4),(7). -

    -
    -
    -
    -
    -
    -

    - Interest of G.F. 2018 ND 236
    - Docket No.: 20180332
    - Filing Date: 11/6/2018
    - Case Type: TERMINATION/PARENTAL RIGHTS
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: Juvenile court order terminating parental rights under N.D.C.C. 27-20-44(1)(c)(1) and N.D.C.C. 27-20-44(1)(c)(2) is summarily affirmed under N.D.R.App.P. 35.1(a)(2). -

    -
    -
    -
    -
    -
    -

    - Guardianship/Conservatorship of M.J.K. 2018 ND 235
    - Docket No.: 20180058
    - Filing Date: 11/6/2018
    - Case Type: GUARDIAN/CONSERVATOR
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: District Court’s finding that the ward fails to make a prima facie case to terminate guardianship is summarily affirmed under N.D.App.P. 35.1(a)(2) and (7).

    Constitutional issues not pursued in the district court cannot be raised for the first time on appeal.
    -

    -
    -
    -
    -
    -
    -

    - McGath v. Waide 2018 ND 234
    - Docket No.: 20180159
    - Filing Date: 11/6/2018
    - Case Type: OTHER (Civil)
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: A district court disorderly conduct restraining order is summarily affirmed under N.D.R.App.P. 35.1(a)(4). -

    -
    -
    -
    -
    -
    -

    - Prairie Winds Apartments 1, LLC v. Stark County Board of Commissioners (cons 2018 ND 233
    - Docket No.: 20180149
    - Filing Date: 11/6/2018
    - Case Type: ADMINISTRATIVE PROCEEDING
    - Author: Per Curiam
    -

    -

    -
    -
    -

    - Highlight: To properly appeal a board of county commissioners’ decision relating to tax matters, a landowner must file a notice of appeal on a board member and the state tax commissioner within thirty days of the board’s decision. -

    -
    -
    -
    -
    -
    -

    - Vacancy in Judgeship No. 2, East Central Judicial District 2018 ND 232
    - Docket No.: 20180334
    - Filing Date: 10/18/2018
    - Case Type:
    - Author: Per Curiam
    -

    -

    -
    -
    -
    -
    -
    -
    -
    - Page 1 of 120 -
    - -
    -
    -
    -
    -
    -
    -
    - -
    - -
    - - - - - + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/neb_example.compare.json b/tests/examples/opinions/united_states/neb_example.compare.json index 632b7b375..91af1b6ea 100644 --- a/tests/examples/opinions/united_states/neb_example.compare.json +++ b/tests/examples/opinions/united_states/neb_example.compare.json @@ -1,574 +1,420 @@ [ { - "case_dates": "2017-05-26", - "case_names": "White v. White", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005386PUB", + "case_dates": "2024-07-05", + "case_names": "State v. Davis", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011181PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-865", - "citations": "296 Neb. 772", - "case_name_shorts": "White" + "docket_numbers": "S-23-930", + "citations": "317 Neb. 59", + "case_name_shorts": "Davis" }, { - "case_dates": "2017-05-26", - "case_names": "State v. Wood", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005384PUB", + "case_dates": "2024-07-05", + "case_names": "State v. Assad", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011179PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-190", - "citations": "296 Neb. 738", - "case_name_shorts": "Wood" + "docket_numbers": "S-23-552", + "citations": "317 Neb. 20", + "case_name_shorts": "Assad" }, { - "case_dates": "2017-05-26", - "case_names": "County of Webster v. Nebraska Tax Equal. & Rev. Comm.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005385PUB", + "case_dates": "2024-07-05", + "case_names": "Perkins Cty. Bd. of Equal. v. Mid America Agri Prods.", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011178PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-583", - "citations": "296 Neb. 751", + "docket_numbers": "S-23-122", + "citations": "317 Neb. 1", "case_name_shorts": "" }, { - "case_dates": "2017-05-19", - "case_names": "Thomas v. Board of Trustees", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005375PUB", + "case_dates": "2024-07-05", + "case_names": "Mosher v. Whole Foods Market", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011180PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-480", - "citations": "296 Neb. 726", - "case_name_shorts": "Thomas" + "docket_numbers": "S-23-645", + "citations": "317 Neb. 26", + "case_name_shorts": "Mosher" }, { - "case_dates": "2017-05-19", - "case_names": "State ex rel. Counsel for Dis. v. Gast", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005373PUB", + "case_dates": "2024-06-28", + "case_names": "State v. King", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011166PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-15-800", - "citations": "296 Neb. 687", - "case_name_shorts": "Gast" + "docket_numbers": "S-23-814", + "citations": "316 Neb. 991", + "case_name_shorts": "King" }, { - "case_dates": "2017-05-19", - "case_names": "Janice M. Hinrichsen, Inc. v. Messersmith Ventures", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005374PUB", + "case_dates": "2024-06-28", + "case_names": "In re Interest of Jordon B.", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011165PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-086", - "citations": "296 Neb. 712", + "docket_numbers": "S-23-618", + "citations": "316 Neb. 974", "case_name_shorts": "" }, { - "case_dates": "2017-05-12", - "case_names": "State v. Loding", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005361PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-16-614", - "citations": "296 Neb. 670", - "case_name_shorts": "Loding" - }, - { - "case_dates": "2017-05-12", - "case_names": "State v. Barrera-Garrido", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005359PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-16-426", - "citations": "296 Neb. 647", - "case_name_shorts": "Barrera-Garrido" - }, - { - "case_dates": "2017-05-12", - "case_names": "In re Estate of Vollmann", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005360PUB", + "case_dates": "2024-06-28", + "case_names": "D&M Roofing & Siding v. Distribution, Inc.", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011164PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-608", - "citations": "296 Neb. 659", + "docket_numbers": "S-23-516", + "citations": "316 Neb. 952", "case_name_shorts": "" }, { - "case_dates": "2017-05-12", - "case_names": "Clarke v. First Nat. Bank of Omaha", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005368PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-16-146", - "citations": "296 Neb. 632", - "case_name_shorts": "Clarke" - }, - { - "case_dates": "2017-05-05", - "case_names": "Winder v. Union Pacific RR. Co.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005342PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-15-1100", - "citations": "296 Neb. 557", - "case_name_shorts": "Winder" - }, - { - "case_dates": "2017-05-05", - "case_names": "State v. Artis", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005345PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-16-464", - "citations": "296 Neb. 606", - "case_name_shorts": "Artis" - }, - { - "case_dates": "2017-05-05", - "case_names": "State ex rel. Veskrna v. Steel", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005344PUB", + "case_dates": "2024-06-21", + "case_names": "State v. Evans", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011153PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-118", - "citations": "296 Neb. 581", - "case_name_shorts": "Steel" + "docket_numbers": "S-24-013", + "citations": "316 Neb. 943", + "case_name_shorts": "Evans" }, { - "case_dates": "2017-05-05", - "case_names": "State ex re. Counsel for Dis. v. Island", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005347PUB", + "case_dates": "2024-06-21", + "case_names": "State ex rel. Counsel for Dis. v. Miller", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011151PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-715", - "citations": "296 Neb. 624", - "case_name_shorts": "Island" + "docket_numbers": "S-23-520", + "citations": "316 Neb. 899", + "case_name_shorts": "" }, { - "case_dates": "2017-05-05", - "case_names": "Kohout v. Bennett Constr.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005346PUB", + "case_dates": "2024-06-21", + "case_names": "Mann v. Mann", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011152PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-609", - "citations": "296 Neb. 608", - "case_name_shorts": "Kohout" + "docket_numbers": "S-23-608", + "citations": "316 Neb. 910", + "case_name_shorts": "Mann" }, { - "case_dates": "2017-05-05", - "case_names": "In re Robert L. McDowell Revocable Trust", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005343PUB", + "case_dates": "2024-06-14", + "case_names": "State v. German", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011136PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-071", - "citations": "296 Neb. 565", - "case_name_shorts": "" + "docket_numbers": "S-23-159", + "citations": "316 Neb. 841", + "case_name_shorts": "German" }, { - "case_dates": "2017-04-27", - "case_names": "State v. Dehning", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005334PUB", + "case_dates": "2024-06-14", + "case_names": "Meiergerd v. Qatalyst Corp.", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011142PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-761", - "citations": "296 Neb. 537", - "case_name_shorts": "Dehning" + "docket_numbers": "S-22-939", + "citations": "316 Neb. 831", + "case_name_shorts": "Meiergerd" }, { - "case_dates": "2017-04-27", - "case_names": "State ex rel. Counsel for Dis. v. Garrison", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005335PUB", + "case_dates": "2024-06-14", + "case_names": "Konsul v. Asensio", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011137PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-803", - "citations": "296 Neb. 550", - "case_name_shorts": "Garrison" + "docket_numbers": "S-23-441", + "citations": "316 Neb. 874", + "case_name_shorts": "Konsul" }, { - "case_dates": "2017-04-27", - "case_names": "In re Estate of Pluhacek", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005333PUB", + "case_dates": "2024-06-07", + "case_names": "In re Change of Name of Druckenmiller", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011114PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-654", - "citations": "296 Neb. 528", + "docket_numbers": "S-23-340, S-23-341", + "citations": "316 Neb. 807", "case_name_shorts": "" }, { - "case_dates": "2017-04-27", - "case_names": "County of Douglas v. Nebraska Tax Equal. & Rev. Comm.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005332PUB", + "case_dates": "2024-06-07", + "case_names": "Garcia v. City of Omaha", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011115PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-548", - "citations": "296 Neb. 501", - "case_name_shorts": "" + "docket_numbers": "S-23-391", + "citations": "316 Neb. 817", + "case_name_shorts": "Garcia" }, { - "case_dates": "2017-04-21", - "case_names": "State v. Jones", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005325PUB", + "case_dates": "2024-06-07", + "case_names": "Clemens v. Emme", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011113PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-754", - "citations": "296 Neb. 494", - "case_name_shorts": "Jones" + "docket_numbers": "S-23-146", + "citations": "316 Neb. 777", + "case_name_shorts": "Clemens" }, { - "case_dates": "2017-04-21", - "case_names": "Oldfield v. Nebraska Machinery Co.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005324PUB", + "case_dates": "2024-05-31", + "case_names": "Woodward v. Saint Francis Med. Ctr.", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011093PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-526", - "citations": "296 Neb. 469", - "case_name_shorts": "Oldfield" + "docket_numbers": "S-23-324", + "citations": "316 Neb. 737", + "case_name_shorts": "Woodward" }, { - "case_dates": "2017-04-21", - "case_names": "Heckman v. Marchio", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005323PUB", + "case_dates": "2024-05-31", + "case_names": "MIMG LXXIV Colonial v. Ellis", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011094PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-379", - "citations": "296 Neb. 458", - "case_name_shorts": "Heckman" + "docket_numbers": "S-23-438", + "citations": "316 Neb. 746", + "case_name_shorts": "Ellis" }, { - "case_dates": "2017-04-21", - "case_names": "Bergmeier v. Bergmeier", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005322PUB", + "case_dates": "2024-05-31", + "case_names": "Dirt Road Development v. Hirschman", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011095PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-15-1189", - "citations": "296 Neb. 440", - "case_name_shorts": "Bergmeier" + "docket_numbers": "S-23-524", + "citations": "316 Neb. 757", + "case_name_shorts": "Hirschman" }, { - "case_dates": "2017-04-14", - "case_names": "State v. Todd", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005314PUB", + "case_dates": "2024-05-24", + "case_names": "Seemann v. Seemann", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011071PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-621", - "citations": "296 Neb. 424", - "case_name_shorts": "Todd" + "docket_numbers": "S-23-132", + "citations": "316 Neb. 671", + "case_name_shorts": "Seemann" }, { - "case_dates": "2017-04-14", - "case_names": "Mock v. Neumeister", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005311PUB", + "case_dates": "2024-05-24", + "case_names": "MacFarlane v. Sarpy Cty. Sch. Dist. 77-0037", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011072PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-15-1226", - "citations": "296 Neb. 376", - "case_name_shorts": "Mock" + "docket_numbers": "S-23-592", + "citations": "316 Neb. 705", + "case_name_shorts": "MacFarlane" }, { - "case_dates": "2017-04-14", - "case_names": "Midland Properties v. Wells Fargo", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005367PUB", + "case_dates": "2024-05-24", + "case_names": "In re Interest of Jeovani H.", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011073PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-260", - "citations": "296 Neb. 407", + "docket_numbers": "S-23-831", + "citations": "316 Neb. 723", "case_name_shorts": "" }, { - "case_dates": "2017-04-14", - "case_names": "Ginger Cove Common Area Co. v. Wiekhorst", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005313PUB", + "case_dates": "2024-05-17", + "case_names": "White v. White", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011050PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-515", - "citations": "296 Neb. 416", - "case_name_shorts": "Wiekhorst" + "docket_numbers": "S-22-024", + "citations": "316 Neb. 616", + "case_name_shorts": "White" }, { - "case_dates": "2017-04-07", - "case_names": "Stewart v. Heineman", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005299PUB", + "case_dates": "2024-05-17", + "case_names": "State v. Hoehn", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011051PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-018", - "citations": "296 Neb. 262", - "case_name_shorts": "Stewart" + "docket_numbers": "S-22-885", + "citations": "316 Neb. 634", + "case_name_shorts": "Hoehn" }, { - "case_dates": "2017-04-07", - "case_names": "State v. Harris", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005301PUB", + "case_dates": "2024-05-17", + "case_names": "Johnson v. Vosberg", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011052PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-283", - "citations": "296 Neb. 317", - "case_name_shorts": "Harris" + "docket_numbers": "S-23-396", + "citations": "316 Neb. 658", + "case_name_shorts": "Vosberg" }, { - "case_dates": "2017-04-07", - "case_names": "State v. Buttercase", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005300PUB", + "case_dates": "2024-05-10", + "case_names": "State v. Boswell", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011070PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-114", - "citations": "296 Neb. 304", - "case_name_shorts": "Buttercase" + "docket_numbers": "S-21-980", + "citations": "316 Neb. 542", + "case_name_shorts": "Boswell" }, { - "case_dates": "2017-04-07", - "case_names": "In re Interest of Becka P.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005303PUB", + "case_dates": "2024-05-10", + "case_names": "State v. Boeggeman", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011033PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-646, S-16-647, S-16-648", - "citations": "296 Neb. 365", - "case_name_shorts": "" + "docket_numbers": "S-22-644", + "citations": "316 Neb. 581", + "case_name_shorts": "Boeggeman" }, { - "case_dates": "2017-04-07", - "case_names": "Farmers Co-op v. State", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005366PUB", + "case_dates": "2024-05-10", + "case_names": "In re Hessler Living Trust", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011034PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-312, S-16-313", - "citations": "296 Neb. 347", + "docket_numbers": "S-23-472", + "citations": "316 Neb. 600", "case_name_shorts": "" }, { - "case_dates": "2017-04-07", - "case_names": "Estermann v. Bose", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005365PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-15-1022", - "citations": "296 Neb. 228", - "case_name_shorts": "Estermann" - }, - { - "case_dates": "2017-03-31", - "case_names": "Zapata v. McHugh", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005275PUB", + "case_dates": "2024-05-03", + "case_names": "State v. Woolridge-Jones", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00010955PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-511", - "citations": "296 Neb. 216", - "case_name_shorts": "Zapata" + "docket_numbers": "S-22-934", + "citations": "316 Neb. 500", + "case_name_shorts": "Woolridge-Jones" }, { - "case_dates": "2017-03-31", - "case_names": "State v. Chacon", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005274PUB", + "case_dates": "2024-05-03", + "case_names": "Joshua M. v. State", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011022PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-419, S-16-425", - "citations": "296 Neb. 203", - "case_name_shorts": "Chacon" - }, - { - "case_dates": "2017-03-24", - "case_names": "State v. Clifton", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005262PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-15-1167", - "citations": "296 Neb. 135", - "case_name_shorts": "Clifton" - }, - { - "case_dates": "2017-03-24", - "case_names": "State v. Artis", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005264PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-16-464", - "citations": "296 Neb. 172", - "case_name_shorts": "Artis" - }, - { - "case_dates": "2017-03-24", - "case_names": "Last Pass Aviation v. Western Co-op Co.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005293PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-16-207", - "citations": "296 Neb. 165", + "docket_numbers": "S-21-1037", + "citations": "316 Neb. 446", "case_name_shorts": "" }, { - "case_dates": "2017-03-24", - "case_names": "County of Franklin v. Tax Equal. & Rev. Comm.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005294PUB", + "case_dates": "2024-05-03", + "case_names": "In re Eileen Ryan Revocable Trust", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00010956PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-554", - "citations": "296 Neb. 193", + "docket_numbers": "S-23-354", + "citations": "316 Neb. 524", "case_name_shorts": "" }, { - "case_dates": "2017-03-24", - "case_names": "Burns v. Burns", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005265PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-16-491", - "citations": "296 Neb. 184", - "case_name_shorts": "Burns" - }, - { - "case_dates": "2017-03-17", - "case_names": "State v. Nollen", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005253PUB", + "case_dates": "2024-04-25", + "case_names": "State ex re. Counsel for Dis. v. Gage", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00010935PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-133", - "citations": "296 Neb. 94", - "case_name_shorts": "Nollen" + "docket_numbers": "S-24-061", + "citations": "316 Neb. 443", + "case_name_shorts": "Gage" }, { - "case_dates": "2017-03-17", - "case_names": "State v. McCurry", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005251PUB", + "case_dates": "2024-04-25", + "case_names": "Saint James Apt. Partners v. Univeral Surety Co.", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00010953PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-15-1114", - "citations": "296 Neb. 40", - "case_name_shorts": "McCurry" - }, - { - "case_dates": "2017-03-17", - "case_names": "Midwest Renewable Energy v. American Engr. Testing", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005252PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-16-122", - "citations": "296 Neb. 73", + "docket_numbers": "S-23-357", + "citations": "316 Neb. 419", "case_name_shorts": "" }, { - "case_dates": "2017-03-17", - "case_names": "Donald v. Donald", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005254PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-16-547", - "citations": "296 Neb. 123", - "case_name_shorts": "Donald" - }, - { - "case_dates": "2017-03-10", - "case_names": "State v. Jackson", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005243PUB", + "case_dates": "2024-04-25", + "case_names": "Inland Ins. Co. v. Lancaster Cty. Bd. of Equal. -- supplemental opinion", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00010937PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-643", - "citations": "296 Neb. 31", + "docket_numbers": "S-23-289", + "citations": "316 Neb. 417", "case_name_shorts": "" }, { - "case_dates": "2017-03-10", - "case_names": "Medicine Creek v. Middle Republican NRD", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005241PUB", + "case_dates": "2024-04-19", + "case_names": "Thiele v. Select Med. Corp.", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00010911PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-209", - "citations": "296 Neb. 1", - "case_name_shorts": "" + "docket_numbers": "S-23-022", + "citations": "316 Neb. 338", + "case_name_shorts": "Thiele" }, { - "case_dates": "2017-03-10", - "case_names": "Hill v. State", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005242PUB", + "case_dates": "2024-04-19", + "case_names": "In re Guardianship of Patrick W.", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00010912PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-558, S-16-560", - "citations": "296 Neb. 10", - "case_name_shorts": "Hill" - }, - { - "case_dates": "2017-03-03", - "case_names": "State v. Smith", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005292PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-16-199", - "citations": "295 Neb. 957", + "docket_numbers": "S-23-209", + "citations": "316 Neb. 381", "case_name_shorts": "" }, { - "case_dates": "2017-03-03", - "case_names": "State v. Alarcon-Chavez", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005232PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S-16-456", - "citations": "295 Neb. 1014", - "case_name_shorts": "Alarcon-Chavez" - }, - { - "case_dates": "2017-03-03", - "case_names": "State ex rel. Counsel for Dis. v. Ubbinga", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005231PUB", + "case_dates": "2024-04-19", + "case_names": "Barber v. State", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00010913PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-373", - "citations": "295 Neb. 995", - "case_name_shorts": "Ubbinga" + "docket_numbers": "S-23-627", + "citations": "316 Neb. 398", + "case_name_shorts": "Barber" }, { - "case_dates": "2017-03-03", - "case_names": "O'Connor v. Kearny Junction", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005230PUB", + "case_dates": "2024-04-12", + "case_names": "State v. Anthony", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00010897PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S-16-230", - "citations": "295 Neb. 981", - "case_name_shorts": "O'Connor" + "docket_numbers": "S-23-130", + "citations": "316 Neb. 308", + "case_name_shorts": "Anthony" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/neb_example.html b/tests/examples/opinions/united_states/neb_example.html index 12b494738..5065de95d 100644 --- a/tests/examples/opinions/united_states/neb_example.html +++ b/tests/examples/opinions/united_states/neb_example.html @@ -1,1463 +1,2751 @@ - - - - - - - - - - - + + + + - - - - - - - Supreme Court Opinions | Nebraska Judicial Branch - - - - - - - - - - - - - - - - - - -
    -
    - -
    -
    -
    - -
    -
    - -
    -
    - - - - - - - - -
    -
    - - - - - - - - +
    + + + +
    + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nebctapp_example.compare.json b/tests/examples/opinions/united_states/nebctapp_example.compare.json index 54970543c..b77209d1e 100644 --- a/tests/examples/opinions/united_states/nebctapp_example.compare.json +++ b/tests/examples/opinions/united_states/nebctapp_example.compare.json @@ -1,684 +1,992 @@ [ { - "case_dates": "2017-05-23", - "case_names": "State v. Sack", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005380PUB", - "precedential_statuses": "Published", + "case_dates": "2024-07-02", + "case_names": "State v. Danon", + "download_urls": "/sites/default/files/memorandums/a23-201m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-851", - "citations": "24 Neb. App. 721", - "case_name_shorts": "Sack" + "docket_numbers": "A-23-201", + "citations": "", + "case_name_shorts": "Danon" }, { - "case_dates": "2017-05-23", - "case_names": "Schmidt v. Parkert", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-919m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-07-02", + "case_names": "Meier v. Meier", + "download_urls": "/sites/default/files/memorandums/a23-395m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-919", + "docket_numbers": "A-23-395", "citations": "", - "case_name_shorts": "Schmidt" + "case_name_shorts": "Meier" }, { - "case_dates": "2017-05-23", - "case_names": "Payne v. Hopkins", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a15-1126m.pdf", + "case_dates": "2024-07-02", + "case_names": "Jenne v. Jenne", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011171PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-1126", + "docket_numbers": "A-23-403", + "citations": "33 Neb. App. 30", + "case_name_shorts": "Jenne" + }, + { + "case_dates": "2024-07-02", + "case_names": "Bertucci v. Bertucci", + "download_urls": "/sites/default/files/memorandums/a23-559m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-559", "citations": "", - "case_name_shorts": "Payne" + "case_name_shorts": "Bertucci" }, { - "case_dates": "2017-05-23", - "case_names": "In re Interest of Hannah C. & Rayna C.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-1101m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-25", + "case_names": "State v. Torres", + "download_urls": "/sites/default/files/memorandums/a23-897m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-897", + "citations": "", + "case_name_shorts": "Torres" + }, + { + "case_dates": "2024-06-25", + "case_names": "State v. Johnson", + "download_urls": "/sites/default/files/memorandums/a24-017m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-1101", + "docket_numbers": "A-24-017", "citations": "", "case_name_shorts": "" }, { - "case_dates": "2017-05-23", - "case_names": "Gray v. Nebraska Dept. of Corr. Servs.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005379PUB", - "precedential_statuses": "Published", + "case_dates": "2024-06-25", + "case_names": "State v. Estell", + "download_urls": "/sites/default/files/memorandums/a23-816m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-482, A-16-590", - "citations": "24 Neb. App. 713", - "case_name_shorts": "Gray" + "docket_numbers": "A-23-816", + "citations": "", + "case_name_shorts": "Estell" }, { - "case_dates": "2017-05-23", - "case_names": "Computer Support Servs. v. Vaccination Servs.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-460m.pdf", + "case_dates": "2024-06-25", + "case_names": "Heard v. Silvus", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011157PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-460", + "docket_numbers": "A-23-697", + "citations": "33 Neb. App. 20", + "case_name_shorts": "Heard" + }, + { + "case_dates": "2024-06-18", + "case_names": "State v. Marsh", + "download_urls": "/sites/default/files/memorandums/a23-487m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-487", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "Marsh" }, { - "case_dates": "2017-05-16", - "case_names": "State v. Brungardt", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-564m.pdf", + "case_dates": "2024-06-18", + "case_names": "State v. Clausen", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011143PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-564, A-16-566", + "docket_numbers": "A-23-960", + "citations": "33 Neb. App. 12", + "case_name_shorts": "Clausen" + }, + { + "case_dates": "2024-06-18", + "case_names": "Nnadozie v. City of Lincoln", + "download_urls": "/sites/default/files/memorandums/a23-578m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-578", "citations": "", - "case_name_shorts": "Brungardt" + "case_name_shorts": "Nnadozie" }, { - "case_dates": "2017-05-16", - "case_names": "Public Assn. of Govt. Empl. v. City of Lincoln", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005369PUB", - "precedential_statuses": "Published", + "case_dates": "2024-06-18", + "case_names": "Gies v. Gies", + "download_urls": "/sites/default/files/memorandums/a23-792m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-007", - "citations": "24 Neb. App. 703", - "case_name_shorts": "" + "docket_numbers": "A-23-792", + "citations": "", + "case_name_shorts": "Gies" }, { - "case_dates": "2017-05-16", - "case_names": "Kountze v. Domina Law Group", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-033m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-18", + "case_names": "Devers v. Nebraska Dept. of Corr. Servs.", + "download_urls": "/sites/default/files/memorandums/a23-652m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-033, A-16-272", + "docket_numbers": "A-23-652", "citations": "", - "case_name_shorts": "Kountze" + "case_name_shorts": "Devers" }, { - "case_dates": "2017-05-16", - "case_names": "In re Interest of Trip B.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-903m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-11", + "case_names": "Willbrand on behalf of Willbrand-Santos v. Sotolongo", + "download_urls": "/sites/default/files/memorandums/a23-757m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-903", + "docket_numbers": "A-23-757", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "Sotolongo" }, { - "case_dates": "2017-05-16", - "case_names": "Hovey v. Hovey", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a15-1143m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-11", + "case_names": "State v. Bussinger", + "download_urls": "/sites/default/files/memorandums/a23-949m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-1143", + "docket_numbers": "A-23-949", "citations": "", - "case_name_shorts": "Hovey" + "case_name_shorts": "Bussinger" }, { - "case_dates": "2017-05-16", - "case_names": "Bermudez v. Salazar", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-324m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-11", + "case_names": "Penate v. Penate", + "download_urls": "/sites/default/files/memorandums/a23-452m_1.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-324", + "docket_numbers": "A-23-452", "citations": "", - "case_name_shorts": "Bermudez" + "case_name_shorts": "Penate" }, { - "case_dates": "2017-05-09", - "case_names": "Witthuhn v. Witthuhn", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-585m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-11", + "case_names": "Mai v. Mai", + "download_urls": "/sites/default/files/memorandums/a23-777m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-585", + "docket_numbers": "A-23-777", "citations": "", - "case_name_shorts": "Witthuhn" + "case_name_shorts": "Mai" }, { - "case_dates": "2017-05-09", - "case_names": "Plains Radiology Servs. v. Good Samaritan Hosp.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-674m.pdf", + "case_dates": "2024-06-11", + "case_names": "Libra v. Lahm", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011120PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-674", + "docket_numbers": "A-23-478", + "citations": "33 Neb. App. 1", + "case_name_shorts": "Libra" + }, + { + "case_dates": "2024-06-11", + "case_names": "In re Interest of C.M.", + "download_urls": "/sites/default/files/memorandums/a23-895m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-895", "citations": "", "case_name_shorts": "" }, { - "case_dates": "2017-05-09", - "case_names": "Komar v. State", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005352PUB", - "precedential_statuses": "Published", + "case_dates": "2024-06-11", + "case_names": "In re Interest of Ava M.", + "download_urls": "/sites/default/files/memorandums/a23-782m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-127", - "citations": "24 Neb. App. 692", - "case_name_shorts": "Komar" + "docket_numbers": "A-23-782", + "citations": "", + "case_name_shorts": "" }, { - "case_dates": "2017-05-09", - "case_names": "Jones v. McDonald Farms", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005351PUB", - "precedential_statuses": "Published", + "case_dates": "2024-06-11", + "case_names": "Harris v. Sheldon", + "download_urls": "/sites/default/files/memorandums/a23-639m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-777", - "citations": "24 Neb. App. 649", - "case_name_shorts": "Jones" + "docket_numbers": "A-23-639", + "citations": "", + "case_name_shorts": "Harris" }, { - "case_dates": "2017-05-09", - "case_names": "In re Interest of Zy'air T.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-1074m.pdf", + "case_dates": "2024-06-04", + "case_names": "State v. Trevino", + "download_urls": "/sites/default/files/memorandums/a23-689m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-689", + "citations": "", + "case_name_shorts": "Trevino" + }, + { + "case_dates": "2024-06-04", + "case_names": "State v. Santos", + "download_urls": "/sites/default/files/memorandums/a23-233m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-233", + "citations": "", + "case_name_shorts": "Santos" + }, + { + "case_dates": "2024-06-04", + "case_names": "Neal v. Solorzano", + "download_urls": "/sites/default/files/memorandums/a23-544m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-544", + "citations": "", + "case_name_shorts": "Neal" + }, + { + "case_dates": "2024-06-04", + "case_names": "Lopez v. Jorge", + "download_urls": "/sites/default/files/memorandums/a23-815m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-815", + "citations": "", + "case_name_shorts": "Lopez" + }, + { + "case_dates": "2024-06-04", + "case_names": "Janda v. Janda", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011100PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-1074", + "docket_numbers": "A-23-549", + "citations": "32 Neb. App. 953", + "case_name_shorts": "Janda" + }, + { + "case_dates": "2024-06-04", + "case_names": "In re Interest of Sophia J. & Selene J.", + "download_urls": "/sites/default/files/memorandums/a23-924Mm.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-924, A-23-925", "citations": "", "case_name_shorts": "" }, { - "case_dates": "2017-05-02", - "case_names": "Robertson v. U Save Foods", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-397m.pdf", + "case_dates": "2024-06-04", + "case_names": "In re Interest of Quiotis C.", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011099PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-397", + "docket_numbers": "A-23-495", + "citations": "32 Neb. App. 932", + "case_name_shorts": "" + }, + { + "case_dates": "2024-06-04", + "case_names": "In re Interest of A'Reesha C.", + "download_urls": "/sites/default/files/memorandums/a23-853m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-853", "citations": "", - "case_name_shorts": "Robertson" + "case_name_shorts": "" }, { - "case_dates": "2017-05-02", - "case_names": "Panhandle Collections v. Jacobson", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-459m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-04", + "case_names": "Bayliss v. Clason", + "download_urls": "/sites/default/files/memorandums/a23-557m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-459", + "docket_numbers": "A-23-557", "citations": "", - "case_name_shorts": "Jacobson" + "case_name_shorts": "Bayliss" }, { - "case_dates": "2017-05-02", - "case_names": "Carlini v. Gray Television Group", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a15-1239m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-04", + "case_names": "Bahshoota v. Woodhouse Family Auto", + "download_urls": "/sites/default/files/memorandums/a23-737m_0.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-1239", + "docket_numbers": "A-23-737", "citations": "", - "case_name_shorts": "Carlini" + "case_name_shorts": "Bahshoota" }, { - "case_dates": "2017-05-02", - "case_names": "Bilderback-Vess v. Vess", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-121m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-28", + "case_names": "Williams v. Combat Veterans Motorcycle Assn.", + "download_urls": "/sites/default/files/memorandums/a23-676m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-121", + "docket_numbers": "A-23-676", "citations": "", - "case_name_shorts": "Bilderback-Vess" + "case_name_shorts": "" }, { - "case_dates": "2017-05-02", - "case_names": "Assad v. Sidney Regional Med. Ctr.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-949m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-28", + "case_names": "State v. Romero-Mijangos", + "download_urls": "/sites/default/files/memorandums/a23-784m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-949", + "docket_numbers": "A-23-784", "citations": "", - "case_name_shorts": "Assad" + "case_name_shorts": "Romero-Mijangos" }, { - "case_dates": "2017-05-02", - "case_names": "Aschoff v. State", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-249m.pdf", + "case_dates": "2024-05-28", + "case_names": "State v. Guardiola", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011077PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-249", + "docket_numbers": "A-23-584", + "citations": "32 Neb. App. 915", + "case_name_shorts": "Guardiola" + }, + { + "case_dates": "2024-05-28", + "case_names": "State v. Guardiola", + "download_urls": "/sites/default/files/memorandums/a23-582m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-582", "citations": "", - "case_name_shorts": "Aschoff" + "case_name_shorts": "Guardiola" }, { - "case_dates": "2017-04-25", - "case_names": "State v. Wilson", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-555m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-28", + "case_names": "State v. Deering", + "download_urls": "/sites/default/files/memorandums/a23-507m_0.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-555", + "docket_numbers": "A-23-507", "citations": "", - "case_name_shorts": "Wilson" + "case_name_shorts": "Deering" }, { - "case_dates": "2017-04-25", - "case_names": "State v. Rosas", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-468m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-28", + "case_names": "Mendoza v. Honeywell American Meter Co.", + "download_urls": "/sites/default/files/memorandums/a23-807m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-468", + "docket_numbers": "A-23-807", "citations": "", - "case_name_shorts": "Rosas" + "case_name_shorts": "Mendoza" }, { - "case_dates": "2017-04-25", - "case_names": "Lewis v. Lewis", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-248m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-28", + "case_names": "Jama v. Seu", + "download_urls": "/sites/default/files/memorandums/a23-497m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-248", + "docket_numbers": "A-23-497", "citations": "", - "case_name_shorts": "Lewis" + "case_name_shorts": "Jama" }, { - "case_dates": "2017-04-25", - "case_names": "In re Interest of J.C.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-841m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-28", + "case_names": "In re Interest of Sergio L.", + "download_urls": "/sites/default/files/memorandums/a23-708Mm.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-841", + "docket_numbers": "A-23-708 through A-23-712", "citations": "", "case_name_shorts": "" }, { - "case_dates": "2017-04-25", - "case_names": "Gray v. Nebraska Dept. of Corr. Servs.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-287m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-28", + "case_names": "Hyberger v. Hyberger", + "download_urls": "/sites/default/files/memorandums/a23-393m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-287", + "docket_numbers": "A-23-393", "citations": "", - "case_name_shorts": "Gray" + "case_name_shorts": "Hyberger" }, { - "case_dates": "2017-04-18", - "case_names": "Ammon v. Nagengast", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewAdvanced?docId=N00005318PUB", + "case_dates": "2024-05-21", + "case_names": "Ventura Duenas v. Papillion Foods", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011058PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-1184", - "citations": "24 Neb. App. 632", - "case_name_shorts": "Ammon" + "docket_numbers": "A-23-563", + "citations": "32 Neb. App. 899", + "case_name_shorts": "" }, { - "case_dates": "2017-04-11", - "case_names": "State v. Wabashaw", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-251m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-21", + "case_names": "State v. Harris", + "download_urls": "/sites/default/files/memorandums/a23-747m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-251", + "docket_numbers": "A-23-747", "citations": "", - "case_name_shorts": "Wabashaw" + "case_name_shorts": "Harris" }, { - "case_dates": "2017-04-11", - "case_names": "Schroeder v. Schroeder", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-067m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-21", + "case_names": "State v. Aguilar", + "download_urls": "/sites/default/files/memorandums/a23-389m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-067", + "docket_numbers": "A-23-389", "citations": "", - "case_name_shorts": "Schroeder" + "case_name_shorts": "Aguilar" }, { - "case_dates": "2017-04-11", - "case_names": "In re Interest of Ke'Shaun T.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-677m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-21", + "case_names": "Masters v. Masters", + "download_urls": "/sites/default/files/memorandums/a23-745Mm.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-677", + "docket_numbers": "A-23-745, A-23-746", + "citations": "", + "case_name_shorts": "Masters" + }, + { + "case_dates": "2024-05-21", + "case_names": "Liu v. Welch", + "download_urls": "/sites/default/files/memorandums/a23-466m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-466", + "citations": "", + "case_name_shorts": "Liu" + }, + { + "case_dates": "2024-05-21", + "case_names": "In re Interest of Jayceon W.", + "download_urls": "/sites/default/files/memorandums/a23-739m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-739", "citations": "", "case_name_shorts": "" }, { - "case_dates": "2017-04-11", - "case_names": "In re Interest of K.W.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005307PUB", - "precedential_statuses": "Published", + "case_dates": "2024-05-21", + "case_names": "In re Interest of Imani M.", + "download_urls": "/sites/default/files/memorandums/a23-769m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-684", - "citations": "24 Neb. App. 619", + "docket_numbers": "A-23-769", + "citations": "", "case_name_shorts": "" }, { - "case_dates": "2017-04-04", - "case_names": "VanEiser, LLC v. Nebraska Bank of Commerce", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a15-980m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-21", + "case_names": "In re Interest of Elijah Y.", + "download_urls": "/sites/default/files/memorandums/a23-821m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-980", + "docket_numbers": "A-23-821", "citations": "", "case_name_shorts": "" }, { - "case_dates": "2017-04-04", - "case_names": "State v. Schmidt", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-475m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-21", + "case_names": "Donner v. Dinslage", + "download_urls": "/sites/default/files/memorandums/a23-812m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-475", + "docket_numbers": "A-23-812", "citations": "", - "case_name_shorts": "Schmidt" + "case_name_shorts": "Donner" }, { - "case_dates": "2017-04-04", - "case_names": "Giandinoto v. Giandinoto", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-802m.pdf", + "case_dates": "2024-05-21", + "case_names": "Dibuono-Gonzalez v. Gonzalez", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011057PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-802", - "citations": "", - "case_name_shorts": "Giandinoto" + "docket_numbers": "A-23-439", + "citations": "32 Neb. App. 881", + "case_name_shorts": "Dibuono-Gonzalez" }, { - "case_dates": "2017-04-04", - "case_names": "Ehrke v. Mamot", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-282m.pdf", + "case_dates": "2024-05-14", + "case_names": "Vargasfontanez v. Vargas", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00011038PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-282", + "docket_numbers": "A-23-398", + "citations": "32 Neb. App. 860", + "case_name_shorts": "Vargasfontanez" + }, + { + "case_dates": "2024-05-14", + "case_names": "State v. Tsosie", + "download_urls": "/sites/default/files/memorandums/a23-969m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-969", "citations": "", - "case_name_shorts": "Ehrke" + "case_name_shorts": "Tsosie" }, { - "case_dates": "2017-04-04", - "case_names": "Edmunds v. Stevens", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-129m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-14", + "case_names": "State v. Randall", + "download_urls": "/sites/default/files/memorandums/a23-1041m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-129", + "docket_numbers": "A-23-1041", "citations": "", - "case_name_shorts": "Edmunds" + "case_name_shorts": "Randall" }, { - "case_dates": "2017-03-28", - "case_names": "deBoer v. deBoer", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005270PUB", - "precedential_statuses": "Published", + "case_dates": "2024-05-14", + "case_names": "State v. Qasim", + "download_urls": "/sites/default/files/memorandums/a23-255m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-163", - "citations": "24 Neb. App. 612", - "case_name_shorts": "deBoer" + "docket_numbers": "A-23-255", + "citations": "", + "case_name_shorts": "Qasim" }, { - "case_dates": "2017-03-28", - "case_names": "State v. Reinig", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-808m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-14", + "case_names": "State v. Loury", + "download_urls": "/sites/default/files/memorandums/a23-904mm.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-808", + "docket_numbers": "A-23-904 through A-23-907", "citations": "", - "case_name_shorts": "Reinig" + "case_name_shorts": "Loury" }, { - "case_dates": "2017-03-28", - "case_names": "State v. Goff", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-644m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-14", + "case_names": "State v. Dean", + "download_urls": "/sites/default/files/memorandums/a23-826m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-644", + "docket_numbers": "A-23-826", "citations": "", - "case_name_shorts": "Goff" + "case_name_shorts": "Dean" }, { - "case_dates": "2017-03-28", - "case_names": "State v. Dubray", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-962m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-14", + "case_names": "State v. Beutler", + "download_urls": "/sites/default/files/memorandums/a23-942m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-962", + "docket_numbers": "A-23-942", "citations": "", - "case_name_shorts": "Dubray" + "case_name_shorts": "Beutler" }, { - "case_dates": "2017-03-28", - "case_names": "State v. Barnett", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-679m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-14", + "case_names": "In re Interest of Tallulah J. & Brexen K.", + "download_urls": "/sites/default/files/memorandums/a23-631mm_0.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-679", + "docket_numbers": "A-23-631, A-23-632", "citations": "", - "case_name_shorts": "Barnett" + "case_name_shorts": "" }, { - "case_dates": "2017-03-21", - "case_names": "State v. Remijio", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-561m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-07", + "case_names": "Tall Grass Hills v. Overholt", + "download_urls": "/sites/default/files/memorandums/a23-114m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-561", + "docket_numbers": "A-23-114", "citations": "", - "case_name_shorts": "Remijio" + "case_name_shorts": "Overholt" }, { - "case_dates": "2017-03-21", - "case_names": "State v. Heldt", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-505m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-07", + "case_names": "State v. Marcoe", + "download_urls": "/sites/default/files/memorandums/a23-721m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-505", + "docket_numbers": "A-23-721", "citations": "", - "case_name_shorts": "Heldt" + "case_name_shorts": "Marcoe" }, { - "case_dates": "2017-03-21", - "case_names": "State v. Hamed", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-675m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-07", + "case_names": "State v. De Los Angeles", + "download_urls": "/sites/default/files/memorandums/a23-577m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-675", + "docket_numbers": "A-23-577", "citations": "", - "case_name_shorts": "Hamed" + "case_name_shorts": "" }, { - "case_dates": "2017-03-21", - "case_names": "State v. Genchi-Garcia", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-649m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-07", + "case_names": "Schicker v. Cady", + "download_urls": "/sites/default/files/memorandums/a23-455m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-649", + "docket_numbers": "A-23-455", "citations": "", - "case_name_shorts": "Genchi-Garcia" + "case_name_shorts": "Schicker" }, { - "case_dates": "2017-03-21", - "case_names": "In re Interest of Hassan L.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-787m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-05-07", + "case_names": "Jordan v. Jordan", + "download_urls": "/sites/default/files/memorandums/a23-772m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-787", + "docket_numbers": "A-23-772", "citations": "", - "case_name_shorts": "" + "case_name_shorts": "Jordan" }, { - "case_dates": "2017-03-21", - "case_names": "House v. House", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005258PUB", - "precedential_statuses": "Published", + "case_dates": "2024-04-30", + "case_names": "Ullerich v. Ullerich", + "download_urls": "/sites/default/files/memorandums/a23-496m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-1132", - "citations": "24 Neb. App. 595", - "case_name_shorts": "House" + "docket_numbers": "A-23-496", + "citations": "", + "case_name_shorts": "Ullerich" }, { - "case_dates": "2017-03-14", - "case_names": "State v. Rivera", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-255m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-04-30", + "case_names": "Tortorello v. Hannagan", + "download_urls": "/sites/default/files/memorandums/a23-515m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-255", + "docket_numbers": "A-23-515", "citations": "", - "case_name_shorts": "Rivera" + "case_name_shorts": "Tortorello" }, { - "case_dates": "2017-03-14", - "case_names": "Lindsay S. v. Robinson", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-835m.pdf", + "case_dates": "2024-04-30", + "case_names": "Stava v. Stava", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00010943PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-835", + "docket_numbers": "A-23-249", + "citations": "32 Neb. App. 840", + "case_name_shorts": "Stava" + }, + { + "case_dates": "2024-04-30", + "case_names": "State v. Debus", + "download_urls": "/sites/default/files/memorandums/a23-910m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-910", "citations": "", - "case_name_shorts": "Robinson" + "case_name_shorts": "Debus" }, { - "case_dates": "2017-03-14", - "case_names": "In re Estate of Ackerman", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005247PUB", - "precedential_statuses": "Published", + "case_dates": "2024-04-30", + "case_names": "St. Thomas Group v. City of Omaha", + "download_urls": "/sites/default/files/memorandums/a23-680m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-977", - "citations": "24 Neb. App. 588", + "docket_numbers": "A-23-680", + "citations": "", "case_name_shorts": "" }, { - "case_dates": "2017-03-07", - "case_names": "Wheeler v. County of Sarpy", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-038m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-04-30", + "case_names": "Rowlette v. Brown", + "download_urls": "/sites/default/files/memorandums/a23-576m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-038", + "docket_numbers": "A-23-576", "citations": "", - "case_name_shorts": "Wheeler" + "case_name_shorts": "Rowlette" }, { - "case_dates": "2017-03-07", - "case_names": "State v. Thunder", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a15-891m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-04-30", + "case_names": "Cline v. Simmons", + "download_urls": "/sites/default/files/memorandums/a23-165m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-891", + "docket_numbers": "A-23-165", "citations": "", - "case_name_shorts": "Thunder" + "case_name_shorts": "Cline" }, { - "case_dates": "2017-03-07", - "case_names": "Parking Mgmt. & Consultants v. City of Omaha", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a15-1112m.pdf", + "case_dates": "2024-04-23", + "case_names": "Weston v. Weston", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00010917PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-1112", + "docket_numbers": "A-23-283", + "citations": "32 Neb. App. 822", + "case_name_shorts": "Weston" + }, + { + "case_dates": "2024-04-23", + "case_names": "State v. Swanson", + "download_urls": "/sites/default/files/memorandums/a23-230m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-230", + "citations": "", + "case_name_shorts": "Swanson" + }, + { + "case_dates": "2024-04-23", + "case_names": "State v. Sturgis", + "download_urls": "/sites/default/files/memorandums/a23-817m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-817", + "citations": "", + "case_name_shorts": "Sturgis" + }, + { + "case_dates": "2024-04-23", + "case_names": "State v. Russell", + "download_urls": "/sites/default/files/memorandums/a23-1000m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-1000", + "citations": "", + "case_name_shorts": "Russell" + }, + { + "case_dates": "2024-04-23", + "case_names": "State v. Little", + "download_urls": "/sites/default/files/memorandums/a23-880m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-880", + "citations": "", + "case_name_shorts": "Little" + }, + { + "case_dates": "2024-04-23", + "case_names": "Ramos v. Aqua Palace", + "download_urls": "/sites/default/files/memorandums/a23-572m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-572", + "citations": "", + "case_name_shorts": "Ramos" + }, + { + "case_dates": "2024-04-23", + "case_names": "Dodge Cty. Bd. of Equal. v. The Kroger Company", + "download_urls": "/sites/default/files/memorandums/a23-268m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-268", "citations": "", "case_name_shorts": "" }, { - "case_dates": "2017-03-07", - "case_names": "Lisec v. Lisec", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005236PUB", - "precedential_statuses": "Published", + "case_dates": "2024-04-23", + "case_names": "Cheyenne Cty. Bd. of Equal. v. Mietus", + "download_urls": "/sites/default/files/memorandums/a23-661m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-634", - "citations": "24 Neb. App. 572", - "case_name_shorts": "Lisec" + "docket_numbers": "A-23-661", + "citations": "", + "case_name_shorts": "Mietus" }, { - "case_dates": "2017-03-07", - "case_names": "Antillon v. Cabrera", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a16-659m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-04-16", + "case_names": "State v. Stokes", + "download_urls": "/sites/default/files/memorandums/a23-435m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-659", + "docket_numbers": "A-23-435", "citations": "", - "case_name_shorts": "Antillon" + "case_name_shorts": "Stokes" }, { - "case_dates": "2017-02-28", - "case_names": "Tucker-Thomas v. Thomas", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a15-982m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-04-16", + "case_names": "State v. Payne", + "download_urls": "/sites/default/files/memorandums/a23-510m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-982", + "docket_numbers": "A-23-510", "citations": "", - "case_name_shorts": "Tucker-Thomas" + "case_name_shorts": "Payne" }, { - "case_dates": "2017-02-28", - "case_names": "State v. Pigee", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a15-1113m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-04-16", + "case_names": "State v. Danielson", + "download_urls": "/sites/default/files/memorandums/a23-780m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-1113", + "docket_numbers": "A-23-780", "citations": "", - "case_name_shorts": "Pigee" + "case_name_shorts": "Danielson" }, { - "case_dates": "2017-02-28", - "case_names": "State v. Huff", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005224PUB", - "precedential_statuses": "Published", + "case_dates": "2024-04-16", + "case_names": "Schumann v. Schumann", + "download_urls": "/sites/default/files/memorandums/a23-494m.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-897", - "citations": "24 Neb. App. 551", - "case_name_shorts": "Huff" + "docket_numbers": "A-23-494", + "citations": "", + "case_name_shorts": "Schumann" }, { - "case_dates": "2017-02-28", - "case_names": "Jacob v. Cotton", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a15-1037m.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-04-16", + "case_names": "Gray v. Gray", + "download_urls": "/sites/default/files/memorandums/a23-571m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-571", + "citations": "", + "case_name_shorts": "Gray" + }, + { + "case_dates": "2024-04-16", + "case_names": "Easton v. Easton", + "download_urls": "/sites/default/files/memorandums/a23-088m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-088", + "citations": "", + "case_name_shorts": "Easton" + }, + { + "case_dates": "2024-04-09", + "case_names": "Security State Bank v. Bopp", + "download_urls": "/sites/default/files/memorandums/a23-0220Mm.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-15-1037", + "docket_numbers": "A-23-220, A-23-221", "citations": "", - "case_name_shorts": "Jacob" + "case_name_shorts": "Bopp" }, { - "case_dates": "2017-02-28", - "case_names": "Hintz v. Farmers Co-op Assn.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00005225PUB", + "case_dates": "2024-04-09", + "case_names": "Schwensow v. Bartnicki", + "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00010825PUB", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-16-267", - "citations": "24 Neb. App. 561", - "case_name_shorts": "Hintz" + "docket_numbers": "A-23-593", + "citations": "32 Neb. App. 798", + "case_name_shorts": "Schwensow" + }, + { + "case_dates": "2024-04-09", + "case_names": "Ricker v. Nebraska Methodist Health System", + "download_urls": "/sites/default/files/memorandums/a23-339m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-339", + "citations": "", + "case_name_shorts": "Ricker" + }, + { + "case_dates": "2024-04-09", + "case_names": "Prairie Lake Plaza South v. F.A.A. Properties", + "download_urls": "/sites/default/files/memorandums/a23-306Mm.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-306, A-23-307", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-09", + "case_names": "General Drivers v. Duet of Eastern Nebraska", + "download_urls": "/sites/default/files/memorandums/a23-603m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-603", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-04-09", + "case_names": "Barsell v. Rasmussen", + "download_urls": "/sites/default/files/memorandums/a23-446m.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-23-446", + "citations": "", + "case_name_shorts": "Barsell" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nebctapp_example.html b/tests/examples/opinions/united_states/nebctapp_example.html index c49fd5ad2..7324f7a4c 100644 --- a/tests/examples/opinions/united_states/nebctapp_example.html +++ b/tests/examples/opinions/united_states/nebctapp_example.html @@ -1,1663 +1,3222 @@ - - - - - - - - - - - + + + + - - - - - - - Court of Appeals Opinions | Nebraska Judicial Branch - - - - - - - - - - - - - - - - - - -
    -
    - -
    -
    -
    - -
    -
    - -
    -
    - - - - - - - - -
    -
    - - - - - - - - +
    + + + +
    + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nebctapp_example_2.compare.json b/tests/examples/opinions/united_states/nebctapp_example_2.compare.json deleted file mode 100644 index a8004c802..000000000 --- a/tests/examples/opinions/united_states/nebctapp_example_2.compare.json +++ /dev/null @@ -1,805 +0,0 @@ -[ - { - "case_dates": "2023-07-03", - "case_names": "State v. Kodi B.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a23-204m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-23-204", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2023-07-03", - "case_names": "In re Interest of Audrey B.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-893m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-893", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2023-06-27", - "case_names": "State v. Miller", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-552m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-552 through A-22-554", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2023-06-27", - "case_names": "In re Interest of Charlee W.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-862m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-862", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2023-06-27", - "case_names": "30 Metropolitan Place v. Dana Partnership", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-591m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-591", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2023-06-20", - "case_names": "State v. Ortiz", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-945m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-945", - "citations": "", - "case_name_shorts": "Ortiz" - }, - { - "case_dates": "2023-06-20", - "case_names": "State v. Jennings", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-806m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-806", - "citations": "", - "case_name_shorts": "Jennings" - }, - { - "case_dates": "2023-06-20", - "case_names": "Schultz v. State", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009556PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-387", - "citations": "32 Neb. App. 59", - "case_name_shorts": "Schultz" - }, - { - "case_dates": "2023-06-20", - "case_names": "Ditter v. Kush", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-801m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-801", - "citations": "", - "case_name_shorts": "Ditter" - }, - { - "case_dates": "2023-06-13", - "case_names": "State v. O'Neal", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-632m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-632", - "citations": "", - "case_name_shorts": "O'Neal" - }, - { - "case_dates": "2023-06-13", - "case_names": "State v. Janis", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009533PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-842", - "citations": "32 Neb. App. 49", - "case_name_shorts": "Janis" - }, - { - "case_dates": "2023-06-13", - "case_names": "State v. Furstenfeld", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-884m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-884, A-22-886", - "citations": "", - "case_name_shorts": "Furstenfeld" - }, - { - "case_dates": "2023-06-13", - "case_names": "Nelson v. Lahm", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009532PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-669", - "citations": "32 Neb. App. 35", - "case_name_shorts": "Lahm" - }, - { - "case_dates": "2023-06-13", - "case_names": "Koch v. Koch", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-940m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-940", - "citations": "", - "case_name_shorts": "Koch" - }, - { - "case_dates": "2023-06-13", - "case_names": "In re Interest of Kota G.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-758m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-758 through A-22-760", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2023-06-13", - "case_names": "In re Interest of Aveon J.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-863m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-863", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2023-06-13", - "case_names": "In re Estate of Filsinger", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-596m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-596", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2023-06-13", - "case_names": "Deges v. Deges", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-686m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-686", - "citations": "", - "case_name_shorts": "Deges" - }, - { - "case_dates": "2023-06-06", - "case_names": "State v. Booker", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a23-118m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-23-118", - "citations": "", - "case_name_shorts": "Booker" - }, - { - "case_dates": "2023-06-06", - "case_names": "Lindvall v. Lundberg", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-485m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-485", - "citations": "", - "case_name_shorts": "Lindvall" - }, - { - "case_dates": "2023-06-06", - "case_names": "Larson v. Larson", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-836m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-836", - "citations": "", - "case_name_shorts": "Larson" - }, - { - "case_dates": "2023-06-06", - "case_names": "Kee v. Gilbert", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009513PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-317", - "citations": "32 Neb. App. 1", - "case_name_shorts": "Kee" - }, - { - "case_dates": "2023-06-06", - "case_names": "Hyer v. Target Corp.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-805m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-805", - "citations": "", - "case_name_shorts": "Hyer" - }, - { - "case_dates": "2023-06-06", - "case_names": "General Collection Co. v. Leaman", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-406m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-406", - "citations": "", - "case_name_shorts": "Leaman" - }, - { - "case_dates": "2023-06-06", - "case_names": "Gaudreault v. Gaudreault", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-598m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-598", - "citations": "", - "case_name_shorts": "Gaudreault" - }, - { - "case_dates": "2023-05-30", - "case_names": "Watson v. Pick", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009495PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-203", - "citations": "31 Neb. App. 952", - "case_name_shorts": "Watson" - }, - { - "case_dates": "2023-05-30", - "case_names": "State v. Price", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-687m_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-687", - "citations": "", - "case_name_shorts": "Price" - }, - { - "case_dates": "2023-05-30", - "case_names": "State v. McSwine", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-611m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-611", - "citations": "", - "case_name_shorts": "McSwine" - }, - { - "case_dates": "2023-05-30", - "case_names": "State v. Long", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-504m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-504", - "citations": "", - "case_name_shorts": "Long" - }, - { - "case_dates": "2023-05-30", - "case_names": "State v. Davalos-Romo", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-674m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-674", - "citations": "", - "case_name_shorts": "Davalos-Romo" - }, - { - "case_dates": "2023-05-30", - "case_names": "Malone v. McCullough Construction", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-722m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-722", - "citations": "", - "case_name_shorts": "Malone" - }, - { - "case_dates": "2023-05-30", - "case_names": "In re Interest of Jha-Kai P. & Zayne P.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-695m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-695", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2023-05-23", - "case_names": "State v. Samuels", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009482PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-077", - "citations": "31 Neb. App. 918", - "case_name_shorts": "Samuels" - }, - { - "case_dates": "2023-05-23", - "case_names": "State v. Moon", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-775m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-775", - "citations": "", - "case_name_shorts": "Moon" - }, - { - "case_dates": "2023-05-16", - "case_names": "State v. Tucker", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-809m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-809", - "citations": "", - "case_name_shorts": "Tucker" - }, - { - "case_dates": "2023-05-16", - "case_names": "State v. Parks", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-691m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-691", - "citations": "", - "case_name_shorts": "Parks" - }, - { - "case_dates": "2023-05-16", - "case_names": "State v. Lierman", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-564m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-564", - "citations": "", - "case_name_shorts": "Lierman" - }, - { - "case_dates": "2023-05-16", - "case_names": "State v. Brown", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-658m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-658", - "citations": "", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2023-05-16", - "case_names": "State v. Barber", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-621m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-621", - "citations": "", - "case_name_shorts": "Barber" - }, - { - "case_dates": "2023-05-16", - "case_names": "Kaplan v. State", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-718m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-718", - "citations": "", - "case_name_shorts": "Kaplan" - }, - { - "case_dates": "2023-05-16", - "case_names": "In re Adoption of Antaeus A.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009464PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-594", - "citations": "31 Neb. App. 907", - "case_name_shorts": "" - }, - { - "case_dates": "2023-05-16", - "case_names": "Fuller v. Burrito Builders Lincoln 102", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-683m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-683", - "citations": "", - "case_name_shorts": "Fuller" - }, - { - "case_dates": "2023-05-09", - "case_names": "Valdivia-De Los Rios v. Valdivia", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-400m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-400", - "citations": "", - "case_name_shorts": "Valdivia" - }, - { - "case_dates": "2023-05-09", - "case_names": "Ulrich v. Arjo-Century Distributing", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-656m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-656", - "citations": "", - "case_name_shorts": "Ulrich" - }, - { - "case_dates": "2023-05-09", - "case_names": "State v. Simonson", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-821m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-821", - "citations": "", - "case_name_shorts": "Simonson" - }, - { - "case_dates": "2023-05-09", - "case_names": "State v. Hickman", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-677m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-677", - "citations": "", - "case_name_shorts": "Hickman" - }, - { - "case_dates": "2023-05-09", - "case_names": "State v. Bogard", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-623m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-623", - "citations": "", - "case_name_shorts": "Bogard" - }, - { - "case_dates": "2023-05-09", - "case_names": "In re Interest of Jorge A.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009555PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-870", - "citations": "31 Neb. App. 896", - "case_name_shorts": "" - }, - { - "case_dates": "2023-05-09", - "case_names": "Capital One Bank v. Tafoya", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009448PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-052", - "citations": "31 Neb. App. 875", - "case_name_shorts": "Tafoya" - }, - { - "case_dates": "2023-05-02", - "case_names": "State v. Yost", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-361m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-361", - "citations": "", - "case_name_shorts": "Yost" - }, - { - "case_dates": "2023-05-02", - "case_names": "State v. Wyrick", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009428PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-176", - "citations": "31 Neb. App. 815", - "case_name_shorts": "Wyrick" - }, - { - "case_dates": "2023-05-02", - "case_names": "State v. Spangler", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-645m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-645", - "citations": "", - "case_name_shorts": "Spangler" - }, - { - "case_dates": "2023-05-02", - "case_names": "State v. Sierra", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009429PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-211", - "citations": "31 Neb. App. 852", - "case_name_shorts": "Sierra" - }, - { - "case_dates": "2023-05-02", - "case_names": "State v. Manka", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-437m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-437", - "citations": "", - "case_name_shorts": "Manka" - }, - { - "case_dates": "2023-05-02", - "case_names": "Nelson Engr. Constr. v. Austin Bldg. & Design", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-319m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-319", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2023-05-02", - "case_names": "Koch v. Susan S.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-824m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-824", - "citations": "", - "case_name_shorts": "Koch" - }, - { - "case_dates": "2023-05-02", - "case_names": "In re Trust of Hunt", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-499m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-499", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2023-04-25", - "case_names": "State v. Rashad", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009412PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-097", - "citations": "31 Neb. App. 779", - "case_name_shorts": "Rashad" - }, - { - "case_dates": "2023-04-25", - "case_names": "State v. McGhee", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-914m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-914", - "citations": "", - "case_name_shorts": "McGhee" - }, - { - "case_dates": "2023-04-25", - "case_names": "State v. Codr", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-618m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-618, A-22-619", - "citations": "", - "case_name_shorts": "Codr" - }, - { - "case_dates": "2023-04-25", - "case_names": "Kotas v. Barnett", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009413PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-399", - "citations": "31 Neb. App. 799", - "case_name_shorts": "Kotas" - }, - { - "case_dates": "2023-04-25", - "case_names": "In re Interest of Yohanna G.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-539m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-539 through A-22-541", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2023-04-18", - "case_names": "State v. Weaver", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-649m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-649", - "citations": "", - "case_name_shorts": "Weaver" - }, - { - "case_dates": "2023-04-18", - "case_names": "KJH Enterprises v. Schroeder", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-449m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-449", - "citations": "", - "case_name_shorts": "Schroeder" - }, - { - "case_dates": "2023-04-18", - "case_names": "In re Interest of Zailee C.", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-614m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-614 through A-22-616", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2023-04-11", - "case_names": "State v. Svoboda", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-245m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-245", - "citations": "", - "case_name_shorts": "Svoboda" - }, - { - "case_dates": "2023-04-11", - "case_names": "State v. Criss", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009380PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-508", - "citations": "31 Neb. App. 765", - "case_name_shorts": "Criss" - }, - { - "case_dates": "2023-04-11", - "case_names": "State v. Betts", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009378PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-094, A-22-096", - "citations": "31 Neb. App. 737", - "case_name_shorts": "Betts" - }, - { - "case_dates": "2023-04-11", - "case_names": "State v. Amaro-Sanchez", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-899m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-899", - "citations": "", - "case_name_shorts": "Amaro-Sanchez" - }, - { - "case_dates": "2023-04-11", - "case_names": "Parrish v. Parrish", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-362m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-362", - "citations": "", - "case_name_shorts": "Parrish" - }, - { - "case_dates": "2023-04-11", - "case_names": "Knight v. Damme", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-143m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-143", - "citations": "", - "case_name_shorts": "Knight" - }, - { - "case_dates": "2023-04-11", - "case_names": "Evan S. v. Laura H.", - "download_urls": "https://www.nebraska.gov/apps-courts-epub/public/viewOpinion?docId=N00009379PUB", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-230", - "citations": "31 Neb. App. 750", - "case_name_shorts": "" - }, - { - "case_dates": "2023-04-11", - "case_names": "Carter v. Civil Service Commission", - "download_urls": "https://supremecourt.nebraska.gov/sites/default/files/a22-227m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-22-227", - "citations": "", - "case_name_shorts": "Carter" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nebctapp_example_2.html b/tests/examples/opinions/united_states/nebctapp_example_2.html deleted file mode 100644 index 92ff42014..000000000 --- a/tests/examples/opinions/united_states/nebctapp_example_2.html +++ /dev/null @@ -1,2021 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - Court of Appeals Opinions | Nebraska Judicial Branch - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
     
    -
    -
    - -
    -
    -
    - -
    -
    - -
    - -
    -
    -
    -
    -
    -
    - -
    - -
    -
    -
    -
     
    -
    -
    - -
     
    -
    -
    - -
    -
    -
    -
    -
    -
    - - -
    -
    -
     
    -
    -
    - -
     
    -
    -
    - -
    -
    - -
    - - -
    -
    -
    -

    Court of Appeals Opinions

    - -
    -
    -
    -
    -
    -
    - -
    -
    -
    - - - -
    -

    Court of Appeals Opinions

    -
    -

    Find anticipated opinions here.

    - -

    Online Opinion Library

    - -

    PLEASE NOTE: Due to the Independence Day holiday, the Nebraska Court of Appeals will release opinions on Monday, July 3, 2023, instead of Tuesday, July 4, 2023.

    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - - -
    -
    July 3, 2023
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Opinion Memorandum
    - Case Number - Cite As - Title/Download PDF
    - A-22-893 - - In re Interest of Audrey B.
    - A-23-204 - - State v. Kodi B.
    - A-XX-XXXX - - Memo Opinions NOT Selected for Posting
    -
    June 27, 2023
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Opinion Memorandum
    - Case Number - Cite As - Title/Download PDF
    - A-22-552 through A-22-554 - - State v. Miller
    - A-22-591 - - 30 Metropolitan Place v. Dana Partnership
    - A-22-862 - - In re Interest of Charlee W. et al.
    - A-XX-XXXX - - Memo Opinions NOT Selected for Posting
    -
    June 20, 2023
    - - - - - - - - - - - - - - - -
    Opinion
    - Case Number - Cite As - Title/Download PDF
    - A-22-387 - 32 Neb. App. 59 - Schultz v. State
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Opinion Memorandum
    - Case Number - Cite As - Title/Download PDF
    - A-22-801 - - Ditter v. Kush
    - A-22-806 - - State v. Jennings
    - A-22-945 - - State v. Ortiz
    - A-XX-XXXX - - Memo Opinions NOT Selected for Posting
    -
    June 13, 2023
    - - - - - - - - - - - - - - - - - - - - -
    Opinion
    - Case Number - Cite As - Title/Download PDF
    - A-22-669 - 32 Neb. App. 35 - Nelson v. Lahm
    - A-22-842 - 32 Neb. App. 49 - State v. Janis
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Opinion Memorandum
    - Case Number - Cite As - Title/Download PDF
    - A-22-596 - - In re Estate of Filsinger
    - A-22-632 - - State v. O'Neal
    - A-22-686 - - Deges v. Deges
    - A-22-758 through A-22-760 - - In re Interest of Kota G. et al.
    - A-22-863 - - In re Interest of Aveon J.
    - A-22-884, A-22-886 - - State v. Furstenfeld
    - A-22-940 - - Koch v. Koch
    - A-XX-XXXX - - Memo Opinions NOT Selected for Posting
    -
    June 6, 2023
    - - - - - - - - - - - - - - - -
    Opinion
    - Case Number - Cite As - Title/Download PDF
    - A-22-317 - 32 Neb. App. 1 - Kee v. Gilbert
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Opinion Memorandum
    - Case Number - Cite As - Title/Download PDF
    - A-22-406 - - General Collection Co. v. Leaman
    - A-22-485 - - Lindvall v. Lundberg
    - A-22-598 - - Gaudreault v. Gaudreault
    - A-22-805 - - Hyer v. Target Corp.
    - A-22-836 - - Larson v. Larson
    - A-23-118 - - State v. Booker
    - A-XX-XXXX - - Memo Opinions NOT Selected for Posting
    -
    May 30, 2023
    - - - - - - - - - - - - - - - -
    Opinion
    - Case Number - Cite As - Title/Download PDF
    - A-22-203 - 31 Neb. App. 952 - Watson v. Pick
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Opinion Memorandum
    - Case Number - Cite As - Title/Download PDF
    - A-22-504 - - State v. Long
    - A-22-611 - - State v. McSwine
    - A-22-674 - - State v. Davalos-Romo
    - A-22-687 - - State v. Price
    - A-22-695 - - In re Interest of Jha-Kai P. & Zayne P.
    - A-22-722 - - Malone v. McCullough Construction
    - A-XX-XXXX - - Memo Opinions NOT Selected for Posting
    -
    May 23, 2023
    - - - - - - - - - - - - - - - -
    Opinion
    - Case Number - Cite As - Title/Download PDF
    - A-22-077 - 31 Neb. App. 918 - State v. Samuels
    - - - - - - - - - - - - - - - - - - - - - -
    Opinion Memorandum
    - Case Number - Cite As - Title/Download PDF
    - A-22-775 - - State v. Moon
    - A-XX-XXXX - - Memo Opinions NOT Selected for Posting
    -
    May 16, 2023
    - - - - - - - - - - - - - - - -
    Opinion
    - Case Number - Cite As - Title/Download PDF
    - A-22-594 - 31 Neb. App. 907 - In re Adoption of Antaeus A.
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Opinion Memorandum
    - Case Number - Cite As - Title/Download PDF
    - A-22-564 - - State v. Lierman
    - A-22-621 - - State v. Barber
    - A-22-658 - - State v. Brown
    - A-22-683 - - Fuller v. Burrito Builders Lincoln 102
    - A-22-691 - - State v. Parks
    - A-22-718 - - Kaplan v. State
    - A-22-809 - - State v. Tucker
    - A-XX-XXXX - - Memo Opinions NOT Selected for Posting
    -
    May 9, 2023
    - - - - - - - - - - - - - - - - - - - - -
    Opinion
    - Case Number - Cite As - Title/Download PDF
    - A-22-052 - 31 Neb. App. 875 - Capital One Bank v. Tafoya
    - A-22-870 - 31 Neb. App. 896 - In re Interest of Jorge A.
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Opinion Memorandum
    - Case Number - Cite As - Title/Download PDF
    - A-22-400 - - Valdivia-De Los Rios v. Valdivia
    - A-22-623 - - State v. Bogard
    - A-22-656 - - Ulrich v. Arjo-Century Distributing
    - A-22-677 - - State v. Hickman
    - A-22-821 - - State v. Simonson
    - A-XX-XXXX - - Memo Opinions NOT Selected for Posting
    -
    May 2, 2023
    - - - - - - - - - - - - - - - - - - - - -
    Opinion
    - Case Number - Cite As - Title/Download PDF
    - A-22-176 - 31 Neb. App. 815 - State v. Wyrick
    - A-22-211 - 31 Neb. App. 852 - State v. Sierra
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Opinion Memorandum
    - Case Number - Cite As - Title/Download PDF
    - A-22-319 - - Nelson Engr. Constr. v. Austin Bldg. & Design
    - A-22-361 - - State v. Yost
    - A-22-437 - - State v. Manka
    - A-22-499 - - In re Trust of Hunt
    - A-22-645 - - State v. Spangler
    - A-22-824 - - Koch v. Susan S.
    - A-XX-XXXX - - Memo Opinions NOT Selected for Posting
    -
    April 25, 2023
    - - - - - - - - - - - - - - - - - - - - -
    Opinion
    - Case Number - Cite As - Title/Download PDF
    - A-22-097 - 31 Neb. App. 779 - State v. Rashad
    - A-22-399 - 31 Neb. App. 799 - Kotas v. Barnett
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Opinion Memorandum
    - Case Number - Cite As - Title/Download PDF
    - A-22-539 through A-22-541 - - In re Interest of Yohanna G. et al.
    - A-22-618, A-22-619 - - State v. Codr
    - A-22-914 - - State v. McGhee
    - A-XX-XXXX - - Opinions NOT Selected for Posting
    -
    April 18, 2023
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Opinion Memorandum
    - Case Number - Cite As - Title/Download PDF
    - A-22-449 - - KJH Enterprises v. Schroeder
    - A-22-614 through A-22-616 - - In re Interest of Zailee C. et al.
    - A-22-649 - - State v. Weaver
    - A-XX-XXXX - - Memo Opinions NOT Selected for Posting
    -
    April 11, 2023
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Opinion
    - Case Number - Cite As - Title/Download PDF
    - A-22-094, A-22-096 - 31 Neb. App. 737 - State v. Betts
    - A-22-230 - 31 Neb. App. 750 - Evan S. v. Laura H.
    - A-22-508 - 31 Neb. App. 765 - State v. Criss
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Opinion Memorandum
    - Case Number - Cite As - Title/Download PDF
    - A-22-143 - - Knight v. Damme
    - A-22-227 - - Carter v. Civil Service Commission
    - A-22-245 - - State v. Svoboda
    - A-22-362 - - Parrish v. Parrish
    - A-22-899 - - State v. Amaro-Sanchez
    - A-XX-XXXX - - Memo Opinions NOT Selected for Posting
    -
    - - - - - - -
    -
    -
    -
    -
    -
    -
    -
    Court of Appeals Lists
    -
    -
    -
    -

    Lists of Cases Disposed of by Memorandum Opinion, Cases Disposed of Without Opinion, and Cases on Petition for Further Review are updated at the time opinions are posted each week. Access to view the lists is through the Online Library.

    - -

    Online Library:  The Nebraska Appellate Courts Online Library is the repository of the official published judicial opinions of the Nebraska Supreme Court and the Nebraska Court of Appeals.  Effective January 1, 2016, the Nebraska Supreme Court designated the online certified PDF opinion as the official court opinion for the Nebraska appellate courts, beginning with Volume 275 of the Nebraska Reports and Volume 16 of the Nebraska Appellate Reports.  All previous official bound volumes of the appellate courts are available on the online library in scanned PDF format.  See Neb. Ct. R. App. P. §§ 2-112(C) and 2-102(E)(3).

    - -

    The online library was created as a service to the public to increase accessibility to the official opinions by providing them free of charge in a permanent manner, thereby containing costs and increasing operational efficiency.

    - -

    Advance opinions and lists released by the Nebraska Supreme Court and the Nebraska Court of Appeals are accessible on the Judicial Branch Website via links to the Nebraska Appellate Courts Online Library for 90 days.  The advance opinions and lists are also accessible on the online library.  Once an advance opinion becomes certified, it will replace the advance opinion and will become part of the permanent online library.

    - -

    Posting Times:  Generally, the Supreme Court opinions are filed 8 a.m. on Fridays, and the Court of Appeals opinions are filed 8 a.m. on Tuesdays, on the day on which they are released.

    - -

    Subscribe to Alerts:  Free automatice updates from the Nebraska Judicial Branch, including judicial opinions are available by subscription.  Subscribe.

    - -

    SCCALES:  The appellate courts' case management computer system, SCCALES, provides access to appellate court case records through a paid Nebraska.gov subscription.

    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
     
    -
    -
    - -
    -
    -
    - - - -
     
    -
    - -
    -
    - -
    -
    -
    -
    - - - - -
    -
    -
    -
    - - - - - - - - - - - - diff --git a/tests/examples/opinions/united_states/nev_example.compare.json b/tests/examples/opinions/united_states/nev_example.compare.json new file mode 100644 index 000000000..3018b24f5 --- /dev/null +++ b/tests/examples/opinions/united_states/nev_example.compare.json @@ -0,0 +1,134 @@ +[ + { + "case_dates": "2023-11-02", + "case_names": "Tough Turtle Turf, LLC v. Scott", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "85249", + "citations": "139 Nev., Advance Opinion 47", + "case_name_shorts": "Scott" + }, + { + "case_dates": "2023-10-12", + "case_names": "Deutsche Bank Nat'l Tr. v. Fid. Nat'l", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "84161", + "citations": "139 Nev., Advance Opinion 45", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-28", + "case_names": "Orbitz Worldwide v. Eighth Jud. Dist. Ct.", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "85111", + "citations": "139 Nev., Advance Opinion 40", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-28", + "case_names": "Killebrew v. Donohue", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "83830", + "citations": "139 Nev., Advance Opinion 43", + "case_name_shorts": "Killebrew" + }, + { + "case_dates": "2023-09-28", + "case_names": "Kelley v. Kelley", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "84685", + "citations": "139 Nev., Advance Opinion 39", + "case_name_shorts": "Kelley" + }, + { + "case_dates": "2023-09-28", + "case_names": "In re Guardianship of D.M.F.", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "84274", + "citations": "139 Nev., Advance Opinion 38", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-28", + "case_names": "Floyd v. State, Dept. of Corr.", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "84081", + "citations": "139 Nev., Advance Opinion 37", + "case_name_shorts": "Floyd" + }, + { + "case_dates": "2023-09-28", + "case_names": "Aldape v. State", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "83622", + "citations": "139 Nev., Advance Opinion 42", + "case_name_shorts": "Aldape" + }, + { + "case_dates": "2023-09-21", + "case_names": "Patterson v. Las Vegas Mun. Court", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "86108", + "citations": "139 Nev., Advance Opinion 35", + "case_name_shorts": "Patterson" + }, + { + "case_dates": "2023-09-21", + "case_names": "Kassebaum v. State, Dep't of Corr.", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "83942", + "citations": "139 Nev., Advance Opinion 34", + "case_name_shorts": "Kassebaum" + }, + { + "case_dates": "2023-09-21", + "case_names": "El Jen Med. Hosp. v. Tyler", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "83945", + "citations": "139 Nev., Advance Opinion 36", + "case_name_shorts": "Tyler" + }, + { + "case_dates": "2023-09-14", + "case_names": "State v. Gonzalez", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "85399", + "citations": "139 Nev., Advance Opinion 33", + "case_name_shorts": "Gonzalez" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nev_example.json b/tests/examples/opinions/united_states/nev_example.json new file mode 100644 index 000000000..b3dbfdf52 --- /dev/null +++ b/tests/examples/opinions/united_states/nev_example.json @@ -0,0 +1,122 @@ +[ + { + "advanceNumber": 47, + "caseNumber": "85249", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=64747", + "caseTitle": "Tough Turtle Turf, LLC v. Scott", + "date": "2023-11-02T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=64747&csIID=64747&deLinkID=921968&onBaseDocumentNumber=23-35608" + }, + { + "advanceNumber": 46, + "caseNumber": "85099-COA", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=66173", + "caseTitle": "Bolden v. State", + "date": "2023-10-19T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=66173&csIID=66173&deLinkID=920335&onBaseDocumentNumber=23-34039" + }, + { + "advanceNumber": 45, + "caseNumber": "84161", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=63256", + "caseTitle": "Deutsche Bank Nat'l Tr. v. Fid. Nat'l", + "date": "2023-10-12T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=63256&csIID=63256&deLinkID=919543&onBaseDocumentNumber=23-33279" + }, + { + "advanceNumber": 44, + "caseNumber": "84427-COA", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=65930", + "caseTitle": "Eivazi v. Eivazi", + "date": "2023-10-05T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=65930&csIID=65930&deLinkID=918875&onBaseDocumentNumber=23-32631" + }, + { + "advanceNumber": 43, + "caseNumber": "83830", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=62803", + "caseTitle": "Killebrew v. Donohue", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=62803&csIID=62803&deLinkID=918018&onBaseDocumentNumber=23-31827" + }, + { + "advanceNumber": 42, + "caseNumber": "83622", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=62533", + "caseTitle": "Aldape v. State", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=62533&csIID=62533&deLinkID=918016&onBaseDocumentNumber=23-31825" + }, + { + "advanceNumber": 41, + "caseNumber": "85122-COA", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=66537", + "caseTitle": "Olvera v. Wynn Las Vegas", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=66537&csIID=66537&deLinkID=918011&onBaseDocumentNumber=23-31820" + }, + { + "advanceNumber": 40, + "caseNumber": "85111", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=64528", + "caseTitle": "Orbitz Worldwide v. Eighth Jud. Dist. Ct.", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=64528&csIID=64528&deLinkID=918008&onBaseDocumentNumber=23-31817" + }, + { + "advanceNumber": 39, + "caseNumber": "84685", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=63949", + "caseTitle": "Kelley v. Kelley", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=63949&csIID=63949&deLinkID=918006&onBaseDocumentNumber=23-31815" + }, + { + "advanceNumber": 38, + "caseNumber": "84274", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=63393", + "caseTitle": "In re Guardianship of D.M.F.", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=63393&csIID=63393&deLinkID=918004&onBaseDocumentNumber=23-31813" + }, + { + "advanceNumber": 37, + "caseNumber": "84081", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=63145", + "caseTitle": "Floyd v. State, Dept. of Corr.", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=63145&csIID=63145&deLinkID=917994&onBaseDocumentNumber=23-31803" + }, + { + "advanceNumber": 36, + "caseNumber": "83945", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=62973", + "caseTitle": "El Jen Med. Hosp. v. Tyler", + "date": "2023-09-21T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=62973&csIID=62973&deLinkID=917202&onBaseDocumentNumber=23-31043" + }, + { + "advanceNumber": 35, + "caseNumber": "86108", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=65907", + "caseTitle": "Patterson v. Las Vegas Mun. Court", + "date": "2023-09-21T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=65907&csIID=65907&deLinkID=917200&onBaseDocumentNumber=23-31041" + }, + { + "advanceNumber": 34, + "caseNumber": "83942", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=62969", + "caseTitle": "Kassebaum v. State, Dep't of Corr.", + "date": "2023-09-21T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=62969&csIID=62969&deLinkID=917199&onBaseDocumentNumber=23-31040" + }, + { + "advanceNumber": 33, + "caseNumber": "85399", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=64927", + "caseTitle": "State vs. Gonzalez", + "date": "2023-09-14T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=64927&csIID=64927&deLinkID=916202&onBaseDocumentNumber=23-30102" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nev_p_example.compare.json b/tests/examples/opinions/united_states/nev_p_example.compare.json deleted file mode 100644 index 5542f9d39..000000000 --- a/tests/examples/opinions/united_states/nev_p_example.compare.json +++ /dev/null @@ -1,5359 +0,0 @@ -[ - { - "case_dates": "2019-08-01", - "case_names": "In re Guardianship of Gomez Wittler", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48177&csIID=48177&deLinkID=729887&onBaseDocumentNumber=19-32345", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76948", - "citations": "2019 NV 31", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-01", - "case_names": "First Transit v. Chernikoff", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38378&csIID=38378&deLinkID=729888&onBaseDocumentNumber=19-32346", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70164", - "citations": "2019 NV 32", - "case_name_shorts": "Chernikoff" - }, - { - "case_dates": "2019-08-01", - "case_names": "City of Mesquite v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45981&csIID=45981&deLinkID=729889&onBaseDocumentNumber=19-32347", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75743", - "citations": "2019 NV 33", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-25", - "case_names": "Menendez-Cordero v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45137&csIID=45137&deLinkID=728816&onBaseDocumentNumber=19-31363", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74901", - "citations": "2019 NV 29", - "case_name_shorts": "Menendez-Cordero" - }, - { - "case_dates": "2019-07-25", - "case_names": "Daisy Trust v. Wells Fargo Bank", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42972&csIID=42972&deLinkID=728817&onBaseDocumentNumber=19-31364", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72747", - "citations": "2019 NV 30", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-18", - "case_names": "Cameron v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52936&csIID=52936&deLinkID=727798&onBaseDocumentNumber=19-30397", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77669", - "citations": "2019 NV 28", - "case_name_shorts": "Cameron" - }, - { - "case_dates": "2019-07-03", - "case_names": "U.S. Bank, Nat'l Ass'n v. Res. Grp.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44810&csIID=44810&deLinkID=725711&onBaseDocumentNumber=19-28443", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74575", - "citations": "2019 NV 26", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-03", - "case_names": "Saticoy Bay LLC v. Nev. Ass'n Servs.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44385&csIID=44385&deLinkID=725707&onBaseDocumentNumber=19-28439", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74153", - "citations": "2019 NV 23", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-03", - "case_names": "Pardee Homes of Nev. v. Wolfram", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42596&csIID=42596&deLinkID=725706&onBaseDocumentNumber=19-28438", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72371", - "citations": "2019 NV 22", - "case_name_shorts": "Wolfram" - }, - { - "case_dates": "2019-07-03", - "case_names": "Boesiger v. Desert Appraisals, LLC", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45436&csIID=45436&deLinkID=725709&onBaseDocumentNumber=19-28441", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75198", - "citations": "2019 NV 25", - "case_name_shorts": "Boesiger" - }, - { - "case_dates": "2019-07-03", - "case_names": "Amaya v. Guerrero Rivera", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46007&csIID=46007&deLinkID=725712&onBaseDocumentNumber=19-28444", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75769", - "citations": "2019 NV 27", - "case_name_shorts": "Amaya" - }, - { - "case_dates": "2019-06-27", - "case_names": "Waste Mgmt. of Nev. v. W. Taylor St.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45112&csIID=45112&deLinkID=724776&onBaseDocumentNumber=19-27646", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74876", - "citations": "2019 NV 21", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-13", - "case_names": "Kim v. Dickinson Wright, PLLC", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45039&csIID=45039&deLinkID=722571&onBaseDocumentNumber=19-25580", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74803", - "citations": "2019 NV 20", - "case_name_shorts": "Kim" - }, - { - "case_dates": "2019-06-06", - "case_names": "The Original Roofing Co. v. NOSHA", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44280&csIID=44280&deLinkID=721448&onBaseDocumentNumber=19-24491", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74048", - "citations": "2019 NV 18", - "case_name_shorts": "NOSHA" - }, - { - "case_dates": "2019-06-06", - "case_names": "Rose, LLC v. Treasure Island, LLC", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=51639&csIID=51639&deLinkID=721449&onBaseDocumentNumber=19-24492", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71941-COA", - "citations": "2019 NV 19", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-06", - "case_names": "Lipsitz v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42279&csIID=42279&deLinkID=721447&onBaseDocumentNumber=19-24490", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72057", - "citations": "2019 NV 17", - "case_name_shorts": "Lipsitz" - }, - { - "case_dates": "2019-05-30", - "case_names": "Castillo v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43696&csIID=43696&deLinkID=720224&onBaseDocumentNumber=19-23417", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73465", - "citations": "2019 NV 16", - "case_name_shorts": "Castillo" - }, - { - "case_dates": "2019-05-16", - "case_names": "Bowser v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40738&csIID=40738&deLinkID=718293&onBaseDocumentNumber=19-21558", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71516", - "citations": "2019 NV 15", - "case_name_shorts": "Bowser" - }, - { - "case_dates": "2019-05-02", - "case_names": "Tricarichi v. Co+\u00a6peratieve Rabobank, U.A.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43404&csIID=43404&deLinkID=715746&onBaseDocumentNumber=19-19263", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73175", - "citations": "2019 NV 11", - "case_name_shorts": "Tricarichi" - }, - { - "case_dates": "2019-05-02", - "case_names": "State, Dep't of Corr. v. Ludwick", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43506&csIID=43506&deLinkID=715753&onBaseDocumentNumber=19-19270", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73277", - "citations": "2019 NV 12", - "case_name_shorts": "Ludwick" - }, - { - "case_dates": "2019-05-02", - "case_names": "Sierra Pac. Indus. v. Wilson", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44165&csIID=44165&deLinkID=715759&onBaseDocumentNumber=19-19275", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73933", - "citations": "2019 NV 13", - "case_name_shorts": "Wilson" - }, - { - "case_dates": "2019-05-02", - "case_names": "City of Reno v. Yturbide", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44203&csIID=44203&deLinkID=715766&onBaseDocumentNumber=19-19282", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73971", - "citations": "2019 NV 14", - "case_name_shorts": "Yturbide" - }, - { - "case_dates": "2019-04-25", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42216&csIID=42216&deLinkID=714537&onBaseDocumentNumber=19-18121", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71994", - "citations": "2019 NV 9", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2019-04-25", - "case_names": "Kogod v. Cioffi-Kogod", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40364&csIID=40364&deLinkID=714537&onBaseDocumentNumber=19-18121", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71147", - "citations": "2019 NV 9", - "case_name_shorts": "Kogod" - }, - { - "case_dates": "2019-04-25", - "case_names": "In re Fund for Encouragement of Self Rel.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45200&csIID=45200&deLinkID=714540&onBaseDocumentNumber=19-18124", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74964", - "citations": "2019 NV 10", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-14", - "case_names": "Resources Grp. v. Nev. Ass'n Servs.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40486&csIID=40486&deLinkID=707195&onBaseDocumentNumber=19-11364", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71268", - "citations": "2019 NV 8", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-07", - "case_names": "Bank of Am. v. Thomas Jessup, LLC Ser. VII", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44017&csIID=44017&deLinkID=705930&onBaseDocumentNumber=19-10173", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73785", - "citations": "2019 NV 7", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-28", - "case_names": "Henry v. Nev. Comm'n on Jud. Discipline", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45913&csIID=45913&deLinkID=704861&onBaseDocumentNumber=19-09140", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75675", - "citations": "2019 NV 5", - "case_name_shorts": "Henry" - }, - { - "case_dates": "2019-02-28", - "case_names": "Craig v. Dr. Donnelly", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=51903&csIID=51903&deLinkID=704862&onBaseDocumentNumber=19-09141", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75050-COA", - "citations": "2019 NV 6", - "case_name_shorts": "Craig" - }, - { - "case_dates": "2019-02-07", - "case_names": "Pascua v. Bayview Loan Servicing", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=41992&csIID=41992&deLinkID=701449&onBaseDocumentNumber=19-05825", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71770", - "citations": "2019 NV 4", - "case_name_shorts": "Pascua" - }, - { - "case_dates": "2019-01-17", - "case_names": "Bombardier Transp. v. State, Labor Comm'r", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40318&csIID=40318&deLinkID=698098&onBaseDocumentNumber=19-02636", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71101", - "citations": "2019 NV 3", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-03", - "case_names": "Franks v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43217&csIID=43217&deLinkID=695721&onBaseDocumentNumber=19-00263", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72988", - "citations": "2019 NV 1", - "case_name_shorts": "Franks" - }, - { - "case_dates": "2019-01-03", - "case_names": "Coker v. Sassone", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44095&csIID=44095&deLinkID=695728&onBaseDocumentNumber=19-00270", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73863", - "citations": "2019 NV 2", - "case_name_shorts": "Coker" - }, - { - "case_dates": "2018-12-27", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38442&csIID=38442&deLinkID=693950&onBaseDocumentNumber=18-91052", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70227", - "citations": "2018 NV 108", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2018-12-27", - "case_names": "In re Estate of Sarge", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43515&csIID=43515&deLinkID=693938&onBaseDocumentNumber=18-91051", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73286", - "citations": "2018 NV 105", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-27", - "case_names": "Harris v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37721&csIID=37721&deLinkID=693947&onBaseDocumentNumber=18-91052", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69509", - "citations": "2018 NV 107", - "case_name_shorts": "Harris" - }, - { - "case_dates": "2018-12-27", - "case_names": "Gonor v. Dale", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43175&csIID=43175&deLinkID=693953&onBaseDocumentNumber=18-91053", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72949", - "citations": "2018 NV 109", - "case_name_shorts": "Gonor" - }, - { - "case_dates": "2018-12-27", - "case_names": "Cooper v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42313&csIID=42313&deLinkID=693937&onBaseDocumentNumber=18-91051", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72091", - "citations": "2018 NV 104", - "case_name_shorts": "Cooper" - }, - { - "case_dates": "2018-12-27", - "case_names": "Capanna v. Orth", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38149&csIID=38149&deLinkID=693950&onBaseDocumentNumber=18-91052", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69935", - "citations": "2018 NV 108", - "case_name_shorts": "Capanna" - }, - { - "case_dates": "2018-12-27", - "case_names": "Branch Banking & Tr. Co. v. Gerrard", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44080&csIID=44080&deLinkID=693944&onBaseDocumentNumber=18-91052", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73848", - "citations": "2018 NV 106", - "case_name_shorts": "Gerrard" - }, - { - "case_dates": "2018-12-20", - "case_names": "State v. Brown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45422&csIID=45422&deLinkID=693040&onBaseDocumentNumber=18-90961", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75184", - "citations": "2018 NV 102", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2018-12-20", - "case_names": "Natko v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=51699&csIID=51699&deLinkID=693041&onBaseDocumentNumber=18-90962", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73048-COA", - "citations": "2018 NV 103", - "case_name_shorts": "Natko" - }, - { - "case_dates": "2018-12-13", - "case_names": "In re Execution of Search Warrants", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=51293&csIID=51293&deLinkID=691864&onBaseDocumentNumber=18-90847", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71536-COA", - "citations": "2018 NV 97", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-13", - "case_names": "Flores v. L.V.-Clark Cty. Library Dist.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42687&csIID=42687&deLinkID=691868&onBaseDocumentNumber=18-90848", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72462", - "citations": "2018 NV 101", - "case_name_shorts": "Flores" - }, - { - "case_dates": "2018-12-13", - "case_names": "Doolin v. State, Dep't of Corr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=51534&csIID=51534&deLinkID=691865&onBaseDocumentNumber=18-90847", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73698-COA", - "citations": "2018 NV 98", - "case_name_shorts": "Doolin" - }, - { - "case_dates": "2018-12-13", - "case_names": "Century Surety Co. v. Andrew", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43988&csIID=43988&deLinkID=691867&onBaseDocumentNumber=18-90848", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73756", - "citations": "2018 NV 100", - "case_name_shorts": "Andrew" - }, - { - "case_dates": "2018-12-13", - "case_names": "Branham v. Baca", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52086&csIID=52086&deLinkID=691866&onBaseDocumentNumber=18-90848", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74743-COA", - "citations": "2018 NV 99", - "case_name_shorts": "Branham" - }, - { - "case_dates": "2018-12-06", - "case_names": "State v. Second Jud. Dist. Ct. (Ojeda)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42681&csIID=42681&deLinkID=690635&onBaseDocumentNumber=18-90729", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72456", - "citations": "2018 NV 94", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-06", - "case_names": "State v. Second Jud. Dist. Ct. (Hearn)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43706&csIID=43706&deLinkID=690639&onBaseDocumentNumber=18-90730", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73475", - "citations": "2018 NV 96", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-06", - "case_names": "Rodriguez v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43383&csIID=43383&deLinkID=690637&onBaseDocumentNumber=18-90730", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73154", - "citations": "2018 NV 95", - "case_name_shorts": "Rodriguez" - }, - { - "case_dates": "2018-12-06", - "case_names": "O'Keefe v. State, Dep't of Motor Vehicles", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36669&csIID=36669&deLinkID=690632&onBaseDocumentNumber=18-90729", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68460", - "citations": "2018 NV 92", - "case_name_shorts": "O'Keefe" - }, - { - "case_dates": "2018-12-06", - "case_names": "N. Lake Tahoe Fire Prot. v. Bd. of Admin.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38810&csIID=38810&deLinkID=690634&onBaseDocumentNumber=18-90729", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70592", - "citations": "2018 NV 93", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-21", - "case_names": "Vickers v. Dzurenda", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=50811&csIID=50811&deLinkID=688471&onBaseDocumentNumber=18-90520", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72352-COA", - "citations": "2018 NV 91", - "case_name_shorts": "Vickers" - }, - { - "case_dates": "2018-11-21", - "case_names": "Starr v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=51206&csIID=51206&deLinkID=688468&onBaseDocumentNumber=18-90520", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71401-COA", - "citations": "2018 NV 90", - "case_name_shorts": "Starr" - }, - { - "case_dates": "2018-11-21", - "case_names": "McGowen v. Second Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43542&csIID=43542&deLinkID=688464&onBaseDocumentNumber=18-90520", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73312", - "citations": "2018 NV 89", - "case_name_shorts": "McGowen" - }, - { - "case_dates": "2018-11-15", - "case_names": "State v. Plunkett", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44401&csIID=44401&deLinkID=687469&onBaseDocumentNumber=18-90423", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74169", - "citations": "2018 NV 88", - "case_name_shorts": "Plunkett" - }, - { - "case_dates": "2018-11-15", - "case_names": "Patin v. Lee", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38142&csIID=38142&deLinkID=687468&onBaseDocumentNumber=18-90422", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69928", - "citations": "2018 NV 87", - "case_name_shorts": "Patin" - }, - { - "case_dates": "2018-11-08", - "case_names": "Local Gov't Emp.-Mgmt. Rels. Bd. v. ESEA", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38804&csIID=38804&deLinkID=686563&onBaseDocumentNumber=18-90337", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70586", - "citations": "2018 NV 86", - "case_name_shorts": "ESEA" - }, - { - "case_dates": "2018-11-01", - "case_names": "Sarfo v. State, Bd. of Med. Exam'rs", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43346&csIID=43346&deLinkID=676559&onBaseDocumentNumber=18-42843", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73117", - "citations": "2018 NV 85", - "case_name_shorts": "Sarfo" - }, - { - "case_dates": "2018-10-25", - "case_names": "Williams v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40085&csIID=40085&deLinkID=675825&onBaseDocumentNumber=18-42112", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70868", - "citations": "2018 NV 83", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-25", - "case_names": "CCSD v. Las Vegas Review-Journal", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43756&csIID=43756&deLinkID=675828&onBaseDocumentNumber=18-42115", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73525", - "citations": "2018 NV 84", - "case_name_shorts": "CCSD" - }, - { - "case_dates": "2018-10-18", - "case_names": "PERS v. Nev. Policy Research Inst.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42497&csIID=42497&deLinkID=674651&onBaseDocumentNumber=18-40944", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72274", - "citations": "2018 NV 81", - "case_name_shorts": "PERS" - }, - { - "case_dates": "2018-10-18", - "case_names": "Mulkern v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46640&csIID=46640&deLinkID=674653&onBaseDocumentNumber=18-40945", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76399", - "citations": "2018 NV 82", - "case_name_shorts": "Mulkern" - }, - { - "case_dates": "2018-10-04", - "case_names": "Rodriguez v. Fiesta Palms, LLC", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42320&csIID=42320&deLinkID=672531&onBaseDocumentNumber=18-38874", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72098", - "citations": "2018 NV 78", - "case_name_shorts": "Rodriguez" - }, - { - "case_dates": "2018-10-04", - "case_names": "Howard v. Hughes", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42910&csIID=42910&deLinkID=672536&onBaseDocumentNumber=18-38879", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72685", - "citations": "2018 NV 80", - "case_name_shorts": "Howard" - }, - { - "case_dates": "2018-10-04", - "case_names": "Dolorfino v. Univ. Med. Ctr. of S. Nev.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42668&csIID=42668&deLinkID=672534&onBaseDocumentNumber=18-38877", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72443", - "citations": "2018 NV 79", - "case_name_shorts": "Dolorfino" - }, - { - "case_dates": "2018-09-27", - "case_names": "Warren v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44195&csIID=44195&deLinkID=671373&onBaseDocumentNumber=18-37764", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73963", - "citations": "2018 NV 77", - "case_name_shorts": "Warren" - }, - { - "case_dates": "2018-09-27", - "case_names": "Valley Health Sys. v. Estate of Jane Doe", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40262&csIID=40262&deLinkID=671370&onBaseDocumentNumber=18-37761", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71045", - "citations": "2018 NV 76", - "case_name_shorts": "" - }, - { - "case_dates": "2018-09-27", - "case_names": "Valley Health Sys. v. Estate of Jane Doe", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38297&csIID=38297&deLinkID=671370&onBaseDocumentNumber=18-37761", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70083", - "citations": "2018 NV 76", - "case_name_shorts": "" - }, - { - "case_dates": "2018-09-27", - "case_names": "DeChambeau v. Balkenbush", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=51275&csIID=51275&deLinkID=685490&onBaseDocumentNumber=18-90224", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72879-COA", - "citations": "2018 NV 75", - "case_name_shorts": "DeChambeau" - }, - { - "case_dates": "2018-09-13", - "case_names": "Wells Fargo Bank v. Radecki", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40626&csIID=40626&deLinkID=669314&onBaseDocumentNumber=18-35752", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71405", - "citations": "2018 NV 74", - "case_name_shorts": "Radecki" - }, - { - "case_dates": "2018-09-13", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38694&csIID=38694&deLinkID=669305&onBaseDocumentNumber=18-35743", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70478", - "citations": "2018 NV 69", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2018-09-13", - "case_names": "Rosenberg Living Tr. v. MacDonald Highlands", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37611&csIID=37611&deLinkID=669305&onBaseDocumentNumber=18-35743", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69399", - "citations": "2018 NV 69", - "case_name_shorts": "" - }, - { - "case_dates": "2018-09-13", - "case_names": "In re Connell Living Tr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=41798&csIID=41798&deLinkID=669312&onBaseDocumentNumber=18-35750", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71577", - "citations": "2018 NV 73", - "case_name_shorts": "" - }, - { - "case_dates": "2018-09-13", - "case_names": "Ibarra v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37829&csIID=37829&deLinkID=669307&onBaseDocumentNumber=18-35745", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69617", - "citations": "2018 NV 70", - "case_name_shorts": "Ibarra" - }, - { - "case_dates": "2018-09-13", - "case_names": "Bank of Am. v. SFR Invs. Pool 1", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38718&csIID=38718&deLinkID=669310&onBaseDocumentNumber=18-35748", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70501", - "citations": "2018 NV 72", - "case_name_shorts": "" - }, - { - "case_dates": "2018-09-13", - "case_names": "Baiguen v. Harrah's Las Vegas", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38419&csIID=38419&deLinkID=669309&onBaseDocumentNumber=18-35747", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70204", - "citations": "2018 NV 71", - "case_name_shorts": "Baiguen" - }, - { - "case_dates": "2018-09-06", - "case_names": "Dunham v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43372&csIID=43372&deLinkID=668223&onBaseDocumentNumber=18-34702", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73143", - "citations": "2018 NV 68", - "case_name_shorts": "Dunham" - }, - { - "case_dates": "2018-08-30", - "case_names": "O'Connell v. Wynn Las Vegas, LLC", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=51370&csIID=51370&deLinkID=685207&onBaseDocumentNumber=18-90195", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71789-COA", - "citations": "2018 NV 67", - "case_name_shorts": "O'Connell" - }, - { - "case_dates": "2018-08-30", - "case_names": "Mooney v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=51241&csIID=51241&deLinkID=685204&onBaseDocumentNumber=18-90195", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72736-COA", - "citations": "2018 NV 65", - "case_name_shorts": "Mooney" - }, - { - "case_dates": "2018-08-30", - "case_names": "Lastine v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=51675&csIID=51675&deLinkID=685205&onBaseDocumentNumber=18-90195", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73239-COA", - "citations": "2018 NV 66", - "case_name_shorts": "Lastine" - }, - { - "case_dates": "2018-08-23", - "case_names": "Richard v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38760&csIID=38760&deLinkID=666238&onBaseDocumentNumber=18-32859", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70542", - "citations": "2018 NV 64", - "case_name_shorts": "Richard" - }, - { - "case_dates": "2018-08-23", - "case_names": "Mathews v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42926&csIID=42926&deLinkID=666233&onBaseDocumentNumber=18-32854", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72701", - "citations": "2018 NV 63", - "case_name_shorts": "Mathews" - }, - { - "case_dates": "2018-08-02", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42111&csIID=42111&deLinkID=662912&onBaseDocumentNumber=18-29636", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71889", - "citations": "2018 NV 59", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2018-08-02", - "case_names": "Shores v. Global Experience Specialists", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42941&csIID=42941&deLinkID=662914&onBaseDocumentNumber=18-29638", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72716", - "citations": "2018 NV 61", - "case_name_shorts": "Shores" - }, - { - "case_dates": "2018-08-02", - "case_names": "SFR Invs. Pool 1 v. Bank of N.Y. Mellon", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43157&csIID=43157&deLinkID=662911&onBaseDocumentNumber=18-29635", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72931", - "citations": "2018 NV 58", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-02", - "case_names": "Rippo v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=21396&csIID=21396&deLinkID=662881&onBaseDocumentNumber=18-29605", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "53626", - "citations": "2018 NV 53", - "case_name_shorts": "Rippo" - }, - { - "case_dates": "2018-08-02", - "case_names": "Nev. Recycling & Salvage v. Reno Disposal", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40688&csIID=40688&deLinkID=662907&onBaseDocumentNumber=18-29631", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71467", - "citations": "2018 NV 55", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-02", - "case_names": "N. Nev. Homes v. GL Constr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42121&csIID=42121&deLinkID=662913&onBaseDocumentNumber=18-29637", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71899", - "citations": "2018 NV 60", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-02", - "case_names": "In re Parental Rights as to S.L.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42095&csIID=42095&deLinkID=662912&onBaseDocumentNumber=18-29636", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71873", - "citations": "2018 NV 59", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-02", - "case_names": "Hubbard v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34383&csIID=34383&deLinkID=662891&onBaseDocumentNumber=18-29615", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66185", - "citations": "2018 NV 54", - "case_name_shorts": "Hubbard" - }, - { - "case_dates": "2018-08-02", - "case_names": "Granada-Ruiz v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42671&csIID=42671&deLinkID=662910&onBaseDocumentNumber=18-29634", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72446", - "citations": "2018 NV 57", - "case_name_shorts": "Granada-Ruiz" - }, - { - "case_dates": "2018-08-02", - "case_names": "Coles v. Bisbee", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44943&csIID=44943&deLinkID=662915&onBaseDocumentNumber=18-29639", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74707", - "citations": "2018 NV 62", - "case_name_shorts": "Coles" - }, - { - "case_dates": "2018-08-02", - "case_names": "Clark County v. HQ Metro", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42099&csIID=42099&deLinkID=662908&onBaseDocumentNumber=18-29632", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71877", - "citations": "2018 NV 56", - "case_name_shorts": "" - }, - { - "case_dates": "2018-07-26", - "case_names": "Cooper v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40623&csIID=40623&deLinkID=661845&onBaseDocumentNumber=18-28619", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71402", - "citations": "2018 NV 52", - "case_name_shorts": "Cooper" - }, - { - "case_dates": "2018-07-19", - "case_names": "State v. Second Jud. Dist. Ct. (Kephart)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43619&csIID=43619&deLinkID=659851&onBaseDocumentNumber=18-27538", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73389", - "citations": "2018 NV 50", - "case_name_shorts": "" - }, - { - "case_dates": "2018-07-19", - "case_names": "LaBarbera v. Wynn Las Vegas, LLC", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40494&csIID=40494&deLinkID=659854&onBaseDocumentNumber=18-27541", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71276", - "citations": "2018 NV 51", - "case_name_shorts": "LaBarbera" - }, - { - "case_dates": "2018-07-19", - "case_names": "Glover-Armont v. Cargile", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=51050&csIID=51050&deLinkID=684803&onBaseDocumentNumber=18-90154", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70988-COA", - "citations": "2018 NV 49", - "case_name_shorts": "Glover-Armont" - }, - { - "case_dates": "2018-06-28", - "case_names": "W. Sunset 2050 Tr. v. Nationstar Mortg.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=39971&csIID=39971&deLinkID=656818&onBaseDocumentNumber=18-24596", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70754", - "citations": "2018 NV 47", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-28", - "case_names": "In re N.J.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38435&csIID=38435&deLinkID=656819&onBaseDocumentNumber=18-24597", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70220", - "citations": "2018 NV 48", - "case_name_shorts": "In re N.J." - }, - { - "case_dates": "2018-06-14", - "case_names": "Carrington Mortg. Holdings v. R Ventures", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40658&csIID=40658&deLinkID=654815&onBaseDocumentNumber=18-22653", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71437", - "citations": "2018 NV 46", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-07", - "case_names": "Guerrina v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40665&csIID=40665&deLinkID=653783&onBaseDocumentNumber=18-21644", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71444", - "citations": "2018 NV 45", - "case_name_shorts": "Guerrina" - }, - { - "case_dates": "2018-05-31", - "case_names": "Prevost v. State, Dep't of Admin.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40693&csIID=40693&deLinkID=652744&onBaseDocumentNumber=18-20694", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71472", - "citations": "2018 NV 42", - "case_name_shorts": "Prevost" - }, - { - "case_dates": "2018-05-31", - "case_names": "Montage Marketing v. Washoe County", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=27216&csIID=27216&deLinkID=652739&onBaseDocumentNumber=18-20689", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "59063", - "citations": "2018 NV 39", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-31", - "case_names": "MDC Restaurants v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40507&csIID=40507&deLinkID=652742&onBaseDocumentNumber=18-20692", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71289", - "citations": "2018 NV 41", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-31", - "case_names": "Degraw v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42753&csIID=42753&deLinkID=652749&onBaseDocumentNumber=18-20699", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72528", - "citations": "2018 NV 43", - "case_name_shorts": "Degraw" - }, - { - "case_dates": "2018-05-31", - "case_names": "Comm'n on Ethics v. Hansen", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37310&csIID=37310&deLinkID=652740&onBaseDocumentNumber=18-20690", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69100", - "citations": "2018 NV 40", - "case_name_shorts": "Hansen" - }, - { - "case_dates": "2018-05-31", - "case_names": "Bautista v. Picone", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42938&csIID=42938&deLinkID=652750&onBaseDocumentNumber=18-20700", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72713", - "citations": "2018 NV 44", - "case_name_shorts": "Bautista" - }, - { - "case_dates": "2018-05-24", - "case_names": "Sayedzada v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=50983&csIID=50983&deLinkID=684394&onBaseDocumentNumber=18-90114", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71731-COA", - "citations": "2018 NV 38", - "case_name_shorts": "Sayedzada" - }, - { - "case_dates": "2018-05-17", - "case_names": "Saticoy Bay v. Fed. Nat'l Mortg. Ass'n", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37631&csIID=37631&deLinkID=650786&onBaseDocumentNumber=18-18816", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69419", - "citations": "2018 NV 36", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-17", - "case_names": "Moore v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34851&csIID=34851&deLinkID=650782&onBaseDocumentNumber=18-18812", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66652", - "citations": "2018 NV 35", - "case_name_shorts": "Moore" - }, - { - "case_dates": "2018-05-17", - "case_names": "Eureka County v. Seventh Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42540&csIID=42540&deLinkID=650792&onBaseDocumentNumber=18-18822", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72317", - "citations": "2018 NV 37", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-03", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43501&csIID=43501&deLinkID=648628&onBaseDocumentNumber=18-16764", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73272", - "citations": "2018 NV 29", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2018-05-03", - "case_names": "Philip R. v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43427&csIID=43427&deLinkID=648628&onBaseDocumentNumber=18-16764", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73198", - "citations": "2018 NV 29", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-03", - "case_names": "Morgan v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38640&csIID=38640&deLinkID=648621&onBaseDocumentNumber=18-16757", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70424", - "citations": "2018 NV 27", - "case_name_shorts": "Morgan" - }, - { - "case_dates": "2018-05-03", - "case_names": "MEI-GSR Holdings v. Peppermill Casinos", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38534&csIID=38534&deLinkID=648633&onBaseDocumentNumber=18-16769", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70319", - "citations": "2018 NV 31", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-03", - "case_names": "Las Vegas Dev. Grp. v. Blaha", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42097&csIID=42097&deLinkID=648641&onBaseDocumentNumber=18-16777", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71875", - "citations": "2018 NV 33", - "case_name_shorts": "Blaha" - }, - { - "case_dates": "2018-05-03", - "case_names": "Fitzgerald v. Mobile Billboards", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43028&csIID=43028&deLinkID=648630&onBaseDocumentNumber=18-16766", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72803", - "citations": "2018 NV 30", - "case_name_shorts": "Fitzgerald" - }, - { - "case_dates": "2018-05-03", - "case_names": "Dolores v. State, Emp't Sec. Div.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42349&csIID=42349&deLinkID=648644&onBaseDocumentNumber=18-16780", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72126", - "citations": "2018 NV 34", - "case_name_shorts": "Dolores" - }, - { - "case_dates": "2018-05-03", - "case_names": "Cotter v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40485&csIID=40485&deLinkID=648638&onBaseDocumentNumber=18-16774", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71267", - "citations": "2018 NV 32", - "case_name_shorts": "Cotter" - }, - { - "case_dates": "2018-05-03", - "case_names": "Coleman v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40269&csIID=40269&deLinkID=648623&onBaseDocumentNumber=18-16759", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71052", - "citations": "2018 NV 28", - "case_name_shorts": "Coleman" - }, - { - "case_dates": "2018-04-12", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40081&csIID=40081&deLinkID=645804&onBaseDocumentNumber=18-14020", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70864", - "citations": "2018 NV 26", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2018-04-12", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38103&csIID=38103&deLinkID=645804&onBaseDocumentNumber=18-14020", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69889", - "citations": "2018 NV 26", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2018-04-12", - "case_names": "U.S. Home Corp. v. Michael Ballesteros Tr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37019&csIID=37019&deLinkID=645803&onBaseDocumentNumber=18-14019", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68810", - "citations": "2018 NV 25", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-12", - "case_names": "Coroner v. Las Vegas Review-Journal", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45332&csIID=45332&deLinkID=645799&onBaseDocumentNumber=18-14015", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75095", - "citations": "2018 NV 24", - "case_name_shorts": "Coroner" - }, - { - "case_dates": "2018-04-12", - "case_names": "Cain v. Price", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37544&csIID=37544&deLinkID=645804&onBaseDocumentNumber=18-14020", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69333", - "citations": "2018 NV 26", - "case_name_shorts": "Cain" - }, - { - "case_dates": "2018-04-05", - "case_names": "State v. Sample", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40425&csIID=40425&deLinkID=644694&onBaseDocumentNumber=18-12943", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71208", - "citations": "2018 NV 23", - "case_name_shorts": "Sample" - }, - { - "case_dates": "2018-04-05", - "case_names": "Nance v. Ferraro", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=50651&csIID=50651&deLinkID=683887&onBaseDocumentNumber=18-90063", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72454-COA", - "citations": "2018 NV 21", - "case_name_shorts": "Nance" - }, - { - "case_dates": "2018-04-05", - "case_names": "Kirsch v. Traber", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40071&csIID=40071&deLinkID=644691&onBaseDocumentNumber=18-12940", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70854", - "citations": "2018 NV 22", - "case_name_shorts": "Kirsch" - }, - { - "case_dates": "2018-03-29", - "case_names": "Southworth v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43886&csIID=43886&deLinkID=642710&onBaseDocumentNumber=18-12058", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73655", - "citations": "2018 NV 20", - "case_name_shorts": "Southworth" - }, - { - "case_dates": "2018-03-29", - "case_names": "Nuleaf CLV v. State, Dep't of Health", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38123&csIID=38123&deLinkID=642700&onBaseDocumentNumber=18-12048", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69909", - "citations": "2018 NV 17", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-29", - "case_names": "King v. St. Clair", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38674&csIID=38674&deLinkID=642701&onBaseDocumentNumber=18-12049", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70458", - "citations": "2018 NV 18", - "case_name_shorts": "King" - }, - { - "case_dates": "2018-03-29", - "case_names": "Comstock Residents Ass'n v. Lyon Cty.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=39955&csIID=39955&deLinkID=642705&onBaseDocumentNumber=18-12053", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70738", - "citations": "2018 NV 19", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-15", - "case_names": "Miller v. Miller", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37564&csIID=37564&deLinkID=640811&onBaseDocumentNumber=18-10186", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69353", - "citations": "2018 NV 16", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-01", - "case_names": "Zenor v. State, Dep't of Transp.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42012&csIID=42012&deLinkID=638690&onBaseDocumentNumber=18-08132", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71790", - "citations": "2018 NV 14", - "case_name_shorts": "Zenor" - }, - { - "case_dates": "2018-03-01", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38110&csIID=38110&deLinkID=638679&onBaseDocumentNumber=18-08121", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69896", - "citations": "2018 NV 9", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2018-03-01", - "case_names": "State, Dep't of Bus. v. Dollar Loan Ctr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38216&csIID=38216&deLinkID=638696&onBaseDocumentNumber=18-08138", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70002", - "citations": "2018 NV 15", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-01", - "case_names": "State v. Eighth Jud. Dist. Ct. (Baker)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=41843&csIID=41843&deLinkID=638688&onBaseDocumentNumber=18-08130", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71621", - "citations": "2018 NV 13", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-01", - "case_names": "Pawlik v. Deng", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40272&csIID=40272&deLinkID=638686&onBaseDocumentNumber=18-08128", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71055", - "citations": "2018 NV 11", - "case_name_shorts": "Pawlik" - }, - { - "case_dates": "2018-03-01", - "case_names": "K-Kel, Inc. v. State, Dep't of Taxation", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38100&csIID=38100&deLinkID=638681&onBaseDocumentNumber=18-08123", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69886", - "citations": "2018 NV 10", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-01", - "case_names": "Jeremias v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35430&csIID=35430&deLinkID=638674&onBaseDocumentNumber=18-08116", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67228", - "citations": "2018 NV 8", - "case_name_shorts": "Jeremias" - }, - { - "case_dates": "2018-03-01", - "case_names": "Dezzani v. Kern & Assocs., Ltd.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37622&csIID=37622&deLinkID=638679&onBaseDocumentNumber=18-08121", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69410", - "citations": "2018 NV 9", - "case_name_shorts": "Dezzani" - }, - { - "case_dates": "2018-03-01", - "case_names": "Andrews v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40431&csIID=40431&deLinkID=638687&onBaseDocumentNumber=18-08129", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71214", - "citations": "2018 NV 12", - "case_name_shorts": "Andrews" - }, - { - "case_dates": "2018-02-27", - "case_names": "Las Vegas Review-Journal v. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45310&csIID=45310&deLinkID=638280&onBaseDocumentNumber=18-07722", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75073", - "citations": "2018 NV 7", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-15", - "case_names": "Felton v. Douglas County", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38714&csIID=38714&deLinkID=636710&onBaseDocumentNumber=18-06184", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70497", - "citations": "2018 NV 6", - "case_name_shorts": "Felton" - }, - { - "case_dates": "2018-02-08", - "case_names": "Quinn v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44753&csIID=44753&deLinkID=635695&onBaseDocumentNumber=18-05208", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74519", - "citations": "2018 NV 5", - "case_name_shorts": "Quinn" - }, - { - "case_dates": "2018-02-01", - "case_names": "SFR Invs. Pool 1 v. First Horizon", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40545&csIID=40545&deLinkID=634801&onBaseDocumentNumber=18-04361", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71325", - "citations": "2018 NV 4", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-01", - "case_names": "Castillo v. United Fed. Credit Union", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38365&csIID=38365&deLinkID=634793&onBaseDocumentNumber=18-04353", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70151", - "citations": "2018 NV 3", - "case_name_shorts": "Castillo" - }, - { - "case_dates": "2018-01-11", - "case_names": "Okada v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44559&csIID=44559&deLinkID=631761&onBaseDocumentNumber=18-01501", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74326", - "citations": "2018 NV 2", - "case_name_shorts": "Okada" - }, - { - "case_dates": "2018-01-04", - "case_names": "Heat & Frost Insulators v. Labor Comm'r", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42070&csIID=42070&deLinkID=630617&onBaseDocumentNumber=18-00371", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71848", - "citations": "2018 NV 1", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-28", - "case_names": "Soro v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=50217&csIID=50217&deLinkID=683173&onBaseDocumentNumber=17-90273", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72086-COA", - "citations": "2017 NV 107", - "case_name_shorts": "Soro" - }, - { - "case_dates": "2017-12-28", - "case_names": "Segovia v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42641&csIID=42641&deLinkID=629836&onBaseDocumentNumber=17-44726", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72416", - "citations": "2017 NV 112", - "case_name_shorts": "Segovia" - }, - { - "case_dates": "2017-12-28", - "case_names": "Rodriguez v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42142&csIID=42142&deLinkID=629826&onBaseDocumentNumber=17-44716", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71920", - "citations": "2017 NV 110", - "case_name_shorts": "Rodriguez" - }, - { - "case_dates": "2017-12-28", - "case_names": "Peck v. Zipf", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36873&csIID=36873&deLinkID=629818&onBaseDocumentNumber=17-44708", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68664", - "citations": "2017 NV 108", - "case_name_shorts": "Peck" - }, - { - "case_dates": "2017-12-28", - "case_names": "McCrosky v. Carson Tahoe Reg'l Med. Ctr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38540&csIID=38540&deLinkID=629840&onBaseDocumentNumber=17-44730", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70325", - "citations": "2017 NV 115", - "case_name_shorts": "McCrosky" - }, - { - "case_dates": "2017-12-28", - "case_names": "Jefferson v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=50459&csIID=50459&deLinkID=683169&onBaseDocumentNumber=17-90272", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70732-COA", - "citations": "2017 NV 105", - "case_name_shorts": "Jefferson" - }, - { - "case_dates": "2017-12-28", - "case_names": "Jackson v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=50401&csIID=50401&deLinkID=683170&onBaseDocumentNumber=17-90272", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70870-COA", - "citations": "2017 NV 106", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-28", - "case_names": "Hawkins v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=41981&csIID=41981&deLinkID=629824&onBaseDocumentNumber=17-44714", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71759", - "citations": "2017 NV 109", - "case_name_shorts": "Hawkins" - }, - { - "case_dates": "2017-12-28", - "case_names": "Brown v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43176&csIID=43176&deLinkID=629838&onBaseDocumentNumber=17-44728", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72950", - "citations": "2017 NV 113", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2017-12-28", - "case_names": "Boca Park Marketplace v. Higco, Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40302&csIID=40302&deLinkID=629839&onBaseDocumentNumber=17-44729", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71085", - "citations": "2017 NV 114", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-26", - "case_names": "Franchise Tax Bd. of Cal. v. Hyatt", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=21034&csIID=21034&deLinkID=629527&onBaseDocumentNumber=17-44422", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "53264", - "citations": "2017 NV 102", - "case_name_shorts": "Hyatt" - }, - { - "case_dates": "2017-12-26", - "case_names": "Arcella v. Arcella", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40725&csIID=40725&deLinkID=629531&onBaseDocumentNumber=17-44426", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71503", - "citations": "2017 NV 104", - "case_name_shorts": "Arcella" - }, - { - "case_dates": "2017-12-21", - "case_names": "Archon Corp. v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42024&csIID=42024&deLinkID=629151&onBaseDocumentNumber=17-44047", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71802", - "citations": "2017 NV 101", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-14", - "case_names": "State, Dep't of Health v. Samantha Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40340&csIID=40340&deLinkID=628141&onBaseDocumentNumber=17-43086", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71123", - "citations": "2017 NV 100", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-14", - "case_names": "Shue v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35630&csIID=35630&deLinkID=628139&onBaseDocumentNumber=17-43084", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67428", - "citations": "2017 NV 99", - "case_name_shorts": "Shue" - }, - { - "case_dates": "2017-12-07", - "case_names": "Neville v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=39913&csIID=39913&deLinkID=627127&onBaseDocumentNumber=17-42101", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70696", - "citations": "2017 NV 95", - "case_name_shorts": "Neville" - }, - { - "case_dates": "2017-12-07", - "case_names": "Mullner v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40247&csIID=40247&deLinkID=627138&onBaseDocumentNumber=17-42112", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71030", - "citations": "2017 NV 98", - "case_name_shorts": "Mullner" - }, - { - "case_dates": "2017-12-07", - "case_names": "In re Parental Rights as to T.L.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42788&csIID=42788&deLinkID=627133&onBaseDocumentNumber=17-42107", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72563", - "citations": "2017 NV 97", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-07", - "case_names": "Doe v. Nevada Legislature, 77th Session", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38015&csIID=38015&deLinkID=627121&onBaseDocumentNumber=17-42095", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69801", - "citations": "2017 NV 93", - "case_name_shorts": "Doe" - }, - { - "case_dates": "2017-12-07", - "case_names": "Agwara v. State Bar of Nevada", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40105&csIID=40105&deLinkID=627130&onBaseDocumentNumber=17-42104", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70888", - "citations": "2017 NV 96", - "case_name_shorts": "Agwara" - }, - { - "case_dates": "2017-12-07", - "case_names": "Abid v. Abid", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38209&csIID=38209&deLinkID=627124&onBaseDocumentNumber=17-42098", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69995", - "citations": "2017 NV 94", - "case_name_shorts": "Abid" - }, - { - "case_dates": "2017-11-22", - "case_names": "Yu v. Yu", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38563&csIID=38563&deLinkID=625290&onBaseDocumentNumber=17-40349", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70348", - "citations": "2017 NV 90", - "case_name_shorts": "Yu" - }, - { - "case_dates": "2017-11-22", - "case_names": "Nationstar Mortg. v. Saticoy Bay LLC", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38598&csIID=38598&deLinkID=625450&onBaseDocumentNumber=17-40459", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70382", - "citations": "2017 NV 91", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-22", - "case_names": "Gardner v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40040&csIID=40040&deLinkID=625287&onBaseDocumentNumber=17-40346", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70823", - "citations": "2017 NV 89", - "case_name_shorts": "Gardner" - }, - { - "case_dates": "2017-11-22", - "case_names": "Collins v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37480&csIID=37480&deLinkID=625283&onBaseDocumentNumber=17-40342", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69269", - "citations": "2017 NV 88", - "case_name_shorts": "Collins" - }, - { - "case_dates": "2017-11-22", - "case_names": "Bradley v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38740&csIID=38740&deLinkID=625320&onBaseDocumentNumber=17-40357", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70522", - "citations": "2017 NV 92", - "case_name_shorts": "Bradley" - }, - { - "case_dates": "2017-11-16", - "case_names": "Sierra PackG\u00c7\u00d6g v. Chief Ad. OffG\u00c7\u00d6r of NOSHA", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=50433&csIID=50433&deLinkID=682851&onBaseDocumentNumber=17-90241", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71130-COA", - "citations": "2017 NV 83", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-16", - "case_names": "Knickmeyer v. State of Nevada", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=50578&csIID=50578&deLinkID=682854&onBaseDocumentNumber=17-90242", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71372-COA", - "citations": "2017 NV 84", - "case_name_shorts": "Knickmeyer" - }, - { - "case_dates": "2017-11-16", - "case_names": "In re Discipline of Reade", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40206&csIID=40206&deLinkID=624420&onBaseDocumentNumber=17-39493", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70989", - "citations": "2017 NV 87", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-16", - "case_names": "Harris v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=50274&csIID=50274&deLinkID=682855&onBaseDocumentNumber=17-90242", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70679-COA", - "citations": "2017 NV 85", - "case_name_shorts": "Harris" - }, - { - "case_dates": "2017-11-16", - "case_names": "Farmer v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34132&csIID=34132&deLinkID=624416&onBaseDocumentNumber=17-39489", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65935", - "citations": "2017 NV 86", - "case_name_shorts": "Farmer" - }, - { - "case_dates": "2017-11-16", - "case_names": "City of Las Vegas v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=41859&csIID=41859&deLinkID=624413&onBaseDocumentNumber=17-39486", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71637", - "citations": "2017 NV 82", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-09", - "case_names": "Alotaibi v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35582&csIID=35582&deLinkID=623463&onBaseDocumentNumber=17-38584", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67380", - "citations": "2017 NV 81", - "case_name_shorts": "Alotaibi" - }, - { - "case_dates": "2017-10-26", - "case_names": "Szymborski v. Spring Mtn. Treatment Ctr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34596&csIID=34596&deLinkID=621594&onBaseDocumentNumber=17-36853", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66398", - "citations": "2017 NV 80", - "case_name_shorts": "Szymborski" - }, - { - "case_dates": "2017-10-26", - "case_names": "Clark Cty. Sch. Dist. v. Payo", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36652&csIID=36652&deLinkID=621592&onBaseDocumentNumber=17-36851", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68443", - "citations": "2017 NV 79", - "case_name_shorts": "Payo" - }, - { - "case_dates": "2017-10-05", - "case_names": "Williams v. State, Dep't of Corrections", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40256&csIID=40256&deLinkID=618503&onBaseDocumentNumber=17-33802", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71039", - "citations": "2017 NV 75", - "case_name_shorts": "" - }, - { - "case_dates": "2017-10-05", - "case_names": "Sweat v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40327&csIID=40327&deLinkID=618505&onBaseDocumentNumber=17-33804", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71110", - "citations": "2017 NV 76", - "case_name_shorts": "Sweat" - }, - { - "case_dates": "2017-10-05", - "case_names": "Mendenhall v. Tassinari", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36260&csIID=36260&deLinkID=618590&onBaseDocumentNumber=17-33889", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68053", - "citations": "2017 NV 78", - "case_name_shorts": "Mendenhall" - }, - { - "case_dates": "2017-10-05", - "case_names": "Johnson v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33360&csIID=33360&deLinkID=618500&onBaseDocumentNumber=17-33799", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65168", - "citations": "2017 NV 73", - "case_name_shorts": "" - }, - { - "case_dates": "2017-10-05", - "case_names": "In re Parental Rights as to A.D.L.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37257&csIID=37257&deLinkID=618499&onBaseDocumentNumber=17-33798", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69047", - "citations": "2017 NV 72", - "case_name_shorts": "" - }, - { - "case_dates": "2017-10-05", - "case_names": "Humphries v. N.Y.-N.Y. Hotel & Casino", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33509&csIID=33509&deLinkID=618507&onBaseDocumentNumber=17-33806", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65316", - "citations": "2017 NV 77", - "case_name_shorts": "Humphries" - }, - { - "case_dates": "2017-10-05", - "case_names": "Fredianelli v. Price", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38206&csIID=38206&deLinkID=618502&onBaseDocumentNumber=17-33801", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69992", - "citations": "2017 NV 74", - "case_name_shorts": "Fredianelli" - }, - { - "case_dates": "2017-09-27", - "case_names": "State, DOT v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38312&csIID=38312&deLinkID=617498&onBaseDocumentNumber=17-32853", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70098", - "citations": "2017 NV 70", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-27", - "case_names": "State Engineer v. Eureka County", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38371&csIID=38371&deLinkID=617500&onBaseDocumentNumber=17-32855", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70157", - "citations": "2017 NV 71", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-27", - "case_names": "High Noon HOA v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33649&csIID=33649&deLinkID=617482&onBaseDocumentNumber=17-32837", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65456", - "citations": "2017 NV 66", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-27", - "case_names": "Gordon v. Geiger", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36162&csIID=36162&deLinkID=617493&onBaseDocumentNumber=17-32848", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67955", - "citations": "2017 NV 69", - "case_name_shorts": "Gordon" - }, - { - "case_dates": "2017-09-27", - "case_names": "Ford Motor Co. v. Trejo", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36050&csIID=36050&deLinkID=617489&onBaseDocumentNumber=17-32844", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67843", - "citations": "2017 NV 68", - "case_name_shorts": "Trejo" - }, - { - "case_dates": "2017-09-27", - "case_names": "Adelson v. Harris", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35321&csIID=35321&deLinkID=617483&onBaseDocumentNumber=17-32838", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67120", - "citations": "2017 NV 67", - "case_name_shorts": "Adelson" - }, - { - "case_dates": "2017-09-14", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37943&csIID=37943&deLinkID=615656&onBaseDocumentNumber=17-31069", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69729", - "citations": "2017 NV 61", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2017-09-14", - "case_names": "Thomas v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37284&csIID=37284&deLinkID=615680&onBaseDocumentNumber=17-31093", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69074", - "citations": "2017 NV 63", - "case_name_shorts": "Thomas" - }, - { - "case_dates": "2017-09-14", - "case_names": "Prop. Plus Invs. v. Mortg. Elec. Reg. Sys.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37282&csIID=37282&deLinkID=615660&onBaseDocumentNumber=17-31073", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69072", - "citations": "2017 NV 62", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-14", - "case_names": "Parametric Sound v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34888&csIID=34888&deLinkID=615648&onBaseDocumentNumber=17-31061", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66689", - "citations": "2017 NV 59", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-14", - "case_names": "Paliotta v. State, Dep't of Corrections", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34863&csIID=34863&deLinkID=615646&onBaseDocumentNumber=17-31059", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66664", - "citations": "2017 NV 58", - "case_name_shorts": "Paliotta" - }, - { - "case_dates": "2017-09-14", - "case_names": "O.P.H. of Las Vegas v. Or. Mut. Ins. Co.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36752&csIID=36752&deLinkID=615652&onBaseDocumentNumber=17-31065", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68543", - "citations": "2017 NV 60", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-14", - "case_names": "In re DISH Network Derivative Litigation", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37222&csIID=37222&deLinkID=615656&onBaseDocumentNumber=17-31069", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69012", - "citations": "2017 NV 61", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-14", - "case_names": "Facklam v. HSBC Bank USA", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40003&csIID=40003&deLinkID=615682&onBaseDocumentNumber=17-31095", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70786", - "citations": "2017 NV 65", - "case_name_shorts": "Facklam" - }, - { - "case_dates": "2017-09-14", - "case_names": "Ditech Financial v. Buckles", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38691&csIID=38691&deLinkID=615681&onBaseDocumentNumber=17-31094", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70475", - "citations": "2017 NV 64", - "case_name_shorts": "Buckles" - }, - { - "case_dates": "2017-08-03", - "case_names": "Rural Tel. Co. v. Pub. Utils. Comm'n", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37824&csIID=37824&deLinkID=610179&onBaseDocumentNumber=17-25807", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69612", - "citations": "2017 NV 53", - "case_name_shorts": "" - }, - { - "case_dates": "2017-08-03", - "case_names": "LN Mgmt. LLC v. Green Tree Servicing", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37689&csIID=37689&deLinkID=610181&onBaseDocumentNumber=17-25809", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69477", - "citations": "2017 NV 55", - "case_name_shorts": "" - }, - { - "case_dates": "2017-08-03", - "case_names": "Gardner v. Henderson Water Park, LLC", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=41874&csIID=41874&deLinkID=610180&onBaseDocumentNumber=17-25808", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71652", - "citations": "2017 NV 54", - "case_name_shorts": "Gardner" - }, - { - "case_dates": "2017-08-03", - "case_names": "City of Sparks v. Reno Newspapers", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37963&csIID=37963&deLinkID=610182&onBaseDocumentNumber=17-25810", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69749", - "citations": "2017 NV 56", - "case_name_shorts": "" - }, - { - "case_dates": "2017-07-27", - "case_names": "Wynn Resorts v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38668&csIID=38668&deLinkID=609249&onBaseDocumentNumber=17-24949", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70452", - "citations": "2017 NV 52", - "case_name_shorts": "" - }, - { - "case_dates": "2017-07-27", - "case_names": "Wynn Resorts v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38264&csIID=38264&deLinkID=609241&onBaseDocumentNumber=17-24941", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70050", - "citations": "2017 NV 52", - "case_name_shorts": "" - }, - { - "case_dates": "2017-07-27", - "case_names": "S. Cal. Edison v. State, Dep't of Taxation", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35701&csIID=35701&deLinkID=609221&onBaseDocumentNumber=17-24921", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67497", - "citations": "2017 NV 49", - "case_name_shorts": "" - }, - { - "case_dates": "2017-07-27", - "case_names": "Renfroe v. Lakeview Loan Servicing", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37117&csIID=37117&deLinkID=609225&onBaseDocumentNumber=17-24925", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68907", - "citations": "2017 NV 50", - "case_name_shorts": "Renfroe" - }, - { - "case_dates": "2017-07-27", - "case_names": "K&P Homes v. Christiana Trust", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38180&csIID=38180&deLinkID=609228&onBaseDocumentNumber=17-24928", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69966", - "citations": "2017 NV 51", - "case_name_shorts": "" - }, - { - "case_dates": "2017-07-27", - "case_names": "Desai v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32779&csIID=32779&deLinkID=609218&onBaseDocumentNumber=17-24918", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64591", - "citations": "2017 NV 48", - "case_name_shorts": "Desai" - }, - { - "case_dates": "2017-07-06", - "case_names": "Jeffries v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36547&csIID=36547&deLinkID=605438&onBaseDocumentNumber=17-22230", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68338", - "citations": "2017 NV 47", - "case_name_shorts": "Jeffries" - }, - { - "case_dates": "2017-07-06", - "case_names": "Hefetz v. Beavor", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38542&csIID=38542&deLinkID=605435&onBaseDocumentNumber=17-22227", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70327", - "citations": "2017 NV 46", - "case_name_shorts": "Hefetz" - }, - { - "case_dates": "2017-06-29", - "case_names": "Washoe Cty. Sch. Dist. v. White", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37596&csIID=37596&deLinkID=604847&onBaseDocumentNumber=17-21680", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69385", - "citations": "2017 NV 43", - "case_name_shorts": "White" - }, - { - "case_dates": "2017-06-29", - "case_names": "Rawson v. Ninth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=41769&csIID=41769&deLinkID=604856&onBaseDocumentNumber=17-21689", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71548", - "citations": "2017 NV 44", - "case_name_shorts": "Rawson" - }, - { - "case_dates": "2017-06-29", - "case_names": "Malfitano v. County of Storey", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38269&csIID=38269&deLinkID=604840&onBaseDocumentNumber=17-21673", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70055", - "citations": "2017 NV 40", - "case_name_shorts": "Malfitano" - }, - { - "case_dates": "2017-06-29", - "case_names": "In re Parental Rights as to R.T.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38425&csIID=38425&deLinkID=604835&onBaseDocumentNumber=17-21668", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70210", - "citations": "2017 NV 38", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-29", - "case_names": "Delucchi v. Songer", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37204&csIID=37204&deLinkID=604846&onBaseDocumentNumber=17-21679", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68994", - "citations": "2017 NV 42", - "case_name_shorts": "Delucchi" - }, - { - "case_dates": "2017-06-29", - "case_names": "Comm'n on Ethics v. Hansen", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37310&csIID=37310&deLinkID=604838&onBaseDocumentNumber=17-21671", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69100", - "citations": "2017 NV 39", - "case_name_shorts": "Hansen" - }, - { - "case_dates": "2017-06-29", - "case_names": "Brioady v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38526&csIID=38526&deLinkID=604845&onBaseDocumentNumber=17-21678", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70311", - "citations": "2017 NV 41", - "case_name_shorts": "Brioady" - }, - { - "case_dates": "2017-06-29", - "case_names": "Anselmo v. Bisbee", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35826&csIID=35826&deLinkID=604867&onBaseDocumentNumber=17-21700", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67619", - "citations": "2017 NV 45", - "case_name_shorts": "Anselmo" - }, - { - "case_dates": "2017-06-22", - "case_names": "Vaile v. Vaile", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=29582&csIID=29582&deLinkID=603843&onBaseDocumentNumber=17-20696", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61415", - "citations": "2017 NV 30", - "case_name_shorts": "Vaile" - }, - { - "case_dates": "2017-06-22", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30979&csIID=30979&deLinkID=603843&onBaseDocumentNumber=17-20696", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62797", - "citations": "2017 NV 30", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2017-06-22", - "case_names": "Pizarro-Ortega v. Cervantes-Lopez", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36680&csIID=36680&deLinkID=603865&onBaseDocumentNumber=17-20718", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68471", - "citations": "2017 NV 37", - "case_name_shorts": "Pizarro-Ortega" - }, - { - "case_dates": "2017-06-22", - "case_names": "Pimentel v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36919&csIID=36919&deLinkID=603845&onBaseDocumentNumber=17-20698", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68710", - "citations": "2017 NV 31", - "case_name_shorts": "Pimentel" - }, - { - "case_dates": "2017-06-22", - "case_names": "Nguyen v. Boynes", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37377&csIID=37377&deLinkID=603846&onBaseDocumentNumber=17-20699", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69166", - "citations": "2017 NV 32", - "case_name_shorts": "Nguyen" - }, - { - "case_dates": "2017-06-22", - "case_names": "Nationstar Mortg. v. SFR Invs. Pool 1", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37612&csIID=37612&deLinkID=603848&onBaseDocumentNumber=17-20701", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69400", - "citations": "2017 NV 34", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-22", - "case_names": "City of Henderson v. Amado", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38717&csIID=38717&deLinkID=603861&onBaseDocumentNumber=17-20714", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70500", - "citations": "2017 NV 36", - "case_name_shorts": "Amado" - }, - { - "case_dates": "2017-06-22", - "case_names": "Bertsch v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37592&csIID=37592&deLinkID=603847&onBaseDocumentNumber=17-20700", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69381", - "citations": "2017 NV 33", - "case_name_shorts": "Bertsch" - }, - { - "case_dates": "2017-06-22", - "case_names": "Bd. of Review v. Second Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37711&csIID=37711&deLinkID=603853&onBaseDocumentNumber=17-20706", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69499", - "citations": "2017 NV 35", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-01", - "case_names": "Sargeant v. Henderson Taxi", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37987&csIID=37987&deLinkID=601181&onBaseDocumentNumber=17-18192", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69773", - "citations": "2017 NV 27", - "case_name_shorts": "Sargeant" - }, - { - "case_dates": "2017-06-01", - "case_names": "O'Neal v. Hudson", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38662&csIID=38662&deLinkID=601187&onBaseDocumentNumber=17-18198", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70446", - "citations": "2017 NV 29", - "case_name_shorts": "O'Neal" - }, - { - "case_dates": "2017-06-01", - "case_names": "A.J. v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38333&csIID=38333&deLinkID=601182&onBaseDocumentNumber=17-18193", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70119", - "citations": "2017 NV 28", - "case_name_shorts": "A.J." - }, - { - "case_dates": "2017-05-25", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36501&csIID=36501&deLinkID=600497&onBaseDocumentNumber=17-17511", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68292", - "citations": "2017 NV 24", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2017-05-25", - "case_names": "Klabacka v. Nelson", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34972&csIID=34972&deLinkID=600497&onBaseDocumentNumber=17-17511", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66772", - "citations": "2017 NV 24", - "case_name_shorts": "Klabacka" - }, - { - "case_dates": "2017-05-25", - "case_names": "In re Davis Family Heritage Trust", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37158&csIID=37158&deLinkID=600501&onBaseDocumentNumber=17-17515", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68948", - "citations": "2017 NV 26", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-25", - "case_names": "In re Davis Family Heritage Trust", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36751&csIID=36751&deLinkID=600501&onBaseDocumentNumber=17-17515", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68542", - "citations": "2017 NV 26", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-25", - "case_names": "In re D.T.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30182&csIID=30182&deLinkID=600495&onBaseDocumentNumber=17-17509", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62009", - "citations": "2017 NV 23", - "case_name_shorts": "In re D.T." - }, - { - "case_dates": "2017-05-25", - "case_names": "Iliescu v. Steppan", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36555&csIID=36555&deLinkID=600500&onBaseDocumentNumber=17-17514", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68346", - "citations": "2017 NV 25", - "case_name_shorts": "Iliescu" - }, - { - "case_dates": "2017-05-11", - "case_names": "In re Parental Rights as to M.M.L.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37421&csIID=37421&deLinkID=598685&onBaseDocumentNumber=17-15751", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69210", - "citations": "2017 NV 21", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-11", - "case_names": "In re Discipline of Treffinger", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38357&csIID=38357&deLinkID=598697&onBaseDocumentNumber=17-15763", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70143", - "citations": "2017 NV 22", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36253&csIID=36253&deLinkID=597673&onBaseDocumentNumber=17-14811", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68046", - "citations": "2017 NV 19", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2017-05-04", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35989&csIID=35989&deLinkID=597673&onBaseDocumentNumber=17-14811", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67782", - "citations": "2017 NV 19", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2017-05-04", - "case_names": "Stewart v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38283&csIID=38283&deLinkID=597674&onBaseDocumentNumber=17-14812", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70069", - "citations": "2017 NV 20", - "case_name_shorts": "Stewart" - }, - { - "case_dates": "2017-05-04", - "case_names": "In re Connell Living Trust", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34429&csIID=34429&deLinkID=597673&onBaseDocumentNumber=17-14811", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66231", - "citations": "2017 NV 19", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-27", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38175&csIID=38175&deLinkID=596791&onBaseDocumentNumber=17-13952", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69961", - "citations": "2017 NV 18", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2017-04-27", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38153&csIID=38153&deLinkID=596791&onBaseDocumentNumber=17-13952", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69939", - "citations": "2017 NV 18", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2017-04-27", - "case_names": "Solid v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40306&csIID=40306&deLinkID=596790&onBaseDocumentNumber=17-13951", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71089", - "citations": "2017 NV 17", - "case_name_shorts": "Solid" - }, - { - "case_dates": "2017-04-27", - "case_names": "Pub. Employees' Ret. Sys. of Nev. v. Gitter", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37419&csIID=37419&deLinkID=596791&onBaseDocumentNumber=17-13952", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69208", - "citations": "2017 NV 18", - "case_name_shorts": "Gitter" - }, - { - "case_dates": "2017-04-13", - "case_names": "Ramsey v. City of N. Las Vegas", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36659&csIID=36659&deLinkID=595010&onBaseDocumentNumber=17-12192", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68450", - "citations": "2017 NV 16", - "case_name_shorts": "Ramsey" - }, - { - "case_dates": "2017-04-13", - "case_names": "Petit v. Adrianzen", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34764&csIID=34764&deLinkID=595009&onBaseDocumentNumber=17-12191", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66565", - "citations": "2017 NV 15", - "case_name_shorts": "Petit" - }, - { - "case_dates": "2017-04-06", - "case_names": "TRP Int'l v. Proimtu MMI", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40619&csIID=40619&deLinkID=594147&onBaseDocumentNumber=17-11411", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71398", - "citations": "2017 NV 13", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-06", - "case_names": "New Horizon Kids Quest III v. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38134&csIID=38134&deLinkID=594148&onBaseDocumentNumber=17-11412", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69920", - "citations": "2017 NV 14", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-06", - "case_names": "Att'y Gen. v. Justice Ct. (Escalante)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40012&csIID=40012&deLinkID=594146&onBaseDocumentNumber=17-11410", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70795", - "citations": "2017 NV 12", - "case_name_shorts": "" - }, - { - "case_dates": "2017-03-30", - "case_names": "Renteria-Novoa v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36447&csIID=36447&deLinkID=593278&onBaseDocumentNumber=17-10574", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68239", - "citations": "2017 NV 11", - "case_name_shorts": "Renteria-Novoa" - }, - { - "case_dates": "2017-03-16", - "case_names": "Western Cab Co. v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37620&csIID=37620&deLinkID=591480&onBaseDocumentNumber=17-08814", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69408", - "citations": "2017 NV 10", - "case_name_shorts": "" - }, - { - "case_dates": "2017-03-02", - "case_names": "Simmons v. Briones", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37270&csIID=37270&deLinkID=589686&onBaseDocumentNumber=17-07094", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69060", - "citations": "2017 NV 9", - "case_name_shorts": "Simmons" - }, - { - "case_dates": "2017-03-02", - "case_names": "In re Frei Irrevocable Trust", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36236&csIID=36236&deLinkID=589685&onBaseDocumentNumber=17-07093", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68029", - "citations": "2017 NV 8", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-16", - "case_names": "Righetti v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38809&csIID=38809&deLinkID=588083&onBaseDocumentNumber=17-05511", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70591", - "citations": "2017 NV 7", - "case_name_shorts": "Righetti" - }, - { - "case_dates": "2017-02-02", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35803&csIID=35803&deLinkID=586202&onBaseDocumentNumber=17-03797", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67596", - "citations": "2017 NV 6", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2017-02-02", - "case_names": "Shapiro v. Welt", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35565&csIID=35565&deLinkID=586202&onBaseDocumentNumber=17-03797", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67363", - "citations": "2017 NV 6", - "case_name_shorts": "Shapiro" - }, - { - "case_dates": "2017-01-26", - "case_names": "Village League v. State, Bd. of Equalization", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31766&csIID=31766&deLinkID=585258&onBaseDocumentNumber=17-02861", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63581", - "citations": "2017 NV 1", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-26", - "case_names": "Saticoy Bay LLC v. Wells Fargo", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36839&csIID=36839&deLinkID=585262&onBaseDocumentNumber=17-02865", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68630", - "citations": "2017 NV 5", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-26", - "case_names": "Saticoy Bay LLC v. JPMorgan Chase Bank", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36640&csIID=36640&deLinkID=585260&onBaseDocumentNumber=17-02863", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68431", - "citations": "2017 NV 3", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-26", - "case_names": "Poremba v. S. Nev. Paving", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35088&csIID=35088&deLinkID=585259&onBaseDocumentNumber=17-02862", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66888", - "citations": "2017 NV 2", - "case_name_shorts": "Poremba" - }, - { - "case_dates": "2017-01-26", - "case_names": "In re Davis Family Heritage Trust", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37158&csIID=37158&deLinkID=585261&onBaseDocumentNumber=17-02864", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68948", - "citations": "2017 NV 4", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-26", - "case_names": "In re Davis Family Heritage Trust", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36751&csIID=36751&deLinkID=585261&onBaseDocumentNumber=17-02864", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68542", - "citations": "2017 NV 4", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-29", - "case_names": "Leavitt v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37429&csIID=37429&deLinkID=582018&onBaseDocumentNumber=16-40396", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69218", - "citations": "2016 NV 83", - "case_name_shorts": "Leavitt" - }, - { - "case_dates": "2016-12-29", - "case_names": "Estate of Adams v. Fallini", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36240&csIID=36240&deLinkID=582010&onBaseDocumentNumber=16-40388", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68033", - "citations": "2016 NV 81", - "case_name_shorts": "Fallini" - }, - { - "case_dates": "2016-12-29", - "case_names": "Dykema v. Del Webb Communities, Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37546&csIID=37546&deLinkID=582012&onBaseDocumentNumber=16-40390", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69335", - "citations": "2016 NV 82", - "case_name_shorts": "Dykema" - }, - { - "case_dates": "2016-12-01", - "case_names": "Kaplan v. Dutra", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37275&csIID=37275&deLinkID=578656&onBaseDocumentNumber=16-37133", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69065", - "citations": "2016 NV 80", - "case_name_shorts": "Kaplan" - }, - { - "case_dates": "2016-11-23", - "case_names": "Mayo v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37778&csIID=37778&deLinkID=577938&onBaseDocumentNumber=16-36488", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69566", - "citations": "2016 NV 79", - "case_name_shorts": "Mayo" - }, - { - "case_dates": "2016-11-03", - "case_names": "Pac. W. Bank v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37258&csIID=37258&deLinkID=574590&onBaseDocumentNumber=16-34256", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69048", - "citations": "2016 NV 78", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-27", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37054&csIID=37054&deLinkID=573917&onBaseDocumentNumber=16-33623", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68845", - "citations": "2016 NV 76", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-10-27", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36979&csIID=36979&deLinkID=573917&onBaseDocumentNumber=16-33623", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68770", - "citations": "2016 NV 76", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-10-27", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36963&csIID=36963&deLinkID=573917&onBaseDocumentNumber=16-33623", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68754", - "citations": "2016 NV 76", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-10-27", - "case_names": "Perry v. Terrible Herbst, Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36237&csIID=36237&deLinkID=573916&onBaseDocumentNumber=16-33622", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68030", - "citations": "2016 NV 75", - "case_name_shorts": "Perry" - }, - { - "case_dates": "2016-10-27", - "case_names": "Nev. Yellow Cab v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37185&csIID=37185&deLinkID=573921&onBaseDocumentNumber=16-33627", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68975", - "citations": "2016 NV 77", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-27", - "case_names": "Nev. Yellow Cab v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37159&csIID=37159&deLinkID=573924&onBaseDocumentNumber=16-33630", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68949", - "citations": "2016 NV 77", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-27", - "case_names": "MDC Rests. v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36732&csIID=36732&deLinkID=573917&onBaseDocumentNumber=16-33623", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68523", - "citations": "2016 NV 76", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-27", - "case_names": "Bowman v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35863&csIID=35863&deLinkID=573915&onBaseDocumentNumber=16-33621", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67656", - "citations": "2016 NV 74", - "case_name_shorts": "Bowman" - }, - { - "case_dates": "2016-09-29", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34650&csIID=34650&deLinkID=569522&onBaseDocumentNumber=16-30273", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66452", - "citations": "2016 NV 69", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-09-29", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34016&csIID=34016&deLinkID=569522&onBaseDocumentNumber=16-30273", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65819", - "citations": "2016 NV 69", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-09-29", - "case_names": "Sindelar v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36998&csIID=36998&deLinkID=569521&onBaseDocumentNumber=16-30272", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68789", - "citations": "2016 NV 68", - "case_name_shorts": "Sindelar" - }, - { - "case_dates": "2016-09-29", - "case_names": "Schwartz v. Lopez", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=38866&csIID=38866&deLinkID=569561&onBaseDocumentNumber=16-30308", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "70648", - "citations": "2016 NV 73", - "case_name_shorts": "Schwartz" - }, - { - "case_dates": "2016-09-29", - "case_names": "Schwartz v. Lopez", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37823&csIID=37823&deLinkID=569559&onBaseDocumentNumber=16-30306", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69611", - "citations": "2016 NV 73", - "case_name_shorts": "Schwartz" - }, - { - "case_dates": "2016-09-29", - "case_names": "Mona v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36643&csIID=36643&deLinkID=569546&onBaseDocumentNumber=16-30293", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68434", - "citations": "2016 NV 72", - "case_name_shorts": "Mona" - }, - { - "case_dates": "2016-09-29", - "case_names": "Johnson v. Wells Fargo Bank Nat'l Ass'n", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34291&csIID=34291&deLinkID=569523&onBaseDocumentNumber=16-30274", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66094", - "citations": "2016 NV 70", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-29", - "case_names": "Davidson v. Davidson", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35905&csIID=35905&deLinkID=569525&onBaseDocumentNumber=16-30276", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67698", - "citations": "2016 NV 71", - "case_name_shorts": "Davidson" - }, - { - "case_dates": "2016-09-29", - "case_names": "Cashman Equip. Co. v. W. Edna Assocs.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=29885&csIID=29885&deLinkID=569522&onBaseDocumentNumber=16-30273", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61715", - "citations": "2016 NV 69", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-15", - "case_names": "Mizrachi v. Mizrachi", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48880&csIID=48880&deLinkID=679958&onBaseDocumentNumber=16-90106", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66176-COA", - "citations": "2016 NV 66", - "case_name_shorts": "Mizrachi" - }, - { - "case_dates": "2016-09-15", - "case_names": "Manning v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34053&csIID=34053&deLinkID=567724&onBaseDocumentNumber=16-28613", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65856", - "citations": "2016 NV 67", - "case_name_shorts": "Manning" - }, - { - "case_dates": "2016-08-12", - "case_names": "Washington v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34195&csIID=34195&deLinkID=563038&onBaseDocumentNumber=16-25013", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65998", - "citations": "2016 NV 65", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-12", - "case_names": "Tower Homes v. Heaton", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33950&csIID=33950&deLinkID=563027&onBaseDocumentNumber=16-25002", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65755", - "citations": "2016 NV 62", - "case_name_shorts": "Heaton" - }, - { - "case_dates": "2016-08-12", - "case_names": "State v. Eighth Jud. Dist. Ct. (Schneider)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36754&csIID=36754&deLinkID=563019&onBaseDocumentNumber=16-24994", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68545", - "citations": "2016 NV 59", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-12", - "case_names": "McNamara v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32588&csIID=32588&deLinkID=563021&onBaseDocumentNumber=16-24996", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64403", - "citations": "2016 NV 60", - "case_name_shorts": "McNamara" - }, - { - "case_dates": "2016-08-12", - "case_names": "Martinez-Hernandez v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37380&csIID=37380&deLinkID=563026&onBaseDocumentNumber=16-25001", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69169", - "citations": "2016 NV 61", - "case_name_shorts": "Martinez-Hernandez" - }, - { - "case_dates": "2016-08-12", - "case_names": "Kar v. Kar", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34182&csIID=34182&deLinkID=563031&onBaseDocumentNumber=16-25006", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65985", - "citations": "2016 NV 63", - "case_name_shorts": "Kar" - }, - { - "case_dates": "2016-08-12", - "case_names": "Cornella v. Justice Court", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=24018&csIID=24018&deLinkID=563017&onBaseDocumentNumber=16-24992", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "56329", - "citations": "2016 NV 58", - "case_name_shorts": "Cornella" - }, - { - "case_dates": "2016-08-12", - "case_names": "Bank of Nevada v. Petersen", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34767&csIID=34767&deLinkID=563036&onBaseDocumentNumber=16-25011", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66568", - "citations": "2016 NV 64", - "case_name_shorts": "Petersen" - }, - { - "case_dates": "2016-08-04", - "case_names": "Fritz v. Washoe County", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35867&csIID=35867&deLinkID=562142&onBaseDocumentNumber=16-24150", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67660", - "citations": "2016 NV 57", - "case_name_shorts": "Fritz" - }, - { - "case_dates": "2016-07-28", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33364&csIID=33364&deLinkID=561333&onBaseDocumentNumber=16-23415", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65172", - "citations": "2016 NV 52", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-07-28", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33198&csIID=33198&deLinkID=561333&onBaseDocumentNumber=16-23415", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65007", - "citations": "2016 NV 52", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-07-28", - "case_names": "Nationstar Mortg. v. Rodriguez", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34961&csIID=34961&deLinkID=561343&onBaseDocumentNumber=16-23425", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66761", - "citations": "2016 NV 55", - "case_name_shorts": "Rodriguez" - }, - { - "case_dates": "2016-07-28", - "case_names": "McNeill v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34896&csIID=34896&deLinkID=561339&onBaseDocumentNumber=16-23421", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66697", - "citations": "2016 NV 54", - "case_name_shorts": "McNeill" - }, - { - "case_dates": "2016-07-28", - "case_names": "Khoury v. Seastrand", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32890&csIID=32890&deLinkID=561333&onBaseDocumentNumber=16-23415", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64702", - "citations": "2016 NV 52", - "case_name_shorts": "Khoury" - }, - { - "case_dates": "2016-07-28", - "case_names": "Humboldt Gen. Hosp. v. Sixth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33755&csIID=33755&deLinkID=561335&onBaseDocumentNumber=16-23417", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65562", - "citations": "2016 NV 53", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-28", - "case_names": "Harrison v. Harrison", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34354&csIID=34354&deLinkID=561352&onBaseDocumentNumber=16-23434", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66157", - "citations": "2016 NV 56", - "case_name_shorts": "Harrison" - }, - { - "case_dates": "2016-07-21", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35145&csIID=35145&deLinkID=560559&onBaseDocumentNumber=16-22644", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66944", - "citations": "2016 NV 50", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-07-21", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33690&csIID=33690&deLinkID=560555&onBaseDocumentNumber=16-22640", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65497", - "citations": "2016 NV 49", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-07-21", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32637&csIID=32637&deLinkID=560555&onBaseDocumentNumber=16-22640", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64452", - "citations": "2016 NV 49", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-07-21", - "case_names": "Grace v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37139&csIID=37139&deLinkID=560561&onBaseDocumentNumber=16-22646", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68929", - "citations": "2016 NV 51", - "case_name_shorts": "Grace" - }, - { - "case_dates": "2016-07-21", - "case_names": "Golden Rd. Motor Inn v. Islam", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32534&csIID=32534&deLinkID=560555&onBaseDocumentNumber=16-22640", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64349", - "citations": "2016 NV 49", - "case_name_shorts": "Islam" - }, - { - "case_dates": "2016-07-21", - "case_names": "Blankenship v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34315&csIID=34315&deLinkID=560559&onBaseDocumentNumber=16-22644", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66118", - "citations": "2016 NV 50", - "case_name_shorts": "Blankenship" - }, - { - "case_dates": "2016-06-30", - "case_names": "Scenic Nevada, Inc. v. City of Reno", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33557&csIID=33557&deLinkID=558261&onBaseDocumentNumber=16-20462", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65364", - "citations": "2016 NV 48", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-30", - "case_names": "Lewis v. Lewis", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34695&csIID=34695&deLinkID=558251&onBaseDocumentNumber=16-20452", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66497", - "citations": "2016 NV 46", - "case_name_shorts": "Lewis" - }, - { - "case_dates": "2016-06-30", - "case_names": "Justin v. Second Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35993&csIID=35993&deLinkID=558259&onBaseDocumentNumber=16-20460", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67786", - "citations": "2016 NV 47", - "case_name_shorts": "Justin" - }, - { - "case_dates": "2016-06-30", - "case_names": "In re Guardianship & Estate of Echevarria", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33791&csIID=33791&deLinkID=558250&onBaseDocumentNumber=16-20451", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65598", - "citations": "2016 NV 45", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-16", - "case_names": "Sparks v. Bare", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37283&csIID=37283&deLinkID=555587&onBaseDocumentNumber=16-18838", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69073", - "citations": "2016 NV 43", - "case_name_shorts": "Sparks" - }, - { - "case_dates": "2016-06-16", - "case_names": "Mason v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36037&csIID=36037&deLinkID=555586&onBaseDocumentNumber=16-18837", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67830", - "citations": "2016 NV 42", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-16", - "case_names": "Castaneda v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32702&csIID=32702&deLinkID=555588&onBaseDocumentNumber=16-18839", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64515", - "citations": "2016 NV 44", - "case_name_shorts": "Castaneda" - }, - { - "case_dates": "2016-06-02", - "case_names": "Harte v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35723&csIID=35723&deLinkID=553799&onBaseDocumentNumber=16-17122", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67519", - "citations": "2016 NV 40", - "case_name_shorts": "Harte" - }, - { - "case_dates": "2016-06-02", - "case_names": "Golightly & Vannah, PLLC v. TJ Allen, LLC", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36134&csIID=36134&deLinkID=553800&onBaseDocumentNumber=16-17123", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67927", - "citations": "2016 NV 41", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-26", - "case_names": "Valdez v. Aguilar", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35054&csIID=35054&deLinkID=553292&onBaseDocumentNumber=16-16621", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66854", - "citations": "2016 NV 37", - "case_name_shorts": "Valdez" - }, - { - "case_dates": "2016-05-26", - "case_names": "Griffith v. Gonzales-Alpizar", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35979&csIID=35979&deLinkID=553296&onBaseDocumentNumber=16-16625", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67772", - "citations": "2016 NV 38", - "case_name_shorts": "Griffith" - }, - { - "case_dates": "2016-05-26", - "case_names": "Badger v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36042&csIID=36042&deLinkID=553298&onBaseDocumentNumber=16-16627", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67835", - "citations": "2016 NV 39", - "case_name_shorts": "Badger" - }, - { - "case_dates": "2016-05-12", - "case_names": "Slade v. Caesars Entm't Corp.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30902&csIID=30902&deLinkID=551490&onBaseDocumentNumber=16-14889", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62720", - "citations": "2016 NV 36", - "case_name_shorts": "Slade" - }, - { - "case_dates": "2016-04-28", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35970&csIID=35970&deLinkID=549805&onBaseDocumentNumber=16-13318", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67763", - "citations": "2016 NV 31", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-04-28", - "case_names": "State v. Second Jud. Dist. Ct. (Ayden A.)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36685&csIID=36685&deLinkID=549808&onBaseDocumentNumber=16-13321", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68476", - "citations": "2016 NV 33", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-28", - "case_names": "Newman v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35963&csIID=35963&deLinkID=549805&onBaseDocumentNumber=16-13318", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67756", - "citations": "2016 NV 31", - "case_name_shorts": "Newman" - }, - { - "case_dates": "2016-04-28", - "case_names": "Kelley v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35984&csIID=35984&deLinkID=549806&onBaseDocumentNumber=16-13319", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67777", - "citations": "2016 NV 32", - "case_name_shorts": "Kelley" - }, - { - "case_dates": "2016-04-28", - "case_names": "Horizons at Seven Hills v. Ikon Holdings", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31361&csIID=31361&deLinkID=549811&onBaseDocumentNumber=16-13324", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63178", - "citations": "2016 NV 35", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-28", - "case_names": "Anderson v. Sanchez", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30232&csIID=30232&deLinkID=549810&onBaseDocumentNumber=16-13323", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62059", - "citations": "2016 NV 34", - "case_name_shorts": "Anderson" - }, - { - "case_dates": "2016-04-21", - "case_names": "Taylor v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33581&csIID=33581&deLinkID=548899&onBaseDocumentNumber=16-12414", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65388", - "citations": "2016 NV 27", - "case_name_shorts": "Taylor" - }, - { - "case_dates": "2016-04-21", - "case_names": "Schofield v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33386&csIID=33386&deLinkID=548898&onBaseDocumentNumber=16-12413", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65193", - "citations": "2016 NV 26", - "case_name_shorts": "Schofield" - }, - { - "case_dates": "2016-04-21", - "case_names": "McClendon v. Collins", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34671&csIID=34671&deLinkID=548900&onBaseDocumentNumber=16-12415", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66473", - "citations": "2016 NV 28", - "case_name_shorts": "McClendon" - }, - { - "case_dates": "2016-04-21", - "case_names": "Grupo Famsa v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36835&csIID=36835&deLinkID=548902&onBaseDocumentNumber=16-12417", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68626", - "citations": "2016 NV 29", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-07", - "case_names": "Poremba v. S. Nev. Paving", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35088&csIID=35088&deLinkID=547251&onBaseDocumentNumber=16-10872", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66888", - "citations": "2016 NV 24", - "case_name_shorts": "Poremba" - }, - { - "case_dates": "2016-04-07", - "case_names": "Jackson v. Groenendyke", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35491&csIID=35491&deLinkID=547254&onBaseDocumentNumber=16-10875", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67289", - "citations": "2016 NV 25", - "case_name_shorts": "Groenendyke" - }, - { - "case_dates": "2016-04-07", - "case_names": "Hunter v. Gang", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48757&csIID=48757&deLinkID=679303&onBaseDocumentNumber=16-90040", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63804-COA", - "citations": "2016 NV 22", - "case_name_shorts": "Hunter" - }, - { - "case_dates": "2016-04-07", - "case_names": "Hunter v. Gang", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48756&csIID=48756&deLinkID=679302&onBaseDocumentNumber=16-90040", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "59691-COA", - "citations": "2016 NV 22", - "case_name_shorts": "Hunter" - }, - { - "case_dates": "2016-04-07", - "case_names": "Carroll v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32945&csIID=32945&deLinkID=547249&onBaseDocumentNumber=16-10870", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64757", - "citations": "2016 NV 23", - "case_name_shorts": "Carroll" - }, - { - "case_dates": "2016-03-31", - "case_names": "Vu v. Second Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33691&csIID=33691&deLinkID=546387&onBaseDocumentNumber=16-10015", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65498", - "citations": "2016 NV 21", - "case_name_shorts": "Vu" - }, - { - "case_dates": "2016-03-31", - "case_names": "State, Emp't Sec. Div. v. Murphy", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33875&csIID=33875&deLinkID=546362&onBaseDocumentNumber=16-10009", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65681", - "citations": "2016 NV 18", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-31", - "case_names": "McCarty v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=26249&csIID=26249&deLinkID=546385&onBaseDocumentNumber=16-10013", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "58101", - "citations": "2016 NV 20", - "case_name_shorts": "McCarty" - }, - { - "case_dates": "2016-03-31", - "case_names": "In re Parental Rights as to M.F.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35264&csIID=35264&deLinkID=546373&onBaseDocumentNumber=16-10011", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67063", - "citations": "2016 NV 19", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-17", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=27583&csIID=27583&deLinkID=544705&onBaseDocumentNumber=16-08422", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "59423", - "citations": "2016 NV 17", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-03-17", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=27361&csIID=27361&deLinkID=544705&onBaseDocumentNumber=16-08422", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "59208", - "citations": "2016 NV 17", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-03-17", - "case_names": "Rish v. Simao", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=26654&csIID=26654&deLinkID=544705&onBaseDocumentNumber=16-08422", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "58504", - "citations": "2016 NV 17", - "case_name_shorts": "Rish" - }, - { - "case_dates": "2016-03-10", - "case_names": "Tom v. Innovative Home Systems", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48946&csIID=48946&deLinkID=679178&onBaseDocumentNumber=16-90027", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66006-COA", - "citations": "2016 NV 15", - "case_name_shorts": "Tom" - }, - { - "case_dates": "2016-03-10", - "case_names": "Tom v. Innovative Home Systems", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48943&csIID=48943&deLinkID=679177&onBaseDocumentNumber=16-90027", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65419-COA", - "citations": "2016 NV 15", - "case_name_shorts": "Tom" - }, - { - "case_dates": "2016-03-10", - "case_names": "Hairr v. First Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=37792&csIID=37792&deLinkID=543902&onBaseDocumentNumber=16-07625", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "69580", - "citations": "2016 NV 16", - "case_name_shorts": "Hairr" - }, - { - "case_dates": "2016-03-03", - "case_names": "State, Dep't of Pub. Safety v. Coley", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36071&csIID=36071&deLinkID=543097&onBaseDocumentNumber=16-06871", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67864", - "citations": "2016 NV 13", - "case_name_shorts": "Coley" - }, - { - "case_dates": "2016-03-03", - "case_names": "Micone v. Micone", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36141&csIID=36141&deLinkID=543099&onBaseDocumentNumber=16-06873", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67934", - "citations": "2016 NV 14", - "case_name_shorts": "Micone" - }, - { - "case_dates": "2016-03-03", - "case_names": "Goodwin v. Jones", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48594&csIID=48594&deLinkID=679158&onBaseDocumentNumber=16-90025", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62493-COA", - "citations": "2016 NV 12", - "case_name_shorts": "Goodwin" - }, - { - "case_dates": "2016-02-25", - "case_names": "Rippo v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=21396&csIID=21396&deLinkID=542184&onBaseDocumentNumber=16-06014", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "53626", - "citations": "2016 NV 11", - "case_name_shorts": "Rippo" - }, - { - "case_dates": "2016-02-25", - "case_names": "NDOT v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35668&csIID=35668&deLinkID=542183&onBaseDocumentNumber=16-06013", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67465", - "citations": "2016 NV 10", - "case_name_shorts": "NDOT" - }, - { - "case_dates": "2016-02-18", - "case_names": "Quisano v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48884&csIID=48884&deLinkID=679111&onBaseDocumentNumber=16-90021", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66816-COA", - "citations": "2016 NV 9", - "case_name_shorts": "Quisano" - }, - { - "case_dates": "2016-02-04", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35531&csIID=35531&deLinkID=539857&onBaseDocumentNumber=16-03760", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67329", - "citations": "2016 NV 8", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2016-02-04", - "case_names": "MB America v. Alaska Pac. Leasing", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35060&csIID=35060&deLinkID=539857&onBaseDocumentNumber=16-03760", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66860", - "citations": "2016 NV 8", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-04", - "case_names": "In re Estate of Black", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32145&csIID=32145&deLinkID=539856&onBaseDocumentNumber=16-03759", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63960", - "citations": "2016 NV 7", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-28", - "case_names": "Shadow Wood HOA v. N.Y. Cmty. Bancorp", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31363&csIID=31363&deLinkID=538938&onBaseDocumentNumber=16-02947", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63180", - "citations": "2016 NV 5", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-28", - "case_names": "Corp. Bishop, LDS v. Seventh Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33617&csIID=33617&deLinkID=538939&onBaseDocumentNumber=16-02948", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65424", - "citations": "2016 NV 6", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-14", - "case_names": "Southern Highlands v. San Florentine", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34374&csIID=34374&deLinkID=537134&onBaseDocumentNumber=16-01247", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66177", - "citations": "2016 NV 3", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-14", - "case_names": "Principal Investments v. Harrison", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=27998&csIID=27998&deLinkID=537133&onBaseDocumentNumber=16-01246", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "59837", - "citations": "2016 NV 2", - "case_name_shorts": "Harrison" - }, - { - "case_dates": "2016-01-14", - "case_names": "City of Fernley v. State, Dep't of Tax.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35051&csIID=35051&deLinkID=537135&onBaseDocumentNumber=16-01248", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66851", - "citations": "2016 NV 4", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-07", - "case_names": "Manuela H. v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35328&csIID=35328&deLinkID=536277&onBaseDocumentNumber=16-00423", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67127", - "citations": "2016 NV 1", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-31", - "case_names": "State v. Boston", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31113&csIID=31113&deLinkID=535587&onBaseDocumentNumber=15-40130", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62931", - "citations": "2015 NV 98", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-31", - "case_names": "Scott v. First Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35533&csIID=35533&deLinkID=535598&onBaseDocumentNumber=15-40141", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67331", - "citations": "2015 NV 101", - "case_name_shorts": "Scott" - }, - { - "case_dates": "2015-12-31", - "case_names": "Piroozi v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33135&csIID=33135&deLinkID=535590&onBaseDocumentNumber=15-40133", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64946", - "citations": "2015 NV 100", - "case_name_shorts": "Piroozi" - }, - { - "case_dates": "2015-12-31", - "case_names": "Palmieri v. Clark County", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48769&csIID=48769&deLinkID=678902&onBaseDocumentNumber=15-90170", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65143-COA", - "citations": "2015 NV 102", - "case_name_shorts": "Palmieri" - }, - { - "case_dates": "2015-12-31", - "case_names": "Gonzalez v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32434&csIID=32434&deLinkID=535589&onBaseDocumentNumber=15-40132", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64249", - "citations": "2015 NV 99", - "case_name_shorts": "Gonzalez" - }, - { - "case_dates": "2015-12-31", - "case_names": "Barber v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30827&csIID=30827&deLinkID=535613&onBaseDocumentNumber=15-40143", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62649", - "citations": "2015 NV 103", - "case_name_shorts": "Barber" - }, - { - "case_dates": "2015-12-24", - "case_names": "Newell v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34751&csIID=34751&deLinkID=535035&onBaseDocumentNumber=15-39581", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66552", - "citations": "2015 NV 97", - "case_name_shorts": "Newell" - }, - { - "case_dates": "2015-12-24", - "case_names": "Moultrie v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48616&csIID=48616&deLinkID=678837&onBaseDocumentNumber=15-90164", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65390-COA", - "citations": "2015 NV 93", - "case_name_shorts": "Moultrie" - }, - { - "case_dates": "2015-12-24", - "case_names": "In re P.S.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34608&csIID=34608&deLinkID=535025&onBaseDocumentNumber=15-39571", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66410", - "citations": "2015 NV 95", - "case_name_shorts": "In re P.S." - }, - { - "case_dates": "2015-12-24", - "case_names": "Fergason v. LVMPD", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30534&csIID=30534&deLinkID=535017&onBaseDocumentNumber=15-39564", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62357", - "citations": "2015 NV 94", - "case_name_shorts": "Fergason" - }, - { - "case_dates": "2015-12-24", - "case_names": "Berry v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34672&csIID=34672&deLinkID=535029&onBaseDocumentNumber=15-39575", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66474", - "citations": "2015 NV 96", - "case_name_shorts": "Berry" - }, - { - "case_dates": "2015-12-17", - "case_names": "Harrison v. Roitman", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32757&csIID=32757&deLinkID=533890&onBaseDocumentNumber=15-38500", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64569", - "citations": "2015 NV 92", - "case_name_shorts": "Harrison" - }, - { - "case_dates": "2015-12-03", - "case_names": "McDonald Carano Wilson v. Bourassa Law Grp.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32846&csIID=32846&deLinkID=532115&onBaseDocumentNumber=15-36836", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64658", - "citations": "2015 NV 90", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-03", - "case_names": "Helfstein v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33602&csIID=33602&deLinkID=532118&onBaseDocumentNumber=15-36839", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65409", - "citations": "2015 NV 91", - "case_name_shorts": "Helfstein" - }, - { - "case_dates": "2015-11-16", - "case_names": "In re Guardianship of Hailu", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36740&csIID=36740&deLinkID=530188&onBaseDocumentNumber=15-34970", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68531", - "citations": "2015 NV 89", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-05", - "case_names": "WPH Architecture, Inc. v. Vegas VP, LP", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=22291&csIID=22291&deLinkID=528908&onBaseDocumentNumber=15-33733", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "54389", - "citations": "2015 NV 88", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-05", - "case_names": "Valenti v. State, Dep't of Motor Vehicles", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32172&csIID=32172&deLinkID=528899&onBaseDocumentNumber=15-33732", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63987", - "citations": "2015 NV 87", - "case_name_shorts": "Valenti" - }, - { - "case_dates": "2015-10-29", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31441&csIID=31441&deLinkID=528165&onBaseDocumentNumber=15-33016", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63258", - "citations": "2015 NV 84", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2015-10-29", - "case_names": "Eureka Cnty. v. State Engineer", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=29491&csIID=29491&deLinkID=528165&onBaseDocumentNumber=15-33016", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61324", - "citations": "2015 NV 84", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-29", - "case_names": "D.R. Horton, Inc. v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34298&csIID=34298&deLinkID=528173&onBaseDocumentNumber=15-33024", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66101", - "citations": "2015 NV 86", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-29", - "case_names": "D.R. Horton, Inc. v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34282&csIID=34282&deLinkID=528172&onBaseDocumentNumber=15-33023", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66085", - "citations": "2015 NV 86", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-29", - "case_names": "Becker v. Becker", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33528&csIID=33528&deLinkID=528171&onBaseDocumentNumber=15-33022", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65335", - "citations": "2015 NV 85", - "case_name_shorts": "Becker" - }, - { - "case_dates": "2015-10-15", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30043&csIID=30043&deLinkID=526362&onBaseDocumentNumber=15-31341", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61871", - "citations": "2015 NV 82", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2015-10-15", - "case_names": "Okada v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=36519&csIID=36519&deLinkID=526366&onBaseDocumentNumber=15-31345", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "68310", - "citations": "2015 NV 83", - "case_name_shorts": "Okada" - }, - { - "case_dates": "2015-10-15", - "case_names": "Anderson v. Mandalay Corp.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=29472&csIID=29472&deLinkID=526362&onBaseDocumentNumber=15-31341", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61305", - "citations": "2015 NV 82", - "case_name_shorts": "Anderson" - }, - { - "case_dates": "2015-10-01", - "case_names": "Tam v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34544&csIID=34544&deLinkID=524693&onBaseDocumentNumber=15-29735", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66346", - "citations": "2015 NV 80", - "case_name_shorts": "Tam" - }, - { - "case_dates": "2015-10-01", - "case_names": "Michaels v. Pentair Water Pool & Spa", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48589&csIID=48589&deLinkID=678383&onBaseDocumentNumber=15-90119", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "59685-COA", - "citations": "2015 NV 81", - "case_name_shorts": "Michaels" - }, - { - "case_dates": "2015-09-24", - "case_names": "Watson Rounds v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33826&csIID=33826&deLinkID=523821&onBaseDocumentNumber=15-28893", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65632", - "citations": "2015 NV 79", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-24", - "case_names": "Tallman v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=28838&csIID=28838&deLinkID=523780&onBaseDocumentNumber=15-28852", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "60673", - "citations": "2015 NV 71", - "case_name_shorts": "Tallman" - }, - { - "case_dates": "2015-09-24", - "case_names": "State Farm Mut. Auto. Ins. Co. v. Hansen", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32671&csIID=32671&deLinkID=523794&onBaseDocumentNumber=15-28866", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64484", - "citations": "2015 NV 74", - "case_name_shorts": "Hansen" - }, - { - "case_dates": "2015-09-24", - "case_names": "Mika v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=29557&csIID=29557&deLinkID=523782&onBaseDocumentNumber=15-28854", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61390", - "citations": "2015 NV 71", - "case_name_shorts": "Mika" - }, - { - "case_dates": "2015-09-24", - "case_names": "Mardian v. Greenberg Family Trust", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30234&csIID=30234&deLinkID=523784&onBaseDocumentNumber=15-28856", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62061", - "citations": "2015 NV 72", - "case_name_shorts": "Mardian" - }, - { - "case_dates": "2015-09-24", - "case_names": "Joanna T. v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33992&csIID=33992&deLinkID=523813&onBaseDocumentNumber=15-28885", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65796", - "citations": "2015 NV 77", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-24", - "case_names": "In re Manhattan W. Mechanic's Lien Litig.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=29297&csIID=29297&deLinkID=523777&onBaseDocumentNumber=15-28849", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61131", - "citations": "2015 NV 70", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-24", - "case_names": "In re Guardianship of N.M.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32882&csIID=32882&deLinkID=523803&onBaseDocumentNumber=15-28875", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64694", - "citations": "2015 NV 75", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-24", - "case_names": "Benson v. State Engineer", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34030&csIID=34030&deLinkID=523818&onBaseDocumentNumber=15-28890", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65833", - "citations": "2015 NV 78", - "case_name_shorts": "Benson" - }, - { - "case_dates": "2015-09-24", - "case_names": "Baxter v. Dignity Health", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33256&csIID=33256&deLinkID=523810&onBaseDocumentNumber=15-28882", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65064", - "citations": "2015 NV 76", - "case_name_shorts": "Baxter" - }, - { - "case_dates": "2015-09-24", - "case_names": "Am. First Fed. Credit Union v. Soro", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32315&csIID=32315&deLinkID=523785&onBaseDocumentNumber=15-28857", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64130", - "citations": "2015 NV 73", - "case_name_shorts": "Soro" - }, - { - "case_dates": "2015-09-17", - "case_names": "Land Baron Invs. v. Bonnie Springs Family LP", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=27848&csIID=27848&deLinkID=523065&onBaseDocumentNumber=15-28163", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "59687", - "citations": "2015 NV 69", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-10", - "case_names": "Tate v. State, Bd. of Med. Exam'rs", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33653&csIID=33653&deLinkID=522183&onBaseDocumentNumber=15-27329", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65460", - "citations": "2015 NV 67", - "case_name_shorts": "Tate" - }, - { - "case_dates": "2015-09-10", - "case_names": "Merlino v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48765&csIID=48765&deLinkID=678248&onBaseDocumentNumber=15-90105", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65273-COA", - "citations": "2015 NV 65", - "case_name_shorts": "Merlino" - }, - { - "case_dates": "2015-09-10", - "case_names": "In re Parental Rights as to A.P.M.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32399&csIID=32399&deLinkID=522177&onBaseDocumentNumber=15-27323", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64214", - "citations": "2015 NV 66", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-10", - "case_names": "Bergenfield v. BAC Home Loans Servicing", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35337&csIID=35337&deLinkID=522185&onBaseDocumentNumber=15-27331", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "67136", - "citations": "2015 NV 68", - "case_name_shorts": "Bergenfield" - }, - { - "case_dates": "2015-09-03", - "case_names": "State v. Smith", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=34314&csIID=34314&deLinkID=521567&onBaseDocumentNumber=15-26717", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66117", - "citations": "2015 NV 63", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-03", - "case_names": "Frazier v. Drake", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48552&csIID=48552&deLinkID=678224&onBaseDocumentNumber=15-90103", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61775-COA", - "citations": "2015 NV 64", - "case_name_shorts": "Frazier" - }, - { - "case_dates": "2015-08-27", - "case_names": "Cassinelli v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48609&csIID=48609&deLinkID=678171&onBaseDocumentNumber=15-90097", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64881-COA", - "citations": "2015 NV 62", - "case_name_shorts": "Cassinelli" - }, - { - "case_dates": "2015-08-13", - "case_names": "Stevenson v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31147&csIID=31147&deLinkID=519109&onBaseDocumentNumber=15-24413", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62965", - "citations": "2015 NV 61", - "case_name_shorts": "Stevenson" - }, - { - "case_dates": "2015-08-06", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32232&csIID=32232&deLinkID=518324&onBaseDocumentNumber=15-23673", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64047", - "citations": "2015 NV 59", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2015-08-06", - "case_names": "Mensah v. CorVel Corp.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32238&csIID=32238&deLinkID=518331&onBaseDocumentNumber=15-23680", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64053", - "citations": "2015 NV 60", - "case_name_shorts": "Mensah" - }, - { - "case_dates": "2015-08-06", - "case_names": "Barbara Ann Hollier Trust v. Shack", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31491&csIID=31491&deLinkID=518324&onBaseDocumentNumber=15-23673", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63308", - "citations": "2015 NV 59", - "case_name_shorts": "Shack" - }, - { - "case_dates": "2015-07-30", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=29810&csIID=29810&deLinkID=517580&onBaseDocumentNumber=15-22984", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61640", - "citations": "2015 NV 54", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2015-07-30", - "case_names": "Torres v. Nev. Direct Ins. Co.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=29269&csIID=29269&deLinkID=517580&onBaseDocumentNumber=15-22984", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61103", - "citations": "2015 NV 54", - "case_name_shorts": "Torres" - }, - { - "case_dates": "2015-07-30", - "case_names": "State v. Harris", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33102&csIID=33102&deLinkID=517587&onBaseDocumentNumber=15-22991", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64913", - "citations": "2015 NV 56", - "case_name_shorts": "Harris" - }, - { - "case_dates": "2015-07-30", - "case_names": "Johnson v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48731&csIID=48731&deLinkID=678009&onBaseDocumentNumber=15-90082", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63737-COA", - "citations": "2015 NV 58", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-30", - "case_names": "In re Montierth", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30927&csIID=30927&deLinkID=517586&onBaseDocumentNumber=15-22990", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62745", - "citations": "2015 NV 55", - "case_name_shorts": "In re Montierth" - }, - { - "case_dates": "2015-07-30", - "case_names": "Double Diamond v. Second Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33860&csIID=33860&deLinkID=517588&onBaseDocumentNumber=15-22992", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65666", - "citations": "2015 NV 57", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-23", - "case_names": "Ford v. Branch Banking & Trust Co.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33435&csIID=33435&deLinkID=516887&onBaseDocumentNumber=15-22299", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65242", - "citations": "2015 NV 53", - "case_name_shorts": "Ford" - }, - { - "case_dates": "2015-07-23", - "case_names": "Barral v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32320&csIID=32320&deLinkID=516884&onBaseDocumentNumber=15-22296", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64135", - "citations": "2015 NV 52", - "case_name_shorts": "Barral" - }, - { - "case_dates": "2015-07-16", - "case_names": "Sanders v. Sears-Page", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48595&csIID=48595&deLinkID=677956&onBaseDocumentNumber=15-90078", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62792-COA", - "citations": "2015 NV 50", - "case_name_shorts": "Sanders" - }, - { - "case_dates": "2015-07-02", - "case_names": "State v. Beaudion", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33622&csIID=33622&deLinkID=514685&onBaseDocumentNumber=15-20196", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65429", - "citations": "2015 NV 48", - "case_name_shorts": "Beaudion" - }, - { - "case_dates": "2015-07-02", - "case_names": "Gonzales v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48606&csIID=48606&deLinkID=677877&onBaseDocumentNumber=15-90071", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64539-COA", - "citations": "2015 NV 49", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Davis v. Ewalefo", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31916&csIID=31916&deLinkID=514664&onBaseDocumentNumber=15-20176", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63731", - "citations": "2015 NV 45", - "case_name_shorts": "Davis" - }, - { - "case_dates": "2015-07-02", - "case_names": "D & D Tire v. Ouellette", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31995&csIID=31995&deLinkID=514678&onBaseDocumentNumber=15-20189", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63810", - "citations": "2015 NV 47", - "case_name_shorts": "Ouellette" - }, - { - "case_dates": "2015-07-02", - "case_names": "C. Nicholas Pereos, Ltd. v. Bank of Am.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=29721&csIID=29721&deLinkID=514649&onBaseDocumentNumber=15-20161", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61553", - "citations": "2015 NV 44", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Biscay v. MGM Resorts Int'l", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31676&csIID=31676&deLinkID=514674&onBaseDocumentNumber=15-20186", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63492", - "citations": "2015 NV 46", - "case_name_shorts": "Biscay" - }, - { - "case_dates": "2015-06-25", - "case_names": "State, Dep't of Taxation v. Kawahara", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32249&csIID=32249&deLinkID=513795&onBaseDocumentNumber=15-19378", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64064", - "citations": "2015 NV 42", - "case_name_shorts": "Kawahara" - }, - { - "case_dates": "2015-06-25", - "case_names": "NDOT v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31362&csIID=31362&deLinkID=513793&onBaseDocumentNumber=15-19376", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63179", - "citations": "2015 NV 41", - "case_name_shorts": "NDOT" - }, - { - "case_dates": "2015-06-25", - "case_names": "Lisle v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=23013&csIID=23013&deLinkID=513787&onBaseDocumentNumber=15-19370", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "55173", - "citations": "2015 NV 39", - "case_name_shorts": "Lisle" - }, - { - "case_dates": "2015-06-25", - "case_names": "Excellence Cmty. Mgmt. v. Gilmore", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30363&csIID=30363&deLinkID=513784&onBaseDocumentNumber=15-19367", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62189", - "citations": "2015 NV 38", - "case_name_shorts": "Gilmore" - }, - { - "case_dates": "2015-06-25", - "case_names": "Burnside v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=21980&csIID=21980&deLinkID=513788&onBaseDocumentNumber=15-19371", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "56548", - "citations": "2015 NV 40", - "case_name_shorts": "Burnside" - }, - { - "case_dates": "2015-06-25", - "case_names": "Alper v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32445&csIID=32445&deLinkID=513796&onBaseDocumentNumber=15-19379", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64260", - "citations": "2015 NV 43", - "case_name_shorts": "Alper" - }, - { - "case_dates": "2015-06-11", - "case_names": "Rimer v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=26861&csIID=26861&deLinkID=512133&onBaseDocumentNumber=15-17763", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "58711", - "citations": "2015 NV 36", - "case_name_shorts": "Rimer" - }, - { - "case_dates": "2015-06-11", - "case_names": "Nutton v. Sunset Station, Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48596&csIID=48596&deLinkID=677783&onBaseDocumentNumber=15-90062", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62878-COA", - "citations": "2015 NV 34", - "case_name_shorts": "Nutton" - }, - { - "case_dates": "2015-06-11", - "case_names": "Gov't of Marinduque v. Placer Dome, Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=26104&csIID=26104&deLinkID=512132&onBaseDocumentNumber=15-17762", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "57956", - "citations": "2015 NV 35", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-11", - "case_names": "Berry v. Feil", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48577&csIID=48577&deLinkID=677784&onBaseDocumentNumber=15-90062", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64750-COA", - "citations": "2015 NV 37", - "case_name_shorts": "Berry" - }, - { - "case_dates": "2015-06-04", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30373&csIID=30373&deLinkID=511387&onBaseDocumentNumber=15-17026", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62199", - "citations": "2015 NV 33", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2015-06-04", - "case_names": "Sharpe v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32472&csIID=32472&deLinkID=511386&onBaseDocumentNumber=15-17025", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64287", - "citations": "2015 NV 32", - "case_name_shorts": "Sharpe" - }, - { - "case_dates": "2015-06-04", - "case_names": "Logan v. Abe", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32165&csIID=32165&deLinkID=511385&onBaseDocumentNumber=15-17024", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63980", - "citations": "2015 NV 31", - "case_name_shorts": "Logan" - }, - { - "case_dates": "2015-06-04", - "case_names": "Jennifer L. v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31359&csIID=31359&deLinkID=511383&onBaseDocumentNumber=15-17022", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63176", - "citations": "2015 NV 30", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-04", - "case_names": "Fulbrook v. Allstate Ins. Co.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=29735&csIID=29735&deLinkID=511387&onBaseDocumentNumber=15-17026", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61567", - "citations": "2015 NV 33", - "case_name_shorts": "Fulbrook" - }, - { - "case_dates": "2015-05-28", - "case_names": "Weddell v. Sharp", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=29110&csIID=29110&deLinkID=510530&onBaseDocumentNumber=15-16229", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "60944", - "citations": "2015 NV 28", - "case_name_shorts": "Weddell" - }, - { - "case_dates": "2015-05-28", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=29496&csIID=29496&deLinkID=510530&onBaseDocumentNumber=15-16229", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61329", - "citations": "2015 NV 28", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2015-05-28", - "case_names": "Catholic Diocese, Green Bay v. John Doe 119", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31022&csIID=31022&deLinkID=510531&onBaseDocumentNumber=15-16230", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62840", - "citations": "2015 NV 29", - "case_name_shorts": "" - }, - { - "case_dates": "2015-05-21", - "case_names": "Guitron v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48600&csIID=48600&deLinkID=677713&onBaseDocumentNumber=15-90054", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64215-COA", - "citations": "2015 NV 27", - "case_name_shorts": "Guitron" - }, - { - "case_dates": "2015-05-07", - "case_names": "Nev. Dep't of Corrs. v. York Claims Servs.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32660&csIID=32660&deLinkID=508153&onBaseDocumentNumber=15-13955", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64473", - "citations": "2015 NV 25", - "case_name_shorts": "" - }, - { - "case_dates": "2015-05-07", - "case_names": "Manning v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31457&csIID=31457&deLinkID=508158&onBaseDocumentNumber=15-13960", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63274", - "citations": "2015 NV 26", - "case_name_shorts": "Manning" - }, - { - "case_dates": "2015-05-07", - "case_names": "In re L.A.W.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31868&csIID=31868&deLinkID=508143&onBaseDocumentNumber=15-13945", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63683", - "citations": "2015 NV 24", - "case_name_shorts": "In re L.A.W." - }, - { - "case_dates": "2015-04-30", - "case_names": "Veil v. Bennett", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31829&csIID=31829&deLinkID=507246&onBaseDocumentNumber=15-13101", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63644", - "citations": "2015 NV 22", - "case_name_shorts": "Veil" - }, - { - "case_dates": "2015-04-30", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=28692&csIID=28692&deLinkID=507242&onBaseDocumentNumber=15-13097", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "60527", - "citations": "2015 NV 20", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2015-04-30", - "case_names": "Munoz v. Branch Banking", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31932&csIID=31932&deLinkID=507247&onBaseDocumentNumber=15-13102", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63747", - "citations": "2015 NV 23", - "case_name_shorts": "Munoz" - }, - { - "case_dates": "2015-04-30", - "case_names": "Mitchell v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31259&csIID=31259&deLinkID=507245&onBaseDocumentNumber=15-13100", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63076", - "citations": "2015 NV 21", - "case_name_shorts": "" - }, - { - "case_dates": "2015-04-30", - "case_names": "Branch Banking v. Windhaven & Tollway, LLC", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=27799&csIID=27799&deLinkID=507242&onBaseDocumentNumber=15-13097", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "59638", - "citations": "2015 NV 20", - "case_name_shorts": "" - }, - { - "case_dates": "2015-04-16", - "case_names": "Brown v. Eddie World, Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32081&csIID=32081&deLinkID=505411&onBaseDocumentNumber=15-11365", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63896", - "citations": "2015 NV 19", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2015-04-02", - "case_names": "Hohenstein v. State, Emp't Sec. Div.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=26669&csIID=26669&deLinkID=503856&onBaseDocumentNumber=15-09909", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "58519", - "citations": "2015 NV 17", - "case_name_shorts": "Hohenstein" - }, - { - "case_dates": "2015-04-02", - "case_names": "Coyote Springs Inv. v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32811&csIID=32811&deLinkID=503864&onBaseDocumentNumber=15-09917", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64623", - "citations": "2015 NV 18", - "case_name_shorts": "" - }, - { - "case_dates": "2015-03-26", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31975&csIID=31975&deLinkID=503060&onBaseDocumentNumber=15-09143", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63790", - "citations": "2015 NV 15", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2015-03-26", - "case_names": "Pitmon v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48610&csIID=48610&deLinkID=677489&onBaseDocumentNumber=15-90032", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65000-COA", - "citations": "2015 NV 16", - "case_name_shorts": "Pitmon" - }, - { - "case_dates": "2015-03-26", - "case_names": "Cadle Co. v. Woods & Erickson, LLP", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31565&csIID=31565&deLinkID=503060&onBaseDocumentNumber=15-09143", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63382", - "citations": "2015 NV 15", - "case_name_shorts": "" - }, - { - "case_dates": "2015-03-26", - "case_names": "Bullion Monarch v. Barrick Goldstrike", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=29225&csIID=29225&deLinkID=503054&onBaseDocumentNumber=15-09137", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61059", - "citations": "2015 NV 13", - "case_name_shorts": "" - }, - { - "case_dates": "2015-03-26", - "case_names": "Bluestein v. Bluestein", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30484&csIID=30484&deLinkID=503057&onBaseDocumentNumber=15-09140", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62308", - "citations": "2015 NV 14", - "case_name_shorts": "Bluestein" - }, - { - "case_dates": "2015-03-05", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31726&csIID=31726&deLinkID=500709&onBaseDocumentNumber=15-06884", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63541", - "citations": "2015 NV 10", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2015-03-05", - "case_names": "Unknown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31542&csIID=31542&deLinkID=500712&onBaseDocumentNumber=15-06887", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63359", - "citations": "2015 NV 11", - "case_name_shorts": "Unknown" - }, - { - "case_dates": "2015-03-05", - "case_names": "U.S. Bank Nat'l Ass'n v. Palmilla Dev. Co.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30285&csIID=30285&deLinkID=500706&onBaseDocumentNumber=15-06881", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62112", - "citations": "2015 NV 9", - "case_name_shorts": "" - }, - { - "case_dates": "2015-03-05", - "case_names": "LVMPD v. Blackjack Bonding", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31046&csIID=31046&deLinkID=500709&onBaseDocumentNumber=15-06884", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62864", - "citations": "2015 NV 10", - "case_name_shorts": "LVMPD" - }, - { - "case_dates": "2015-03-05", - "case_names": "JED Prop. v. Coastline RE Holdings NV Corp.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31275&csIID=31275&deLinkID=500712&onBaseDocumentNumber=15-06887", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63092", - "citations": "2015 NV 11", - "case_name_shorts": "" - }, - { - "case_dates": "2015-03-05", - "case_names": "In re Estate of Murray", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=31467&csIID=31467&deLinkID=500705&onBaseDocumentNumber=15-06880", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63284", - "citations": "2015 NV 8", - "case_name_shorts": "" - }, - { - "case_dates": "2015-03-05", - "case_names": "Breeden v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=35076&csIID=35076&deLinkID=500716&onBaseDocumentNumber=15-06891", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "66876", - "citations": "2015 NV 12", - "case_name_shorts": "Breeden" - }, - { - "case_dates": "2015-02-26", - "case_names": "Zahavi v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=27976&csIID=27976&deLinkID=499906&onBaseDocumentNumber=15-06129", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "59815", - "citations": "2015 NV 7", - "case_name_shorts": "Zahavi" - }, - { - "case_dates": "2015-02-26", - "case_names": "Martinorellan v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=27055&csIID=27055&deLinkID=499905&onBaseDocumentNumber=15-06128", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "58904", - "citations": "2015 NV 6", - "case_name_shorts": "Martinorellan" - }, - { - "case_dates": "2015-02-05", - "case_names": "Jones v. State, Bd. of Med. Exam'rs", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=32566&csIID=32566&deLinkID=497504&onBaseDocumentNumber=15-03809", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "64381", - "citations": "2015 NV 4", - "case_name_shorts": "Jones" - }, - { - "case_dates": "2015-02-05", - "case_names": "Fulbright & Jaworski v. Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=33314&csIID=33314&deLinkID=497509&onBaseDocumentNumber=15-03814", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "65122", - "citations": "2015 NV 5", - "case_name_shorts": "" - }, - { - "case_dates": "2015-02-05", - "case_names": "Abarra v. State of Nevada", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30280&csIID=30280&deLinkID=497495&onBaseDocumentNumber=15-03800", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "62107", - "citations": "2015 NV 3", - "case_name_shorts": "Abarra" - }, - { - "case_dates": "2015-01-29", - "case_names": "Torres v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=30119&csIID=30119&deLinkID=496765&onBaseDocumentNumber=15-03102", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "61946", - "citations": "2015 NV 2", - "case_name_shorts": "Torres" - }, - { - "case_dates": "2015-01-29", - "case_names": "Buzz Stew, LLC v. City of N. Las Vegas", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=23060&csIID=23060&deLinkID=496763&onBaseDocumentNumber=15-03100", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "55220", - "citations": "2015 NV 1", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nev_p_example.html b/tests/examples/opinions/united_states/nev_p_example.html deleted file mode 100644 index b38507255..000000000 --- a/tests/examples/opinions/united_states/nev_p_example.html +++ /dev/null @@ -1,7491 +0,0 @@ - - - - - - - - - - - - - - - - Advance Opinions - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - -
    - -
    - - -
    -
    -
    - - -
    - -
    - - -
    -
    - -
    - -
    -
    - - - - -
    -
    -
    -
    -
    - - -
    - - - - -
    - -
    -
    -

    Advance Opinions

    -

    - Disclaimer: This information is prepared as an informational service only and should not be relied upon as an official record of action. For official records, please refer to the printed version of the appropriate official publication which may be obtained from the Clerk of the Supreme Court of Nevada (775) 684-1600. -

    - - - - -
    - - - - - - - Subscribe -
    -
    Click here for Order Form for Advance Sheets
    -
    - -
    - -
    - -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Advance No.Case NumberRunning TitleDate
    33 - 75743 - - City of Mesquite v. Eighth Jud. Dist. Ct. - - Aug 01, 2019 - -
    32 - 70164 - - First Transit v. Chernikoff - - Aug 01, 2019 - -
    31 - 76948 - - In re Guardianship of Gomez Wittler - - Aug 01, 2019 - -
    30 - 72747 - - Daisy Trust v. Wells Fargo Bank - - Jul 25, 2019 - -
    29 - 74901 - - Menendez-Cordero v. State - - Jul 25, 2019 - -
    28 - 77669 - - Cameron v. Eighth Jud. Dist. Ct. - - Jul 18, 2019 - -
    27 - 75769 - - Amaya v. Guerrero Rivera - - Jul 03, 2019 - -
    26 - 74575 - - U.S. Bank, Nat'l Ass'n v. Res. Grp. - - Jul 03, 2019 - -
    25 - 75198 - - Boesiger v. Desert Appraisals, LLC - - Jul 03, 2019 - -
    23 - 74153 - - Saticoy Bay LLC v. Nev. Ass'n Servs. - - Jul 03, 2019 - -
    22 - 72371 - - Pardee Homes of Nev. v. Wolfram - - Jul 03, 2019 - -
    21 - 74876 - - Waste Mgmt. of Nev. v. W. Taylor St. - - Jun 27, 2019 - -
    20 - 74803 - - Kim v. Dickinson Wright, PLLC - - Jun 13, 2019 - -
    19 - 71941-COA - - Rose, LLC v. Treasure Island, LLC - - Jun 06, 2019 - -
    18 - 74048 - - The Original Roofing Co. v. NOSHA - - Jun 06, 2019 - -
    17 - 72057 - - Lipsitz v. State - - Jun 06, 2019 - -
    16 - 73465 - - Castillo v. State - - May 30, 2019 - -
    15 - 71516 - - Bowser v. State - - May 16, 2019 - -
    14 - 73971 - - City of Reno v. Yturbide - - May 02, 2019 - -
    13 - 73933 - - Sierra Pac. Indus. v. Wilson - - May 02, 2019 - -
    12 - 73277 - - State, Dep't of Corr. v. Ludwick - - May 02, 2019 - -
    11 - 73175 - - Tricarichi v. Co+¦peratieve Rabobank, U.A. - - May 02, 2019 - -
    10 - 74964 - - In re Fund for Encouragement of Self Rel. - - Apr 25, 2019 - -
    9 - 71994 - - - - Apr 25, 2019 - -
    9 - 71147 - - Kogod v. Cioffi-Kogod - - Apr 25, 2019 - -
    8 - 71268 - - Resources Grp. v. Nev. Ass'n Servs. - - Mar 14, 2019 - -
    7 - 73785 - - Bank of Am. v. Thomas Jessup, LLC Ser. VII - - Mar 07, 2019 - -
    6 - 75050-COA - - Craig v. Dr. Donnelly - - Feb 28, 2019 - -
    5 - 75675 - - Henry v. Nev. Comm'n on Jud. Discipline - - Feb 28, 2019 - -
    4 - 71770 - - Pascua v. Bayview Loan Servicing - - Feb 07, 2019 - -
    3 - 71101 - - Bombardier Transp. v. State, Labor Comm'r - - Jan 17, 2019 - -
    2 - 73863 - - Coker v. Sassone - - Jan 03, 2019 - -
    1 - 72988 - - Franks v. State - - Jan 03, 2019 - -
    109 - 72949 - - Gonor v. Dale - - Dec 27, 2018 - -
    108 - 70227 - - - - Dec 27, 2018 - -
    108 - 69935 - - Capanna v. Orth - - Dec 27, 2018 - -
    107 - 69509 - - Harris v. State - - Dec 27, 2018 - -
    106 - 73848 - - Branch Banking & Tr. Co. v. Gerrard - - Dec 27, 2018 - -
    105 - 73286 - - In re Estate of Sarge - - Dec 27, 2018 - -
    104 - 72091 - - Cooper v. State - - Dec 27, 2018 - -
    103 - 73048-COA - - Natko v. State - - Dec 20, 2018 - -
    102 - 75184 - - State v. Brown - - Dec 20, 2018 - -
    101 - 72462 - - Flores v. L.V.-Clark Cty. Library Dist. - - Dec 13, 2018 - -
    100 - 73756 - - Century Surety Co. v. Andrew - - Dec 13, 2018 - -
    99 - 74743-COA - - Branham v. Baca - - Dec 13, 2018 - -
    98 - 73698-COA - - Doolin v. State, Dep't of Corr. - - Dec 13, 2018 - -
    97 - 71536-COA - - In re Execution of Search Warrants - - Dec 13, 2018 - -
    96 - 73475 - - State v. Second Jud. Dist. Ct. (Hearn) - - Dec 06, 2018 - -
    95 - 73154 - - Rodriguez v. State - - Dec 06, 2018 - -
    94 - 72456 - - State v. Second Jud. Dist. Ct. (Ojeda) - - Dec 06, 2018 - -
    93 - 70592 - - N. Lake Tahoe Fire Prot. v. Bd. of Admin. - - Dec 06, 2018 - -
    92 - 68460 - - O'Keefe v. State, Dep't of Motor Vehicles - - Dec 06, 2018 - -
    91 - 72352-COA - - Vickers v. Dzurenda - - Nov 21, 2018 - -
    90 - 71401-COA - - Starr v. State - - Nov 21, 2018 - -
    89 - 73312 - - McGowen v. Second Jud. Dist. Ct. - - Nov 21, 2018 - -
    88 - 74169 - - State v. Plunkett - - Nov 15, 2018 - -
    87 - 69928 - - Patin v. Lee - - Nov 15, 2018 - -
    86 - 70586 - - Local Gov't Emp.-Mgmt. Rels. Bd. v. ESEA - - Nov 08, 2018 - -
    85 - 73117 - - Sarfo v. State, Bd. of Med. Exam'rs - - Nov 01, 2018 - -
    84 - 73525 - - CCSD v. Las Vegas Review-Journal - - Oct 25, 2018 - -
    83 - 70868 - - Williams v. State - - Oct 25, 2018 - -
    82 - 76399 - - Mulkern v. Eighth Jud. Dist. Ct. - - Oct 18, 2018 - -
    81 - 72274 - - PERS v. Nev. Policy Research Inst. - - Oct 18, 2018 - -
    80 - 72685 - - Howard v. Hughes - - Oct 04, 2018 - -
    79 - 72443 - - Dolorfino v. Univ. Med. Ctr. of S. Nev. - - Oct 04, 2018 - -
    78 - 72098 - - Rodriguez v. Fiesta Palms, LLC - - Oct 04, 2018 - -
    77 - 73963 - - Warren v. Eighth Jud. Dist. Ct. - - Sep 27, 2018 - -
    76 - 71045 - - Valley Health Sys. v. Estate of Jane Doe - - Sep 27, 2018 - -
    76 - 70083 - - Valley Health Sys. v. Estate of Jane Doe - - Sep 27, 2018 - -
    75 - 72879-COA - - DeChambeau v. Balkenbush - - Sep 27, 2018 - -
    74 - 71405 - - Wells Fargo Bank v. Radecki - - Sep 13, 2018 - -
    73 - 71577 - - In re Connell Living Tr. - - Sep 13, 2018 - -
    72 - 70501 - - Bank of Am. v. SFR Invs. Pool 1 - - Sep 13, 2018 - -
    71 - 70204 - - Baiguen v. Harrah's Las Vegas - - Sep 13, 2018 - -
    70 - 69617 - - Ibarra v. State - - Sep 13, 2018 - -
    69 - 69399 - - Rosenberg Living Tr. v. MacDonald Highlands - - Sep 13, 2018 - -
    69 - 70478 - - - - Sep 13, 2018 - -
    68 - 73143 - - Dunham v. State - - Sep 06, 2018 - -
    67 - 71789-COA - - O'Connell v. Wynn Las Vegas, LLC - - Aug 30, 2018 - -
    66 - 73239-COA - - Lastine v. State - - Aug 30, 2018 - -
    65 - 72736-COA - - Mooney v. State - - Aug 30, 2018 - -
    64 - 70542 - - Richard v. State - - Aug 23, 2018 - -
    63 - 72701 - - Mathews v. State - - Aug 23, 2018 - -
    62 - 74707 - - Coles v. Bisbee - - Aug 02, 2018 - -
    61 - 72716 - - Shores v. Global Experience Specialists - - Aug 02, 2018 - -
    60 - 71899 - - N. Nev. Homes v. GL Constr. - - Aug 02, 2018 - -
    59 - 71873 - - In re Parental Rights as to S.L. - - Aug 02, 2018 - -
    59 - 71889 - - - - Aug 02, 2018 - -
    58 - 72931 - - SFR Invs. Pool 1 v. Bank of N.Y. Mellon - - Aug 02, 2018 - -
    57 - 72446 - - Granada-Ruiz v. Eighth Jud. Dist. Ct. - - Aug 02, 2018 - -
    56 - 71877 - - Clark County v. HQ Metro - - Aug 02, 2018 - -
    55 - 71467 - - Nev. Recycling & Salvage v. Reno Disposal - - Aug 02, 2018 - -
    54 - 66185 - - Hubbard v. State - - Aug 02, 2018 - -
    53 - 53626 - - Rippo v. State - - Aug 02, 2018 - -
    52 - 71402 - - Cooper v. State - - Jul 26, 2018 - -
    51 - 71276 - - LaBarbera v. Wynn Las Vegas, LLC - - Jul 19, 2018 - -
    50 - 73389 - - State v. Second Jud. Dist. Ct. (Kephart) - - Jul 19, 2018 - -
    49 - 70988-COA - - Glover-Armont v. Cargile - - Jul 19, 2018 - -
    48 - 70220 - - In re N.J. - - Jun 28, 2018 - -
    47 - 70754 - - W. Sunset 2050 Tr. v. Nationstar Mortg. - - Jun 28, 2018 - -
    46 - 71437 - - Carrington Mortg. Holdings v. R Ventures - - Jun 14, 2018 - -
    45 - 71444 - - Guerrina v. State - - Jun 07, 2018 - -
    44 - 72713 - - Bautista v. Picone - - May 31, 2018 - -
    43 - 72528 - - Degraw v. Eighth Jud. Dist. Ct. - - May 31, 2018 - -
    42 - 71472 - - Prevost v. State, Dep't of Admin. - - May 31, 2018 - -
    41 - 71289 - - MDC Restaurants v. Eighth Jud. Dist. Ct. - - May 31, 2018 - -
    40 - 69100 - - Comm'n on Ethics v. Hansen - - May 31, 2018 - -
    39 - 59063 - - Montage Marketing v. Washoe County - - May 31, 2018 - -
    38 - 71731-COA - - Sayedzada v. State - - May 24, 2018 - -
    37 - 72317 - - Eureka County v. Seventh Jud. Dist. Ct. - - May 17, 2018 - -
    36 - 69419 - - Saticoy Bay v. Fed. Nat'l Mortg. Ass'n - - May 17, 2018 - -
    35 - 66652 - - Moore v. State - - May 17, 2018 - -
    34 - 72126 - - Dolores v. State, Emp't Sec. Div. - - May 03, 2018 - -
    33 - 71875 - - Las Vegas Dev. Grp. v. Blaha - - May 03, 2018 - -
    32 - 71267 - - Cotter v. Eighth Jud. Dist. Ct. - - May 03, 2018 - -
    31 - 70319 - - MEI-GSR Holdings v. Peppermill Casinos - - May 03, 2018 - -
    30 - 72803 - - Fitzgerald v. Mobile Billboards - - May 03, 2018 - -
    29 - 73198 - - Philip R. v. Eighth Jud. Dist. Ct. - - May 03, 2018 - -
    29 - 73272 - - - - May 03, 2018 - -
    28 - 71052 - - Coleman v. State - - May 03, 2018 - -
    27 - 70424 - - Morgan v. State - - May 03, 2018 - -
    26 - 70864 - - - - Apr 12, 2018 - -
    26 - 69333 - - Cain v. Price - - Apr 12, 2018 - -
    26 - 69889 - - - - Apr 12, 2018 - -
    25 - 68810 - - U.S. Home Corp. v. Michael Ballesteros Tr. - - Apr 12, 2018 - -
    24 - 75095 - - Coroner v. Las Vegas Review-Journal - - Apr 12, 2018 - -
    23 - 71208 - - State v. Sample - - Apr 05, 2018 - -
    22 - 70854 - - Kirsch v. Traber - - Apr 05, 2018 - -
    21 - 72454-COA - - Nance v. Ferraro - - Apr 05, 2018 - -
    20 - 73655 - - Southworth v. Eighth Jud. Dist. Ct. - - Mar 29, 2018 - -
    19 - 70738 - - Comstock Residents Ass'n v. Lyon Cty. - - Mar 29, 2018 - -
    18 - 70458 - - King v. St. Clair - - Mar 29, 2018 - -
    17 - 69909 - - Nuleaf CLV v. State, Dep't of Health - - Mar 29, 2018 - -
    16 - 69353 - - Miller v. Miller - - Mar 15, 2018 - -
    15 - 70002 - - State, Dep't of Bus. v. Dollar Loan Ctr. - - Mar 01, 2018 - -
    14 - 71790 - - Zenor v. State, Dep't of Transp. - - Mar 01, 2018 - -
    13 - 71621 - - State v. Eighth Jud. Dist. Ct. (Baker) - - Mar 01, 2018 - -
    12 - 71214 - - Andrews v. State - - Mar 01, 2018 - -
    11 - 71055 - - Pawlik v. Deng - - Mar 01, 2018 - -
    10 - 69886 - - K-Kel, Inc. v. State, Dep't of Taxation - - Mar 01, 2018 - -
    9 - 69896 - - - - Mar 01, 2018 - -
    9 - 69410 - - Dezzani v. Kern & Assocs., Ltd. - - Mar 01, 2018 - -
    8 - 67228 - - Jeremias v. State - - Mar 01, 2018 - -
    7 - 75073 - - Las Vegas Review-Journal v. Dist. Ct. - - Feb 27, 2018 - -
    6 - 70497 - - Felton v. Douglas County - - Feb 15, 2018 - -
    5 - 74519 - - Quinn v. Eighth Jud. Dist. Ct. - - Feb 08, 2018 - -
    4 - 71325 - - SFR Invs. Pool 1 v. First Horizon - - Feb 01, 2018 - -
    3 - 70151 - - Castillo v. United Fed. Credit Union - - Feb 01, 2018 - -
    2 - 74326 - - Okada v. Eighth Jud. Dist. Ct. - - Jan 11, 2018 - -
    1 - 71848 - - Heat & Frost Insulators v. Labor Comm'r - - Jan 04, 2018 - -
    115 - 70325 - - McCrosky v. Carson Tahoe Reg'l Med. Ctr. - - Dec 28, 2017 - -
    114 - 71085 - - Boca Park Marketplace v. Higco, Inc. - - Dec 28, 2017 - -
    113 - 72950 - - Brown v. Eighth Jud. Dist. Ct. - - Dec 28, 2017 - -
    112 - 72416 - - Segovia v. Eighth Jud. Dist. Ct. - - Dec 28, 2017 - -
    110 - 71920 - - Rodriguez v. State - - Dec 28, 2017 - -
    109 - 71759 - - Hawkins v. Eighth Jud. Dist. Ct. - - Dec 28, 2017 - -
    108 - 68664 - - Peck v. Zipf - - Dec 28, 2017 - -
    107 - 72086-COA - - Soro v. Eighth Jud. Dist. Ct. - - Dec 28, 2017 - -
    106 - 70870-COA - - Jackson v. State - - Dec 28, 2017 - -
    105 - 70732-COA - - Jefferson v. State - - Dec 28, 2017 - -
    104 - 71503 - - Arcella v. Arcella - - Dec 26, 2017 - -
    102 - 53264 - - Franchise Tax Bd. of Cal. v. Hyatt - - Dec 26, 2017 - -
    101 - 71802 - - Archon Corp. v. Eighth Jud. Dist. Ct. - - Dec 21, 2017 - -
    100 - 71123 - - State, Dep't of Health v. Samantha Inc. - - Dec 14, 2017 - -
    99 - 67428 - - Shue v. State - - Dec 14, 2017 - -
    98 - 71030 - - Mullner v. State - - Dec 07, 2017 - -
    97 - 72563 - - In re Parental Rights as to T.L. - - Dec 07, 2017 - -
    96 - 70888 - - Agwara v. State Bar of Nevada - - Dec 07, 2017 - -
    95 - 70696 - - Neville v. Eighth Jud. Dist. Ct. - - Dec 07, 2017 - -
    94 - 69995 - - Abid v. Abid - - Dec 07, 2017 - -
    93 - 69801 - - Doe v. Nevada Legislature, 77th Session - - Dec 07, 2017 - -
    92 - 70522 - - Bradley v. Eighth Jud. Dist. Ct. - - Nov 22, 2017 - -
    91 - 70382 - - Nationstar Mortg. v. Saticoy Bay LLC - - Nov 22, 2017 - -
    90 - 70348 - - Yu v. Yu - - Nov 22, 2017 - -
    89 - 70823 - - Gardner v. Eighth Jud. Dist. Ct. - - Nov 22, 2017 - -
    88 - 69269 - - Collins v. State - - Nov 22, 2017 - -
    87 - 70989 - - In re Discipline of Reade - - Nov 16, 2017 - -
    86 - 65935 - - Farmer v. State - - Nov 16, 2017 - -
    85 - 70679-COA - - Harris v. State - - Nov 16, 2017 - -
    84 - 71372-COA - - Knickmeyer v. State of Nevada - - Nov 16, 2017 - -
    83 - 71130-COA - - Sierra PackGÇÖg v. Chief Ad. OffGÇÖr of NOSHA - - Nov 16, 2017 - -
    82 - 71637 - - City of Las Vegas v. Eighth Jud. Dist. Ct. - - Nov 16, 2017 - -
    81 - 67380 - - Alotaibi v. State - - Nov 09, 2017 - -
    80 - 66398 - - Szymborski v. Spring Mtn. Treatment Ctr. - - Oct 26, 2017 - -
    79 - 68443 - - Clark Cty. Sch. Dist. v. Payo - - Oct 26, 2017 - -
    78 - 68053 - - Mendenhall v. Tassinari - - Oct 05, 2017 - -
    77 - 65316 - - Humphries v. N.Y.-N.Y. Hotel & Casino - - Oct 05, 2017 - -
    76 - 71110 - - Sweat v. Eighth Jud. Dist. Ct. - - Oct 05, 2017 - -
    75 - 71039 - - Williams v. State, Dep't of Corrections - - Oct 05, 2017 - -
    74 - 69992 - - Fredianelli v. Price - - Oct 05, 2017 - -
    73 - 65168 - - Johnson v. State - - Oct 05, 2017 - -
    72 - 69047 - - In re Parental Rights as to A.D.L. - - Oct 05, 2017 - -
    71 - 70157 - - State Engineer v. Eureka County - - Sep 27, 2017 - -
    70 - 70098 - - State, DOT v. Eighth Jud. Dist. Ct. - - Sep 27, 2017 - -
    69 - 67955 - - Gordon v. Geiger - - Sep 27, 2017 - -
    68 - 67843 - - Ford Motor Co. v. Trejo - - Sep 27, 2017 - -
    67 - 67120 - - Adelson v. Harris - - Sep 27, 2017 - -
    66 - 65456 - - High Noon HOA v. Eighth Jud. Dist. Ct. - - Sep 27, 2017 - -
    65 - 70786 - - Facklam v. HSBC Bank USA - - Sep 14, 2017 - -
    64 - 70475 - - Ditech Financial v. Buckles - - Sep 14, 2017 - -
    63 - 69074 - - Thomas v. Eighth Jud. Dist. Ct. - - Sep 14, 2017 - -
    62 - 69072 - - Prop. Plus Invs. v. Mortg. Elec. Reg. Sys. - - Sep 14, 2017 - -
    61 - 69012 - - In re DISH Network Derivative Litigation - - Sep 14, 2017 - -
    61 - 69729 - - - - Sep 14, 2017 - -
    60 - 68543 - - O.P.H. of Las Vegas v. Or. Mut. Ins. Co. - - Sep 14, 2017 - -
    59 - 66689 - - Parametric Sound v. Eighth Jud. Dist. Ct. - - Sep 14, 2017 - -
    58 - 66664 - - Paliotta v. State, Dep't of Corrections - - Sep 14, 2017 - -
    56 - 69749 - - City of Sparks v. Reno Newspapers - - Aug 03, 2017 - -
    55 - 69477 - - LN Mgmt. LLC v. Green Tree Servicing - - Aug 03, 2017 - -
    54 - 71652 - - Gardner v. Henderson Water Park, LLC - - Aug 03, 2017 - -
    53 - 69612 - - Rural Tel. Co. v. Pub. Utils. Comm'n - - Aug 03, 2017 - -
    52 - 70452 - - Wynn Resorts v. Eighth Jud. Dist. Ct. - - Jul 27, 2017 - -
    52 - 70050 - - Wynn Resorts v. Eighth Jud. Dist. Ct. - - Jul 27, 2017 - -
    51 - 69966 - - K&P Homes v. Christiana Trust - - Jul 27, 2017 - -
    50 - 68907 - - Renfroe v. Lakeview Loan Servicing - - Jul 27, 2017 - -
    49 - 67497 - - S. Cal. Edison v. State, Dep't of Taxation - - Jul 27, 2017 - -
    48 - 64591 - - Desai v. State - - Jul 27, 2017 - -
    47 - 68338 - - Jeffries v. State - - Jul 06, 2017 - -
    46 - 70327 - - Hefetz v. Beavor - - Jul 06, 2017 - -
    45 - 67619 - - Anselmo v. Bisbee - - Jun 29, 2017 - -
    44 - 71548 - - Rawson v. Ninth Jud. Dist. Ct. - - Jun 29, 2017 - -
    43 - 69385 - - Washoe Cty. Sch. Dist. v. White - - Jun 29, 2017 - -
    42 - 68994 - - Delucchi v. Songer - - Jun 29, 2017 - -
    41 - 70311 - - Brioady v. State - - Jun 29, 2017 - -
    40 - 70055 - - Malfitano v. County of Storey - - Jun 29, 2017 - -
    39 - 69100 - - Comm'n on Ethics v. Hansen - - Jun 29, 2017 - -
    38 - 70210 - - In re Parental Rights as to R.T. - - Jun 29, 2017 - -
    37 - 68471 - - Pizarro-Ortega v. Cervantes-Lopez - - Jun 22, 2017 - -
    36 - 70500 - - City of Henderson v. Amado - - Jun 22, 2017 - -
    35 - 69499 - - Bd. of Review v. Second Jud. Dist. Ct. - - Jun 22, 2017 - -
    34 - 69400 - - Nationstar Mortg. v. SFR Invs. Pool 1 - - Jun 22, 2017 - -
    33 - 69381 - - Bertsch v. Eighth Jud. Dist. Ct. - - Jun 22, 2017 - -
    32 - 69166 - - Nguyen v. Boynes - - Jun 22, 2017 - -
    31 - 68710 - - Pimentel v. State - - Jun 22, 2017 - -
    30 - 61415 - - Vaile v. Vaile - - Jun 22, 2017 - -
    30 - 62797 - - - - Jun 22, 2017 - -
    29 - 70446 - - O'Neal v. Hudson - - Jun 01, 2017 - -
    28 - 70119 - - A.J. v. Eighth Jud. Dist. Ct. - - Jun 01, 2017 - -
    27 - 69773 - - Sargeant v. Henderson Taxi - - Jun 01, 2017 - -
    26 - 68542 - - In re Davis Family Heritage Trust - - May 25, 2017 - -
    26 - 68948 - - In re Davis Family Heritage Trust - - May 25, 2017 - -
    25 - 68346 - - Iliescu v. Steppan - - May 25, 2017 - -
    24 - 68292 - - - - May 25, 2017 - -
    24 - 66772 - - Klabacka v. Nelson - - May 25, 2017 - -
    23 - 62009 - - In re D.T. - - May 25, 2017 - -
    22 - 70143 - - In re Discipline of Treffinger - - May 11, 2017 - -
    21 - 69210 - - In re Parental Rights as to M.M.L. - - May 11, 2017 - -
    20 - 70069 - - Stewart v. State - - May 04, 2017 - -
    19 - 66231 - - In re Connell Living Trust - - May 04, 2017 - -
    19 - 68046 - - - - May 04, 2017 - -
    19 - 67782 - - - - May 04, 2017 - -
    18 - 69208 - - Pub. Employees' Ret. Sys. of Nev. v. Gitter - - Apr 27, 2017 - -
    18 - 69939 - - - - Apr 27, 2017 - -
    18 - 69961 - - - - Apr 27, 2017 - -
    17 - 71089 - - Solid v. Eighth Jud. Dist. Ct. - - Apr 27, 2017 - -
    16 - 68450 - - Ramsey v. City of N. Las Vegas - - Apr 13, 2017 - -
    15 - 66565 - - Petit v. Adrianzen - - Apr 13, 2017 - -
    14 - 69920 - - New Horizon Kids Quest III v. Dist. Ct. - - Apr 06, 2017 - -
    13 - 71398 - - TRP Int'l v. Proimtu MMI - - Apr 06, 2017 - -
    12 - 70795 - - Att'y Gen. v. Justice Ct. (Escalante) - - Apr 06, 2017 - -
    11 - 68239 - - Renteria-Novoa v. State - - Mar 30, 2017 - -
    10 - 69408 - - Western Cab Co. v. Eighth Jud. Dist. Ct. - - Mar 16, 2017 - -
    9 - 69060 - - Simmons v. Briones - - Mar 02, 2017 - -
    8 - 68029 - - In re Frei Irrevocable Trust - - Mar 02, 2017 - -
    7 - 70591 - - Righetti v. Eighth Jud. Dist. Ct. - - Feb 16, 2017 - -
    6 - 67596 - - - - Feb 02, 2017 - -
    6 - 67363 - - Shapiro v. Welt - - Feb 02, 2017 - -
    5 - 68630 - - Saticoy Bay LLC v. Wells Fargo - - Jan 26, 2017 - -
    4 - 68948 - - In re Davis Family Heritage Trust - - Jan 26, 2017 - -
    4 - 68542 - - In re Davis Family Heritage Trust - - Jan 26, 2017 - -
    3 - 68431 - - Saticoy Bay LLC v. JPMorgan Chase Bank - - Jan 26, 2017 - -
    2 - 66888 - - Poremba v. S. Nev. Paving - - Jan 26, 2017 - -
    1 - 63581 - - Village League v. State, Bd. of Equalization - - Jan 26, 2017 - -
    83 - 69218 - - Leavitt v. State - - Dec 29, 2016 - -
    82 - 69335 - - Dykema v. Del Webb Communities, Inc. - - Dec 29, 2016 - -
    81 - 68033 - - Estate of Adams v. Fallini - - Dec 29, 2016 - -
    80 - 69065 - - Kaplan v. Dutra - - Dec 01, 2016 - -
    79 - 69566 - - Mayo v. Eighth Jud. Dist. Ct. - - Nov 23, 2016 - -
    78 - 69048 - - Pac. W. Bank v. Eighth Jud. Dist. Ct. - - Nov 03, 2016 - -
    77 - 68949 - - Nev. Yellow Cab v. Eighth Jud. Dist. Ct. - - Oct 27, 2016 - -
    77 - 68975 - - Nev. Yellow Cab v. Eighth Jud. Dist. Ct. - - Oct 27, 2016 - -
    76 - 68523 - - MDC Rests. v. Eighth Jud. Dist. Ct. - - Oct 27, 2016 - -
    76 - 68754 - - - - Oct 27, 2016 - -
    76 - 68770 - - - - Oct 27, 2016 - -
    76 - 68845 - - - - Oct 27, 2016 - -
    75 - 68030 - - Perry v. Terrible Herbst, Inc. - - Oct 27, 2016 - -
    74 - 67656 - - Bowman v. State - - Oct 27, 2016 - -
    73 - 69611 - - Schwartz v. Lopez - - Sep 29, 2016 - -
    73 - 70648 - - Schwartz v. Lopez - - Sep 29, 2016 - -
    72 - 68434 - - Mona v. Eighth Jud. Dist. Ct. - - Sep 29, 2016 - -
    71 - 67698 - - Davidson v. Davidson - - Sep 29, 2016 - -
    70 - 66094 - - Johnson v. Wells Fargo Bank Nat'l Ass'n - - Sep 29, 2016 - -
    69 - 65819 - - - - Sep 29, 2016 - -
    69 - 61715 - - Cashman Equip. Co. v. W. Edna Assocs. - - Sep 29, 2016 - -
    69 - 66452 - - - - Sep 29, 2016 - -
    68 - 68789 - - Sindelar v. State - - Sep 29, 2016 - -
    67 - 65856 - - Manning v. State - - Sep 15, 2016 - -
    66 - 66176-COA - - Mizrachi v. Mizrachi - - Sep 15, 2016 - -
    65 - 65998 - - Washington v. State - - Aug 12, 2016 - -
    64 - 66568 - - Bank of Nevada v. Petersen - - Aug 12, 2016 - -
    63 - 65985 - - Kar v. Kar - - Aug 12, 2016 - -
    62 - 65755 - - Tower Homes v. Heaton - - Aug 12, 2016 - -
    61 - 69169 - - Martinez-Hernandez v. State - - Aug 12, 2016 - -
    60 - 64403 - - McNamara v. State - - Aug 12, 2016 - -
    59 - 68545 - - State v. Eighth Jud. Dist. Ct. (Schneider) - - Aug 12, 2016 - -
    58 - 56329 - - Cornella v. Justice Court - - Aug 12, 2016 - -
    57 - 67660 - - Fritz v. Washoe County - - Aug 04, 2016 - -
    56 - 66157 - - Harrison v. Harrison - - Jul 28, 2016 - -
    55 - 66761 - - Nationstar Mortg. v. Rodriguez - - Jul 28, 2016 - -
    54 - 66697 - - McNeill v. State - - Jul 28, 2016 - -
    53 - 65562 - - Humboldt Gen. Hosp. v. Sixth Jud. Dist. Ct. - - Jul 28, 2016 - -
    52 - 65172 - - - - Jul 28, 2016 - -
    52 - 64702 - - Khoury v. Seastrand - - Jul 28, 2016 - -
    52 - 65007 - - - - Jul 28, 2016 - -
    51 - 68929 - - Grace v. Eighth Jud. Dist. Ct. - - Jul 21, 2016 - -
    50 - 66118 - - Blankenship v. State - - Jul 21, 2016 - -
    50 - 66944 - - - - Jul 21, 2016 - -
    49 - 64452 - - - - Jul 21, 2016 - -
    49 - 64349 - - Golden Rd. Motor Inn v. Islam - - Jul 21, 2016 - -
    49 - 65497 - - - - Jul 21, 2016 - -
    48 - 65364 - - Scenic Nevada, Inc. v. City of Reno - - Jun 30, 2016 - -
    47 - 67786 - - Justin v. Second Jud. Dist. Ct. - - Jun 30, 2016 - -
    46 - 66497 - - Lewis v. Lewis - - Jun 30, 2016 - -
    45 - 65598 - - In re Guardianship & Estate of Echevarria - - Jun 30, 2016 - -
    44 - 64515 - - Castaneda v. State - - Jun 16, 2016 - -
    43 - 69073 - - Sparks v. Bare - - Jun 16, 2016 - -
    42 - 67830 - - Mason v. State - - Jun 16, 2016 - -
    41 - 67927 - - Golightly & Vannah, PLLC v. TJ Allen, LLC - - Jun 02, 2016 - -
    40 - 67519 - - Harte v. State - - Jun 02, 2016 - -
    39 - 67835 - - Badger v. Eighth Jud. Dist. Ct. - - May 26, 2016 - -
    38 - 67772 - - Griffith v. Gonzales-Alpizar - - May 26, 2016 - -
    37 - 66854 - - Valdez v. Aguilar - - May 26, 2016 - -
    36 - 62720 - - Slade v. Caesars Entm't Corp. - - May 12, 2016 - -
    35 - 63178 - - Horizons at Seven Hills v. Ikon Holdings - - Apr 28, 2016 - -
    34 - 62059 - - Anderson v. Sanchez - - Apr 28, 2016 - -
    33 - 68476 - - State v. Second Jud. Dist. Ct. (Ayden A.) - - Apr 28, 2016 - -
    32 - 67777 - - Kelley v. State - - Apr 28, 2016 - -
    31 - 67756 - - Newman v. State - - Apr 28, 2016 - -
    31 - 67763 - - - - Apr 28, 2016 - -
    29 - 68626 - - Grupo Famsa v. Eighth Jud. Dist. Ct. - - Apr 21, 2016 - -
    28 - 66473 - - McClendon v. Collins - - Apr 21, 2016 - -
    27 - 65388 - - Taylor v. State - - Apr 21, 2016 - -
    26 - 65193 - - Schofield v. State - - Apr 21, 2016 - -
    25 - 67289 - - Jackson v. Groenendyke - - Apr 07, 2016 - -
    24 - 66888 - - Poremba v. S. Nev. Paving - - Apr 07, 2016 - -
    23 - 64757 - - Carroll v. State - - Apr 07, 2016 - -
    22 - 59691-COA - - Hunter v. Gang - - Apr 07, 2016 - -
    22 - 63804-COA - - Hunter v. Gang - - Apr 07, 2016 - -
    21 - 65498 - - Vu v. Second Jud. Dist. Ct. - - Mar 31, 2016 - -
    20 - 58101 - - McCarty v. State - - Mar 31, 2016 - -
    19 - 67063 - - In re Parental Rights as to M.F. - - Mar 31, 2016 - -
    18 - 65681 - - State, Emp't Sec. Div. v. Murphy - - Mar 31, 2016 - -
    17 - 58504 - - Rish v. Simao - - Mar 17, 2016 - -
    17 - 59208 - - - - Mar 17, 2016 - -
    17 - 59423 - - - - Mar 17, 2016 - -
    16 - 69580 - - Hairr v. First Jud. Dist. Ct. - - Mar 10, 2016 - -
    15 - 65419-COA - - Tom v. Innovative Home Systems - - Mar 10, 2016 - -
    15 - 66006-COA - - Tom v. Innovative Home Systems - - Mar 10, 2016 - -
    14 - 67934 - - Micone v. Micone - - Mar 03, 2016 - -
    13 - 67864 - - State, Dep't of Pub. Safety v. Coley - - Mar 03, 2016 - -
    12 - 62493-COA - - Goodwin v. Jones - - Mar 03, 2016 - -
    11 - 53626 - - Rippo v. State - - Feb 25, 2016 - -
    10 - 67465 - - NDOT v. Eighth Jud. Dist. Ct. - - Feb 25, 2016 - -
    9 - 66816-COA - - Quisano v. State - - Feb 18, 2016 - -
    8 - 67329 - - - - Feb 04, 2016 - -
    8 - 66860 - - MB America v. Alaska Pac. Leasing - - Feb 04, 2016 - -
    7 - 63960 - - In re Estate of Black - - Feb 04, 2016 - -
    6 - 65424 - - Corp. Bishop, LDS v. Seventh Jud. Dist. Ct. - - Jan 28, 2016 - -
    5 - 63180 - - Shadow Wood HOA v. N.Y. Cmty. Bancorp - - Jan 28, 2016 - -
    4 - 66851 - - City of Fernley v. State, Dep't of Tax. - - Jan 14, 2016 - -
    3 - 66177 - - Southern Highlands v. San Florentine - - Jan 14, 2016 - -
    2 - 59837 - - Principal Investments v. Harrison - - Jan 14, 2016 - -
    1 - 67127 - - Manuela H. v. Eighth Jud. Dist. Ct. - - Jan 07, 2016 - -
    103 - 62649 - - Barber v. State - - Dec 31, 2015 - -
    102 - 65143-COA - - Palmieri v. Clark County - - Dec 31, 2015 - -
    101 - 67331 - - Scott v. First Jud. Dist. Ct. - - Dec 31, 2015 - -
    100 - 64946 - - Piroozi v. Eighth Jud. Dist. Ct. - - Dec 31, 2015 - -
    99 - 64249 - - Gonzalez v. State - - Dec 31, 2015 - -
    98 - 62931 - - State v. Boston - - Dec 31, 2015 - -
    97 - 66552 - - Newell v. State - - Dec 24, 2015 - -
    96 - 66474 - - Berry v. State - - Dec 24, 2015 - -
    95 - 66410 - - In re P.S. - - Dec 24, 2015 - -
    94 - 62357 - - Fergason v. LVMPD - - Dec 24, 2015 - -
    93 - 65390-COA - - Moultrie v. State - - Dec 24, 2015 - -
    92 - 64569 - - Harrison v. Roitman - - Dec 17, 2015 - -
    91 - 65409 - - Helfstein v. Eighth Jud. Dist. Ct. - - Dec 03, 2015 - -
    90 - 64658 - - McDonald Carano Wilson v. Bourassa Law Grp. - - Dec 03, 2015 - -
    89 - 68531 - - In re Guardianship of Hailu - - Nov 16, 2015 - -
    88 - 54389 - - WPH Architecture, Inc. v. Vegas VP, LP - - Nov 05, 2015 - -
    87 - 63987 - - Valenti v. State, Dep't of Motor Vehicles - - Nov 05, 2015 - -
    86 - 66101 - - D.R. Horton, Inc. v. Eighth Jud. Dist. Ct. - - Oct 29, 2015 - -
    86 - 66085 - - D.R. Horton, Inc. v. Eighth Jud. Dist. Ct. - - Oct 29, 2015 - -
    85 - 65335 - - Becker v. Becker - - Oct 29, 2015 - -
    84 - 61324 - - Eureka Cnty. v. State Engineer - - Oct 29, 2015 - -
    84 - 63258 - - - - Oct 29, 2015 - -
    83 - 68310 - - Okada v. Eighth Jud. Dist. Ct. - - Oct 15, 2015 - -
    82 - 61305 - - Anderson v. Mandalay Corp. - - Oct 15, 2015 - -
    82 - 61871 - - - - Oct 15, 2015 - -
    81 - 59685-COA - - Michaels v. Pentair Water Pool & Spa - - Oct 01, 2015 - -
    80 - 66346 - - Tam v. Eighth Jud. Dist. Ct. - - Oct 01, 2015 - -
    79 - 65632 - - Watson Rounds v. Eighth Jud. Dist. Ct. - - Sep 24, 2015 - -
    78 - 65833 - - Benson v. State Engineer - - Sep 24, 2015 - -
    77 - 65796 - - Joanna T. v. Eighth Jud. Dist. Ct. - - Sep 24, 2015 - -
    76 - 65064 - - Baxter v. Dignity Health - - Sep 24, 2015 - -
    75 - 64694 - - In re Guardianship of N.M. - - Sep 24, 2015 - -
    74 - 64484 - - State Farm Mut. Auto. Ins. Co. v. Hansen - - Sep 24, 2015 - -
    73 - 64130 - - Am. First Fed. Credit Union v. Soro - - Sep 24, 2015 - -
    72 - 62061 - - Mardian v. Greenberg Family Trust - - Sep 24, 2015 - -
    71 - 61390 - - Mika v. Eighth Jud. Dist. Ct. - - Sep 24, 2015 - -
    71 - 60673 - - Tallman v. Eighth Jud. Dist. Ct. - - Sep 24, 2015 - -
    70 - 61131 - - In re Manhattan W. Mechanic's Lien Litig. - - Sep 24, 2015 - -
    69 - 59687 - - Land Baron Invs. v. Bonnie Springs Family LP - - Sep 17, 2015 - -
    68 - 67136 - - Bergenfield v. BAC Home Loans Servicing - - Sep 10, 2015 - -
    67 - 65460 - - Tate v. State, Bd. of Med. Exam'rs - - Sep 10, 2015 - -
    66 - 64214 - - In re Parental Rights as to A.P.M. - - Sep 10, 2015 - -
    65 - 65273-COA - - Merlino v. State - - Sep 10, 2015 - -
    64 - 61775-COA - - Frazier v. Drake - - Sep 03, 2015 - -
    63 - 66117 - - State v. Smith - - Sep 03, 2015 - -
    62 - 64881-COA - - Cassinelli v. State - - Aug 27, 2015 - -
    61 - 62965 - - Stevenson v. State - - Aug 13, 2015 - -
    60 - 64053 - - Mensah v. CorVel Corp. - - Aug 06, 2015 - -
    59 - 64047 - - - - Aug 06, 2015 - -
    59 - 63308 - - Barbara Ann Hollier Trust v. Shack - - Aug 06, 2015 - -
    58 - 63737-COA - - Johnson v. State - - Jul 30, 2015 - -
    57 - 65666 - - Double Diamond v. Second Jud. Dist. Ct. - - Jul 30, 2015 - -
    56 - 64913 - - State v. Harris - - Jul 30, 2015 - -
    55 - 62745 - - In re Montierth - - Jul 30, 2015 - -
    54 - 61640 - - - - Jul 30, 2015 - -
    54 - 61103 - - Torres v. Nev. Direct Ins. Co. - - Jul 30, 2015 - -
    53 - 65242 - - Ford v. Branch Banking & Trust Co. - - Jul 23, 2015 - -
    52 - 64135 - - Barral v. State - - Jul 23, 2015 - -
    50 - 62792-COA - - Sanders v. Sears-Page - - Jul 16, 2015 - -
    49 - 64539-COA - - Gonzales v. State - - Jul 02, 2015 - -
    48 - 65429 - - State v. Beaudion - - Jul 02, 2015 - -
    47 - 63810 - - D & D Tire v. Ouellette - - Jul 02, 2015 - -
    46 - 63492 - - Biscay v. MGM Resorts Int'l - - Jul 02, 2015 - -
    45 - 63731 - - Davis v. Ewalefo - - Jul 02, 2015 - -
    44 - 61553 - - C. Nicholas Pereos, Ltd. v. Bank of Am. - - Jul 02, 2015 - -
    43 - 64260 - - Alper v. Eighth Jud. Dist. Ct. - - Jun 25, 2015 - -
    42 - 64064 - - State, Dep't of Taxation v. Kawahara - - Jun 25, 2015 - -
    41 - 63179 - - NDOT v. Eighth Jud. Dist. Ct. - - Jun 25, 2015 - -
    40 - 56548 - - Burnside v. State - - Jun 25, 2015 - -
    39 - 55173 - - Lisle v. State - - Jun 25, 2015 - -
    38 - 62189 - - Excellence Cmty. Mgmt. v. Gilmore - - Jun 25, 2015 - -
    37 - 64750-COA - - Berry v. Feil - - Jun 11, 2015 - -
    36 - 58711 - - Rimer v. State - - Jun 11, 2015 - -
    35 - 57956 - - Gov't of Marinduque v. Placer Dome, Inc. - - Jun 11, 2015 - -
    34 - 62878-COA - - Nutton v. Sunset Station, Inc. - - Jun 11, 2015 - -
    33 - 61567 - - Fulbrook v. Allstate Ins. Co. - - Jun 04, 2015 - -
    33 - 62199 - - - - Jun 04, 2015 - -
    32 - 64287 - - Sharpe v. State - - Jun 04, 2015 - -
    31 - 63980 - - Logan v. Abe - - Jun 04, 2015 - -
    30 - 63176 - - Jennifer L. v. Eighth Jud. Dist. Ct. - - Jun 04, 2015 - -
    29 - 62840 - - Catholic Diocese, Green Bay v. John Doe 119 - - May 28, 2015 - -
    28 - 61329 - - - - May 28, 2015 - -
    28 - 60944 - - Weddell v. Sharp - - May 28, 2015 - -
    27 - 64215-COA - - Guitron v. State - - May 21, 2015 - -
    26 - 63274 - - Manning v. State - - May 07, 2015 - -
    25 - 64473 - - Nev. Dep't of Corrs. v. York Claims Servs. - - May 07, 2015 - -
    24 - 63683 - - In re L.A.W. - - May 07, 2015 - -
    23 - 63747 - - Munoz v. Branch Banking - - Apr 30, 2015 - -
    22 - 63644 - - Veil v. Bennett - - Apr 30, 2015 - -
    21 - 63076 - - Mitchell v. Eighth Jud. Dist. Ct. - - Apr 30, 2015 - -
    20 - 60527 - - - - Apr 30, 2015 - -
    20 - 59638 - - Branch Banking v. Windhaven & Tollway, LLC - - Apr 30, 2015 - -
    19 - 63896 - - Brown v. Eddie World, Inc. - - Apr 16, 2015 - -
    18 - 64623 - - Coyote Springs Inv. v. Eighth Jud. Dist. Ct. - - Apr 02, 2015 - -
    17 - 58519 - - Hohenstein v. State, Emp't Sec. Div. - - Apr 02, 2015 - -
    16 - 65000-COA - - Pitmon v. State - - Mar 26, 2015 - -
    15 - 63382 - - Cadle Co. v. Woods & Erickson, LLP - - Mar 26, 2015 - -
    15 - 63790 - - - - Mar 26, 2015 - -
    14 - 62308 - - Bluestein v. Bluestein - - Mar 26, 2015 - -
    13 - 61059 - - Bullion Monarch v. Barrick Goldstrike - - Mar 26, 2015 - -
    12 - 66876 - - Breeden v. Eighth Jud. Dist. Ct. - - Mar 05, 2015 - -
    11 - 63092 - - JED Prop. v. Coastline RE Holdings NV Corp. - - Mar 05, 2015 - -
    11 - 63359 - - - - Mar 05, 2015 - -
    10 - 63541 - - - - Mar 05, 2015 - -
    10 - 62864 - - LVMPD v. Blackjack Bonding - - Mar 05, 2015 - -
    9 - 62112 - - U.S. Bank Nat'l Ass'n v. Palmilla Dev. Co. - - Mar 05, 2015 - -
    8 - 63284 - - In re Estate of Murray - - Mar 05, 2015 - -
    7 - 59815 - - Zahavi v. State - - Feb 26, 2015 - -
    6 - 58904 - - Martinorellan v. State - - Feb 26, 2015 - -
    5 - 65122 - - Fulbright & Jaworski v. Eighth Jud. Dist. Ct. - - Feb 05, 2015 - -
    4 - 64381 - - Jones v. State, Bd. of Med. Exam'rs - - Feb 05, 2015 - -
    3 - 62107 - - Abarra v. State of Nevada - - Feb 05, 2015 - -
    2 - 61946 - - Torres v. State - - Jan 29, 2015 - -
    1 - 55220 - - Buzz Stew, LLC v. City of N. Las Vegas - - Jan 29, 2015 - -
    - - - -
    -
    - -
    - - - - - -
    - - - - - - - - - - - - - - diff --git a/tests/examples/opinions/united_states/nev_u_example.compare.json b/tests/examples/opinions/united_states/nev_u_example.compare.json deleted file mode 100644 index fa2afbd83..000000000 --- a/tests/examples/opinions/united_states/nev_u_example.compare.json +++ /dev/null @@ -1,4152 +0,0 @@ -[ - { - "case_dates": "2019-08-14", - "case_names": "Marquez-Agapito v. Calderon", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54273&csIID=54273&deLinkID=731718&onBaseDocumentNumber=19-34087", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77934", - "case_name_shorts": "Marquez-Agapito" - }, - { - "case_dates": "2019-08-13", - "case_names": "Sfr Inv.'S Pool 1, Llc v. Residential Credit Sols., Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48087&csIID=48087&deLinkID=731574&onBaseDocumentNumber=19-33976", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76858", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-13", - "case_names": "Sfr Inv.'S Pool 1, Llc v. First Horizon Home Loans", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47704&csIID=47704&deLinkID=731571&onBaseDocumentNumber=19-33973", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76475", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-13", - "case_names": "Pradd v. Centennial Riley Dev., Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54615&csIID=54615&deLinkID=731573&onBaseDocumentNumber=19-33975", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78178", - "case_name_shorts": "Pradd" - }, - { - "case_dates": "2019-08-13", - "case_names": "Lily Touchstone, Llc v. Fay Serv., Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54460&csIID=54460&deLinkID=731570&onBaseDocumentNumber=19-33972", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78065", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-13", - "case_names": "Estus v. Estus (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55226&csIID=55226&deLinkID=731572&onBaseDocumentNumber=19-33974", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78628", - "case_name_shorts": "Estus" - }, - { - "case_dates": "2019-08-08", - "case_names": "Weiss v. Dist. Ct. (Tait)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55975&csIID=55975&deLinkID=731053&onBaseDocumentNumber=19-33465", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79164", - "case_name_shorts": "Weiss" - }, - { - "case_dates": "2019-08-08", - "case_names": "Stratford Hoa v. Kingfutts Pfm, Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47921&csIID=47921&deLinkID=730941&onBaseDocumentNumber=19-33354", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76692", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-08", - "case_names": "Powell, Iii (Richard) v. Dist. Ct. (Warden)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55984&csIID=55984&deLinkID=731001&onBaseDocumentNumber=19-33413", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79172", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-08", - "case_names": "Miller (Dustin) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55930&csIID=55930&deLinkID=730946&onBaseDocumentNumber=19-33359", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79144", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-08", - "case_names": "Ln Mgmt. Llc Ser. 2742 Council Crest Ct v. U.S. Bank Nat'L Ass'N", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52540&csIID=52540&deLinkID=730942&onBaseDocumentNumber=19-33355", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77384", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-08", - "case_names": "Harris (Tiyacte) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=56013&csIID=56013&deLinkID=730996&onBaseDocumentNumber=19-33408", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79200", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-08", - "case_names": "Gunn v. Gibson, Jr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=56103&csIID=56103&deLinkID=730993&onBaseDocumentNumber=19-33405", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79275", - "case_name_shorts": "Gunn" - }, - { - "case_dates": "2019-08-08", - "case_names": "Feazeal (Travis) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46357&csIID=46357&deLinkID=730951&onBaseDocumentNumber=19-33364", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76119", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-08", - "case_names": "Clinkenbeard (Derek) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55730&csIID=55730&deLinkID=730943&onBaseDocumentNumber=19-33356", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79006", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-08", - "case_names": "Brooks (Anthony) v. The Second Judicial Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=56051&csIID=56051&deLinkID=730995&onBaseDocumentNumber=19-33407", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79237", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-08", - "case_names": "Benson (Fredrick) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55983&csIID=55983&deLinkID=731052&onBaseDocumentNumber=19-33464", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79171", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-08", - "case_names": "Banks (Jimmy) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55916&csIID=55916&deLinkID=730945&onBaseDocumentNumber=19-33358", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79136", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-06", - "case_names": "White v. Conaghan", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47948&csIID=47948&deLinkID=730706&onBaseDocumentNumber=19-33122", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76719", - "case_name_shorts": "White" - }, - { - "case_dates": "2019-08-06", - "case_names": "State v. Justice Ct. (Paglia (Michael))", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55866&csIID=55866&deLinkID=730512&onBaseDocumentNumber=19-32935", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79104", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-06", - "case_names": "Leslie (Emerson) v. Nev. Bd. Of Parole Comm'Rs", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54865&csIID=54865&deLinkID=730694&onBaseDocumentNumber=19-33111", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78351", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-06", - "case_names": "Clemente-Perez (Cesar) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55964&csIID=55964&deLinkID=730701&onBaseDocumentNumber=19-33117", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79153", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-05", - "case_names": "Franchise Tax Bd. v. Hyatt", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=21034&csIID=21034&deLinkID=730347&onBaseDocumentNumber=19-32774", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "53264", - "case_name_shorts": "Hyatt" - }, - { - "case_dates": "2019-08-02", - "case_names": "Song, M.D. v. Dist. Ct. (Pruitt)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48290&csIID=48290&deLinkID=730121&onBaseDocumentNumber=19-32573", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77061", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-02", - "case_names": "Nunn (Sammie) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=56078&csIID=56078&deLinkID=730124&onBaseDocumentNumber=19-32576", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79264", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-01", - "case_names": "Richardson v. Breeden, Esq.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54802&csIID=54802&deLinkID=729991&onBaseDocumentNumber=19-32448", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78308", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-31", - "case_names": "Jacks v. Madison Revolving Tr. 2017", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54153&csIID=54153&deLinkID=729843&onBaseDocumentNumber=19-32301", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77837", - "case_name_shorts": "Jacks" - }, - { - "case_dates": "2019-07-31", - "case_names": "Goldentree Master Fund, Ltd. v. Dist. Ct. (Eb Holdings Ii, Inc.)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45945&csIID=45945&deLinkID=729745&onBaseDocumentNumber=19-32203", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75707", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-30", - "case_names": "In Re: Guardianship Of Vandermark", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45838&csIID=45838&deLinkID=729592&onBaseDocumentNumber=19-32053", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75600", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-29", - "case_names": "The Bank Of New York Mellon v. Saticoy Bay Llc Ser. 7540 Maiden Run Ave.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45631&csIID=45631&deLinkID=729349&onBaseDocumentNumber=19-31819", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75393", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-29", - "case_names": "Smith (Mark) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55489&csIID=55489&deLinkID=729381&onBaseDocumentNumber=19-31848", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78819", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-29", - "case_names": "Scott (Steven) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55847&csIID=55847&deLinkID=729336&onBaseDocumentNumber=19-31806", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79089", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-29", - "case_names": "Saticoy Bay Llc Series 7728 Villa De La Paz v. The Bank Of New York Mellon", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48447&csIID=48447&deLinkID=729345&onBaseDocumentNumber=19-31815", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77217", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-29", - "case_names": "Saticoy Bay Llc Ser. 9076 Quarrystone v. Bank Of America, N.A.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54379&csIID=54379&deLinkID=729276&onBaseDocumentNumber=19-31751", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78020", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-29", - "case_names": "Mezamercado (Saul) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=56110&csIID=56110&deLinkID=729330&onBaseDocumentNumber=19-31800", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79281", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-29", - "case_names": "Matz v. Western Progressive-Nev., Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55749&csIID=55749&deLinkID=729338&onBaseDocumentNumber=19-31808", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79025", - "case_name_shorts": "Matz" - }, - { - "case_dates": "2019-07-29", - "case_names": "Jones v. Kasem (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55107&csIID=55107&deLinkID=729287&onBaseDocumentNumber=19-31762", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78546", - "case_name_shorts": "Jones" - }, - { - "case_dates": "2019-07-29", - "case_names": "Johnson (Wykean) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55284&csIID=55284&deLinkID=729344&onBaseDocumentNumber=19-31814", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78669", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-29", - "case_names": "In Re: The Dicicco Family Tr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55744&csIID=55744&deLinkID=729278&onBaseDocumentNumber=19-31753", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79020", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-29", - "case_names": "Elgas, Jr. (Thomas) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55345&csIID=55345&deLinkID=729342&onBaseDocumentNumber=19-31812", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78707", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-29", - "case_names": "Correos v. Ocwen Loan Serv. Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48161&csIID=48161&deLinkID=729277&onBaseDocumentNumber=19-31752", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76932", - "case_name_shorts": "Correos" - }, - { - "case_dates": "2019-07-29", - "case_names": "Canales v. Canales (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54688&csIID=54688&deLinkID=729294&onBaseDocumentNumber=19-31769", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78232", - "case_name_shorts": "Canales" - }, - { - "case_dates": "2019-07-29", - "case_names": "Campbell (Marcus) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55364&csIID=55364&deLinkID=729283&onBaseDocumentNumber=19-31758", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78726", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-29", - "case_names": "Betsinger v. Dhi Mortg. Co., Ltd.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55643&csIID=55643&deLinkID=729329&onBaseDocumentNumber=19-31799", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78942", - "case_name_shorts": "Betsinger" - }, - { - "case_dates": "2019-07-25", - "case_names": "Chersus Holdings, Llc v. Bank Of New York Mellon", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44781&csIID=44781&deLinkID=728832&onBaseDocumentNumber=19-31379", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74546", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-24", - "case_names": "Yang v. Pan", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48251&csIID=48251&deLinkID=728697&onBaseDocumentNumber=19-31246", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77022", - "case_name_shorts": "Yang" - }, - { - "case_dates": "2019-07-24", - "case_names": "Wofford (Amber) v. Warden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46371&csIID=46371&deLinkID=728647&onBaseDocumentNumber=19-31197", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76133", - "case_name_shorts": "Warden" - }, - { - "case_dates": "2019-07-24", - "case_names": "Sadler (Alex) v. Warden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46549&csIID=46549&deLinkID=728602&onBaseDocumentNumber=19-31153", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76308", - "case_name_shorts": "Warden" - }, - { - "case_dates": "2019-07-24", - "case_names": "Rio Prop.'S, Llc v. Dist. Ct. (Harris)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47660&csIID=47660&deLinkID=728654&onBaseDocumentNumber=19-31204", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76431", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-24", - "case_names": "Manning (Juan) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45219&csIID=45219&deLinkID=728688&onBaseDocumentNumber=19-31237", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74982", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-24", - "case_names": "Jsd Prop.'S, Llc v. Grant, Morris, Dodds, Pllc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44966&csIID=44966&deLinkID=728667&onBaseDocumentNumber=19-31217", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74730", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-24", - "case_names": "Halbritter v. Dist. Ct. (Beaudoin)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46442&csIID=46442&deLinkID=728684&onBaseDocumentNumber=19-31233", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76204", - "case_name_shorts": "Halbritter" - }, - { - "case_dates": "2019-07-24", - "case_names": "Grace (Nathan) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48176&csIID=48176&deLinkID=728789&onBaseDocumentNumber=19-31337", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76947", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-24", - "case_names": "Goepner (Thomas) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45601&csIID=45601&deLinkID=728659&onBaseDocumentNumber=19-31209", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75363", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-24", - "case_names": "Deutsche Bank Nat'L Tr. Co. v. Nv Eagles, Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45513&csIID=45513&deLinkID=728693&onBaseDocumentNumber=19-31242", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75275", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-24", - "case_names": "Decesare v. Blomberg", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40410&csIID=40410&deLinkID=728652&onBaseDocumentNumber=19-31202", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71193", - "case_name_shorts": "Decesare" - }, - { - "case_dates": "2019-07-24", - "case_names": "Chemeon Surface Tech., Llc v. Harris", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45608&csIID=45608&deLinkID=728651&onBaseDocumentNumber=19-31201", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75370", - "case_name_shorts": "Harris" - }, - { - "case_dates": "2019-07-24", - "case_names": "Bank Of America, N.A. v. Rjrn Holdings, Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46387&csIID=46387&deLinkID=728687&onBaseDocumentNumber=19-31236", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76149", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-24", - "case_names": "Avila-Granados (Jose) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46653&csIID=46653&deLinkID=728690&onBaseDocumentNumber=19-31239", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76412", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-24", - "case_names": "Animal Care Clinic, Inc. v. Dist. Ct. (Gama)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47674&csIID=47674&deLinkID=728656&onBaseDocumentNumber=19-31206", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76445", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-23", - "case_names": "Saticoy Bay, Llc Ser. 830 Carnegie St. v. Wells Fargo Bank, N.A.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48419&csIID=48419&deLinkID=728508&onBaseDocumentNumber=19-31059", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77189", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-23", - "case_names": "Pacific Diversified Llc v. Phh Mortg. Corp.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46067&csIID=46067&deLinkID=728430&onBaseDocumentNumber=19-30983", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75829", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-23", - "case_names": "Duke, M.D. v. Dist. Ct. (Greene)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55575&csIID=55575&deLinkID=728465&onBaseDocumentNumber=19-31017", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78899", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-22", - "case_names": "Teachers Health Trust v. Dist. Ct. (Goodsell)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55497&csIID=55497&deLinkID=728300&onBaseDocumentNumber=19-30854", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78827", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-22", - "case_names": "In Re: Sommer Family Living Tr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43695&csIID=43695&deLinkID=728160&onBaseDocumentNumber=19-30716", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73464", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-22", - "case_names": "In Re: Discipline Of Michael R. Pandullo", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55978&csIID=55978&deLinkID=728130&onBaseDocumentNumber=19-30687", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79166", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-22", - "case_names": "Bank Of America, N.A. v. Hacienda North Hoa", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54140&csIID=54140&deLinkID=728286&onBaseDocumentNumber=19-30840", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77824", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-19", - "case_names": "Johnson (Michael) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42626&csIID=42626&deLinkID=728006&onBaseDocumentNumber=19-30563", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72401", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-19", - "case_names": "Coache (Robert) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42622&csIID=42622&deLinkID=728005&onBaseDocumentNumber=19-30562", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72397", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-15", - "case_names": "Taylor v. Kilroy", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45368&csIID=45368&deLinkID=727246&onBaseDocumentNumber=19-29934", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75131", - "case_name_shorts": "Taylor" - }, - { - "case_dates": "2019-07-15", - "case_names": "Schiller v. Fid. Nat'L Title Ins. Co. C/W 74853", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45089&csIID=45089&deLinkID=727176&onBaseDocumentNumber=19-29870", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72906", - "case_name_shorts": "Schiller" - }, - { - "case_dates": "2019-07-15", - "case_names": "Schiller v. Fid. Nat'L Title Ins. Co. C/W 74853", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43131&csIID=43131&deLinkID=727176&onBaseDocumentNumber=19-29870", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72906", - "case_name_shorts": "Schiller" - }, - { - "case_dates": "2019-07-15", - "case_names": "Pankey (Ronel) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55765&csIID=55765&deLinkID=727221&onBaseDocumentNumber=19-29910", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79041", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-15", - "case_names": "Mcmurry (Pasqual) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55747&csIID=55747&deLinkID=727223&onBaseDocumentNumber=19-29912", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79023", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-15", - "case_names": "In Re: Discipline Of K. Alexandra Monaco, Esq.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55558&csIID=55558&deLinkID=727287&onBaseDocumentNumber=19-29971", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78882", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-12", - "case_names": "Zavala v. Quesada, M.D.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47821&csIID=47821&deLinkID=727031&onBaseDocumentNumber=19-29730", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76592", - "case_name_shorts": "Zavala" - }, - { - "case_dates": "2019-07-12", - "case_names": "Venetian Casino Resort, Llc v. Dist. Ct. (Anderson)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48317&csIID=48317&deLinkID=726958&onBaseDocumentNumber=19-29661", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77087", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-12", - "case_names": "Terry v. Sonnier", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54908&csIID=54908&deLinkID=727038&onBaseDocumentNumber=19-29737", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78378", - "case_name_shorts": "Terry" - }, - { - "case_dates": "2019-07-12", - "case_names": "Nolan (Ricky) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55766&csIID=55766&deLinkID=727046&onBaseDocumentNumber=19-29745", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79042", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-12", - "case_names": "Nady v. Murray", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48279&csIID=48279&deLinkID=727036&onBaseDocumentNumber=19-29735", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77050", - "case_name_shorts": "Nady" - }, - { - "case_dates": "2019-07-12", - "case_names": "Martinez (Gaston) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46533&csIID=46533&deLinkID=727027&onBaseDocumentNumber=19-29727", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76292", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-12", - "case_names": "Ln Mgmt. Llc Ser. 7947 Magic Lamp v. Bank Of America, N.A.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54796&csIID=54796&deLinkID=727013&onBaseDocumentNumber=19-29714", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78302", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-12", - "case_names": "Helix Elec. Of Nev., Llc v. Apco Constr., Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46517&csIID=46517&deLinkID=727020&onBaseDocumentNumber=19-29720", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76276", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-12", - "case_names": "Garcia (Katrina) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55840&csIID=55840&deLinkID=727090&onBaseDocumentNumber=19-29787", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79083", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-12", - "case_names": "Garcia (Katrina) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55839&csIID=55839&deLinkID=727087&onBaseDocumentNumber=19-29784", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79082", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-12", - "case_names": "Dell'Oro v. Kemp", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55526&csIID=55526&deLinkID=727045&onBaseDocumentNumber=19-29744", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78850", - "case_name_shorts": "Dell'Oro" - }, - { - "case_dates": "2019-07-12", - "case_names": "Copeland (Marcus) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55514&csIID=55514&deLinkID=727865&onBaseDocumentNumber=19-29741", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78838", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-12", - "case_names": "Banda (Richard) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55404&csIID=55404&deLinkID=727040&onBaseDocumentNumber=19-29739", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78752", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-11", - "case_names": "Silver State Schools Credit Union v. Oella Ridge Tr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46623&csIID=46623&deLinkID=726828&onBaseDocumentNumber=19-29534", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76382", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-11", - "case_names": "Reed (David) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55568&csIID=55568&deLinkID=726832&onBaseDocumentNumber=19-29538", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78892", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-11", - "case_names": "Merrell (Samantha) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55472&csIID=55472&deLinkID=726836&onBaseDocumentNumber=19-29542", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78802", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-11", - "case_names": "In Re: Petition Of Hensley", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55005&csIID=55005&deLinkID=726825&onBaseDocumentNumber=19-29531", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78462", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-11", - "case_names": "Fitzgerald v. Isla At South Shores Hoa", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55346&csIID=55346&deLinkID=726771&onBaseDocumentNumber=19-29478", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78708", - "case_name_shorts": "Fitzgerald" - }, - { - "case_dates": "2019-07-11", - "case_names": "Barnes, Ii v. Dist. Ct. (Farmers Grp., Inc.)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48298&csIID=48298&deLinkID=726891&onBaseDocumentNumber=19-29595", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77069", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-10", - "case_names": "Washoe Cty. v. Sawyer", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54339&csIID=54339&deLinkID=726547&onBaseDocumentNumber=19-29258", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77980", - "case_name_shorts": "Sawyer" - }, - { - "case_dates": "2019-07-10", - "case_names": "Warden v. Jakes (Preston)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48358&csIID=48358&deLinkID=726575&onBaseDocumentNumber=19-29286", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77128", - "case_name_shorts": "Warden" - }, - { - "case_dates": "2019-07-10", - "case_names": "Robles (Verenise) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46643&csIID=46643&deLinkID=726577&onBaseDocumentNumber=19-29288", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76402", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-10", - "case_names": "Renown Health v. Dist. Ct. (The Estate Of Reno B. (\"Kelly\") Testolin)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55256&csIID=55256&deLinkID=726542&onBaseDocumentNumber=19-29253", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78641", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-10", - "case_names": "Mundo (Jonathan) v. Director", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48478&csIID=48478&deLinkID=726576&onBaseDocumentNumber=19-29287", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77247", - "case_name_shorts": "Director" - }, - { - "case_dates": "2019-07-10", - "case_names": "Mcmurry (Pasqual) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55583&csIID=55583&deLinkID=726574&onBaseDocumentNumber=19-29285", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78907", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-10", - "case_names": "Lopez, Jr. (Osvaldo) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45518&csIID=45518&deLinkID=726572&onBaseDocumentNumber=19-29283", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75280", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-10", - "case_names": "In Re: Discipline Of Alexis A. Plunkett", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55714&csIID=55714&deLinkID=726624&onBaseDocumentNumber=19-29335", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79000", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-10", - "case_names": "In Re: Application Of Geck", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48028&csIID=48028&deLinkID=726570&onBaseDocumentNumber=19-29281", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76799", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-10", - "case_names": "In Re Discipline Of David R. Hunt, Esq.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55646&csIID=55646&deLinkID=726634&onBaseDocumentNumber=19-29345", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78945", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-10", - "case_names": "Howell (David) v. Warden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48149&csIID=48149&deLinkID=726578&onBaseDocumentNumber=19-29289", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76920", - "case_name_shorts": "Warden" - }, - { - "case_dates": "2019-07-10", - "case_names": "Herrod (Michael) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45743&csIID=45743&deLinkID=726571&onBaseDocumentNumber=19-29282", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75505", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-10", - "case_names": "Diakonos Holdings, Llc v. Nationstar Mortg., Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45858&csIID=45858&deLinkID=726568&onBaseDocumentNumber=19-29279", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75620", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-10", - "case_names": "Dayco Funding Corp. v. Dist. Ct. (Mona, Jr.)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55442&csIID=55442&deLinkID=726567&onBaseDocumentNumber=19-29278", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78785", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-10", - "case_names": "Campbell, Sr. (Jermaine) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45360&csIID=45360&deLinkID=726573&onBaseDocumentNumber=19-29284", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75123", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-10", - "case_names": "Bryan Cave Leighton Paisner Llp v. Dist. Ct. (The Estate Of Reno B. (\"Kelly\") Testolin)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55257&csIID=55257&deLinkID=726541&onBaseDocumentNumber=19-29252", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78642", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-09", - "case_names": "Shongary (Bryan) v. Warden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55354&csIID=55354&deLinkID=726454&onBaseDocumentNumber=19-29171", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78716", - "case_name_shorts": "Warden" - }, - { - "case_dates": "2019-07-09", - "case_names": "Omni Family Ltd. P'Ship v. Lubawy & Assocs., Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54523&csIID=54523&deLinkID=726327&onBaseDocumentNumber=19-29046", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78108", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-09", - "case_names": "Nv Eagles, Llc v. The Bank Of New York Mellon", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52943&csIID=52943&deLinkID=726452&onBaseDocumentNumber=19-29169", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77676", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-09", - "case_names": "Lorenzana (Angel) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55684&csIID=55684&deLinkID=726464&onBaseDocumentNumber=19-29180", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78970", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-09", - "case_names": "In Re: Reinstatement Of Chandan Manansingh", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55158&csIID=55158&deLinkID=726389&onBaseDocumentNumber=19-29108", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78582", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-09", - "case_names": "Brown (Charles) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55370&csIID=55370&deLinkID=726466&onBaseDocumentNumber=19-29182", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78732", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-09", - "case_names": "Braaten (Dale) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55653&csIID=55653&deLinkID=726460&onBaseDocumentNumber=19-29176", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78952", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-08", - "case_names": "Meyerhoff v. Roush", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54394&csIID=54394&deLinkID=726208&onBaseDocumentNumber=19-28929", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78035", - "case_name_shorts": "Meyerhoff" - }, - { - "case_dates": "2019-07-05", - "case_names": "Surman (William) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52872&csIID=52872&deLinkID=725995&onBaseDocumentNumber=19-28722", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77625", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-05", - "case_names": "Ruckdaschel (Jeromy) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55727&csIID=55727&deLinkID=726010&onBaseDocumentNumber=19-28737", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79003", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-05", - "case_names": "Padilla v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55709&csIID=55709&deLinkID=726007&onBaseDocumentNumber=19-28734", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78995", - "case_name_shorts": "Padilla" - }, - { - "case_dates": "2019-07-05", - "case_names": "Padilla (Raymond) v. Warden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55707&csIID=55707&deLinkID=726003&onBaseDocumentNumber=19-28730", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78993", - "case_name_shorts": "Warden" - }, - { - "case_dates": "2019-07-05", - "case_names": "In Re: Discipline Of M. Lani Esteban-Trinidad", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54909&csIID=54909&deLinkID=725964&onBaseDocumentNumber=19-28691", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78379", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-05", - "case_names": "In Re: Discipline Of Chad Dennie", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54878&csIID=54878&deLinkID=725963&onBaseDocumentNumber=19-28690", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78364", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-05", - "case_names": "In Re: Discipline Of Andrew D. Taylor", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54953&csIID=54953&deLinkID=725966&onBaseDocumentNumber=19-28693", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78422", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-05", - "case_names": "Hernandez (Robert) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55527&csIID=55527&deLinkID=725997&onBaseDocumentNumber=19-28724", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78851", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-05", - "case_names": "Goldberg v. Wells Fargo Home Mortg., Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55557&csIID=55557&deLinkID=725999&onBaseDocumentNumber=19-28726", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78881", - "case_name_shorts": "Goldberg" - }, - { - "case_dates": "2019-07-05", - "case_names": "Eby (Donald) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55632&csIID=55632&deLinkID=726000&onBaseDocumentNumber=19-28727", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78931", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-05", - "case_names": "A & A Tourism, Inc. v. Keeler", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54292&csIID=54292&deLinkID=725996&onBaseDocumentNumber=19-28723", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77953", - "case_name_shorts": "Keeler" - }, - { - "case_dates": "2019-07-03", - "case_names": "Taylor (Danny) v. The Eleventh Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55703&csIID=55703&deLinkID=725856&onBaseDocumentNumber=19-28586", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78989", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-03", - "case_names": "Robben v. The First Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55254&csIID=55254&deLinkID=725860&onBaseDocumentNumber=19-28590", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78639", - "case_name_shorts": "Robben" - }, - { - "case_dates": "2019-07-03", - "case_names": "Moore (James) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55699&csIID=55699&deLinkID=725859&onBaseDocumentNumber=19-28589", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78985", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-03", - "case_names": "Jack N. Tedford, Inc. v. Sms Fin. Xxvii, Llc C/W 75965", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46203&csIID=46203&deLinkID=725758&onBaseDocumentNumber=19-28489", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74898", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-03", - "case_names": "Jack N. Tedford, Inc. v. Sms Fin. Xxvii, Llc C/W 75965", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45134&csIID=45134&deLinkID=725758&onBaseDocumentNumber=19-28489", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74898", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-03", - "case_names": "Carrasco v. Garcia", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54097&csIID=54097&deLinkID=725771&onBaseDocumentNumber=19-28502", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77784", - "case_name_shorts": "Carrasco" - }, - { - "case_dates": "2019-07-03", - "case_names": "Ancheta v. Dist. Ct. (Adam S. Kutner, P.C.)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55628&csIID=55628&deLinkID=725858&onBaseDocumentNumber=19-28588", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78927", - "case_name_shorts": "Ancheta" - }, - { - "case_dates": "2019-07-02", - "case_names": "Bae v. Pennymac Loan Serv.'S, Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48221&csIID=48221&deLinkID=725637&onBaseDocumentNumber=19-28377", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76992", - "case_name_shorts": "Bae" - }, - { - "case_dates": "2019-07-01", - "case_names": "Williams (Gabrial) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44754&csIID=44754&deLinkID=725282&onBaseDocumentNumber=19-28135", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74520", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-01", - "case_names": "Sprowson, Jr. (Melvyn) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43905&csIID=43905&deLinkID=725284&onBaseDocumentNumber=19-28137", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73674", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-01", - "case_names": "Sheffield (Travis) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46438&csIID=46438&deLinkID=725285&onBaseDocumentNumber=19-28138", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76200", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-01", - "case_names": "Serrano v. Clark Cty. School Dist.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48205&csIID=48205&deLinkID=725278&onBaseDocumentNumber=19-28131", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76976", - "case_name_shorts": "Serrano" - }, - { - "case_dates": "2019-07-01", - "case_names": "Ln Mgmt. Llc-Ser. 3610 Karaoke v. Bank Of America, N.A.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45982&csIID=45982&deLinkID=725279&onBaseDocumentNumber=19-28132", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75744", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-28", - "case_names": "Brightsource Energy, Inc. v. Coyote Springs Inv., Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42496&csIID=42496&deLinkID=724972&onBaseDocumentNumber=19-27835", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72273", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-27", - "case_names": "Rocklin Covenant Grp., L.P. v. Gietzen", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45770&csIID=45770&deLinkID=724802&onBaseDocumentNumber=19-27670", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75532", - "case_name_shorts": "Gietzen" - }, - { - "case_dates": "2019-06-26", - "case_names": "Wynn Resorts Ltd. v. Dist. Ct. (Bannister) C/W 78394", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54925&csIID=54925&deLinkID=724537&onBaseDocumentNumber=19-27413", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78381", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-26", - "case_names": "Wynn Resorts Ltd. v. Dist. Ct. (Bannister) C/W 78394", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54911&csIID=54911&deLinkID=724537&onBaseDocumentNumber=19-27413", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78381", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-26", - "case_names": "Vialpando (Joshua) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46447&csIID=46447&deLinkID=724561&onBaseDocumentNumber=19-27436", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76209", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-26", - "case_names": "Snowden v. Snowden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55631&csIID=55631&deLinkID=724678&onBaseDocumentNumber=19-27549", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78930", - "case_name_shorts": "Snowden" - }, - { - "case_dates": "2019-06-26", - "case_names": "Snowden v. Snowden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55630&csIID=55630&deLinkID=724676&onBaseDocumentNumber=19-27547", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78929", - "case_name_shorts": "Snowden" - }, - { - "case_dates": "2019-06-26", - "case_names": "Robben v. Robben (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55485&csIID=55485&deLinkID=724674&onBaseDocumentNumber=19-27545", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78815", - "case_name_shorts": "Robben" - }, - { - "case_dates": "2019-06-26", - "case_names": "Rlp-Barrow Downs, Llc v. Caliber Home Loans, Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54804&csIID=54804&deLinkID=724685&onBaseDocumentNumber=19-27556", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78310", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-26", - "case_names": "Hammer v. Rasmussen", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55536&csIID=55536&deLinkID=724658&onBaseDocumentNumber=19-27530", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78860", - "case_name_shorts": "Hammer" - }, - { - "case_dates": "2019-06-26", - "case_names": "Gardner v. R&O Constr., Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48492&csIID=48492&deLinkID=724567&onBaseDocumentNumber=19-27442", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77261", - "case_name_shorts": "Gardner" - }, - { - "case_dates": "2019-06-26", - "case_names": "Efficient Enter.'S, Inc. v. Fire Insurance Exch.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45881&csIID=45881&deLinkID=724557&onBaseDocumentNumber=19-27432", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75643", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-26", - "case_names": "Dmvh, Llc v. Hoang", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55075&csIID=55075&deLinkID=724682&onBaseDocumentNumber=19-27553", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78514", - "case_name_shorts": "Hoang" - }, - { - "case_dates": "2019-06-26", - "case_names": "Collegium Fund Llc Ser. 16 v. Deutsche Bank Nat'L Tr. Co.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45115&csIID=45115&deLinkID=724563&onBaseDocumentNumber=19-27438", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74879", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-26", - "case_names": "Chung (Binh) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43888&csIID=43888&deLinkID=724554&onBaseDocumentNumber=19-27429", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73657", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-26", - "case_names": "Campbell (Keontae) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45938&csIID=45938&deLinkID=724558&onBaseDocumentNumber=19-27433", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75700", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-26", - "case_names": "Brooks (Herbert) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46016&csIID=46016&deLinkID=724560&onBaseDocumentNumber=19-27435", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75778", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-26", - "case_names": "Archuleta (Daniel) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46500&csIID=46500&deLinkID=724562&onBaseDocumentNumber=19-27437", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76259", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-26", - "case_names": "Anoruo v. Valley Health Sys., Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55197&csIID=55197&deLinkID=724662&onBaseDocumentNumber=19-27534", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78600", - "case_name_shorts": "Anoruo" - }, - { - "case_dates": "2019-06-25", - "case_names": "Fortunet, Inc. v. Playbook Publ'G, Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43156&csIID=43156&deLinkID=724486&onBaseDocumentNumber=19-27366", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72930", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-24", - "case_names": "Miller, Ii v. Burke", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52538&csIID=52538&deLinkID=724187&onBaseDocumentNumber=19-27084", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77382", - "case_name_shorts": "Burke" - }, - { - "case_dates": "2019-06-24", - "case_names": "Hammer v. Rasmussen (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55534&csIID=55534&deLinkID=724194&onBaseDocumentNumber=19-27090", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78858", - "case_name_shorts": "Hammer" - }, - { - "case_dates": "2019-06-24", - "case_names": "Contini v. Breit Mf Dream Apts. Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55380&csIID=55380&deLinkID=724188&onBaseDocumentNumber=19-27085", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78742", - "case_name_shorts": "Contini" - }, - { - "case_dates": "2019-06-24", - "case_names": "Brown v. Sandoval", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55491&csIID=55491&deLinkID=724186&onBaseDocumentNumber=19-27083", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78821", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2019-06-24", - "case_names": "Brown v. Sandoval", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55490&csIID=55490&deLinkID=724185&onBaseDocumentNumber=19-27082", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78820", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2019-06-24", - "case_names": "Brooks (Shane) v. Ndoc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55524&csIID=55524&deLinkID=724190&onBaseDocumentNumber=19-27087", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78848", - "case_name_shorts": "Ndoc" - }, - { - "case_dates": "2019-06-24", - "case_names": "Anderson v. Mcneill", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55572&csIID=55572&deLinkID=724197&onBaseDocumentNumber=19-27092", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78896", - "case_name_shorts": "Anderson" - }, - { - "case_dates": "2019-06-24", - "case_names": "Anderson v. Dist. Ct. (Mcneill)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54954&csIID=54954&deLinkID=724233&onBaseDocumentNumber=19-27126", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78423", - "case_name_shorts": "Anderson" - }, - { - "case_dates": "2019-06-21", - "case_names": "Trice v. Allied Collection Serv., Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55487&csIID=55487&deLinkID=723928&onBaseDocumentNumber=19-26842", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78817", - "case_name_shorts": "Trice" - }, - { - "case_dates": "2019-06-21", - "case_names": "Share v. Republic Servs., Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55147&csIID=55147&deLinkID=723924&onBaseDocumentNumber=19-26838", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78571", - "case_name_shorts": "Share" - }, - { - "case_dates": "2019-06-21", - "case_names": "Patterson-Baggett v. Brown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55545&csIID=55545&deLinkID=723930&onBaseDocumentNumber=19-26844", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78869", - "case_name_shorts": "Patterson-Baggett" - }, - { - "case_dates": "2019-06-21", - "case_names": "Mccandless v. Anderson (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55551&csIID=55551&deLinkID=723934&onBaseDocumentNumber=19-26847", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78875", - "case_name_shorts": "Mccandless" - }, - { - "case_dates": "2019-06-21", - "case_names": "Johnson (Anthony) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55648&csIID=55648&deLinkID=723937&onBaseDocumentNumber=19-26850", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78947", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-21", - "case_names": "In Re: Discipline Of William Gamage", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54296&csIID=54296&deLinkID=723895&onBaseDocumentNumber=19-26809", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77957", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-21", - "case_names": "In Re: Discipline Of William Gamage", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54295&csIID=54295&deLinkID=723891&onBaseDocumentNumber=19-26805", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77956", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-21", - "case_names": "In Re: Discipline Of Amy Gamage", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54475&csIID=54475&deLinkID=723896&onBaseDocumentNumber=19-26810", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78079", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-21", - "case_names": "Deutsche Bank Nat'L Tr. Co. v. Las Vegas Dev. Grp., Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45592&csIID=45592&deLinkID=723946&onBaseDocumentNumber=19-26859", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75354", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-21", - "case_names": "Cinque v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55642&csIID=55642&deLinkID=723935&onBaseDocumentNumber=19-26848", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78941", - "case_name_shorts": "Cinque" - }, - { - "case_dates": "2019-06-21", - "case_names": "Brush (Peter) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54092&csIID=54092&deLinkID=723912&onBaseDocumentNumber=19-26826", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77779", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-21", - "case_names": "Brophy v. Lambros (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54508&csIID=54508&deLinkID=723953&onBaseDocumentNumber=19-26865", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78093", - "case_name_shorts": "Brophy" - }, - { - "case_dates": "2019-06-21", - "case_names": "Banka (Jack) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55738&csIID=55738&deLinkID=724077&onBaseDocumentNumber=19-26980", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "79014", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-18", - "case_names": "Yakimchuk v. Yakimchuk", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52780&csIID=52780&deLinkID=723327&onBaseDocumentNumber=19-26267", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77571", - "case_name_shorts": "Yakimchuk" - }, - { - "case_dates": "2019-06-18", - "case_names": "Winn v. State, Dep'T Of Corr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55598&csIID=55598&deLinkID=723343&onBaseDocumentNumber=19-26283", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78922", - "case_name_shorts": "Winn" - }, - { - "case_dates": "2019-06-18", - "case_names": "Thiel (Brett) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55589&csIID=55589&deLinkID=723419&onBaseDocumentNumber=19-26356", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78913", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-18", - "case_names": "Smith (Michael) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55484&csIID=55484&deLinkID=723339&onBaseDocumentNumber=19-26279", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78814", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-18", - "case_names": "Ritchie v. Trade Show Serv.'S, Ltd.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47813&csIID=47813&deLinkID=723328&onBaseDocumentNumber=19-26268", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76584", - "case_name_shorts": "Ritchie" - }, - { - "case_dates": "2019-06-18", - "case_names": "Premier One Holdings, Inc. v. Bank Of America, N.A.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54338&csIID=54338&deLinkID=723326&onBaseDocumentNumber=19-26266", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77979", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-18", - "case_names": "Huelbig, Jr. v. Rizzo", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55418&csIID=55418&deLinkID=723333&onBaseDocumentNumber=19-26273", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78766", - "case_name_shorts": "Rizzo" - }, - { - "case_dates": "2019-06-18", - "case_names": "Heusner (Allen) v. Warden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55476&csIID=55476&deLinkID=723338&onBaseDocumentNumber=19-26278", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78806", - "case_name_shorts": "Warden" - }, - { - "case_dates": "2019-06-18", - "case_names": "Head v. Goodwin (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54790&csIID=54790&deLinkID=723332&onBaseDocumentNumber=19-26272", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78296", - "case_name_shorts": "Head" - }, - { - "case_dates": "2019-06-18", - "case_names": "Grassel, Jr. (Jerry) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54265&csIID=54265&deLinkID=723331&onBaseDocumentNumber=19-26271", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77926", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-18", - "case_names": "Braunstein v. State, Dep'T Of Corr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55434&csIID=55434&deLinkID=723337&onBaseDocumentNumber=19-26277", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78778", - "case_name_shorts": "Braunstein" - }, - { - "case_dates": "2019-06-18", - "case_names": "Benson (Thomas) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55516&csIID=55516&deLinkID=723342&onBaseDocumentNumber=19-26282", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78840", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Young (Frazier) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46092&csIID=46092&deLinkID=723096&onBaseDocumentNumber=19-26039", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75854", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Wood (Ryan) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45492&csIID=45492&deLinkID=723099&onBaseDocumentNumber=19-26041", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75254", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Williams v. Nev. Comm'N On Judicial Discipline", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55305&csIID=55305&deLinkID=723082&onBaseDocumentNumber=19-26027", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78690", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "White (Sean) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46279&csIID=46279&deLinkID=723112&onBaseDocumentNumber=19-26054", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76041", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Watson v. Helmsman Mgmt. Serv.'S", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45449&csIID=45449&deLinkID=723087&onBaseDocumentNumber=19-26032", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75211", - "case_name_shorts": "Watson" - }, - { - "case_dates": "2019-06-17", - "case_names": "Uzunova v. Ilieva", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45224&csIID=45224&deLinkID=723090&onBaseDocumentNumber=19-26035", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74987", - "case_name_shorts": "Uzunova" - }, - { - "case_dates": "2019-06-17", - "case_names": "Sigal (Jeremy) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45615&csIID=45615&deLinkID=723113&onBaseDocumentNumber=19-26055", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75377", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Scott (Quadrae) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47907&csIID=47907&deLinkID=723100&onBaseDocumentNumber=19-26042", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76678", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Rodriguez (Juan) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45780&csIID=45780&deLinkID=723086&onBaseDocumentNumber=19-26031", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75542", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Rankin (Alvin) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46219&csIID=46219&deLinkID=723110&onBaseDocumentNumber=19-26052", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75981", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Milman, M.D. v. Dist. Ct. (Green)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55262&csIID=55262&deLinkID=723083&onBaseDocumentNumber=19-26028", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78647", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Mcknight (Derrick) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48480&csIID=48480&deLinkID=723109&onBaseDocumentNumber=19-26051", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77249", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Lupercio (Pablo) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46512&csIID=46512&deLinkID=723107&onBaseDocumentNumber=19-26049", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76271", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Lizzio v. Dist. Ct. (Chavez-Belmonte)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55287&csIID=55287&deLinkID=723021&onBaseDocumentNumber=19-26021", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78672", - "case_name_shorts": "Lizzio" - }, - { - "case_dates": "2019-06-17", - "case_names": "Leahy (Andrew) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46204&csIID=46204&deLinkID=723093&onBaseDocumentNumber=19-26038", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75966", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Lawrence (Megan) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48220&csIID=48220&deLinkID=723108&onBaseDocumentNumber=19-26050", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76991", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Dang (Christina) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47852&csIID=47852&deLinkID=723092&onBaseDocumentNumber=19-26037", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76623", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Crabtree (Zackery) v. State C/W 76167", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46405&csIID=46405&deLinkID=723101&onBaseDocumentNumber=19-26043", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76166", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Crabtree (Zackery) v. State C/W 76167", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46404&csIID=46404&deLinkID=723101&onBaseDocumentNumber=19-26043", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76166", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Bond, Jr. (Carl) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46042&csIID=46042&deLinkID=723098&onBaseDocumentNumber=19-26040", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75804", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-17", - "case_names": "Alliant Commercial, Llc v. The Bank Of New York Mellon", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47794&csIID=47794&deLinkID=723088&onBaseDocumentNumber=19-26033", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76565", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-14", - "case_names": "Sierra Pacific Indus. v. Wilson, P.E.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52580&csIID=52580&deLinkID=722866&onBaseDocumentNumber=19-25867", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77413", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-14", - "case_names": "Rodelo (Arnoldo) v. Warden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55355&csIID=55355&deLinkID=722843&onBaseDocumentNumber=19-25845", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78717", - "case_name_shorts": "Warden" - }, - { - "case_dates": "2019-06-14", - "case_names": "In Re: Discipline Of Michael Hagemeyer", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54621&csIID=54621&deLinkID=722755&onBaseDocumentNumber=19-25761", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78184", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-14", - "case_names": "In Re: Discipline Of Demetrios A. Dalacas", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54913&csIID=54913&deLinkID=722778&onBaseDocumentNumber=19-25784", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78383", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-14", - "case_names": "In Re: Discipline Of David Mann", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54880&csIID=54880&deLinkID=722786&onBaseDocumentNumber=19-25792", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78366", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-14", - "case_names": "Dehoyos-Maldonado (Pablo) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55563&csIID=55563&deLinkID=722864&onBaseDocumentNumber=19-25865", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78887", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-14", - "case_names": "City Of Las Vegas v. Dist. Ct. (Branscomb)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54202&csIID=54202&deLinkID=722860&onBaseDocumentNumber=19-25861", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77872", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-14", - "case_names": "Choate (Stephen) v. Dist. Ct. (Warden)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55564&csIID=55564&deLinkID=722865&onBaseDocumentNumber=19-25866", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78888", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-14", - "case_names": "Burwell (Keith) v. State Of Nevada", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55496&csIID=55496&deLinkID=722862&onBaseDocumentNumber=19-25863", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78826", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-12", - "case_names": "Wciorka v. Malaga (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48259&csIID=48259&deLinkID=722389&onBaseDocumentNumber=19-25399", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77030", - "case_name_shorts": "Wciorka" - }, - { - "case_dates": "2019-06-12", - "case_names": "Ln Mgmt. Llc Ser. 845 Coastal Beach v. Wells Fargo Bank, N.A.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54211&csIID=54211&deLinkID=722384&onBaseDocumentNumber=19-25394", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77881", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-07", - "case_names": "Seibel v. Dist. Ct. (Desert Palace, Inc.)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46356&csIID=46356&deLinkID=721778&onBaseDocumentNumber=19-24810", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76118", - "case_name_shorts": "Seibel" - }, - { - "case_dates": "2019-06-07", - "case_names": "Michael Hohl Carson Valley v. Hellwinkel Family Ltd. P'Ship", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43514&csIID=43514&deLinkID=721803&onBaseDocumentNumber=19-24834", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73285", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-06", - "case_names": "Vision Airlines, Inc. v. Clark Cty. Dep'T Of Aviation", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47740&csIID=47740&deLinkID=721653&onBaseDocumentNumber=19-24689", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76511", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-06", - "case_names": "Trp Fund Iv, Llc v. Ditech Fin. Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54266&csIID=54266&deLinkID=721633&onBaseDocumentNumber=19-24669", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77927", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-04", - "case_names": "W. Warn Springs Tr. v. Wells Fargo Bank, N.A.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54219&csIID=54219&deLinkID=721129&onBaseDocumentNumber=19-24230", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77889", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-03", - "case_names": "Stanton v. Stanton (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55214&csIID=55214&deLinkID=720761&onBaseDocumentNumber=19-23926", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78617", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-03", - "case_names": "O'Keefe (Brian) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55359&csIID=55359&deLinkID=720763&onBaseDocumentNumber=19-23928", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78721", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-03", - "case_names": "Ln Mgmt. Llc Ser. 2543 Citrus Garden v. Fed. Nat'L Mortg. Ass'N", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54246&csIID=54246&deLinkID=720756&onBaseDocumentNumber=19-23921", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77907", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-03", - "case_names": "Kehaulani-Kama (William) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54536&csIID=54536&deLinkID=720757&onBaseDocumentNumber=19-23922", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78121", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-03", - "case_names": "Jones (Joseph) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55282&csIID=55282&deLinkID=720762&onBaseDocumentNumber=19-23927", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78667", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-03", - "case_names": "In Re: Estate Of Branch-Garner", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54147&csIID=54147&deLinkID=720753&onBaseDocumentNumber=19-23918", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77831", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-03", - "case_names": "Benson v. State, Dep'T Of Family Servs.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48389&csIID=48389&deLinkID=720773&onBaseDocumentNumber=19-23938", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77159", - "case_name_shorts": "Benson" - }, - { - "case_dates": "2019-06-03", - "case_names": "Bell v. State, Emp'T Sec. Div.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52752&csIID=52752&deLinkID=720774&onBaseDocumentNumber=19-23939", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77543", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-31", - "case_names": "Vega (Kenneth) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52969&csIID=52969&deLinkID=720505&onBaseDocumentNumber=19-23681", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77702", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-31", - "case_names": "Story, Ii v. Nichols", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54277&csIID=54277&deLinkID=720602&onBaseDocumentNumber=19-23771", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77938", - "case_name_shorts": "Nichols" - }, - { - "case_dates": "2019-05-31", - "case_names": "Sampson (Willie) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44539&csIID=44539&deLinkID=720501&onBaseDocumentNumber=19-23678", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74306", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-31", - "case_names": "Ramirez (Roberto) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43303&csIID=43303&deLinkID=720498&onBaseDocumentNumber=19-23675", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73074", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-31", - "case_names": "Kaplan (Aaron) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43164&csIID=43164&deLinkID=720524&onBaseDocumentNumber=19-23698", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72938", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-31", - "case_names": "Jpmorgan Chase Bank, N.A. v. Guberland Llc-Ser. 2", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43425&csIID=43425&deLinkID=720502&onBaseDocumentNumber=19-23679", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73196", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-31", - "case_names": "In Re: Guardianship Of Bosserman", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47927&csIID=47927&deLinkID=720515&onBaseDocumentNumber=19-23690", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76698", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-31", - "case_names": "Holmes (Wilbert) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55344&csIID=55344&deLinkID=720594&onBaseDocumentNumber=19-23763", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78706", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-31", - "case_names": "Hamrick (James) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45023&csIID=45023&deLinkID=720522&onBaseDocumentNumber=19-23696", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74787", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-31", - "case_names": "Glaster v. Dollar Tree Stores, Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44598&csIID=44598&deLinkID=720506&onBaseDocumentNumber=19-23682", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74365", - "case_name_shorts": "Glaster" - }, - { - "case_dates": "2019-05-31", - "case_names": "Fritz v. Washoe Cty.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45931&csIID=45931&deLinkID=720510&onBaseDocumentNumber=19-23685", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75693", - "case_name_shorts": "Fritz" - }, - { - "case_dates": "2019-05-31", - "case_names": "Fq Men'S Club, Inc. v. City Of Reno", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45369&csIID=45369&deLinkID=720508&onBaseDocumentNumber=19-23683", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75132", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-31", - "case_names": "Ford (Damien) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45342&csIID=45342&deLinkID=720497&onBaseDocumentNumber=19-23674", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75105", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-31", - "case_names": "Didier v. Sotolongo", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46530&csIID=46530&deLinkID=720514&onBaseDocumentNumber=19-23689", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76289", - "case_name_shorts": "Didier" - }, - { - "case_dates": "2019-05-31", - "case_names": "Cogburn Street Tr. v. U.S. Bank Nat'L Ass'N", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44750&csIID=44750&deLinkID=720503&onBaseDocumentNumber=19-23680", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74516", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-31", - "case_names": "Clemons (Demarian) v. Warden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55410&csIID=55410&deLinkID=720593&onBaseDocumentNumber=19-23762", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78758", - "case_name_shorts": "Warden" - }, - { - "case_dates": "2019-05-31", - "case_names": "Banderos (Jose) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46150&csIID=46150&deLinkID=720509&onBaseDocumentNumber=19-23684", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75912", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-30", - "case_names": "Fink v. Rands & South, Ltd.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54350&csIID=54350&deLinkID=720311&onBaseDocumentNumber=19-23497", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77991", - "case_name_shorts": "Fink" - }, - { - "case_dates": "2019-05-29", - "case_names": "Tutor Perini Bldg. Corp. v. Show Canada Indus. Us, Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44532&csIID=44532&deLinkID=720147&onBaseDocumentNumber=19-23340", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74299", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-29", - "case_names": "Stoneridge Pkwy, Llc v. Silverstone Ranch Cmty. Ass'N", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47855&csIID=47855&deLinkID=720114&onBaseDocumentNumber=19-23307", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76626", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-29", - "case_names": "Mountain Falls Acquisition Corp. v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44362&csIID=44362&deLinkID=720173&onBaseDocumentNumber=19-23366", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74130", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-29", - "case_names": "Abd Holdings, Inc. v. Jmr Inv. Properties, Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44946&csIID=44946&deLinkID=720124&onBaseDocumentNumber=19-23317", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74710", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-28", - "case_names": "Caperonis (Brian) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45319&csIID=45319&deLinkID=719756&onBaseDocumentNumber=19-22960", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75082", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-28", - "case_names": "Bustamante v. Dist. Ct. (Hernandez)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55468&csIID=55468&deLinkID=719692&onBaseDocumentNumber=19-22901", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78798", - "case_name_shorts": "Bustamante" - }, - { - "case_dates": "2019-05-24", - "case_names": "Las Vegas Review-Journal v. City Of Henderson", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43516&csIID=43516&deLinkID=719518&onBaseDocumentNumber=19-22730", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73287", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-24", - "case_names": "Errico (William) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55362&csIID=55362&deLinkID=719524&onBaseDocumentNumber=19-22736", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78724", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-24", - "case_names": "City Of Las Vegas v. Dist. Ct. (180 Land Co, Llc)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55462&csIID=55462&deLinkID=719614&onBaseDocumentNumber=19-22825", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78792", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-24", - "case_names": "Archon Corp. v. Dist. Ct. (Raider)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44502&csIID=44502&deLinkID=719519&onBaseDocumentNumber=19-22731", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74270", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-22", - "case_names": "Zuniga v. Garrison (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55222&csIID=55222&deLinkID=719092&onBaseDocumentNumber=19-22334", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78625", - "case_name_shorts": "Zuniga" - }, - { - "case_dates": "2019-05-22", - "case_names": "Yarrell (Marvin) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55343&csIID=55343&deLinkID=719105&onBaseDocumentNumber=19-22347", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78705", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-22", - "case_names": "Tomten v. Tomten", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54606&csIID=54606&deLinkID=719107&onBaseDocumentNumber=19-22349", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78169", - "case_name_shorts": "Tomten" - }, - { - "case_dates": "2019-05-22", - "case_names": "Pronesti v. Rametta (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55008&csIID=55008&deLinkID=719108&onBaseDocumentNumber=19-22350", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78465", - "case_name_shorts": "Pronesti" - }, - { - "case_dates": "2019-05-22", - "case_names": "Peoples v. Smith (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55212&csIID=55212&deLinkID=719091&onBaseDocumentNumber=19-22333", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78615", - "case_name_shorts": "Peoples" - }, - { - "case_dates": "2019-05-22", - "case_names": "Nolan (Ricky) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55228&csIID=55228&deLinkID=719131&onBaseDocumentNumber=19-22371", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78630", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-22", - "case_names": "Mccreary v. State, Dep'T Of Corr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55277&csIID=55277&deLinkID=719130&onBaseDocumentNumber=19-22370", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78662", - "case_name_shorts": "Mccreary" - }, - { - "case_dates": "2019-05-22", - "case_names": "Martin, M.D. v. Dist. Ct. (Griffin)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55335&csIID=55335&deLinkID=719212&onBaseDocumentNumber=19-22449", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78697", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-22", - "case_names": "Krendel v. Perez", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55088&csIID=55088&deLinkID=719110&onBaseDocumentNumber=19-22352", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78527", - "case_name_shorts": "Krendel" - }, - { - "case_dates": "2019-05-22", - "case_names": "Kille, Sr. v. Nev. Bd. Of Prison Comm'Rs", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55133&csIID=55133&deLinkID=719111&onBaseDocumentNumber=19-22353", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78557", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-22", - "case_names": "Kal-Mor-Usa, Llc v. Nationstar Mortg., Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47875&csIID=47875&deLinkID=719136&onBaseDocumentNumber=19-22376", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76646", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-22", - "case_names": "Jacobsen (Aaron) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54537&csIID=54537&deLinkID=719135&onBaseDocumentNumber=19-22375", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78122", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-22", - "case_names": "In Re: K.S.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55162&csIID=55162&deLinkID=719132&onBaseDocumentNumber=19-22372", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78586", - "case_name_shorts": "In Re: K.S." - }, - { - "case_dates": "2019-05-22", - "case_names": "Igbinovia (Enoma) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55419&csIID=55419&deLinkID=719106&onBaseDocumentNumber=19-22348", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78767", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-22", - "case_names": "Conte v. Conte", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55290&csIID=55290&deLinkID=719104&onBaseDocumentNumber=19-22346", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78675", - "case_name_shorts": "Conte" - }, - { - "case_dates": "2019-05-22", - "case_names": "Brown v. Brown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55009&csIID=55009&deLinkID=719133&onBaseDocumentNumber=19-22373", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78466", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2019-05-21", - "case_names": "Switch, Ltd. v. Pub. Utilities Comm'N Of Nev.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55157&csIID=55157&deLinkID=718988&onBaseDocumentNumber=19-22233", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78581", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-16", - "case_names": "Alas-Gomez (Leby) v. Warden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55285&csIID=55285&deLinkID=718268&onBaseDocumentNumber=19-21535", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78670", - "case_name_shorts": "Warden" - }, - { - "case_dates": "2019-05-15", - "case_names": "Wheeler (Davontae) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54985&csIID=54985&deLinkID=718093&onBaseDocumentNumber=19-21398", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78442", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Torres, Jr. (Narciso) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47688&csIID=47688&deLinkID=718048&onBaseDocumentNumber=19-21384", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76459", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Saticoy Bay Llc Ser. 4500 Pacific Sun v. Lakeview Loan Serv., Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45824&csIID=45824&deLinkID=717971&onBaseDocumentNumber=19-21307", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75586", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Rogers v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54823&csIID=54823&deLinkID=718089&onBaseDocumentNumber=19-21394", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78329", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Randolph, Jr. (Lovell) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47906&csIID=47906&deLinkID=718080&onBaseDocumentNumber=19-21391", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76677", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Radonski (David) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54937&csIID=54937&deLinkID=717987&onBaseDocumentNumber=19-21323", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78406", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Pennymac Holdings, Llc v. Eldorado Neighborhood Second Hoa", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46020&csIID=46020&deLinkID=717974&onBaseDocumentNumber=19-21310", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75782", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Orien v. Conway", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43750&csIID=43750&deLinkID=717973&onBaseDocumentNumber=19-21309", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73519", - "case_name_shorts": "Orien" - }, - { - "case_dates": "2019-05-15", - "case_names": "Moore (Daivion) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46178&csIID=46178&deLinkID=718071&onBaseDocumentNumber=19-21390", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75940", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Mdc Restaurants, Llc v. Dist. Ct. (Diaz)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55138&csIID=55138&deLinkID=717979&onBaseDocumentNumber=19-21315", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78562", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Marlow (Jess) v. Warden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45084&csIID=45084&deLinkID=718042&onBaseDocumentNumber=19-21378", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74848", - "case_name_shorts": "Warden" - }, - { - "case_dates": "2019-05-15", - "case_names": "Leslie, Iii (Wilbert) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46008&csIID=46008&deLinkID=718016&onBaseDocumentNumber=19-21352", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75770", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Lawes (Gordon) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46046&csIID=46046&deLinkID=717970&onBaseDocumentNumber=19-21306", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75808", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Jackson (Jovan) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46425&csIID=46425&deLinkID=718038&onBaseDocumentNumber=19-21374", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76187", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "In Re: Guardianship Of Echevarria", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46494&csIID=46494&deLinkID=717983&onBaseDocumentNumber=19-21319", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76253", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Hidalgo, Iii v. State Bar Of Nev. Disciplinary Bd.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=53003&csIID=53003&deLinkID=717986&onBaseDocumentNumber=19-21322", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77719", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Harvest Mgmt. Sub Llc v. Dist. Ct. (Morgan)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55172&csIID=55172&deLinkID=717978&onBaseDocumentNumber=19-21314", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78596", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Hardwood Flooring Liquidators, Inc. v. Northway", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45505&csIID=45505&deLinkID=717976&onBaseDocumentNumber=19-21312", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75267", - "case_name_shorts": "Northway" - }, - { - "case_dates": "2019-05-15", - "case_names": "Green (Frederic) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46398&csIID=46398&deLinkID=717994&onBaseDocumentNumber=19-21330", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76160", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Gayler (Brandyn) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47755&csIID=47755&deLinkID=718054&onBaseDocumentNumber=19-21387", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76526", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Fernandez (Kevin) v. State 76742/76743", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47972&csIID=47972&deLinkID=718047&onBaseDocumentNumber=19-21383", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76741", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Fernandez (Kevin) v. State 76742/76743", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47971&csIID=47971&deLinkID=718047&onBaseDocumentNumber=19-21383", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76741", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Fernandez (Kevin) v. State 76742/76743", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47970&csIID=47970&deLinkID=718047&onBaseDocumentNumber=19-21383", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76741", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Cox (Steven) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46160&csIID=46160&deLinkID=717989&onBaseDocumentNumber=19-21325", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75922", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Cano (Steven) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48393&csIID=48393&deLinkID=718060&onBaseDocumentNumber=19-21389", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77163", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Brown (Erick) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47817&csIID=47817&deLinkID=718043&onBaseDocumentNumber=19-21379", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76588", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Brown (Derek) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42379&csIID=42379&deLinkID=717988&onBaseDocumentNumber=19-21324", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72156", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Benson (Thomas) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46367&csIID=46367&deLinkID=718027&onBaseDocumentNumber=19-21363", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76129", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Bacon (Percy) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47892&csIID=47892&deLinkID=718088&onBaseDocumentNumber=19-21393", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76663", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Allen (Gene) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48275&csIID=48275&deLinkID=718001&onBaseDocumentNumber=19-21337", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77046", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-15", - "case_names": "Adamska v. Dist. Ct. (Adamski)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54993&csIID=54993&deLinkID=717969&onBaseDocumentNumber=19-21305", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78450", - "case_name_shorts": "Adamska" - }, - { - "case_dates": "2019-05-14", - "case_names": "Trp Fund Iv, Llc v. Nationstar Mortg., Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52588&csIID=52588&deLinkID=717800&onBaseDocumentNumber=19-21145", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77421", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-14", - "case_names": "In Re: Discipline Of Sandra Gelsi", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54529&csIID=54529&deLinkID=717850&onBaseDocumentNumber=19-21193", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78114", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-14", - "case_names": "In Re: Discipline Of Michael Hamilton", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54516&csIID=54516&deLinkID=717845&onBaseDocumentNumber=19-21188", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78101", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-14", - "case_names": "In Re: Discipline Of D Bryce Finley", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54355&csIID=54355&deLinkID=717856&onBaseDocumentNumber=19-21198", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77996", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-10", - "case_names": "Switzer v. Keller", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52550&csIID=52550&deLinkID=717158&onBaseDocumentNumber=19-20523", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77394", - "case_name_shorts": "Switzer" - }, - { - "case_dates": "2019-05-10", - "case_names": "O'Keefe (Brian) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55295&csIID=55295&deLinkID=717245&onBaseDocumentNumber=19-20609", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78680", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-10", - "case_names": "Kille, Sr. v. Calderin", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=42583&csIID=42583&deLinkID=717192&onBaseDocumentNumber=19-20557", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "72358", - "case_name_shorts": "Calderin" - }, - { - "case_dates": "2019-05-10", - "case_names": "In Re: Discipline Of Luigino Lobello", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54333&csIID=54333&deLinkID=717185&onBaseDocumentNumber=19-20550", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77974", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-10", - "case_names": "Andress-Tobiasson (Melanie) v. Nev. Comm'N On Judicial Discipline", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52760&csIID=52760&deLinkID=717200&onBaseDocumentNumber=19-20565", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77551", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-08", - "case_names": "In Re: Judicial Discipline Of Of Martin Hastings", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54727&csIID=54727&deLinkID=716836&onBaseDocumentNumber=19-20217", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78271", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-07", - "case_names": "Ramirez (Miguel) v. State, Bd. Of Parole", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55209&csIID=55209&deLinkID=716633&onBaseDocumentNumber=19-20022", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78612", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-07", - "case_names": "In Re: Resignation Of Richard Sipan", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55294&csIID=55294&deLinkID=716606&onBaseDocumentNumber=19-19996", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78679", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-07", - "case_names": "In Re: Boland Family Trust", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45806&csIID=45806&deLinkID=716651&onBaseDocumentNumber=19-20039", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75568", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-07", - "case_names": "Acc Indus., Inc. v. Hill Health, Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48057&csIID=48057&deLinkID=716676&onBaseDocumentNumber=19-20063", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76828", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-06", - "case_names": "Washington (Matthew) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55173&csIID=55173&deLinkID=716249&onBaseDocumentNumber=19-19690", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78597", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-06", - "case_names": "Snow (John) v. State (Death Penalty-Other)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55204&csIID=55204&deLinkID=716246&onBaseDocumentNumber=19-19687", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78607", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-03", - "case_names": "Garmong v. Lyon Cty. Bd. Of Comm'Rs", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44879&csIID=44879&deLinkID=715994&onBaseDocumentNumber=19-19491", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74644", - "case_name_shorts": "Garmong" - }, - { - "case_dates": "2019-05-02", - "case_names": "James, Jr. (Willie) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55248&csIID=55248&deLinkID=715896&onBaseDocumentNumber=19-19401", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78633", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-02", - "case_names": "Hayes, Jr. (James) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55219&csIID=55219&deLinkID=715891&onBaseDocumentNumber=19-19396", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78622", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-02", - "case_names": "Allen (Gene) v. The Second Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55249&csIID=55249&deLinkID=715892&onBaseDocumentNumber=19-19397", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78634", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-01", - "case_names": "In Re: Estate Of Butler", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=47693&csIID=47693&deLinkID=715552&onBaseDocumentNumber=19-19077", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76464", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "Washington v. Aa Primo Builders, Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44333&csIID=44333&deLinkID=715272&onBaseDocumentNumber=19-18809", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74101", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "Urmston (Gregory) v. State C/W 74620/74621", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44856&csIID=44856&deLinkID=715283&onBaseDocumentNumber=19-18820", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74619", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "Urmston (Gregory) v. State C/W 74620/74621", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44855&csIID=44855&deLinkID=715283&onBaseDocumentNumber=19-18820", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74619", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "Urmston (Gregory) v. State C/W 74620/74621", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44854&csIID=44854&deLinkID=715283&onBaseDocumentNumber=19-18820", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74619", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "Turley, Jr. (Donald) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45430&csIID=45430&deLinkID=715285&onBaseDocumentNumber=19-18821", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75192", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "Saticoy Bay Llc Ser. 2110 Club Meadows v. Jpmorgan Chase Bank, N.A.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45489&csIID=45489&deLinkID=715286&onBaseDocumentNumber=19-18822", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75251", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "Parker (Diondrea) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45711&csIID=45711&deLinkID=715271&onBaseDocumentNumber=19-18808", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75473", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "In Re: Resignation Of S. Fred Wheeler", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55272&csIID=55272&deLinkID=715448&onBaseDocumentNumber=19-18979", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78657", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "In Re: Resignation Of Ronald Madson", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55268&csIID=55268&deLinkID=715442&onBaseDocumentNumber=19-18973", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78653", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "In Re: Resignation Of Nicholas Drader", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55263&csIID=55263&deLinkID=715436&onBaseDocumentNumber=19-18967", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78648", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "In Re: Resignation Of Nannette Souhrada", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55270&csIID=55270&deLinkID=715445&onBaseDocumentNumber=19-18976", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78655", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "In Re: Resignation Of Matthew Huntley", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55267&csIID=55267&deLinkID=715440&onBaseDocumentNumber=19-18971", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78652", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "In Re: Resignation Of John Graves, Jr.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55264&csIID=55264&deLinkID=715438&onBaseDocumentNumber=19-18969", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78649", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "In Re: Resignation Of Gary Wood", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55273&csIID=55273&deLinkID=715452&onBaseDocumentNumber=19-18983", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78658", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "In Re: Resignation Of Fernando Guzman", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55265&csIID=55265&deLinkID=715439&onBaseDocumentNumber=19-18970", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78650", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "In Re: Resignation Of Dana Belknap", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55271&csIID=55271&deLinkID=715446&onBaseDocumentNumber=19-18977", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78656", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "In Re: Resignation Of Colleen Rice-Saande", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55269&csIID=55269&deLinkID=715444&onBaseDocumentNumber=19-18975", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78654", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "Iden (Richard) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44740&csIID=44740&deLinkID=715279&onBaseDocumentNumber=19-18816", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74506", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "Buhl (Eric) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45679&csIID=45679&deLinkID=715287&onBaseDocumentNumber=19-18823", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75441", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-30", - "case_names": "Alduenda (Joseph) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44721&csIID=44721&deLinkID=715280&onBaseDocumentNumber=19-18817", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74487", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-29", - "case_names": "Smith (Eric) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55094&csIID=55094&deLinkID=715063&onBaseDocumentNumber=19-18611", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78533", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-29", - "case_names": "Myers v. Myers", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45228&csIID=45228&deLinkID=715064&onBaseDocumentNumber=19-18612", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74991", - "case_name_shorts": "Myers" - }, - { - "case_dates": "2019-04-29", - "case_names": "Kouns v. M&T Bank By Bayview Loan Serv., Llc", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52946&csIID=52946&deLinkID=715053&onBaseDocumentNumber=19-18601", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77679", - "case_name_shorts": "Kouns" - }, - { - "case_dates": "2019-04-29", - "case_names": "Jeffries (Edward) v. Warden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54717&csIID=54717&deLinkID=715062&onBaseDocumentNumber=19-18610", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78261", - "case_name_shorts": "Warden" - }, - { - "case_dates": "2019-04-29", - "case_names": "Dozier (Esau) v. Warden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55004&csIID=55004&deLinkID=715061&onBaseDocumentNumber=19-18609", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78461", - "case_name_shorts": "Warden" - }, - { - "case_dates": "2019-04-29", - "case_names": "Deutsche Bank Nat'L Tr. Co. v. Vegas Prop. Serv.'S, Inc.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44371&csIID=44371&deLinkID=715158&onBaseDocumentNumber=19-18700", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74139", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-29", - "case_names": "Cameron, Jr. (Timmie) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52936&csIID=52936&deLinkID=715151&onBaseDocumentNumber=19-18693", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77669", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-26", - "case_names": "Whitener (Ace) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43523&csIID=43523&deLinkID=714856&onBaseDocumentNumber=19-18422", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73294", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-26", - "case_names": "Valdivieso v. Valdivieso", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48297&csIID=48297&deLinkID=714800&onBaseDocumentNumber=19-18370", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77068", - "case_name_shorts": "Valdivieso" - }, - { - "case_dates": "2019-04-26", - "case_names": "State v. Lopez (Monique)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54774&csIID=54774&deLinkID=714778&onBaseDocumentNumber=19-18350", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78280", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-26", - "case_names": "Savage v. Bergeron, Esq.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54862&csIID=54862&deLinkID=714781&onBaseDocumentNumber=19-18353", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78348", - "case_name_shorts": "Savage" - }, - { - "case_dates": "2019-04-26", - "case_names": "In Re: Petition For Change Of Name (Patterson)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52536&csIID=52536&deLinkID=714802&onBaseDocumentNumber=19-18372", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77380", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-25", - "case_names": "The Lakeshore House Ltd. P'Ship v. Bank Of The West", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45739&csIID=45739&deLinkID=714717&onBaseDocumentNumber=19-18294", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75501", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-25", - "case_names": "Slaughter (Danielle) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44289&csIID=44289&deLinkID=714571&onBaseDocumentNumber=19-18154", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74057", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-25", - "case_names": "Saticoy Bay Llc Ser. 5413 Bristol Bend Ct. v. Bank Of America, N.A.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45510&csIID=45510&deLinkID=714573&onBaseDocumentNumber=19-18156", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75272", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-25", - "case_names": "La Jolla Dev. Grp. Llc v. Bank Of America, N.A.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45118&csIID=45118&deLinkID=714672&onBaseDocumentNumber=19-18250", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74882", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-25", - "case_names": "Kemp (Tyrus) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44366&csIID=44366&deLinkID=714706&onBaseDocumentNumber=19-18283", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74134", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-25", - "case_names": "Hodges (Andrew) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44749&csIID=44749&deLinkID=714669&onBaseDocumentNumber=19-18247", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74515", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-25", - "case_names": "Donaby (Dorian) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45336&csIID=45336&deLinkID=714668&onBaseDocumentNumber=19-18246", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75099", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-25", - "case_names": "Carroll (Jason) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45644&csIID=45644&deLinkID=714707&onBaseDocumentNumber=19-18284", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75406", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-25", - "case_names": "Boyack v. Dist. Ct. (Thompson)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45760&csIID=45760&deLinkID=714654&onBaseDocumentNumber=19-18233", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "75522", - "case_name_shorts": "Boyack" - }, - { - "case_dates": "2019-04-25", - "case_names": "Abdulla v. Volungis", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40518&csIID=40518&deLinkID=714572&onBaseDocumentNumber=19-18155", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71300", - "case_name_shorts": "Abdulla" - }, - { - "case_dates": "2019-04-24", - "case_names": "Nicholson v. Nicholson", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48399&csIID=48399&deLinkID=714472&onBaseDocumentNumber=19-18058", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77169", - "case_name_shorts": "Nicholson" - }, - { - "case_dates": "2019-04-23", - "case_names": "Turner v. The Eighth Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55086&csIID=55086&deLinkID=714256&onBaseDocumentNumber=19-17851", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78525", - "case_name_shorts": "Turner" - }, - { - "case_dates": "2019-04-22", - "case_names": "Totman (Robert) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55063&csIID=55063&deLinkID=713845&onBaseDocumentNumber=19-17550", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78503", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-22", - "case_names": "Salazar v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54803&csIID=54803&deLinkID=713836&onBaseDocumentNumber=19-17541", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78309", - "case_name_shorts": "Salazar" - }, - { - "case_dates": "2019-04-22", - "case_names": "Matylinsky, Jr. (Frank) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54824&csIID=54824&deLinkID=713856&onBaseDocumentNumber=19-17561", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78330", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-22", - "case_names": "Martin (Weslie) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48246&csIID=48246&deLinkID=713837&onBaseDocumentNumber=19-17542", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77017", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-22", - "case_names": "Lara (Salvador) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55014&csIID=55014&deLinkID=713844&onBaseDocumentNumber=19-17549", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78471", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-22", - "case_names": "In Re: Discipline Of Stephen Caruso", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54154&csIID=54154&deLinkID=713915&onBaseDocumentNumber=19-17617", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77838", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-22", - "case_names": "Holmes (Wilbert) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55039&csIID=55039&deLinkID=713859&onBaseDocumentNumber=19-17564", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78494", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-22", - "case_names": "Gutzmer v. Wells Fargo Bank, N.A.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48469&csIID=48469&deLinkID=713866&onBaseDocumentNumber=19-17570", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77238", - "case_name_shorts": "Gutzmer" - }, - { - "case_dates": "2019-04-22", - "case_names": "Georgantas (Mark) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55064&csIID=55064&deLinkID=713847&onBaseDocumentNumber=19-17552", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78504", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-22", - "case_names": "Forney (John) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54864&csIID=54864&deLinkID=713831&onBaseDocumentNumber=19-17536", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78350", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-22", - "case_names": "Brown v. Brown", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55115&csIID=55115&deLinkID=713865&onBaseDocumentNumber=19-17569", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78554", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2019-04-22", - "case_names": "Biela (James) v. State (Death Penalty-Pc)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=40648&csIID=40648&deLinkID=713913&onBaseDocumentNumber=19-17615", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "71427", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-22", - "case_names": "Bacon (Percy) v. State", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54535&csIID=54535&deLinkID=713841&onBaseDocumentNumber=19-17546", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78120", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-22", - "case_names": "180 Land Co Llc v. City Of Las Vegas", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54084&csIID=54084&deLinkID=713872&onBaseDocumentNumber=19-17576", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77771", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-19", - "case_names": "Tait, M.D. v. Whittacre C/W 74960", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45196&csIID=45196&deLinkID=713668&onBaseDocumentNumber=19-17382", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74911", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-19", - "case_names": "Tait, M.D. v. Whittacre C/W 74960", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=45147&csIID=45147&deLinkID=713668&onBaseDocumentNumber=19-17382", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74911", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-19", - "case_names": "Sitton (Will) v. State (Death Penalty-Direct)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43243&csIID=43243&deLinkID=713650&onBaseDocumentNumber=19-17364", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73014", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-19", - "case_names": "Silberkraus v. Woodhouse (Ballot Issue)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=46278&csIID=46278&deLinkID=713673&onBaseDocumentNumber=19-17386", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "76040", - "case_name_shorts": "Silberkraus" - }, - { - "case_dates": "2019-04-19", - "case_names": "Righetti (Javier) v. State (Death Penalty-Direct)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=43244&csIID=43244&deLinkID=713652&onBaseDocumentNumber=19-17366", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73015", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-19", - "case_names": "In Re: Discipline Of Kevin Hansen", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54293&csIID=54293&deLinkID=713653&onBaseDocumentNumber=19-17367", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77954", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-19", - "case_names": "In Re: Discipline Of Grant Rostad", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=52630&csIID=52630&deLinkID=713660&onBaseDocumentNumber=19-17374", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77463", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-19", - "case_names": "Errico v. Stahl", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=44898&csIID=44898&deLinkID=713632&onBaseDocumentNumber=19-17346", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "74663", - "case_name_shorts": "Errico" - }, - { - "case_dates": "2019-04-18", - "case_names": "Shull, Jr. v. Dist. Ct. (The Roseman Contract)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54963&csIID=54963&deLinkID=713354&onBaseDocumentNumber=19-17095", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78432", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-18", - "case_names": "Meiring (John) v. The First Jud. Dist. Ct.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55085&csIID=55085&deLinkID=713351&onBaseDocumentNumber=19-17093", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78524", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-18", - "case_names": "Hermenson (James) v. Dist. Ct. (State)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55060&csIID=55060&deLinkID=713391&onBaseDocumentNumber=19-17130", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78500", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-18", - "case_names": "Gunn v. David (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=48385&csIID=48385&deLinkID=713363&onBaseDocumentNumber=19-17104", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "77155", - "case_name_shorts": "Gunn" - }, - { - "case_dates": "2019-04-18", - "case_names": "Choi v. Dist. Ct. (Robaina-Moralez)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55028&csIID=55028&deLinkID=713390&onBaseDocumentNumber=19-17129", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78485", - "case_name_shorts": "Choi" - }, - { - "case_dates": "2019-04-18", - "case_names": "Broadacres Open Air Marketplace, Llc v. Dist. Ct. (Perez-Camacho)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=55020&csIID=55020&deLinkID=713353&onBaseDocumentNumber=19-17094", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78477", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-17", - "case_names": "Worthen v. Dist. Ct. (Harter)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54875&csIID=54875&deLinkID=713134&onBaseDocumentNumber=19-16879", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78361", - "case_name_shorts": "Worthen" - }, - { - "case_dates": "2019-04-17", - "case_names": "Worthen v. Dist. Ct. (Harter)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54874&csIID=54874&deLinkID=713133&onBaseDocumentNumber=19-16878", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78360", - "case_name_shorts": "Worthen" - }, - { - "case_dates": "2019-04-17", - "case_names": "Roberts v. Warden", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54679&csIID=54679&deLinkID=713132&onBaseDocumentNumber=19-16877", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78223", - "case_name_shorts": "Roberts" - }, - { - "case_dates": "2019-04-17", - "case_names": "Murphy, Jr. v. Moore (Child Custody)", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54794&csIID=54794&deLinkID=713129&onBaseDocumentNumber=19-16875", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78300", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-17", - "case_names": "Anderson v. State, Dep'T Of Emp'T, Training & Rehab.", - "download_urls": "http://caseinfo.nvsupremecourt.us/document/view.do?csNameID=54698&csIID=54698&deLinkID=713130&onBaseDocumentNumber=19-16876", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "78242", - "case_name_shorts": "Anderson" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nev_u_example.html b/tests/examples/opinions/united_states/nev_u_example.html deleted file mode 100644 index c6985b176..000000000 --- a/tests/examples/opinions/united_states/nev_u_example.html +++ /dev/null @@ -1,1481 +0,0 @@ - - - - - - - - - - - - - - - - Unpublished Orders - - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - -
    - -
    - - -
    -
    -
    - - -
    - -
    - - -
    -
    - -
    - -
    -
    - - - - -
    -
    -
    -
    -
    - - -
    - - - - -
    - -
    -
    -

    Unpublished Orders

    - - -
    - -
    - -
    - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Case NumberCase TitleDate
    77934MARQUEZ-AGAPITO VS. CALDERONAug 14, 2019
    76858SFR INV.'S POOL 1, LLC VS. RESIDENTIAL CREDIT SOLS., INC.Aug 13, 2019
    78065LILY TOUCHSTONE, LLC VS. FAY SERV., LLCAug 13, 2019
    78178PRADD VS. CENTENNIAL RILEY DEV., LLCAug 13, 2019
    76475SFR INV.'S POOL 1, LLC VS. FIRST HORIZON HOME LOANSAug 13, 2019
    78628ESTUS VS. ESTUS (CHILD CUSTODY)Aug 13, 2019
    79006CLINKENBEARD (DEREK) VS. STATEAug 08, 2019
    79136BANKS (JIMMY) VS. STATEAug 08, 2019
    79144MILLER (DUSTIN) VS. STATEAug 08, 2019
    79164WEISS VS. DIST. CT. (TAIT)Aug 08, 2019
    79171BENSON (FREDRICK) VS. DIST. CT. (STATE)Aug 08, 2019
    79172POWELL, III (RICHARD) VS. DIST. CT. (WARDEN)Aug 08, 2019
    79200HARRIS (TIYACTE) VS. DIST. CT. (STATE)Aug 08, 2019
    79237BROOKS (ANTHONY) VS. THE SECOND JUDICIAL DIST. CT.Aug 08, 2019
    79275GUNN VS. GIBSON, JR.Aug 08, 2019
    76692STRATFORD HOA VS. KINGFUTTS PFM, LLCAug 08, 2019
    76119FEAZEAL (TRAVIS) VS. STATEAug 08, 2019
    77384LN MGMT. LLC SER. 2742 COUNCIL CREST CT VS. U.S. BANK NAT'L ASS'NAug 08, 2019
    78351LESLIE (EMERSON) VS. NEV. BD. OF PAROLE COMM'RSAug 06, 2019
    76719WHITE VS. CONAGHANAug 06, 2019
    79104STATE VS. JUSTICE CT. (PAGLIA (MICHAEL))Aug 06, 2019
    79153CLEMENTE-PEREZ (CESAR) VS. STATEAug 06, 2019
    53264FRANCHISE TAX BD. VS. HYATTAug 05, 2019
    77061SONG, M.D. VS. DIST. CT. (PRUITT)Aug 02, 2019
    79264NUNN (SAMMIE) VS. DIST. CT. (STATE)Aug 02, 2019
    78308RICHARDSON VS. BREEDEN, ESQ.Aug 01, 2019
    77837JACKS VS. MADISON REVOLVING TR. 2017Jul 31, 2019
    75707GOLDENTREE MASTER FUND, LTD. VS. DIST. CT. (EB HOLDINGS II, INC.)Jul 31, 2019
    75600IN RE: GUARDIANSHIP OF VANDERMARKJul 30, 2019
    75393THE BANK OF NEW YORK MELLON VS. SATICOY BAY LLC SER. 7540 MAIDEN RUN AVE.Jul 29, 2019
    78020SATICOY BAY LLC SER. 9076 QUARRYSTONE VS. BANK OF AMERICA, N.A.Jul 29, 2019
    76932CORREOS VS. OCWEN LOAN SERV. LLCJul 29, 2019
    77217SATICOY BAY LLC SERIES 7728 VILLA DE LA PAZ VS. THE BANK OF NEW YORK MELLONJul 29, 2019
    78232CANALES VS. CANALES (CHILD CUSTODY)Jul 29, 2019
    78546JONES VS. KASEM (CHILD CUSTODY)Jul 29, 2019
    79025MATZ VS. WESTERN PROGRESSIVE-NEV., INC.Jul 29, 2019
    79020IN RE: THE DICICCO FAMILY TR.Jul 29, 2019
    79089SCOTT (STEVEN) VS. STATEJul 29, 2019
    78942BETSINGER VS. DHI MORTG. CO., LTD.Jul 29, 2019
    79281MEZAMERCADO (SAUL) VS. DIST. CT. (STATE)Jul 29, 2019
    78669JOHNSON (WYKEAN) VS. STATEJul 29, 2019
    78707ELGAS, JR. (THOMAS) VS. STATEJul 29, 2019
    78726CAMPBELL (MARCUS) VS. STATEJul 29, 2019
    78819SMITH (MARK) VS. DIST. CT. (STATE)Jul 29, 2019
    74546CHERSUS HOLDINGS, LLC VS. BANK OF NEW YORK MELLONJul 25, 2019
    74730JSD PROP.'S, LLC VS. GRANT, MORRIS, DODDS, PLLCJul 24, 2019
    74982MANNING (JUAN) VS. STATEJul 24, 2019
    75363GOEPNER (THOMAS) VS. STATEJul 24, 2019
    75370CHEMEON SURFACE TECH., LLC VS. HARRISJul 24, 2019
    75275DEUTSCHE BANK NAT'L TR. CO. VS. NV EAGLES, LLCJul 24, 2019
    71193DECESARE VS. BLOMBERGJul 24, 2019
    76133WOFFORD (AMBER) VS. WARDENJul 24, 2019
    76149BANK OF AMERICA, N.A. VS. RJRN HOLDINGS, LLCJul 24, 2019
    76204HALBRITTER VS. DIST. CT. (BEAUDOIN)Jul 24, 2019
    76308SADLER (ALEX) VS. WARDENJul 24, 2019
    76412AVILA-GRANADOS (JOSE) VS. STATEJul 24, 2019
    76431RIO PROP.'S, LLC VS. DIST. CT. (HARRIS)Jul 24, 2019
    76445ANIMAL CARE CLINIC, INC. VS. DIST. CT. (GAMA)Jul 24, 2019
    76947GRACE (NATHAN) VS. DIST. CT. (STATE)Jul 24, 2019
    77022YANG VS. PANJul 24, 2019
    77189SATICOY BAY, LLC SER. 830 CARNEGIE ST. VS. WELLS FARGO BANK, N.A.Jul 23, 2019
    75829PACIFIC DIVERSIFIED LLC VS. PHH MORTG. CORP.Jul 23, 2019
    78899DUKE, M.D. VS. DIST. CT. (GREENE)Jul 23, 2019
    78827TEACHERS HEALTH TRUST VS. DIST. CT. (GOODSELL)Jul 22, 2019
    79166IN RE: DISCIPLINE OF MICHAEL R. PANDULLOJul 22, 2019
    73464IN RE: SOMMER FAMILY LIVING TR.Jul 22, 2019
    77824BANK OF AMERICA, N.A. VS. HACIENDA NORTH HOAJul 22, 2019
    72397COACHE (ROBERT) VS. STATEJul 19, 2019
    72401JOHNSON (MICHAEL) VS. STATEJul 19, 2019
    72906SCHILLER VS. FID. NAT'L TITLE INS. CO. C/W 74853Jul 15, 2019
    75131TAYLOR VS. KILROYJul 15, 2019
    72906SCHILLER VS. FID. NAT'L TITLE INS. CO. C/W 74853Jul 15, 2019
    79023MCMURRY (PASQUAL) VS. STATEJul 15, 2019
    79041PANKEY (RONEL) VS. STATEJul 15, 2019
    78882IN RE: DISCIPLINE OF K. ALEXANDRA MONACO, ESQ.Jul 15, 2019
    78838COPELAND (MARCUS) VS. STATEJul 12, 2019
    78850DELL'ORO VS. KEMPJul 12, 2019
    78752BANDA (RICHARD) VS. STATEJul 12, 2019
    79042NOLAN (RICKY) VS. STATEJul 12, 2019
    79082GARCIA (KATRINA) VS. STATEJul 12, 2019
    79083GARCIA (KATRINA) VS. STATEJul 12, 2019
    78838COPELAND (MARCUS) VS. STATEJul 12, 2019
    76292MARTINEZ (GASTON) VS. STATEJul 12, 2019
    76276HELIX ELEC. OF NEV., LLC VS. APCO CONSTR., INC.Jul 12, 2019
    76592ZAVALA VS. QUESADA, M.D.Jul 12, 2019
    77087VENETIAN CASINO RESORT, LLC VS. DIST. CT. (ANDERSON)Jul 12, 2019
    77050NADY VS. MURRAYJul 12, 2019
    78302LN MGMT. LLC SER. 7947 MAGIC LAMP VS. BANK OF AMERICA, N.A.Jul 12, 2019
    78378TERRY VS. SONNIERJul 12, 2019
    78462IN RE: PETITION OF HENSLEYJul 11, 2019
    77069BARNES, II VS. DIST. CT. (FARMERS GRP., INC.)Jul 11, 2019
    76382SILVER STATE SCHOOLS CREDIT UNION VS. OELLA RIDGE TR.Jul 11, 2019
    78802MERRELL (SAMANTHA) VS. DIST. CT. (STATE)Jul 11, 2019
    78892REED (DAVID) VS. DIST. CT. (STATE)Jul 11, 2019
    78708FITZGERALD VS. ISLA AT SOUTH SHORES HOAJul 11, 2019
    78641RENOWN HEALTH VS. DIST. CT. (THE ESTATE OF RENO B. ("KELLY") TESTOLIN)Jul 10, 2019
    78642BRYAN CAVE LEIGHTON PAISNER LLP VS. DIST. CT. (THE ESTATE OF RENO B. ("KELLY") TESTOLIN)Jul 10, 2019
    78907MCMURRY (PASQUAL) VS. STATEJul 10, 2019
    78785DAYCO FUNDING CORP. VS. DIST. CT. (MONA, JR.)Jul 10, 2019
    78945IN RE; DISCIPLINE OF DAVID R. HUNT, ESQ.Jul 10, 2019
    79000IN RE: DISCIPLINE OF ALEXIS A. PLUNKETTJul 10, 2019
    76402ROBLES (VERENISE) VS. STATEJul 10, 2019
    75620DIAKONOS HOLDINGS, LLC VS. NATIONSTAR MORTG., LLCJul 10, 2019
    75505HERROD (MICHAEL) VS. STATEJul 10, 2019
    75123CAMPBELL, SR. (JERMAINE) VS. STATEJul 10, 2019
    75280LOPEZ, JR. (OSVALDO) VS. STATEJul 10, 2019
    76920HOWELL (DAVID) VS. WARDENJul 10, 2019
    76799IN RE: APPLICATION OF GECKJul 10, 2019
    77128WARDEN VS. JAKES (PRESTON)Jul 10, 2019
    77247MUNDO (JONATHAN) VS. DIRECTORJul 10, 2019
    77980WASHOE CTY. VS. SAWYERJul 10, 2019
    77676NV EAGLES, LLC VS. THE BANK OF NEW YORK MELLONJul 09, 2019
    78582IN RE: REINSTATEMENT OF CHANDAN MANANSINGHJul 09, 2019
    78108OMNI FAMILY LTD. P'SHIP VS. LUBAWY & ASSOCS., INC.Jul 09, 2019
    78952BRAATEN (DALE) VS. STATEJul 09, 2019
    78970LORENZANA (ANGEL) VS. STATEJul 09, 2019
    78716SHONGARY (BRYAN) VS. WARDENJul 09, 2019
    78732BROWN (CHARLES) VS. STATEJul 09, 2019
    78035MEYERHOFF VS. ROUSHJul 08, 2019
    77953A & A TOURISM, INC. VS. KEELERJul 05, 2019
    77625SURMAN (WILLIAM) VS. STATEJul 05, 2019
    78379IN RE: DISCIPLINE OF M. LANI ESTEBAN-TRINIDADJul 05, 2019
    78364IN RE: DISCIPLINE OF CHAD DENNIEJul 05, 2019
    78422IN RE: DISCIPLINE OF ANDREW D. TAYLORJul 05, 2019
    78851HERNANDEZ (ROBERT) VS. STATEJul 05, 2019
    78931EBY (DONALD) VS. STATEJul 05, 2019
    79003RUCKDASCHEL (JEROMY) VS. DIST. CT. (STATE)Jul 05, 2019
    78993PADILLA (RAYMOND) VS. WARDENJul 05, 2019
    78995PADILLA VS. STATEJul 05, 2019
    78881GOLDBERG VS. WELLS FARGO HOME MORTG., INC.Jul 05, 2019
    78927ANCHETA VS. DIST. CT. (ADAM S. KUTNER, P.C.)Jul 03, 2019
    78985MOORE (JAMES) VS. DIST. CT. (STATE)Jul 03, 2019
    78989TAYLOR (DANNY) VS. THE ELEVENTH DIST. CT.Jul 03, 2019
    78639ROBBEN VS. THE FIRST JUD. DIST. CT.Jul 03, 2019
    77784CARRASCO VS. GARCIAJul 03, 2019
    74898JACK N. TEDFORD, INC. VS. SMS FIN. XXVII, LLC C/W 75965Jul 03, 2019
    74898JACK N. TEDFORD, INC. VS. SMS FIN. XXVII, LLC C/W 75965Jul 03, 2019
    76992BAE VS. PENNYMAC LOAN SERV.'S, LLCJul 02, 2019
    76976SERRANO VS. CLARK CTY. SCHOOL DIST.Jul 01, 2019
    75744LN MGMT. LLC-SER. 3610 KARAOKE VS. BANK OF AMERICA, N.A.Jul 01, 2019
    76200SHEFFIELD (TRAVIS) VS. STATEJul 01, 2019
    74520WILLIAMS (GABRIAL) VS. STATEJul 01, 2019
    73674SPROWSON, JR. (MELVYN) VS. STATEJul 01, 2019
    72273BRIGHTSOURCE ENERGY, INC. VS. COYOTE SPRINGS INV., LLCJun 28, 2019
    75532ROCKLIN COVENANT GRP., L.P. VS. GIETZENJun 27, 2019
    75700CAMPBELL (KEONTAE) VS. STATEJun 26, 2019
    75778BROOKS (HERBERT) VS. STATEJun 26, 2019
    75643EFFICIENT ENTER.'S, INC. VS. FIRE INSURANCE EXCH.Jun 26, 2019
    76259ARCHULETA (DANIEL) VS. STATEJun 26, 2019
    76209VIALPANDO (JOSHUA) VS. STATEJun 26, 2019
    73657CHUNG (BINH) VS. STATEJun 26, 2019
    74879COLLEGIUM FUND LLC SER. 16 VS. DEUTSCHE BANK NAT'L TR. CO.Jun 26, 2019
    77261GARDNER VS. R&O CONSTR., INC.Jun 26, 2019
    78381WYNN RESORTS LTD. VS. DIST. CT. (BANNISTER) C/W 78394Jun 26, 2019
    78514DMVH, LLC VS. HOANGJun 26, 2019
    78600ANORUO VS. VALLEY HEALTH SYS., LLCJun 26, 2019
    78381WYNN RESORTS LTD. VS. DIST. CT. (BANNISTER) C/W 78394Jun 26, 2019
    78310RLP-BARROW DOWNS, LLC VS. CALIBER HOME LOANS, INC.Jun 26, 2019
    78860HAMMER VS. RASMUSSENJun 26, 2019
    78815ROBBEN VS. ROBBEN (CHILD CUSTODY)Jun 26, 2019
    78929SNOWDEN VS. SNOWDENJun 26, 2019
    78930SNOWDEN VS. SNOWDENJun 26, 2019
    72930FORTUNET, INC. VS. PLAYBOOK PUBL'G, LLCJun 25, 2019
    78423ANDERSON VS. DIST. CT. (MCNEILL)Jun 24, 2019
    77382MILLER, II VS. BURKEJun 24, 2019
    78820BROWN VS. SANDOVALJun 24, 2019
    78821BROWN VS. SANDOVALJun 24, 2019
    78858HAMMER VS. RASMUSSEN (CHILD CUSTODY)Jun 24, 2019
    78848BROOKS (SHANE) VS. NDOCJun 24, 2019
    78896ANDERSON VS. MCNEILLJun 24, 2019
    78742CONTINI VS. BREIT MF DREAM APTS. LLCJun 24, 2019
    78869PATTERSON-BAGGETT VS. BROWNJun 21, 2019
    78875MCCANDLESS VS. ANDERSON (CHILD CUSTODY)Jun 21, 2019
    78817TRICE VS. ALLIED COLLECTION SERV., INC.Jun 21, 2019
    78941CINQUE VS. STATEJun 21, 2019
    78947JOHNSON (ANTHONY) VS. STATEJun 21, 2019
    79014BANKA (JACK) VS. DIST. CT. (STATE)Jun 21, 2019
    77956IN RE: DISCIPLINE OF WILLIAM GAMAGEJun 21, 2019
    77957IN RE: DISCIPLINE OF WILLIAM GAMAGEJun 21, 2019
    77779BRUSH (PETER) VS. STATEJun 21, 2019
    78571SHARE VS. REPUBLIC SERVS., INC.Jun 21, 2019
    78079IN RE: DISCIPLINE OF AMY GAMAGEJun 21, 2019
    78093BROPHY VS. LAMBROS (CHILD CUSTODY)Jun 21, 2019
    75354DEUTSCHE BANK NAT'L TR. CO. VS. LAS VEGAS DEV. GRP., LLCJun 21, 2019
    76584RITCHIE VS. TRADE SHOW SERV.'S, LTD.Jun 18, 2019
    78296HEAD VS. GOODWIN (CHILD CUSTODY)Jun 18, 2019
    77571YAKIMCHUK VS. YAKIMCHUKJun 18, 2019
    77979PREMIER ONE HOLDINGS, INC. VS. BANK OF AMERICA, N.A.Jun 18, 2019
    77926GRASSEL, JR. (JERRY) VS. STATEJun 18, 2019
    78806HEUSNER (ALLEN) VS. WARDENJun 18, 2019
    78814SMITH (MICHAEL) VS. STATEJun 18, 2019
    78778BRAUNSTEIN VS. STATE, DEP'T OF CORR.Jun 18, 2019
    78766HUELBIG, JR. VS. RIZZOJun 18, 2019
    78840BENSON (THOMAS) VS. STATEJun 18, 2019
    78913THIEL (BRETT) VS. STATEJun 18, 2019
    78922WINN VS. STATE, DEP'T OF CORR.Jun 18, 2019
    78690WILLIAMS VS. NEV. COMM'N ON JUDICIAL DISCIPLINEJun 17, 2019
    78672LIZZIO VS. DIST. CT. (CHAVEZ-BELMONTE)Jun 17, 2019
    78647MILMAN, M.D. VS. DIST. CT. (GREEN)Jun 17, 2019
    77249MCKNIGHT (DERRICK) VS. STATEJun 17, 2019
    76991LAWRENCE (MEGAN) VS. STATEJun 17, 2019
    76623DANG (CHRISTINA) VS. STATEJun 17, 2019
    76565ALLIANT COMMERCIAL, LLC VS. THE BANK OF NEW YORK MELLONJun 17, 2019
    76678SCOTT (QUADRAE) VS. STATEJun 17, 2019
    76166CRABTREE (ZACKERY) VS. STATE C/W 76167Jun 17, 2019
    76166CRABTREE (ZACKERY) VS. STATE C/W 76167Jun 17, 2019
    76271LUPERCIO (PABLO) VS. STATEJun 17, 2019
    75542RODRIGUEZ (JUAN) VS. STATEJun 17, 2019
    75966LEAHY (ANDREW) VS. STATEJun 17, 2019
    75981RANKIN (ALVIN) VS. STATEJun 17, 2019
    75854YOUNG (FRAZIER) VS. STATEJun 17, 2019
    75804BOND, JR. (CARL) VS. STATEJun 17, 2019
    76041WHITE (SEAN) VS. STATEJun 17, 2019
    75254WOOD (RYAN) VS. STATEJun 17, 2019
    75377SIGAL (JEREMY) VS. STATEJun 17, 2019
    75211WATSON VS. HELMSMAN MGMT. SERV.'SJun 17, 2019
    74987UZUNOVA VS. ILIEVAJun 17, 2019
    77413SIERRA PACIFIC INDUS. VS. WILSON, P.E.Jun 14, 2019
    77872CITY OF LAS VEGAS VS. DIST. CT. (BRANSCOMB)Jun 14, 2019
    78184IN RE: DISCIPLINE OF MICHAEL HAGEMEYERJun 14, 2019
    78383IN RE: DISCIPLINE OF DEMETRIOS A. DALACASJun 14, 2019
    78366IN RE: DISCIPLINE OF DAVID MANNJun 14, 2019
    78717RODELO (ARNOLDO) VS. WARDENJun 14, 2019
    78887DEHOYOS-MALDONADO (PABLO) VS. STATEJun 14, 2019
    78888CHOATE (STEPHEN) VS. DIST. CT. (WARDEN)Jun 14, 2019
    78826BURWELL (KEITH) VS. STATE OF NEVADAJun 14, 2019
    77881LN MGMT. LLC SER. 845 COASTAL BEACH VS. WELLS FARGO BANK, N.A.Jun 12, 2019
    77030WCIORKA VS. MALAGA (CHILD CUSTODY)Jun 12, 2019
    73285MICHAEL HOHL CARSON VALLEY VS. HELLWINKEL FAMILY LTD. P'SHIPJun 07, 2019
    76118SEIBEL VS. DIST. CT. (DESERT PALACE, INC.)Jun 07, 2019
    76511VISION AIRLINES, INC. VS. CLARK CTY. DEP'T OF AVIATIONJun 06, 2019
    77927TRP FUND IV, LLC VS. DITECH FIN. LLCJun 06, 2019
    77889W. WARN SPRINGS TR. VS. WELLS FARGO BANK, N.A.Jun 04, 2019
    77907LN MGMT. LLC SER. 2543 CITRUS GARDEN VS. FED. NAT'L MORTG. ASS'NJun 03, 2019
    77831IN RE: ESTATE OF BRANCH-GARNERJun 03, 2019
    77543BELL VS. STATE, EMP'T SEC. DIV.Jun 03, 2019
    77159BENSON VS. STATE, DEP'T OF FAMILY SERVS.Jun 03, 2019
    78121KEHAULANI-KAMA (WILLIAM) VS. STATEJun 03, 2019
    78721O'KEEFE (BRIAN) VS. STATEJun 03, 2019
    78667JONES (JOSEPH) VS. STATEJun 03, 2019
    78617STANTON VS. STANTON (CHILD CUSTODY)Jun 03, 2019
    78758CLEMONS (DEMARIAN) VS. WARDENMay 31, 2019
    78706HOLMES (WILBERT) VS. STATEMay 31, 2019
    77702VEGA (KENNETH) VS. DIST. CT. (STATE)May 31, 2019
    77938STORY, II VS. NICHOLSMay 31, 2019
    76698IN RE: GUARDIANSHIP OF BOSSERMANMay 31, 2019
    76289DIDIER VS. SOTOLONGOMay 31, 2019
    75912BANDEROS (JOSE) VS. STATEMay 31, 2019
    75693FRITZ VS. WASHOE CTY.May 31, 2019
    73074RAMIREZ (ROBERTO) VS. STATEMay 31, 2019
    73196JPMORGAN CHASE BANK, N.A. VS. GUBERLAND LLC-SER. 2May 31, 2019
    72938KAPLAN (AARON) VS. STATEMay 31, 2019
    74306SAMPSON (WILLIE) VS. STATEMay 31, 2019
    74365GLASTER VS. DOLLAR TREE STORES, INC.May 31, 2019
    74516COGBURN STREET TR. VS. U.S. BANK NAT'L ASS'NMay 31, 2019
    74787HAMRICK (JAMES) VS. STATEMay 31, 2019
    75132FQ MEN'S CLUB, INC. VS. CITY OF RENOMay 31, 2019
    75105FORD (DAMIEN) VS. STATEMay 31, 2019
    77991FINK VS. RANDS & SOUTH, LTD.May 30, 2019
    74710ABD HOLDINGS, INC. VS. JMR INV. PROPERTIES, LLCMay 29, 2019
    74299TUTOR PERINI BLDG. CORP. VS. SHOW CANADA INDUS. US, INC.May 29, 2019
    74130MOUNTAIN FALLS ACQUISITION CORP. VS. STATEMay 29, 2019
    76626STONERIDGE PKWY, LLC VS. SILVERSTONE RANCH CMTY. ASS'NMay 29, 2019
    75082CAPERONIS (BRIAN) VS. STATEMay 28, 2019
    78798BUSTAMANTE VS. DIST. CT. (HERNANDEZ)May 28, 2019
    78792CITY OF LAS VEGAS VS. DIST. CT. (180 LAND CO, LLC)May 24, 2019
    78724ERRICO (WILLIAM) VS. DIST. CT. (STATE)May 24, 2019
    74270ARCHON CORP. VS. DIST. CT. (RAIDER)May 24, 2019
    73287LAS VEGAS REVIEW-JOURNAL VS. CITY OF HENDERSONMay 24, 2019
    76646KAL-MOR-USA, LLC VS. NATIONSTAR MORTG., LLCMay 22, 2019
    78122JACOBSEN (AARON) VS. STATEMay 22, 2019
    78169TOMTEN VS. TOMTENMay 22, 2019
    78557KILLE, SR. VS. NEV. BD. OF PRISON COMM'RSMay 22, 2019
    78527KRENDEL VS. PEREZMay 22, 2019
    78586IN RE: K.S.May 22, 2019
    78465PRONESTI VS. RAMETTA (CHILD CUSTODY)May 22, 2019
    78466BROWN VS. BROWNMay 22, 2019
    78697MARTIN, M.D. VS. DIST. CT. (GRIFFIN)May 22, 2019
    78705YARRELL (MARVIN) VS. STATEMay 22, 2019
    78675CONTE VS. CONTEMay 22, 2019
    78662MCCREARY VS. STATE, DEP'T OF CORR.May 22, 2019
    78615PEOPLES VS. SMITH (CHILD CUSTODY)May 22, 2019
    78625ZUNIGA VS. GARRISON (CHILD CUSTODY)May 22, 2019
    78630NOLAN (RICKY) VS. STATEMay 22, 2019
    78767IGBINOVIA (ENOMA) VS. STATEMay 22, 2019
    78581SWITCH, LTD. VS. PUB. UTILITIES COMM'N OF NEV.May 21, 2019
    78670ALAS-GOMEZ (LEBY) VS. WARDENMay 16, 2019
    78562MDC RESTAURANTS, LLC VS. DIST. CT. (DIAZ)May 15, 2019
    78596HARVEST MGMT. SUB LLC VS. DIST. CT. (MORGAN)May 15, 2019
    78406RADONSKI (DAVID) VS. DIST. CT. (STATE)May 15, 2019
    78442WHEELER (DAVONTAE) VS. DIST. CT. (STATE)May 15, 2019
    78450ADAMSKA VS. DIST. CT. (ADAMSKI)May 15, 2019
    78329ROGERS VS. DIST. CT. (STATE)May 15, 2019
    77719HIDALGO, III VS. STATE BAR OF NEV. DISCIPLINARY BD.May 15, 2019
    77163CANO (STEVEN) VS. STATEMay 15, 2019
    77046ALLEN (GENE) VS. STATEMay 15, 2019
    76663BACON (PERCY) VS. STATEMay 15, 2019
    76677RANDOLPH, JR. (LOVELL) VS. STATEMay 15, 2019
    76526GAYLER (BRANDYN) VS. STATEMay 15, 2019
    76588BROWN (ERICK) VS. STATEMay 15, 2019
    76741FERNANDEZ (KEVIN) VS. STATE 76742/76743May 15, 2019
    76741FERNANDEZ (KEVIN) VS. STATE 76742/76743May 15, 2019
    76741FERNANDEZ (KEVIN) VS. STATE 76742/76743May 15, 2019
    76187JACKSON (JOVAN) VS. STATEMay 15, 2019
    76253IN RE: GUARDIANSHIP OF ECHEVARRIAMay 15, 2019
    76459TORRES, JR. (NARCISO) VS. STATEMay 15, 2019
    75586SATICOY BAY LLC SER. 4500 PACIFIC SUN VS. LAKEVIEW LOAN SERV., LLCMay 15, 2019
    75782PENNYMAC HOLDINGS, LLC VS. ELDORADO NEIGHBORHOOD SECOND HOAMay 15, 2019
    75770LESLIE, III (WILBERT) VS. STATEMay 15, 2019
    75922COX (STEVEN) VS. STATEMay 15, 2019
    75940MOORE (DAIVION) VS. STATEMay 15, 2019
    75808LAWES (GORDON) VS. STATEMay 15, 2019
    76160GREEN (FREDERIC) VS. STATEMay 15, 2019
    76129BENSON (THOMAS) VS. STATEMay 15, 2019
    72156BROWN (DEREK) VS. STATEMay 15, 2019
    73519ORIEN VS. CONWAYMay 15, 2019
    75267HARDWOOD FLOORING LIQUIDATORS, INC. VS. NORTHWAYMay 15, 2019
    74848MARLOW (JESS) VS. WARDENMay 15, 2019
    77421TRP FUND IV, LLC VS. NATIONSTAR MORTG., LLCMay 14, 2019
    77996IN RE: DISCIPLINE OF D BRYCE FINLEYMay 14, 2019
    78114IN RE: DISCIPLINE OF SANDRA GELSIMay 14, 2019
    78101IN RE: DISCIPLINE OF MICHAEL HAMILTONMay 14, 2019
    77974IN RE: DISCIPLINE OF LUIGINO LOBELLOMay 10, 2019
    77551ANDRESS-TOBIASSON (MELANIE) VS. NEV. COMM'N ON JUDICIAL DISCIPLINEMay 10, 2019
    77394SWITZER VS. KELLERMay 10, 2019
    72358KILLE, SR. VS. CALDERINMay 10, 2019
    78680O'KEEFE (BRIAN) VS. DIST. CT. (STATE)May 10, 2019
    78271IN RE: JUDICIAL DISCIPLINE OF OF MARTIN HASTINGSMay 08, 2019
    78612RAMIREZ (MIGUEL) VS. STATE, BD. OF PAROLEMay 07, 2019
    76828ACC INDUS., INC. VS. HILL HEALTH, LLCMay 07, 2019
    75568IN RE: BOLAND FAMILY TRUSTMay 07, 2019
    78679IN RE: RESIGNATION OF RICHARD SIPANMay 07, 2019
    78607SNOW (JOHN) VS. STATE (DEATH PENALTY-OTHER)May 06, 2019
    78597WASHINGTON (MATTHEW) VS. STATEMay 06, 2019
    74644GARMONG VS. LYON CTY. BD. OF COMM'RSMay 03, 2019
    78633JAMES, JR. (WILLIE) VS. DIST. CT. (STATE)May 02, 2019
    78634ALLEN (GENE) VS. THE SECOND JUD. DIST. CT.May 02, 2019
    78622HAYES, JR. (JAMES) VS. DIST. CT. (STATE)May 02, 2019
    76464IN RE: ESTATE OF BUTLERMay 01, 2019
    75441BUHL (ERIC) VS. STATEApr 30, 2019
    75473PARKER (DIONDREA) VS. STATEApr 30, 2019
    74619URMSTON (GREGORY) VS. STATE C/W 74620/74621Apr 30, 2019
    74619URMSTON (GREGORY) VS. STATE C/W 74620/74621Apr 30, 2019
    74619URMSTON (GREGORY) VS. STATE C/W 74620/74621Apr 30, 2019
    75192TURLEY, JR. (DONALD) VS. STATEApr 30, 2019
    75251SATICOY BAY LLC SER. 2110 CLUB MEADOWS VS. JPMORGAN CHASE BANK, N.A.Apr 30, 2019
    74101WASHINGTON VS. AA PRIMO BUILDERS, LLCApr 30, 2019
    74487ALDUENDA (JOSEPH) VS. STATEApr 30, 2019
    74506IDEN (RICHARD) VS. STATEApr 30, 2019
    78648IN RE: RESIGNATION OF NICHOLAS DRADERApr 30, 2019
    78649IN RE: RESIGNATION OF JOHN GRAVES, JR.Apr 30, 2019
    78650IN RE: RESIGNATION OF FERNANDO GUZMANApr 30, 2019
    78652IN RE: RESIGNATION OF MATTHEW HUNTLEYApr 30, 2019
    78653IN RE: RESIGNATION OF RONALD MADSONApr 30, 2019
    78654IN RE: RESIGNATION OF COLLEEN RICE-SAANDEApr 30, 2019
    78655IN RE: RESIGNATION OF NANNETTE SOUHRADAApr 30, 2019
    78656IN RE: RESIGNATION OF DANA BELKNAPApr 30, 2019
    78657IN RE: RESIGNATION OF S. FRED WHEELERApr 30, 2019
    78658IN RE: RESIGNATION OF GARY WOODApr 30, 2019
    74139DEUTSCHE BANK NAT'L TR. CO. VS. VEGAS PROP. SERV.'S, INC.Apr 29, 2019
    74991MYERS VS. MYERSApr 29, 2019
    78533SMITH (ERIC) VS. STATEApr 29, 2019
    78461DOZIER (ESAU) VS. WARDENApr 29, 2019
    78261JEFFRIES (EDWARD) VS. WARDENApr 29, 2019
    77669CAMERON, JR. (TIMMIE) VS. DIST. CT. (STATE)Apr 29, 2019
    77679KOUNS VS. M&T BANK BY BAYVIEW LOAN SERV., LLCApr 29, 2019
    77068VALDIVIESO VS. VALDIVIESOApr 26, 2019
    77380IN RE: PETITION FOR CHANGE OF NAME (PATTERSON)Apr 26, 2019
    78348SAVAGE VS. BERGERON, ESQ.Apr 26, 2019
    78280STATE VS. LOPEZ (MONIQUE)Apr 26, 2019
    73294WHITENER (ACE) VS. STATEApr 26, 2019
    71300ABDULLA VS. VOLUNGISApr 25, 2019
    74515HODGES (ANDREW) VS. STATEApr 25, 2019
    74134KEMP (TYRUS) VS. STATEApr 25, 2019
    74057SLAUGHTER (DANIELLE) VS. STATEApr 25, 2019
    74882LA JOLLA DEV. GRP. LLC VS. BANK OF AMERICA, N.A.Apr 25, 2019
    75099DONABY (DORIAN) VS. STATEApr 25, 2019
    75272SATICOY BAY LLC SER. 5413 BRISTOL BEND CT. VS. BANK OF AMERICA, N.A.Apr 25, 2019
    75406CARROLL (JASON) VS. STATEApr 25, 2019
    75501THE LAKESHORE HOUSE LTD. P'SHIP VS. BANK OF THE WESTApr 25, 2019
    75522BOYACK VS. DIST. CT. (THOMPSON)Apr 25, 2019
    77169NICHOLSON VS. NICHOLSONApr 24, 2019
    78525TURNER VS. THE EIGHTH JUD. DIST. CT.Apr 23, 2019
    78554BROWN VS. BROWNApr 22, 2019
    78494HOLMES (WILBERT) VS. STATEApr 22, 2019
    78503TOTMAN (ROBERT) VS. STATEApr 22, 2019
    78504GEORGANTAS (MARK) VS. STATEApr 22, 2019
    78471LARA (SALVADOR) VS. STATEApr 22, 2019
    78120BACON (PERCY) VS. STATEApr 22, 2019
    78350FORNEY (JOHN) VS. STATEApr 22, 2019
    78330MATYLINSKY, JR. (FRANK) VS. STATEApr 22, 2019
    78309SALAZAR VS. STATEApr 22, 2019
    77238GUTZMER VS. WELLS FARGO BANK, N.A.Apr 22, 2019
    77017MARTIN (WESLIE) VS. STATEApr 22, 2019
    77771180 LAND CO LLC VS. CITY OF LAS VEGASApr 22, 2019
    77838IN RE: DISCIPLINE OF STEPHEN CARUSOApr 22, 2019
    71427BIELA (JAMES) VS. STATE (DEATH PENALTY-PC)Apr 22, 2019
    73014SITTON (WILL) VS. STATE (DEATH PENALTY-DIRECT)Apr 19, 2019
    73015RIGHETTI (JAVIER) VS. STATE (DEATH PENALTY-DIRECT)Apr 19, 2019
    74911TAIT, M.D. VS. WHITTACRE C/W 74960Apr 19, 2019
    74911TAIT, M.D. VS. WHITTACRE C/W 74960Apr 19, 2019
    74663ERRICO VS. STAHLApr 19, 2019
    76040SILBERKRAUS VS. WOODHOUSE (BALLOT ISSUE)Apr 19, 2019
    77954IN RE: DISCIPLINE OF KEVIN HANSENApr 19, 2019
    77463IN RE: DISCIPLINE OF GRANT ROSTADApr 19, 2019
    77155GUNN VS. DAVID (CHILD CUSTODY)Apr 18, 2019
    78477BROADACRES OPEN AIR MARKETPLACE, LLC VS. DIST. CT. (PEREZ-CAMACHO)Apr 18, 2019
    78485CHOI VS. DIST. CT. (ROBAINA-MORALEZ)Apr 18, 2019
    78432SHULL, JR. VS. DIST. CT. (THE ROSEMAN CONTRACT)Apr 18, 2019
    78524MEIRING (JOHN) VS. THE FIRST JUD. DIST. CT.Apr 18, 2019
    78500HERMENSON (JAMES) VS. DIST. CT. (STATE)Apr 18, 2019
    78360WORTHEN VS. DIST. CT. (HARTER)Apr 17, 2019
    78361WORTHEN VS. DIST. CT. (HARTER)Apr 17, 2019
    78300MURPHY, JR. VS. MOORE (CHILD CUSTODY)Apr 17, 2019
    78223ROBERTS VS. WARDENApr 17, 2019
    78242ANDERSON VS. STATE, DEP'T OF EMP'T, TRAINING & REHAB.Apr 17, 2019
    -
    - -
    -
    - -
    - - - - -
    - - - - - - - - - - - - - - diff --git a/tests/examples/opinions/united_states/nevapp_example.compare.json b/tests/examples/opinions/united_states/nevapp_example.compare.json new file mode 100644 index 000000000..072eda605 --- /dev/null +++ b/tests/examples/opinions/united_states/nevapp_example.compare.json @@ -0,0 +1,35 @@ +[ + { + "case_dates": "2023-10-19", + "case_names": "Bolden v. State", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "85099-COA", + "citations": "139 Nev., Advance Opinion 46", + "case_name_shorts": "Bolden" + }, + { + "case_dates": "2023-10-05", + "case_names": "Eivazi v. Eivazi", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "84427-COA", + "citations": "139 Nev., Advance Opinion 44", + "case_name_shorts": "Eivazi" + }, + { + "case_dates": "2023-09-28", + "case_names": "Olvera v. Wynn Las Vegas", + "download_urls": "placeholder", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "85122-COA", + "citations": "139 Nev., Advance Opinion 41", + "case_name_shorts": "Olvera" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nevapp_example.json b/tests/examples/opinions/united_states/nevapp_example.json new file mode 100644 index 000000000..b3dbfdf52 --- /dev/null +++ b/tests/examples/opinions/united_states/nevapp_example.json @@ -0,0 +1,122 @@ +[ + { + "advanceNumber": 47, + "caseNumber": "85249", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=64747", + "caseTitle": "Tough Turtle Turf, LLC v. Scott", + "date": "2023-11-02T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=64747&csIID=64747&deLinkID=921968&onBaseDocumentNumber=23-35608" + }, + { + "advanceNumber": 46, + "caseNumber": "85099-COA", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=66173", + "caseTitle": "Bolden v. State", + "date": "2023-10-19T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=66173&csIID=66173&deLinkID=920335&onBaseDocumentNumber=23-34039" + }, + { + "advanceNumber": 45, + "caseNumber": "84161", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=63256", + "caseTitle": "Deutsche Bank Nat'l Tr. v. Fid. Nat'l", + "date": "2023-10-12T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=63256&csIID=63256&deLinkID=919543&onBaseDocumentNumber=23-33279" + }, + { + "advanceNumber": 44, + "caseNumber": "84427-COA", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=65930", + "caseTitle": "Eivazi v. Eivazi", + "date": "2023-10-05T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=65930&csIID=65930&deLinkID=918875&onBaseDocumentNumber=23-32631" + }, + { + "advanceNumber": 43, + "caseNumber": "83830", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=62803", + "caseTitle": "Killebrew v. Donohue", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=62803&csIID=62803&deLinkID=918018&onBaseDocumentNumber=23-31827" + }, + { + "advanceNumber": 42, + "caseNumber": "83622", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=62533", + "caseTitle": "Aldape v. State", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=62533&csIID=62533&deLinkID=918016&onBaseDocumentNumber=23-31825" + }, + { + "advanceNumber": 41, + "caseNumber": "85122-COA", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=66537", + "caseTitle": "Olvera v. Wynn Las Vegas", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=66537&csIID=66537&deLinkID=918011&onBaseDocumentNumber=23-31820" + }, + { + "advanceNumber": 40, + "caseNumber": "85111", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=64528", + "caseTitle": "Orbitz Worldwide v. Eighth Jud. Dist. Ct.", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=64528&csIID=64528&deLinkID=918008&onBaseDocumentNumber=23-31817" + }, + { + "advanceNumber": 39, + "caseNumber": "84685", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=63949", + "caseTitle": "Kelley v. Kelley", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=63949&csIID=63949&deLinkID=918006&onBaseDocumentNumber=23-31815" + }, + { + "advanceNumber": 38, + "caseNumber": "84274", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=63393", + "caseTitle": "In re Guardianship of D.M.F.", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=63393&csIID=63393&deLinkID=918004&onBaseDocumentNumber=23-31813" + }, + { + "advanceNumber": 37, + "caseNumber": "84081", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=63145", + "caseTitle": "Floyd v. State, Dept. of Corr.", + "date": "2023-09-28T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=63145&csIID=63145&deLinkID=917994&onBaseDocumentNumber=23-31803" + }, + { + "advanceNumber": 36, + "caseNumber": "83945", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=62973", + "caseTitle": "El Jen Med. Hosp. v. Tyler", + "date": "2023-09-21T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=62973&csIID=62973&deLinkID=917202&onBaseDocumentNumber=23-31043" + }, + { + "advanceNumber": 35, + "caseNumber": "86108", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=65907", + "caseTitle": "Patterson v. Las Vegas Mun. Court", + "date": "2023-09-21T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=65907&csIID=65907&deLinkID=917200&onBaseDocumentNumber=23-31041" + }, + { + "advanceNumber": 34, + "caseNumber": "83942", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=62969", + "caseTitle": "Kassebaum v. State, Dep't of Corr.", + "date": "2023-09-21T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=62969&csIID=62969&deLinkID=917199&onBaseDocumentNumber=23-31040" + }, + { + "advanceNumber": 33, + "caseNumber": "85399", + "caseurl": "https://caseinfo.nvsupremecourt.us/public/caseView.do?csIID=64927", + "caseTitle": "State vs. Gonzalez", + "date": "2023-09-14T00:00:00", + "docurl": "https://caseinfo.nvsupremecourt.us/document/view.do?csNameID=64927&csIID=64927&deLinkID=916202&onBaseDocumentNumber=23-30102" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nh_example.compare.json b/tests/examples/opinions/united_states/nh_example.compare.json deleted file mode 100644 index e901923e5..000000000 --- a/tests/examples/opinions/united_states/nh_example.compare.json +++ /dev/null @@ -1,242 +0,0 @@ -[ - { - "case_dates": "2021-09-10", - "case_names": "State of New Hampshire v. Seth Hinkley", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-09/2021036hinkley.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-0680", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-08", - "case_names": "Christine Seward v. Charles Richards & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-09/2021035richards.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0259", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-02", - "case_names": "Robert St. Onge v. Oberten, LLC", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-09/2021034stonge.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0320", - "case_name_shorts": "" - }, - { - "case_dates": "2021-08-27", - "case_names": "Chad Short & a. v. John LaPlante & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-09/2021033short.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0113", - "case_name_shorts": "" - }, - { - "case_dates": "2021-07-30", - "case_names": "In re J.S.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-09/2021032js.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0502", - "case_name_shorts": "In re J.S." - }, - { - "case_dates": "2021-07-20", - "case_names": "Anna Carrigan v. New Hampshire Department of Health and Human Services & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021031carrigan.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0518", - "case_name_shorts": "" - }, - { - "case_dates": "2021-07-15", - "case_names": "L.C. v. W.C.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021030w-c.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0515", - "case_name_shorts": "L.C." - }, - { - "case_dates": "2021-07-14", - "case_names": "In the Matter of Lura Sanborn and Jeffrey Bart", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021029sanborn.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0080", - "case_name_shorts": "" - }, - { - "case_dates": "2021-07-02", - "case_names": "New Hampshire Democratic Party v. Secretary of State & a. League of Women Voters of New Hampshire & a. v. Secretary of State & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021027-secretary-of-state.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0252", - "case_name_shorts": "" - }, - { - "case_dates": "2021-07-02", - "case_names": "In re R.H.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021028-r-h.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0436", - "case_name_shorts": "In re R.H." - }, - { - "case_dates": "2021-06-18", - "case_names": "In re S.A. & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021026-sa-bt-ag.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0528, 2020-0546, 2020-0548", - "case_name_shorts": "" - }, - { - "case_dates": "2021-06-02", - "case_names": "In re M.M.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021025mm.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0467", - "case_name_shorts": "In re M.M." - }, - { - "case_dates": "2021-05-25", - "case_names": "New Hampshire Alpha of SAE Trust v. Town of Hanover", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021024nhalphaofsaetrust.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0034", - "case_name_shorts": "" - }, - { - "case_dates": "2021-05-21", - "case_names": "State of New Hampshire v. Teresa Mercon", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021023mercon.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0163", - "case_name_shorts": "" - }, - { - "case_dates": "2021-05-11", - "case_names": "Jane Doe v. Commissioner of the New Hampshire Department of Health and Human Services", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021022janedoe.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0454", - "case_name_shorts": "" - }, - { - "case_dates": "2021-05-05", - "case_names": "State of New Hampshire v. Richard Soulia", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021021soulia.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-0653", - "case_name_shorts": "" - }, - { - "case_dates": "2021-05-05", - "case_names": "In the Matter of Wm. Michael Earley and Ryanne Earley", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021020earley.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0051", - "case_name_shorts": "" - }, - { - "case_dates": "2021-05-04", - "case_names": "State of New Hampshire v. Bryan Weston Luikart", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021019luikart.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-0539", - "case_name_shorts": "" - }, - { - "case_dates": "2021-04-20", - "case_names": "State of New Hampshire v. Eduardo Lopez, Jr.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021018lopez.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2018-0104", - "case_name_shorts": "" - }, - { - "case_dates": "2021-04-20", - "case_names": "In the Matter of Jonathan Merrill and Lea Merrill", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021016merrill.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0009", - "case_name_shorts": "" - }, - { - "case_dates": "2021-04-01", - "case_names": "In the Matter of Molly Blaisdell and Robert Blaisdell", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021015blaisdell.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0211", - "case_name_shorts": "" - }, - { - "case_dates": "2021-03-26", - "case_names": "Petition of New Hampshire Division of State Police", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021014statepolice.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2020-0005", - "case_name_shorts": "" - }, - { - "case_dates": "2021-03-24", - "case_names": "In the Matter of Michael Greenberg and Anne Greenberg", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021013greenberg.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-0734", - "case_name_shorts": "" - }, - { - "case_dates": "2021-03-23", - "case_names": "Contoocook Valley School District & a. v. State of New Hampshire & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021012conval.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-0500", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nh_example.json b/tests/examples/opinions/united_states/nh_example.json deleted file mode 100644 index 3c434331f..000000000 --- a/tests/examples/opinions/united_states/nh_example.json +++ /dev/null @@ -1 +0,0 @@ -{"last_page": 3, "data": [{"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 09/10/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-09-10", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2019-0680, State of New Hampshire v. Seth Hinkley"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 09/08/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-09-08", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0259, Christine Seward v. Charles Richards & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 09/02/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-09-02", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0320, Robert St. Onge v. Oberten, LLC"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 08/27/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-08-27", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0113, Chad Short & a. v. John LaPlante & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 07/30/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-07-30", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0502, In re J.S."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 07/20/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-07-20", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0518, Anna Carrigan v. New Hampshire Department of Health and Human Services & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 07/15/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-07-15", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0515, L.C. v. W.C."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 07/14/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-07-14", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0080, In the Matter of Lura Sanborn and Jeffrey Bart"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 07/02/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-07-02", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0252, New Hampshire Democratic Party v. Secretary of State & a.; League of Women Voters of New Hampshire & a. v. Secretary of State & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 07/02/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-07-02", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0436, In re R.H."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 06/18/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-06-18", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0528, 2020-0546, 2020-0548, In re S.A. & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 06/02/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-06-02", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0467, In re M.M."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 05/25/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-05-25", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0034, New Hampshire Alpha of SAE Trust v. Town of Hanover"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 05/21/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-05-21", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0163, State of New Hampshire v. Teresa Mercon"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 05/11/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-05-11", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0454, Jane Doe v. Commissioner of the New Hampshire Department of Health and Human Services"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 05/05/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-05-05", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0051, In the Matter of Wm. Michael Earley and Ryanne Earley"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 05/05/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-05-05", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2019-0653, State of New Hampshire v. Richard Soulia"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 05/04/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-05-04", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2019-0539, State of New Hampshire v. Bryan Weston Luikart"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 04/20/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-04-20", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0009, In the Matter of Jonathan Merrill and Lea Merrill"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 04/20/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-04-20", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2018-0104, State of New Hampshire v. Eduardo Lopez, Jr."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t

    2020-0268, Hampstead School Board & a. v. School Administrative Unit No. 55

    \n\t\t\t\t\t
    \n\t\t\t\t\t
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 04/20/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-04-20", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0268, Hampstead School Board & a. v. School Administrative Unit No. 55"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 04/01/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-04-01", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0211, In the Matter of Molly Blaisdell and Robert Blaisdell"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 03/26/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-03-26", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2020-0005, Petition of New Hampshire Division of State Police"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 03/24/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-03-24", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2019-0734, In the Matter of Michael Greenberg and Anne Greenberg"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2021
    \n\t\t\t\t\t
    Date: 03/23/2021
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2021-03-23", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1206|", "documentName": "2019-0500, Contoocook Valley School District & a. v. State of New Hampshire & a."}]} diff --git a/tests/examples/opinions/united_states/nh_example_2.compare.json b/tests/examples/opinions/united_states/nh_example_2.compare.json deleted file mode 100644 index 8d6ce94b9..000000000 --- a/tests/examples/opinions/united_states/nh_example_2.compare.json +++ /dev/null @@ -1,212 +0,0 @@ -[ - { - "case_dates": "2009-02-19", - "case_names": "KIRSTEN WERNE v. EXECUTIVE WOMEN'S GOLF ASSOCIATION & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/werne020.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-235", - "case_name_shorts": "" - }, - { - "case_dates": "2009-02-19", - "case_names": "HAIR EXCITEMENT, INC. v. L'OREAL U.S.A., INC.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/haire019.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2007-920", - "case_name_shorts": "" - }, - { - "case_dates": "2009-02-19", - "case_names": "DAVID B. MASTROIANNI & a. v. JOSEPH WERCINSKI & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/mastr021.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-342", - "case_name_shorts": "" - }, - { - "case_dates": "2009-02-18", - "case_names": "STATE OF NH v. MOHAMED DAOUD", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/daoud015.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-207", - "case_name_shorts": "" - }, - { - "case_dates": "2009-02-18", - "case_names": "STATE EMPLOYEES ASSOCIATION OF NH v. NH DIVISION OF PERSONNEL", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/seanh016.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-257", - "case_name_shorts": "" - }, - { - "case_dates": "2009-02-18", - "case_names": "JAMES KEROUAC v. DIRECTOR, NH DIVISION OF MOTOR VEHICLES", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/kerou017.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-434", - "case_name_shorts": "" - }, - { - "case_dates": "2009-02-18", - "case_names": "IN RE KOTEY M.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/kotey018.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-705", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-30", - "case_names": "I/M/O JOSEPH GOULART, JR. AND MARCIA GOULART", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/goula014.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2007-840", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-29", - "case_names": "STATE OF NH v. JAMES MORAN", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/moran013.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-026", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-29", - "case_names": "STATE OF NH v. ERIC HEBERT", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/heber012.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2007-610", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-29", - "case_names": "CONNER'S CASE", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/conne011.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "LD-2008-005", - "case_name_shorts": "CONNER'S CASE" - }, - { - "case_dates": "2009-01-16", - "case_names": "NH ASSOCIATION OF COUNTIES & a. v. STATE OF NH & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/count010.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-390", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-16", - "case_names": "KATHLEEN WASS v. CAROLYN FULLER", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/wass009.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-160", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-14", - "case_names": "WESLEY C. PIKE, JR. V. ANU R. MULLIKIN & A.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/pike007.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-268", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-14", - "case_names": "APPEAL OF STATE EMPLOYEES' ASSOCIATION OF NEW HAMPSHIRE, INC., SEIU, LOCAL 1984", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/sea006.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-032", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-14", - "case_names": "APPEAL OF ROBERT BELAIR", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/belai008.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-277", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-09", - "case_names": "STATE OF NH v. GREGORY A. GAYLOR", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/gaylo004.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2007-446", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-09", - "case_names": "JOSEPH P. GOUDREAULT, JR. v. THOMAS J. KLEEMAN", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/goudr005.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2007-807", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-09", - "case_names": "DOVARO 12 ATLANTIC, LLC v. TOWN OF HAMPTON", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/dovar003.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2007-219, 2008-064", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-08", - "case_names": "STATE OF NH v. RAYMOND K. FOURNIER", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/fourn002.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-615", - "case_name_shorts": "" - }, - { - "case_dates": "2009-01-08", - "case_names": "STATE OF NH v. DEAN FLETCHER", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-11/fletc001.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-055", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nh_example_2.json b/tests/examples/opinions/united_states/nh_example_2.json deleted file mode 100644 index 4f9d4fca6..000000000 --- a/tests/examples/opinions/united_states/nh_example_2.json +++ /dev/null @@ -1 +0,0 @@ -{"last_page": 6, "data": [{"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 02/19/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-02-19", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-235, KIRSTEN WERNE v. EXECUTIVE WOMEN'S GOLF ASSOCIATION & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 02/19/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-02-19", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-342, DAVID B. MASTROIANNI & a. v. JOSEPH WERCINSKI & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 02/19/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-02-19", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2007-920, HAIR EXCITEMENT, INC. v. L'OREAL U.S.A., INC."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 02/18/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-02-18", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-434, JAMES KEROUAC v. DIRECTOR, NH DIVISION OF MOTOR VEHICLES"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 02/18/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-02-18", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-207, STATE OF NH v. MOHAMED DAOUD"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 02/18/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-02-18", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-705, IN RE KOTEY M."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 02/18/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-02-18", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-257, STATE EMPLOYEES ASSOCIATION OF NH v. NH DIVISION OF PERSONNEL"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/30/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-30", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2007-840, I/M/O JOSEPH GOULART, JR. AND MARCIA GOULART"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/29/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-29", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-026, STATE OF NH v. JAMES MORAN"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/29/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-29", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "LD-2008-005, CONNER'S CASE"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/29/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-29", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2007-610, STATE OF NH v. ERIC HEBERT"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/16/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-16", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-160, KATHLEEN WASS v. CAROLYN FULLER"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/16/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-16", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-390, NH ASSOCIATION OF COUNTIES & a. v. STATE OF NH & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/14/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-14", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-032, APPEAL OF STATE EMPLOYEES' ASSOCIATION OF NEW HAMPSHIRE, INC., SEIU, LOCAL 1984"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/14/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-14", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-268, WESLEY C. PIKE, JR. V. ANU R. MULLIKIN & A."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/14/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-14", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-277, APPEAL OF ROBERT BELAIR"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/09/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-09", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2007-807, JOSEPH P. GOUDREAULT, JR. v. THOMAS J. KLEEMAN"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/09/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-09", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2007-219 & 2008-064, DOVARO 12 ATLANTIC, LLC v. TOWN OF HAMPTON"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/09/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-09", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2007-446, STATE OF NH v. GREGORY A. GAYLOR"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/08/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-08", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-055, STATE OF NH v. DEAN FLETCHER"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/08/2009
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2009-01-08", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2008-615, STATE OF NH v. RAYMOND K. FOURNIER"}]} diff --git a/tests/examples/opinions/united_states/nh_example_3.compare.json b/tests/examples/opinions/united_states/nh_example_3.compare.json deleted file mode 100644 index 1bfa49423..000000000 --- a/tests/examples/opinions/united_states/nh_example_3.compare.json +++ /dev/null @@ -1,102 +0,0 @@ -[ - { - "case_dates": "2011-02-23", - "case_names": "State of New Hampshire v. Andrew Farrington", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011011farri.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2009-617", - "case_name_shorts": "" - }, - { - "case_dates": "2011-02-23", - "case_names": "Petition of State Employees' Association of New Hampshire", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011016seanh.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-162", - "case_name_shorts": "" - }, - { - "case_dates": "2011-02-23", - "case_names": "Appeal of City of Lebanon", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011014leban.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-094", - "case_name_shorts": "" - }, - { - "case_dates": "2011-01-26", - "case_names": "State of New Hampshire v. Edgar Gordon", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011008gordo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2009-570", - "case_name_shorts": "" - }, - { - "case_dates": "2011-01-26", - "case_names": "Application of G.W.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011007appgw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ADM-2009-024", - "case_name_shorts": "Application of G.W." - }, - { - "case_dates": "2011-01-21", - "case_names": "New Hampshire Health Care Association & a. v. Governor & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011006nhhca.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10-436", - "case_name_shorts": "" - }, - { - "case_dates": "2011-01-13", - "case_names": "State of New Hampshire v. Robin Knight", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011001knigh.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2009-449", - "case_name_shorts": "" - }, - { - "case_dates": "2011-01-13", - "case_names": "State of New Hampshire v. John Moscone", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011003mosco.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2009-559", - "case_name_shorts": "" - }, - { - "case_dates": "2011-01-13", - "case_names": "State of New Hampshire v. Jennifer Long", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011004long.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "009-703", - "case_name_shorts": "" - }, - { - "case_dates": "2011-01-13", - "case_names": "State of New Hampshire v. Daniel J. Letendre", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011005leten.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2009-770", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nh_example_3.json b/tests/examples/opinions/united_states/nh_example_3.json deleted file mode 100644 index 96d6ebf4d..000000000 --- a/tests/examples/opinions/united_states/nh_example_3.json +++ /dev/null @@ -1 +0,0 @@ -{"last_page": 15, "data": [{"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 02/23/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-02-23", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-162, Petition of State Employees' Association of New Hampshire"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 02/23/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-02-23", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2009-617, State of New Hampshire v. Andrew Farrington"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 02/23/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-02-23", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-094, Appeal of City of Lebanon"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/26/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-01-26", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "ADM-2009-024, Application of G.W."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/26/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-01-26", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2009-570, State of New Hampshire v. Edgar Gordon"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/21/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-01-21", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "10-436, New Hampshire Health Care Association & a. v. Governor & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/13/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-01-13", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2009-770, State of New Hampshire v. Daniel J. Letendre"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/13/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-01-13", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2009-559, State of New Hampshire v. John Moscone"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/13/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-01-13", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2009-449, State of New Hampshire v. Robin Knight"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 01/13/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-01-13", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "009-703, State of New Hampshire v. Jennifer Long"}]} diff --git a/tests/examples/opinions/united_states/nh_example_4.compare.json b/tests/examples/opinions/united_states/nh_example_4.compare.json deleted file mode 100644 index 460eece26..000000000 --- a/tests/examples/opinions/united_states/nh_example_4.compare.json +++ /dev/null @@ -1,252 +0,0 @@ -[ - { - "case_dates": "2015-12-29", - "case_names": "Deere & Company & a. v. The State of New Hampshire Kubota Tractor Corporation v. The State of New Hampshire Husqvarna Professional Products, Inc. v. The State of New Hampshire", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015099deere.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0315, 2014-0441, 2014-0575", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-23", - "case_names": "University System of New Hampshire Board of Trustees & a. v. Marco Dorfsman & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015098dorfsman.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-0187", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-23", - "case_names": "John Farrelly v. City of Concord & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015097farrelly.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0480", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-18", - "case_names": "The State of New Hampshire v. Craig Michael Sanborn", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015095sanborn.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-0882", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-18", - "case_names": "The State of New Hampshire v. Christopher M. Palermo", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015094palermo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-0076", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-18", - "case_names": "In the Matter of Lynn Mortner and Theodore Mortner", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015096mortner.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-0115", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-04", - "case_names": "Town of Londonderry v. Mesiti Development, Inc. & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015093mesiti.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0291", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-02", - "case_names": "In the Matter of Terrie Harman and Thomas McCarron", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015092harman.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-0273", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-17", - "case_names": "Steven J. Cohen v. John Raymond & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015091cohen.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0762", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-17", - "case_names": "Jeffrey Frost & a. v. Michael Delaney & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015090frost.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0580", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-10", - "case_names": "The State of New Hampshire v. Marianne King", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015088king.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0576", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-10", - "case_names": "The State of New Hampshire v. Lisa A. Tagalakis Fedor", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015089tagalakisfedor.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0607", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-27", - "case_names": "The State of New Hampshire v. Samuel Pennock", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015084pennock.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0112, 2014-0743", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-27", - "case_names": "The State of New Hampshire v. Patrick Eschenbrenner", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015085eschenbrenner.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0116", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-27", - "case_names": "STIHL, Inc. v. The State of New Hampshire", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015087stihl.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0619", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-27", - "case_names": "Aranosian Oil Co., Inc. & a. v. State of New Hampshire", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015086aranosianoil.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0553", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-14", - "case_names": "State of New Hampshire v. The Mandatory Poster Agency, Inc.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015083mandatoryposter.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0686", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-14", - "case_names": "State of New Hampshire v. James F. Houghton", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015081houghton.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0362", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-14", - "case_names": "Celestica, LLC v. Communications Acquisitions Corporation", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015082celestica.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0465", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-02", - "case_names": "State of New Hampshire v. Exxon Mobil Corporation & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015080exxon.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-0591, 2013-0668", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-22", - "case_names": "Town of Bartlett v. Edward C. Furlong, III d/b/a Lil' Man Snowmobile Rentals", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015074furlong.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0063", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-22", - "case_names": "State of New Hampshire v. Vincent Cooper", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015073cooper.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-0623", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-22", - "case_names": "State of New Hampshire v. Shawn Gilley", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015076gilley.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0378", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-22", - "case_names": "Scott McCarthy v. Manchester Police Department & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015079mccarthy.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0773", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-22", - "case_names": "Merriam Farm, Inc. v. Town of Surry", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2015078merriamfarm.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0702", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nh_example_4.json b/tests/examples/opinions/united_states/nh_example_4.json deleted file mode 100644 index 76fd10a96..000000000 --- a/tests/examples/opinions/united_states/nh_example_4.json +++ /dev/null @@ -1 +0,0 @@ -{"last_page": 4, "data": [{"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t\n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-12-29", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0315, Deere & Company & a. v. The State of New Hampshire 2014-0441, Kubota Tractor Corporation v. The State of New Hampshire 2014-0575, Husqvarna Professional Products, Inc. v. The State of New Hampshire"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 12/23/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-12-23", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0480, John Farrelly v. City of Concord & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 12/23/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-12-23", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2015-0187, University System of New Hampshire Board of Trustees & a. v. Marco Dorfsman & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 12/18/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-12-18", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2013-0882, The State of New Hampshire v. Craig Michael Sanborn"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 12/18/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-12-18", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2015-0115, In the Matter of Lynn Mortner and Theodore Mortner"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 12/18/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-12-18", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2013-0076, The State of New Hampshire v. Christopher M. Palermo"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 12/04/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-12-04", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0291, Town of Londonderry v. Mesiti Development, Inc. & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 12/02/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-12-02", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2015-0273, In the Matter of Terrie Harman and Thomas McCarron"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 11/17/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-11-17", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0762, Steven J. Cohen v. John Raymond & a. "}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 11/17/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-11-17", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0580, Jeffrey Frost & a. v. Michael Delaney & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 11/10/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-11-10", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0576, The State of New Hampshire v. Marianne King"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 11/10/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-11-10", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0607, The State of New Hampshire v. Lisa A. Tagalakis Fedor"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 10/27/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-10-27", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0112 & 2014-0743, The State of New Hampshire v. Samuel Pennock"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 10/27/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-10-27", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0619, STIHL, Inc. v. The State of New Hampshire"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 10/27/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-10-27", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0116, The State of New Hampshire v. Patrick Eschenbrenner"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 10/27/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-10-27", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0553, Aranosian Oil Co., Inc. & a. v. State of New Hampshire"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 10/14/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-10-14", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0465, Celestica, LLC v. Communications Acquisitions Corporation"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 10/14/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-10-14", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0362, State of New Hampshire v. James F. Houghton"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 10/14/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-10-14", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0686, State of New Hampshire v. The Mandatory Poster Agency, Inc."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 10/02/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-10-02", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2013-0591 and 2013-0668, State of New Hampshire v. Exxon Mobil Corporation & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 09/22/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-09-22", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0702, Merriam Farm, Inc. v. Town of Surry"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 09/22/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-09-22", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2013-0623, State of New Hampshire v. Vincent Cooper"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 09/22/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-09-22", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0378, State of New Hampshire v. Shawn Gilley"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 09/22/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-09-22", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0773, Scott McCarthy v. Manchester Police Department & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 09/22/2015
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2015-09-22", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2014-0063, Town of Bartlett v. Edward C. Furlong, III d/b/a Lil’ Man Snowmobile Rentals"}]} diff --git a/tests/examples/opinions/united_states/nh_example_5.compare.json b/tests/examples/opinions/united_states/nh_example_5.compare.json deleted file mode 100644 index f820645d5..000000000 --- a/tests/examples/opinions/united_states/nh_example_5.compare.json +++ /dev/null @@ -1,252 +0,0 @@ -[ - { - "case_dates": "2011-06-28", - "case_names": "The State of New Hampshire v. Ryan LaPlaca", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011068laplaca.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-042", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-28", - "case_names": "The State of New Hampshire v. Andre Rivera", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011069rivera.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-130", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-28", - "case_names": "In Re Guardianship of Nicholas P", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011071nicholas.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-609", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-15", - "case_names": "The State of New Hampshire v. Luis Lopez", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011066lopez.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2009-872", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-15", - "case_names": "Russell Forest Management, LLC v. Town of Henniker", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011064russell.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-719", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-15", - "case_names": "Peter L. Gordon, Trustee of the Peter L. Gordon Revocable Trust of 1999 & a. v. Town of Rye", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011065gordon.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2009-836", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-15", - "case_names": "Opinion of the Justices (Requiring Attorney General To Join Lawsuit)", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011067opinionjustices.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-319", - "case_name_shorts": "" - }, - { - "case_dates": "2011-06-02", - "case_names": "Adelaide V. George d/b/a Homes By George & a. v. Al Hoyt & Sons, Inc.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011063adelaide.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-015", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-26", - "case_names": "The State of New Hampshire v. James W. Mello", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011062mello.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-455", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-26", - "case_names": "New Hampshire Resident Limited Partners of the Lyme Timber Company v. New Hampshire Department of Revenue Administration", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011060lyme.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-399", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-26", - "case_names": "Darlene Gray v. Commonwealth Land Title Insurance Company", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011057gray.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-129", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-26", - "case_names": "Appeal of School Administrative Unit 44 (New Hampshire State Board of Education)", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011058sau44.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-161", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-26", - "case_names": "Appeal of Matthew Kennedy & a. (New Hampshire Public Employee Labor Relations Board)", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011061kennedy.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-438", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-26", - "case_names": "2010-233/Appeal of the Hartford Insurance Company (New Hampshire Compensation Appeals Board)", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011059hartford.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-233, 2010-234", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-17", - "case_names": "Petition of State of New Hampshire (State of New Hampshire v. Richard MacDonald)", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011056macdonald.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-550", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-12", - "case_names": "The State of New Hampshire v. Todd Peters", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011052peters.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2009-892", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-12", - "case_names": "The State of New Hampshire v. Marilyn Demond-Surace", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011051surace.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2009-109", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-12", - "case_names": "In the Matter of Richard Lister and Marianne Lister", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011054lister.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-409", - "case_name_shorts": "" - }, - { - "case_dates": "2011-05-12", - "case_names": "Bruzga's Case", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011055bruzga.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "LD-2010-012", - "case_name_shorts": "Bruzga's Case" - }, - { - "case_dates": "2011-05-12", - "case_names": "Appeal of Keelin B. (New Hampshire State Board of Education)", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011053keelinb.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-225", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-28", - "case_names": "The State of New Hampshire v. Michael Moncada", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011047moncada.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-165", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-28", - "case_names": "The State of New Hampshire v. Joseph Michaud", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011046michaud.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2009-741", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-28", - "case_names": "In Re Estate of Timothy M. Donovan", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011049donovan.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-297", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-28", - "case_names": "Hampton Police Association, Inc. v. Town of Hampton", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011050hampton.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-323", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-28", - "case_names": "Deutsche Bank National Trust Company v. James Kevlik & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011048deutsche.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-249", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nh_example_5.json b/tests/examples/opinions/united_states/nh_example_5.json deleted file mode 100644 index b9f97eb22..000000000 --- a/tests/examples/opinions/united_states/nh_example_5.json +++ /dev/null @@ -1 +0,0 @@ -{"last_page": 6, "data": [{"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 06/28/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-06-28", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-042 The State of New Hampshire v. Ryan LaPlaca"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 06/28/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-06-28", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-609 In Re Guardianship of Nicholas P"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 06/28/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-06-28", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-130 The State of New Hampshire v. Andre Rivera"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 06/15/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-06-15", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2011-319, Opinion of the Justices (Requiring Attorney General To Join Lawsuit)"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 06/15/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-06-15", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2009-872 The State of New Hampshire v. Luis Lopez"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 06/15/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-06-15", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-719 Russell Forest Management, LLC v. Town of Henniker"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 06/15/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-06-15", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2009-836 Peter L. Gordon, Trustee of the Peter L. Gordon Revocable Trust of 1999 & a. v. Town of Rye"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 06/02/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-06-02", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-015 Adelaide V. George d/b/a Homes By George & a. v. Al Hoyt & Sons, Inc."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 05/26/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-05-26", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-399 New Hampshire Resident Limited Partners of the Lyme Timber Company v. New Hampshire Department of Revenue Administration"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 05/26/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-05-26", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-161 Appeal of School Administrative Unit #44 (New Hampshire State Board of Education)"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 05/26/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-05-26", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-438 Appeal of Matthew Kennedy & a. (New Hampshire Public Employee Labor Relations Board)"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 05/26/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-05-26", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-233/2010-234 Appeal of the Hartford Insurance Company (New Hampshire Compensation Appeals Board)"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 05/26/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-05-26", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-455 The State of New Hampshire v. James W. Mello"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 05/26/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-05-26", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-129 Darlene Gray v. Commonwealth Land Title Insurance Company"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 05/17/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-05-17", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-550 Petition of State of New Hampshire (State of New Hampshire v. Richard MacDonald)"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 05/12/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-05-12", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "LD-2010-012 Bruzga's Case"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 05/12/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-05-12", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-225 Appeal of Keelin B. (New Hampshire State Board of Education)"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 05/12/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-05-12", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2009-109 The State of New Hampshire v. Marilyn Demond-Surace"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 05/12/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-05-12", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-409 In the Matter of Richard Lister and Marianne Lister"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 05/12/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-05-12", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2009-892 The State of New Hampshire v. Todd Peters"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 04/28/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-04-28", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-249 Deutsche Bank National Trust Company v. James Kevlik & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 04/28/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-04-28", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-323 Hampton Police Association, Inc. v. Town of Hampton"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 04/28/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-04-28", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2009-741 The State of New Hampshire v. Joseph Michaud"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 04/28/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-04-28", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-297 In Re Estate of Timothy M. Donovan"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 04/28/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-04-28", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-165 The State of New Hampshire v. Michael Moncada"}]} diff --git a/tests/examples/opinions/united_states/nh_example_6.compare.json b/tests/examples/opinions/united_states/nh_example_6.compare.json deleted file mode 100644 index 13b6b23d5..000000000 --- a/tests/examples/opinions/united_states/nh_example_6.compare.json +++ /dev/null @@ -1,52 +0,0 @@ -[ - { - "case_dates": "2011-04-14", - "case_names": "State Employees' Association of New Hampshire & a. v. The State of New Hampshire & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011040sea.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-271", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-14", - "case_names": "Eric Lee Knight v. Cheryl Ann Maher", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011041knight_0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "010-290", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-14", - "case_names": "Eric Lee Knight v. Cheryl Ann Maher", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011041knight.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "010-290", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-14", - "case_names": "Dean J. Waterfield v. Meredith Corporation & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/2011038waterfield.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2009-828", - "case_name_shorts": "" - }, - { - "case_dates": "2011-04-12", - "case_names": "Golf Course Investors of NH, LLC v. Town of Jaffrey & a.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-08/201135golfcourse.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-167", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nh_example_6.json b/tests/examples/opinions/united_states/nh_example_6.json deleted file mode 100644 index f24df5aca..000000000 --- a/tests/examples/opinions/united_states/nh_example_6.json +++ /dev/null @@ -1 +0,0 @@ -{"last_page": 29, "data": [{"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 04/14/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-04-14", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2009-828 Dean J. Waterfield v. Meredith Corporation & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 04/14/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-04-14", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "010-290 Eric Lee Knight v. Cheryl Ann Maher"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 04/14/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-04-14", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-271 State Employees' Association of New Hampshire & a. v. The State of New Hampshire & a."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 04/14/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-04-14", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "010-290 Eric Lee Knight v. Cheryl Ann Maher"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    \n\t\t\t\t\t
    Date: 04/12/2011
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2011-04-12", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "", "documentName": "2010-167 Golf Course Investors of NH, LLC v. Town of Jaffrey & a."}]} diff --git a/tests/examples/opinions/united_states/nh_example_7.compare.json b/tests/examples/opinions/united_states/nh_example_7.compare.json deleted file mode 100644 index 811c56b23..000000000 --- a/tests/examples/opinions/united_states/nh_example_7.compare.json +++ /dev/null @@ -1,52 +0,0 @@ -[ - { - "case_dates": "2020-07-24", - "case_names": "Teatotaller, LLC v. Facebook, Inc.", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2020043teatotaller.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-0328", - "case_name_shorts": "" - }, - { - "case_dates": "2020-07-10", - "case_names": "In the Matter of Matthew Kamil and Robin Kamil", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2020042kamil.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2018-0700", - "case_name_shorts": "" - }, - { - "case_dates": "2020-07-08", - "case_names": "Monadnock Regional School District v. Monadnock District Education Association, NEA-NH", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2020041monadnock.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2019-0134", - "case_name_shorts": "" - }, - { - "case_dates": "2020-07-01", - "case_names": "State of New Hampshire v. Daniel Turcotte", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2020040turcotte.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2017-0336, 2019-0071", - "case_name_shorts": "" - }, - { - "case_dates": "2020-06-10", - "case_names": "State of New Hampshire v. Bruce Moore", - "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2020039moore.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2018-0602", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nh_example_7.json b/tests/examples/opinions/united_states/nh_example_7.json deleted file mode 100644 index d647fa5d8..000000000 --- a/tests/examples/opinions/united_states/nh_example_7.json +++ /dev/null @@ -1 +0,0 @@ -{"last_page": 15, "data": [{"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2020
    \n\t\t\t\t\t
    Date: 07/24/2020
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2020-07-24", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1366|", "documentName": "2019-0328, Teatotaller, LLC v. Facebook, Inc."}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2020
    \n\t\t\t\t\t
    Date: 07/10/2020
    \n\t\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2020-07-10", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1366|", "documentName": "2018-0700, In the Matter of Matthew Kamil and Robin Kamil"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2020
    \n\t\t\t\t\t
    Date: 07/08/2020
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2020-07-08", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1366|", "documentName": "2019-0134, Monadnock Regional School District v. Monadnock District Education Association, NEA-NH"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2020
    \n\t\t\t\t\t
    Date: 07/01/2020
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2020-07-01", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1366|", "documentName": "2017-0336 & 2019-0071 State of New Hampshire v. Daniel Turcotte"}, {"documentContent": "
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t\t
    \n\t\t\t\t\t
    Document Format: PDF
    Tags:
    2020
    \n\t\t\t\t\t
    Date: 06/10/2020
    \n\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t
    ", "documentNumber": "", "documentJudge": "", "documentFiled": "", "documentPosted": "2020-06-10", "documentRevised": "", "documentParties": "", "documentCategories": "", "documentPurposes": "1331|", "documentTags": "1366|", "documentName": "2018-0602, State of New Hampshire v. Bruce Moore"}]} diff --git a/tests/examples/opinions/united_states/nh_p_example.compare.json b/tests/examples/opinions/united_states/nh_p_example.compare.json new file mode 100644 index 000000000..0c02e1609 --- /dev/null +++ b/tests/examples/opinions/united_states/nh_p_example.compare.json @@ -0,0 +1,156 @@ +[ + { + "case_dates": "2023-06-29", + "case_names": "In re E.R.; In re H.R.", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2023-06/2023033er-hr.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2022-0543, 2022-0546", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2021-03-24", + "case_names": "In the Matter of Michael Greenberg and Anne Greenberg", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021013greenberg.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-0734", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2021-03-23", + "case_names": "Contoocook Valley School District & a. v. State of New Hampshire & a.", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021012conval.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-0500", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2021-03-19", + "case_names": "101 Ocean Blvd., LLC v. Foy Insurance Group, Inc. & a.", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021011ocean.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-0067", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2021-03-10", + "case_names": "Daniel Ro v. Factory Mutual Insurance Company, as Subrogee of Trustees of Dartmouth College; Sebastian Lim v. Factory Mutual Insurance Company, as Subrogee of Trustees of Dartmouth College", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021010ro.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-0620", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2021-03-02", + "case_names": "Krainewood Shores Association, Inc. & a. v. Town of Moultonborough & a.", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021008krainewoodshoreassoc.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-0719", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2021-03-02", + "case_names": "Appeal of Andrew Panaggio", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021009panaggio.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-0685", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2021-02-17", + "case_names": "Genworth Life Insurance Company v. New Hampshire Department of Insurance", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021007genworth.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-0727", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2021-02-09", + "case_names": "The New London Hospital Association, Inc. v. Town of Newport", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021006newlondonhospital.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-0616", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2021-02-02", + "case_names": "Appeal of Conservation Law Foundation", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021005conservationlandfdn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2020-0049", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2021-01-27", + "case_names": "State of New Hampshire v. Melanie Parry", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021004parry.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-0407", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2021-01-20", + "case_names": "In re Estate of Marie G. Dow", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021003dow.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-0752", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2021-01-13", + "case_names": "State of New Hampshire v. Joshua Pouliot", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021001pouliot.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-0322", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2021-01-13", + "case_names": "Lauren Shearer v. Ronald Raymond & a.", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-07/2021002shearer.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-0688", + "citations": "", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nh_p_example.json b/tests/examples/opinions/united_states/nh_p_example.json new file mode 100644 index 000000000..ce472b132 --- /dev/null +++ b/tests/examples/opinions/united_states/nh_p_example.json @@ -0,0 +1,3953 @@ +{ + "item_count": 13, + "total": 63, + "last_page": 3, + "data": [ + { + "title": "2019-0734, In the Matter of Michael Greenberg and Anne Greenberg", + "id": "16206", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    Tags:
    2021
    \n
    Date: 03/24/2021
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "16206" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2019-0734, In the Matter of Michael Greenberg and Anne Greenberg" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2021-03-24" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "9036", + "title": "", + "type": "document", + "fields": { + "fid": [ + "9036" + ], + "uuid": [ + "d23847f9-5ada-4d6c-998e-2126f686d3d0" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2021013greenberg.pdf" + ], + "uri": [ + "public://documents/2021-07/2021013greenberg.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "88327" + ], + "status": [ + "1" + ], + "created": [ + "1626878911" + ], + "changed": [ + "1626878962" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": null, + "field_entity_tags": [ + { + "id": "1206", + "title": "2021", + "type": "document", + "fields": { + "tid": [ + "1206" + ], + "uuid": [ + "92667071-df22-41df-b230-b608239004c7" + ], + "revision_id": [ + "1206" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1625671753" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2021" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1625671753" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2019-0500, Contoocook Valley School District & a. v. State of New Hampshire & a.", + "id": "16216", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    Tags:
    2021
    \n
    Date: 03/23/2021
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "16216" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2019-0500, Contoocook Valley School District & a. v. State of New Hampshire & a." + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2021-03-23" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "9046", + "title": "", + "type": "document", + "fields": { + "fid": [ + "9046" + ], + "uuid": [ + "df1c5904-c5ee-4824-9716-27f930d83aaa" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2021012conval.pdf" + ], + "uri": [ + "public://documents/2021-07/2021012conval.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "293624" + ], + "status": [ + "1" + ], + "created": [ + "1626879077" + ], + "changed": [ + "1626879127" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": null, + "field_entity_tags": [ + { + "id": "1206", + "title": "2021", + "type": "document", + "fields": { + "tid": [ + "1206" + ], + "uuid": [ + "92667071-df22-41df-b230-b608239004c7" + ], + "revision_id": [ + "1206" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1625671753" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2021" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1625671753" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2019-0067, 101 Ocean Blvd., LLC v. Foy Insurance Group, Inc. & a.", + "id": "16231", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    Tags:
    2021
    \n
    Date: 03/19/2021
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "16231" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2019-0067, 101 Ocean Blvd., LLC v. Foy Insurance Group, Inc. & a." + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2021-03-19" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "9051", + "title": "", + "type": "document", + "fields": { + "fid": [ + "9051" + ], + "uuid": [ + "6f693096-84e5-4837-afda-3cd15542bcd4" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2021011ocean.pdf" + ], + "uri": [ + "public://documents/2021-07/2021011ocean.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "147620" + ], + "status": [ + "1" + ], + "created": [ + "1626879217" + ], + "changed": [ + "1626879298" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": null, + "field_entity_tags": [ + { + "id": "1206", + "title": "2021", + "type": "document", + "fields": { + "tid": [ + "1206" + ], + "uuid": [ + "92667071-df22-41df-b230-b608239004c7" + ], + "revision_id": [ + "1206" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1625671753" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2021" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1625671753" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2019-0620, Daniel Ro v. Factory Mutual Insurance Company, as Subrogee of Trustees of Dartmouth College; Sebastian Lim v. Factory Mutual Insurance Company, as Subrogee of Trustees of Dartmouth College", + "id": "16236", + "list_content": "", + "fields": { + "nid": [ + "16236" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2019-0620, Daniel Ro v. Factory Mutual Insurance Company, as Subrogee of Trustees of Dartmouth College; Sebastian Lim v. Factory Mutual Insurance Company, as Subrogee of Trustees of Dartmouth College" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2021-03-10" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "9056", + "title": "", + "type": "document", + "fields": { + "fid": [ + "9056" + ], + "uuid": [ + "8a394fe7-427c-4ddf-8000-0562be907418" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2021010ro.pdf" + ], + "uri": [ + "public://documents/2021-07/2021010ro.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "157687" + ], + "status": [ + "1" + ], + "created": [ + "1626879541" + ], + "changed": [ + "1626879568" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": null, + "field_entity_tags": [ + { + "id": "1206", + "title": "2021", + "type": "document", + "fields": { + "tid": [ + "1206" + ], + "uuid": [ + "92667071-df22-41df-b230-b608239004c7" + ], + "revision_id": [ + "1206" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1625671753" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2021" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1625671753" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2019-0685, Appeal of Andrew Panaggio", + "id": "16241", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    Tags:
    2021
    \n
    Date: 03/02/2021
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "16241" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2019-0685, Appeal of Andrew Panaggio" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2021-03-02" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "9061", + "title": "", + "type": "document", + "fields": { + "fid": [ + "9061" + ], + "uuid": [ + "e80653be-1251-46b5-998d-e2283d72a479" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2021009panaggio.pdf" + ], + "uri": [ + "public://documents/2021-07/2021009panaggio.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "109287" + ], + "status": [ + "1" + ], + "created": [ + "1626879634" + ], + "changed": [ + "1626879682" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": null, + "field_entity_tags": [ + { + "id": "1206", + "title": "2021", + "type": "document", + "fields": { + "tid": [ + "1206" + ], + "uuid": [ + "92667071-df22-41df-b230-b608239004c7" + ], + "revision_id": [ + "1206" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1625671753" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2021" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1625671753" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2019-0719, Krainewood Shores Association, Inc. & a. v. Town of Moultonborough & a.", + "id": "16246", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    Tags:
    2021
    \n
    Date: 03/02/2021
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "16246" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2019-0719, Krainewood Shores Association, Inc. & a. v. Town of Moultonborough & a." + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2021-03-02" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "9066", + "title": "", + "type": "document", + "fields": { + "fid": [ + "9066" + ], + "uuid": [ + "444812f4-f37c-4d59-9eb1-f2523c4f1c5a" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2021008krainewoodshoreassoc.pdf" + ], + "uri": [ + "public://documents/2021-07/2021008krainewoodshoreassoc.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "117443" + ], + "status": [ + "1" + ], + "created": [ + "1626879749" + ], + "changed": [ + "1626879773" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": null, + "field_entity_tags": [ + { + "id": "1206", + "title": "2021", + "type": "document", + "fields": { + "tid": [ + "1206" + ], + "uuid": [ + "92667071-df22-41df-b230-b608239004c7" + ], + "revision_id": [ + "1206" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1625671753" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2021" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1625671753" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2019-0727, Genworth Life Insurance Company v. New Hampshire Department of Insurance", + "id": "16251", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    Tags:
    2021
    \n
    Date: 02/17/2021
    \n
    \n \n
    \n
    ", + "fields": { + "nid": [ + "16251" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2019-0727, Genworth Life Insurance Company v. New Hampshire Department of Insurance" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2021-02-17" + ], + "field_date_revised": null, + "field_description": null, + "field_document": [ + { + "id": "33496", + "title": "https://www.gao.gov/new.items/d08712.pdf", + "type": "document", + "fields": { + "nid": [ + "33496" + ], + "uuid": [ + "5f6cca6f-5aae-4f73-94d3-10d71fb43921" + ], + "vid": [ + "68946" + ], + "langcode": [ + "en" + ], + "type": null, + "revision_timestamp": [ + "1630523525" + ], + "revision_uid": null, + "revision_log": null, + "status": [ + "1" + ], + "uid": null, + "title": [ + "https://www.gao.gov/new.items/d08712.pdf" + ], + "created": [ + "1630523514" + ], + "changed": [ + "1630523525" + ], + "promote": [ + "0" + ], + "sticky": [ + "0" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "moderation_state": [ + "published" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null, + "publish_state": null, + "unpublish_state": null, + "menu_link": null, + "field_date_filed": null, + "field_date_posted": null, + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "27046", + "title": "", + "type": "document", + "fields": { + "fid": [ + "27046" + ], + "uuid": [ + "a9ea32f1-6764-4ac8-a218-72770ad60d12" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2019-0727-citation.pdf" + ], + "uri": [ + "public://documents/2021-09/2019-0727-citation.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "580351" + ], + "status": [ + "1" + ], + "created": [ + "1630523514" + ], + "changed": [ + "1630523525" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": null, + "field_document_subcategory": null, + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": null, + "field_tag": null + } + } + ], + "field_document_category": null, + "field_document_file": { + "0": { + "id": "9071", + "title": "", + "type": "document", + "fields": { + "fid": [ + "9071" + ], + "uuid": [ + "46ac5b82-8f5b-4a73-b270-3767e7e6e0e0" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2021007genworth.pdf" + ], + "uri": [ + "public://documents/2021-07/2021007genworth.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "98103" + ], + "status": [ + "1" + ], + "created": [ + "1626879840" + ], + "changed": [ + "1626879870" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": null, + "field_entity_tags": [ + { + "id": "1206", + "title": "2021", + "type": "document", + "fields": { + "tid": [ + "1206" + ], + "uuid": [ + "92667071-df22-41df-b230-b608239004c7" + ], + "revision_id": [ + "1206" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1625671753" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2021" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1625671753" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2019-0616, The New London Hospital Association, Inc. v. Town of Newport", + "id": "16256", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    Tags:
    2021
    \n
    Date: 02/09/2021
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "16256" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2019-0616, The New London Hospital Association, Inc. v. Town of Newport" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2021-02-09" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "9076", + "title": "", + "type": "document", + "fields": { + "fid": [ + "9076" + ], + "uuid": [ + "e3889cad-830c-4166-ad7c-dfe4fb858e4c" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2021006newlondonhospital.pdf" + ], + "uri": [ + "public://documents/2021-07/2021006newlondonhospital.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "85944" + ], + "status": [ + "1" + ], + "created": [ + "1626879916" + ], + "changed": [ + "1626879950" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": null, + "field_entity_tags": [ + { + "id": "1206", + "title": "2021", + "type": "document", + "fields": { + "tid": [ + "1206" + ], + "uuid": [ + "92667071-df22-41df-b230-b608239004c7" + ], + "revision_id": [ + "1206" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1625671753" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2021" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1625671753" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2020-0049, Appeal of Conservation Law Foundation", + "id": "16261", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    Tags:
    2021
    \n
    Date: 02/02/2021
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "16261" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2020-0049, Appeal of Conservation Law Foundation" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2021-02-02" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "9081", + "title": "", + "type": "document", + "fields": { + "fid": [ + "9081" + ], + "uuid": [ + "f9a49eda-1574-43d2-a7dd-041c710697f6" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2021005conservationlandfdn.pdf" + ], + "uri": [ + "public://documents/2021-07/2021005conservationlandfdn.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "107069" + ], + "status": [ + "1" + ], + "created": [ + "1626880013" + ], + "changed": [ + "1626880048" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": null, + "field_entity_tags": [ + { + "id": "1206", + "title": "2021", + "type": "document", + "fields": { + "tid": [ + "1206" + ], + "uuid": [ + "92667071-df22-41df-b230-b608239004c7" + ], + "revision_id": [ + "1206" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1625671753" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2021" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1625671753" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2019-0407, State of New Hampshire v. Melanie Parry", + "id": "16266", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    Tags:
    2021
    \n
    Date: 01/27/2021
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "16266" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2019-0407, State of New Hampshire v. Melanie Parry" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2021-01-27" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "9086", + "title": "", + "type": "document", + "fields": { + "fid": [ + "9086" + ], + "uuid": [ + "dbc7fbfb-7234-4c87-bb5b-87ad7f04b3a7" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2021004parry.pdf" + ], + "uri": [ + "public://documents/2021-07/2021004parry.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "98309" + ], + "status": [ + "1" + ], + "created": [ + "1626880125" + ], + "changed": [ + "1626880173" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": null, + "field_entity_tags": [ + { + "id": "1206", + "title": "2021", + "type": "document", + "fields": { + "tid": [ + "1206" + ], + "uuid": [ + "92667071-df22-41df-b230-b608239004c7" + ], + "revision_id": [ + "1206" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1625671753" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2021" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1625671753" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2019-0752, In re Estate of Marie G. Dow", + "id": "16271", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    Tags:
    2021
    \n
    Date: 01/20/2021
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "16271" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2019-0752, In re Estate of Marie G. Dow" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2021-01-20" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "9091", + "title": "", + "type": "document", + "fields": { + "fid": [ + "9091" + ], + "uuid": [ + "ca09be8c-0337-4f1a-88a2-c0d8b07e9e3c" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2021003dow.pdf" + ], + "uri": [ + "public://documents/2021-07/2021003dow.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "106252" + ], + "status": [ + "1" + ], + "created": [ + "1626880235" + ], + "changed": [ + "1626880265" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": null, + "field_entity_tags": [ + { + "id": "1206", + "title": "2021", + "type": "document", + "fields": { + "tid": [ + "1206" + ], + "uuid": [ + "92667071-df22-41df-b230-b608239004c7" + ], + "revision_id": [ + "1206" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1625671753" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2021" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1625671753" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2019-0688, Lauren Shearer v. Ronald Raymond & a.", + "id": "16281", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    Tags:
    2021
    \n
    Date: 01/13/2021
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "16281" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2019-0688, Lauren Shearer v. Ronald Raymond & a." + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2021-01-13" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "9101", + "title": "", + "type": "document", + "fields": { + "fid": [ + "9101" + ], + "uuid": [ + "2bb25333-b509-468b-b814-82568623db25" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2021002shearer.pdf" + ], + "uri": [ + "public://documents/2021-07/2021002shearer.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "110719" + ], + "status": [ + "1" + ], + "created": [ + "1626880447" + ], + "changed": [ + "1626880475" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": null, + "field_entity_tags": [ + { + "id": "1206", + "title": "2021", + "type": "document", + "fields": { + "tid": [ + "1206" + ], + "uuid": [ + "92667071-df22-41df-b230-b608239004c7" + ], + "revision_id": [ + "1206" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1625671753" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2021" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1625671753" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2019-0322, State of New Hampshire v. Joshua Pouliot", + "id": "16276", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    Tags:
    2021
    \n
    Date: 01/13/2021
    \n
    \n \n
    \n
    ", + "fields": { + "nid": [ + "16276" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2019-0322, State of New Hampshire v. Joshua Pouliot" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2021-01-13" + ], + "field_date_revised": null, + "field_description": null, + "field_document": [ + { + "id": "31876", + "title": "2019-0322, State of New Hampshire v. Joshua Pouliot", + "type": "document", + "fields": { + "nid": [ + "31876" + ], + "uuid": [ + "608e0ae5-40f5-4736-89da-4d4eae5ca3a4" + ], + "vid": [ + "132176" + ], + "langcode": [ + "en" + ], + "type": null, + "revision_timestamp": [ + "1630403253" + ], + "revision_uid": null, + "revision_log": null, + "status": [ + "1" + ], + "uid": null, + "title": [ + "2019-0322, State of New Hampshire v. Joshua Pouliot" + ], + "created": [ + "1630403236" + ], + "changed": [ + "1660678596" + ], + "promote": [ + "0" + ], + "sticky": [ + "0" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "moderation_state": [ + "published" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/documents\\/2019-0322-state-new-hampshire-v-joshua-pouliot-0\",\"pid\":\"35641\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null, + "publish_state": null, + "unpublish_state": null, + "menu_link": null, + "field_date_filed": null, + "field_date_posted": [ + "2021-03-11" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "25451", + "title": "", + "type": "document", + "fields": { + "fid": [ + "25451" + ], + "uuid": [ + "0c810738-178f-448b-94b6-e24e4ba2a369" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20190322.pdf" + ], + "uri": [ + "public://documents/2021-08/20190322.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "68214" + ], + "status": [ + "1" + ], + "created": [ + "1630403236" + ], + "changed": [ + "1630403253" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": null, + "field_document_subcategory": null, + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": null, + "field_tag": null + } + } + ], + "field_document_category": null, + "field_document_file": { + "0": { + "id": "9096", + "title": "", + "type": "document", + "fields": { + "fid": [ + "9096" + ], + "uuid": [ + "e4d00e73-6a85-4584-ac72-698090be6ae8" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2021001pouliot.pdf" + ], + "uri": [ + "public://documents/2021-07/2021001pouliot.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "94814" + ], + "status": [ + "1" + ], + "created": [ + "1626880316" + ], + "changed": [ + "1626880341" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": null, + "field_entity_tags": [ + { + "id": "1206", + "title": "2021", + "type": "document", + "fields": { + "tid": [ + "1206" + ], + "uuid": [ + "92667071-df22-41df-b230-b608239004c7" + ], + "revision_id": [ + "1206" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1625671753" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2021" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1625671753" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2022-0543 and 2022-0546, In re E.R.; In re H.R.", + "id": "56801", + "list_content": "\u003Cdiv class='document__detail'\u003E\n \u003Cdiv class='document__detail__icon__container'\u003E \u003Cimg src='https://www.courts.nh.gov/sites/g/files/ehbemt471/files/2019-12/icon-pdf.png' aria-label='PDF Document Icon'/\u003E\u003C/div\u003E\n \u003Cdiv class='document__detail__container'\u003E\n \u003Cdiv class='document__detail__title'\u003E\u003Ch3\u003E\u003Ca href='/sites/g/files/ehbemt471/files/documents/2023-06/2023033er-hr.pdf' \u003E2022-0543 and 2022-0546, In re E.R.; In re H.R.\u003C/a\u003E\u003C/h3\u003E\u003C/div\u003E\n \u003Cdiv class='document__detail__description'\u003E\u003C/div\u003E\n \u003Cdiv class='document__detail__information'\u003E\u003Cdiv\u003E\u003Cstrong\u003EDocument Format: \u003C/strong\u003EPDF\u003C/div\u003E\u003C/div\u003E\n \u003Cdiv class='document__detail__information'\u003E\u003Cdiv\u003E\u003Cstrong\u003EDate: \u003C/strong\u003E06/29/2023\u003C/div\u003E\u003C/div\u003E\n \u003Cdiv class='document__detail__information'\u003E\u003C/div\u003E\n \u003Cdiv class='document__detail__information'\u003E\u003C/div\u003E\n \u003C/div\u003E\n \u003C/div\u003E", + "fields": { + "nid": [ + "56801" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2022-0543 and 2022-0546, In re E.R.; In re H.R." + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2023-06-29" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "92886", + "title": "", + "type": "document", + "fields": { + "fid": [ + "92886" + ], + "uuid": [ + "a5b0223d-1823-4a9c-bd9b-8a8d0b380d82" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2023033er-hr.pdf" + ], + "uri": [ + "public://documents/2023-06/2023033er-hr.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "82265" + ], + "status": [ + "1" + ], + "created": [ + "1688043401" + ], + "changed": [ + "1688043408" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2256", + "title": "2023", + "type": "document", + "fields": { + "tid": [ + "2256" + ], + "uuid": [ + "6eaa7541-a403-4145-81da-358849002014" + ], + "revision_id": [ + "2256" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1672775535" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2023" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1672775535" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + } + ], + "cache_tags": [ + "api", + "api-document", + "node-16206", + "node-16216", + "node-16231", + "node-16236", + "node-16241", + "node-16246", + "node-16251", + "node-16256", + "node-16261", + "node-16266", + "node-16271", + "node-16281", + "node-16276" + ], + "expires": 1724273440 +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nh_p_example_2.compare.json b/tests/examples/opinions/united_states/nh_p_example_2.compare.json new file mode 100644 index 000000000..78c1eb604 --- /dev/null +++ b/tests/examples/opinions/united_states/nh_p_example_2.compare.json @@ -0,0 +1,167 @@ +[ + { + "case_dates": "2024-08-14", + "case_names": "State v. Keller", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/2024042keller.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0138", + "citations": "2024 N.H. 42", + "case_name_shorts": "Keller" + }, + { + "case_dates": "2024-08-14", + "case_names": "In re Estate of Colanton", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/2024043colanton.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0389", + "citations": "2024 N.H. 43", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-13", + "case_names": "In the Matter of Landgraf & Landgraf", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/2024041landgraf.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2022-0693", + "citations": "2024 N.H. 41", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-31", + "case_names": "State v. Sargent", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/2024040sargent.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0294", + "citations": "2024 N.H. 40", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-24", + "case_names": "In the Matter of Sutton & Sutton", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/2024039sutton.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0069", + "citations": "2024 N.H. 39", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-17", + "case_names": "LeFevre v. Hogan", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/2024038lefevre.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0436", + "citations": "2024 N.H. 38", + "case_name_shorts": "LeFevre" + }, + { + "case_dates": "2024-07-16", + "case_names": "Petition of City of Manchester", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/2024037manchester.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2022-0696", + "citations": "2024 N.H. 37", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-12", + "case_names": "State v. Chalpin", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/2024036chalpin.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-0413", + "citations": "2024 N.H. 36", + "case_name_shorts": "Chalpin" + }, + { + "case_dates": "2024-07-03", + "case_names": "Union Leader Corp. v. N.H. Dep't of Safety", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/2024035unionleader.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0208", + "citations": "2024 N.H. 35", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-02", + "case_names": "State v. Niebling", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/2024034niebling.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2022-0425", + "citations": "2024 N.H. 34", + "case_name_shorts": "Niebling" + }, + { + "case_dates": "2024-06-26", + "case_names": "New London Hosp. Ass'n v. Town of Newport", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-06/2024033Newlondon.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2022-0592", + "citations": "2024 N.H. 33", + "case_name_shorts": "" + }, + { + "case_dates": "2024-06-14", + "case_names": "In re A.G.", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-06/2024032-a-g.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-0062", + "citations": "2024 N.H. 32", + "case_name_shorts": "In re A.G." + }, + { + "case_dates": "2024-06-13", + "case_names": "State v. Heredia", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-06/2024031heredia.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2021-0460", + "citations": "2024 N.H. 31", + "case_name_shorts": "Heredia" + }, + { + "case_dates": "2024-06-06", + "case_names": "In the Matter of Carter & Carter", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-06/2024030carter_4.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0014", + "citations": "2024 N.H. 30", + "case_name_shorts": "" + }, + { + "case_dates": "2024-06-04", + "case_names": "Cucchi v. Town of Harrisville", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-06/2024029cucchi_5.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0265", + "citations": "2024 N.H. 29", + "case_name_shorts": "Cucchi" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nh_p_example_2.json b/tests/examples/opinions/united_states/nh_p_example_2.json new file mode 100644 index 000000000..22e71b70e --- /dev/null +++ b/tests/examples/opinions/united_states/nh_p_example_2.json @@ -0,0 +1,4431 @@ +{ + "item_count": 15, + "total": 44, + "last_page": 3, + "data": [ + { + "title": "2024 N.H. 43, In re Estate of Colanton", + "id": "63436", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case no. 2023-0389)

    \n
    \n
    Document Format: PDF
    \n
    Date: 08/14/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63436" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 43, In re Estate of Colanton" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-08-14" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2023-0389)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124896", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124896" + ], + "uuid": [ + "a36ba971-0c33-4e74-9d3a-2da168e999d0" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024043colanton.pdf" + ], + "uri": [ + "public://documents/2024-08/2024043colanton.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "89079" + ], + "status": [ + "1" + ], + "created": [ + "1723640854" + ], + "changed": [ + "1723640863" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 42, State v. Keller", + "id": "63431", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case no. 2023-0138)

    \n
    \n
    Document Format: PDF
    \n
    Date: 08/14/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63431" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 42, State v. Keller" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-08-14" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2023-0138)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124891", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124891" + ], + "uuid": [ + "c2c27be6-4df5-45ec-853e-5260050be3ce" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024042keller.pdf" + ], + "uri": [ + "public://documents/2024-08/2024042keller.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "126768" + ], + "status": [ + "1" + ], + "created": [ + "1723640837" + ], + "changed": [ + "1723640847" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 41, In the Matter of Landgraf & Landgraf", + "id": "63416", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case no. 2022-0693)

    \n
    \n
    Document Format: PDF
    \n
    Date: 08/13/2024
    \n
    \n \n
    \n
    ", + "fields": { + "nid": [ + "63416" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 41, In the Matter of Landgraf & Landgraf" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-08-13" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2022-0693)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": [ + { + "id": "63421", + "title": "https://www.dhhs.nh.gov/sites/g/files/ehbemt476/files/documents2/css-guidelines-book.pdf", + "type": "document", + "fields": { + "nid": [ + "63421" + ], + "uuid": [ + "42cca4c2-4ea3-4262-99c0-4d063aeda3cc" + ], + "vid": [ + "198601" + ], + "langcode": [ + "en" + ], + "type": null, + "revision_timestamp": [ + "1723554413" + ], + "revision_uid": null, + "revision_log": null, + "status": [ + "1" + ], + "uid": null, + "title": [ + "https://www.dhhs.nh.gov/sites/g/files/ehbemt476/files/documents2/css-guidelines-book.pdf" + ], + "created": [ + "1723554387" + ], + "changed": [ + "1723554413" + ], + "promote": [ + "0" + ], + "sticky": [ + "0" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "moderation_state": [ + "published" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/document\\/httpswwwdhhsnhgovsitesgfilesehbemt476filesdocuments2css-guidelines-bookpdf\",\"pid\":\"54476\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null, + "publish_state": null, + "unpublish_state": null, + "menu_link": null, + "field_date_filed": null, + "field_date_posted": [ + "2024-08-13" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124811", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124811" + ], + "uuid": [ + "d8c3c226-95f5-4a69-b7b4-285779bbbb66" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2022-0693-citation.pdf" + ], + "uri": [ + "public://documents/2024-08/2022-0693-citation.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "2686550" + ], + "status": [ + "1" + ], + "created": [ + "1723554387" + ], + "changed": [ + "1723554413" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": null, + "field_document_subcategory": null, + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": null, + "field_tag": null + } + } + ], + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124806", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124806" + ], + "uuid": [ + "2c959cc4-cfbf-4383-96a4-486d6f9c0d28" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024041landgraf.pdf" + ], + "uri": [ + "public://documents/2024-08/2024041landgraf.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "71914" + ], + "status": [ + "1" + ], + "created": [ + "1723554240" + ], + "changed": [ + "1723554259" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 40, State v. Sargent", + "id": "63326", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case no. 2023-0294)

    \n
    \n
    Document Format: PDF
    \n
    Date: 07/31/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63326" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 40, State v. Sargent" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-31" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2023-0294)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "123956", + "title": "", + "type": "document", + "fields": { + "fid": [ + "123956" + ], + "uuid": [ + "c4461fda-3cd2-4239-aaa7-a6a8bba0c3ff" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024040sargent.pdf" + ], + "uri": [ + "public://documents/2024-07/2024040sargent.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "101798" + ], + "status": [ + "1" + ], + "created": [ + "1722430732" + ], + "changed": [ + "1723831847" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 39, In the Matter of Sutton & Sutton", + "id": "63301", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case no. 2023-0069)

    \n
    \n
    Document Format: PDF
    \n
    Date: 07/24/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63301" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 39, In the Matter of Sutton & Sutton" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-24" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2023-0069)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "123581", + "title": "", + "type": "document", + "fields": { + "fid": [ + "123581" + ], + "uuid": [ + "d03162f7-840e-4c38-98fd-d7ff528b11a5" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024039sutton.pdf" + ], + "uri": [ + "public://documents/2024-07/2024039sutton.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "65852" + ], + "status": [ + "1" + ], + "created": [ + "1721826380" + ], + "changed": [ + "1721826390" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 38, LeFevre v. Hogan", + "id": "63276", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case no. 2023-0436)

    \n
    \n
    Document Format: PDF
    \n
    Date: 07/17/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63276" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 38, LeFevre v. Hogan" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-17" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2023-0436)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "123121", + "title": "", + "type": "document", + "fields": { + "fid": [ + "123121" + ], + "uuid": [ + "28356aa5-2864-4cb6-867b-a524a9c9c057" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024038lefevre.pdf" + ], + "uri": [ + "public://documents/2024-07/2024038lefevre.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "90546" + ], + "status": [ + "1" + ], + "created": [ + "1721221213" + ], + "changed": [ + "1721221232" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 37, Petition of City of Manchester", + "id": "63151", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case no. 2022-0696)

    \n
    \n
    Document Format: PDF
    \n
    Date: 07/16/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63151" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 37, Petition of City of Manchester" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-16" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2022-0696)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "122936", + "title": "", + "type": "document", + "fields": { + "fid": [ + "122936" + ], + "uuid": [ + "c8ce2338-6135-4baa-b2d4-e06431da48dd" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024037manchester.pdf" + ], + "uri": [ + "public://documents/2024-07/2024037manchester.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "68982" + ], + "status": [ + "1" + ], + "created": [ + "1721134950" + ], + "changed": [ + "1721134972" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 36, State v. Chalpin", + "id": "63141", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case nos. 2019-0413, 2020-0573, 2022-0108, and 2022-0191)

    \n
    \n
    Document Format: PDF
    \n
    Date: 07/12/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63141" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 36, State v. Chalpin" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-12" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case nos. 2019-0413, 2020-0573, 2022-0108, and 2022-0191)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "122541", + "title": "", + "type": "document", + "fields": { + "fid": [ + "122541" + ], + "uuid": [ + "b56a2863-173d-4782-b4ed-da339ef3290b" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024036chalpin.pdf" + ], + "uri": [ + "public://documents/2024-07/2024036chalpin.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "132945" + ], + "status": [ + "1" + ], + "created": [ + "1720789438" + ], + "changed": [ + "1720789459" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 35, Union Leader Corp. v. N.H. Dep’t of Safety", + "id": "62981", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case no. 2023-0208)

    \n
    \n
    Document Format: PDF
    \n
    Date: 07/03/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "62981" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 35, Union Leader Corp. v. N.H. Dep’t of Safety" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-03" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2023-0208)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "121876", + "title": "", + "type": "document", + "fields": { + "fid": [ + "121876" + ], + "uuid": [ + "6e086cf6-4f45-4718-90e6-8129ccf3b9a4" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024035unionleader.pdf" + ], + "uri": [ + "public://documents/2024-07/2024035unionleader.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "79192" + ], + "status": [ + "1" + ], + "created": [ + "1720011867" + ], + "changed": [ + "1720011881" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 34, State v. Niebling", + "id": "62976", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case no. 2022-0425)

    \n
    \n
    Document Format: PDF
    \n
    Date: 07/02/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "62976" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 34, State v. Niebling" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-02" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2022-0425)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "121796", + "title": "", + "type": "document", + "fields": { + "fid": [ + "121796" + ], + "uuid": [ + "f44ffafe-44da-43bb-b58a-31955a0e8bda" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024034niebling.pdf" + ], + "uri": [ + "public://documents/2024-07/2024034niebling.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "69499" + ], + "status": [ + "1" + ], + "created": [ + "1719925280" + ], + "changed": [ + "1719925286" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 33, New London Hosp. Ass’n v. Town of Newport", + "id": "62936", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case no. 2022-0592)

    \n
    \n
    Document Format: PDF
    \n
    Date: 06/26/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "62936" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 33, New London Hosp. Ass’n v. Town of Newport" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-06-26" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2022-0592)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "121086", + "title": "", + "type": "document", + "fields": { + "fid": [ + "121086" + ], + "uuid": [ + "8d90b4db-b055-46e9-baa5-ce86e1961eba" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024033Newlondon.pdf" + ], + "uri": [ + "public://documents/2024-06/2024033Newlondon.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "114610" + ], + "status": [ + "1" + ], + "created": [ + "1719406760" + ], + "changed": [ + "1719406776" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 32, In re A.G.", + "id": "62881", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case no. 2024-0062)

    \n
    \n
    Document Format: PDF
    \n
    Date: 06/14/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "62881" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 32, In re A.G." + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-06-14" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2024-0062)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "120456", + "title": "", + "type": "document", + "fields": { + "fid": [ + "120456" + ], + "uuid": [ + "6d661bb4-434f-4bfe-aa8a-d4764b93615e" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024032-a-g.pdf" + ], + "uri": [ + "public://documents/2024-06/2024032-a-g.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "63297" + ], + "status": [ + "1" + ], + "created": [ + "1718370441" + ], + "changed": [ + "1718370460" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 31, State v. Heredia", + "id": "62871", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case no. 2021-0460)

    \n
    \n
    Document Format: PDF
    \n
    Date: 06/13/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "62871" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 31, State v. Heredia" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-06-13" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2021-0460)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "120326", + "title": "", + "type": "document", + "fields": { + "fid": [ + "120326" + ], + "uuid": [ + "274ac979-38fc-4718-b2c1-176c09f037fb" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024031heredia.pdf" + ], + "uri": [ + "public://documents/2024-06/2024031heredia.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "106802" + ], + "status": [ + "1" + ], + "created": [ + "1718283530" + ], + "changed": [ + "1718283546" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 30, In the Matter of Carter & Carter", + "id": "62701", + "list_content": "", + "fields": { + "nid": [ + "62701" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 30, In the Matter of Carter & Carter" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-06-06" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2023-0014)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": [ + { + "id": "62716", + "title": "https://www.oed.com/dictionary/environment_n?tab=meaning_and_use# 5307111", + "type": "document", + "fields": { + "nid": [ + "62716" + ], + "uuid": [ + "cf91ff73-87f9-466a-a34a-2a4b9e932cd5" + ], + "vid": [ + "195131" + ], + "langcode": [ + "en" + ], + "type": null, + "revision_timestamp": [ + "1717680922" + ], + "revision_uid": null, + "revision_log": null, + "status": [ + "1" + ], + "uid": null, + "title": [ + "https://www.oed.com/dictionary/environment_n?tab=meaning_and_use# 5307111" + ], + "created": [ + "1717680910" + ], + "changed": [ + "1717680922" + ], + "promote": [ + "0" + ], + "sticky": [ + "0" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "moderation_state": [ + "published" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/document\\/httpswwwoedcomdictionaryenvironmentntabmeaninganduse-5307111-0\",\"pid\":\"53371\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null, + "publish_state": null, + "unpublish_state": null, + "menu_link": null, + "field_date_filed": null, + "field_date_posted": null, + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "119786", + "title": "", + "type": "document", + "fields": { + "fid": [ + "119786" + ], + "uuid": [ + "31bd9822-0dc7-4390-848c-edf99e92de41" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2023-0014-citation-1_1.pdf" + ], + "uri": [ + "public://documents/2024-06/2023-0014-citation-1_1.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "713760" + ], + "status": [ + "1" + ], + "created": [ + "1717680910" + ], + "changed": [ + "1717680922" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": null, + "field_document_subcategory": null, + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": null, + "field_tag": null + } + }, + { + "id": "62721", + "title": "https://www.oed.com/dictionary/present_adj?tab=meaning_and_use#28601263", + "type": "document", + "fields": { + "nid": [ + "62721" + ], + "uuid": [ + "6e4e5303-be6f-40df-85c6-032a6f6ebfe9" + ], + "vid": [ + "195141" + ], + "langcode": [ + "en" + ], + "type": null, + "revision_timestamp": [ + "1717682505" + ], + "revision_uid": null, + "revision_log": null, + "status": [ + "1" + ], + "uid": null, + "title": [ + "https://www.oed.com/dictionary/present_adj?tab=meaning_and_use#28601263" + ], + "created": [ + "1717682485" + ], + "changed": [ + "1717682505" + ], + "promote": [ + "0" + ], + "sticky": [ + "0" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "moderation_state": [ + "published" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/document\\/httpswwwoedcomdictionarypresentadjtabmeaninganduse28601263-0\",\"pid\":\"53376\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null, + "publish_state": null, + "unpublish_state": null, + "menu_link": null, + "field_date_filed": null, + "field_date_posted": [ + "2024-06-06" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "119791", + "title": "", + "type": "document", + "fields": { + "fid": [ + "119791" + ], + "uuid": [ + "c635740b-fb32-4847-8984-91703430fcff" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2023-0014-citation-2_0.pdf" + ], + "uri": [ + "public://documents/2024-06/2023-0014-citation-2_0.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "1288792" + ], + "status": [ + "1" + ], + "created": [ + "1717682485" + ], + "changed": [ + "1717682505" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": null, + "field_document_subcategory": null, + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": null, + "field_tag": null + } + } + ], + "field_document_category": null, + "field_document_file": { + "0": { + "id": "119766", + "title": "", + "type": "document", + "fields": { + "fid": [ + "119766" + ], + "uuid": [ + "29aed3cc-a15b-4361-9f16-01761f183635" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024030carter_4.pdf" + ], + "uri": [ + "public://documents/2024-06/2024030carter_4.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "70030" + ], + "status": [ + "1" + ], + "created": [ + "1717679344" + ], + "changed": [ + "1717679354" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024 N.H. 29, Cucchi v. Town of Harrisville", + "id": "62691", + "list_content": "
    \n
    \n
    \n \n

    (Issued in case no. 2023-0265)

    \n
    \n
    Document Format: PDF
    \n
    Date: 06/04/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "62691" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024 N.H. 29, Cucchi v. Town of Harrisville" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-06-04" + ], + "field_date_revised": null, + "field_description": [ + { + "#text": "

    (Issued in case no. 2023-0265)

    \r\n", + "#type": "processed_text", + "#format": "standard_html" + } + ], + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "119596", + "title": "", + "type": "document", + "fields": { + "fid": [ + "119596" + ], + "uuid": [ + "8ed7713e-f72b-41ad-af9b-873b94d126c1" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "2024029cucchi_5.pdf" + ], + "uri": [ + "public://documents/2024-06/2024029cucchi_5.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "63520" + ], + "status": [ + "1" + ], + "created": [ + "1717506742" + ], + "changed": [ + "1717506750" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1331", + "title": "Supreme Court Opinion", + "type": "document", + "fields": { + "tid": [ + "1331" + ], + "uuid": [ + "47287b32-61ff-4c43-8729-613ddcbe16df" + ], + "revision_id": [ + "1331" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1626458907" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Opinion" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1626458907" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + } + ], + "cache_tags": [ + "api", + "api-document", + "node-63436", + "node-63431", + "node-63416", + "node-63326", + "node-63301", + "node-63276", + "node-63151", + "node-63141", + "node-62981", + "node-62976", + "node-62936", + "node-62881", + "node-62871", + "node-62701", + "node-62691" + ], + "expires": 1724262502 +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nh_u_example.compare.json b/tests/examples/opinions/united_states/nh_u_example.compare.json new file mode 100644 index 000000000..d4ba953e1 --- /dev/null +++ b/tests/examples/opinions/united_states/nh_u_example.compare.json @@ -0,0 +1,288 @@ +[ + { + "case_dates": "2024-08-14", + "case_names": "State of New Hampshire v. Paul J. Howard, Jr.", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20230040.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0040", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-01", + "case_names": "State of New Hampshire v. Matthew S. Roz", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20210592.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2021-0592", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-30", + "case_names": "State of New Hampshire v. Jeffrey Woodburn", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20230484.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0484", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-30", + "case_names": "State of New Hampshire v. Antonios N. Dimoulas", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20220486.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2022-0486", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-29", + "case_names": "State of New Hampshire v. Joseph LeBlanc", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20240165.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-0165", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-24", + "case_names": "Appeal of Woodsville Fire District", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/20220568.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2022-0568", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-23", + "case_names": "K.B. v. J.B.", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/20230077.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0077", + "citations": "", + "case_name_shorts": "K.B." + }, + { + "case_dates": "2024-07-16", + "case_names": "State of New Hampshire v. Mauricio D. Guerrero", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20230411.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0411", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-16", + "case_names": "James McDermott v. Thomas Walsh", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20230500.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0500", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-15", + "case_names": "John Rymes v. Blue Mountain Forest Association d/b/a Corbin Park & a.", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20230681.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0681", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-15", + "case_names": "In the Matter of Mark Foley and Kasey Woodman", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20230448.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0448", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-15", + "case_names": "In the Matter of Kelly Lavoie and Justin Lavoie", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20230428.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0428", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-15", + "case_names": "In re Estate of Anthony Martini", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20230056.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0056", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-11", + "case_names": "State of New Hampshire v. Amuri Diole", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/20220588.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2022-0588", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-02", + "case_names": "State of New Hampshire v. Ernesto Rivera", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/20160007.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2016-0007", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-01", + "case_names": "Stephanie Kelly v. Corey Rivers", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20230506.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0506", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-01", + "case_names": "State of New Hampshire v. Christopher C. Derrico", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20230271.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0271", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-01", + "case_names": "In the Matter of Paula Dill and James Scrivens", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20230415.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0415", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-01", + "case_names": "In the Matter of Michael Boisvert and Nicole Lariviere", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20230147.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0147", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-01", + "case_names": "Eastern Inns Condominium Association v. John Ringland", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-08/20230515.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0515", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-06-28", + "case_names": "State of New Hampshire v. Mitchell Tennison", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/20220711.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2022-0711", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-06-28", + "case_names": "State of New Hampshire v. Dylan Preneveau", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/20230259.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0259", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-06-28", + "case_names": "In the Matter of Alexander Doyle and Eve Alintuck", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/20230447.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0447", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-06-28", + "case_names": "Estate of Marlon Salgado Lucero", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/20230529.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0529", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-06-28", + "case_names": "Albert Fischer Family Trust v. Aletheia Fischer", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2024-07/20230725.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0725", + "citations": "", + "case_name_shorts": "" + }, + { + "case_dates": "2015-05-21", + "case_names": "Marissa Rattee v. Andre Bertolino", + "download_urls": "https://www.courts.nh.gov/sites/g/files/ehbemt471/files/documents/2021-09/20150082.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2015-0082", + "citations": "", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nh_u_example.json b/tests/examples/opinions/united_states/nh_u_example.json new file mode 100644 index 000000000..3241fc464 --- /dev/null +++ b/tests/examples/opinions/united_states/nh_u_example.json @@ -0,0 +1,6875 @@ +{ + "item_count": 25, + "total": 140, + "last_page": 6, + "data": [ + { + "title": "2015-0082, Marissa Rattee v. Andre Bertolino", + "id": "38281", + "list_content": "\u003Cdiv class='document__detail'\u003E\n \u003Cdiv class='document__detail__icon__container'\u003E \u003Cimg src='https://www.courts.nh.gov/sites/g/files/ehbemt471/files/2019-12/icon-pdf.png' aria-label='PDF Document Icon'/\u003E\u003C/div\u003E\n \u003Cdiv class='document__detail__container'\u003E\n \u003Cdiv class='document__detail__title'\u003E\u003Ch3\u003E\u003Ca href='/sites/g/files/ehbemt471/files/documents/2021-09/20150082.pdf' \u003E2015-0082, Marissa Rattee v. Andre Bertolino\u003C/a\u003E\u003C/h3\u003E\u003C/div\u003E\n \u003Cdiv class='document__detail__description'\u003E\u003C/div\u003E\n \u003Cdiv class='document__detail__information'\u003E\u003Cdiv\u003E\u003Cstrong\u003EDocument Format: \u003C/strong\u003EPDF\u003C/div\u003E\u003C/div\u003E\n \u003Cdiv class='document__detail__information'\u003E\u003Cdiv\u003E\u003Cstrong\u003EDate Filed: \u003C/strong\u003E05/21/2015\u003C/div\u003E\u003C/div\u003E\n \u003Cdiv class='document__detail__information'\u003E\u003C/div\u003E\n \u003Cdiv class='document__detail__information'\u003E\u003C/div\u003E\n \u003C/div\u003E\n \u003C/div\u003E", + "fields": { + "nid": [ + "38281" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2015-0082, Marissa Rattee v. Andre Bertolino" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": [ + "2015-05-21" + ], + "field_date_posted": null, + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "32111", + "title": "", + "type": "document", + "fields": { + "fid": [ + "32111" + ], + "uuid": [ + "f34d1826-e1e6-4eb2-9eff-8e346db95997" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20150082.pdf" + ], + "uri": [ + "public://documents/2021-09/20150082.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "63633" + ], + "status": [ + "1" + ], + "created": [ + "1631281513" + ], + "changed": [ + "1631281534" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "1586", + "title": "2015", + "type": "document", + "fields": { + "tid": [ + "1586" + ], + "uuid": [ + "c9daddb8-74e9-48ea-a77b-dc0706e690ba" + ], + "revision_id": [ + "1586" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1628101350" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2015" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1628101350" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0040, State of New Hampshire v. Paul J. Howard, Jr.", + "id": "63426", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 08/14/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63426" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0040, State of New Hampshire v. Paul J. Howard, Jr." + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-08-14" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124886", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124886" + ], + "uuid": [ + "95c6a347-45cf-4e5b-b69e-58975d18e7b3" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230040.pdf" + ], + "uri": [ + "public://documents/2024-08/20230040.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "72501" + ], + "status": [ + "1" + ], + "created": [ + "1723640808" + ], + "changed": [ + "1723640819" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2021-0592, State of New Hampshire v. Matthew S. Roz", + "id": "63336", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 08/01/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63336" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2021-0592, State of New Hampshire v. Matthew S. Roz" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-08-01" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124041", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124041" + ], + "uuid": [ + "9bd0a97d-c86a-4eba-b1f8-6de72ae59aea" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20210592.pdf" + ], + "uri": [ + "public://documents/2024-08/20210592.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "72668" + ], + "status": [ + "1" + ], + "created": [ + "1722517183" + ], + "changed": [ + "1722517221" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2022-0486, State of New Hampshire v. Antonios N. Dimoulas", + "id": "63406", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/30/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63406" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2022-0486, State of New Hampshire v. Antonios N. Dimoulas" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-30" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124406", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124406" + ], + "uuid": [ + "3967c575-2d0b-4173-ae0c-9c0e58ab5dcb" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20220486.pdf" + ], + "uri": [ + "public://documents/2024-08/20220486.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "84500" + ], + "status": [ + "1" + ], + "created": [ + "1722960501" + ], + "changed": [ + "1722960522" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0484, State of New Hampshire v. Jeffrey Woodburn", + "id": "63411", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/30/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63411" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0484, State of New Hampshire v. Jeffrey Woodburn" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-30" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124411", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124411" + ], + "uuid": [ + "cf55814e-59c2-4b32-83a0-8aaad360a788" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230484.pdf" + ], + "uri": [ + "public://documents/2024-08/20230484.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "88501" + ], + "status": [ + "1" + ], + "created": [ + "1722961830" + ], + "changed": [ + "1722961851" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2024-0165, State of New Hampshire v. Joseph LeBlanc", + "id": "63396", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/29/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63396" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2024-0165, State of New Hampshire v. Joseph LeBlanc" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-29" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124396", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124396" + ], + "uuid": [ + "34517e34-5c5d-4b17-8034-7b7eb44e88a7" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20240165.pdf" + ], + "uri": [ + "public://documents/2024-08/20240165.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "87949" + ], + "status": [ + "1" + ], + "created": [ + "1722958610" + ], + "changed": [ + "1722958624" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2022-0568, Appeal of Woodsville Fire District", + "id": "63306", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/24/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63306" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2022-0568, Appeal of Woodsville Fire District" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-24" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "123586", + "title": "", + "type": "document", + "fields": { + "fid": [ + "123586" + ], + "uuid": [ + "01c83a69-eb2b-49db-b17e-06448b7350dd" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20220568.pdf" + ], + "uri": [ + "public://documents/2024-07/20220568.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "80868" + ], + "status": [ + "1" + ], + "created": [ + "1721826405" + ], + "changed": [ + "1721826417" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0077, K.B. v. J.B.", + "id": "63286", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/23/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63286" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0077, K.B. v. J.B." + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-23" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "123491", + "title": "", + "type": "document", + "fields": { + "fid": [ + "123491" + ], + "uuid": [ + "7842f805-a8f7-4f87-a6a2-68beff83e168" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230077.pdf" + ], + "uri": [ + "public://documents/2024-07/20230077.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "73792" + ], + "status": [ + "1" + ], + "created": [ + "1721740173" + ], + "changed": [ + "1721740188" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0411, State of New Hampshire v. Mauricio D. Guerrero", + "id": "63391", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/16/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63391" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0411, State of New Hampshire v. Mauricio D. Guerrero" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-16" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124391", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124391" + ], + "uuid": [ + "30102544-8132-42f4-90af-83139c91e6c4" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230411.pdf" + ], + "uri": [ + "public://documents/2024-08/20230411.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "55522" + ], + "status": [ + "1" + ], + "created": [ + "1722958564" + ], + "changed": [ + "1722958580" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0500, James McDermott v. Thomas Walsh", + "id": "63371", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/16/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63371" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0500, James McDermott v. Thomas Walsh" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-16" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124371", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124371" + ], + "uuid": [ + "57e64f19-83a1-4abb-890a-8e9425d80b63" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230500.pdf" + ], + "uri": [ + "public://documents/2024-08/20230500.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "54918" + ], + "status": [ + "1" + ], + "created": [ + "1722958332" + ], + "changed": [ + "1722958360" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0056, In re Estate of Anthony Martini", + "id": "63386", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/15/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63386" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0056, In re Estate of Anthony Martini" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-15" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124386", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124386" + ], + "uuid": [ + "e064d1b4-46c4-4a21-8be4-3c9a72553ba0" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230056.pdf" + ], + "uri": [ + "public://documents/2024-08/20230056.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "63817" + ], + "status": [ + "1" + ], + "created": [ + "1722958533" + ], + "changed": [ + "1722958546" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0428, In the Matter of Kelly Lavoie and Justin Lavoie", + "id": "63401", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/15/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63401" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0428, In the Matter of Kelly Lavoie and Justin Lavoie" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-15" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124401", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124401" + ], + "uuid": [ + "b6a1b6b9-e0c6-4bd4-bc3f-02d91bf972da" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230428.pdf" + ], + "uri": [ + "public://documents/2024-08/20230428.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "65114" + ], + "status": [ + "1" + ], + "created": [ + "1722960431" + ], + "changed": [ + "1722960478" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0448, In the Matter of Mark Foley and Kasey Woodman", + "id": "63376", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/15/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63376" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0448, In the Matter of Mark Foley and Kasey Woodman" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-15" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124376", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124376" + ], + "uuid": [ + "f219ad88-528d-4940-96e1-c86d93bdf8b7" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230448.pdf" + ], + "uri": [ + "public://documents/2024-08/20230448.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "62638" + ], + "status": [ + "1" + ], + "created": [ + "1722958457" + ], + "changed": [ + "1722958468" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0681, John Rymes v. Blue Mountain Forest Association d/b/a Corbin Park & a.", + "id": "63381", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/15/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63381" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0681, John Rymes v. Blue Mountain Forest Association d/b/a Corbin Park & a." + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-15" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124381", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124381" + ], + "uuid": [ + "4d47b48d-04e6-4177-bd9a-641e64e658c8" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230681.pdf" + ], + "uri": [ + "public://documents/2024-08/20230681.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "61194" + ], + "status": [ + "1" + ], + "created": [ + "1722958491" + ], + "changed": [ + "1722958505" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2022-0588, State of New Hampshire v. Amuri Diole", + "id": "62991", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/11/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "62991" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2022-0588, State of New Hampshire v. Amuri Diole" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-11" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "122316", + "title": "", + "type": "document", + "fields": { + "fid": [ + "122316" + ], + "uuid": [ + "96c0b295-1530-464b-bbfe-be36b4abdbee" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20220588.pdf" + ], + "uri": [ + "public://documents/2024-07/20220588.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "284820" + ], + "status": [ + "1" + ], + "created": [ + "1720703077" + ], + "changed": [ + "1720703089" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2016-0007, State of New Hampshire v. Ernesto Rivera", + "id": "62971", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/02/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "62971" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2016-0007, State of New Hampshire v. Ernesto Rivera" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-02" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "121801", + "title": "", + "type": "document", + "fields": { + "fid": [ + "121801" + ], + "uuid": [ + "763cece5-cca1-491b-aaf2-0b78a7263147" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20160007.pdf" + ], + "uri": [ + "public://documents/2024-07/20160007.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "129978" + ], + "status": [ + "1" + ], + "created": [ + "1719925296" + ], + "changed": [ + "1721746511" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0515, Eastern Inns Condominium Association v. John Ringland", + "id": "63346", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/01/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63346" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0515, Eastern Inns Condominium Association v. John Ringland" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-01" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124346", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124346" + ], + "uuid": [ + "3bfad2d1-c823-4748-9c2f-48944244cf53" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230515.pdf" + ], + "uri": [ + "public://documents/2024-08/20230515.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "61300" + ], + "status": [ + "1" + ], + "created": [ + "1722956784" + ], + "changed": [ + "1722956806" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0147, In the Matter of Michael Boisvert and Nicole Lariviere", + "id": "63361", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/01/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63361" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0147, In the Matter of Michael Boisvert and Nicole Lariviere" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-01" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124361", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124361" + ], + "uuid": [ + "bd88e080-b072-4c76-afb6-a8b556b5b23f" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230147.pdf" + ], + "uri": [ + "public://documents/2024-08/20230147.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "65419" + ], + "status": [ + "1" + ], + "created": [ + "1722957863" + ], + "changed": [ + "1722957879" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0506, Stephanie Kelly v. Corey Rivers", + "id": "63351", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/01/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63351" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0506, Stephanie Kelly v. Corey Rivers" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-01" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124351", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124351" + ], + "uuid": [ + "5b7cb0f2-4b70-43cb-8452-8e7e444aab9f" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230506.pdf" + ], + "uri": [ + "public://documents/2024-08/20230506.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "63088" + ], + "status": [ + "1" + ], + "created": [ + "1722956826" + ], + "changed": [ + "1722956852" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0415, In the Matter of Paula Dill and James Scrivens", + "id": "63366", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/01/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63366" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0415, In the Matter of Paula Dill and James Scrivens" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-01" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124366", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124366" + ], + "uuid": [ + "df0193a4-7677-471c-a515-0d9b425b0d0d" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230415.pdf" + ], + "uri": [ + "public://documents/2024-08/20230415.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "58339" + ], + "status": [ + "1" + ], + "created": [ + "1722957900" + ], + "changed": [ + "1722957917" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0271, State of New Hampshire v. Christopher C. Derrico", + "id": "63356", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 07/01/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63356" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0271, State of New Hampshire v. Christopher C. Derrico" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-07-01" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "124356", + "title": "", + "type": "document", + "fields": { + "fid": [ + "124356" + ], + "uuid": [ + "41400988-214b-42d1-9ea1-350fe319ca75" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230271.pdf" + ], + "uri": [ + "public://documents/2024-08/20230271.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "82084" + ], + "status": [ + "1" + ], + "created": [ + "1722956881" + ], + "changed": [ + "1722956905" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0725, Albert Fischer Family Trust v. Aletheia Fischer", + "id": "63251", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 06/28/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63251" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0725, Albert Fischer Family Trust v. Aletheia Fischer" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-06-28" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "123036", + "title": "", + "type": "document", + "fields": { + "fid": [ + "123036" + ], + "uuid": [ + "599bc464-5cd1-4cb0-b778-93f11c5f00e3" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230725.pdf" + ], + "uri": [ + "public://documents/2024-07/20230725.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "95879" + ], + "status": [ + "1" + ], + "created": [ + "1721158322" + ], + "changed": [ + "1721158340" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0529, Estate of Marlon Salgado Lucero", + "id": "63266", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 06/28/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63266" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0529, Estate of Marlon Salgado Lucero" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-06-28" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "123051", + "title": "", + "type": "document", + "fields": { + "fid": [ + "123051" + ], + "uuid": [ + "5fba44e2-1ed7-4b00-b281-64e5b9e688c8" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230529.pdf" + ], + "uri": [ + "public://documents/2024-07/20230529.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "53630" + ], + "status": [ + "1" + ], + "created": [ + "1721158448" + ], + "changed": [ + "1721158462" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0259, State of New Hampshire v. Dylan Preneveau", + "id": "63256", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 06/28/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63256" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0259, State of New Hampshire v. Dylan Preneveau" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-06-28" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "123041", + "title": "", + "type": "document", + "fields": { + "fid": [ + "123041" + ], + "uuid": [ + "d6503776-8eee-41ed-836e-2c936e27859f" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230259.pdf" + ], + "uri": [ + "public://documents/2024-07/20230259.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "112440" + ], + "status": [ + "1" + ], + "created": [ + "1721158365" + ], + "changed": [ + "1721158386" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2022-0711, State of New Hampshire v. Mitchell Tennison", + "id": "63271", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 06/28/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63271" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2022-0711, State of New Hampshire v. Mitchell Tennison" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-06-28" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "123056", + "title": "", + "type": "document", + "fields": { + "fid": [ + "123056" + ], + "uuid": [ + "fc36f110-3a1c-435e-b65a-393519a2af27" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20220711.pdf" + ], + "uri": [ + "public://documents/2024-07/20220711.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "59976" + ], + "status": [ + "1" + ], + "created": [ + "1721158522" + ], + "changed": [ + "1721158552" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + }, + { + "title": "2023-0447, In the Matter of Alexander Doyle and Eve Alintuck", + "id": "63261", + "list_content": "
    \n
    \n
    \n \n
    \n
    Document Format: PDF
    \n
    Date: 06/28/2024
    \n
    \n
    \n
    \n
    ", + "fields": { + "nid": [ + "63261" + ], + "langcode": [ + "en" + ], + "revision_log": null, + "title": [ + "2023-0447, In the Matter of Alexander Doyle and Eve Alintuck" + ], + "sticky": [ + "0" + ], + "moderation_state": [ + "published" + ], + "field_date_filed": null, + "field_date_posted": [ + "2024-06-28" + ], + "field_date_revised": null, + "field_description": null, + "field_document": null, + "field_document_category": null, + "field_document_file": { + "0": { + "id": "123046", + "title": "", + "type": "document", + "fields": { + "fid": [ + "123046" + ], + "uuid": [ + "23b5474f-d9b0-4292-ab12-b761188a647b" + ], + "langcode": [ + "en" + ], + "uid": null, + "filename": [ + "20230447.pdf" + ], + "uri": [ + "public://documents/2024-07/20230447.pdf" + ], + "filemime": [ + "application/pdf" + ], + "filesize": [ + "83045" + ], + "status": [ + "1" + ], + "created": [ + "1721158404" + ], + "changed": [ + "1721158434" + ] + } + }, + "alt": "" + }, + "field_document_number": null, + "field_document_purpose": [ + { + "id": "1856", + "title": "Supreme Court Case Orders", + "type": "document", + "fields": { + "tid": [ + "1856" + ], + "uuid": [ + "f4478204-1d08-4251-aa99-f3aee22dc389" + ], + "revision_id": [ + "1856" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1630333706" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "Supreme Court Case Orders" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1630333706" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_document_subcategory": [ + { + "id": "2316", + "title": "2024", + "type": "document", + "fields": { + "tid": [ + "2316" + ], + "uuid": [ + "10df0ac4-d74b-49c4-828c-4a5331b2b306" + ], + "revision_id": [ + "2316" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1703259726" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "2024" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1703259726" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"alias\":\"\\/taxonomy\\/document-subcategory\\/2024\",\"pid\":\"48856\",\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ], + "field_entity_tags": null, + "field_judge": null, + "field_link_url": null, + "field_parties": null, + "field_permissions": [ + { + "id": "131", + "title": "All Content Contributors", + "type": "document", + "fields": { + "tid": [ + "131" + ], + "uuid": [ + "b07e8e0a-6aef-44fc-8f1b-88fd74d1128a" + ], + "revision_id": [ + "131" + ], + "langcode": [ + "en" + ], + "vid": null, + "revision_created": [ + "1564519542" + ], + "revision_user": null, + "revision_log_message": null, + "status": [ + "1" + ], + "name": [ + "All Content Contributors" + ], + "description": [ + { + "#text": null, + "#type": "processed_text", + "#format": null + } + ], + "weight": [ + "0" + ], + "parent": null, + "changed": [ + "1564519542" + ], + "default_langcode": [ + "1" + ], + "revision_default": [ + "1" + ], + "revision_translation_affected": [ + "1" + ], + "metatag": null, + "path": [ + "{\"langcode\":\"en\"}" + ], + "publish_on": null, + "unpublish_on": null + } + } + ] + } + } + ], + "cache_tags": [ + "api", + "api-document", + "node-63426", + "node-63336", + "node-63406", + "node-63411", + "node-63396", + "node-63306", + "node-63286", + "node-63391", + "node-63371", + "node-63386", + "node-63401", + "node-63376", + "node-63381", + "node-62991", + "node-62971", + "node-63346", + "node-63361", + "node-63351", + "node-63366", + "node-63356", + "node-63251", + "node-63266", + "node-63256", + "node-63271", + "node-63261" + ], + "expires": 1724438321 +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nj_example.compare.json b/tests/examples/opinions/united_states/nj_example.compare.json index 8b275d26d..a7f1dc17e 100644 --- a/tests/examples/opinions/united_states/nj_example.compare.json +++ b/tests/examples/opinions/united_states/nj_example.compare.json @@ -1,112 +1,222 @@ [ { - "case_dates": "2019-07-17", - "case_names": "L.R. v. Camden City Public School District (080333)(Camden, Morris, and Somerset Counties and Statewide)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/supreme/a_61_62_17.pdf", + "case_dates": "2023-09-12", + "case_names": "C v. v. Waterford Township Board of Education", + "download_urls": "/system/files/court-opinions/2023/a_24_22.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-61/62-17", - "case_name_shorts": "L.R." + "docket_numbers": "A-24-22", + "summaries": "The Court reverses the Appellate Division's judgment because it conflicts with , 132 N.J. 587 (1993), and 189 N.J. 381 (2007). Under , sexual touching of areas of the body linked to sexuality happens, by definition, because of sex. The Court affirms the denial of plaintiffs' motions to amend their complaint and to obtain certain records.", + "case_name_shorts": "C" }, { - "case_dates": "2019-07-16", - "case_names": "Sergeant First Class Frank Chiofalo v. State of New Jersey (081607)(Mercer County and Statewide)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/supreme/a_30_18.pdf", + "case_dates": "2023-08-15", + "case_names": "State v. Oscar R. Juracan-Juracan", + "download_urls": "/system/files/court-opinions/2023/a_32_22.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-30-18", + "docket_numbers": "A-32-22", + "summaries": "In a criminal jury trial, there is a presumption that foreign language interpretation services will be provided in person, which is consistent with the New Jersey Judiciary's longstanding practice. The Court sets forth guidelines and factors to assist trial courts in deciding whether VRI should be used during criminal jury trials, and it remands the matter for the trial court to reconsider whether VRI is appropriate in the current case after assessing those factors.", "case_name_shorts": "" }, { - "case_dates": "2019-07-15", - "case_names": "In the Matter of Joseph Peter Barrett, an Attorney at Law (081035)(Statewide)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/supreme/d_126_17.pdf", + "case_dates": "2023-08-14", + "case_names": "Victoria Crisitello v. St. Theresa School 085213)", + "download_urls": "/system/files/court-opinions/2023/a_63_20.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "D-126-17", + "docket_numbers": "A-63-20", + "summaries": "The \"religious tenets\" exception of N.J.S.A. 10:5-12(a) -- \"it shall not be an unlawful employment practice\" for a religious entity to follow the tenets of its faith \"in establishing and utilizing criteria for employment\" -- is an affirmative defense available to a religious entity when confronted with a claim of employment discrimination. Here, it is uncontroverted that St. Theresa's followed the religious tenets of the Catholic Church in terminating Crisitello. St. Theresa's was therefore entitled to summary judgment and the dismissal of the complaint with prejudice.", "case_name_shorts": "" }, { - "case_dates": "2019-06-26", - "case_names": "G.A.-H. v. K.G.G.(081545)(Ocean County and Statewide)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/supreme/a_25_26_18.pdf", + "case_dates": "2023-08-10", + "case_names": "Carol Ann Conforti v. County of Ocean 086206)", + "download_urls": "/system/files/court-opinions/2023/a_1_22.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-25/26-18", - "case_name_shorts": "G.A.-H." + "docket_numbers": "A-1-22", + "summaries": "The definition of \"medical facility\" under N.J.S.A. 59:6-1 does not restrict the substantive immunities granted in N.J.S.A. 59:6-4, -5, or -6, which are also not \"superseded in the jail suicide context.\" However, there was evidence presented in this case, both at the summary judgment stage and at trial, that falls outside of any immunities granted by N.J.S.A. 59:6-4, -5, and -6. The jury could reasonably have concluded from that evidence that the County defendants were negligent. The trial court was therefore correct to refuse to dismiss plaintiff's negligence count at the summary judgment stage and to refuse to overturn the jury's verdict after trial. The Court accordingly affirms the judgment of the Appellate Division, as modified.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-09", + "case_names": "State v. Stephen A. Zadroga", + "download_urls": "/system/files/court-opinions/2023/a_22_22.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-22-22", + "summaries": "The trial court did not abuse its discretion in finding manifest necessity justified a mistrial here. As the Appellate Division held, the State can present the counts of aggravated manslaughter and death by auto to a new grand jury based solely on the reckless driving evidence, without any evidence on intoxication.", + "case_name_shorts": "" }, { - "case_dates": "2019-06-24", - "case_names": "S.L.W. v. New Jersey Division of Pensions and Benefits (081723) (Statewide)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/supreme/a_32_18.pdf", + "case_dates": "2023-08-08", + "case_names": "Suzanne Cardali v. Michael Cardali", + "download_urls": "/system/files/court-opinions/2023/a_25_22.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-32-18", - "case_name_shorts": "S.L.W." + "docket_numbers": "A-25-22", + "summaries": "A movant need not present evidence on all of the cohabitation factors set forth in , 158 N.J. 185, 202 (1999) -- or in N.J.S.A. 2A:34-23(n), for cases in which the PSA was executed after the statute's enactment -- to make a prima facie showing. If the movant's certification addresses some of the relevant factors and is supported by competent evidence, and if that evidence would warrant a finding of cohabitation if unrebutted, the trial court should find that the movant has presented prima facie evidence of cohabitation and should grant limited discovery tailored to the issues contested in the motion, subject to any protective order necessary to safeguard confidential information. Here, defendant presented prima facie evidence as to several of the cohabitation factors, and that evidence, if unrebutted, would warrant a finding of cohabitation. Defendant was therefore entitled to limited discovery.", + "case_name_shorts": "" }, { - "case_dates": "2019-06-19", - "case_names": "State v. Kareem T. Tillery (079832) (Essex County and Statewide)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/supreme/a_37_17.pdf", + "case_dates": "2023-08-07", + "case_names": "State v. Jason M. O'Donnell", + "download_urls": "/system/files/court-opinions/2023/a_17_22.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-37-17", + "docket_numbers": "A-17-22", + "summaries": "The bribery statute applies to any \"person\" who accepts an improper benefit -- incumbents, candidates who win, and candidates who lose. N.J.S.A. 2C:27-2. The statute also expressly states that it is no defense to a prosecution if a person \"was not qualified to act.\" . So even if a candidate is unable to follow through on a corrupt promise, the language of the bribery statute makes it a crime to accept cash payments for a promise of future performance. The bribery statute's history, relevant caselaw, and commentary from the Model Penal Code, on which the statute is modeled, confirm that the law extends to candidates.", "case_name_shorts": "" }, { - "case_dates": "2019-06-18", - "case_names": "State v. Rasul McNeil-Thomas (080758) (Essex County and Statewide)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/supreme/a_77_17.pdf", + "case_dates": "2023-08-03", + "case_names": "Leander Williams v. New Jersey State Parole Board", + "download_urls": "/system/files/court-opinions/2023/a_26_22.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-77-17", + "docket_numbers": "A-26-22", + "summaries": "The Parole Board cannot mandate participation in an RTP for inmates administratively paroled under the EYWO Act. Although N.J.S.A. 30:4-123.59 generally authorizes the Parole Board to impose parole conditions on adult inmates who have been administratively released under the EYWO Act, an RTP is not among the conditions that can be imposed in that setting.", "case_name_shorts": "" }, { - "case_dates": "2019-06-17", - "case_names": "In the Matter of Corey Corbo, Union City Police Department (081005) (Statewide)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/supreme/a_72_17.pdf", + "case_dates": "2023-08-02", + "case_names": "State v. Roberson Burney", + "download_urls": "/system/files/court-opinions/2023/a_14_22.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-72-17", + "docket_numbers": "A-14-22", + "summaries": "The trial court erred in admitting both the testimony placing defendant's phone at or near the crime scene and the first-time in-court identification. Those errors, in combination, deprived defendant of a fair trial.", "case_name_shorts": "" }, { - "case_dates": "2019-06-10", - "case_names": "T.L. v. Jack Goldberg, M.D.(081135) (Middlesex County and Statewide)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/supreme/a_11_18.pdf", + "case_dates": "2023-08-02", + "case_names": "State v. Quintin D. Watson", + "download_urls": "/system/files/court-opinions/2023/a_23_22.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-11-18", - "case_name_shorts": "T.L." + "docket_numbers": "A-23-22", + "summaries": "(1) Based on the identification evidence alone, defendant's conviction cannot stand. The inherently suggestive nature of first-time in-court identifications, conducted in front of a jury, risks depriving defendants of their due process rights. The Court holds that first-time in-court identifications may only be conducted when there is good reason for them and sets forth certain practices that must be observed in connection with in-court identifications. (2) The narration evidence in this case also ran afoul of the evidence rules, which do not allow for continuous, running commentary on video evidence by someone who has merely studied a recording. The Court identifies certain safeguards to underscore the limited use of narration evidence and adds that a party intending to present narration evidence should provide opposing counsel with a written summary of the proposed testimony before trial. (3) Confrontation Clause challenges are fact-specific. The testimony here about consultation with other law enforcement agencies violated defendant's right to confrontation, and the Court provides guidance for remand.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-02", + "case_names": "State v. Dante C. Allen", + "download_urls": "/system/files/court-opinions/2023/a_55_21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-55-21", + "summaries": "The Court disagrees with the Appellate Division's conclusion that the trial court should have excluded all the detective's narration of the surveillance video. The trial court properly permitted the detective to testify about the manner in which he used the surveillance video to guide his investigation. Applying principles stated today in , _ N.J. _ (2023) (slip op. at 46-60), the detective's testimony opining that the video showed defendant turning and firing his weapon should have been excluded from evidence. However, that error was harmless given the strength of the State's evidence.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-25", + "case_names": "Elizabeth Hrymoc v. Ethicon, Inc.", + "download_urls": "/system/files/court-opinions/2023/a_21_23_21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-21/23-21", + "summaries": "510(k) evidence is generally inadmissible because the 510(k) clearance process solely determines substantial equivalency, and not safety and efficacy. However, in a products liability claim premised not only on principles of negligence, but on the reasonableness of a manufacturer's conduct in not performing clinical trials or studies, evidence of 510(k) clearance has significant probative value under N.J.R.E. 401 that is not substantially outweighed by the risk of prejudice and potential juror confusion under N.J.R.E. 403. Therefore, under the specific facts and circumstances of this case, the Court affirms the judgment of the Appellate Division. However, the Court parts ways with the Appellate Division's decision as to its suggestion that the scope and admissibility of 510(k) evidence should be determined in a Rule 104 hearing. Instead, the scope and admissibility of 510(k) evidence should be resolved at the hearing on a motion in limine, which is how the issue was and, presumably, will be raised. Section 5 of the PLA does not bar plaintiffs' recovery of punitive damages, and because evidence of 510(k) clearance should have been admitted in the first stage of trial as relevant to the reasonableness of Bard's conduct in not performing clinical trials or studies, it would also be admissible in the second, punitive damages stage.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-03", + "case_names": "State v. Rami A. Amer", + "download_urls": "/system/files/court-opinions/2023/a_9_22.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-9-22", + "summaries": "The trial court did not violate defendant's speedy trial rights under the IAD, and it properly denied defendant's motion to dismiss his indictment. The Court does not agree with the Appellate Division that defense counsel waived defendant's rights under the IAD. But the Court affirms the Appellate Division's other determinations -- that the IAD's 180-day time period was tolled during the pendency of defendant's pretrial motions and that defendant was \"brought to trial\" when jury selection began prior to the deadline.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-29", + "case_names": "Facebook, Inc. v. State of New Jersey", + "download_urls": "/system/files/court-opinions/2023/a_61_21_a_7_22.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-61-21/A-7-22", + "summaries": "Based on the language and structure of the relevant statutes, the State's request for information from users' accounts invokes heightened privacy protections. The nearly contemporaneous acquisition of electronic communications here is the functional equivalent of wiretap surveillance and is therefore entitled to greater constitutional protection. New Jersey's wiretap act applies in this case to safeguard individual privacy rights under the relevant statutes and the State Constitution.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-22", + "case_names": "State v. Cornelius C. Cohen", + "download_urls": "/system/files/court-opinions/2023/a_50_21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-50-21", + "summaries": "Expanding the search to the engine compartment and trunk went beyond the scope of the automobile exception. Although the trooper smelled marijuana in the passenger compartment of the car, his initial search yielded no results and provided no justification \"to extend the zone of the . . . search further than the persons of the occupants or the interior of the car.\" , 83 N.J. 1, 14-15 (1980). As a result, the seized evidence should be suppressed.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-21", + "case_names": "State v. Andreas M. Erazo", + "download_urls": "/system/files/court-opinions/2023/a_16_22.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-16-22", + "summaries": "Defendant voluntarily went to the police station to give a witness statement. At the police station, defendant was interviewed twice. During his first interview, defendant was not in custody and thus not yet owed warnings. The factors set forth in therefore do not need to be considered to assess the admissibility of the second interview. And before police interviewed defendant the second time, they properly administered warnings. With his rights in mind, defendant executed a knowing, intelligent, and voluntary waiver. During his second interview, defendant confessed. Neither the Fifth Amendment nor state common law calls for suppression of defendant's statements.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-20", + "case_names": "Gannett Satellite Information Network, LLC v. Township of Neptune", + "download_urls": "/system/files/court-opinions/2023/a_63_21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-63-21", + "summaries": "The Court affirms as modified the Appellate Division's judgment. The Court declines to adopt an exception to the American Rule for common law right of access claims to public records. Those claims impose significant burdens on municipal clerks and other records custodians; they require a careful balancing of competing interests and the application of an array of factors that can challenge even a seasoned judge. Imposing fee-shifting in this category of cases would venture far beyond the narrow exceptions to the American Rule that New Jersey courts have adopted to date. Accordingly, Gannett is not entitled to an award of attorneys' fees in this appeal.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-15", + "case_names": "Kathleen DiFiore v. Tomo Pezic; Dora Deleon v. the Achilles Foot and Ankle Group; Jorge Remache-Robalino v. Nader Boulos, M.D.", + "download_urls": "/system/files/court-opinions/2023/a_58_59_60-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-58/59/60-21", + "summaries": "The Court affirms the Appellate Division's core holding that trial courts determine on a case-by-case basis what conditions, if any, to place on a DME -- including who may attend and whether it may be recorded -- with no absolute prohibitions or entitlements. The Court further affirms that video recording, in addition to audio recording, should be included in the range of options; that the parties shall enter into a protective order when a defense expert is concerned about the disclosure of proprietary information; that when third-party observation is permitted, the trial court shall impose reasonable conditions to prevent any disruption of or interference with the exam; and that, if a foreign or sign language interpreter is needed, a neutral interpreter shall be selected by the parties or, failing agreement, by the court.", + "case_name_shorts": "" }, { - "case_dates": "2019-06-05", - "case_names": "Janell Goffe v. Foulke Management Corp Sasha Robinson and Tijuana Johnson v. Mall Chevrolet (081258) (Camden County and Statewide)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/supreme/a_3_4_18.pdf", + "case_dates": "2023-06-12", + "case_names": "Catherine Parsells v. Board of Education of the Borough of Somerville, Somerset County", + "download_urls": "/system/files/court-opinions/2023/a_21_22.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-3/4-18", + "docket_numbers": "A-21-22", + "summaries": "Parsells did not knowingly waive her tenured right to a full-time teaching position, and the Court therefore affirms the Appellate Division's decision upholding the Commissioner's award of \"full back pay, benefits, and emoluments, less mitigation.\" But the Court rejects the extension of Bridgewater-Raritan to impose a duty on school boards to notify, in advance, full-time teachers who consider voluntarily transferring to part-time teaching positions that they may not have a right to return to their full-time position.", "case_name_shorts": "" }, { - "case_dates": "2019-06-04", - "case_names": "Sun Life Assurance Company of Canada v. Wells Fargo Bank NA (080669) (Statewide)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/supreme/a_49_17.pdf", + "case_dates": "2023-06-07", + "case_names": "State v. Barry Berry; State v. Kenneth Daniels; State v. Levell Burnett", + "download_urls": "/system/files/court-opinions/2023/a_8_22.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "A-49-17", + "docket_numbers": "A-8-22", + "summaries": "Judges are encouraged, when practical, to respond \"yes\" or \"no\" to unambiguous and specific questions posed by juries during deliberations rather than solely re-read sections of the final jury charge. In general, when a specific request for clarification clearly calls for and is capable of a \"yes\" or \"no\" answer, like here, then judges should respond accordingly. Here, the answer to the jury's question is indisputably \"yes,\" one can be a \"supervisor\" but not hold a \"high-level\" position in a drug trafficking network. Instead of responding \"yes\" to the question, however, the judge re-read the entire model kingpin charge; opined that those elements, three and four, sounded similar; and may have implicitly suggested that being a \"supervisor\" is sufficient to establish that a defendant held a \"high-level\" position within such an organization. The response to the question was an error clearly capable of producing an unjust result.", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nj_example.html b/tests/examples/opinions/united_states/nj_example.html index d377bc87a..2c83e87d7 100644 --- a/tests/examples/opinions/united_states/nj_example.html +++ b/tests/examples/opinions/united_states/nj_example.html @@ -1,153 +1,12563 @@ + + + + + + + + + + + + + + + + + + + + + + Supreme Court Opinions | NJ Courts + + + + + + + + + + + + + + + +
    + + + + + + + +
    +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    + + + + + +
    + + + + + + +
    + + +
    + + + + + + +

    + + + + + +Supreme Court Opinions + + + +

    + + + + + +
    +
    + + + + + + + + + +
    + + +
    + + + + + + + + + + + + +
    +
    + + + + +
    + + + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    + + +
    +
    + +
    + +
    + + + + + + + + + + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + + + + + + + + + + + + +
    + + +
    + + + + + + + + +
    +
    + + +
    +
    + + + + + + +
    +
    + + + + + + +
    + + +
    + + + + + + + +

    Use the search tool or list of recent options. 

    +
    + + + + +
    +
    + + + + + + + + + +
    + + +
    + + + + + +
    + + + + + +
    +
    + + + + + + + + +
    + + + + + +
    + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + +
    + + + + +
    + + + +
    + +
    + +
    + +
    +
    + + + + +
    +
    +
    +
    +

    No Supreme Court opinion reported for today Nov. 4, 2023

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-24-22
    +
    + Supreme +
    +
    +
    +
    +
    Sept. 12, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-32-22
    +
    + Supreme +
    +
    +
    +
    +
    Aug. 15, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-63-20
    +
    + Supreme +
    +
    +
    +
    +
    Aug. 14, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-1-22
    +
    + Supreme +
    +
    +
    +
    +
    Aug. 10, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-22-22
    +
    + Supreme +
    +
    +
    +
    +
    Aug. 9, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-25-22
    +
    + Supreme +
    +
    +
    +
    +
    Aug. 8, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-17-22
    +
    + Supreme +
    +
    +
    +
    +
    Aug. 7, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-26-22
    +
    + Supreme +
    +
    +
    +
    +
    Aug. 3, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-55-21
    +
    + Supreme +
    +
    +
    +
    +
    Aug. 2, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-14-22
    +
    + Supreme +
    +
    +
    +
    +
    Aug. 2, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-23-22
    +
    + Supreme +
    +
    +
    +
    +
    Aug. 2, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-21/23-21
    +
    + Supreme +
    +
    +
    +
    +
    July 25, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-9-22
    +
    + Supreme +
    +
    +
    +
    +
    July 3, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-61-21/A-7-22
    +
    + Supreme +
    +
    +
    +
    +
    June 29, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-50-21
    +
    + Supreme +
    +
    +
    +
    +
    June 22, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-16-22
    +
    + Supreme +
    +
    +
    +
    +
    June 21, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-63-21
    +
    + Supreme +
    +
    +
    +
    +
    June 20, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-58/59/60-21
    +
    + Supreme +
    +
    +
    +
    +
    June 15, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-21-22
    +
    + Supreme +
    +
    +
    +
    +
    June 12, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-8-22
    +
    + Supreme +
    +
    +
    +
    +
    June 7, 2023
    +
    + +
    +
    + +
    + +
    + +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    + + + + + + + + + + + +
    + + + +
    + + + + +
    +
    + + + + +
    +
    + + + + +
    +
    + + + + +
    +
    + + + + + + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    + + +
    +
    + + + + +
    + + + + + + + + + + + + + + + + +
    Original text
    Rate this translation
    Your feedback will be used to help improve Google Translate
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/njsuperctappdiv_example.compare.json b/tests/examples/opinions/united_states/njsuperctappdiv_example.compare.json deleted file mode 100644 index 3c19f477e..000000000 --- a/tests/examples/opinions/united_states/njsuperctappdiv_example.compare.json +++ /dev/null @@ -1,92 +0,0 @@ -[ - { - "case_dates": "2019-07-17", - "case_names": "STATE OF NEW JERSEY v. DAVON M. GORDON (14-06-1582, ESSEX COUNTY AND STATEWIDE)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/appellate/unpublished/a4517-16.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-4517-16T2", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-17", - "case_names": "LISA R. EASLEY v. NEW JERSEY DEPARTMENT OF CORRECTIONS (L-0094-13, BURLINGTON COUNTY AND STATEWIDE)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/appellate/unpublished/a4794-15.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-4794-15T2", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-17", - "case_names": "IN THE MATTER OF CITY OF PERTH AMBOY AND PERTH AMBOY POLICE BENEVOLENT ASSOCIATION LOCAL 13 (NEW JERSEY PUBLIC EMPLOYMENT RELATIONS COMMISSION)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/appellate/unpublished/a2361-16.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-2361-16T4", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-17", - "case_names": "ANASIA MAISON v. NJ TRANSIT CORP. (L-3535-14, ESSEX COUNTY AND STATEWIDE)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/appellate/published/a3737-17.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-3737-17T2", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-12", - "case_names": "IN THE MATTER OF CHANGES IN THE STATE CLASSIFICATION PLAN, COMMUNICATIONS OPERATOR, DEPARTMENT OF CORRECTIONS (NEW JERSEY CIVIL SERVICE COMMISSION)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/appellate/published/a5150-16.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-5150-16T1", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-11", - "case_names": "ROBERT CAMERON, ETC. v. SOUTH JERSEY PUBS, INC., D/B/A TGI FRIDAY'S, INC. (L-2106-14, BURLINGTON COUNTY AND STATEWIDE)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/appellate/published/a5177-17.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-5177-17T2", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-11", - "case_names": "CHARLES L. BOVE v. AKPHARMA INC. (L-0982-15, ATLANTIC COUNTY AND STATEWIDE)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/appellate/published/a2342-17.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-2342-17T3", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-10", - "case_names": "FRANK HOLTHAM, JR. v. KATHERINE LUCAS (FM-02-1695-14, BERGEN COUNTY AND STATEWIDE)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/appellate/published/a3073-17.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-3073-17T1", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-08", - "case_names": "F.K. v. INTEGRITY HOUSE, INC. (L-2239-16, ESSEX COUNTY AND STATEWIDE)", - "download_urls": "http://www.judiciary.state.nj.us/attorneys/assets/opinions/appellate/published/a1862-18.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A-1862-18T1", - "case_name_shorts": "F.K." - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/njsuperctappdiv_example.html b/tests/examples/opinions/united_states/njsuperctappdiv_example.html deleted file mode 100644 index d377bc87a..000000000 --- a/tests/examples/opinions/united_states/njsuperctappdiv_example.html +++ /dev/null @@ -1,153 +0,0 @@ -{ - "Supreme": [ - { - "OpinionID": "A-61/62-17", - "ID": "080333", - "DocumentURL": "/attorneys/assets/opinions/supreme/a_61_62_17.pdf", - "PublishDate": "07/17/2019", - "Summary": "", - "Title": "L.R. v. Camden City Public School District (080333)(Camden, Morris, and Somerset Counties and Statewide)" - }, - { - "OpinionID": "A-30-18", - "ID": "081607", - "DocumentURL": "/attorneys/assets/opinions/supreme/a_30_18.pdf", - "PublishDate": "07/16/2019", - "Summary": "

    The Court does not agree that the trial court erred in refusing to grant defendants summary judgment on plaintiff’s CEPA claim related to the alleged refusal to destroy documents, but affirms as to the fraudulent timekeeping allegations.

    ", - "Title": "Sergeant First Class Frank Chiofalo v. State of New Jersey (081607)(Mercer County and Statewide)" - }, - { - "OpinionID": "D-126-17", - "ID": "081035", - "DocumentURL": "/attorneys/assets/opinions/supreme/d_126_17.pdf", - "PublishDate": "07/15/2019", - "Summary": "

    Because the Utah court limited the presentation of evidence of a business dispute between respondent and the law firm, and because evidence that may exist in Utah cannot be compelled by respondent here, the Court cannot conclude that the OAE has proven by clear and convincing evidence that respondent knowingly misappropriated law firm funds under circumstances justifying greater discipline than that imposed in Utah.

    ", - "Title": "In the Matter of Joseph Peter Barrett, an Attorney at Law (081035)(Statewide)" - }, - { - "OpinionID": "A-25/26-18", - "ID": "081545", - "DocumentURL": "/attorneys/assets/opinions/supreme/a_25_26_18.pdf", - "PublishDate": "06/26/2019", - "Summary": "

    No reasonable trier of fact could find that Arthur knew or had special reason to know that Kenneth was engaged in a sexual relationship with a minor. Accordingly, Arthur had no duty to report Kenneth. The record similarly fails to provide a basis for liability to attach to GEM. Because the record here is determinative of Arthur’s and GEM’s liability, the Court need not decide whether a co-worker or employer with knowledge or a special reason to know that a co-worker or employee is engaged in a sexual relationship with a minor has a legal duty to report that co-worker or employee.

    ", - "Title": " G.A.-H. v. K.G.G.(081545)(Ocean County and Statewide)" - }, - { - "OpinionID": "A-32-18", - "ID": "081723", - "DocumentURL": "/attorneys/assets/opinions/supreme/a_32_18.pdf", - "PublishDate": "06/24/2019", - "Summary": "

    Upon review of the PFRS statute’s plain language and history, the Court finds that the Legislature did not intend for children of PFRS members to meet a dependency requirement to receive survivor benefits. The Court’s finding is consistent with the PFRS’s underlying policy goal of financially protecting the family members of deceased PFRS members.

    ", - "Title": "S.L.W. v. New Jersey Division of Pensions and Benefits (081723) (Statewide)" - }, - { - "OpinionID": "A-37-17", - "ID": "079832", - "DocumentURL": "/attorneys/assets/opinions/supreme/a_37_17.pdf", - "PublishDate": "06/19/2019", - "Summary": "

    The Court has significant concerns about the procedure followed in this case. Neither the script set forth on the Miranda card nor the detective’s statement to defendant addressed whether defendant agreed to waive his rights before answering questions. However, any error in the trial court’s admission of the statement was harmless beyond a reasonable doubt because the State presented overwhelming independent evidence of defendant’s guilt. And, although the State should have moved to dismiss the charges on which the jury had deadlocked before the court considered evidence relevant to those charges, the trial court did not abuse its discretion in applying three aggravating factors to impose an extended-term sentence at the high end of the statutory range.

    ", - "Title": " State v. Kareem T. Tillery (079832) (Essex County and Statewide)" - }, - { - "OpinionID": "A-77-17", - "ID": "080758", - "DocumentURL": "/attorneys/assets/opinions/supreme/a_77_17.pdf", - "PublishDate": "06/18/2019", - "Summary": "

    The Court defers to the trial judge’s determination that the disputed footage was played for the jury during the State’s case-in-chief and notes that defense counsel consented to the admission of the surveillance footage depicting the moments surrounding the shooting, including the video segment at issue. The court did not abuse its discretion in permitting the prosecutor to play the video segment during his closing remarks, and the prosecutor’s comments were reasonable and fair inferences supported by the evidence presented at trial.

    ", - "Title": "State v. Rasul McNeil-Thomas (080758) (Essex County and Statewide)" - }, - { - "OpinionID": "A-72-17", - "ID": "081135", - "DocumentURL": "/attorneys/assets/opinions/supreme/a_72_17.pdf", - "PublishDate": "06/17/2019", - "Summary": "

    The Court modifies the judgment of the Appellate Division and remands this matter to the OAL for further proceedings to allow the City the opportunity to demonstrate that the hospital records are admissible as business records, and the opportunity to present any other theories of admissibility.

    ", - "Title": "In the Matter of Corey Corbo, Union City Police Department (081005) (Statewide)" - }, - { - "OpinionID": "A-11-18", - "ID": "081135", - "DocumentURL": "/attorneys/assets/opinions/supreme/a_11_18.pdf", - "PublishDate": "06/10/2019", - "Summary": "

    The circumstances at issue in McKenney, which heavily depended on the prejudice caused to the party disadvantaged by the surprise change in trial testimony, are distinguishable from the change in testimony here. Here there was no demonstration that the changed testimony caused prejudice to T.L., and the plain error standard does not compel reversal, especially because counsel’s failure to object was likely strategic. Under the circumstances, T.L. is not entitled to a new trial.

    ", - "Title": "T.L. v. Jack Goldberg, M.D.(081135) (Middlesex County and Statewide)" - }, - { - "OpinionID": "A-3/4-18", - "ID": "080394", - "DocumentURL": "/attorneys/assets/opinions/supreme/a_3_4_18.pdf", - "PublishDate": "06/05/2019", - "Summary": "

    The trial courts’ resolution of these matters was correct and consistent with clear rulings from the United States Supreme Court that bind state and federal courts on how challenges such as plaintiffs’ should proceed. Those rulings do not permit threshold issues about overall contract validity to be resolved by the courts when the arbitration agreement itself is not specifically challenged. Here, plaintiffs attack the sales contracts in their entirety, not the language or clarity of the agreements to arbitrate or the broad delegation clauses contained in those signed arbitration agreements. The Supreme Court’s precedent compels only one conclusion: an arbitrator must resolve plaintiffs’ claims about the validity of their sales contracts as well as any arbitrability claims that plaintiffs may choose to raise.

    ", - "Title": "Janell Goffe v. Foulke Management Corp; Sasha Robinson and Tijuana Johnson v. Mall Chevrolet (081258) (Camden County and Statewide)" - }, - { - "OpinionID": "A-49-17", - "ID": "080394", - "DocumentURL": "/attorneys/assets/opinions/supreme/a_49_17.pdf", - "PublishDate": "06/04/2019", - "Summary": "

    The Court answers both parts of the first certified question in the affirmative: a life insurance policy procured with the intent to benefit persons without an insurable interest in the life of the insured does violate the public policy of New Jersey, and such a policy is void at the outset. In response to the second question, a party may be entitled to a refund of premium payments it made on the policy, depending on the circumstances.

    ", - "Title": "Sun Life Assurance Company of Canada v. Wells Fargo Bank NA (080669) (Statewide)" - }], - "Published_Appellate": [ - { - "OpinionID": "A-3737-17T2", - "DocumentURL": "/attorneys/assets/opinions/appellate/published/a3737-17.pdf", - "PublishDate": "07/17/2019", - "Title": "ANASIA MAISON VS. NJ TRANSIT CORP., ET AL. (L-3535-14, ESSEX COUNTY AND STATEWIDE)", - "Summary": "" - }, - { - "OpinionID": "A-5150-16T1", - "DocumentURL": "/attorneys/assets/opinions/appellate/published/a5150-16.pdf", - "PublishDate": "07/12/2019", - "Title": "IN THE MATTER OF CHANGES IN THE STATE CLASSIFICATION PLAN, COMMUNICATIONS OPERATOR, DEPARTMENT OF CORRECTIONS (NEW JERSEY CIVIL SERVICE COMMISSION)", - "Summary": "

    The court held that the Chairperson of the Civil Service Commission was authorized to approve the creation of a new job title and did not act arbitrarily in approving the title at issue in this case.

    " - }, - { - "OpinionID": "A-2342-17T3", - "DocumentURL": "/attorneys/assets/opinions/appellate/published/a2342-17.pdf", - "PublishDate": "07/11/2019", - "Title": "CHARLES L. BOVE VS. AKPHARMA INC., ET AL. (L-0982-15, ATLANTIC COUNTY AND STATEWIDE)", - "Summary": "

    In this appeal, the court considered whether an employee could seek damages from a former employer in a civil suit or was limited to recovery under the Workers Compensation Act (WCA) for injuries allegedly sustained from use of a nasal spray product developed by the employer. The court also examined whether frivolous litigation sanctions could be imposed, absent a finding the employee's attorneys acted in bad faith, particularly when the prevailing party's \"safe harbor\" letter failed to alert the employee's attorneys about the immunity.bar under the WCA and the prevailing party's initial motion for summary judgment was denied on all but one cause of action. The court affirmed the grant of summary judgment in the employer's favor, due to the employee's inability to demonstrate his employer had committed an \"intentional wrong\" under the two-prong test outlined in Millison v. E.I. du Pont de Nemours & Co.,101 N.J. 161, 178-79 (1985) and reversed the frivolous litigation sanction

    " - }, - { - "OpinionID": "A-5177-17T2", - "DocumentURL": "/attorneys/assets/opinions/appellate/published/a5177-17.pdf", - "PublishDate": "07/11/2019", - "Title": "ROBERT CAMERON, ETC. VS. SOUTH JERSEY PUBS, INC., D/B/A TGI FRIDAY'S, INC. (L-2106-14, BURLINGTON COUNTY AND STATEWIDE)", - "Summary": "

    this appeal, plaintiff's claims were similar to those considered by the New Jersey Supreme Court in Dugan v. TGI Fridays, Inc., 231 N.J. 24 (2017), as they related to defendant's sale of beverages from menus that did not include prices for the items sold. The court's majority determined that the Law Division improperly denied plaintiff's motion for class certification under Rule 4:32-1(b)(2). The majority concluded that the concerns raised by the Dugan Court about class certification under Rule 4:32-1(b)(3) of claims for damages under the Consumer Fraud Act (CFA), N.J.S.A. 56:8-1 to -210, and the Truth in Consumer Contract, Warranty and Notice Act (TCCWNA), N.J.S.A. 56:12-14 to -18, did not apply to plaintiff's class action for injunctive relief under (b)(2) in this case.

    According to the majority neither the Dugan's Court's concern about whether plaintiff could make a showing that members of the putative class sustained an ascertainable loss under the CFA, nor its trepidation that certifying a (b)(3) class exposed the Dugan defendant to a disproportional amount of civil penalties under the TCCWNA were considerations applicable to plaintiff's motion in this case. Here, the majority held that in determining whether cohesiveness existed among class members, the trial court should have considered whether the remedy sought would be applicable to all members or to none of them.

    The dissenting opinion concludes that the trial court correctly denied the motion for class certification under Rule 4:32-1(b)(2). According to the dissent, certification of the class for the CFA claims was not warranted because plaintiff would be required to establish that all members of the class sustained a bona fide ascertainable loss, which is an essential element of a claim under the CFA. Such claims are not cohesive since they depend on the individual's experience in purchasing beverages at defendant's restaurants. The claims under the TCCWNA also lack cohesion because relief could only be awarded to members of the class are \"aggrieved consumers,\" and such claims also are dependent upon the class members' personal experiences.

    " - }, - { - "OpinionID": "A-3073-17T1", - "DocumentURL": "/attorneys/assets/opinions/appellate/published/a3073-17.pdf", - "PublishDate": "07/10/2019", - "Title": "FRANK HOLTHAM, JR. VS. KATHERINE LUCAS (FM-02-1695-14, BERGEN COUNTY AND STATEWIDE)", - "Summary": "

    In this post-judgment matrimonial case, the trial court imposed a penalty on plaintiff, in accord with his matrimonial settlement agreement (MSA), for violating one of the MSA's terms. On appeal from the award, plaintiff invoked the contract law principle that bars, as an unenforceable penalty, liquidated damages that unreasonably exceed normally compensable contract damages. The court concludes that the contract rule against penalties does not apply with equal force to MSAs. The court emphasizes that family judges retain the authority to modify an MSA's penalty provision to assure fairness and equity. Since no modification was warranted under the facts of the case, the court affirms the penalty award.

    " - }, - { - "OpinionID": "A-1862-18T1", - "DocumentURL": "/attorneys/assets/opinions/appellate/published/a1862-18.pdf", - "PublishDate": "07/08/2019", - "Title": "F.K. VS. INTEGRITY HOUSE, INC., ET AL. (L-2239-16, ESSEX COUNTY AND STATEWIDE)", - "Summary": "

    Plaintiff F.K. appeals the trial court's December 11, 2018 order granting summary judgment to defendant Integrity House and dismissing her complaint with prejudice. The trial court determined that defendant was entitled to immunity from plaintiff's negligence action under New Jersey's Charitable Immunity Act (\"the Act\"), N.J.S.A. 2A:53A-7 to -11. On appeal, plaintiff contends that the amount of private contributions received by defendant, roughly $250,000 or 1.26% of annual revenue, is too insignificant to entitle defendant to charitable immunity.

    \"Charitable immunity is an affirmative defense, as to which, like all affirmative defenses, defendants bear the burden of persuasion.\" Abdallah v. Occupational Ctr. of Hudson Cty., Inc., 351 N.J. Super. 280, 288 (App. Div. 2002). The court concludes that defendant did not present sufficient evidence to support its entitlement to the affirmative defense of charitable immunity. The summary judgment record does not allow for a conclusive determination as to the source and use of Integrity House's funding. Therefore, the court is unable to determine whether Integrity House receives substantial funding from private contributions or relieves the government from a burden it would otherwise have to perform, as is required to be entitled to charitable immunity.

    In addition, although a determination of the specific percentage of funding Integrity House receives from private contributions is not necessary for the court's analysis, the court notes that no published case has granted charitable immunity to a non-religious, non-educational entity with such a small portion of funding from private contributions.

    Accordingly, the court reverses the trial court's grant of summary judgment.

    " - }], - "Unpublished_Appellate": [ - { - "OpinionID": "A-4794-15T2", - "DocumentURL": "/attorneys/assets/opinions/appellate/unpublished/a4794-15.pdf", - "PublishDate": "07/17/2019", - "Title": "LISA R. EASLEY VS. NEW JERSEY DEPARTMENT OF CORRECTIONS (L-0094-13, BURLINGTON COUNTY AND STATEWIDE)" - }, - { - "OpinionID": "A-2361-16T4", - "DocumentURL": "/attorneys/assets/opinions/appellate/unpublished/a2361-16.pdf", - "PublishDate": "07/17/2019", - "Title": "IN THE MATTER OF CITY OF PERTH AMBOY AND PERTH AMBOY POLICE BENEVOLENT ASSOCIATION LOCAL 13 (NEW JERSEY PUBLIC EMPLOYMENT RELATIONS COMMISSION)" - }, - { - "OpinionID": "A-4517-16T2", - "DocumentURL": "/attorneys/assets/opinions/appellate/unpublished/a4517-16.pdf", - "PublishDate": "07/17/2019", - "Title": "STATE OF NEW JERSEY VS. DAVON M. GORDON (14-06-1582, ESSEX COUNTY AND STATEWIDE)" - }] -} diff --git a/tests/examples/opinions/united_states/njsuperctappdiv_p_example.compare.json b/tests/examples/opinions/united_states/njsuperctappdiv_p_example.compare.json new file mode 100644 index 000000000..bebf1d5f7 --- /dev/null +++ b/tests/examples/opinions/united_states/njsuperctappdiv_p_example.compare.json @@ -0,0 +1,222 @@ +[ + { + "case_dates": "2023-11-02", + "case_names": "J.P. Electric, Inc. v. Lpmg Construction Management, LLC", + "download_urls": "/system/files/court-opinions/2023/a0918-22.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-0918-22", + "summaries": "Prior to this non-jury trial, defendant served an offer of judgment, which plaintiff rejected. At the close of plaintiff's case in chief, the trial judge granted defendant's motion for involuntary dismissal under 4:37-2(b). Defendant then applied for counsel fees and costs pursuant to 4:58-6, which the judge denied. The court holds that because a successful motion under 4:37-2(b) results in the \"dismissal of the action\" and no verdict in the plaintiff's favor is rendered, the denial of fees and costs was manifestly correct. The policy reasons underlying the zero-recovery exceptions to 4:58-3(c) would be undermined if such fee-shifting were permitted.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-27", + "case_names": "Steven Breitman v. Atlantis Yacht Club", + "download_urls": "/system/files/court-opinions/2023/a0557-22.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-0557-22", + "summaries": "This appeal concerns the interpretation and application of N.J.S.A. 15A:2.1(d), a provision within the New Jersey Nonprofit Corporation Act, N.J.S.A. 15A:1-1 to 14-26. In relevant part, Section 2.1(d) states: No corporation organized under this act shall have or issue capital stock or shares. No dividend shall be paid and . . . but a corporation may pay compensation in a reasonable amount to its members . . . for services rendered, may pay interest on loans or other credit advances by members . . . [and] may confer benefits on its members in conformity with its purposes . . . . [(emphasis added).] Plaintiff paid $7,500 to become a member of defendant Atlantis Yacht Club, a nonprofit organization formed under N.J.S.A. 15A-2.1. His payment was memorialized in a Certificate of Interest (\"COI\"). In 2015, plaintiff informed the Club he was withdrawing as a member. Pursuant to the Club's by-laws, upon his withdrawal plaintiff would be eligible to receive a repayment from the Club to \"redeem\" his COI at such time when a new member joined. By the time plaintiff withdrew in 2015, the Club had raised its membership fee to $25,000. Under the extant by-laws, the Club was authorized to pay plaintiff (subject to adjustments for any unpaid charges) the amount of the new member's fee, minus a $5,000 capital assessment, for a net sum of $20,000. When a new member eventually joined in 2020, the Club notified plaintiff that it would pay him the $20,000 redemption amount in installments over three years. The Club accordingly paid plaintiff a first installment in 2020 of $3,333.33, informing him that his second- and third-year annual payments in 2021 and 2022 would each be $8,333.33. Before the second-year installment to plaintiff was due in July 2021, the Club had what is described as a \"compliance review\" conducted by a law firm. The firm advised the Club that making such a payment to withdrawing members at a higher amount than their original membership fee would risk the Club's nonprofit status. That advice prompted the Club to rescind its scheduled installment payments to plaintiff. Plaintiff sued the Club to enforce its promise to pay him the additional installments. The Law Division judge ruled in plaintiff's favor. The Club now appeals. The novel legal question presented is whether the payment arrangement was, as the Club contends, an illegal contract because it would entail the \"distribution\" to a member of \"income or profit of the corporation\" disallowed for nonprofits under N.J.S.A. 15A:2\u20131(d). The court affirms the trial judge's decision. The funds a new member pays the Club for a COI is a form of collateral to secure against future sums the member may owe the Club. Any higher amount paid to the withdrawing member at the time of the COI's redemption is not \"income or profit of the corporation\" within the meaning of N.J.S.A. 15A:2-1(d).", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-25", + "case_names": "Dcpp v. D.A. and L.A., in the Matter of the Guardianship of I.E. and H.E.", + "download_urls": "/system/files/court-opinions/2023/a1540-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-1540-21", + "summaries": "In this guardianship action, defendant appeals from a January 7, 2022 judgment that terminated her parental rights to her two biological children, who have resided in a non-adoptive home since shortly after their removal in March 2019. At the time of trial, the Division's plan for the children was termination of parental rights followed by placement with their maternal relatives in Dubai. Concurrently, the Division was exploring select home adoption. At trial, the Division elicited hearsay testimony and lay opinion from the adoption caseworker concerning the Division's conversations with the consulate and unspecified attorneys in Dubai. Referencing those conversations, the worker testified that placement with the maternal relatives was not a viable option for the children under Dubai law unless the court makes certain findings about defendant's inability to care for the children and defendant consented to the transfer. The trial judge relied on that hearsay testimony and lay opinion to find there were no alternatives to termination under the second part of prong three of the best interests of the child test, N.J.S.A. 30:4C-15.1(a)(3). The court concludes the admission of the caseworker's testimony constituted harmful error. The feasibility of adoption or a Kinship Legal Guardianship (KLG)-type arrangement under United Arab Emirates law is best elicited through expert testimony. Further, it appears the testimony elicited by the Division at trial may not have been accurate. Post-judgment, the Division has been exploring placement with the maternal relatives in Dubai \u2013 in the absence of defendant's consent. Because the Division's plan appears to be a form of KLG, the Division has not clearly and convincingly proven all alternatives to termination have been ruled out. The court therefore remands the matter to the trial judge to reopen the guardianship proceedings. On remand, the judge should consider whether adoption or a KLG-type custodial arrangement with the maternal relatives in Dubai is feasible under Dubai law only after considering the testimony from a qualified expert; and whether, under the current circumstances, termination would not do more harm than good, under the fourth prong, N.J.S.A. 30:4C-15.1(a)(4). The court does not foreclose the judge from considering whether defendant has continued therapeutic services and whether she could safely parent the children in the foreseeable future under the second prong, N.J.S.A. 30:4C-15.1(a)(2).", + "case_name_shorts": "Dcpp" + }, + { + "case_dates": "2023-10-12", + "case_names": "John Doe v. the Estate of C.V.O., Jr.", + "download_urls": "/system/files/court-opinions/2023/a2780-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-2780-21", + "summaries": "This appeal pertains to the civil personal injury prosecution of statutory and common law claims arising from allegations of sexual abuse committed fifty-five years ago against a child by his sister, who also was a minor when the acts occurred. In 2019, the New Jersey Legislature enacted the Child Victims Act (CVA), 2019, 120, which supplemented and amended the statute of limitations for statutory and common law causes of actions for sexual abuse. The CVA enacted two statutes of limitations that expanded the time for filing personal injury claims resulting from the commission of one of the following four enumerated sexual offenses: (1) \"the commission of sexual assault\"; (2) \"any other crime of a sexual nature\"; (3) \"a prohibited sexual act as defined in [N.J.S.A. 2A:30B-2]\"; (4) \"or sexual abuse as defined in [the Child Sexual Abuse Act (CSAA), N.J.S.A. 2A:61B-1].\" N.J.S.A. 2A:14-2a; N.J.S.A. 2A:14-2b. Pertinent to this appeal is the enacted statute of limitations which provided a two-year revival window for victims to file otherwise time-barred claims for sexual crimes committed against them when they were minors. N.J.S.A. 2A:14-2b. The court considered the dismissal of plaintiff's CSAA claims, concluding a derivative statutory passive abuser claim against a parent was properly dismissed by the motion judge as not cognizable under the CSAA because the alleged sexual abuse was committed by a minor. Because the CSAA defines sexual abuse as sexual contact or sexual penetration committed by an adult, a CSAA claim alleging sexual assault by minor does not present a valid cause of action. The court further considered the motion judge's dismissal of plaintiff's common law claims stemming from the alleged sexual abuse committed by a minor, which were timely filed under the two-year revival window. The court concluded the common law claims are actionable independent of the CSAA.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-12", + "case_names": "Cargill Meat Solutions, Corp. v. Director, Division of Taxation", + "download_urls": "/system/files/court-opinions/2023/a1537-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-1537-21", + "summaries": "In this appeal, the court affirmed the Tax Court's opinions finding plaintiff Cargill Meat Solutions Corp. is subject to the litter-generating tax under the Clean Communities Program Act (the Act), N.J.S.A. 13:1E-213 to -223, which imposes a tax on the sale of litter-generating products in this state involving manufacturers, wholesalers, distributors, and retailers. Cargill is a Delaware corporation headquartered in Kansas that manufactures litter-generating packaged meat products throughout the country. Cargill stores and distributes meat products through its Swedesboro facility. The court affirmed the Tax Court's finding that Cargill was not subject to the wholesaler-to-wholesaler exemption under N.J.S.A. 13:1E-716 and rejected Cargill's argument that it should not be considered a manufacturer under the Act because its operations occur out-of-state. The court also affirmed the Tax Court's determination that the monies in the Clean Communities Program Fund were not appropriated under the Annual Appropriations Act and did not violate the Appropriations Clause of the New Jersey Constitution, or the commerce and due process clauses of the United States Constitution.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-11", + "case_names": "In the Matter of Route 66, Etc.", + "download_urls": "/system/files/court-opinions/2023/a2564-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-2564-21", + "summaries": "This administrative appeal concerns a State roadway project's alteration of a commercial property owner's access to a State highway. It is the first published opinion to address certain provisions adopted in 2018 that extensively revised the State Highway Access Management Code (the \"Access Code\"), N.J.A.C. 16:47-1.1 to -14.1. The pivotal legal issue concerns whether the roadway project's replacement of appellant's direct access to State Highway 66 through an existing driveway with access through a shared driveway connecting to an adjacent landowner's parcel comprises a \"revocation\" or \"removal\" of appellant's means of access, or, alternatively, whether the change is simply a \"modification\" of access. The configuration will enable motorists going to appellant's property from Route 66 to turn into the shared driveway, briefly travel on an easement through the adjacent property, and then branch off to an internal driveway on appellant's lot leading to appellant's commercial building. The court affirms the Department of Transportation's final agency decision deeming the new configuration a \"modification\" of appellant's access to Route 66, rather than a \"revocation\" of access under N.J.S.A. 27:7-94, or a \"removal\" of access under N.J.A.C. 16:47-2.1. Under the revised 2018 version of the Access Code, the configuration is a modification because it entails \"replacing all ingress or all egress between a State highway and a lot or site with ingress or egress via a private easement on a different lot or site.\" N.J.A.C. 16-47-2.1. The configuration is not a revocation or a removal because it does not eliminate all access to Route 66 and does not require motorists to traverse another public street in order to connect to appellant's premises. The Department did not misapply its authority and regulatory expertise in deeming the roadway changes a modification.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-26", + "case_names": "Justin Zimmerman, Acting Commissioner, Etc. v. Michael Patrick Diviney", + "download_urls": "/system/files/court-opinions/2023/a3422-21a3664-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-3422-21/A-3664-21", + "summaries": "In these consolidated matters, appellants are public adjusters who challenge final agency decisions by the commissioner of the Department of Banking and Insurance, finding appellants' contracts violated the New Jersey Public Adjuster's Licensing Act (PALA), N.J.S.A. 17:22B-1 to -20 and regulations enacted by the commissioner governing the conduct of public adjusters. N.J.A.C. 11:1-37.1. The commissioner found appellants violated PALA because their contracts did not comply with , which requires every public adjuster contract include \"(i) [t]he procedures to be followed by the insured if [they] seek[] to cancel the contract, including any requirement for a written notice; [and] (ii) [t]he rights and obligations of the parties if the contract is cancelled at any time[.]\" The commissioner found appellants violated these regulations because their contracts did not contain language permitting consumers to cancel their contracts at any time. The court reviewed PALA's legislative history and found no evidence the Legislature intended public adjuster contracts contain provisions for cancellation at any time. The plain language of the regulations only requires that public adjuster contracts set forth the procedures to be followed in the event of a cancellation and advise consumers of their rights in the event of cancellation. Therefore, the commissioner misinterpreted the regulations, and her findings were ultra vires of her authority under PALA. As a result, the court reversed the findings appellants violated N.J.A.C. 11:1-37.13(b)(5)(i) and (ii) and remanded for a recalculation of the penalties and costs imposed on appellants.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-13", + "case_names": "State of New Jersey v. Darryl Nieves", + "download_urls": "/system/files/court-opinions/2023/a2069-21a2936-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-2069-21/A-2936-21", + "summaries": "In these matters, the court considered the scientific reliability of expert testimony that shaking alone can cause the injuries associated with shaken baby syndrome (SBS), also known as abusive head trauma (AHT). The State sought to admit the testimony to prove aggravated assault and child endangerment charges against defendants Darryl Nieves and Michael Cifelli, fathers of infant sons who exhibited associated symptoms while in their respective fathers' care. Following a hearing in the Nieves matter pursuant to , 293 F. 1013 (D.C. Cir. 1923), the trial judge concluded that expert testimony of shaking-only SBS/AHT was not scientifically reliable and barred admission of the evidence at trial. The trial judge in the Cifelli matter adopted the finding. The court affirmed the judge's decision in , holding that the State failed to establish SBS/AHT's general acceptance within the medical community through expert testimony, supporting authoritative scientific studies, and judicial opinions. Where, as here, the underlying theory integrates multiple scientific disciplines, the proponent must establish cross-disciplinary validation to establish reliability. The State failed to do that here. Despite its seeming acceptance in the pediatric medical community, the evidence showed a real dispute surrounding the hypothesis that the biomechanical principles underlying SBS/AHT actually supported the conclusion that shaking only can cause the injuries associated with SBS/AHT.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-06", + "case_names": "S.B.B. v. L.B.B.", + "download_urls": "/system/files/court-opinions/2023/a0305-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-0305-21", + "summaries": "In this matter, the court considered whether defendant's act of making and disseminating a video accusing her estranged husband of improperly withholding a , a Jewish bill of divorce, and asking community members to \"press\" her husband to deliver the constituted the predicate act of harassment, in violation of N.J.S.A. 2C:33-4(a), to justify the issuance of a final restraining order under the Prevention of Domestic Violence Act (PDVA), N.J.S.A. 2C:25-17 to -35. The court held that defendant's communication was protected by the Free Speech Clause of the First Amendment and the New Jersey Constitution and did not fall into any of the narrow exceptions\u2014incitement to imminent violence or true threats\u2014which would rob it of its protected status. The court likewise concluded that because defendant's communication was not impermissibly invasive of plaintiff's privacy and was animated by a legitimate purpose, the acquisition of a , rather than a purpose to harass, it was not violative of the harassment statute. Lastly, the court held that plaintiff's allegation that there was a general tendency of violence toward refusers in the Jewish community was inapposite because the claim was not supported by the record and because the theoretical possibility that a third party will commit a criminal act cannot render otherwise permissible speech unlawful. As a result, the court vacated the final restraining order entered against defendant.", + "case_name_shorts": "S.B.B." + }, + { + "case_dates": "2023-08-31", + "case_names": "In the Matter of Proposed Construction of Compressor Station, Etc.", + "download_urls": "/system/files/court-opinions/2023/a3616-20.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-3616-20", + "summaries": "The court interprets Exemption 11 of the Highlands Act, N.J.S.A. 13:20-28(a)(11), which exempts entirely from all provisions of the Act and \"any rules or regulations\" adopted by the DEP pursuant to it: the routine maintenance and operations, rehabilitation, preservation, reconstruction, repair, or upgrade of public utility lines, rights of way, or systems, by a public utility, provided that the activity is consistent with the goals and purposes of this act, to exempt only \"routine\" upgrades to a utility's lines, rights of way or systems in the Preservation Area, rejecting the DEP's interpretation that \"routine\" modifies only \"maintenance and operations\" and does not modify \"upgrade.\" Applying its interpretation, the court vacates the Highlands Applicability Determination issued to the Tennessee Gas Pipeline Company exempting its proposed compressor station in the Preservation Area from permitting review and remands the matter to the DEP for consideration of whether Tennessee's new compressor station can qualify as a \"routine upgrade\" to its pipeline system, thus bringing it within Exemption 11.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-28", + "case_names": "State of New Jersey v. Dennis F. Gargano, Jr.", + "download_urls": "/system/files/court-opinions/2023/a1230-22.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-1230-22", + "summaries": "During the investigation of an alleged drug distribution network, the State Police obtained wiretap orders authorizing the interception of communications on various cellular phones pursuant to the New Jersey Wiretapping and Surveillance Control Act (the Act), N.J.S.A. 2A:156A-1 to -37. By leave granted, the State challenged an order suppressing all intercepted communications that followed the interception of a privileged marital communication between one of the defendants and his codefendant spouse. The trial court entered the order under N.J.S.A. 2A:156A-21, which in pertinent part mandates the suppression of \"the entire contents of all intercepted wire, electronic[,] or oral communications obtained during or after any interception\" that is \"unlawfully intercepted\" or \"not made in conformity with\" the wiretap order or authorization. N.J.S.A. 2A:156A-21(a) and (c). The court affirms the order based on its interpretation of the Act. The State concedes that at the time of the interception of the initial privileged marital communication, N.J.R.E. 509 did not include a crime-fraud exception, and, as a result, the initial and subsequent 305 intercepted privileged marital communications are inadmissible at defendants' trial under the then-extant version of N.J.R.E. 509. The State argues interception of the initial privileged marital communication did not trigger the mandatory suppression of all subsequent wiretap interceptions during the investigation under N.J.S.A. 2A:156A-21 because interception of the privileged marital communication was neither unlawful nor made in violation of the wiretap orders. The court concludes that not every interception of a privileged marital communication is unlawful and requires application of N.J.S.A. 2A:156A-21's suppression remedy. The court finds incidental interceptions of privileged communications during the mandatory intrinsic minimization process attendant to the execution of every wiretap order are anticipated by, and authorized by, the Act, and do not trigger N.J.S.A. 2A:156A-21's suppression remedy. The court holds that, because the State Police knew the initial interception was of a communication between married spouses, made no effort to minimize the interception, and monitored the communication beyond the time necessary to determine if it was privileged, the interception was unlawful under the Act and violated the wiretap order, which expressly required minimization. The court rejects the State's argument suppression is not required because the initial marital communication, and the 305 subsequent marital communications, were intercepted based on the good faith but erroneous belief the crime-fraud exception recommended by the Court in , 218 N.J. 224 (2014), and later enacted, N.J.S.A. 2A:84A-22(2)(e), 2015, 138, \u00a7 2, eff. Nov. 9, 2015, would apply retroactively such that the interceptions would be supported on that basis.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-22", + "case_names": "Morris Properties, Inc. v. Jonathan Wheeler", + "download_urls": "/system/files/court-opinions/2023/a2653-20.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-2653-20", + "summaries": "In this legal-malpractice case, the corporate plaintiff and its president appeal from an order granting defendants' summary-judgment motion. The trial court found plaintiffs' expert had failed to analyze how defendants' alleged breaches of the standard of care would have impacted a potential jury verdict or settlement and had not opined that defendants' alleged malpractice proximately caused any damages. The judge also dismissed the president's individual claim because the undisputed facts showed she and defendants did not have an attorney-client relationship. The court affirms, holding plaintiffs had not established proximate cause as a matter of law and that expert testimony was necessary in this case to prove proximate causation and damages. With respect to the president's individual claim of legal malpractice, the court holds she failed to demonstrate the existence of an attorney-client relationship between herself and defendants.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-18", + "case_names": "Ava Satz v. Allen Satz", + "download_urls": "/system/files/court-opinions/2023/a3535-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-3535-21", + "summaries": "Defendant appeals from Family Part orders enforcing provisions of a marital settlement agreement (MSA). A critical area of dispute centered on plaintiff's desire to obtain a \u2014a divorce recognized under Jewish religious law through a process known as a proceeding. Before a verdict was reached in the Family Part divorce trial, the parties reached an agreement on all issues, including each party's obligations with respect to participation in proceedings. The court rejects defendant's argument that the Family Part judge violated his First Amendment rights by ordering him to participate in proceedings and to sign an arbitration agreement with the . The court acknowledges the fundamental principle that civil courts may not become entangled in religious proceedings. The First Amendment's Establishment Clause bars a state from placing its support behind a religious belief, while the Free Exercise Clause bars a state from interfering with the practice of religion. amend. I. The court concludes the Family Part judge was asked to enforce a civil contract, not a religious one. The court holds the MSA is a legally binding contract based on ample consideration from both parties and entered into knowingly and voluntarily. The Family Part judge therefore had the lawful authority to enforce the agreement as written. New Jersey Supreme Court precedent permits civil courts to resolve controversies involving religious groups if resolution can be achieved by reference to neutral principles of law and does not require the interpretation of religious doctrine. Defendant agreed in the MSA to abide by the ruling, whatever that might be. The Family Part judge did not interpret religious doctrine and scrupulously avoided entanglement with religion because the judge applied well-established principles of civil contract law, not rabbinical law. The latter body of law remained solely within the province of the and was not interpreted or applied by the Family Part judge. The court concludes that the orders defendant challenges served the secular purpose of enforcing the parties' contractual obligations under the MSA, which in turn serves the secular purpose of encouraging divorce litigants to resolve their disputes by negotiating and entering an MSA.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-10", + "case_names": "State of New Jersey v. Daandre J. Wade", + "download_urls": "/system/files/court-opinions/2023/a2377-22a2378-22.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-2377-22/A-2378-22", + "summaries": "In May 2019, defendants were found in possession of two loaded handguns while driving a car on public roads. Neither defendant had a permit to carry a handgun. Both defendants were indicted for second-degree unlawful possession of a handgun without a permit in violation of N.J.S.A. 2C:39-5(b)(1). Following the United States Supreme Court's decision in , 597 U.S. ___, 142 S. Ct. 2111 (2022), defendants moved to dismiss those criminal charges, arguing that the version of the gun-carry permit statute in effect at the time of their arrest, N.J.S.A. 2C:58-4 (2018), was facially unconstitutional under . The trial court agreed and dismissed the charges. This court granted the State leave to appeal the order. The court holds that defendants did not have standing to challenge the gun permit statutes because neither defendant had applied for a handgun-carry permit. Nevertheless, the court addresses the merits of the constitutional challenge and holds that the justifiable need requirement in N.J.S.A. 2C:58-4(c) (2018) was severable and the remaining provisions of N.J.S.A. 2C:58-4 (2018), as well as N.J.S.A. 2C:39-5(b)(1), were constitutional and enforceable. Accordingly, the court reverses the order dismissing the charges and remands with direction that the trial court reinstate both counts of unlawful possession of a handgun without a permit.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-09", + "case_names": "State of New Jersey v. Tyshon M. Nieves", + "download_urls": "/system/files/court-opinions/2023/a3379-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-3379-21", + "summaries": "In this appeal from an order denying defendant's motion to suppress evidence seized following the 5:00 a.m. execution of a knock-and-announce search warrant at a residence, the court finds the law enforcement officers did not wait a reasonable period after knocking and announcing their presence before forcibly breaching and entering the home's front door. The court determines that based on the circumstances presented, the officers' forcible entry into the home after waiting less than five seconds after after knocking and announcing their presence was unreasonable and rendered the subsequent search of the home and seizure of evidence unconstitutional. The court determines the exclusionary rule requires suppression of the evidence, reverses the order denying the suppression motion, and remands for further proceedings.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-09", + "case_names": "Brandon Meredith Hardy v. Susan D. Jackson", + "download_urls": "/system/files/court-opinions/2023/a3155-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-3155-21", + "summaries": "Plaintiff, who is incarcerated at a federal prison located in New Jersey, wants to marry someone who is incarcerated at a federal prison located in a different state. He sued the New Hanover Township Municipal Clerk and Registrar, claiming she had violated his civil rights contrary to the New Jersey Civil Rights Act, N.J.S.A. 10:6-1 to -2, by applying the requirement in N.J.S.A. 37:1-7 and -8 that couples appear in person to obtain a marriage license. He appeals an order denying his motion for a preliminary injunction and granting defendant's cross-motion to dismiss the complaint. He argues the enforcement of the in-person requirement was unconstitutional and contends the motion judge should have used his equitable powers to enjoin enforcement of the requirement. The court rejects both arguments. The court holds the statutes at issue do not create an unconstitutional bar of a prisoner's right to marry but instead apply to individuals who want to marry and are reasonably related to the legitimate goal of ensuring the validity of marriages. The court also holds the motion judge could not have used his equitable powers to enjoin defendant's enforcement of the statutory in-person requirement. Accordingly, the court affirms the dismissal of plaintiff's complaint and the denial of plaintiff's motion for a preliminary injunction.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-03", + "case_names": "Musconetcong Watershed Association v. New Jersey Department of Environmental Protection", + "download_urls": "/system/files/court-opinions/2023/a2491-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-2491-20", + "summaries": "On February 23, 2017, the New Jersey Department of Environmental Protection (DEP) issued a flood hazard area applicability determination (FHA Determination) to Hampton Farm, LLC (Hampton Farm). Shortly thereafter, appellant Musconetcong Watershed Association (MW Association) requested the DEP to conduct an adjudicatory hearing so it could challenge the FHA Determination. Four years later, on April 6, 2021, the DEP denied that request. MW Association timely appealed from the April 6, 2021 decision. It also sought leave to appeal from the February 23, 2017 FHA Determination, contending it had become final when the DEP denied MW Association's request for a hearing. On an interlocutory motion, a two-judge panel of the court denied leave. The court now reconsiders, reverses that interlocutory ruling, and grants leave to appeal. The court holds that the DEP's FHA Determination became a final agency decision subject to appeal when the DEP denied MW Association's request for an adjudicatory hearing to challenge the FHA Determination. At that time, all administrative remedies were exhausted. To address the DEP's four-year time delay in deciding MW Association's request for an adjudicatory hearing, the court holds that any party, including a third-party objector, has the right to petition the DEP to rule on a pending request for an adjudicatory hearing under N.J.A.C. 1:1-4.1(a). The DEP will then have thirty days from receipt of the petition to \"inform all parties of its determination\" regarding that request. N.J.A.C. 1:1-4.1(a). The court also holds that MW Association did not have a right to an adjudicatory hearing because no statute conferred that right to MW Association, which is a third-party objector, and MW Association did not have a particularized property interest warranting a hearing. Accordingly, the court affirms the April 6, 2021 final agency decision. Finally, because the court has reversed the ruling on the interlocutory motion, the DEP has two options concerning its FHA Determination. It can either (1) elect to address MW Association's challenges to its February 23, 2017 FHA Determination and a new briefing schedule will be issued; or (2) request a remand so it can expand and update the factual findings supporting its FHA Determination.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-02", + "case_names": "Christopher Neuwirth v. State of New Jersey", + "download_urls": "/system/files/court-opinions/2023/a3695-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-3695-21", + "summaries": "Plaintiff, who had been terminated from his position as assistant commissioner for the Department of Health, filed a complaint against the State, alleging a claim under the Conscientious Employee Protection Act (CEPA), N.J.S.A. 34:19-1 to -8. In his second amended complaint, plaintiff asserted a defamation claim against Governor Philip D. Murphy. A Law Division judge granted defendants' motion to dismiss the defamation claim, concluding plaintiff had not pleaded the element of actual malice with sufficient specificity. In his fourth amended complaint, plaintiff again asserted a defamation claim against Governor Murphy, referencing in particular statements made during May 29, 2020 and June 1, 2020 press briefings. Defendants moved to dismiss the defamation claim pursuant to Rule 4:6-2(e). The judge denied the motion, concluding plaintiff had pleaded sufficient facts in the fourth amended complaint to demonstrate actual malice. The court reversed, concluding the judge had misapplied the actual-malice standard. After conducting a de novo review, the court held plaintiff's conclusory allegations did not meet the actual-malice standard and, as a result, plaintiff's defamation claim failed. Reversing the denial of defendants' motion to dismiss, the court remanded the case with a direction that the judge enter an order dismissing the defamation claim.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-25", + "case_names": "Joseph Johnson v. City of Hoboken", + "download_urls": "/system/files/court-opinions/2023/a1596-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-1596-21", + "summaries": "Plaintiffs sued defendants, a law firm and three individuals associated with the firm, claiming that their rights of privacy had been violated when defendants failed to redact their personal identifiers contrary to the directive of 1:38-7. Plaintiffs also contended that defendants violated one plaintiff's right of privacy by including records of that plaintiff's arrest and criminal charges. The court holds that 1:38-7 did not create a private cause of action for a violation of the . Instead, the remedy for a violation of 1:38-7 is set forth in the , which states that a party or other interested individual can move, on an expedited basis, to replace documents containing unredacted personal identifiers with redacted documents. 1:38-7(g). The court also holds that plaintiffs failed to state viable causes of action for invasions of privacy or infliction of emotional distress. Accordingly, the court affirms the dismissal of plaintiffs' complaint.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-14", + "case_names": "Joseph Berardo v. City of Jersey City", + "download_urls": "/system/files/court-opinions/2023/a1342-21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-1342-21", + "summaries": "Defendant City of Jersey City's (City) Code of Ordinances Section 105 permits any individual to request a \"determination of significance\" from the City's Historic Preservation Officer (HPO) regarding whether a subject building warrants preservation. Consistent with local ordinances, plaintiff, who owns a circa-1900 building in Jersey City, sought a determination of significance before applying for a demolition permit. The City's HPO concluded plaintiff's building likely would not be approved for demolition due to its historic, architectural, and cultural significance. Pursuant to local zoning ordinance, plaintiff appealed to defendant Zoning Board of Adjustment (ZBA), which upheld the determination of significance. Thereafter, he filed a complaint in lieu of prerogative writs in the Law Division alleging defendants' actions were arbitrary, capricious, and unreasonable. The Law Division found the ZBA's decision was not arbitrary, capricious, or unreasonable and dismissed the complaint. The court concludes the HPO's issuance of a determination of significance \u2014 an advisory opinion seemingly intended to prevent plaintiff's submission of an application for a demolition permit \u2014 is not a procedure authorized by the Municipal Land Use Law (MLUL), N.J.S.A. 40:55D-1 to -163. The MLUL does not authorize HPOs to unilaterally grant or deny historic preservation designations that bind a zoning officer in determining whether a demolition permit shall issue; that advisory function belongs solely to the Historic Preservation Commission, as detailed in the MLUL, and cannot be delegated to other entities or individuals. The Commission, in turn, may designate a site as historic only if it is voted upon by a majority of the full governing body. The court reverses and remands to allow plaintiff to apply for a demolition permit in accordance with the MLUL. The court also concludes Jersey City's Code of Ordinances Sections 105-3, 105-4, and 105-7 are ultra vires and inconsistent with the objectives and procedures concerning historic preservation mandated by the MLUL to the extent they delegate powers reserved for a municipality's historic preservation commission to the HPS.", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/njsuperctappdiv_p_example.html b/tests/examples/opinions/united_states/njsuperctappdiv_p_example.html new file mode 100644 index 000000000..d3055a2ea --- /dev/null +++ b/tests/examples/opinions/united_states/njsuperctappdiv_p_example.html @@ -0,0 +1,11888 @@ + + + + + + + + + + + + + + + + + + + + + + Published Appellate Court Opinions | NJ Courts + + + + + + + + + + + + + + + +

    + + + + + + + +
    +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    + + + + + +
    + + + + + + +
    + + +
    + + + + + + +

    + + + + + +Published Appellate Court Opinions + + + +

    + + + + + +
    +
    + + + + + + + + + +
    + + +
    + + + + + + + + + + + + +
    +
    + + + + +
    + + + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    + + +
    +
    + +
    + +
    + + + + + + + + + + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + + + + + + + + + + + + +
    + + +
    + + + + + + + + +
    +
    + + +
    +
    + + + + + + +
    +
    + + + + + + +
    + + +
    + + + + + + + +

    Appellate opinions are posted at 10 a.m. each business day. A "published" opinion is identified as one that sets legal precedent and can be cited in future cases.

    +
    + + + + +
    +
    + + + + + + + + + +
    + + +
    + + + + + +
    + + + + + +
    +
    + + + + + + + + +
    + + + + + +
    + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + +
    + + + + +
    + + + +
    + +
    + +
    + +
    +
    + + + + +
    +
    +
    +
    +

    No Published Appellate Court opinion reported for today Nov. 4, 2023

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-0918-22
    +
    + Published Appellate +
    +
    +
    +
    +
    Nov. 2, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-0557-22
    +
    + Published Appellate +
    +
    +
    +
    +
    Oct. 27, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-1540-21
    +
    + Published Appellate +
    +
    +
    +
    +
    Oct. 25, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-1537-21
    +
    + Published Appellate +
    +
    +
    +
    +
    Oct. 12, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-2780-21
    +
    + Published Appellate +
    +
    +
    +
    +
    Oct. 12, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-2564-21
    +
    + Published Appellate +
    +
    +
    +
    +
    Oct. 11, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-3422-21/A-3664-21
    +
    + Published Appellate +
    +
    +
    +
    +
    Sept. 26, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-2069-21/A-2936-21
    +
    + Published Appellate +
    +
    +
    +
    +
    Sept. 13, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-0305-21
    +
    + Published Appellate +
    +
    +
    +
    +
    Sept. 6, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-3616-20
    +
    + Published Appellate +
    +
    +
    +
    +
    Aug. 31, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-1230-22
    +
    + Published Appellate +
    +
    +
    +
    +
    Aug. 28, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +

    previously filed on February 28, 2023

    + +
    +
    +
    A-2653-20
    +
    + Published Appellate +
    +
    +
    +
    +
    Aug. 22, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-3535-21
    +
    + Published Appellate +
    +
    +
    +
    +
    Aug. 18, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-2377-22/A-2378-22
    +
    + Published Appellate +
    +
    +
    +
    +
    Aug. 10, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-3155-21
    +
    + Published Appellate +
    +
    +
    +
    +
    Aug. 9, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-3379-21
    +
    + Published Appellate +
    +
    +
    +
    +
    Aug. 9, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-2491-20
    +
    + Published Appellate +
    +
    +
    +
    +
    Aug. 3, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-3695-21
    +
    + Published Appellate +
    +
    +
    +
    +
    Aug. 2, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +

    Previously filed on July 25, 2023

    + +
    +
    +
    A-1596-21
    +
    + Published Appellate +
    +
    +
    +
    +
    July 25, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-1342-21
    +
    + Published Appellate +
    +
    +
    +
    +
    July 14, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    + + + + + + + + + + + +
    + + + +
    + + + + +
    +
    + + + + +
    +
    + + + + +
    +
    + + + + +
    +
    + + + + + + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    + + +
    +
    + + + + +
    + + + + + + + + + + + + + + + + +
    Original text
    Rate this translation
    Your feedback will be used to help improve Google Translate
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/njsuperctappdiv_u_example.compare.json b/tests/examples/opinions/united_states/njsuperctappdiv_u_example.compare.json new file mode 100644 index 000000000..492586c8e --- /dev/null +++ b/tests/examples/opinions/united_states/njsuperctappdiv_u_example.compare.json @@ -0,0 +1,202 @@ +[ + { + "case_dates": "2023-11-03", + "case_names": "U.S. Bank Trust National Association, Etc. v. Victor Nugent", + "download_urls": "/system/files/court-opinions/2023/a2811-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-2811-21", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-03", + "case_names": "State of New Jersey v. Bernardo Chavez-Padilla", + "download_urls": "/system/files/court-opinions/2023/a2731-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-2731-21", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-03", + "case_names": "Julia Rose Nawrocki v. J&J Auto Outlet Trading as Auto Concepts", + "download_urls": "/system/files/court-opinions/2023/a2813-22.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-2813-22", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-03", + "case_names": "Dcpp v. D.C.A. and J.J.C.B., in the Matter of the Guardianship of S.I.C.", + "download_urls": "/system/files/court-opinions/2023/a0886-22a0887-22.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-0886-22/A-0887-22", + "case_name_shorts": "Dcpp" + }, + { + "case_dates": "2023-11-03", + "case_names": "Crown Bank v. Gorilla Car Wash, LLC", + "download_urls": "/system/files/court-opinions/2023/a3059-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-3059-21", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-03", + "case_names": "Bil-Jim Construction Company, Inc. v. Wyncrest Commons, Lp", + "download_urls": "/system/files/court-opinions/2023/a0173-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-0173-21", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-03", + "case_names": "Becky Lin v. Stanley Liu", + "download_urls": "/system/files/court-opinions/2023/a0682-22.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-0682-22", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-02", + "case_names": "Viktor Diaz v. Board of Trustees, Police and Firemen's Retirement System", + "download_urls": "/system/files/court-opinions/2023/a3619-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-3619-21", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-02", + "case_names": "State of New Jersey v. Pedro G. Sarkis-Farahlaporte", + "download_urls": "/system/files/court-opinions/2023/a3879-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-3879-21", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-02", + "case_names": "State of New Jersey v. Eladio Echartevera", + "download_urls": "/system/files/court-opinions/2023/a2484-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-2484-21", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-02", + "case_names": "State of New Jersey v. Arnold L. Gainey", + "download_urls": "/system/files/court-opinions/2023/a3644-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-3644-21", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-02", + "case_names": "Sean Hart v. Board of Trustees, Police and Firemen's Retirement System", + "download_urls": "/system/files/court-opinions/2023/a1408-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-1408-21", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-02", + "case_names": "Patricia O'Keeffe v. Paramus Board of Education", + "download_urls": "/system/files/court-opinions/2023/a0164-22a0388-22.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-0164-22/A-0388-22", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-02", + "case_names": "Jamaal Merritt, Jr. v. Officer John Kelly", + "download_urls": "/system/files/court-opinions/2023/a0754-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-0754-21", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-01", + "case_names": "State of New Jersey v. Leroy Frazier", + "download_urls": "/system/files/court-opinions/2023/a3499-19.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-3499-19", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-01", + "case_names": "State of New Jersey v. L.F.S.", + "download_urls": "/system/files/court-opinions/2023/a3848-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-3848-21", + "case_name_shorts": "L.F.S." + }, + { + "case_dates": "2023-11-01", + "case_names": "Robert J. Triffin v. Seven Star Holdings, LLC", + "download_urls": "/system/files/court-opinions/2023/a3043-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-3043-21", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-01", + "case_names": "Mahmoud Elsayed v. Amal Shouba", + "download_urls": "/system/files/court-opinions/2023/a2448-21a2646-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-2448-21/A-2646-21", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-01", + "case_names": "Deutsche Bank National Trust Company, Etc. v. Trevor Sahadatalli", + "download_urls": "/system/files/court-opinions/2023/a0863-22.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-0863-22", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-01", + "case_names": "Alexander Summer, L.L.C. v. Marschall Warehouse Co.", + "download_urls": "/system/files/court-opinions/2023/a2651-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-2651-21", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/njsuperctappdiv_u_example.html b/tests/examples/opinions/united_states/njsuperctappdiv_u_example.html new file mode 100644 index 000000000..a10d7c26e --- /dev/null +++ b/tests/examples/opinions/united_states/njsuperctappdiv_u_example.html @@ -0,0 +1,11277 @@ + + + + + + + + + + + + + + + + + + + + + + Unpublished Appellate Court Opinions | NJ Courts + + + + + + + + + + + + + + + +
    + + + + + + + +
    +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    + + + + + +
    + + + + + + +
    + + +
    + + + + + + +

    + + + + + +Unpublished Appellate Court Opinions + + + +

    + + + + + +
    +
    + + + + + + + + + +
    + + +
    + + + + + + + + + + + + +
    +
    + + + + +
    + + + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    + + +
    +
    + +
    + +
    + + + + + + + + + + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + + + + + + + + + + + + +
    + + +
    + + + + + + + + +
    +
    + + +
    +
    + + + + + + +
    +
    + + + + + + +
    + + +
    + + + + + + + +

    Appellate opinions are posted at 10 a.m. each day. An "unpublished" opinion is identified as one that does not set a legal precedent and should not be cited in future cases. 

    +
    + + + + +
    +
    + + + + + + + + + +
    + + +
    + + + + + +
    + + + + + +
    +
    + + + + + + + + +
    + + + + + +
    + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + +
    + + + + +
    + + + +
    + +
    + +
    + +
    +
    + + + + +
    +
    +
    +
    +

    No Unpublished Appellate Court opinions reported for today Nov. 4, 2023

    +
    +
    +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    + + + + + + +
      +
    • +
      Showing 20 of 15566 entries
      +
    • +
    + + + + +
    + + + +
    + + + + +
    +
    + + + + +
    +
    + + + + +
    +
    + + + + +
    +
    + + + + + + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    + + +
    +
    + + + + +
    + + + + + + + + + + + + + + + + +
    Original text
    Rate this translation
    Your feedback will be used to help improve Google Translate
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/njtaxct_p_example.compare.json b/tests/examples/opinions/united_states/njtaxct_p_example.compare.json new file mode 100644 index 000000000..48cda197e --- /dev/null +++ b/tests/examples/opinions/united_states/njtaxct_p_example.compare.json @@ -0,0 +1,222 @@ +[ + { + "case_dates": "2023-05-31", + "case_names": "Jantzen, Giuseppin Nina & Matthew D. v. Green Township", + "download_urls": "/system/files/court-opinions/2023/08224-22opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "008224-2022, 0082269-2022", + "summaries": "ADDED ASSESSMENT APPEALS (N.J.S.A. 54:4-63.11) \u2013 CASE TRACK REASSIGNMENT (R. 8:6-7) Tax Court: Jantzen, Giuseppin Nina & Matthew D. v. Green Township; Docket Nos. 008224-2022 & 008229-2022, opinion by Bianco, J.T.C., decided May 30, 2023. For plaintiff \u2013 Kevin S. Englert (The Englert Law Firm, L.L.C.; attorney); for defendant \u2013 Robert B. McBriar (Schenck, Price, Smith & King, L.L.P.; attorney). Plaintiff Taxpayers moved to change the small claims track designation assigned by the Tax Court Management Office for both above-referenced docket numbers, to the standard track to secure more comprehensive discovery. Defendant Township cross-moved for summary judgment to dismiss the added assessment appeal under docket number 008224-2022 as untimely pursuant to N.J.S.A. 54:4-63.11. The court denied Defendant's cross-motion to dismiss the added assessment appeal finding that the Township did not establish that the Tax Collector mailed notice of the 2021 added assessment to the Taxpayers, nor did the Taxpayers have constructive notice of the added assessment, and, Taxpayers were further denied a hearing before the Sussex County Board of Taxation. The court granted Plaintiffs' motion the change the track designation in both matters finding that the change is necessary for Plaintiffs to pursue their claims against Defendant. (26 Pages)", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-08", + "case_names": "Levy, Morris v. City of Long Branch", + "download_urls": "/system/files/court-opinions/2023/00448-2021opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "000448-2021 - Levy, Morris v. City of Long Branch", + "summaries": "LOCAL PROPERTY TAX Tax Court: Levy v. City of Long Branch, Docket No. 000448-2021, opinion by Sundar, P.J.T.C., decided May 5, 2023. For plaintiff - Michael I. Schneck (Schneck Law Group, LLC, attorney) and Robert E. Spiotti (Spiotti & Associates, PC, attorney); for defendant \u2013 Shaun Peterson (Hoagland, Longo, Moran, Dunst & Doukas, LLP, attorney). Held: Parties reached a global settlement agreement as to plaintiff's complaint in the Tax Court for tax year 2021 and his petition before the county board of taxation for tax year 2022. The stipulation in the Tax Court matter was silent on the Freeze Act's application. The stipulation in the County Board matter included plaintiff's express waiver of the Freeze Act. Based on the four corners of the Tax Court stipulation, the court found that plaintiff did not waive application of the Freeze Act in the Tax Court matter. Based on the record, the court found that plaintiff's waiver of the Freeze Act in the County Board matter did not extend to, nor would be implied in settlement of the Tax Court matter. The court was unpersuaded that the only base year in a multi-year settlement must be the last year of the value judgment. The court was also unpersuaded that, without more, the County Board's judgment is proof of a change in value for Freeze Act purposes. The court granted plaintiff's motion for application of the Freeze Act to tax year 2023 based on the Tax Court's final value judgment for tax year 2021. (15 Pages)", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-02", + "case_names": "Christopher Gill v. Director, Division of Taxation", + "download_urls": "/system/files/court-opinions/2023/04035-21opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "004035-2021 - Christopher Gill v. Director, Division of Taxation", + "summaries": "STATUTE OF LIMITATIONS, RESPONSIBLE PERSON LIABILITY FOR GROSS INCOME TAX-ER AND SALES AND USE TAX. Tax Court: Gill v. Director, Division of Taxation, Docket No.004035-2021, opinion by Fiamingo, J.T.C., decided May 1, 2023. For plaintiff - Maria L. Dooner; for defendant Lindsey R. Curewitz (Matthew Platkin, Attorney General of New Jersey, attorney). HELD: Plaintiff moved to apply the limitations period for assessment of tax to imposition of responsible person liability for gross income tax withholding under N.J.S.A. 54A:9-6(f) and (g) and for sales and use tax under N.J.S.A. 54:32B-2(w). Director opposed and moved to uphold notification of responsible person status issued beyond limitation periods of the Gross Income Tax Act and Sales and Use Tax Act. The court ruled that the notification of responsible person for purposes of imposing the penalty assessed by N.J.S.A. 54A:9-6(f) and/or (g) for gross income tax employer withholding required by N.J.S.A. 54A:7-1 et seq. was subject to the limitations period applicable to assessment of gross income tax. The court ruled that no limitations period applied to the notification of responsible person liability for Sales and Use Tax, as such tax by statute was assessed against the responsible person upon the filing of the return by the seller. 21 pages", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-13", + "case_names": "Ocean Grove Camp Meeting Assoc, Etc v. Township of Neptune", + "download_urls": "/system/files/court-opinions/2023/a2730-20opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "A-2730-20", + "summaries": "No summary available for this Appellate Division opinion which has been approved for publication in the Tax Court Reports.", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-31", + "case_names": "NJ State Firemen's Assn. v. Director, Div. of Taxs", + "download_urls": "/system/files/court-opinions/2023/00151-19opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "00151-19", + "summaries": "Tax Court: , Docket No. 000151-2019, opinion by Sundar, P.J.T.C., decided January 30, 2023. For plaintiff - Michael E. Sullivan (Parker McCay, P.A., attorney); for defendant, Dir., Div. of Taxation - Michael J. Duffy (Matthew J. Platkin, Attorney General of New Jersey, attorney), for remaining defendants and intervenor Strathmore Ins. Co. - Michael A. Guariglia and Jamie Zug (McCarter & English, LLP, attorney). Held: Defendant, Division of Taxation's (\"Taxation\") decision via its web-published Notice in 2016, to extend the statutory cap on premiums applied when computing the insurance premium tax (IPT) for domestic and foreign companies, in calculating the fire insurance premium tax (FIPT) paid to plaintiff by foreign insurers, is contrary to the plain language and intent of the FIPT statute, N.J.S.A 54:18-1, thus is not entitled to any deference. Its interpretation of the provision in N.J.S.A. 54:18A-2(a) that the FIPT is considered \"a part of\" the \"payable\" IPT as requiring the cap to apply in computing the FIPT is unreasonable because, (a) since 1945, this provision has been interpreted to simply mean that the IPT statute requires a credit for the FIPT paid so that a foreign insurer does not pay a tax on fire insurance premiums twice, and (b) it results in plaintiff receiving less than the mandated 2% FIPT on \"all of the\" fire insurance premiums earned in New Jersey. The cap on premiums for purposes of computing the IPT need not, and should not, be extended in computing the FIPT unless the Legislature acts to amend the respective statutes. Due to this holding, the court did not need to consider plaintiff's arguments that Taxation's decision violated the Administrative Procedures Act, or Taxation's arguments that its Notice, as a public guidance document should be upheld under the temporary validity doctrine until it formally promulgates and finalizes regulations reflecting its changed position as to FIPT computation. The court granted NJSFA's motion for partial summary judgment, invalidated the Notice, and denied Taxation's motion for summary judgment.", + "case_name_shorts": "" + }, + { + "case_dates": "2022-11-01", + "case_names": "Options Imagined v. Parsippany-Troy Hills Township", + "download_urls": "/system/files/court-opinions/2022/10456-2020opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "010456-2020; 009577-2021; 007910-2022", + "summaries": "Tax Court; ; Docket Nos. 010456-2020, 09577-2021 and 007910-2022; opinion by Bianco, J.T.C., decided October 31, 2022. For plaintiff \u2013 Robert B. McBriar (Schneck, Price, Smith, & King, LLP., attorneys); For defendant \u2013 Richard P. DeAngelis (Connell Foley., attorneys). The court held that Options Imagined, a New Jersey nonprofit and Federal \u00a7 502 (c) (3) corporation, satisfied the requirements for property tax exemption under N.J.S.A. 54:4-3.6, finding that it was actually used in furtherance of the nonprofit's charitable purpose, to provide care to mentally disabled adults, where its sole and current resident is the son of the President of the corporation. The court found that Options satisfied the use test because it is opened to the public and serves a public purpose.", + "case_name_shorts": "" + }, + { + "case_dates": "2022-10-24", + "case_names": "SF III Kinderkamack, LLC v. Borough of Oradell", + "download_urls": "/system/files/court-opinions/2022/005860-2021opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "005860-2021", + "summaries": "Tax Court: Docket Nos. 005860-2021, opinion by Orsen, J.T.C., decided October 21, 2022. For proposed Intervenor \u2013 Paul Tannenbaum (Zipp & Tannenbaum, LLC, attorneys); for plaintiff \u2013 Michael Ash (Carlin, Ward, Ash & Heiart, LLC, attorneys); and for defendant \u2013 Alan Spiniello (Alan Spiniello Law Offices, attorneys). Held: Intervenor, Dabby Bergen Medi Pro, LLC, Sianes Bergen Medi Pro, LLC, YB 690 Kinder, LLC, and Yazam Investments, LLC collectively, sought to be joined as a party to the 2021 property tax appeal filed by plaintiff, SF III Kinderkamack, LLC. Intervenor asserted that the court rules pertaining to the transfer of interest, intervention and joinder were applicable; and standing existed to participate in the case as the new owner of the property. Defendant, Borough of Oradell, opposed the motion and maintained that Intervenor did not have standing because it was not the property owner as of the property tax appeal filing deadline, its claim was not within the statute of limitations and the requirements of the applicable court rules were not met. The court determined that Intervenor met the standards to join due to the transfer of interest of the property per the court rules. Moreover, the court found that Intervenor had standing in its fact-sensitive analysis through multiple factors including the review of its financial interest in the property and responsibility to pay taxes. Intervenor was also not barred by the statute of limitations as no new relief was sought. Accordingly, the court granted Intervenor's motion to join the case as a party.", + "case_name_shorts": "" + }, + { + "case_dates": "2022-09-29", + "case_names": "Bloomingdale's Inc and Bloomingdale's C/O Federated Department Stores, Inc. v. Hackensack City", + "download_urls": "/system/files/court-opinions/2022/6396-2016opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "006396-2016, 07619-2016, 004282-2017, 006959-2018, 003279-2019, 004117-2020", + "summaries": "Tax Court: ; Docket Nos. 006396-2016, 007619-2016, 004282-2017, 006959-2018, 003279-2019, 004117-2020, opinion by Novin, J.T.C., decided August 8, 2022; publication date September 28, 2022. For plaintiff \u2013 Gregory S. Schaffer and Adam R. Jones (Garippa, Lotz & Giannuario, P.C., attorneys); for defendant \u2013 Kenneth A. Porro (Chasan Lamparello Mallon & Cappuzzo, P.C., attorneys). The court concluded that the subject property's tax assessments should be afforded a presumption of validity because defendant's tax assessor relied on reasonable available market data and methods in fulfilling his constitutional and statutory obligations. The court found that defendant's ineligibility to conduct an annual reassessment program, under N.J.A.C. 18:12A-1.14(i), was not singularly dispositive on the issue of whether the local property tax assessments were entitled to a presumption of validity. Rather, the court observed that the inquiry must focus on whether the valuation and local property tax assessments were reasonably related to sound assessment practices, based on reasonable data and information, a sensitivity to changing market conditions, and consideration of physical factors uniquely applicable to the property. The court found that plaintiff offered no evidence that the market data, analysis, and/or methodology relied upon by the defendant's tax assessor were flawed or arbitrary. Accordingly, the court rejected plaintiff's arguments that no presumption of validity should attach to the subject property's tax assessments.", + "case_name_shorts": "" + }, + { + "case_dates": "2022-08-01", + "case_names": "Jaguar Land Rover N.A. v. Director, Division of Taxation & Mahwah Twp.", + "download_urls": "/system/files/court-opinions/2022/14046-2018opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "14046-2018", + "summaries": "Tax Court: ; Docket No. 014046-2018; opinion by Bianco, J.T.C., decided July 29, 2022. For plaintiff \u2013 Joseph E. Bock, Esq. (Spiotti & Associates, P.C., attorney); for defendant Director, Division of Taxation \u2013 Anthony D. Tancini, Esq. (Matthew J. Platkin, Acting Attorney General of New Jersey, attorney); for defendant Township of Mahwah \u2013 Nylema Nabbie (Cleary Giacobbe Alfieri Jacobs, LLC, attorney). In interpreting an exemption under the Statewide Non-residential Development Fee Act, N.J.S.A. 40:55D-8.1 to -8.7, the court found that an urban transit hub must be located within one-half mile radius surrounding the mid point of a New Jersey Transit Corporation, Port Authority Transit Corporation or Port Authority Trans-Hudson Corporation rail station platform area and be specifically delineated by the New Jersey Economic Development Authority (NJEDA). The court found that while the Subject Property was within one-half mile of a qualifying rail station, it was not specifically delineated by the NJEDA and thus was ineligible for the exemption under N.J.S.A. 40:55D-8.4(b)(4). Because the court found the Statute to be unambiguous and plain on its face, it declined to consult extrinsic sources in its interpretation of the statute.", + "case_name_shorts": "" + }, + { + "case_dates": "2022-04-29", + "case_names": "Giant Realty LLC v. Lavallette Bor.", + "download_urls": "/system/files/court-opinions/2022/001063-2014opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "001063-2014", + "summaries": "Tax Court: ; Docket No. 001063-20142014, opinion by Fiamingo, J.T.C., decided April 28, 2022. For plaintiff \u2013 Michael I. Schneck (Schneck Law Group, LLC., attorneys); for defendant - Dominic P. DiYanni (Eric M. Bernstein & Associates, LLC, attorneys). HELD: Plaintiff moved to apply the provisions of the Freeze Act, N.J.S.A. 54:51A-8, for the judgment entered in tax year 2014 to tax years 2015 and 2016. Defendant opposed arguing that the issuance of a permit to develop the subject property under the Coastal Area Facility Review Act, N.J.S.A. 13:19-1 to -51 (\"CAFRA\"), constituted a change in value so that the Freeze Act should not apply. The court ruled that the issuance of a CAFRA permit in and of itself was insufficient to establish a case that an external change in the value of the subject property materialized which \"substantially and meaningfully\" increased the value of the property. Such change can only be demonstrated by showing the value of the property before and after the change. Having failed to make the required prima facie showing, defendant was not entitled to a plenary hearing on the applicability of the Freeze Act. Plaintiff's motion to apply the Freeze Act was granted.", + "case_name_shorts": "" + }, + { + "case_dates": "2022-03-25", + "case_names": "Life With Joy, Inc. v. Township of Green/Township of Green v. Life With Joy, Inc.", + "download_urls": "/system/files/court-opinions/2022/9572-2016opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "9572-2016, 8566-2017, 9068-2018, 13541-2019, 10728-2020", + "summaries": "Tax Court: ; Docket Nos. 009572-2016 and 009068-2018; ; Docket Nos. 008566-2017, 013541-2019, 010728-2020; opinion by Bianco, J.T.C., decided March 24, 2022. For Life With Joy, Inc. \u2013 Jay J. Freireich (Freireich, LLC., attorney); For Twp. of Green \u2013 Robert B. McBriar (Schneck, Price, Smith, & King, LLP., attorneys). In granting nonprofit status under N.J.S.A. 54:4-6.3, the court found that the Subject Property was actually used in furtherance of the nonprofit's charitable purpose, to provide a living and learning center for young adults with developmental disabilities, and that any profit-making activity happening on the Subject Property pursuant to state designed and instituted programs was de minimis. The court dismissed the untimely 2019 appeal for lack of jurisdiction. In denying the township's claim that the exemption must be denied in light of alleged zoning violations, the court revisited the current juxtaposition between municipal land use law and N.J.S.A. 54:4-6.3 presented by , 418 N.J. Super. 365, 368 (App. Div. 2011).", + "case_name_shorts": "" + }, + { + "case_dates": "2022-03-02", + "case_names": "Sylvester & Yongjie Tuohy v. Director, Division of Taxation", + "download_urls": "/system/files/court-opinions/2022/13607-18opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "13607-2018", + "summaries": "Tax Court: , Docket No. 013607-2018; opinion by Bedrin Murray, J.T.C., decided March 1, 2022. For plaintiffs \u2013 Sylvester Tuohy and Yongjie Tuohy (Self-Represented); for defendant \u2013 Miles Eckardt, Deputy Attorney General (Matthew Platkin, Acting Attorney General of New Jersey, attorney). Held: Defendant's motion for summary judgment seeking dismissal of a complaint challenging the assessment of New Jersey gross income tax (\"NJ GIT\") for tax year 2014 is granted. Plaintiffs contend that defendant improperly added back into their gross income the following: (1) dividends, (2) capital gains, and (3) wages withheld to fund a \u00a7 403(b) retirement plan. In addition, plaintiffs argue that defendant erroneously calculated their resident tax credit under N.J.S.A. 54A:4-1 for income subject to tax in other states or political subdivisions. As to the resident tax credit calculation, the court holds plaintiffs are collaterally estopped from relitigating this issue because they unsuccessfully litigated the same issue in the Tax Court for a prior tax year. Even if the principle of collateral estoppel was not applied, plaintiffs' allegations are without merit based on statutory, regulatory, and case law. With regard to plaintiffs' challenge to the addition of dividends, capital gains, and certain wages to their 2014 gross income, the court finds their arguments to be unsupported by statutory or regulatory law, or precedent. Thus, plaintiffs have failed to overcome the presumption of validity accorded to defendant's interpretation of the relevant NJ GIT statutes. Therefore, summary judgment in favor of defendant is appropriate.", + "case_name_shorts": "" + }, + { + "case_dates": "2022-02-28", + "case_names": "Branchburg Hospitality LLC v. Twp. Pf Branchburg", + "download_urls": "/system/files/court-opinions/2022/011494-2021opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "011494-2021", + "summaries": "Tax Court: , Docket No. 011494-21, opinion by Fiamingo, J.T.C., decided February 24, 2022. For plaintiff \u2013 Farhan Ali McCarter & English, LLP, attorneys); for defendant - Wesley E. Buirkle (DiFrancesco Bateman Kunzman, Davis, Lehrer & Flaum, P.C., attorneys). HELD: Plaintiff timely appealed the decision of the County Board of Taxation which dismissed plaintiff's petition pursuant to N.J.S.A. 54:4-34 (Chapter 91) for tax year 2021. Defendant moved before this court to dismiss plaintiff's complaint for (a) lack of subject matter jurisdiction; (b) failure to pay taxes pursuant to N.J.S.A. 54:51A-1 and (c) failure to respond to a request for income and expense statement pursuant to Chapter 91. The court denied defendant's motion to dismiss for lack of subject matter jurisdiction. The court found that plaintiff's prior filing and withdrawal of a direct appeal as to which a judgment of dismissal was entered, did not bar plaintiff from filing an appeal at the County Board of Taxation for the same tax year, or from appealing the resultant decision of the County Board of Taxation to the Tax Court. The court however dismissed the complaint for failure to pay real property taxes as required by N.J.S.A. 54:51A-1(b) since plaintiff failed to produce sufficient proofs of the impact of COVID-19 on its ability to pay the taxes due. As a result, the court did not reach the merits defendant's motion to dismiss for failure to comply with Chapter 91.", + "case_name_shorts": "" + }, + { + "case_dates": "2022-02-25", + "case_names": "3 University Plaza SPE LLC v. Hackensack City", + "download_urls": "/system/files/court-opinions/2022/05002-14opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "5002-2014, 1670-2015, 3553-2016, 1163-2017, 3768-2018, 12891-2019", + "summaries": "Tax Court: ; Docket Nos. 005002-2014, 001670-2015, 003553-2016, 001163-2017, 003768-2018, and 012891-2019, opinion by Novin, J.T.C., decided February 24, 2022. For plaintiff \u2013 Michael J. Caccavelli and Grace Chun (Pearlman & Miranda, LLC, attorneys); for defendant \u2013 Kenneth A. Porro (Chasan Lamparello Mallon & Cappuzzo, P.C., attorneys). The court found that no globally accepted practice has been adopted for the handling of tenant improvement allowances and leasing commission expenses under reconstructed operating statements. For local property tax valuation purposes, the decision to include or exclude tenant improvement allowances and leasing commissions, as stabilized operating expenses, is a function of context, the market, and the intended use of the appraisal report. The characterization of tenant improvement allowances and leasing commissions must be based on the appraiser's examination of a property's historical operations, and evaluation and analysis of market conditions. When tenant improvement allowances and leasing commission expenses are necessary to achieve economic or market rent, stabilize occupancy, and maintain a property's value, they may be treated as operating expenses and deducted from effective gross income in calculating net operating income. However, an appraiser may reject certain expenses, including tenant improvement allowances and leasing commissions, when they are erratic, uncharacteristic, and not typical in the market or industry. Here, the court concluded that plaintiff's expert's approach, deducting tenant improvement allowances and leasing commissions as \"above-the-line\" stabilized operating expenses, was reasonable and supported by the trial record. The court further concluded that the Band of Investment technique provided the most accurate and reliable method of deriving a capitalization rate because it is not polluted or impacted by questions of how potential survey recipients perceived hypothetical transactional questions or how a market perceives an annually reoccurring operating expense. Finally, in reducing the property's 2014 and 2015 tax assessments, the court found that the subject property's 2019 sale was not credible evidence of true or fair market value. The court scheduled the 2016, 2017, 2018, and 2019 tax year matters for further proceedings.", + "case_name_shorts": "" + }, + { + "case_dates": "2022-02-02", + "case_names": "Erez Holdings Urban Renewal, LLC v. Director, Div. of Taxation and Twp. of Lakewood", + "download_urls": "/system/files/court-opinions/2022/13941-18opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "013941-2018", + "summaries": "Tax Court: , Docket No. 013941-2018, opinion by Sundar, P.J.T.C., decided February 1, 2022. For plaintiff - Catherine J. Bick (Giordiano Halleran Ciesla PC, attorneys); for defendants - Joseph Palumbo, Anthony D. Tancini (Andrew J. Bruck, Acting Attorney General of New Jersey, attorney); Harold H. Hensel (Secare & Hensel, attorneys). Held: Plaintiff's contention that the Non-Residential Development Fee (NRDF) imposed under N.J.S.A. 40:55D-8.4 should be computed by attributing $0 to equalized assessed value of the improvements because they are exempt from local property tax under the Long - Term Tax Exemption law, N.J.S.A. 40A:20-1 to -22, is rejected based on the plain language of the NRDF statute. The amount to be excluded for the parking lot when computing the NRDF is its value as determined under the accepted methods employed for valuing all real property in the local property tax arena (cost, income, comparable sales). The court's standard of review of the assessor's value determination of the parking lot for purposes of its exclusion when computing the NRDF, is the same as in local property tax matters. Thus, a presumptive correctness attaches to the assessor's determination with the burden of proof upon the property owner to overcome the same and persuade the court that the exclusion amount should be different. Here, based on the evidence provided, plaintiff failed to persuade the court that the value of the parking lot to be excluded for purposes of calculating the NRDF should be $3,407,000. The court therefore affirms the final determination of defendant, Director, Division of Taxation, that the assessor of defendant, Township of Lakewood, correctly determined the NRDF.", + "case_name_shorts": "" + }, + { + "case_dates": "2021-12-27", + "case_names": "New West Developers, LLC v. Twp. of Irvington/Crown Real Estate Holdings, Inc. v. Twp. of Irvington", + "download_urls": "/system/files/court-opinions/2021/14704-13opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "14704-2013, 010653-2014, 009474-2015, 014706-2013, 010648-2014, 009475-2015, 009727-2016, 009728-2016", + "summaries": "Tax Court: , Docket No. 014704-2013; 010653-2014; 009474-2015; 014706-2013; 010648-2014; 009475-2015; , Docket Nos. 009727-2016; 009728-2016, opinion by Bedrin Murray, J.T.C., decided December 23, 2021. For plaintiff \u2013 Daniel G. Keough (Ventura, Miesowitz, Keough & Warner, PC, attorney); for defendant \u2013 Jarrid H. Kantor (Antonelli Kantor, PC, attorney). Held: Defendant's motions to dismiss plaintiffs' complaints under N.J.S.A. 54:51A-1(b), which requires a taxpayer to satisfy certain local property tax obligations prior to filing an action in the Tax Court, are granted. While the requirement was previously jurisdictional, allowing the court no discretion in determining if a matter should proceed, the statute was amended in 1999 to provide for relaxation of the tax payment provision in the interests of justice. Plaintiff New West, owner of the 15 properties during tax years 2013 through 2015, offers no reason for relaxation. Plaintiff Crown, owner of the properties for tax year 2016, contends its difficulty in ascertaining arrearages owed for all tax years warrants relaxation of the tax payment requirement. The court rejects plaintiff's argument, holding that the interests of justice would be subverted by allowing the complaints to go forward under the circumstances. In addition, plaintiffs argue that defendant's failure to object to the non-payment of property taxes when these matters were before the county tax board bars it from raising the same objection in Tax Court. The court holds that while the county tax boards and Tax Court are governed by tax payment provisions under N.J.S.A. 54:3-27 and N.J.S.A. 54:51A-1(b) respectively, they are separate and distinct, and contain different payment schemes. Thus, the court concludes defendant is not barred from raising the objection in Tax Court.", + "case_name_shorts": "" + }, + { + "case_dates": "2021-12-21", + "case_names": "Punish and Indu Malhotra v. Director, Division of Taxation", + "download_urls": "/system/files/court-opinions/2021/10788-2018opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "10788-2018", + "summaries": "Tax Court: , Docket No. 010788-2018; opinion by Orsen, J.T.C., decided December 16, 2021. For plaintiffs - Punish and Indu Malhotra (Self-represented); for defendant - Miles Eckardt, Deputy Attorney General (Andrew J. Bruck, Acting Attorney General of New Jersey, attorney). Plaintiffs sought relief from penalties and interest after being assessed for an erroneous income tax refund due to an error on their tax return for New Jersey income tax withholding. Defendant filed a motion for summary judgment seeking recovery of the erroneous refund with applicable penalties and interest. Plaintiffs filed a cross motion for summary judgment requesting that penalties and interest be abated due to the lengthy passage of time for assessment. The court first determined whether defendant had statutory authority to recover the erroneous refund pursuant to the applicable statute of limitations. Defendant argued that the statute of limitations to obtain the erroneous refund was either three years from the date the tax return was due or an extended five-year statute of limitations due to a misrepresentation of material fact on the tax return. Plaintiff argued that the mistake on the tax return does not qualify as a misrepresentation. The court found that the three-year statute of limitations expired three years from the making of the refund and the five-year statute of limitations did not apply because plaintiffs' mistake did not rise to the level of a misrepresentation. Accordingly, the court denied defendant's motion for summary judgment to recover the erroneous refund. Plaintiffs' motion for summary judgment was granted to abate the penalties and interest as there was no tax due and any payments made, or tax refunds withheld, were to be returned with applicable interest.", + "case_name_shorts": "" + }, + { + "case_dates": "2021-12-16", + "case_names": "Cargill Meat Solutions v. Director, Division of Taxation", + "download_urls": "/system/files/court-opinions/2021/08146-2018opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "08146-2018", + "summaries": "Tax Court: ; Docket No. 008146-2018, opinion by Cimino, J.T.C., decided December 15, 2021. For plaintiff - Kyle O. Sollie (Reed Smith LLP, attorneys; Kylie O. Sollie and Matthew L. Setzer on the brief); for defendant \u2013 Joseph A. Palumbo, Deputy Attorney General (Andrew J. Bruck, Acting Attorney General of New Jersey, attorney). The Clean Communities and Recycling Grant Act imposes a user fee, commonly referred to as the litter tax. The fee is based upon the sales of litter-generating products by manufacturers, wholesalers and retailers. Wholesaler-to-wholesaler sales are exempt. While plaintiff admits it manufactures the products at issue, it also asserts the wholesaler-to-wholesaler exemption applies for sales it makes to wholesalers. The court noted that under plaintiff's argument, all manufacturers that sell to wholesalers would claim the exemption thus rendering the statutory reference to manufacturer sales superfluous. In addition, the court held that the plain language of the Act provides that the fee is based upon sales within the state, not whether the manufacturing occurred in-state. Moreover, the Legislature did not intend to put local manufacturers at a disadvantage. Finally, the longstanding regulations adopted by the Director provide that the location of where the manufacturing takes place is not determinative.", + "case_name_shorts": "" + }, + { + "case_dates": "2021-08-09", + "case_names": "Ian M. Kunesch v. Andover Twp.", + "download_urls": "/system/files/court-opinions/2021/07226-13opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "007226-2013, 007942-2014, 003388-2015, 003298-2016, 000657-2017, 000823-2018, 002702-2019", + "summaries": "Tax Court: , Docket Nos. 007226-2013; 007942-2014; 003388-2015; 003298-2016; 000657-2017; 000823-2018; 002702-2019, opinion by Bianco, J.T.C., decided July 29,2021. For plaintiff \u2013 Jeffrey D. Gordon (Archer & Greiner, PC, attorney), for defendant \u2013 Fred Semrau and Robert J. Rossmeissl (Dorsey & Semrau, LLC, attorney). Plaintiff, Ian Kunesch (\"Mr. Kunesch\"), timely filed local property tax appeals with this court for tax years 2013-2019, challenging the assessments imposed by defendant (\"Township\") on certain real property (\"Property\") located in the Township. The Township moved to dismiss those complaints on grounds Mr. Kunesch is not an aggrieved taxpayer within the meaning of N.J.S.A. 54:3- 21, given that he executed a deed in lieu of foreclosure to the lending bank, which stripped him of standing to bring his tax appeals. The court determined that the Township's motions were without merit, and that Mr. Kunesch has standing to proceed. The court concluded that the lending bank and Mr. Kunesch intended for Mr. Kunesch to remain the owner and in possession of the Property unless he defaulted, at which point the second of two Deeds in Lieu of Foreclosure executed would be recorded. Furthermore, the court found that the second Deed in Lieu of Foreclosure is more appropriately characterized as an equitable mortgage because it was in essence security for a loan. Finally, the court rejected the Township's argument that Mr. Kunesch was judicially estopped from bringing these tax appeals by finding no miscarriage of justice in proceeding with these matters.", + "case_name_shorts": "" + }, + { + "case_dates": "2021-07-02", + "case_names": "Senior Citizens United Community Services, Inc. v. Director, Division of Taxation", + "download_urls": "/system/files/court-opinions/2021/08789-19opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "008789-2019, 005999-2020", + "summaries": "Tax Court: ; Docket Nos. 008789-2019 and 005999-2020, opinion by Cimino, J.T.C., decided July 1, 2021. For plaintiff \u2013 Dale W. Keith (Keith & Keith, attorneys).; for defendant \u2013 Jamie M. Zug (Gurbir S. Grewal, Attorney General of New Jersey, attorney). : The Motor Fuel Tax and the Petroleum Products Gross Receipts Tax provide an exemption for special and rural transportation services provided by \"autobuses.\" The parties disagree as to whether a definition of autobus found in Title 48 (Public Utilities) is incorporated into Title 54 (Taxation). Reviewing the legislative history as well as the wording of the amendments to the exemption statute over the years, the court held that the Legislature did not intend to incorporate the definition of autobus found in Title 48 into Title 54. As a result, the taxpayer qualifies for the exemption.", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/njtaxct_p_example.html b/tests/examples/opinions/united_states/njtaxct_p_example.html new file mode 100644 index 000000000..5ba4f58c9 --- /dev/null +++ b/tests/examples/opinions/united_states/njtaxct_p_example.html @@ -0,0 +1,11821 @@ + + + + + + + + + + + + + + + + + + + + + + Published Tax Court Opinions | NJ Courts + + + + + + + + + + + + + + + +
    + + + + + + + +
    +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    + + + + + +
    + + + + + + +
    + + +
    + + + + + + +

    + + + + + +Published Tax Court Opinions + + + +

    + + + + + +
    +
    + + + + + + + + + +
    + + +
    + + + + + + + + + + + + +
    +
    + + + + +
    + + + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    + + +
    +
    + +
    + +
    + + + + + + + + + + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + + + + + + + + + + + + +
    + + +
    + + + + + + + + +
    +
    + + +
    +
    + + + + + + +
    +
    + + + + + + +
    + + +
    + + + + + + + +

    Tax Court opinions are posted at 10 a.m. each business day. A "published" opinion is identified as one that sets legal precedence and can be cited in future cases.

    +
    + + + + +
    +
    + + + + + + + + + +
    + + +
    + + + + + +
    + + + + + +
    +
    + + + + + + + + +
    + + + + + +
    + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + +
    + + + + +
    + + + +
    + +
    + +
    + +
    +
    + + + + +
    +
    +
    +
    +

    No Published Tax Court opinions reported for today Nov. 4, 2023

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    008224-2022, 0082269-2022
    +
    + Published Tax +
    +
    +
    +
    +
    May 31, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    000448-2021 - Levy, Morris v. City of Long Branch
    +
    + Published Tax +
    +
    +
    +
    +
    May 8, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    004035-2021 - Christopher Gill v Director, Division of Taxation
    +
    + Published Tax +
    +
    +
    +
    +
    May 2, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    A-2730-20
    +
    + Published Tax +
    +
    +
    +
    +
    Feb. 13, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    00151-19
    +
    + Published Tax +
    +
    +
    +
    +
    Jan. 31, 2023
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    010456-2020; 009577-2021; 007910-2022
    +
    + Published Tax +
    +
    +
    +
    +
    Nov. 1, 2022
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    005860-2021
    +
    + Published Tax +
    +
    +
    +
    +
    Oct. 24, 2022
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    006396-2016, 07619-2016, 004282-2017, 006959-2018, 003279-2019, 004117-2020
    +
    + Published Tax +
    +
    +
    +
    +
    Sept. 29, 2022
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    14046-2018
    +
    + Published Tax +
    +
    +
    +
    +
    Aug. 1, 2022
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    001063-2014
    +
    + Published Tax +
    +
    +
    +
    +
    April 29, 2022
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    9572-2016, 8566-2017, 9068-2018, 13541-2019, 10728-2020
    +
    + Published Tax +
    +
    +
    +
    +
    March 25, 2022
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    13607-2018
    +
    + Published Tax +
    +
    +
    +
    +
    March 2, 2022
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    011494-2021
    +
    + Published Tax +
    +
    +
    +
    +
    Feb. 28, 2022
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    5002-2014, 1670-2015, 3553-2016, 1163-2017, 3768-2018, 12891-2019
    +
    + Published Tax +
    +
    +
    +
    +
    Feb. 25, 2022
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    013941-2018
    +
    + Published Tax +
    +
    +
    +
    +
    Feb. 2, 2022
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    14704-2013, 010653-2014, 009474-2015, 014706-2013, 010648-2014, 009475-2015, 009727-2016, 009728-2016
    +
    + Published Tax +
    +
    +
    +
    +
    Dec. 27, 2021
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    10788-2018
    +
    + Published Tax +
    +
    +
    +
    +
    Dec. 21, 2021
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    08146-2018
    +
    + Published Tax +
    +
    +
    +
    +
    Dec. 16, 2021
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    007226-2013, 007942-2014, 003388-2015, 003298-2016, 000657-2017, 000823-2018, 002702-2019
    +
    + Published Tax +
    +
    +
    +
    +
    Aug. 9, 2021
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    008789-2019, 005999-2020
    +
    + Published Tax +
    +
    +
    +
    +
    July 2, 2021
    +
    + +
    +
    +
    + + + +
    +
    + +
    +
    +
    + +
    +
    +
    + + + + + + + + + + + +
    + + + +
    + + + + +
    +
    + + + + +
    +
    + + + + +
    +
    + + + + +
    +
    + + + + + + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    + + +
    +
    + + + + +
    + + + + + + + + + + + + + + + + +
    Original text
    Rate this translation
    Your feedback will be used to help improve Google Translate
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/njtaxct_u_example.compare.json b/tests/examples/opinions/united_states/njtaxct_u_example.compare.json new file mode 100644 index 000000000..b698b2fce --- /dev/null +++ b/tests/examples/opinions/united_states/njtaxct_u_example.compare.json @@ -0,0 +1,202 @@ +[ + { + "case_dates": "2023-11-03", + "case_names": "Leabern Realty, L.P. Wayne v. Montclair Township", + "download_urls": "/system/files/court-opinions/2023/000166-2020007681-2020.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "000166-2020 and 007681-2020", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-25", + "case_names": "Vincent Bullaro v. Jefferson Township", + "download_urls": "/system/files/court-opinions/2023/011008-2021-BullarovJefferson.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "011008-2021", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-15", + "case_names": "Lorillard Tobacco Company v. Director, Division of Taxation", + "download_urls": "/system/files/court-opinions/2023/008305-2007014043-2012.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "008305-2007, 014043-2012", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-28", + "case_names": "Kodus Leasing, Inc. v. Director, Division of Taxation", + "download_urls": "/system/files/court-opinions/2023/014517-2015.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "014517-2015", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-15", + "case_names": "William and Teresa Poku v. Borough of Red Bank", + "download_urls": "/system/files/court-opinions/2023/07567-2022opn.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "07567-2022", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-27", + "case_names": "Montclair Hospital, LLC, Tenant in a Parcel Owned by MPT Legacy of Montclair, LLC v. Glen Ridge Borough v. MPT Legacy of Montclair, LLC Mountainside Hospital-MPT v. Glen Ridge Borough", + "download_urls": "/system/files/court-opinions/2023/MountainsideHospitalvGlenRidgeBoro.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "008630-2019, 002022-2020, 004324-2021, 003702-2022, 012319-2019, 007634-2020, 010221-2021, and 008459-2022", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-28", + "case_names": "West Orange Township v. Crest Ridge Realty, LLC", + "download_urls": "/system/files/court-opinions/2023/004373-2018.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "004373-2018, 000949-2019, 000648-2020, 002579-2021, and 001394-2022", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-02", + "case_names": "AG Kings Montclair LLC v. Montclair Township", + "download_urls": "/system/files/court-opinions/2023/AGKingsMontclairLLCvMontclairTwp005317-2018.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "005317-2018, 003518-2019, 002133-2020, and 005949-2021", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-25", + "case_names": "Yang, Daniel & Lucy v. Montclair Twp.", + "download_urls": "/system/files/court-opinions/2023/yangvMontclair000114-2022.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "000114-2022 and 005720-2022", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-09", + "case_names": "Jersey City Two, LLC v. Jersey City", + "download_urls": "/system/files/court-opinions/2023/012480-20opn.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "012480-2020, 012481-2020, 012482-2020, 012483-2020, 009826-2021, 009827-2021, 009828-2021, 009825-2021", + "case_name_shorts": "" + }, + { + "case_dates": "2023-04-27", + "case_names": "City of Newark and City of Newark-Div. Sewer and Water v. West Milford Township", + "download_urls": "/system/files/court-opinions/2023/15734-2014.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "015734-2014, 006894-2015, 005070-2016, 007402-2018, 005841-2018, 006935-2019, 008282-2019, 008756-2020, 011966-2020, 003283-2021, and 003338-2021", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-30", + "case_names": "Joseph C. and Geraldine A. Musumeci v. Director, Division of Taxation", + "download_urls": "/system/files/court-opinions/2023/000169-21.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "000169-2021", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-27", + "case_names": "Lafayette Sq. Construction Co. LLC v. Montclair Township, Union Court LLC v. Montclair Township", + "download_urls": "/system/files/court-opinions/2023/007948-2022.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "012836-2020, 009115-2021, 007947-2022, 012837-2020, 009116-2021, 007948-2022", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-13", + "case_names": "Tonnelle Center LLC v. Township of North Bergen", + "download_urls": "/system/files/court-opinions/2023/009702-22.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "009702-2022", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-08", + "case_names": "Giansanti v. Mantua Township", + "download_urls": "/system/files/court-opinions/2023/009102-2021.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "009102-2021", + "case_name_shorts": "Giansanti" + }, + { + "case_dates": "2023-02-08", + "case_names": "12296-20 - Donna Porcaro v. Director, Division of Taxation", + "download_urls": "/system/files/court-opinions/2023/12296-20opn.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "12296-20", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-07", + "case_names": "Canterbury at Cedar Grove, LLC v. Cedar Grove Township", + "download_urls": "/system/files/court-opinions/2023/003975-2016opn.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "003975-16, 002056-17, 001868-18, 003136-19, 003470-20", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-23", + "case_names": "OTR-MCC, LLC v. Parsippany-Troy Hills Township/ Brookwood MC INV. I and II/ CBRE v. Parsippany-Troy Hills Township", + "download_urls": "/system/files/court-opinions/2023/1742-2009opn.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "001742-09, 001149-10, 001289-11, 004558-12, 000871-13, 003789-14, 003704-15 004516-16, 001685-17, 001124-18, 002857-19", + "case_name_shorts": "" + }, + { + "case_dates": "2022-11-09", + "case_names": "Sam S. Russo v. Township of Plumsted", + "download_urls": "/system/files/court-opinions/2022/10327-20opn.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "10327-20", + "case_name_shorts": "" + }, + { + "case_dates": "2022-11-04", + "case_names": "North Jersey Police Radio Association, Inc. v. Borough of Pompton Lakes", + "download_urls": "/system/files/court-opinions/2022/009657-2018.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "09657-18", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/njtaxct_u_example.html b/tests/examples/opinions/united_states/njtaxct_u_example.html new file mode 100644 index 000000000..88fc522e3 --- /dev/null +++ b/tests/examples/opinions/united_states/njtaxct_u_example.html @@ -0,0 +1,11302 @@ + + + + + + + + + + + + + + + + + + + + + + Unpublished Tax Court Opinions | NJ Courts + + + + + + + + + + + + + + + +
    + + + + + + + +
    +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    + + + + + +
    + + + + + + +
    + + +
    + + + + + + +

    + + + + + +Unpublished Tax Court Opinions + + + +

    + + + + + +
    +
    + + + + + + + + + +
    + + +
    + + + + + + + + + + + + +
    +
    + + + + +
    + + + +
    +
    +
    +
    + +
    +
    + +
    +
    +
    + + +
    +
    + +
    + +
    + + + + + + + + + + + +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + + + + + + + + + + + + +
    + + +
    + + + + + + + + +
    +
    + + +
    +
    + + + + + + +
    +
    + + + + + + +
    + + +
    + + + + + + + +

    Tax Court opinions are posted at 10 a.m. each business day. An "unpublished" opinions is identified as one that does not set a legal precedent and should not be cited in future cases.

    +
    + + + + +
    +
    + + + + + + + + + +
    + + +
    + + + + + +
    + + + + + +
    +
    + + + + + + + + +
    + + + + + +
    + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + +
    + + + + +
    + + + +
    + +
    + +
    + +
    +
    + + + + +
    +
    +
    +
    +

    No Unpublished Tax Court opinions reported for today Nov. 4, 2023

    +
    +
    +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    012480-2020, 012481-2020, 012482-2020, 012483-2020, 009826-2021, 009827-2021, 009828-2021, 009825-2021
    +
    + Unpublished Tax +
    +
    +
    +
    +
    May 9, 2023
    +
    + +
    + +
    +
    +
    + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    + + + + + + + + + + + +
    + + + +
    + + + + +
    +
    + + + + +
    +
    + + + + +
    +
    + + + + +
    +
    + + + + + + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    + + +
    +
    + + + + +
    + + + + + + + + + + + + + + + + +
    Original text
    Rate this translation
    Your feedback will be used to help improve Google Translate
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nm_example.compare.json b/tests/examples/opinions/united_states/nm_example.compare.json index a2dc65b64..f505b9d7b 100644 --- a/tests/examples/opinions/united_states/nm_example.compare.json +++ b/tests/examples/opinions/united_states/nm_example.compare.json @@ -1,57 +1,35 @@ [ { - "case_dates": "2019-03-21", - "case_names": "State v. Gallegos", - "download_urls": "/nmos/nmsc/en/397247/1/document.do", + "case_dates": "2024-04-08", + "case_names": "State v. Chavez", + "download_urls": "https://nmonesource.com/nmos/nmsc/en/522468/1/document.do", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", "citations": "", - "case_name_shorts": "Gallegos" + "case_name_shorts": "Chavez" }, { - "case_dates": "2019-03-04", - "case_names": "State v. Ortiz", - "download_urls": "/nmos/nmsc/en/397252/1/document.do", + "case_dates": "2024-04-08", + "case_names": "Provisional Gov't of Santa Teresa v. City of Sunland Park", + "download_urls": "https://nmonesource.com/nmos/nmsc/en/522467/1/document.do", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", "citations": "", - "case_name_shorts": "Ortiz" + "case_name_shorts": "" }, { - "case_dates": "2019-02-07", - "case_names": "Unite New Mexico v. Oliver", - "download_urls": "/nmos/nmsc/en/400371/1/document.do", + "case_dates": "2024-04-08", + "case_names": "N.M. Turn Around v. Oliver", + "download_urls": "https://nmonesource.com/nmos/nmsc/en/522460/1/document.do", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", "citations": "", "case_name_shorts": "Oliver" - }, - { - "case_dates": "2019-01-24", - "case_names": "State v. Yazzie", - "download_urls": "/nmos/nmsc/en/392393/1/document.do", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "2019-NMSC-008", - "case_name_shorts": "Yazzie" - }, - { - "case_dates": "2019-01-17", - "case_names": "In Re Dixon", - "download_urls": "/nmos/nmsc/en/392398/1/document.do", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "2019-NMSC-006", - "case_name_shorts": "In Re Dixon" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nm_example.html b/tests/examples/opinions/united_states/nm_example.html index a74d84cbb..d0078846c 100644 --- a/tests/examples/opinions/united_states/nm_example.html +++ b/tests/examples/opinions/united_states/nm_example.html @@ -1,471 +1,968 @@ - - + + + + + - Navigation by Date: 2019 - New Mexico Compilation Commission + <title> Advanced Search - NMOneSource.com - - - - - - - - - - - - - - - - - - - - - - + + + -
    -
    +
    + +
    +

    + + Advanced Search +

    + +
    +
    + + + + +
    +
    -
  • +
  • - 5. + 3.
    -
    - -
    -
  • -
    + + +
    +
    +

    - -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
    +
    + -
    + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nmi_example.compare.json b/tests/examples/opinions/united_states/nmariana_example.compare.json similarity index 71% rename from tests/examples/opinions/united_states/nmi_example.compare.json rename to tests/examples/opinions/united_states/nmariana_example.compare.json index 27f182ab5..b04cf6ee3 100644 --- a/tests/examples/opinions/united_states/nmi_example.compare.json +++ b/tests/examples/opinions/united_states/nmariana_example.compare.json @@ -7,8 +7,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", + "judges": "Castro, Manglona, Inos", "citations": "2022-MP-09", - "case_name_shorts": "Commonwealth" + "case_name_shorts": "Kaipat", + "authors": "Inos", + "per_curiam": false }, { "case_dates": "2022-12-02", @@ -18,8 +21,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", + "judges": "Castro, Manglona, Inos", "citations": "2022-MP-08", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": true }, { "case_dates": "2022-11-29", @@ -29,8 +35,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", + "judges": "Manglona, Carbullido, Torres", "citations": "2022-MP-07", - "case_name_shorts": "Castro" + "case_name_shorts": "Castro", + "authors": "Manglona", + "per_curiam": false }, { "case_dates": "2022-09-02", @@ -40,8 +49,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", + "judges": "Castro, Manglona, Inos", "citations": "2022-MP-06", - "case_name_shorts": "Crisostomo" + "case_name_shorts": "Crisostomo", + "authors": "Manglona", + "per_curiam": false }, { "case_dates": "2022-08-22", @@ -51,8 +63,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", + "judges": "Castro, Manglona, Inos", "citations": "2022-MP-05", - "case_name_shorts": "In re Commonwealth" + "case_name_shorts": "In re Commonwealth", + "authors": "Inos", + "per_curiam": false }, { "case_dates": "2022-06-06", @@ -62,8 +77,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", + "judges": "Castro, Manglona, Inos", "citations": "2022-MP-04", - "case_name_shorts": "White" + "case_name_shorts": "White", + "authors": "Castro", + "per_curiam": false }, { "case_dates": "2022-04-18", @@ -73,8 +91,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", + "judges": "Manglona, Inos, Carbullido", "citations": "2022-MP-03", - "case_name_shorts": "Albia" + "case_name_shorts": "Albia", + "authors": "Manglona", + "per_curiam": false }, { "case_dates": "2022-04-01", @@ -84,8 +105,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", + "judges": "Castro, Manglona, Inos", "citations": "2022-MP-02", - "case_name_shorts": "Rios" + "case_name_shorts": "Rios", + "authors": "Castro", + "per_curiam": false }, { "case_dates": "2022-02-12", @@ -95,7 +119,10 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", + "judges": "Castro, Manglona, Inos", "citations": "2022-MP-01", - "case_name_shorts": "Takasi" + "case_name_shorts": "Takasi", + "authors": "Castro", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nmi_example.html b/tests/examples/opinions/united_states/nmariana_example.html similarity index 100% rename from tests/examples/opinions/united_states/nmi_example.html rename to tests/examples/opinions/united_states/nmariana_example.html diff --git a/tests/examples/opinions/united_states/nmcca_example.compare.json b/tests/examples/opinions/united_states/nmcca_example.compare.json index d788b6450..d7095d628 100644 --- a/tests/examples/opinions/united_states/nmcca_example.compare.json +++ b/tests/examples/opinions/united_states/nmcca_example.compare.json @@ -1,1702 +1,252 @@ [ { - "case_dates": "2014-09-11", - "case_names": "United States v. Natareno", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400225.SL.pdf", + "case_dates": "2023-11-09", + "case_names": "United States v. ROACHE", + "download_urls": "https://www.jag.navy.mil/documents/7281/ROACHE_202200128_PC.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201400225", - "case_name_shorts": "Natareno" + "docket_numbers": "202200128", + "case_name_shorts": "ROACHE" }, { - "case_dates": "2014-09-11", - "case_names": "United States v. Karanja", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400202.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400202", - "case_name_shorts": "Karanja" - }, - { - "case_dates": "2014-09-11", - "case_names": "United States v. Cuff", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400252.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400252", - "case_name_shorts": "Cuff" - }, - { - "case_dates": "2014-09-11", - "case_names": "United States v. Cain", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/CAIN-201300392-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300392", - "case_name_shorts": "Cain" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Worley", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400189.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400189", - "case_name_shorts": "Worley" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Wilson, Jr.", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/WILSON-201300315-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300315", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Wilson Jr.", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400214.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400214", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Verwey", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400180.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400180", - "case_name_shorts": "Verwey" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Torres", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/TORRES-201300396-UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300396", - "case_name_shorts": "Torres" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Tapio", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400178.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400178", - "case_name_shorts": "Tapio" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Sopoci", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400197.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400197", - "case_name_shorts": "Sopoci" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Silverstrand", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400179.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400179", - "case_name_shorts": "Silverstrand" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Sewell", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/SEWELL-201300432-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300432", - "case_name_shorts": "Sewell" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Rockenhaus", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/ROCKENHAUS-201300409-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300409", - "case_name_shorts": "Rockenhaus" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Morris", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/MORRIS-2013000348-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300348", - "case_name_shorts": "Morris" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Mendoza", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400236.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400236", - "case_name_shorts": "Mendoza" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. McKenzie", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400190.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400190", - "case_name_shorts": "McKenzie" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Linton", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400157.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400157", - "case_name_shorts": "Linton" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Herzog", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400204.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400204", - "case_name_shorts": "Herzog" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Green", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400219.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400219", - "case_name_shorts": "Green" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Gibson", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400114.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400114", - "case_name_shorts": "Gibson" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Delmonte Jr.", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400175.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400175", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Chavira", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400239.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400239", - "case_name_shorts": "Chavira" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Chatman", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/CHATMAN-201300119-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300119", - "case_name_shorts": "Chatman" - }, - { - "case_dates": "2014-08-28", - "case_names": "United States v. Botley", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400186.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400186", - "case_name_shorts": "Botley" - }, - { - "case_dates": "2014-08-26", - "case_names": "United States v. Pottmeyer", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/POTTMEYER-201300293-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300293", - "case_name_shorts": "Pottmeyer" - }, - { - "case_dates": "2014-08-26", - "case_names": "United States v. Olivarez", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400223.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400223", - "case_name_shorts": "Olivarez" - }, - { - "case_dates": "2014-08-26", - "case_names": "United States v. Neidert", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400050.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400050", - "case_name_shorts": "Neidert" - }, - { - "case_dates": "2014-08-26", - "case_names": "United States v. Clark", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400221.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400221", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-21", - "case_names": "United States v. Solomon", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/SOLOMON-201100582-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201100582", - "case_name_shorts": "Solomon" - }, - { - "case_dates": "2014-08-21", - "case_names": "United States v. Smith", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/SMITH-201400106-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400106", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-21", - "case_names": "United States v. Raines", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/RAINES-201400027-UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400027", - "case_name_shorts": "Raines" - }, - { - "case_dates": "2014-08-21", - "case_names": "United States v. Miles", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/MILES-201300272-UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300272", - "case_name_shorts": "Miles" - }, - { - "case_dates": "2014-08-19", - "case_names": "United States v. Medina", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400167.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400167", - "case_name_shorts": "Medina" - }, - { - "case_dates": "2014-08-19", - "case_names": "United States v. Lynch", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/LYNCH-201300387-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300387", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-19", - "case_names": "United States v. Jouravska", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/JOURAVSKA-201300251-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300251", - "case_name_shorts": "Jouravska" - }, - { - "case_dates": "2014-08-19", - "case_names": "United States v. Hart", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/HART-201300295-UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300295", - "case_name_shorts": "Hart" - }, - { - "case_dates": "2014-08-19", - "case_names": "United States v. Aguinaldo", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400183.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400183", - "case_name_shorts": "Aguinaldo" - }, - { - "case_dates": "2014-08-14", - "case_names": "United States v. Moriarty", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400182.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400182", - "case_name_shorts": "Moriarty" - }, - { - "case_dates": "2014-08-14", - "case_names": "United States v. Hasley", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400026.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400026", - "case_name_shorts": "Hasley" - }, - { - "case_dates": "2014-08-12", - "case_names": "United States v. Wilder, Jr.", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/WILDER-201400118-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400118", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-12", - "case_names": "United States v. Caldwell", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/CALDWELL,_L.T._201000557-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201000557", - "case_name_shorts": "Caldwell" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Zamora", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400191.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400191", - "case_name_shorts": "Zamora" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Young, Jr.", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201200135.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201200135", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Weir", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400094.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400094", - "case_name_shorts": "Weir" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Ward, Jr.", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/WARD-201400021-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400021", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Tefft", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400166.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400166", - "case_name_shorts": "Tefft" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Spratling", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/SPRATLING-201400060-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400060", - "case_name_shorts": "Spratling" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Seitz", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400148.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400148", - "case_name_shorts": "Seitz" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Salazar III", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400145.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400145", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Rosario", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400176.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400176", - "case_name_shorts": "Rosario" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. McNeal", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400121.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400121", - "case_name_shorts": "McNeal" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Maples", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/MAPLES-201300448-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300448", - "case_name_shorts": "Maples" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Mangum", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400062.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400062", - "case_name_shorts": "Mangum" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Lewis", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400185.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300464", - "case_name_shorts": "Lewis" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Hains", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/HAINS-201300477-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300477", - "case_name_shorts": "Hains" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Green", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/GREEN-201300276-UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300276", - "case_name_shorts": "Green" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Ferrera", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400130.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400130", - "case_name_shorts": "Ferrera" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Engler", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/ENGLER-201300365-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300365", - "case_name_shorts": "Engler" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Ellerbee", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/ELLERBEE-201300109-UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300109", - "case_name_shorts": "Ellerbee" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Artap", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400138.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400138", - "case_name_shorts": "Artap" - }, - { - "case_dates": "2014-07-31", - "case_names": "United States v. Aguilar", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/AGUILAR-201300464-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300464", - "case_name_shorts": "Aguilar" - }, - { - "case_dates": "2014-07-29", - "case_names": "United States v. Workman", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/WORKMAN-201400080-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400080", - "case_name_shorts": "Workman" - }, - { - "case_dates": "2014-07-29", - "case_names": "United States v. Sloan", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400134.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400134", - "case_name_shorts": "Sloan" - }, - { - "case_dates": "2014-07-29", - "case_names": "United States v. Evans", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/EVANS-201300248-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300248", - "case_name_shorts": "Evans" - }, - { - "case_dates": "2014-07-29", - "case_names": "United States v. Epps", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/EPPS-201300423-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300423", - "case_name_shorts": "Epps" - }, - { - "case_dates": "2014-07-29", - "case_names": "United States v. Captain", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/CAPTAIN-201300137-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300137", - "case_name_shorts": "Captain" - }, - { - "case_dates": "2014-07-29", - "case_names": "United States v. Autolino", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400154.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400154", - "case_name_shorts": "Autolino" - }, - { - "case_dates": "2014-07-24", - "case_names": "United States v. Smith", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/SMITH-201300401-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300401", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-24", - "case_names": "United States v. Flowers", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/FLOWERS-201400003-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400003", - "case_name_shorts": "Flowers" - }, - { - "case_dates": "2014-07-22", - "case_names": "United States v. Watts", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/WATTS-201400128-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400128", - "case_name_shorts": "Watts" - }, - { - "case_dates": "2014-07-22", - "case_names": "United States v. Turner", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/TURNER-201400036-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400036", - "case_name_shorts": "Turner" - }, - { - "case_dates": "2014-07-22", - "case_names": "United States v. Snearl", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/SNEARL-201300446-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300446", - "case_name_shorts": "Snearl" - }, - { - "case_dates": "2014-07-22", - "case_names": "United States v. McCray", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/MCCRAY-201300390-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300390", - "case_name_shorts": "McCray" - }, - { - "case_dates": "2014-07-22", - "case_names": "United States v. Lopez", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/LOPEZ-201300394-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300394", - "case_name_shorts": "Lopez" - }, - { - "case_dates": "2014-07-22", - "case_names": "United States v. Hatch", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/HATCH-201400011-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400011", - "case_name_shorts": "Hatch" - }, - { - "case_dates": "2014-07-15", - "case_names": "United States v. Silva", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400160.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400160", - "case_name_shorts": "Silva" - }, - { - "case_dates": "2014-07-15", - "case_names": "United States v. Godoy", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400163.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400163", - "case_name_shorts": "Godoy" - }, - { - "case_dates": "2014-06-30", - "case_names": "United States v. Sanchez III", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/SANCHEZ-201400053-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400053", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-30", - "case_names": "United States v. Lawson", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/LAWSON-201300294.PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300294", - "case_name_shorts": "Lawson" - }, - { - "case_dates": "2014-06-30", - "case_names": "United States v. Lane", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/LANE-201300479-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300479", - "case_name_shorts": "Lane" - }, - { - "case_dates": "2014-06-30", - "case_names": "United States v. Januski", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/JANUSKI-201300210-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300210", - "case_name_shorts": "Januski" - }, - { - "case_dates": "2014-06-30", - "case_names": "United States v. Cortez", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/CORTEZ-201300462-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300462", - "case_name_shorts": "Cortez" - }, - { - "case_dates": "2014-06-30", - "case_names": "United States v. Brown", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/BROWN-201300252-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300252", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2014-06-30", - "case_names": "United States v. Brown", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/BROWN-201300181-UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300181", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Woods", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/WOODS-201300153-UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300153", - "case_name_shorts": "Woods" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Turman", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400123.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400123", - "case_name_shorts": "Turman" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Thai", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400084.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400084", - "case_name_shorts": "Thai" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Richmond", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400051.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400051", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Redmon", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/REDMON-201300077-UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300077", - "case_name_shorts": "Redmon" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Marsh", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400090.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400090", - "case_name_shorts": "Marsh" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Evans", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/EVANS-201300174-UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300174", - "case_name_shorts": "Evans" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Eldridge, Jr.", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400065.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400065", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Deluca IV", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400058.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400058", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Cummings", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/CUMMINGS-201400095-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400095", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Cieslewicz", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/CIESLEWICZ-201300421-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300421", - "case_name_shorts": "Cieslewicz" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Brown", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400091.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400091", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2014-06-26", - "case_names": "United States v. Boccia", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400078.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400078", - "case_name_shorts": "Boccia" - }, - { - "case_dates": "2014-06-19", - "case_names": "United States v. Lacount", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/LACOUNT-201300259-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300259", - "case_name_shorts": "Lacount" - }, - { - "case_dates": "2014-06-17", - "case_names": "United States v. Harrison", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300454.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300454", - "case_name_shorts": "Harrison" - }, - { - "case_dates": "2014-06-16", - "case_names": "United States v. Kish", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/KISH-201100404-UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201100404", - "case_name_shorts": "Kish" - }, - { - "case_dates": "2014-06-10", - "case_names": "United States v. Sine", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400081.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400081", - "case_name_shorts": "Sine" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Wolski", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400083.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400083", - "case_name_shorts": "Wolski" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Trammell", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400131.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400131", - "case_name_shorts": "Trammell" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Sullivan", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/SULLIVAN-201400071-PCE.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400071", - "case_name_shorts": "Sullivan" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Stoner", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/STONER-201300217-PCE.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300217", - "case_name_shorts": "Stoner" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Steele", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400029.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400029", - "case_name_shorts": "Steele" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Simmermacher", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/SIMMERMACHER-201300129-UNPUB.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300129", - "case_name_shorts": "Simmermacher" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. McMahan", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400164.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400164", - "case_name_shorts": "McMahan" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Maldonado", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400149.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400149", - "case_name_shorts": "Maldonado" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Ho", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400129.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400129", - "case_name_shorts": "Ho" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Fender", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/FENDER-201300334-PCE.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300334", - "case_name_shorts": "Fender" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Dunton", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/DUNTON-201300148-UNPUB.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300148", - "case_name_shorts": "Dunton" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Danley III", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400146.SL.PDF", - "precedential_statuses": "Published", + "case_dates": "2023-11-07", + "case_names": "United States v. JOHNSON", + "download_urls": "https://www.jag.navy.mil/documents/7272/JOHNSON_202200125_UNPUB.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201400146", + "docket_numbers": "202200125", "case_name_shorts": "" }, { - "case_dates": "2014-05-29", - "case_names": "United States v. Conser", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400099.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400099", - "case_name_shorts": "Conser" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Cole", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/COLE-201300165-PCE.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300165", - "case_name_shorts": "Cole" - }, - { - "case_dates": "2014-05-29", - "case_names": "United States v. Andrus", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400089.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400089", - "case_name_shorts": "Andrus" - }, - { - "case_dates": "2014-05-27", - "case_names": "United States v. Young-Shinault", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400079.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400079", - "case_name_shorts": "Young-Shinault" - }, - { - "case_dates": "2014-05-27", - "case_names": "United States v. McClain", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400101.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400101", - "case_name_shorts": "McClain" - }, - { - "case_dates": "2014-05-27", - "case_names": "United States v. Gonzalez", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300405.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300405", - "case_name_shorts": "Gonzalez" - }, - { - "case_dates": "2014-05-27", - "case_names": "United States v. Eleftherates", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/ELEFTHERATES-201400142-PCE.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400142", - "case_name_shorts": "Eleftherates" - }, - { - "case_dates": "2014-05-27", - "case_names": "United States v. Castillo", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/CASTILLO-201300280-UNPUB.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300280", - "case_name_shorts": "Castillo" - }, - { - "case_dates": "2014-05-27", - "case_names": "United States v. Becerra", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400077.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400077", - "case_name_shorts": "Becerra" - }, - { - "case_dates": "2014-05-22", - "case_names": "United States v. Howell", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/HOWELL-201200264-UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201200264", - "case_name_shorts": "Howell" - }, - { - "case_dates": "2014-05-20", - "case_names": "United States v. Sootoo", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400109.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400109", - "case_name_shorts": "Sootoo" - }, - { - "case_dates": "2014-05-20", - "case_names": "United States v. Griffin", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/GRIFFIN-201300227-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300227", - "case_name_shorts": "Griffin" - }, - { - "case_dates": "2014-05-08", - "case_names": "United States v. Schmidt", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400073.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400073", - "case_name_shorts": "Schmidt" - }, - { - "case_dates": "2014-05-08", - "case_names": "United States v. Drayton", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400085.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400085", - "case_name_shorts": "Drayton" - }, - { - "case_dates": "2014-05-08", - "case_names": "United States v. Casa", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400075.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400075", - "case_name_shorts": "Casa" - }, - { - "case_dates": "2014-04-30", - "case_names": "United States v. Yarushin", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400018.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400018", - "case_name_shorts": "Yarushin" - }, - { - "case_dates": "2014-04-30", - "case_names": "United States v. Raza", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400054.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400054", - "case_name_shorts": "Raza" - }, - { - "case_dates": "2014-04-30", - "case_names": "United States v. Rabino", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300483.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300483", - "case_name_shorts": "Rabino" - }, - { - "case_dates": "2014-04-30", - "case_names": "United States v. Ong", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300484.SL.PDF", + "case_dates": "2023-11-06", + "case_names": "United States v. WALLS", + "download_urls": "https://www.jag.navy.mil/documents/7271/WALLS_202300120_SL.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300484", - "case_name_shorts": "Ong" + "docket_numbers": "202300120", + "case_name_shorts": "WALLS" }, { - "case_dates": "2014-04-30", - "case_names": "United States v. Nelson", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300467.SL.PDF", + "case_dates": "2023-11-06", + "case_names": "United States v. GREY", + "download_urls": "https://www.jag.navy.mil/documents/7270/GREY_202300077_SL.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300467", - "case_name_shorts": "" + "docket_numbers": "202300077", + "case_name_shorts": "GREY" }, { - "case_dates": "2014-04-30", - "case_names": "United States v. McLaughlin II", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400040.SL.PDF", + "case_dates": "2023-10-30", + "case_names": "United States v. DIOGUARDI", + "download_urls": "https://www.jag.navy.mil/documents/7258/DIOGUARDI_202200223_PC.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201400040", - "case_name_shorts": "" + "docket_numbers": "202200223", + "case_name_shorts": "DIOGUARDI" }, { - "case_dates": "2014-04-30", - "case_names": "United States v. Mason", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/MASON-201300154-PCE.PDF", - "precedential_statuses": "Published", + "case_dates": "2023-10-23", + "case_names": "United States v. MILLER", + "download_urls": "https://www.jag.navy.mil/documents/7238/MILLER_202200230_UNPUB_Admin_Corr.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300154", + "docket_numbers": "202200230", "case_name_shorts": "" }, { - "case_dates": "2014-04-30", - "case_names": "United States v. Lopez", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400013.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400013", - "case_name_shorts": "Lopez" - }, - { - "case_dates": "2014-04-30", - "case_names": "United States v. Ledesma", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400086.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400086", - "case_name_shorts": "Ledesma" - }, - { - "case_dates": "2014-04-30", - "case_names": "United States v. Kinyanjui", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400055.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400055", - "case_name_shorts": "Kinyanjui" - }, - { - "case_dates": "2014-04-30", - "case_names": "United States v. Haag", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300447.SL.PDF", + "case_dates": "2023-10-18", + "case_names": "United States v. ERVIN", + "download_urls": "https://www.jag.navy.mil/documents/7222/ERVIN_202300009_SL.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300447", - "case_name_shorts": "Haag" + "docket_numbers": "202300009", + "case_name_shorts": "ERVIN" }, { - "case_dates": "2014-04-30", - "case_names": "United States v. Freeman III", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/FREEMAN-201300102-UNPUB.PDF", - "precedential_statuses": "Published", + "case_dates": "2023-10-17", + "case_names": "United States v. KERR", + "download_urls": "https://www.jag.navy.mil/documents/7220/KERR_202200140_UNPUB.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300102", - "case_name_shorts": "" + "docket_numbers": "202200140", + "case_name_shorts": "KERR" }, { - "case_dates": "2014-04-30", - "case_names": "United States v. Edginton", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/EDGINTON-201300328-PCE.PDF", - "precedential_statuses": "Published", + "case_dates": "2023-10-13", + "case_names": "United States v. CHEGE", + "download_urls": "https://www.jag.navy.mil/documents/7190/CHEGE_202200079_UNPUB.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300328", - "case_name_shorts": "Edginton" + "docket_numbers": "202200079", + "case_name_shorts": "CHEGE" }, { - "case_dates": "2014-04-30", - "case_names": "United States v. Dengler", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400064.SL.PDF", + "case_dates": "2023-10-12", + "case_names": "United States v. HERNANDEZVALERO", + "download_urls": "https://www.jag.navy.mil/documents/7189/HERNANDEZVALERO_202200083_PC.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201400064", - "case_name_shorts": "Dengler" + "docket_numbers": "202200083", + "case_name_shorts": "HERNANDEZVALERO" }, { - "case_dates": "2014-04-30", - "case_names": "United States v. Davis", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400112.SL.PDF", - "precedential_statuses": "Published", + "case_dates": "2023-10-10", + "case_names": "United States v. FLANNER", + "download_urls": "https://www.jag.navy.mil/documents/7164/FLANNER_202300134_UNPUB.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201400112", - "case_name_shorts": "Davis" + "docket_numbers": "202300134", + "case_name_shorts": "FLANNER" }, { - "case_dates": "2014-04-30", - "case_names": "United States v. Chang", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400012.SL.PDF", + "case_dates": "2023-10-06", + "case_names": "United States v. WATLINGTON", + "download_urls": "https://www.jag.navy.mil/documents/7161/WATLINGTON_202200076_UNPUB.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201400012", - "case_name_shorts": "Chang" + "docket_numbers": "202200076", + "case_name_shorts": "WATLINGTON" }, { - "case_dates": "2014-04-30", - "case_names": "United States v. Buie", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300478.SL.PDF", + "case_dates": "2023-09-28", + "case_names": "United States v. SEVERINOGONZALEZ", + "download_urls": "https://www.jag.navy.mil/documents/7157/SEVERINOGONZALEZ_202300165_SL.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300478", - "case_name_shorts": "Buie" + "docket_numbers": "202300165", + "case_name_shorts": "SEVERINOGONZALEZ" }, { - "case_dates": "2014-04-24", - "case_names": "United States v. Samuel", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400045.SL.pdf", + "case_dates": "2023-09-28", + "case_names": "United States v. RANGEL", + "download_urls": "https://www.jag.navy.mil/documents/7156/RANGEL_202300055_SL.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201400045", - "case_name_shorts": "Samuel" + "docket_numbers": "202300055", + "case_name_shorts": "RANGEL" }, { - "case_dates": "2014-04-24", - "case_names": "United States v. Orozco", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400104.SL.PDF", + "case_dates": "2023-09-25", + "case_names": "United States v. LONG", + "download_urls": "https://www.jag.navy.mil/documents/7074/LONG_202200156_UNPUB.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201400104", - "case_name_shorts": "Orozco" + "docket_numbers": "202200156", + "case_name_shorts": "LONG" }, { - "case_dates": "2014-04-24", - "case_names": "United States v. Henderson", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/HENDERSON - 201300140 - PCE.pdf", + "case_dates": "2023-09-21", + "case_names": "United States v. HOTZ III", + "download_urls": "https://www.jag.navy.mil/documents/7017/HOTZ_202300081_SL.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300140", + "docket_numbers": "202300081", "case_name_shorts": "" }, { - "case_dates": "2014-04-24", - "case_names": "United States v. Hedrick", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300438.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300438", - "case_name_shorts": "Hedrick" - }, - { - "case_dates": "2014-04-24", - "case_names": "United States v. Gomez", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300428.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300428", - "case_name_shorts": "Gomez" - }, - { - "case_dates": "2014-04-24", - "case_names": "United States v. Clark", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/CLARK-201300411-PCE.pdf", + "case_dates": "2023-09-21", + "case_names": "United States v. GUIDER, Jr.", + "download_urls": "https://www.jag.navy.mil/documents/7018/GUIDER_202300043_SL.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300411", + "docket_numbers": "202300043", "case_name_shorts": "" }, { - "case_dates": "2014-04-24", - "case_names": "United States v. Bedford", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400052.SL.PDF", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400052", - "case_name_shorts": "Bedford" - }, - { - "case_dates": "2014-04-22", - "case_names": "United States v. Shields", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/SHIELDS-201400025-PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400025", - "case_name_shorts": "Shields" - }, - { - "case_dates": "2014-04-22", - "case_names": "United States v. Nieves", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400047.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400047", - "case_name_shorts": "Nieves" - }, - { - "case_dates": "2014-04-22", - "case_names": "United States v. Lloyd", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300487-SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300487", - "case_name_shorts": "Lloyd" - }, - { - "case_dates": "2014-04-22", - "case_names": "United States v. Dickens", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/DICKENS-201300025-UNPUB.pdf", + "case_dates": "2023-09-19", + "case_names": "United States v. HUNT", + "download_urls": "https://www.jag.navy.mil/documents/7014/HUNT_202300018_SL.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300025", - "case_name_shorts": "Dickens" + "docket_numbers": "202300018", + "case_name_shorts": "HUNT" }, { - "case_dates": "2014-04-17", - "case_names": "United States v. White", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300474.SL.pdf", + "case_dates": "2023-09-19", + "case_names": "United States v. GALARZA", + "download_urls": "https://www.jag.navy.mil/documents/7223/GALARZA_202300004_SL_Admin_Correction.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300474", - "case_name_shorts": "White" + "docket_numbers": "202300004", + "case_name_shorts": "GALARZA" }, { - "case_dates": "2014-04-17", - "case_names": "United States v. Rivas", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400137.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400137", - "case_name_shorts": "Rivas" - }, - { - "case_dates": "2014-04-17", - "case_names": "United States v. Leone", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400032.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400032", - "case_name_shorts": "Leone" - }, - { - "case_dates": "2014-04-08", - "case_names": "United States v. Herzog", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400063.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400063", - "case_name_shorts": "Herzog" - }, - { - "case_dates": "2014-04-08", - "case_names": "United States v. Granados", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300475.SL.pdf", - "precedential_statuses": "Published", + "case_dates": "2023-09-11", + "case_names": "United States v. SANTOSCRUZ", + "download_urls": "https://www.jag.navy.mil/documents/6877/SANTOSCRUZ_202200063_UNPUB.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300475", - "case_name_shorts": "Granados" + "docket_numbers": "202200063", + "case_name_shorts": "SANTOSCRUZ" }, { - "case_dates": "2014-03-31", - "case_names": "United States v. Waugh,jr", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300465.SL.pdf", + "case_dates": "2023-09-11", + "case_names": "United States v. BECKER", + "download_urls": "https://www.jag.navy.mil/documents/6882/BECKER_202200212_PUB.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300465", - "case_name_shorts": "Waugh,jr" + "docket_numbers": "202200212", + "case_name_shorts": "BECKER" }, { - "case_dates": "2014-03-31", - "case_names": "United States v. Presnell", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400041.SL.pdf", + "case_dates": "2023-08-31", + "case_names": "United States v. ELLARD", + "download_urls": "https://www.jag.navy.mil/documents/6800/ELLARD_202200051_UNPUB.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201400041", - "case_name_shorts": "Presnell" + "docket_numbers": "202200051", + "case_name_shorts": "ELLARD" }, { - "case_dates": "2014-03-31", - "case_names": "United States v. Nicholas", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400038.SL.pdf", + "case_dates": "2023-08-31", + "case_names": "United States v. CHRISTOPHER", + "download_urls": "https://www.jag.navy.mil/documents/6799/CHRISTOPHER_201600249_UNPUB.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201400038", - "case_name_shorts": "Nicholas" - }, - { - "case_dates": "2014-03-31", - "case_names": "United States v. Marrowbone", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400034.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400034", - "case_name_shorts": "Marrowbone" - }, - { - "case_dates": "2014-03-31", - "case_names": "United States v. Hintze", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400049.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400049", - "case_name_shorts": "Hintze" - }, - { - "case_dates": "2014-03-31", - "case_names": "United States v. Hill, Jr.", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300453.SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201300453", - "case_name_shorts": "" + "docket_numbers": "201600249", + "case_name_shorts": "CHRISTOPHER" }, { - "case_dates": "2014-03-31", - "case_names": "United States v. Brenneman", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201400028.SL.pdf", + "case_dates": "2023-08-31", + "case_names": "United States v. BERNAL", + "download_urls": "https://www.jag.navy.mil/documents/6801/BERNAL_202300031_SL.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201400028", - "case_name_shorts": "Brenneman" + "docket_numbers": "202300031", + "case_name_shorts": "BERNAL" }, { - "case_dates": "2014-03-31", - "case_names": "United States v. Baron", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2014/201300449.SL.pdf", + "case_dates": "2023-08-16", + "case_names": "United States v. SWISHER", + "download_urls": "https://www.jag.navy.mil/documents/6288/SWISHER_202100311_EN-BANC_UNPUB.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "201300449", - "case_name_shorts": "Baron" + "docket_numbers": "202100311", + "case_name_shorts": "SWISHER" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nmcca_example.html b/tests/examples/opinions/united_states/nmcca_example.html deleted file mode 100644 index e4e652f8d..000000000 --- a/tests/examples/opinions/united_states/nmcca_example.html +++ /dev/null @@ -1,1567 +0,0 @@ - - - - - - - - -NMCCA Opinion Archive 2014 | U.S. Navy JAG Corps - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    - -
    -

    | NMCCA Decisions (Court Opinions)

    - -

    This section contains the decisions of the Court based upon their chronological release date. Published opinions are binding in the Naval Services at the trial level and at this Court. Unpublished opinions may be cited as persuasive authority.

    - -

    Browse Archives

    -
      -
    1. 2014 Archive
    2. -
    3. 2013 Archive
    4. -
    5. 2012 Archive
    6. -
    7. 2011 Archive
    8. -
    9. 2010 Archive
    10. -
    11. 2009 Archive
    12. -
    -
    -
      -
    1. 2008 Archive
    2. -
    3. 2007 Archive
    4. -
    5. 2006 Archive
    6. -
    7. 2005 Archive
    8. -
    9. 2004 Archive
    10. -
    - -

    2014 Opinion Archive

    -

    Directions:

    -

    To aid your search for information within the archive, the table below has a few key features:

      -
    • Table Sort: Click on a column heading to sort the table by that column.
    • -
    • Highlight: Click on any row to highlight the information.
    • -
    • Search: You can search any column for specific information. Choose a column name in the drop down box, enter your query and click the Search button. You can clear the search results using the Rest button.
    • -
    - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    PartiesDocket #DateFileType
    U.S. v. CAIN20130039209/11/2014DownloadPer Curiam
    U.S. v. CUFF20140025209/11/2014DownloadSummary Disposition
    U.S. v. NATARENO20140022509/11/2014DownloadSummary Disposition
    U.S. v. KARANJA20140020209/11/2014DownloadSummary Disposition
    U.S. v. CHATMAN20130011908/28/2014DownloadPer Curiam
    U.S. v. MORRIS20130034808/28/2014DownloadPer Curiam
    U.S. v. ROCKENHAUS20130040908/28/2014DownloadPer Curiam
    U.S. v. SEWELL20130043208/28/2014DownloadPer Curiam
    U.S. v. TORRES20130039608/28/2014DownloadAuthored
    U.S. v. WILSON, JR.20130031508/28/2014DownloadPer Curiam
    U.S. v. GIBSON20140011408/28/2014DownloadSummary Disposition
    U.S. v. LINTON20140015708/28/2014DownloadSummary Disposition
    U.S. v. DELMONTE JR.20140017508/28/2014DownloadSummary Disposition
    U.S. v. TAPIO20140017808/28/2014DownloadSummary Disposition
    U.S. v. VERWEY20140018008/28/2014DownloadSummary Disposition
    U.S. v. BOTLEY20140018608/28/2014DownloadSummary Disposition
    U.S. v. HERZOG20140020408/28/2014DownloadSummary Disposition
    U.S. v. GREEN20140021908/28/2014DownloadSummary Disposition
    U.S. v. MENDOZA20140023608/28/2014DownloadSummary Disposition
    U.S. v. CHAVIRA20140023908/28/2014DownloadSummary Disposition
    U.S. v. SILVERSTRAND20140017908/28/2014DownloadSummary Disposition
    U.S. v. WORLEY20140018908/28/2014DownloadSummary Disposition
    U.S. v. MCKENZIE20140019008/28/2014DownloadSummary Disposition
    U.S. v. SOPOCI20140019708/28/2014DownloadSummary Disposition
    U.S. v. WILSON JR.20140021408/28/2014DownloadSummary Disposition
    U.S. v. OLIVAREZ20140022308/26/2014DownloadSummary Disposition
    U.S. v. POTTMEYER20130029308/26/2014DownloadPer Curiam
    U.S. v. CLARK20140022108/26/2014DownloadSummary Disposition
    U.S. v. NEIDERT20140005008/26/2014DownloadSummary Disposition
    U.S. v. SMITH20140010608/21/2014DownloadPer Curiam
    U.S. v. SOLOMON20110058208/21/2014DownloadPer Curiam
    U.S. v. MILES20130027208/21/2014DownloadAuthored
    U.S. v. RAINES20140002708/21/2014DownloadAuthored
    U.S. v. JOURAVSKA20130025108/19/2014DownloadPer Curiam
    U.S. v. HART20130029508/19/2014DownloadAuthored
    U.S. v. LYNCH20130038708/19/2014DownloadPer Curiam
    U.S. v. AGUINALDO20140018308/19/2014DownloadSummary Disposition
    U.S. v. MEDINA20140016708/19/2014DownloadSummary Disposition
    U.S. v. MORIARTY20140018208/14/2014DownloadSummary Disposition
    U.S. v. HASLEY20140002608/14/2014DownloadSummary Disposition
    U.S. v. CALDWELL20100055708/12/2014DownloadPer Curiam
    U.S. v. WILDER, JR.20140011808/12/2014DownloadPer Curiam
    U.S. v. ROSARIO20140017607/31/2014DownloadSummary Disposition
    U.S. v. SALAZAR III20140014507/31/2014DownloadSummary Disposition
    U.S. v. MCNEAL20140012107/31/2014DownloadSummary Disposition
    U.S. v. WEIR20140009407/31/2014DownloadSummary Disposition
    U.S. v. MANGUM20140006207/31/2014DownloadSummary Disposition
    U.S. v. ZAMORA20140019107/31/2014DownloadSummary Disposition
    U.S. v. YOUNG, JR.20120013507/31/2014DownloadSummary Disposition
    U.S. v. FERRERA20140013007/31/2014DownloadSummary Disposition
    U.S. v. ARTAP20140013807/31/2014DownloadSummary Disposition
    U.S. v. SEITZ20140014807/31/2014DownloadSummary Disposition
    U.S. v. TEFFT20140016607/31/2014DownloadSummary Disposition
    U.S. v. LEWIS20130046407/31/2014DownloadSummary Disposition
    U.S. v. AGUILAR20130046407/31/2014DownloadPer Curiam
    U.S. v. ELLERBEE20130010907/31/2014DownloadAuthored
    U.S. v. ENGLER20130036507/31/2014DownloadPer Curiam
    U.S. v. GREEN20130027607/31/2014DownloadAuthored
    U.S. v. HAINS20130047707/31/2014DownloadPer Curiam
    U.S. v. MAPLES20130044807/31/2014DownloadPer Curiam
    U.S. v. SPRATLING20140006007/31/2014DownloadPer Curiam
    U.S. v. WARD, JR.20140002107/31/2014DownloadPer Curiam
    U.S. v. EPPS20130042307/29/2014DownloadPer Curiam
    U.S. v. EVANS20130024807/29/2014DownloadPer Curiam
    U.S. v. WORKMAN20140008007/29/2014DownloadPer Curiam
    U.S. v. CAPTAIN20130013707/29/2014DownloadPer Curiam
    U.S. v. SLOAN20140013407/29/2014DownloadSummary Disposition
    U.S. v. AUTOLINO20140015407/29/2014DownloadSummary Disposition
    U.S. v. SMITH20130040107/24/2014DownloadPer Curiam
    U.S. v. FLOWERS20140000307/24/2014DownloadPer Curiam
    U.S. v. TURNER20140003607/22/2014DownloadPer Curiam
    U.S. v. SNEARL20130044607/22/2014DownloadPer Curiam
    U.S. v. WATTS20140012807/22/2014DownloadPer Curiam
    U.S. v. MCCRAY20130039007/22/2014DownloadPer Curiam
    U.S. v. LOPEZ20130039407/22/2014DownloadPer Curiam
    U.S. v. HATCH20140001107/22/2014DownloadPer Curiam
    U.S. v. GODOY20140016307/15/2014DownloadSummary Disposition
    U.S. v. SILVA20140016007/15/2014DownloadSummary Disposition
    U.S. v. HARRISON20130045406/17/2014DownloadSummary Disposition
    U.S. v. LACOUNT20130025906/19/2014DownloadPer Curiam
    U.S. v. BOCCIA20140007806/26/2014DownloadSummary Disposition
    U.S. v. MARSH20140009006/26/2014DownloadSummary Disposition
    U.S. v. THAI20140008406/26/2014DownloadSummary Disposition
    U.S. v. TURMAN20140012306/26/2014DownloadSummary Disposition
    U.S. v. BROWN20140009106/26/2014DownloadSummary Disposition
    U.S. v. ELDRIDGE, JR.20140006506/26/2014DownloadSummary Disposition
    U.S. v. DELUCA IV20140005806/26/2014DownloadSummary Disposition
    U.S. v. RICHMOND20140005106/26/2014DownloadSummary Disposition
    U.S. v. CUMMINGS20140009506/26/2014DownloadPer Curiam
    U.S. v. CIESLEWICZ20130042106/26/2014DownloadPer Curiam
    U.S. v. REDMON20130007706/26/2014DownloadAuthored
    U.S. v. WOODS20130015306/26/2014DownloadAuthored
    U.S. v. EVANS20130017406/26/2014DownloadAuthored
    U.S. v. LANE20130047906/30/2014DownloadPer Curiam
    U.S. v. JANUSKI20130021006/30/2014Download Per Curiam
    U.S. v. CORTEZ20130046206/30/2014Download Per Curiam
    U.S. v. BROWN20130025206/30/2014DownloadPer Curiam
    U.S. v. LAWSON20130029406/30/2014DownloadPer Curiam
    U.S. v. BROWN20130018106/30/2014DownloadAuthored
    U.S. v. SANCHEZ III20140005306/30/2014DownloadPer Curiam
    U.S. v. KISH20110040406/16/2014DownloadAuthored
    U.S. v. SINE2014000816/10/2014DownloadSummary Disposition
    U.S. v. STEELE2014000295/29/2014DownloadSummary Disposition
    U.S. v. WOLSKI2014000835/29/2014DownloadSummary Disposition
    U.S. v. ANDRUS2014000895/29/2014DownloadSummary Disposition
    U.S. v. VILTZ2014000925/29/2014DownloadSummary Disposition
    U.S. v. CONSER2014000995/29/2014DownloadSummary Disposition
    U.S. v. HO2014001295/29/2014DownloadSummary Disposition
    U.S. v. TRAMMELL2014001315/29/2014DownloadSummary Disposition
    U.S. v. DANLEY III2014001465/29/2014DownloadSummary Disposition
    U.S. v. MALDONADO2014001495/29/2014DownloadSummary Disposition
    U.S. v. MCMAHAN2014001645/29/2014DownloadSummary Disposition
    U.S. v. COLE2013001655/29/2014DownloadPer Curiam
    U.S. v. DUNTON2013001485/29/2014DownloadAuthored
    U.S. v. FENDER2013003345/29/2014DownloadPer Curiam
    U.S. v. SIMMERMACHER2013001295/29/2014DownloadAuthored
    U.S. v. STONER2013002175/29/2014DownloadPer Curiam
    U.S. v. SULLIVAN2014000715/29/2014DownloadPer Curiam
    U.S. v. GONZALEZ2013004055/27/2014DownloadSummary Disposition
    U.S. v. BECERRA2014000775/27/2014DownloadSummary Disposition
    U.S. v. YOUNG-SHINAULT2014000795/27/2014DownloadSummary Disposition
    U.S. v. MCCLAIN2014001015/27/2014DownloadSummary Disposition
    U.S. v. CASTILLO2013002805/27/2014DownloadAuthored
    U.S. v. ELEFTHERATES2014001425/27/2014DownloadPer Curiam
    U.S. v. HOWELL2012002645/22/14DownloadAuthored
    U.S. v. GRIFFIN2013002275/20/14DownloadPer Curiam
    U.S. v. SOOTOO2014001095/20/14DownloadSummary Disposition
    U.S. v. DRAYTON2014000855/8/14DownloadSummary Disposition
    U.S. v. CASA2014000755/8/14DownloadSummary Disposition
    U.S. v. SCHMIDT2014000735/8/14DownloadSummary Disposition
    U.S. v. FREEMAN III2013001024/30/2014DownloadAuthored
    U.S. v. HAAG2013004474/30/2014DownloadSummary Disposition
    U.S. v. NELSON2013004674/30/2014DownloadSummary Disposition
    U.S. v. BUIE2013004784/30/2014DownloadSummary Disposition
    U.S. v. RABINO2013004834/30/2014DownloadSummary Disposition
    U.S. v. LOPEZ2014000134/30/2014DownloadSummary Disposition
    U.S. v. MCLAUGHLIN II2014000404/30/2014DownloadSummary Disposition
    U.S. v. KINYANJUI2014000554/30/2014DownloadSummary Disposition
    U.S. v. DAVIS2014001124/30/2014DownloadSummary Disposition
    U.S. v. MASON2013001544/30/2014DownloadPer Curiam
    U.S. v. ONG2013004844/30/2014DownloadSummary Disposition
    U.S. v. CHANG2014000124/30/2014DownloadSummary Disposition
    U.S. v. YARUSHIN2014000184/30/2014DownloadSummary Disposition
    U.S. v. RAZA2014000544/30/2014DownloadSummary Disposition
    U.S. v. DENGLER2014000644/30/2014DownloadSummary Disposition
    U.S. v. LEDESMA2014000864/30/2014DownloadSummary Disposition
    U.S. v. EDGINTON2013003284/30/2014DownloadPer Curiam
    U.S. v. HEDRICK2013004384/24/2014DownloadSummary Disposition
    U.S. v. BEDFORD2014000524/24/2014DownloadSummary Disposition
    U.S. v. OROZCO2014001044/24/2014DownloadSummary Disposition
    U.S. v. HENDERSON2013001404/24/14DownloadPer Curiam
    U.S. v. CLARK2013004114/24/14DownloadPer Curiam
    U.S. v. SAMUEL2014000454/24/14DownloadSummary Disposition
    U.S. v. GOMEZ2013004284/24/14DownloadSummary Disposition
    U.S. v. DICKENS2013000254/22/14DownloadAuthored
    U.S. v. NIEVES2014000474/22/14DownloadSummary Disposition
    U.S. v. LLOYD2013004874/22/14DownloadSummary Disposition
    U.S. v. SHIELDS2014000254/22/14DownloadPer Curiam
    U.S. v. RIVAS2014001374/17/14DownloadSummary Disposition
    U.S. v. LEONE2014000324/17/14DownloadSummary Disposition
    U.S. v. WHITE2013004744/17/14DownloadSummary Disposition
    U.S. v. HILL, JR.2013004533/31/14DownloadSummary Disposition
    U.S. v. HERZOG2014000634/8/14DownloadSummary Disposition
    U.S. v. GRANADOS2013004754/8/14DownloadSummary Disposition
    U.S. v. BARON2013004493/31/14DownloadSummary Disposition
    U.S. v. NICHOLAS2014000383/31/14DownloadSummary Disposition
    U.S. v. WAUGH,JR2013004653/31/14DownloadSummary Disposition
    U.S. v. BRENNEMAN2014000283/31/14DownloadSummary Disposition
    U.S. v. HINTZE2014000493/31/14DownloadSummary Disposition
    U.S. v. PRESNELL2014000413/31/14DownloadSummary Disposition
    U.S. v. MARROWBONE2014000343/31/14DownloadSummary Disposition
    -
    - -
    -

    Navigate the NMCCA

    - - -

    If the information you are looking for is not available here, you may submit a FOIA Request.

    - -

    Contact NMCCA HQ

    -
    -
    Mailing Address:
    -
    Navy-Marine Corps Court of Criminal Appeals (Code 51)
    -
    United States Navy
    -
    1254 Charles Morris St., SE
    -
    Suite 320
    -
    Washington Navy Yard, DC 20374-5124
    -
    Phone Numbers:
    -
    Comm: (202) 685-7700
    -
    DSN: 325-7700
    -
    Fax: (202) 685-7690
    -
    Hours:
    -
    0730 – 1630
    -
    Monday – Friday
    -
    -
    -
    -
    - - - - - - - diff --git a/tests/examples/opinions/united_states/nmcca_example.json b/tests/examples/opinions/united_states/nmcca_example.json new file mode 100644 index 000000000..385c15657 --- /dev/null +++ b/tests/examples/opinions/united_states/nmcca_example.json @@ -0,0 +1,657 @@ +{ + "count": 5469, + "next": "https://www.jag.navy.mil/api/tables/decisions-opinions/data/?page=2", + "previous": null, + "results": [ + { + "id": 10581, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-11-09", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202200128", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Per Curiam", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. ROACHE" + }, + "documents": [ + { + "document": { + "id": 7281, + "title": "ROACHE_202200128_PC", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-11-09T14:50:22.191162Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7281/ROACHE_202200128_PC.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 10572, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-11-07", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202200125", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Unpublished", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. JOHNSON" + }, + "documents": [ + { + "document": { + "id": 7272, + "title": "JOHNSON_202200125_UNPUB", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-11-07T17:50:09.664952Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7272/JOHNSON_202200125_UNPUB.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 10570, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-11-06", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202300077", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Summary Disposition", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. GREY" + }, + "documents": [ + { + "document": { + "id": 7270, + "title": "GREY_202300077_SL", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-11-06T19:37:33.561156Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7270/GREY_202300077_SL.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 10571, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-11-06", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202300120", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Summary Disposition", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. WALLS" + }, + "documents": [ + { + "document": { + "id": 7271, + "title": "WALLS_202300120_SL", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-11-06T19:39:28.183085Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7271/WALLS_202300120_SL.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 10478, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-10-30", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202200223", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Per Curiam", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. DIOGUARDI" + }, + "documents": [ + { + "document": { + "id": 7258, + "title": "DIOGUARDI_202200223_PC", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-10-30T19:51:29.722385Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7258/DIOGUARDI_202200223_PC.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 10381, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-10-23", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202200230", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Unpublished", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. MILLER" + }, + "documents": [ + { + "document": { + "id": 7238, + "title": "MILLER_202200230_UNPUB_Admin Corr", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-10-24T17:04:43.689631Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7238/MILLER_202200230_UNPUB_Admin_Corr.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 10299, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-10-18", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202300009", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Summary Disposition", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. ERVIN" + }, + "documents": [ + { + "document": { + "id": 7222, + "title": "ERVIN_202300009_SL", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-10-18T14:09:12.666897Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7222/ERVIN_202300009_SL.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 10298, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-10-17", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202200140", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Unpublished", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. KERR" + }, + "documents": [ + { + "document": { + "id": 7220, + "title": "KERR_202200140_UNPUB", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-10-17T14:32:03.784985Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7220/KERR_202200140_UNPUB.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 10217, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-10-13", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202200079", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Unpublished", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. CHEGE" + }, + "documents": [ + { + "document": { + "id": 7190, + "title": "CHEGE_202200079_UNPUB", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-10-13T14:02:04.054601Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7190/CHEGE_202200079_UNPUB.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 10216, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-10-12", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202200083", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Per Curiam Opinion", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. HERNANDEZVALERO" + }, + "documents": [ + { + "document": { + "id": 7189, + "title": "HERNANDEZVALERO_202200083_PC", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-10-12T18:58:18.310130Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7189/HERNANDEZVALERO_202200083_PC.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 10215, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-10-10", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202300134", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Unpublished", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. FLANNER" + }, + "documents": [ + { + "document": { + "id": 7164, + "title": "FLANNER_202300134_UNPUB", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-10-10T17:29:19.429640Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7164/FLANNER_202300134_UNPUB.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 10212, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-10-06", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202200076", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Unpublished Opinion", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. WATLINGTON" + }, + "documents": [ + { + "document": { + "id": 7161, + "title": "WATLINGTON_202200076_UNPUB", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-10-06T17:03:51.788414Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7161/WATLINGTON_202200076_UNPUB.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 10128, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-09-28", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202300055", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Summary Disposition", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. RANGEL" + }, + "documents": [ + { + "document": { + "id": 7156, + "title": "RANGEL_202300055_SL", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-10-02T12:39:07.188395Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7156/RANGEL_202300055_SL.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 10129, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-09-28", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202300165", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Summary Disposition", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. SEVERINOGONZALEZ" + }, + "documents": [ + { + "document": { + "id": 7157, + "title": "SEVERINOGONZALEZ_202300165_SL", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-10-02T12:44:07.020332Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7157/SEVERINOGONZALEZ_202300165_SL.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 9941, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-09-25", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202200156", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Unpublished Opinion", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. LONG" + }, + "documents": [ + { + "document": { + "id": 7074, + "title": "LONG_202200156_UNPUB", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-09-25T15:51:13.365506Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7074/LONG_202200156_UNPUB.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 9939, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-09-21", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202300043", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Summary Disposition", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. GUIDER, Jr." + }, + "documents": [ + { + "document": { + "id": 7018, + "title": "GUIDER_202300043_SL", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-09-21T14:00:52.228555Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7018/GUIDER_202300043_SL.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 9938, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-09-21", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202300081", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Summary Disposition", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. HOTZ III" + }, + "documents": [ + { + "document": { + "id": 7017, + "title": "HOTZ_202300081_SL", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-09-21T13:52:14.340687Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7017/HOTZ_202300081_SL.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 9937, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-09-19", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202300004", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Summary Disposition", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. GALARZA" + }, + "documents": [ + { + "document": { + "id": 7223, + "title": "GALARZA_202300004_SL Admin Correction", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-10-19T14:15:17.047653Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7223/GALARZA_202300004_SL_Admin_Correction.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 9936, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-09-19", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202300018", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Summary Disposition", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. HUNT" + }, + "documents": [ + { + "document": { + "id": 7014, + "title": "HUNT_202300018_SL", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-09-19T17:25:48.991620Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/7014/HUNT_202300018_SL.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 9862, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-09-11", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202200063", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Unpublished", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. SANTOSCRUZ" + }, + "documents": [ + { + "document": { + "id": 6877, + "title": "SANTOSCRUZ_202200063_UNPUB", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-09-11T16:51:54.824677Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/6877/SANTOSCRUZ_202200063_UNPUB.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 9863, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-09-11", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202200212", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Published", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. BECKER" + }, + "documents": [ + { + "document": { + "id": 6882, + "title": "BECKER_202200212_PUB", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-09-11T18:02:11.549856Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/6882/BECKER_202200212_PUB.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 9749, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-08-31", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202200051", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Authored", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. ELLARD" + }, + "documents": [ + { + "document": { + "id": 6800, + "title": "ELLARD_202200051_UNPUB", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-08-31T19:47:25.092210Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/6800/ELLARD_202200051_UNPUB.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 9750, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-08-31", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202300031", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Summary Disposition", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. BERNAL" + }, + "documents": [ + { + "document": { + "id": 6801, + "title": "BERNAL_202300031_SL", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-09-01T12:32:23.170927Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/6801/BERNAL_202300031_SL.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 9748, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-08-31", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "201600249", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Authored", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. CHRISTOPHER" + }, + "documents": [ + { + "document": { + "id": 6799, + "title": "CHRISTOPHER_201600249_UNPUB", + "is_searchable": true, + "search_description": "", + "mime_type": "application/pdf", + "created_at": "2023-08-31T18:36:37.133611Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/6799/CHRISTOPHER_201600249_UNPUB.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + }, + { + "id": 9541, + "data": { + "6e61b248-ef67-423e-b321-f2ed8ad05728": "2023-08-16", + "80dedfc1-74a9-4372-a36f-8736c6baf754": "202100311", + "9152980f-7bd6-4b48-8130-10500cda8cca": "Unpublished En Banc", + "9a84d8ce-017d-4a4b-821f-2fa33b700b0c": "U.S. v. SWISHER" + }, + "documents": [ + { + "document": { + "id": 6288, + "title": "U.S. v. Swisher", + "is_searchable": true, + "search_description": "U.S. v. Swisher Unpublished En Banc", + "mime_type": "application/pdf", + "created_at": "2023-08-16T15:02:00.510007Z", + "file_type": 6, + "file_type__label": "PDF", + "download_url": "https://www.jag.navy.mil/documents/6288/SWISHER_202100311_EN-BANC_UNPUB.pdf" + }, + "key": "d1a20eee-610b-40f0-b8a7-d2316a4f1d5c" + } + ], + "media": [] + } + ] +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nmcca_example_2.compare.json b/tests/examples/opinions/united_states/nmcca_example_2.compare.json deleted file mode 100644 index a8df2b267..000000000 --- a/tests/examples/opinions/united_states/nmcca_example_2.compare.json +++ /dev/null @@ -1,1112 +0,0 @@ -[ - { - "case_dates": "2020-07-10", - "case_names": "United States v. Allen", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/ALLEN_201900180_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900180", - "case_name_shorts": "Allen" - }, - { - "case_dates": "2020-07-08", - "case_names": "United States v. Olivares", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/OLIVARES_201800125_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800125", - "case_name_shorts": "Olivares" - }, - { - "case_dates": "2020-07-08", - "case_names": "United States v. Kellogg", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/KELLOGG_201900253_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900253", - "case_name_shorts": "Kellogg" - }, - { - "case_dates": "2020-06-30", - "case_names": "United States v. Flores-Rivas", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/FLORES-RIVAS_201900059_PUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900059", - "case_name_shorts": "Flores-Rivas" - }, - { - "case_dates": "2020-06-29", - "case_names": "United States v. Trevino", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/TREVINO_201900309_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900309", - "case_name_shorts": "Trevino" - }, - { - "case_dates": "2020-06-29", - "case_names": "United States v. Pepper", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/PEPPER_201900044_PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900044", - "case_name_shorts": "Pepper" - }, - { - "case_dates": "2020-06-29", - "case_names": "United States v. Clark", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/CLARK_202000010_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000010", - "case_name_shorts": "" - }, - { - "case_dates": "2020-06-26", - "case_names": "United States v. Harper", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/Harper_201900128_PUB_ORDER.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900128", - "case_name_shorts": "Harper" - }, - { - "case_dates": "2020-06-25", - "case_names": "United States v. Ruedas", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/RUEDAS_202000050_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000050", - "case_name_shorts": "Ruedas" - }, - { - "case_dates": "2020-06-25", - "case_names": "United States v. Powers", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/POWERS_201900262_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900262", - "case_name_shorts": "Powers" - }, - { - "case_dates": "2020-06-25", - "case_names": "United States v. Krasovec", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/KRASOVEC_201900327_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900327", - "case_name_shorts": "Krasovec" - }, - { - "case_dates": "2020-06-25", - "case_names": "United States v. Gonzales", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/GONZALES_201900223_SL+.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900223", - "case_name_shorts": "" - }, - { - "case_dates": "2020-06-25", - "case_names": "United States v. Corralejo-Aguirre", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/CORRALEJO-AGUIRRE_202000015_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000015", - "case_name_shorts": "Corralejo-Aguirre" - }, - { - "case_dates": "2020-06-25", - "case_names": "United States v. Belk", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/BELK_201900294_SL+.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900294", - "case_name_shorts": "Belk" - }, - { - "case_dates": "2020-06-08", - "case_names": "United States v. Sanders", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/SANDERS_202000060_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000060", - "case_name_shorts": "Sanders" - }, - { - "case_dates": "2020-06-08", - "case_names": "United States v. Lewis", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/LEWIS_201900049_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900049", - "case_name_shorts": "Lewis" - }, - { - "case_dates": "2020-06-08", - "case_names": "United States v. Lessard", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/LESSARD_202000038_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000038", - "case_name_shorts": "Lessard" - }, - { - "case_dates": "2020-06-08", - "case_names": "United States v. Kidd", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/KIDD_202000009_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000009", - "case_name_shorts": "Kidd" - }, - { - "case_dates": "2020-06-08", - "case_names": "United States v. Kaszinski", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/KASZINSKI_201900326_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900326", - "case_name_shorts": "Kaszinski" - }, - { - "case_dates": "2020-06-08", - "case_names": "United States v. Hoffmann", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/HOFFMANN_201400067_Recon_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201400067", - "case_name_shorts": "Hoffmann" - }, - { - "case_dates": "2020-06-08", - "case_names": "United States v. Carmack", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/CARMACK_202000016_SL+.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000016", - "case_name_shorts": "Carmack" - }, - { - "case_dates": "2020-05-29", - "case_names": "United States v. Stromer", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/STROMER_201800320_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800320", - "case_name_shorts": "Stromer" - }, - { - "case_dates": "2020-05-29", - "case_names": "United States v. Phillips", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/PHILLIPS_201900082_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900082", - "case_name_shorts": "Phillips" - }, - { - "case_dates": "2020-05-29", - "case_names": "United States v. Chambers", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/CHAMBERS_201900339_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900339", - "case_name_shorts": "Chambers" - }, - { - "case_dates": "2020-05-28", - "case_names": "United States v. Nichol", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/NICHOL_201800286_RECON_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800286", - "case_name_shorts": "Nichol" - }, - { - "case_dates": "2020-05-28", - "case_names": "United States v. Hedgecock", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/HEDGECOCK_201800333_PUB_Admin Correction.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800333", - "case_name_shorts": "Hedgecock" - }, - { - "case_dates": "2020-05-28", - "case_names": "United States v. Andrade", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/ANDRADE_202000014_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000014", - "case_name_shorts": "Andrade" - }, - { - "case_dates": "2020-05-27", - "case_names": "United States v. Scott", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/SCOTT_201900003_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900003", - "case_name_shorts": "Scott" - }, - { - "case_dates": "2020-05-27", - "case_names": "United States v. Rivera", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/RIVERA_ 202000018_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000018", - "case_name_shorts": "Rivera" - }, - { - "case_dates": "2020-05-27", - "case_names": "United States v. Manlambus", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/MANLAMBUS_201900080_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900080", - "case_name_shorts": "Manlambus" - }, - { - "case_dates": "2020-05-27", - "case_names": "United States v. Gary", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/GARY_201800353_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800353", - "case_name_shorts": "Gary" - }, - { - "case_dates": "2020-05-27", - "case_names": "United States v. Franco", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/FRANCO_202000042_SL+.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000042", - "case_name_shorts": "Franco" - }, - { - "case_dates": "2020-05-21", - "case_names": "United States v. Zazueta", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/ZAZUETA_201900290_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900290", - "case_name_shorts": "Zazueta" - }, - { - "case_dates": "2020-05-21", - "case_names": "United States v. Van Dijk", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/VAN DIJK_201900288_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900288", - "case_name_shorts": "" - }, - { - "case_dates": "2020-05-21", - "case_names": "United States v. Torres", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/TORRES_202000033_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000033", - "case_name_shorts": "Torres" - }, - { - "case_dates": "2020-05-21", - "case_names": "United States v. Dukes", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/DUKES_202000039_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000039", - "case_name_shorts": "Dukes" - }, - { - "case_dates": "2020-05-13", - "case_names": "United States v. Lopez", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/LOPEZ_201800334_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800334", - "case_name_shorts": "Lopez" - }, - { - "case_dates": "2020-05-12", - "case_names": "United States v. Stogsdill", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/STOGSDILL_201900203_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900203", - "case_name_shorts": "Stogsdill" - }, - { - "case_dates": "2020-05-12", - "case_names": "United States v. Robinson", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/ROBINSON_201900301_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900301", - "case_name_shorts": "Robinson" - }, - { - "case_dates": "2020-05-12", - "case_names": "United States v. Greene", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/GREENE_202000003_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000003", - "case_name_shorts": "Greene" - }, - { - "case_dates": "2020-05-12", - "case_names": "United States v. Cabrera", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/CABRERA_201800327_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800327", - "case_name_shorts": "Cabrera" - }, - { - "case_dates": "2020-04-30", - "case_names": "United States v. Taylor", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/TAYLOR_201900242_62_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900242", - "case_name_shorts": "Taylor" - }, - { - "case_dates": "2020-04-30", - "case_names": "United States v. Russell", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/RUSSELL_202000017_SL+.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000017", - "case_name_shorts": "Russell" - }, - { - "case_dates": "2020-04-30", - "case_names": "United States v. Norris", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/NORRIS_201900289_ORDER.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900289", - "case_name_shorts": "Norris" - }, - { - "case_dates": "2020-04-30", - "case_names": "United States v. Mathews", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/MATHEWS_201900297_SL+.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900297", - "case_name_shorts": "Mathews" - }, - { - "case_dates": "2020-04-30", - "case_names": "United States v. Jacinto", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/JACINTO_201800325_PUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800325", - "case_name_shorts": "Jacinto" - }, - { - "case_dates": "2020-04-30", - "case_names": "United States v. Hopper", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/HOPPER_201900335_SL+.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900335", - "case_name_shorts": "Hopper" - }, - { - "case_dates": "2020-04-30", - "case_names": "United States v. Greig", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/GREIG_202000011_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000011", - "case_name_shorts": "Greig" - }, - { - "case_dates": "2020-04-30", - "case_names": "United States v. Faustino", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/FAUSTINO_201900195_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900195", - "case_name_shorts": "Faustino" - }, - { - "case_dates": "2020-04-30", - "case_names": "United States v. Denheart", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/DENHEART_201900336_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900336", - "case_name_shorts": "Denheart" - }, - { - "case_dates": "2020-04-29", - "case_names": "United States v. Brown", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/BROWN_201900050_EN-BANC_PUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900050", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2020-04-22", - "case_names": "United States v. Pobst", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/POBST_202000012_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202000012", - "case_name_shorts": "Pobst" - }, - { - "case_dates": "2020-04-22", - "case_names": "United States v. Davila-Narvaez", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/DAVILA-NARVAEZ_201900165_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900165", - "case_name_shorts": "Davila-Narvaez" - }, - { - "case_dates": "2020-04-21", - "case_names": "United States v. Schimes", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/SCHIMES_201900331_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900331", - "case_name_shorts": "Schimes" - }, - { - "case_dates": "2020-04-21", - "case_names": "United States v. Dawodu", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/DAWODU_201900321_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900321", - "case_name_shorts": "Dawodu" - }, - { - "case_dates": "2020-04-21", - "case_names": "United States v. Araujo", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/ARAUJO_201900102_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900102", - "case_name_shorts": "Araujo" - }, - { - "case_dates": "2020-04-17", - "case_names": "United States v. Reyna", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/REYNA_201900254_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900254", - "case_name_shorts": "Reyna" - }, - { - "case_dates": "2020-04-17", - "case_names": "United States v. Perkins", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/PERKINS_201900135_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900135", - "case_name_shorts": "Perkins" - }, - { - "case_dates": "2020-04-17", - "case_names": "United States v. Herrera", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/HERRERA_201800062_RECON_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800062", - "case_name_shorts": "Herrera" - }, - { - "case_dates": "2020-04-17", - "case_names": "United States v. Counterman", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/COUNTERMAN_201900231_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900231", - "case_name_shorts": "Counterman" - }, - { - "case_dates": "2020-04-17", - "case_names": "United States v. Boughton", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/BOUGHTON_201900338_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900338", - "case_name_shorts": "Boughton" - }, - { - "case_dates": "2020-04-16", - "case_names": "United States v. Robinson", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/ROBINSON_201800297_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800297", - "case_name_shorts": "Robinson" - }, - { - "case_dates": "2020-04-14", - "case_names": "United States v. Johnson", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/JOHNSON_201800249_EN-BANC_PUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800249", - "case_name_shorts": "" - }, - { - "case_dates": "2020-04-14", - "case_names": "United States v. Hodnett", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/HODNETT_201900285_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900285", - "case_name_shorts": "Hodnett" - }, - { - "case_dates": "2020-04-13", - "case_names": "United States v. Williams", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/WILLIAMS_201900287_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900287", - "case_name_shorts": "" - }, - { - "case_dates": "2020-04-13", - "case_names": "United States v. Sandoval", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/SANDOVAL_201800355_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800355", - "case_name_shorts": "Sandoval" - }, - { - "case_dates": "2020-04-09", - "case_names": "United States v. Sears", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/SEARS_201900313_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900313", - "case_name_shorts": "Sears" - }, - { - "case_dates": "2020-04-09", - "case_names": "United States v. Baker", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/BAKER_201900274_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900274", - "case_name_shorts": "Baker" - }, - { - "case_dates": "2020-04-08", - "case_names": "United States v. Huntington", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/HUNTINGTON_201900218_PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900218", - "case_name_shorts": "Huntington" - }, - { - "case_dates": "2020-04-08", - "case_names": "United States v. Allison", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/ALLISON 2 Remand for New Post-Trial.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800251", - "case_name_shorts": "Allison" - }, - { - "case_dates": "2020-03-31", - "case_names": "United States v. Nichol", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/NICHOL_201800286_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800286", - "case_name_shorts": "Nichol" - }, - { - "case_dates": "2020-03-19", - "case_names": "United States v. Young", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/YOUNG_201900312_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900312", - "case_name_shorts": "Young" - }, - { - "case_dates": "2020-03-19", - "case_names": "United States v. Willis", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/WILLIS_201900306_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900306", - "case_name_shorts": "Willis" - }, - { - "case_dates": "2020-03-19", - "case_names": "United States v. Williams", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/WILLIAMS_201800275_PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800275", - "case_name_shorts": "" - }, - { - "case_dates": "2020-03-19", - "case_names": "United States v. McCRAY", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/McCRAY_201900272_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900272", - "case_name_shorts": "McCRAY" - }, - { - "case_dates": "2020-03-19", - "case_names": "United States v. Libby", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/LIBBY_201900270_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900270", - "case_name_shorts": "Libby" - }, - { - "case_dates": "2020-03-19", - "case_names": "United States v. Lee", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/LEE_201900249_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900249", - "case_name_shorts": "" - }, - { - "case_dates": "2020-03-19", - "case_names": "United States v. Hurtado", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/HURTADO_201900191_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900191", - "case_name_shorts": "Hurtado" - }, - { - "case_dates": "2020-03-19", - "case_names": "United States v. Glosser", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/GLOSSER_201900293_Remand New Post-Trial.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900293", - "case_name_shorts": "Glosser" - }, - { - "case_dates": "2020-03-18", - "case_names": "United States v. Smetanka", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/SMETANKA_201900252_SL+EOJ.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900252", - "case_name_shorts": "Smetanka" - }, - { - "case_dates": "2020-03-18", - "case_names": "United States v. Quarters-Styles", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/QUARTERS-STYLES_201900208_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900208", - "case_name_shorts": "Quarters-Styles" - }, - { - "case_dates": "2020-03-18", - "case_names": "United States v. Ortiz", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/ORTIZ_201800375_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800375", - "case_name_shorts": "Ortiz" - }, - { - "case_dates": "2020-03-18", - "case_names": "United States v. Gitto", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/GITTO_201900217_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900217", - "case_name_shorts": "Gitto" - }, - { - "case_dates": "2020-03-16", - "case_names": "United States v. Crocker", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/CROCKER_201900226_PUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900226", - "case_name_shorts": "Crocker" - }, - { - "case_dates": "2020-03-11", - "case_names": "United States v. White", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/WHITE_201900221_62_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900221", - "case_name_shorts": "White" - }, - { - "case_dates": "2020-03-11", - "case_names": "United States v. Simpson", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/SIMPSON_201800268_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800268", - "case_name_shorts": "Simpson" - }, - { - "case_dates": "2020-03-11", - "case_names": "United States v. Quarterman", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/QUARTERMAN_201900207_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900207", - "case_name_shorts": "Quarterman" - }, - { - "case_dates": "2020-03-11", - "case_names": "United States v. Burge", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/BURGE_201900237_SL+EOJ.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900237", - "case_name_shorts": "Burge" - }, - { - "case_dates": "2020-03-11", - "case_names": "United States v. Boyd", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/BOYD_201900278_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900278", - "case_name_shorts": "Boyd" - }, - { - "case_dates": "2020-03-11", - "case_names": "United States v. Anderson", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/ANDERSON_201200499_Art-138_ORD.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201200499", - "case_name_shorts": "Anderson" - }, - { - "case_dates": "2020-03-05", - "case_names": "United States v. Guerrero-Doggett", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/GUERRERO-DOGGETT_201900168_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900168", - "case_name_shorts": "Guerrero-Doggett" - }, - { - "case_dates": "2020-03-04", - "case_names": "United States v. Hubbard", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/HUBBARD_201800278_PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800278", - "case_name_shorts": "Hubbard" - }, - { - "case_dates": "2020-03-03", - "case_names": "United States v. Farley", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/FARLEY_201900120_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900120", - "case_name_shorts": "Farley" - }, - { - "case_dates": "2020-03-03", - "case_names": "United States v. Davis", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/DAVIS_201800258_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800258", - "case_name_shorts": "Davis" - }, - { - "case_dates": "2020-02-24", - "case_names": "United States v. Delnevo", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/DELNEVO_201900017_PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900017", - "case_name_shorts": "Delnevo" - }, - { - "case_dates": "2020-02-13", - "case_names": "United States v. Tang", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/TANG_201800240_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800240", - "case_name_shorts": "Tang" - }, - { - "case_dates": "2020-02-11", - "case_names": "United States v. Mader", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/MADER_201800276_PUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800276", - "case_name_shorts": "Mader" - }, - { - "case_dates": "2020-02-11", - "case_names": "United States v. Addison", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/ADDISON_201800272_PUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800272", - "case_name_shorts": "Addison" - }, - { - "case_dates": "2020-02-06", - "case_names": "United States v. Fink", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/FINK_201800250_PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800250", - "case_name_shorts": "Fink" - }, - { - "case_dates": "2020-02-05", - "case_names": "United States v. Anderson", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/ANDERSON_201900227_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900227", - "case_name_shorts": "Anderson" - }, - { - "case_dates": "2020-01-29", - "case_names": "United States v. Langill", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/LANGILL_201900206_SL+EOJ.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900206", - "case_name_shorts": "Langill" - }, - { - "case_dates": "2020-01-29", - "case_names": "United States v. Crabb", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/CRABB-201900192_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900192", - "case_name_shorts": "Crabb" - }, - { - "case_dates": "2020-01-24", - "case_names": "United States v. Pittman", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/PITTMAN_201800211_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800211", - "case_name_shorts": "Pittman" - }, - { - "case_dates": "2020-01-24", - "case_names": "United States v. Begani", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/BEGANI_201800082_EN-BANC_PUB_Corrected 25 Feb 2020.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800082", - "case_name_shorts": "Begani" - }, - { - "case_dates": "2020-01-17", - "case_names": "United States v. Lohr", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/LOHR_201800199_PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800199", - "case_name_shorts": "Lohr" - }, - { - "case_dates": "2020-01-17", - "case_names": "United States v. Jordan", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/JORDAN_201800197_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800197", - "case_name_shorts": "Jordan" - }, - { - "case_dates": "2020-01-15", - "case_names": "United States v. Lytle", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/LYTLE_201800209_PCE.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800209", - "case_name_shorts": "Lytle" - }, - { - "case_dates": "2020-01-13", - "case_names": "United States v. Masa", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/MASA_201800314_UNPUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800314", - "case_name_shorts": "Masa" - }, - { - "case_dates": "2020-01-10", - "case_names": "United States v. Mahmoud", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/MAHMOUD_201900189_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900189", - "case_name_shorts": "Mahmoud" - }, - { - "case_dates": "2020-01-10", - "case_names": "United States v. Ayalacruz", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/AYALACRUZ_201800193_PUB.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201800193", - "case_name_shorts": "Ayalacruz" - }, - { - "case_dates": "2020-01-09", - "case_names": "United States v. Joshua", - "download_urls": "tests/examples/opinions/united_states/documents/archive/2020/JOSHUA_201900222_SL.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201900222", - "case_name_shorts": "Joshua" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nmcca_example_2.html b/tests/examples/opinions/united_states/nmcca_example_2.html deleted file mode 100644 index faabaff96..000000000 --- a/tests/examples/opinions/united_states/nmcca_example_2.html +++ /dev/null @@ -1,972 +0,0 @@ - - - - - - - - -NMCCA Opinion Archive 2020 | U.S. Navy JAG Corps - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    - -
    -

    | NMCCA Decisions (Court Opinions)

    - -

    This section contains the decisions of the Court based upon their chronological release date. Published opinions are binding in the Naval Services at the trial level and at this Court. Unpublished opinions may be cited as persuasive authority.

    - -

    Browse Archives

    -
      -
    1. 2020 Archive
    2. -
    3. 2019 Archive
    4. -
    5. 2018 Archive
    6. -
    7. 2017 Archive
    8. -
    9. 2016 Archive
    10. -
    -
      -
    1. 2015 Archive
    2. -
    3. 2014 Archive
    4. -
    5. 2013 Archive
    6. -
    7. 2012 Archive
    8. -
    9. 2011 Archive
    10. -
    -
      -
    1. 2010 Archive
    2. -
    3. 2009 Archive
    4. -
    5. 2008 Archive
    6. -
    7. 2007 Archive
    8. -
    9. 2006 Archive
    10. -
    - -
      -
    1. 2005 Archive
    2. -
    3. 2004 Archive
    4. -
    -

    2020 Opinion Archive

    -

    Directions:

    -

    To aid your search for information within the archive, the table below has a few key features:

      -
    • Table Sort: Click on a column heading to sort the table by that column.
    • -
    • Highlight: Click on any row to highlight the information.
    • -
    • Search: You can search any column for specific information. Choose a column name in the drop down box, enter your query and click the Search button. You can clear the search results using the Rest button.
    • -
    - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    PartiesDocket #DateFileType
    U.S. v. ALLEN20190018007/10/2020DownloadAuthored
    U.S. v. KELLOGG20190025307/08/2020DownloadSummary Disposition
    U.S. v. OLIVARES20180012507/08/2020DownloadAuthored
    U.S. v. FLORES-RIVAS20190005906/30/2020DownloadPublished
    U.S. v. PEPPER20190004406/29/2020DownloadPer Curiam
    U.S. v. CLARK20200001006/29/2020DownloadSummary Disposition
    U.S. v. TREVINO20190030906/29/2020DownloadSummary Disposition
    U.S. v. HARPER20190012806/26/2020DownloadOrder
    U.S. v. CORRALEJO-AGUIRRE20200001506/25/2020DownloadSummary Disposition
    U.S. v. GONZALES20190022306/25/2020DownloadSummary Disposition
    U.S. v. KRASOVEC20190032706/25/2020DownloadSummary Disposition
    U.S. v. POWERS20190026206/25/2020DownloadSummary Disposition
    U.S. v. RUEDAS20200005006/25/2020DownloadSummary Disposition
    U.S. v. BELK20190029406/25/2020DownloadSummary Disposition
    U.S. v. LEWIS20190004906/08/2020DownloadAuthored
    U.S. v. CARMACK20200001606/08/2020DownloadSummary Disposition
    U.S. v. HOFFMANN20140006706/08/2020DownloadAuthored
    U.S. v. KASZINSKI20190032606/08/2020DownloadSummary Disposition
    U.S. v. KIDD202000009006/08/2020DownloadSummary Disposition
    U.S. v. LESSARD20200003806/08/2020DownloadSummary Disposition
    U.S. v. SANDERS20200006006/08/2020DownloadSummary Disposition
    U.S. v. CHAMBERS20190033905/29/2020DownloadSummary Disposition
    U.S. v. STROMER20180032005/29/2020DownloadAuthored
    U.S. v. PHILLIPS20190008205/29/2020DownloadAuthored
    U.S. v. HEDGECOCK20180033305/28/2020DownloadPublished
    U.S. v. NICHOL20180028605/28/2020DownloadAuthored
    U.S. v. ANDRADE20200001405/28/2020DownloadSummary Disposition
    U.S. v. FRANCO20200004205/27/2020DownloadSummary Disposition
    U.S. v. RIVERA20200001805/27/2020DownloadSummary Disposition
    U.S. v. SCOTT20190000305/27/2020DownloadAuthored
    U.S. v. MANLAMBUS20190008005/27/2020DownloadAuthored
    U.S. v. GARY20180035305/27/2020DownloadAuthored
    U.S. v. DUKES20200003905/21/2020DownloadSummary Disposition
    U.S. v. TORRES20200003305/21/2020DownloadSummary Disposition
    U.S. v. VAN DIJK20190028805/21/2020DownloadSummary Disposition
    U.S. v. ZAZUETA20190029005/21/2020DownloadSummary Disposition
    U.S. v. LOPEZ20180033405/13/2020DownloadAuthored
    U.S. v. GREENE20200000305/12/2020DownloadSummary Disposition
    U.S. v. ROBINSON20190030105/12/2020DownloadSummary Disposition
    U.S. v. CABRERA20180032705/12/2020DownloadAuthored
    U.S. v. STOGSDILL20190020305/12/2020DownloadAuthored
    U.S. v. MATHEWS20190029704/30/2020DownloadSummary Disposition
    U.S. v. HOPPER20190033504/30/2020DownloadSummary Disposition
    U.S. v. FAUSTINO20190019504/30/2020DownloadSummary Disposition
    U.S. v. GREIG20200001104/30/2020DownloadSummary Disposition
    U.S. v. NORRIS20190028904/30/2020DownloadORDER
    U.S. v. DENHEART20190033604/30/2020DownloadSummary Disposition
    U.S. v. JACINTO20180032504/30/2020DownloadPublished
    U.S. v. RUSSELL20200001704/30/2020DownloadSummary Disposition
    U.S. v. TAYLOR20190024204/30/2020DownloadAuthored
    U.S. v. BROWN20190005004/29/2020DownloadPublished
    U.S. v. POBST20200001204/22/2020DownloadSummary Disposition
    U.S. v. DAVILA-NARVAEZ20190016504/22/2020DownloadSummary Disposition
    U.S. v. ARAUJO20190010204/21/2020DownloadAuthored
    U.S. v. SCHIMES20190033104/21/2020DownloadSummary Disposition
    U.S. v. DAWODU20190032104/21/2020DownloadSummary Disposition
    U.S. v. HERRERA20180006204/17/2020DownloadAuthored
    U.S. v. PERKINS20190013504/17/2020DownloadAuthored
    U.S. v. REYNA20190025404/17/2020DownloadSummary Disposition
    U.S. v. BOUGHTON20190033804/17/2020DownloadSummary Disposition
    U.S. v. COUNTERMAN20190023104/17/2020DownloadSummary Disposition
    U.S. v. ROBINSON20180029704/16/2020DownloadAuthored
    U.S. v. JOHNSON20180024904/14/2020DownloadPublished
    U.S. v. HODNETT20190028504/14/2020DownloadSummary Disposition
    U.S. v. SANDOVAL20180035504/13/2020DownloadAuthored
    U.S. v. WILLIAMS20190028704/13/2020DownloadSummary Disposition
    U.S. v. SEARS20190031304/09/2020DownloadSummary Disposition
    U.S. v. BAKER20190027404/09/2020DownloadSummary Disposition
    U.S. v. ALLISON20180025104/08/2020DownloadOrder
    U.S. v. HUNTINGTON20190021804/08/2020DownloadPer Curiam
    U.S. v. NICHOL20180028603/31/2020DownloadAuthored
    U.S. v. HURTADO20190019103/19/2020DownloadSummary Disposition
    U.S. v. LIBBY20190027003/19/2020DownloadSummary Disposition
    U.S. v. McCRAY20190027203/19/2020DownloadSummary Disposition
    U.S. v. YOUNG20190031203/19/2020DownloadSummary Disposition
    U.S. v. LEE20190024903/19/2020DownloadSummary Disposition
    U.S. v. WILLIS20190030603/19/2020DownloadSummary Disposition
    U.S. v. GLOSSER20190029303/19/2020DownloadOrder
    U.S. v. WILLIAMS20180027503/19/2020DownloadPer Curiam
    U.S. v. GITTO20190021703/18/2020DownloadAuthored
    U.S. v. ORTIZ20180037503/18/2020DownloadAuthored
    U.S. v. QUARTERS-STYLES20190020803/18/2020DownloadSummary Disposition
    U.S. v. SMETANKA20190025203/18/2020DownloadSummary Disposition
    U.S. v. CROCKER20190022603/16/2020DownloadPublished
    U.S. v. SIMPSON20180026803/11/2020DownloadAuthored
    U.S. v. BOYD20190027803/11/2020DownloadSummary Disposition
    U.S. v. BURGE20190023703/11/2020DownloadSummary Disposition
    U.S. v. QUARTERMAN20190020703/11/2020DownloadSummary Disposition
    U.S. v. WHITE20190022103/11/2020DownloadAuthored
    U.S. v. ANDERSON20120049903/11/2020DownloadOrder
    U.S. v. GUERRERO-DOGGETT20190016803/05/2020DownloadSummary Disposition
    U.S. v. HUBBARD20180027803/04/2020DownloadPer Curiam
    U.S. v. DAVIS20180025803/03/2020DownloadAuthored
    U.S. v. FARLEY20190012003/03/2020DownloadAuthored
    U.S. v. DELNEVO20190001702/24/2020DownloadPer Curiam
    U.S. v. TANG20180024002/13/2020DownloadAuthored
    U.S. v. MADER20180027602/11/2020DownloadPublished
    U.S. v. ADDISON20180027202/11/2020DownloadPublished
    U.S. v. FINK20180025002/06/2020DownloadPer Curiam
    U.S. v. ANDERSON20190022702/05/2020DownloadSummary Disposition
    U.S. v. CRABB20190019201/29/2020DownloadSummary Disposition
    U.S. v. LANGILL20190020601/29/2020DownloadSummary Disposition
    U.S. v. BEGANI20180008201/24/2020DownloadPublished
    U.S. v. PITTMAN20180021101/24/2020DownloadAuthored
    U.S. v. JORDAN20180019701/17/2020DownloadAuthored
    U.S. v. LOHR20180019901/17/2020DownloadPer Curiam
    U.S. v. LYTLE20180020901/15/2020DownloadPer Curiam
    U.S. v. MASA20180031401/13/2020DownloadAuthored
    U.S. v. AYALACRUZ20180019301/10/2020DownloadPublished
    U.S. v. MAHMOUD20190018901/10/2020DownloadSummary Disposition
    U.S. v. JOSHUA20190022201/09/2020DownloadSummary Disposition
    -
    -
    -

    Navigate the NMCCA

    - - -

    If the information you are looking for is not available here, you may submit a FOIA Request.

    - -

    Contact NMCCA HQ

    -
    -
    Mailing Address:
    -
    Navy-Marine Corps Court of Criminal Appeals (Code 51)
    -
    United States Navy
    -
    1254 Charles Morris St., SE
    -
    Suite 320
    -
    Washington Navy Yard, DC 20374-5124
    -
    Phone Numbers:
    -
    Comm: (202) 685-7700
    -
    DSN: 325-7700
    -
    Fax: (202) 685-7690
    -
    Hours:
    -
    0730 – 1630
    -
    Monday – Friday
    -
    -
    -
    -
    - - - - - - - diff --git a/tests/examples/opinions/united_states/nmctapp_example.compare.json b/tests/examples/opinions/united_states/nmctapp_example.compare.json index f665f4a61..95bc25f43 100644 --- a/tests/examples/opinions/united_states/nmctapp_example.compare.json +++ b/tests/examples/opinions/united_states/nmctapp_example.compare.json @@ -1,112 +1,46 @@ [ { - "case_dates": "2019-03-20", - "case_names": "State v. Telles", - "download_urls": "/nmos/nmca/en/400321/1/document.do", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "", - "case_name_shorts": "Telles" - }, - { - "case_dates": "2019-03-06", - "case_names": "State v. Benally", - "download_urls": "/nmos/nmca/en/400347/1/document.do", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "", - "case_name_shorts": "Benally" - }, - { - "case_dates": "2019-02-27", - "case_names": "State v. Hildreth", - "download_urls": "/nmos/nmca/en/400354/1/document.do", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "", - "case_name_shorts": "Hildreth" - }, - { - "case_dates": "2019-02-27", - "case_names": "Franklin v. State of N.M.", - "download_urls": "/nmos/nmca/en/397238/1/document.do", - "precedential_statuses": "Unpublished", + "case_dates": "2024-01-17", + "case_names": "State v. Sanders", + "download_urls": "https://nmonesource.com/nmos/nmca/en/522439/1/document.do", + "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "", - "case_name_shorts": "Franklin" - }, - { - "case_dates": "2019-02-26", - "case_names": "Wells Fargo v. Ramirez", - "download_urls": "/nmos/nmca/en/397207/1/document.do", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "", - "case_name_shorts": "Ramirez" - }, - { - "case_dates": "2019-02-26", - "case_names": "State v. Manzanares", - "download_urls": "/nmos/nmca/en/397198/1/document.do", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "", - "case_name_shorts": "Manzanares" - }, - { - "case_dates": "2019-02-26", - "case_names": "Lucero v. Los Alamos County", - "download_urls": "/nmos/nmca/en/397257/1/document.do", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "", - "case_name_shorts": "Lucero" + "citations": "2024-NMCA-030", + "case_name_shorts": "Sanders" }, { - "case_dates": "2019-02-25", - "case_names": "State v. Herman", - "download_urls": "/nmos/nmca/en/397231/1/document.do", + "case_dates": "2024-01-17", + "case_names": "Estate of Works v. Fallick", + "download_urls": "https://nmonesource.com/nmos/nmca/en/522319/1/document.do", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", "citations": "", - "case_name_shorts": "Herman" + "case_name_shorts": "Fallick" }, { - "case_dates": "2019-02-25", - "case_names": "Mills v. Bancroft & Son's Trucking", - "download_urls": "/nmos/nmca/en/397226/1/document.do", + "case_dates": "2024-01-17", + "case_names": "Citimortgage, Inc. v. Garfield", + "download_urls": "https://nmonesource.com/nmos/nmca/en/522318/1/document.do", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", "citations": "", - "case_name_shorts": "Mills" + "case_name_shorts": "Garfield" }, { - "case_dates": "2019-02-21", - "case_names": "City of Santa Fe v. Villareal-Ramos", - "download_urls": "/nmos/nmca/en/397187/1/document.do", + "case_dates": "2024-01-16", + "case_names": "Butkus v. Pub. Emp. Ret. Ass'n", + "download_urls": "https://nmonesource.com/nmos/nmca/en/522317/1/document.do", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", "citations": "", - "case_name_shorts": "Villareal-Ramos" + "case_name_shorts": "Butkus" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nmctapp_example.html b/tests/examples/opinions/united_states/nmctapp_example.html index 699b631a3..c5565f072 100644 --- a/tests/examples/opinions/united_states/nmctapp_example.html +++ b/tests/examples/opinions/united_states/nmctapp_example.html @@ -1,873 +1,998 @@ - - + + + + + - Navigation by Date: 2019 - New Mexico Compilation Commission + <title> Advanced Search - NMOneSource.com - - - - - - - - - - - - - - - - - - - - - - + + + -
    -
    +
    - -
    -

    - - Court of Appeals of New Mexico -

    - - - -
    -
    - - - -
    - - -
    -
    -
    -
    - -
    -
      -
    • 1
    • -
    • 2
    • -
    • 3
    • -
    • 4
    • -
    • >
    • -
    -
    - -

    94 result(s)

    -
    -
      -
    • -
      - 1. -
      - -
    • -
    • -
      - 2. -
      - -
    • -
    • -
      - 3. -
      - -
    • -
    • -
      - 4. -
      - -
    • -
    • -
      - 5. -
      - -
    • -
    • -
      - 6. -
      - -
    • -
    • -
      - 7. + Help
      - -
    • -
    • -
      - 8. -
      - -
    • -
    • -
      - 9. -
      - -
    • -
    • -
      - 10. -
      - -
    • -
    • -
      - 11. -
      - -
    • -
    • -
      - 12. -
      - -
    • -
    • -
      - 13. -
      -
    - - 02/21/2019 - - -
    -
    -
    -
    - -
    -
    -
    - -
  • -
    - 14. -
    - -
  • -
  • -
    - 15. -
    -
  • -
  • -
    - 16. -
    -
  • -
  • -
    - 17. -
    -
  • -
  • -
    - 18. -
    -
  • - -
  • -
    - 19.
    - -
  • -
  • -
    - 20. -
    - -
  • -
  • -
    - 21. +
    +
    + Sort by: + Relevance + Date
    -
  • -
  • +

    4 result(s)

    +
    +
    +
    -
    + + +
  • +
    +
    -
  • +
  • - 23. + 2.
    -
    - -
    -
  • -
    + + +
    +
    +
    -
  • +
  • - 24. + 3.
    -
    - -
    -
  • -
    + + +
    +
    +
    + cited by 1 documents +
    +
    -
  • +
  • - 25. + 4.
    -
    - -
    -
  • -
    + + +
    +
    +
    - -
    -
      -
    • 1
    • -
    • 2
    • -
    • 3
    • -
    • 4
    • -
    • >
    • -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + -
    + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ny_example.compare.json b/tests/examples/opinions/united_states/ny_example.compare.json index 40cdd5df1..fe4999536 100644 --- a/tests/examples/opinions/united_states/ny_example.compare.json +++ b/tests/examples/opinions/united_states/ny_example.compare.json @@ -1,62 +1,240 @@ [ { - "case_dates": "2016-02-11", - "case_names": "Yousufu Sangaray v. West River Associates", - "download_urls": "tests/examples/opinions/united_states/7opn16-Decision.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-07", + "case_names": "People v. King", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97547.htm", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "7", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97547(U)", + "case_name_shorts": "King", + "authors": "Cannataro", + "per_curiam": false }, { - "case_dates": "2016-02-11", - "case_names": "The People v. Lawrence Watson", - "download_urls": "tests/examples/opinions/united_states/19opn16-Decision.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-07", + "case_names": "People v. Kennedy", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97545.htm", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97545(U)", + "case_name_shorts": "", + "authors": "Troutman", + "per_curiam": false }, { - "case_dates": "2016-02-11", - "case_names": "The People v. Freddie Thompson", - "download_urls": "tests/examples/opinions/united_states/16opn16-Decision.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-06", + "case_names": "People v. Robinson", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97578.htm", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97578(U)", + "case_name_shorts": "Robinson", + "authors": "Troutman", + "per_curiam": false }, { - "case_dates": "2016-02-11", - "case_names": "The Matter of Exeter Building Corp. v. Town of Newburgh", - "download_urls": "tests/examples/opinions/united_states/20mem16-Decision.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-06", + "case_names": "People v. Naim", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97568.htm", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97568(U)", + "case_name_shorts": "Naim", + "authors": "Rivera", + "per_curiam": false }, { - "case_dates": "2016-02-11", - "case_names": "Selective Insurance Company of America v. County of Rensselaer", - "download_urls": "tests/examples/opinions/united_states/4opn16-Decision.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-06", + "case_names": "People v. Milburn", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97562.htm", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "4", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97562(U)", + "case_name_shorts": "Milburn", + "authors": "Rivera", + "per_curiam": false }, { - "case_dates": "2016-02-11", - "case_names": "Sean R. v. BMW of North America", - "download_urls": "tests/examples/opinions/united_states/3opn16-Decision.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-06", + "case_names": "People v. Cole-Turner", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97504.htm", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "3", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97504(U)", + "case_name_shorts": "Cole-Turner", + "authors": "Troutman", + "per_curiam": false + }, + { + "case_dates": "2024-06-06", + "case_names": "People v. Cheatham", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97501.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97501(U)", + "case_name_shorts": "Cheatham", + "authors": "Troutman", + "per_curiam": false + }, + { + "case_dates": "2024-06-06", + "case_names": "People v. Bacon", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97488.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97488(U)", + "case_name_shorts": "Bacon", + "authors": "Rivera", + "per_curiam": false + }, + { + "case_dates": "2024-06-04", + "case_names": "People v. Morales", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97564.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97564(U)", + "case_name_shorts": "Morales", + "authors": "Garcia", + "per_curiam": false + }, + { + "case_dates": "2024-06-04", + "case_names": "People v. McLeod", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97558.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97558(U)", + "case_name_shorts": "McLeod", + "authors": "Garcia", + "per_curiam": false + }, + { + "case_dates": "2024-06-04", + "case_names": "People v. Johnson", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97541.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97541(U)", + "case_name_shorts": "", + "authors": "Singas", + "per_curiam": false + }, + { + "case_dates": "2024-06-04", + "case_names": "People v. Gunn", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97527.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97527(U)", + "case_name_shorts": "Gunn", + "authors": "Garcia", + "per_curiam": false + }, + { + "case_dates": "2024-06-04", + "case_names": "People v. Galvez-Marin", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97520.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97520(U)", + "case_name_shorts": "Galvez-Marin", + "authors": "Singas", + "per_curiam": false + }, + { + "case_dates": "2024-06-03", + "case_names": "People v. Sapp", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97582.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97582(U)", + "case_name_shorts": "Sapp", + "authors": "Halligan", + "per_curiam": false + }, + { + "case_dates": "2024-06-03", + "case_names": "People v. Rideout", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97577.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97577(U)", + "case_name_shorts": "Rideout", + "authors": "Halligan", + "per_curiam": false + }, + { + "case_dates": "2024-06-03", + "case_names": "People v. Bryant", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97497.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97497(U)", + "case_name_shorts": "Bryant", + "authors": "Halligan", + "per_curiam": false + }, + { + "case_dates": "2024-06-03", + "case_names": "People v. Amado", + "download_urls": "http://www.nycourts.gov/reporter/motions/2024/2024_97484.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 97484(U)", + "case_name_shorts": "Amado", + "authors": "Halligan", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ny_example.html b/tests/examples/opinions/united_states/ny_example.html index ee8c3eb77..53491818f 100644 --- a/tests/examples/opinions/united_states/ny_example.html +++ b/tests/examples/opinions/united_states/ny_example.html @@ -1,169 +1,229 @@ - - - + - - - - - - - - + - - - - - + + + +
    + + + @@ -388,667 +407,646 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + + 4/23/2024 + + 4/23/2024 + + 4/23/2024 + + 4/22/2024 + + 4/19/2024 + + 4/18/2024 + + 4/18/2024 + + 4/17/2024 + + 4/17/2024 + + 4/17/2024 + + 4/16/2024 + + 4/16/2024 + + 4/16/2024 + + 4/16/2024 + + 4/15/2024 + + 4/15/2024 + + 4/15/2024 + + 4/12/2024 + + 4/12/2024 + + 4/12/2024 + + 4/12/2024 + + 4/11/2024 + + 4/11/2024 + + 4/10/2024 + + 4/10/2024 + + 4/10/2024 + + 4/9/2024 + + 4/9/2024 + + 4/8/2024 + + 4/5/2024 + + 4/4/2024 + + 4/19/2024 + + 4/4/2024 + + 4/3/2024 + + 4/3/2024 + + 4/2/2024 + + 4/2/2024 + + 4/1/2024 + + 4/1/2024 + + 3/28/2024 + + 3/28/2024 + + 3/28/2024 + + 3/27/2024 + + 3/27/2024 + + 3/27/2024 + + 3/27/2024 + + 3/26/2024 + + 3/26/2024 + + 3/26/2024 + + 3/26/2024 + +

    + + + + + + +
     Slip Decisions Search Results
    + + +
    + + + + + + + + + + + + + -
    +
    Search Criteria
        Decision Start Date : + 06/01/2024
        Decision End Date : + 06/07/2024
        Court : + Court of Appeals
    +
    + + + + + + +
    + Total number of records found: 17 +       


    +
    + + - -
    - -

    - - -

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Party NameDecision DateCourt   Official Citation   Slip Number   JudgeOpn/Mot
    People v Amado06/03/2024Court of Appeals2024 NYSlipOp 97484(U)Halligan, J.Motion
    People v Bacon06/06/2024Court of Appeals2024 NYSlipOp 97488(U)Rivera, J.Motion
    People v Bryant06/03/2024Court of Appeals2024 NYSlipOp 97497(U)Halligan, J.Motion
    People v Cheatham06/06/2024Court of Appeals2024 NYSlipOp 97501(U)Troutman, J.Motion
    People v Cole-Turner06/06/2024Court of Appeals2024 NYSlipOp 97504(U)Troutman, J.Motion
    People v Galvez-Marin06/04/2024Court of Appeals2024 NYSlipOp 97520(U)Singas, J.Motion
    People v Gunn06/04/2024Court of Appeals2024 NYSlipOp 97527(U)Garcia, J.Motion
    People v Johnson06/04/2024Court of Appeals2024 NYSlipOp 97541(U)Singas, J.Motion
    People v Kennedy06/07/2024Court of Appeals2024 NYSlipOp 97545(U)Troutman, J.Motion
    People v King06/07/2024Court of Appeals2024 NYSlipOp 97547(U)Cannataro, J.Motion
    People v McLeod06/04/2024Court of Appeals2024 NYSlipOp 97558(U)Garcia, J.Motion
    People v Milburn06/06/2024Court of Appeals2024 NYSlipOp 97562(U)Rivera, J.Motion
    People v Morales06/04/2024Court of Appeals2024 NYSlipOp 97564(U)Garcia, J.Motion
    People v Naim06/06/2024Court of Appeals2024 NYSlipOp 97568(U)Rivera, J.Motion
    People v Rideout06/03/2024Court of Appeals2024 NYSlipOp 97577(U)Halligan, J.Motion
    People v Robinson06/06/2024Court of Appeals2024 NYSlipOp 97578(U)Troutman, J.Motion
    People v Sapp06/03/2024Court of Appeals2024 NYSlipOp 97582(U)Halligan, J.Motion
    +
    +
    -Advanced Decision Search - -

     

    -

     

    -
    -

     

    -
    -
    Home Court Decisions - February 2016 Decisions - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    February 11, 2016  
    Decision ListPDFEntries for Cases and Motions
    No. 20PDFThe Matter of Exeter Building Corp. v. Town of Newburgh
    No. 19PDFThe People v. Lawrence Watson
    No. 16 PDFThe People v. Freddie Thompson
    No. 7PDFYousufu Sangaray v. West River Associates
    No. 4PDFSelective Insurance Company of America v. County of Rensselaer
    No. 3PDFSean R. v. BMW of North America
    -

     

    -
    -
    -

     

    - \ No newline at end of file + diff --git a/tests/examples/opinions/united_states/ny_example_2.compare.json b/tests/examples/opinions/united_states/ny_example_2.compare.json deleted file mode 100644 index 8f77db673..000000000 --- a/tests/examples/opinions/united_states/ny_example_2.compare.json +++ /dev/null @@ -1,182 +0,0 @@ -[ - { - "case_dates": "2015-12-17", - "case_names": "The People v. Victor Soto", - "download_urls": "tests/examples/opinions/united_states/206opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "206", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-17", - "case_names": "The People v. Todd Holley", - "download_urls": "tests/examples/opinions/united_states/196opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "196", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-17", - "case_names": "The People v. Natanael Sagastumeal Varenga", - "download_urls": "tests/examples/opinions/united_states/193opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "193", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-17", - "case_names": "The People v. Mark Jurgins", - "download_urls": "tests/examples/opinions/united_states/178opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "178", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-17", - "case_names": "The People v. Kaity Marshall", - "download_urls": "tests/examples/opinions/united_states/195opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "195", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-17", - "case_names": "The People v. Anthony V. Pavone", - "download_urls": "tests/examples/opinions/united_states/199opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "199", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-16", - "case_names": "The People v. Luis Ortiz", - "download_urls": "tests/examples/opinions/united_states/201opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "201", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-16", - "case_names": "The People v. Luciano Rosario, The People v. Marcos Llibre", - "download_urls": "tests/examples/opinions/united_states/191-192opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "191 and 192", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-16", - "case_names": "The Matter of Ricardo Suarez v. Melissa Williams", - "download_urls": "tests/examples/opinions/united_states/198opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "198", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-16", - "case_names": "Rita Cusimano v. Andrew V. Schnurr Bernard V. Strianese", - "download_urls": "tests/examples/opinions/united_states/200opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "200", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-16", - "case_names": "Edwin Davis v. South Nassau Communities", - "download_urls": "tests/examples/opinions/united_states/163opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "163", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-15", - "case_names": "The People v. Karl Chu-Joi", - "download_urls": "tests/examples/opinions/united_states/SSM23mem15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "212 SSM 23", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-15", - "case_names": "The People v. Dennis P. Smalls", - "download_urls": "tests/examples/opinions/united_states/197mem15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "197", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-15", - "case_names": "The Ministers and Missionaries Benefit Board v. Leon Snow v. The Estate of Clark Flesher", - "download_urls": "tests/examples/opinions/united_states/131opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "131", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-15", - "case_names": "Steven C. Ridge v. Alice Gold", - "download_urls": "tests/examples/opinions/united_states/SSM28ent15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "213 SSM 28", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-15", - "case_names": "Pegasus Aviation I, Inc. v. Varig Logistica S.A.", - "download_urls": "tests/examples/opinions/united_states/153opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "153", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-15", - "case_names": "Matter of RAM I LLC v. New York State Division of Housing and Community Renewal", - "download_urls": "tests/examples/opinions/united_states/202mem15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "202", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-15", - "case_names": "Doctor Fred L. Pasternack v. Laboratory Corporation of America Holdings", - "download_urls": "tests/examples/opinions/united_states/214ent15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "214", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ny_example_2.html b/tests/examples/opinions/united_states/ny_example_2.html deleted file mode 100644 index 973f9bf74..000000000 --- a/tests/examples/opinions/united_states/ny_example_2.html +++ /dev/null @@ -1,434 +0,0 @@ - - - - - - - - - - - - -December 2015 Decisions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    Court of Appeals Title - - -
    - - - - - -
    - - - - - - - - -
    -
    -
    - - - - - - -
      -  
    -
    - - - - - - - - - -
    -
    - -
    - Advanced Decision Search
    Spacer
    Spacer
    Spacer
    Spacer
    Spacer
    Spacer
    Spacer
    - - - - - - - - - - - -

    Home Court Decisions December 2015 Decisions

    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    December 17, 2015
    Decision ListPDFEntries for Cases and Motions
    No. 206 PDF The People v. Victor Soto
    No. 199 PDFThe People v. Anthony V. Pavone
    No. 196 PDFThe People v. Todd Holley
    No. 195 PDFThe People v. Kaity Marshall
    No. 193 PDFThe People v. Natanael Sagastumeal Varenga
    No. 178 PDFThe People v. Mark Jurgins
     
    December 16, 2015
    Decision ListPDFEntries for Cases and Motions
    No. 201PDFThe People v. Luis Ortiz
    No. 200PDFRita Cusimano v. Andrew V. Schnurr Bernard V. Strianese
    No. 198PDF

    The Matter of Ricardo Suarez v. Melissa Williams

    No. 191 and 192PDFThe People v. Luciano Rosario, The People v. Marcos Llibre
    No. 163PDFEdwin Davis v. South Nassau Communities
     
    December 15, 2015
    Decision ListPDFEntries for Cases and Motions
    No. 214 PDFDoctor Fred L. Pasternack v. Laboratory Corporation of America Holdings
    No. 213 SSM 28PDFSteven C. Ridge v. Alice Gold
    No. 212 SSM 23PDFThe People v. Karl Chu-Joi
    No. 202PDFMatter of RAM I LLC v. New York State Division of Housing and Community Renewal
    No. 197PDFThe People v. Dennis P. Smalls
    No. 153PDFPegasus Aviation I, Inc. v. Varig Logistica S.A.
    No. 131PDFThe Ministers and Missionaries Benefit Board v. Leon Snow v. The Estate of Clark Flesher
     

    -
     
    - - diff --git a/tests/examples/opinions/united_states/ny_example_3.compare.json b/tests/examples/opinions/united_states/ny_example_3.compare.json deleted file mode 100644 index 4a5fcfc00..000000000 --- a/tests/examples/opinions/united_states/ny_example_3.compare.json +++ /dev/null @@ -1,22 +0,0 @@ -[ - { - "case_dates": "2016-01-14", - "case_names": "The People v. Scott Barden", - "download_urls": "tests/examples/opinions/united_states/6ent16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "6", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-14", - "case_names": "The Matter of Rokhaya Cisse v. Christopher Graham", - "download_urls": "tests/examples/opinions/united_states/9ent16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "9", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ny_example_3.html b/tests/examples/opinions/united_states/ny_example_3.html deleted file mode 100644 index d6bb18dca..000000000 --- a/tests/examples/opinions/united_states/ny_example_3.html +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - - - - - - - - - - - - - - -
    - - -
    - -

     

    -

     

    -
    -

     

    -
    -
    Home Court Decisions - January 2016 Decisions - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    January 14, 2016  
    Decision ListPDFEntries for Cases and Motions
    No. 9PDFThe Matter of Rokhaya Cisse v. Christopher Graham
    No. 6PDFThe People v. Scott Barden
       
    January 12, 2016  
    Decision ListPDFEntries for Cases and Motions
       
    January 7, 2016  
    Decision ListPDFEntries for Cases and Motions
       
    January 5, 2016  
    Decision ListPDFEntries for Cases and Motions
       
       
       
       
    -

     

    -
    -
    -

     

    - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ny_example_4.compare.json b/tests/examples/opinions/united_states/ny_example_4.compare.json deleted file mode 100644 index a6df79b3b..000000000 --- a/tests/examples/opinions/united_states/ny_example_4.compare.json +++ /dev/null @@ -1,252 +0,0 @@ -[ - { - "case_dates": "2015-11-24", - "case_names": "The People v. Stephen Pellegrino", - "download_urls": "tests/examples/opinions/united_states/SSM26mem15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "209 SSM 26", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-24", - "case_names": "The People v. Mactar Sougou /The People v. Rita Thompson", - "download_urls": "tests/examples/opinions/united_states/SSM24-25mem15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "207 SSM 24, 208 SSM 25", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-24", - "case_names": "The People v. Joseph Conceicao / The People v. Federico Perez / The People v. Javier Sanchez", - "download_urls": "tests/examples/opinions/united_states/167-168-169opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "167, 168, 169", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-24", - "case_names": "The People v. Abdelouahad Afilal", - "download_urls": "tests/examples/opinions/united_states/170mem15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "170", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-23", - "case_names": "The People v. Nugene Ambers", - "download_urls": "tests/examples/opinions/united_states/165opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "165", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-23", - "case_names": "The People v. Julio Negron", - "download_urls": "tests/examples/opinions/united_states/174opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "174", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-23", - "case_names": "The People v. Frankie Hatton", - "download_urls": "tests/examples/opinions/united_states/157opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "157", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-23", - "case_names": "The People v. Everett M. Durant", - "download_urls": "tests/examples/opinions/united_states/166-opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "166", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-23", - "case_names": "The People v. Davon Harris", - "download_urls": "tests/examples/opinions/united_states/164opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "164", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-23", - "case_names": "The People v. Alma Caldavado", - "download_urls": "tests/examples/opinions/united_states/162mem15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "162", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-23", - "case_names": "The People v. Ally Golo", - "download_urls": "tests/examples/opinions/united_states/175opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "175", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-23", - "case_names": "The Matter of Crystal Hawkins v. Elizabeth Berlin", - "download_urls": "tests/examples/opinions/united_states/177opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "177", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-23", - "case_names": "Ainsworth M. Bennett v. St. John's Home", - "download_urls": "tests/examples/opinions/united_states/SSM17ent15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "211 SSM 17", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-19", - "case_names": "The People v. Willie L. Wragg", - "download_urls": "tests/examples/opinions/united_states/152opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "152", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-19", - "case_names": "The People v. Samuel Small, Also Known as Samuel Smalls", - "download_urls": "tests/examples/opinions/united_states/176opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "176", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-19", - "case_names": "The People v. Matthew P.", - "download_urls": "tests/examples/opinions/united_states/154opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "154", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-19", - "case_names": "The People v. Antonio Martinez", - "download_urls": "tests/examples/opinions/united_states/160opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "160", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-19", - "case_names": "The Matter of Walter E. Carver v. State of New York", - "download_urls": "tests/examples/opinions/united_states/139opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "139", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-19", - "case_names": "The Matter of Sierra Club v. Village of Painted Post", - "download_urls": "tests/examples/opinions/united_states/151opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "151", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-19", - "case_names": "The Matter of Estevan Gentil v. Hon. Ira Margulis", - "download_urls": "tests/examples/opinions/united_states/158mem15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "158", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-19", - "case_names": "Switzerland Green v. Metropolitan Transportation Authority Bus Company", - "download_urls": "tests/examples/opinions/united_states/SSM22ent15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "210 SSM 22", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-18", - "case_names": "The People v. Pettis Hardy", - "download_urls": "tests/examples/opinions/united_states/159opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "159", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-18", - "case_names": "The People v. Daniel Israel", - "download_urls": "tests/examples/opinions/united_states/171opn15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "171", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-18", - "case_names": "The People v. Alfred Gary", - "download_urls": "tests/examples/opinions/united_states/155mem15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "155", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-18", - "case_names": "In the Matter of Anthony Frank Fizzinoglia", - "download_urls": "tests/examples/opinions/united_states/173mem15-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "173", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ny_example_4.html b/tests/examples/opinions/united_states/ny_example_4.html deleted file mode 100644 index 5222d96b2..000000000 --- a/tests/examples/opinions/united_states/ny_example_4.html +++ /dev/null @@ -1,361 +0,0 @@ - - - - - - - - - - - - -November 2015 Decisions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    Court of Appeals Title - - -
    - - - - - -
    - - - - - - - - -
    -
    -
    - - - - - - -
      -  
    -
    - - - - - - - - - -
    -
    - -
    - Advanced Decision Search
    Spacer
    Spacer
    Spacer
    Spacer
    Spacer
    Spacer
    Spacer
    - - - - - - - - - - - -

    Home Court Decisions November 2015 Decisions

    -
    -
    -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    November 24, 2015
    Decision ListPDFEntries for Cases and Motions
    No. 209 SSM 26PDFThe People v. Stephen Pellegrino
    No. 207 SSM 24 / No. 208 SSM 25PDFThe People v. Mactar Sougou /The People v. Rita Thompson
    No. 170PDFThe People v. Abdelouahad Afilal
    No. 167 / No. 168 / No. 169PDFThe People v. Joseph Conceicao / The People v. Federico Perez / The People v. Javier Sanchez
     
    November 23, 2015
    Decision ListPDFEntries for Cases and Motions
    No. 211 SSM 17PDFAinsworth M. Bennett v. St. John's Home
    No. 177PDFThe Matter of Crystal Hawkins v. Elizabeth Berlin
    No. 175PDFThe People v. Ally Golo
    No. 174PDFThe People v. Julio Negron
    No. 166PDFThe People v. Everett M. Durant
    No. 165 PDFThe People v. Nugene Ambers
    No. 164PDFThe People v. Davon Harris
    No. 162PDFThe People v. Alma Caldavado
    No. 157PDFThe People v Frankie Hatton
     
    November 19, 2015
    Decision ListPDFEntries for Cases and Motions
    No.210 SSM 22PDFSwitzerland Green v. Metropolitan Transportation Authority Bus Company
    No.176PDFThe People v. Samuel Small, Also Known as Samuel Smalls
    No.160PDFThe People v. Antonio Martinez
    No.158PDFThe Matter of Estevan Gentil v. Hon. Ira Margulis
    No.154PDFThe People v. Matthew P.
    No.152PDFThe People v. Willie L. Wragg
    No.151PDFThe Matter of Sierra Club v. Village of Painted Post
    No.139PDFThe Matter of Walter E. Carver v. State of New York
     
    November 18, 2015
    Decision ListPDFEntries for Cases and Motions
    No.173PDFIn the Matter of Anthony Frank Fizzinoglia
    No.171PDFThe People v. Daniel Israel
    No. 159PDFThe People v. Pettis Hardy
    No. 155PDFThe People v. Alfred Gary
     

    -
     
    - - diff --git a/tests/examples/opinions/united_states/ny_example_5.compare.json b/tests/examples/opinions/united_states/ny_example_5.compare.json deleted file mode 100644 index b2e4f9b56..000000000 --- a/tests/examples/opinions/united_states/ny_example_5.compare.json +++ /dev/null @@ -1,52 +0,0 @@ -[ - { - "case_dates": "2016-08-30", - "case_names": "The Matter of Brooke v. Elizabeth A. , The Matter of Estrellita A. v. Jennifer L.D.", - "download_urls": "tests/examples/opinions/united_states/91-92opn16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "91 - 92", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-30", - "case_names": "Joseph Bennett v. Michael Hucke Alan Kirk", - "download_urls": "tests/examples/opinions/united_states/SSM16ent16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "190 SSM 16", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-25", - "case_names": "The People v. Superintendent, Queensboro Correctional Facility", - "download_urls": "tests/examples/opinions/united_states/SSM15ent16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "189 SSM 15", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-25", - "case_names": "The People v. Cliffton Fletcher", - "download_urls": "tests/examples/opinions/united_states/SSM10mem16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "188 SSM 10", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-23", - "case_names": "The Matter of Steven Glickman v. Zackary Laffin", - "download_urls": "tests/examples/opinions/united_states/187opn16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "187", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ny_example_5.html b/tests/examples/opinions/united_states/ny_example_5.html deleted file mode 100644 index c52a3a9b3..000000000 --- a/tests/examples/opinions/united_states/ny_example_5.html +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - - - - - - - - - - - - -
    - - -
    - -

     

    -

     

    - -

     

    -
    -
    Home Court Decisions - August Decisions - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    August 30, 2016  
    Decision ListPDFEntries for Cases and Motions
    NO. 190 SSM 16PDFJoseph Bennett v. Michael Hucke Alan Kirk
    No. 91 - 92PDFThe Matter of Brooke v. Elizabeth A.
    - The Matter of Estrellita A. v. Jennifer L.D.
       
    August 25, 2016  
    Decision ListPDFEntries for Cases and Motions
    No. 189 SSM 15PDFThe People v. Superintendent, Queensboro Correctional Facility
    No. 188 SSM 10PDFThe People v. Cliffton Fletcher
       
    August 23, 2016  
    Decision List - A.M.PDFEntries for Cases and Motions
    Decision List - P.M.PDFEntries for Cases and Motions
    No. 187PDFThe Matter of Steven Glickman v. Zackary Laffin
    -

     

    -
    -
    -

     

    - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ny_example_6.compare.json b/tests/examples/opinions/united_states/ny_example_6.compare.json deleted file mode 100644 index bf1fae86c..000000000 --- a/tests/examples/opinions/united_states/ny_example_6.compare.json +++ /dev/null @@ -1,82 +0,0 @@ -[ - { - "case_dates": "2016-11-01", - "case_names": "The People. v. Lyxon Chery", - "download_urls": "tests/examples/opinions/united_states/159opn16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "159", - "case_name_shorts": "" - }, - { - "case_dates": "2016-11-01", - "case_names": "The People v. Roni Smith The People v. Keith Fagan", - "download_urls": "tests/examples/opinions/united_states/149-150opn16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "149-150", - "case_name_shorts": "" - }, - { - "case_dates": "2016-11-01", - "case_names": "The People v. Luis A. Pabon", - "download_urls": "tests/examples/opinions/united_states/156opn16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "156", - "case_name_shorts": "" - }, - { - "case_dates": "2016-11-01", - "case_names": "The People v. Herman Bank The People v. Herman H. Bank", - "download_urls": "tests/examples/opinions/united_states/160-161opn16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "160-161", - "case_name_shorts": "" - }, - { - "case_dates": "2016-11-01", - "case_names": "The People v. Antonio Aragon", - "download_urls": "tests/examples/opinions/united_states/133opn16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "133", - "case_name_shorts": "" - }, - { - "case_dates": "2016-11-01", - "case_names": "The People v. Alexis Ocasio", - "download_urls": "tests/examples/opinions/united_states/134opn16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "134", - "case_name_shorts": "" - }, - { - "case_dates": "2016-11-01", - "case_names": "The Matter of Joel R. Brandes v. Robert H. Cabble", - "download_urls": "tests/examples/opinions/united_states/162mem16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "162", - "case_name_shorts": "" - }, - { - "case_dates": "2016-11-01", - "case_names": "David Pullman v. David A. Silverman, M.D.", - "download_urls": "tests/examples/opinions/united_states/151mem16-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "151", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ny_example_6.html b/tests/examples/opinions/united_states/ny_example_6.html deleted file mode 100644 index e1c166405..000000000 --- a/tests/examples/opinions/united_states/ny_example_6.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - -November 2016 Decisions - - - - - - - - - - - - - -
    - - -
    - -

     

    -

     

    - -

     

    -
    -
    Home Court Decisions - November 2016 Decisions - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    November 1, 2016  
    Decision ListPDFEntries for Cases and Motions
    No. 162 PDFThe Matter of Joel R. Brandes v. Robert H. Cabble
    No, 160-161PDFThe People v. Herman Bank The People v. Herman H. Bank
    No. 159PDFThe People. v. Lyxon Chery
    No. 156PDFThe People v. Luis A. Pabon
    No. 151PDFDavid Pullman v. David A. Silverman, M.D.
    No. 149-150PDFThe People v. Roni Smith The People v. Keith Fagan
    No. 134PDFThe People v. Alexis Ocasio
    No. 133PDFThe People v. Antonio Aragon
       
    -

     

    -
    -
    -

     

    - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ny_example_7.compare.json b/tests/examples/opinions/united_states/ny_example_7.compare.json deleted file mode 100644 index dcf3ff042..000000000 --- a/tests/examples/opinions/united_states/ny_example_7.compare.json +++ /dev/null @@ -1,102 +0,0 @@ -[ - { - "case_dates": "2017-05-04", - "case_names": "Trathony Griffin and Michael Godwin v. Sirva, Inc. and Allied Van Lines Inc.", - "download_urls": "tests/examples/opinions/united_states/35opn17-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "35", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "The People v. John Stone", - "download_urls": "tests/examples/opinions/united_states/38opn17-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "38", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "The People v. Andrew R. Bushey", - "download_urls": "tests/examples/opinions/united_states/50opn17-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "N0. 50", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "The Matter of Gerald E. Loehr v. Administrative Board of the Courts of the State of New York", - "download_urls": "tests/examples/opinions/united_states/37opn17-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "37", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "Carmen Pesante v. Vertical Industrial Development Corp", - "download_urls": "tests/examples/opinions/united_states/SSM10mem17-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "86 SSM 10", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-02", - "case_names": "The People v. Omar A. Smalling", - "download_urls": "tests/examples/opinions/united_states/43mem17-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "43", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-02", - "case_names": "The People v. Jose Valentin", - "download_urls": "tests/examples/opinions/united_states/45opn17-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "45", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-02", - "case_names": "The People v. Everett B. McMillan", - "download_urls": "tests/examples/opinions/united_states/48opn17-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "48", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-02", - "case_names": "Susan M. Coffed v. John N. McCarthy", - "download_urls": "tests/examples/opinions/united_states/44mem17-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "44", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-02", - "case_names": "Kyle Connaughton v. Chipotle Mexican Grill", - "download_urls": "tests/examples/opinions/united_states/46opn17-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "46", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ny_example_7.html b/tests/examples/opinions/united_states/ny_example_7.html deleted file mode 100644 index 442c24915..000000000 --- a/tests/examples/opinions/united_states/ny_example_7.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - -May 2017 Decisions - - - - - - - - - - - - - -
    - - -
    - -

     

    -

     

    - -

     

    -
    -
    Home Court Decisions - May 2017 Decisions - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    May 4, 2017  
    Decision ListPDFEntries for Cases and Motions
    No. 35PDFTrathony Griffin and Michael Godwin v. Sirva, Inc. and Allied Van Lines Inc.
    No. 37PDFThe Matter of Gerald E. Loehr v. Administrative Board of the Courts of the State of New York
    No. 38PDFThe People v. John Stone
    N0. 50PDFThe People v. Andrew R. Bushey
    No. 86 SSM 10PDFCarmen Pesante v. Vertical Industrial Development Corp
       
    May 2, 2017  
    Decision ListPDFEntries for Cases and Motions
    No. 43 PDFThe People v. Omar A. Smalling
    No. 44PDFSusan M. Coffed v. John N. McCarthy
    No. 45PDFThe People v. Jose Valentin
    No. 46PDFKyle Connaughton v. Chipotle Mexican Grill
    No. 48PDFThe People v. Everett B. McMillan
       
    -

     

    -
    -
    -

     

    - - diff --git a/tests/examples/opinions/united_states/ny_example_8.compare.json b/tests/examples/opinions/united_states/ny_example_8.compare.json deleted file mode 100644 index b52b06913..000000000 --- a/tests/examples/opinions/united_states/ny_example_8.compare.json +++ /dev/null @@ -1,122 +0,0 @@ -[ - { - "case_dates": "2019-02-21", - "case_names": "The People v. Emmanuel Diaz", - "download_urls": "tests/examples/opinions/united_states/9opn19-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "9", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-21", - "case_names": "The People v. Ali Cisse", - "download_urls": "tests/examples/opinions/united_states/10mem19-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-21", - "case_names": "Randall M. Hinton v. Village of Pulaski", - "download_urls": "tests/examples/opinions/united_states/SSM27mem19-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "35 SSM 27", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-21", - "case_names": "Matter of New York City Asbestos Litigation v. Chevron Corporation", - "download_urls": "tests/examples/opinions/united_states/8opn19-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "8", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-19", - "case_names": "U.S. Bank National Association v. DLJ Mortgage Capital", - "download_urls": "tests/examples/opinions/united_states/7opn19-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "7", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-19", - "case_names": "U.S. Bank National Association v. DLJ Mortgage Capital", - "download_urls": "tests/examples/opinions/united_states/6opn19-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "6", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-19", - "case_names": "The People v. Michael Thomas", - "download_urls": "tests/examples/opinions/united_states/5opn19-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-19", - "case_names": "The Matter of James Q", - "download_urls": "tests/examples/opinions/united_states/3opn19-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "3", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-14", - "case_names": "The Matter of the Estate of Edward V. Giaquinto", - "download_urls": "tests/examples/opinions/united_states/SSM26ent19-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "34 SSM 26", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-14", - "case_names": "The Matter of Mental Hygiene Legal Service v.Anita Daniels", - "download_urls": "tests/examples/opinions/united_states/2opn19-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-14", - "case_names": "The Matter of Mental Hygiene Legal Service v. Anne Marie T. Sullivan", - "download_urls": "tests/examples/opinions/united_states/1opn19-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-14", - "case_names": "Arrowhead Capital Finance v. Cheyne Specialty Finance Fund L.P.", - "download_urls": "tests/examples/opinions/united_states/4opn19-Decision.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "4", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ny_example_8.html b/tests/examples/opinions/united_states/ny_example_8.html deleted file mode 100644 index 4f98feba6..000000000 --- a/tests/examples/opinions/united_states/ny_example_8.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - -February 2019 Decisions - - - - - - - - - - - - - -
    - - -
    - -

     

    -

     

    - -

     

    -
    -
    Home Court Decisions - February 2019 Decisions - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    February 21, 2019  
    Decision ListPDFEntries for Cases and Motions
    No. 8PDFMatter of New York City Asbestos Litigation v. Chevron Corporation
    No. 9PDFThe People v. Emmanuel Diaz
    No. 10PDFThe People v. Ali Cisse

    No. 35 SSM 27

    PDFRandall M. Hinton v. Village of Pulaski
       
    February 19, 2019  
    Decision ListPDFEntries for Cases and Motions
    No. 3PDFThe Matter of James Q
    No. 5PDFThe People v. Michael Thomas
    No. 6PDFU.S. Bank National Association v. DLJ Mortgage Capital
    No. 7PDFU.S. Bank National Association v. DLJ Mortgage Capital
       
    February 14, 2019  
    Decision ListPDFEntries for Cases and Motions
    No. 1 PDFThe Matter of Mental Hygiene Legal Service v. Anne Marie T. Sullivan
    No. 2PDFThe Matter of Mental Hygiene Legal Service v.Anita Daniels
    No. 4PDFArrowhead Capital Finance v. Cheyne Specialty Finance Fund L.P.
    No. 34 SSM 26PDFThe Matter of the Estate of Edward V. Giaquinto, Deceased
    -

     

    -
    -
    -

     

    - - diff --git a/tests/examples/opinions/united_states/nyag_example.compare.json b/tests/examples/opinions/united_states/nyag_example.compare.json index b66673a41..a1834cd2b 100644 --- a/tests/examples/opinions/united_states/nyag_example.compare.json +++ b/tests/examples/opinions/united_states/nyag_example.compare.json @@ -1,8 +1,118 @@ [ { - "case_dates": "2016-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/2016-f2_pw_0.pdf", + "case_dates": "2023-07-01", + "case_names": "2023-F1 Office of General Counsel for Insurance Formal Opinion", + "download_urls": "/sites/default/files/opinions/2023-f1.ws__15.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2023-F1", + "summaries": "Members of the No-Fault Arbitrator Screening Committee and the Supplementary Uninsured/Underinsured Motorists Arbitrator Screening Committee are persons holding a position \"by appointment\" and are in \"the service of the state\" and thus are \"employees\" for purposes of section 17 and are eligible for defense and indemnification pursuant to Public Officers Law \u00a7 17.", + "case_name_shorts": "" + }, + { + "case_dates": "2021-07-01", + "case_names": "2021-02 Village of Saltaire Informal Opinion", + "download_urls": "/sites/default/files/opinions/2021-2_pw.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2021-2", + "summaries": "A ballot that contains two votes for the same person for incompatible offices, one printed and one written in, should be counted as a blank vote for both of those offices.", + "case_name_shorts": "" + }, + { + "case_dates": "2021-07-01", + "case_names": "2021-02 Village of Saltaire Informal Opinion", + "download_urls": "/sites/default/files/opinions/2021-2_pw.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2021-2", + "summaries": "A ballot that contains two votes for the same person for incompatible offices, one printed and one written in, should be counted as a blank vote for both of those offices.", + "case_name_shorts": "" + }, + { + "case_dates": "2021-07-01", + "case_names": "2021-01 town of Islip Informal Opinion", + "download_urls": "/sites/default/files/opinions/2021-1.pw_.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2021-1", + "summaries": "The town of Islip need not seek additional special legislation before revising the permitted size of the Central Islip Fire Districts' proposed fire substation.", + "case_name_shorts": "" + }, + { + "case_dates": "2018-07-01", + "case_names": "2018-01 Village of Port Chester Informal Opinion", + "download_urls": "/sites/default/files/opinions/2018-1_pw.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2018-1", + "summaries": "A village can adopt a local law implementing a cumulative voting system and such local law would be subject to mandatory referendum.", + "case_name_shorts": "" + }, + { + "case_dates": "2018-07-01", + "case_names": "2018-01 Village of Port Chester Informal Opinion", + "download_urls": "/sites/default/files/opinions/2018-1_pw.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2018-1", + "summaries": "A village can adopt a local law implementing a cumulative voting system and such local law would be subject to mandatory referendum.", + "case_name_shorts": "" + }, + { + "case_dates": "2017-07-01", + "case_names": "2017-F2 Deferred Compensation Plan formal Opinion", + "download_urls": "/sites/default/files/opinions/2017-f2_pw_15.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2017-F2", + "summaries": "The Deferred Compensation Board is not obligated to investigate, monitor, or enforce compliance by local deferred compensation plans.", + "case_name_shorts": "" + }, + { + "case_dates": "2017-07-01", + "case_names": "2017-F1 Office of the State 683 formal Opinion", + "download_urls": "/sites/default/files/opinions/2017-f1_pw.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2017-F1", + "summaries": "The State 683 and his designees are not \"third party contractors,\" as defined in Education Law \u00a7 2-d, when auditing the State Education Department under the 683's constitutional authority.", + "case_name_shorts": "" + }, + { + "case_dates": "2017-07-01", + "case_names": "2017-02 Delhi Joint Fire District Informal Opinion", + "download_urls": "/sites/default/files/opinions/2017-2_pw_4.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2017-2", + "summaries": "The positions of assistant fire chief of a joint fire district and county director of emergency services are compatible.", + "case_name_shorts": "" + }, + { + "case_dates": "2017-07-01", + "case_names": "2017-01 Town of Brookhaven Informal Opinion", + "download_urls": "/sites/default/files/opinions/2017-1_pw.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2017-1", + "summaries": "A change in the use of municipal parking spaces on 551 must be authorized by special legislation.", + "case_name_shorts": "" + }, + { + "case_dates": "2016-07-01", + "case_names": "2016-F2 Executive Director & Secretary formal Opinion", + "download_urls": "/sites/default/files/opinions/2016-f2_pw_0.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, @@ -11,42 +121,53 @@ "case_name_shorts": "" }, { - "case_dates": "2016-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/2016-f1_pw_1.pdf", + "case_dates": "2016-07-01", + "case_names": "2016-F1 Office of the State 683 formal Opinion", + "download_urls": "/sites/default/files/opinions/2016-f1_pw_1.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "2016-F1", - "summaries": "To accord with precedent of the United States Supreme Court, Penal Law \u00a7 125.05 must be read to include an exception to preserve a pregnant woman's health and to allow an abortion of a nonviable fetus after 24 weeks.", + "summaries": "To accord with precedent of the United States Supreme Court, LAW \u00a7 125.05 must be read to include an exception to preserve a pregnant woman's health and to allow an abortion of a nonviable fetus after 24 weeks.", "case_name_shorts": "" }, { - "case_dates": "2016-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/2016-5_pw.pdf", + "case_dates": "2016-07-01", + "case_names": "2016-05 Town of DeWitt Informal Opinion", + "download_urls": "/sites/default/files/opinions/2016-5_pw.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "2016-5", - "summaries": "A town can decrease the length of the terms of the members of its planning board by local law.", + "summaries": "A town can decrease the length of the terms of the members of its planning board by local law", "case_name_shorts": "" }, { - "case_dates": "2016-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/2016-4_pw.pdf", + "case_dates": "2016-07-01", + "case_names": "2016-04 Columbia County Informal Opinion", + "download_urls": "/sites/default/files/opinions/2016-4_pw.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "2016-4", - "summaries": "The positions of elected county coroner and chief investigator for the district attorney are not compatible.", + "summaries": "The positions of elected county 522 and chief investigator for the district attorney are not compatible.", + "case_name_shorts": "" + }, + { + "case_dates": "2016-07-01", + "case_names": "2016-03 Town of Peru Informal Opinion", + "download_urls": "/sites/default/files/opinions/2016-3_pw.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2016-3", + "summaries": "A consistently- and accurately-maintained list of dogs licensed by a town may constitute a valid component of a system whereby owners redeem their seized dogs by producing proof of the identity of the owner and, if necessary, of the dog.", "case_name_shorts": "" }, { - "case_dates": "2016-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/2016-3_pw.pdf", + "case_dates": "2016-07-01", + "case_names": "2016-03 Town of Peru Informal Opinion", + "download_urls": "/sites/default/files/opinions/2016-3_pw.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, @@ -55,25 +176,102 @@ "case_name_shorts": "" }, { - "case_dates": "2016-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/2016-2_pw.pdf", + "case_dates": "2016-07-01", + "case_names": "2016-02 City of Auburn Informal Opinion", + "download_urls": "/sites/default/files/opinions/2016-2_pw.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2016-2", + "summaries": "The mayor and members of the council can administer oaths and take affidavits and 636 within the city as authorized by the City's charter.", + "case_name_shorts": "" + }, + { + "case_dates": "2016-07-01", + "case_names": "2016-02 City of Auburn Informal Opinion", + "download_urls": "/sites/default/files/opinions/2016-2_pw.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "2016-2", - "summaries": "The mayor and members of the council can administer oaths and take affidavits and acknowledgments within the city as authorized by the City's charter.", + "summaries": "The mayor and members of the council can administer oaths and take affidavits and 636 within the city as authorized by the City's charter.", "case_name_shorts": "" }, { - "case_dates": "2016-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/2016-1_pw.pdf", + "case_dates": "2016-07-01", + "case_names": "2016-01 Suffolk County Informal Opinion", + "download_urls": "/sites/default/files/opinions/2016-1_pw.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": true, "docket_numbers": "2016-1", "summaries": "State law governing voter registration does not require a wet signature and thus a signature can be affixed electronically.", "case_name_shorts": "" + }, + { + "case_dates": "2015-07-01", + "case_names": "2015-F1 New York Department of State formal Opinion", + "download_urls": "/sites/default/files/opinions/2015-f1_pw.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2015-F1", + "summaries": "Alkaline hydrolysis is a permissible means of disposal of pet remains. An entity offering pet disposal by alkaline hydrolysis for a fee must be licensed under General Business Law Article 35-C and such an entity can be licensed as a pet crematorium.", + "case_name_shorts": "" + }, + { + "case_dates": "2015-07-01", + "case_names": "2015-03 Village of Hudson Falls Informal Opinion", + "download_urls": "/sites/default/files/opinions/2015-3_pw_0.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2015-03", + "summaries": "Discussion of certain procedures to abate dangerous conditions of abandoned buildings and to recoup costs of such abatement.", + "case_name_shorts": "" + }, + { + "case_dates": "2015-07-01", + "case_names": "2015-02 Village of Nyack Housing Authority Informal Opinion", + "download_urls": "/sites/default/files/opinions/2015-2_pw.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2015-02", + "summaries": "The procedure prescribed by Public Housing Law \u00a7 34 to remove a member of the Authority's board applies to the members who sit on the board by virtue of election by the tenants of the Authority.", + "case_name_shorts": "" + }, + { + "case_dates": "2015-07-01", + "case_names": "2015-01 Keane & Beane P.C. Informal Opinion", + "download_urls": "/sites/default/files/opinions/2015-1_pw.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2015-01", + "summaries": "General Municipal Law \u00a7 360 does not apply to the Town's proposed participation in a pilot Community Choice Aggregation program and thus section 360's requirement of a referendum likewise does not apply.", + "case_name_shorts": "" + }, + { + "case_dates": "2014-07-01", + "case_names": "2014-06 Town of Brookhaven Informal Opinion", + "download_urls": "/sites/default/files/opinions/2014-6_pw.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2014-06", + "summaries": "A town may adopt a local law that would allow its animal shelter to spay and neuter dogs and cats after the expiration of the applicable redemption period but before they are selected for adoption.", + "case_name_shorts": "" + }, + { + "case_dates": "2001-07-01", + "case_names": "2001-03 County of Westchester Informal Opinion", + "download_urls": "/sites/default/files/opinions/I_2001-3_pw.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": true, + "docket_numbers": "2001-03", + "summaries": "There is a substantial possibility that E-SIGN does not preempt Article 9 of the RPL or otherwise obligate county recording officers to accept for recordation a filing that contains only an electronic signature but lacks what you term an \"original signature.\"", + "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyag_example.html b/tests/examples/opinions/united_states/nyag_example.html index e060eb608..5cd587cf6 100644 --- a/tests/examples/opinions/united_states/nyag_example.html +++ b/tests/examples/opinions/united_states/nyag_example.html @@ -1,6505 +1,1494 @@ - - - - - - - - - - - - - Appeals & Opinions - Numerical Index | www.ag.ny.gov - - - - - - - - - - - - - - - - - - - - - - -
    - + + + +
    +
    +

    Letitia James

    +

    New York State Attorney General

    +
    +
    +
    +
    + Office of the Attorney General Seal -
    +
    +
    +

    Social Media

    -
    + + - - - +
    +
    +
    Contact
    +
    + Office of the New York State Attorney General
    + The Capitol
    + Albany NY 12224-0341
    + Phone: 1-800-771-7755 +
    +
    +
    -
    -
    + + - - - - + +
    +
    +
    +
    Copyright © + 2023 + — Office of the New York State Attorney General. All Rights Reserved. +
    + +
    + + + +
    +
    +
    +
    + + + - - - - \ No newline at end of file + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyag_example_2.compare.json b/tests/examples/opinions/united_states/nyag_example_2.compare.json deleted file mode 100644 index 254084b70..000000000 --- a/tests/examples/opinions/united_states/nyag_example_2.compare.json +++ /dev/null @@ -1,739 +0,0 @@ -[ - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-9%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-09", - "summaries": "A person may serve simultaneously as a member of the zoning board of appeals and member of the board of assessment review of a town.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-8%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-08", - "summaries": "A proposed amendment to the city charter that transfers powers of a member of the city commission to be chairperson and mayor is subject to a mandatory referendum.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-7%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-07", - "summaries": "It is a conflict of interests for an assessor to represent in his or her private capacity a taxpayer in another town where that taxpayer also owns property within the assessor's jurisdiction.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-6%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-06", - "summaries": "Under section 18 of the Public Officers Law and the town code, a town is authorized to provide defense to one of its employees if the complaint alleges behavior within the scope of the employee's duties or upon a factual determination that this is the case by the town board.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-58%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-58", - "summaries": "A village which had the office of chief of police as of August 2, 1985, whether or not the position was filled, must retain the office so long as it continues to have a police department.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-57%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-57", - "summaries": "An automobile supplies and parts store may not make a car door opener available to the general public. Violations should be prosecuted by the district attorney.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-56%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-56", - "summaries": "Amendments to section 20 of the Town Law granting to town justices the authority to consent to the appointment and discharge of the court clerk were not intended to limit the town board to the appointment of only one clerk.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-55%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-55", - "summaries": "Subject to mandatory referendum, the village board of trustees may enact a local law transferring the authority to discipline police officers from the board of trustees to the village manager.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-54%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-54", - "summaries": "A county may dedicate land as a Korean War Veteran Memorial Park. The park land will be held in public trust and may not be diverted to other uses or conveyed without authorization by the State Legislature.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-53%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-53", - "summaries": "The provisions of the Criminal Procedure Law, including section 420.10, are applicable to fines imposed under General Municipal Law \u00a7 136 and under the New York State Uniform Fire Prevention and Building Code.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-52%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-52", - "summaries": "The proposed uses of land, acquired under the Park and Recreation Land Acquisition Program of 1960 as a municipal park, are prohibited by Parks, Recreation and Historic Preservation Law \u00a7 15.09 in the absence of express authorization by the State Legislature.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-51%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-51", - "summaries": "A person may not hold simultaneously the positions of mayor of a village and supervisor of a town.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-50%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-50", - "summaries": "A town board may reduce the term of its supervisor from four to two years by local law subject to mandatory referendum.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-5%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-05", - "summaries": "A town by local law may establish the State of New York as the residency required for an appointive town officer.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-49%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-49", - "summaries": "Each sewage-works corporation must petition for a sewer rate that is directly related to the cost of operating and maintaining its own sewer system for its own users in its approved area of operation. There is no authority for the municipal approval of a combined sewer rate or increase for two sewageworks corporations, regardless of the revenue needs or circumstances of either corporation.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-48%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-48", - "summaries": "A municipality is unauthorized to establish a term for an office in the competitive class of the civil service. This principle applies to a chief of police serving as the executive head of a municipality's police department, so long as that position is classified competitive.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-47%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-47", - "summaries": "The county may enter a mutual aid agreement with a county from another state pursuant to General Municipal Law Article 14-G, which permits interlocal agreements in specified circumstances.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-46%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-46", - "summaries": "A local law which would prohibit the award of municipal contracts to persons who have made political contributions to town officials or candidates for town office is preempted by State law.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-45%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-45", - "summaries": "The county clerk may accept for filing a certificate that indicates a person is doing business under an assumed name that appears to be the name of a person, when the certificate describes the secondary, historic or geographic meaning or connotation of the assumed name. The clerk may not require that such a certificate be filed in other counties before it is accepted for filing in the clerk's county. The exemption set forth in CPLR \u00a7 8017 applies only to the county served by the clerk with whom papers are to be filed. The county clerk may correct an obvious clerical error and remove erroneously recorded documents from the record, taking whatever steps are deemed necessary to avoid confusion as a result of the removal.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-44%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-44", - "summaries": "State Finance Law \u00a7 165 was intended to prohibit the purchase of only those species of tropical hardwoods listed in the statute. We also conclude that the exemption for products from \"a sustained, managed forest\" is not defined in the statute.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-43%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-43", - "summaries": "The Village and Town Laws do not permit an arrangement whereby the Town of Alden would provide law enforcement only to the Village of Alden and not to the area of the town outside the village. Other alternatives exist for the provision of law enforcement to the village.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-42%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-42", - "summaries": "A property owner may utilize section 18-1804 of the Village Law to exclude his property from village boundaries only if he does not receive specified village services and improvements.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-41%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-41", - "summaries": "Membership on the county legislature is incompatible with simultaneous service on the Professional Advisory Committee or the Utilization Review Committee. Also, once elected to the legislature, this individual may not continue to serve as the farm bureau representative on the board of the soil and water conservation district.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-40%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-40", - "summaries": "The building inspector of the Village of Depew is a public officer and, therefore, must reside within the village. The board of trustees may, however, enact a resolution to authorize the building inspector to reside anywhere in the county within which the village is wholly or partially located.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-4%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-04", - "summaries": "The members of the Town of Mendon's conservation board need not reside within the town since the board is strictly advisory in nature.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-39%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-39", - "summaries": "The Town of Putnam Valley may appoint harbor masters to enforce the Navigation Law on Lake Oscawana, provided that the lake meets the definition of navigable waters contained in Navigation Law \u00a7 2(4). Town harbor masters, as peace officers, may enforce those provisions of the Environmental Conservation Law which are consistent with their specific duties when authorized or required to do so by their employers.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-38%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-38", - "summaries": "There is nothing legally objectionable to the sale of advertising space on Kingston's bus system, as it is a business activity directly related to the legitimate public function of operating Kingston's transit system.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-37%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-37", - "summaries": "An agreement between an officeholder and a county to establish a term different from the term fixed in the county charter has no legal effect.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-36%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-36", - "summaries": "The mayor may appoint a single member of the board of trustees to be commissioner of the village police department.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-35%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-35", - "summaries": "A person may not serve simultaneously as a member of the board of supervisors and as the social welfare examiner of Columbia County.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-34%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-34", - "summaries": "One person should not hold simultaneously the positions of village trustee and village building and bingo inspector.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-33%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-33", - "summaries": "The positions of county coroner and village trustee are compatible.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-32%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-32", - "summaries": "The receipt of a tuition waiver or stipend by a school district employee in return for assisting a college student in meeting his or her student teaching requirement does not violate section 805-a of the General Municipal Law.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-31%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-31", - "summaries": "The width of a town highway by use, established in accordance with Highway Law \u00a7 189, is determined by the extent of actual use.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-30%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-30", - "summaries": "The person elected in November 1995 to fill the vacancy in the office of district attorney of Rockland County will serve for a full four year term.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-3%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-03", - "summaries": "The town highway superintendent is unauthorized to designate a town road as a seasonal limited use highway if, as a factual matter, at least one occupied residence or commercial building depends upon the highway for access.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-29%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-29", - "summaries": "A local government is authorized to enact a local law limiting the number of consecutive terms that an elected officer may serve. Such a local law is not subject to a referendum.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-28%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-28", - "summaries": "\"Emergency ambulance service vehicle\", as defined by section 115-c of the Vehicle and Traffic Law, includes an appropriately equipped privately-owned vehicle operated by an agent of an ambulance service and used in transporting emergency medical personnel and equipment to sick or injured persons.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-27%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-27", - "summaries": "The posting of the results of disciplinary matters on a department bulletin board located in an area where department personnel have access to them but the public does not are not the sort of disclosure prohibited by Civil Rights Law \u00a7 50-a.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-26%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-26", - "summaries": "It is not necessary that an appointment by the mayor to fill the unexpired term of the superintendent of public works be approved by the board of trustees.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-25%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-25", - "summaries": "A sheriff executing a warrant issued in a summary proceeding pursuant to section 749(1) of the Real Property Actions and Proceedings Law must effect the removal of the personal property of the person to be evicted or dispossessed unless the successful petitioner relieves the sheriff of the duty to do so.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-24%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-24", - "summaries": "A commissioner of the Eastchester Fire District does not have a conflict of interests as a result of his private employment as a firefighter where he is a member of the same national union as the paid firefighters with whom he must negotiate contracts on behalf of the fire district.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-23%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-23", - "summaries": "The position of fire marshall may be created by local law. Upon creation of that office, the fire marshall's vehicle would be categorized as a fire vehicle under section 115-a of the Vehicle and Traffic Law.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-22%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-22", - "summaries": "There is no incompatibility between serving on the planning board and holding a position of employment providing computer services in the town. While a town might enact a local law prohibiting the simultaneous holding of various positions, a finding should first be made that the enactment is in the public interest.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-21%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-21", - "summaries": "The positions of village code enforcement officer and village planning board member are compatible.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-20%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-20", - "summaries": "A city may provide by local law for a seven-member zoning board of appeals.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-2%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-02", - "summaries": "A member of a local planning board who has stated that he or she has a conflict of interests concerning a particular matter before the board must absent himself from the board during the time that the matter is before it.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-19%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-19", - "summaries": "Members of Troy Municipal Housing Authority are required to reside in the City of Troy.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-18%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-18", - "summaries": "The city manager of the City of Watertown, as the chief executive officer of the city, has the authority to make appointments to the city housing authority.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-17%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-17", - "summaries": "Members of a private industry council, except for those serving in a governmental capacity, are not required to file financial disclosure forms under Article 18 of the General Municipal Law.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-16%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-16", - "summaries": "A charter county may not set up a plan for the representation of indigent defendants which is inconsistent with the options provided by section 722(1-4) of the County Law. In order to establish such a plan for Sullivan County, an act of the State Legislature would be required.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-15%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-15", - "summaries": "The county may not \"opt out\" of code enforcement with respect to IDA property. The county may \"opt out\" of enforcement with respect to all county property or may make agreements with local governments allocating enforcement responsibility.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-14%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-14", - "summaries": "A member of a town planning board may not be compensated or enter into an agreement to be compensated for the preparation of test borings, date from which would be incorporated into subdivision maps and site plans to be presented to the planning board for review. The statutory prohibition does not allow recusal as an appropriate remedy.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-13%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-13", - "summaries": "The appointment by the mayor of the City of Schenectady of members of the planning commission, subject to confirmation by the city council, is not inconsistent with provisions of State law.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-12%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-12", - "summaries": "The positions of member of the city council and city firefighter are incompatible.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-11%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-11", - "summaries": "A county board of supervisors in a non-charter county may by local law establish the position of county administrator. Further, if the local law does not transfer, curtail or abolish the powers of an elective officer, it would not be subject to a mandatory referendum. In that the Municipal Home Rule Law, rather than the Alternative County Government Law, is the source of authority for the enactment, the latter would not require a referendum.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-10%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-10", - "summaries": "A discussion of conflicts of interests under various scenarios involving school staff members' receipt of gratuities in acting as chaperones for student trips.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/I%2095-1%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-01", - "summaries": "A county may provide for the reversion of a bridge, which is part of the county road system, to a town in accordance with the procedures set forth in Highway Law \u00a7\u00a7 115-b and 115-c.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/95-F9%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-F9", - "summaries": "While CUNY has not been designated as a participating agency, and is not required to conduct registration activities beyond the distribution of voter registration forms specifically mandated in the first paragraph of Election Law \u00a7 5-211, CUNY is not prohibited from implementing a more comprehensive voter registration program, including providing assistance in completion of forms and collecting and transmitting completed forms to the Board of Elections.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/95-F8%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-F8", - "summaries": "As amended by L 1995 ch 645, section 307(3)(a)'s indexing requirements are now expanded to include those final determinations that arise out of a statute specifically providing affected parties with an opportunity to be heard.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/95-F7%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-F7", - "summaries": "Prescriptions written by residents and interns in the hospital where they are employed, while they are practicing under the supervision of a licensed physician, may be filled at any licensed pharmacy.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/95-F6%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-F6", - "summaries": "The Commissioner of Agriculture and Markets is authorized by statute to delegate his responsibilities on the board of directors of the New York State Thoroughbred Breeding and Development Fund Corporation to a deputy commissioner.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/95-F5%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-F5", - "summaries": "Workers' Compensation Law \u00a7 125 applies to State agencies and law enforcement entities. The statute makes it unlawful for employers to inquire into or consider, for the purposes of assessing fitness for employment, whether a job applicant has filed for or received workers' compensation benefits. It also prohibits discrimination against job applicants based on their claim history.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/95-F4%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-F4", - "summaries": "A person appointed to the position of Chairman of the Employment Relations Board may take an unpaid leave of absence from the law firm of which he is a partner.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/95-F3%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-F3", - "summaries": "The New York State Department of Environmental Conservation may not undertake a promotional sweepstakes to promote subscriptions to \"The Conservationist\" absent express statutory authority to do so.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/95-F2%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-F2", - "summaries": "The Board may suspend or revoke the license of a Hudson River pilot for piloting actions he took while he was not acting under the auspices of his Hudson River pilot license.", - "case_name_shorts": "" - }, - { - "case_dates": "1995-07-02", - "case_names": "Untitled New York Attorney General Opinion", - "download_urls": "https://ag.ny.gov/sites/default/files/opinion/95-F1%20pw.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": true, - "docket_numbers": "1995-F1", - "summaries": "Compromise or settlement by the Crime Victims Board of the amount of lien which attaches to a recovery, pursuant to Executive Law \u00a7 634(2), may or may not constitute a waiver of lien which attaches to a subsequent recovery or waiver of subrogation rights, set forth in Executive Law \u00a7 634(1)(a). The intent of the parties as evidenced by the record of proceedings governs.", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyag_example_2.html b/tests/examples/opinions/united_states/nyag_example_2.html deleted file mode 100644 index bbe165666..000000000 --- a/tests/examples/opinions/united_states/nyag_example_2.html +++ /dev/null @@ -1,1543 +0,0 @@ - - - - - - - - - - - - - Appeals & Opinions - Numerical Index | New York State Attorney General - - - - - - - - - - - - - - - - - - - - - - -
    - - -
    - - - - - -
    -
    - -
    -
    -
    - - -
    -
    -
    -
    -
    - - - - - - - - - -
    - - - -
    - - -
    -
    - - - - - -

    - Appeals & Opinions - Numerical Index

    - - - - -
    -
    - - -
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    1995
    - Opinion Summary - Abstract - Related Statues -
    - 1995-01 - A county may provide for the reversion of a bridge, which is part of the county road system, to a town in accordance with the procedures set forth in Highway Law §§ 115-b and 115-c. - PDF PDF-ICON
    - 1995-02 - A member of a local planning board who has stated that he or she has a conflict of interests concerning a particular matter before the board must absent himself from the board during the time that the matter is before it. - PDF PDF-ICON
    - 1995-03 - The town highway superintendent is unauthorized to designate a town road as a seasonal limited use highway if, as a factual matter, at least one occupied residence or commercial building depends upon the highway for access. - PDF PDF-ICON
    - 1995-04 - The members of the Town of Mendon's conservation board need not reside within the town since the board is strictly advisory in nature. - PDF PDF-ICON
    - 1995-05 - A town by local law may establish the State of New York as the residency required for an appointive town officer. - PDF PDF-ICON
    - 1995-06 - Under section 18 of the Public Officers Law and the town code, a town is authorized to provide defense to one of its employees if the complaint alleges behavior within the scope of the employee's duties or upon a factual determination that this is the case by the town board. - PDF PDF-ICON
    - 1995-07 - It is a conflict of interests for an assessor to represent in his or her private capacity a taxpayer in another town where that taxpayer also owns property within the assessor's jurisdiction. - PDF PDF-ICON
    - 1995-08 - A proposed amendment to the city charter that transfers powers of a member of the city commission to be chairperson and mayor is subject to a mandatory referendum. - PDF PDF-ICON
    - 1995-09 - A person may serve simultaneously as a member of the zoning board of appeals and member of the board of assessment review of a town. - PDF PDF-ICON
    - 1995-10 - A discussion of conflicts of interests under various scenarios involving school staff members' receipt of gratuities in acting as chaperones for student trips. - PDF PDF-ICON
    - 1995-11 - A county board of supervisors in a non-charter county may by local law establish the position of county administrator. Further, if the local law does not transfer, curtail or abolish the powers of an elective officer, it would not be subject to a mandatory referendum. In that the Municipal Home Rule Law, rather than the Alternative County Government Law, is the source of authority for the enactment, the latter would not require a referendum. - PDF PDF-ICON
    - 1995-12 - The positions of member of the city council and city -firefighter are incompatible. - PDF PDF-ICON
    - 1995-13 - The appointment by the mayor of the City of Schenectady of members of the planning commission, subject to confirmation by the city council, is not inconsistent with provisions of State law. - PDF PDF-ICON
    - 1995-14 - A member of a town planning board may not be compensated or enter into an agreement to be compensated for the preparation of test borings, date from which would be incorporated into subdivision maps and site plans to be presented to the planning board for review. The statutory prohibition does not allow recusal as an appropriate remedy. - PDF PDF-ICON
    - 1995-15 - The county may not "opt out" of code enforcement with respect to IDA property. The county may "opt out" of enforcement with respect to all county property or may make agreements with local governments allocating enforcement responsibility. - PDF PDF-ICON
    - 1995-16 - A charter county may not set up a plan for the representation of indigent defendants which is inconsistent with the options provided by section 722(1-4) of the County Law. In order to establish such a plan for Sullivan County, an act of the State Legislature would be required. - PDF PDF-ICON
    - 1995-17 - Members of a private industry council, except for those serving in a governmental capacity, are not required to file financial disclosure forms under Article 18 of the General Municipal Law. - PDF PDF-ICON
    - 1995-18 - The city manager of the City of Watertown, as the chief executive officer of the city, has the authority to make appointments to the city housing authority. - PDF PDF-ICON
    - 1995-19 - Members of Troy Municipal Housing Authority are required to reside in the City of Troy. - PDF PDF-ICON
    - 1995-20 - A city may provide by local law for a seven-member zoning board of appeals. - PDF PDF-ICON
    - 1995-21 - The positions of village code enforcement officer and village planning board member are compatible. - PDF PDF-ICON
    - 1995-22 - There is no incompatibility between serving on the planning board and holding a position of employment providing computer services in the town. While a town might enact a local law prohibiting the simultaneous holding of various positions, a finding should first be made that the enactment is in the public interest. - PDF PDF-ICON
    - 1995-23 - The position of fire marshall may be created by local law. Upon creation of that office, the fire marshall's vehicle would be categorized as a fire vehicle under section 115-a of the Vehicle and Traffic Law. - PDF PDF-ICON
    - 1995-24 - A commissioner of the Eastchester Fire District does not have a conflict of interests as a result of his private employment as a firefighter where he is a member of the same national union as the paid firefighters with whom he must negotiate contracts on behalf of the fire district. - PDF PDF-ICON
    - 1995-25 - A sheriff executing a warrant issued in a summary proceeding pursuant to section 749(1) of the Real Property Actions and Proceedings Law must effect the removal of the personal property of the person to -be evicted or dispossessed unless the successful petitioner relieves the sheriff of the duty to do so. - PDF PDF-ICON
    - 1995-26 - It is not necessary that an appointment by the mayor to fill the unexpired term of the superintendent of public works be approved by the board of trustees. - PDF PDF-ICON
    - 1995-27 - The posting of the results of disciplinary matters on a department bulletin board located in an area where department personnel have access to them but the public does not are not the sort of disclosure prohibited by Civil Rights Law § 50-a. - PDF PDF-ICON
    - 1995-28 - "Emergency ambulance service vehicle", as defined by section 115-c of the Vehicle and Traffic Law, includes an appropriately equipped privately-owned vehicle operated by an agent of an ambulance service and used in transporting emergency medical personnel and equipment to sick or injured persons. - PDF PDF-ICON
    - 1995-29 - A local government is authorized to enact a local law limiting the number of consecutive terms that an elected officer may serve. Such a local law is not subject to a referendum. - PDF PDF-ICON
    - 1995-30 - The person elected in November 1995 to fill the vacancy in the office of district attorney of Rockland County will serve for a full four year term. - PDF PDF-ICON
    - 1995-31 - The width of a town highway by use, established in accordance with Highway Law § 189, is determined by the extent of actual use. - PDF PDF-ICON
    - 1995-32 - The receipt of a tuition waiver or stipend by a school district employee in return for assisting a college student in meeting his or her student teaching requirement does not violate section 805-a of the General Municipal Law. - PDF PDF-ICON
    - 1995-33 - The positions of county coroner and village trustee are compatible. - PDF PDF-ICON
    - 1995-34 - One person should not hold simultaneously the positions of village trustee and village building and bingo inspector. - PDF PDF-ICON
    - 1995-35 - A person may not serve simultaneously as a member of the -board of supervisors and as the social welfare examiner of -Columbia County. - PDF PDF-ICON
    - 1995-36 - The mayor may appoint a single member of the board of trustees to be commissioner of the village police department. - PDF PDF-ICON
    - 1995-37 - An agreement between an officeholder and a county to establish a term different from the term fixed in the county charter has no legal effect. - PDF PDF-ICON
    - 1995-38 - There is nothing legally objectionable to the sale of advertising space on Kingston's bus system, as it is a business activity directly related to the legitimate public function of operating Kingston's transit system. - PDF PDF-ICON
    - 1995-39 - The Town of Putnam Valley may appoint harbor masters to enforce the Navigation Law on Lake Oscawana, provided that the lake meets the definition of navigable waters contained in Navigation Law § 2(4). Town harbor masters, as peace officers, may enforce those provisions of the Environmental Conservation Law which are consistent with their specific duties when authorized or required to do so by their employers. - PDF PDF-ICON
    - 1995-40 - The building inspector of the Village of Depew is a public officer and, therefore, must reside within the village. The board of trustees may, however, enact a resolution to authorize the building inspector to reside anywhere in the county within which the village is wholly or partially located. - PDF PDF-ICON
    - 1995-41 - Membership on the county legislature is incompatible with simultaneous service on the Professional Advisory Committee or the Utilization Review Committee. Also, once elected to the legislature, this individual may not continue to serve as the farm bureau representative on the board of the soil and water conservation district. - PDF PDF-ICON
    - 1995-42 - A property owner may utilize section 18-1804 of the Village Law to exclude his property from village boundaries only if he does not receive specified village services and improvements. - PDF PDF-ICON
    - 1995-43 - The Village and Town Laws do not permit an arrangement whereby the Town of Alden would provide law enforcement only to the Village of Alden and not to the area of the town outside the village. Other -alternatives exist for the provision of law enforcement to the village. - PDF PDF-ICON
    - 1995-44 - State Finance Law § 165 was intended to prohibit the purchase of only those species of tropical hardwoods listed in the statute. We also conclude that the exemption for products from "a sustained, managed forest" is not defined in the statute. - PDF PDF-ICON
    - 1995-45 - The county clerk may accept for filing a certificate that indicates a person is doing business under an assumed name that appears to be the name of a person, when the certificate describes the secondary, historic or geographic meaning or connotation of the assumed name. The clerk may not require that such a certificate be filed in other counties before it is accepted for filing in the clerk's county. - -The exemption set forth in CPLR § 8017 applies only to the county served by the clerk with whom papers are to be filed. - -The county clerk may correct an obvious clerical error and remove erroneously recorded documents from the record, taking whatever steps are deemed necessary to avoid confusion as a result of the removal. - PDF PDF-ICON
    - 1995-46 - A local law which would prohibit the award of municipal contracts to persons who have made political contributions to town officials or candidates for town office is preempted by State law. - PDF PDF-ICON
    - 1995-47 - The county may enter a mutual aid agreement with a county from another state pursuant to General Municipal Law Article 14-G, which permits interlocal agreements in specified circumstances. - PDF PDF-ICON
    - 1995-48 - A municipality is unauthorized to establish a term for an office in the competitive class of the civil service. This principle applies to a chief of police serving as the executive head of a municipality's police department, so long as that position is classified competitive. - PDF PDF-ICON
    - 1995-49 - Each sewage-works corporation must petition for a sewer rate that is directly related to the cost of operating and maintaining its own sewer system for its own users in its approved area of operation. There is no authority for the municipal approval of a combined sewer rate or increase for two sewageworks corporations, regardless of the revenue needs or circumstances of either corporation. - PDF PDF-ICON
    - 1995-50 - A town board may reduce the term of its supervisor from four to two years by local law subject to mandatory referendum. - PDF PDF-ICON
    - 1995-51 - A person may not hold simultaneously the positions of mayor of a village and supervisor of a town. - PDF PDF-ICON
    - 1995-52 - The proposed uses of land, acquired under the Park and Recreation Land Acquisition Program of 1960 as a municipal park, are prohibited by Parks, Recreation and Historic Preservation Law § 15.09 in the absence of express authorization by the State Legislature. - PDF PDF-ICON
    - 1995-53 - The provisions of the Criminal Procedure Law, including section 420.10, are applicable to fines imposed under General Municipal Law § 136 and under the New York State Uniform Fire Prevention and Building Code. - PDF PDF-ICON
    - 1995-54 - A county may dedicate land as a Korean War Veteran Memorial Park. The park land will be held in public trust and may not be diverted to other uses or conveyed without authorization by the State Legislature. - PDF PDF-ICON
    - 1995-55 - Subject to mandatory referendum, the village board of trustees may enact a local law transferring the authority to discipline police officers from the board of trustees to the village manager. - PDF PDF-ICON
    - 1995-56 - Amendments to section 20 of the Town Law granting to town justices the authority to consent to the appointment and discharge of the court clerk were not intended to limit the town board to the appointment of only one clerk. - PDF PDF-ICON
    - 1995-57 - An automobile supplies and parts store may not make a car door opener available to the general public. Violations should be prosecuted by the district attorney. - PDF PDF-ICON
    - 1995-58 - A village which had the office of chief of police as of August 2, 1985, whether or not the position was filled, must retain the office so long as it continues to have a police department. - PDF PDF-ICON
    - 1995-F1 - Compromise or settlement by the Crime Victims Board of the amount of lien which attaches to a recovery, pursuant to Executive Law § 634(2), may or may not constitute a waiver of lien which attaches to a subsequent recovery or waiver of subrogation rights, set forth in Executive Law § 634(1)(a). The intent of the parties as evidenced by the record of proceedings governs. - PDF PDF-ICON
    - 1995-F2 - The Board may suspend or revoke the license of a Hudson River pilot for piloting actions he took while he was not acting under the auspices of his Hudson River pilot license. - PDF PDF-ICON
    - 1995-F3 - The New York State Department of Environmental Conservation may not undertake a promotional sweepstakes to promote subscriptions to "The Conservationist" absent express statutory authority to do so. - PDF PDF-ICON
    - 1995-F4 - A person appointed to the position of Chairman of the Employment Relations Board may take an unpaid leave of absence from the law firm of which he is a partner. - PDF PDF-ICON
    - 1995-F5 - Workers' Compensation Law § 125 applies to State agencies and law enforcement entities. The statute makes it unlawful for employers to inquire into or consider, for the purposes of assessing fitness for employment, whether a job applicant has filed for or received workers' compensation benefits. It also prohibits discrimination against job applicants based on their claim history. - PDF PDF-ICON
    - 1995-F6 - The Commissioner of Agriculture and Markets is authorized by statute to delegate his responsibilities on the board of directors of the New York State Thoroughbred Breeding and Development Fund Corporation to a deputy commissioner. - PDF PDF-ICON
    - 1995-F7 - Prescriptions written by residents and interns in the hospital where they are employed, while they are practicing under the supervision of a licensed physician, may be filled at any licensed pharmacy. - PDF PDF-ICON
    - 1995-F8 - As amended by L 1995 ch 645, section 307(3)(a)'s indexing requirements are now expanded to include those final determinations that arise out of a statute specifically providing affected parties with an opportunity to be heard. - PDF PDF-ICON
    - 1995-F9 - While CUNY has not been designated as a participating agency, and is not required to conduct registration activities beyond the distribution of voter registration forms specifically mandated in the first paragraph of Election Law § 5-211, CUNY is not prohibited from implementing a more comprehensive voter registration program, including providing assistance in completion of forms and collecting and transmitting completed forms to the Board of Elections. - PDF PDF-ICON
    -
    - - - - - - -
    -
    -
    - - -
    - -
    - - -
    -
    - - -
    - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - -
    - - - diff --git a/tests/examples/opinions/united_states/nyappdiv_1st_example.compare.json b/tests/examples/opinions/united_states/nyappdiv_1st_example.compare.json index 4ae235b7d..fba570950 100644 --- a/tests/examples/opinions/united_states/nyappdiv_1st_example.compare.json +++ b/tests/examples/opinions/united_states/nyappdiv_1st_example.compare.json @@ -1,1478 +1,72 @@ [ { - "case_dates": "2015-07-28", - "case_names": "Tower Ins. Co. of N.Y. v. Brown", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06296.htm", + "case_dates": "2024-09-05", + "case_names": "Ria R Squared, Inc. v. DW Partners, LP", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04363.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15339 153797/12", - "judges": "", - "citations": "2015 NY Slip Op 06296", - "case_name_shorts": "Brown" + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04363", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2015-07-28", - "case_names": "Noor v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06295.htm", + "case_dates": "2024-09-05", + "case_names": "Picchioni v. Sabur", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04362.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15080 102899/07", - "judges": "", - "citations": "2015 NY Slip Op 06295", - "case_name_shorts": "Noor" + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04362", + "case_name_shorts": "Picchioni", + "authors": "Rosado", + "per_curiam": false }, { - "case_dates": "2015-07-28", - "case_names": "Matter of Teague", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06301.htm", + "case_dates": "2024-09-05", + "case_names": "People v. Perkins", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04361.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M-1137", - "judges": "Per Curiam", - "citations": "2015 NY Slip Op 06301", - "case_name_shorts": "Matter of Teague" + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04361", + "case_name_shorts": "Perkins", + "authors": "", + "per_curiam": false }, { - "case_dates": "2015-07-28", - "case_names": "Matter of Rosabianca", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06300.htm", + "case_dates": "2024-09-05", + "case_names": "People v. Leslie", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04360.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M-1874", - "judges": "Per Curiam", - "citations": "2015 NY Slip Op 06300", - "case_name_shorts": "Matter of Rosabianca" + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04360", + "case_name_shorts": "Leslie", + "authors": "", + "per_curiam": false }, { - "case_dates": "2015-07-28", - "case_names": "Lee v. Woori Bank", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06299.htm", + "case_dates": "2024-09-05", + "case_names": "GCA Advisors, LLC v. Intersections, Inc.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04359.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "154157/14 14872", - "judges": "Tom, J.P.", - "citations": "2015 NY Slip Op 06299", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-28", - "case_names": "Garrison Special Opportunities Fund LP v. Fidelity Natl. Card Servs., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06297.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15140 603081/08", - "judges": "", - "citations": "2015 NY Slip Op 06297", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-28", - "case_names": "Ganaj v. New York City Health & Hosps. Corp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06294.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15072 303203/08", - "judges": "", - "citations": "2015 NY Slip Op 06294", - "case_name_shorts": "Ganaj" - }, - { - "case_dates": "2015-07-28", - "case_names": "Amacio v. State of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06298.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "98546", - "judges": "", - "citations": "2015 NY Slip Op 06298", - "case_name_shorts": "Amacio" - }, - { - "case_dates": "2015-07-21", - "case_names": "U.S. Bank, N.A. v. Landman", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06194.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "13455 381515/08", - "judges": "", - "citations": "2015 NY Slip Op 06194", - "case_name_shorts": "Landman" - }, - { - "case_dates": "2015-07-21", - "case_names": "Smoke v. Windemere Owners LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06195.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15471 113051/11", - "judges": "", - "citations": "2015 NY Slip Op 06195", - "case_name_shorts": "Smoke" - }, - { - "case_dates": "2015-07-21", - "case_names": "People v. Maxwell", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06199.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15575 1751/10", - "judges": "", - "citations": "2015 NY Slip Op 06199", - "case_name_shorts": "Maxwell" - }, - { - "case_dates": "2015-07-21", - "case_names": "MMA Meadows at Green Tree, LLC v. Millrun Apts., LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06198.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "653943/13 15381 15380", - "judges": "", - "citations": "2015 NY Slip Op 06198", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-21", - "case_names": "For The People Theaters of N.Y. Inc. v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06200.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "121197/02 121080/02 12158", - "judges": "Kapnick, J.", - "citations": "2015 NY Slip Op 06200", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-21", - "case_names": "Dreisinger v. Teglasi", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06197.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "14989 308023/10", - "judges": "", - "citations": "2015 NY Slip Op 06197", - "case_name_shorts": "Dreisinger" - }, - { - "case_dates": "2015-07-21", - "case_names": "Chekowsky v. Windemere Owners, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06196.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "106532/11 15473 15472", - "judges": "", - "citations": "2015 NY Slip Op 06196", - "case_name_shorts": "Chekowsky" - }, - { - "case_dates": "2015-07-21", - "case_names": "381 Search Warrants Directed to Facebook, Inc. v. New York County Dist. Attorney's Off.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06201.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "30207/13 30178/14", - "judges": "Renwick, J.", - "citations": "2015 NY Slip Op 06201", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-14", - "case_names": "Silver v. Whitney Partners LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06090.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "14029 100020/13", - "judges": "", - "citations": "2015 NY Slip Op 06090", - "case_name_shorts": "Silver" - }, - { - "case_dates": "2015-07-14", - "case_names": "Saunders v. Guberman", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06089.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "350015/12 13897N 13896N", - "judges": "", - "citations": "2015 NY Slip Op 06089", - "case_name_shorts": "Saunders" - }, - { - "case_dates": "2015-07-14", - "case_names": "People v. Sanders", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06093.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "3679/11 15182 722/12 15181", - "judges": "", - "citations": "2015 NY Slip Op 06093", - "case_name_shorts": "Sanders" - }, - { - "case_dates": "2015-07-14", - "case_names": "People v. Gutierrez", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06092.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "14291 1381/09", - "judges": "", - "citations": "2015 NY Slip Op 06092", - "case_name_shorts": "Gutierrez" - }, - { - "case_dates": "2015-07-14", - "case_names": "Nash v. Port Auth. of N.Y. & N.J.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06095.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "129074/93 15032", - "judges": "Manzanet-Daniels", - "citations": "2015 NY Slip Op 06095", - "case_name_shorts": "Nash" - }, - { - "case_dates": "2015-07-14", - "case_names": "Matter of Verzani", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06098.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "M-286", - "judges": "Per Curiam", - "citations": "2015 NY Slip Op 06098", - "case_name_shorts": "Matter of Verzani" - }, - { - "case_dates": "2015-07-14", - "case_names": "Matter of Kusyk v. New York City Dept. of Bldgs.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06088.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "112036/11 13165 13164", - "judges": "", - "citations": "2015 NY Slip Op 06088", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-14", - "case_names": "Matter of Gilbert", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06097.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "M-6361", - "judges": "Per Curiam", - "citations": "2015 NY Slip Op 06097", - "case_name_shorts": "Matter of Gilbert" - }, - { - "case_dates": "2015-07-14", - "case_names": "Matter of Ehrenfeld", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06096.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "M-1822", - "judges": "Per Curiam", - "citations": "2015 NY Slip Op 06096", - "case_name_shorts": "Matter of Ehrenfeld" - }, - { - "case_dates": "2015-07-14", - "case_names": "Greenman-Pedersen, Inc. v. Berryman & Henigar, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06091.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "14062 403085/09", - "judges": "", - "citations": "2015 NY Slip Op 06091", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-14", - "case_names": "Gansevoort 69 Realty LLC v. Laba", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06094.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15196 651010/13", - "judges": "", - "citations": "2015 NY Slip Op 06094", - "case_name_shorts": "Laba" - }, - { - "case_dates": "2015-07-09", - "case_names": "Transport Workers Union of Greater N.Y. v. Bianco", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06041.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15696 652798/13", - "judges": "", - "citations": "2015 NY Slip Op 06041", - "case_name_shorts": "Bianco" - }, - { - "case_dates": "2015-07-09", - "case_names": "Russo v. Rozenholc", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06029.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "14208 650457/12", - "judges": "", - "citations": "2015 NY Slip Op 06029", - "case_name_shorts": "Russo" - }, - { - "case_dates": "2015-07-09", - "case_names": "People v. Williams", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06031.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15681 584/11", - "judges": "", - "citations": "2015 NY Slip Op 06031", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-09", - "case_names": "People v. Tate", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06039.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15692 4129/08", - "judges": "", - "citations": "2015 NY Slip Op 06039", - "case_name_shorts": "Tate" - }, - { - "case_dates": "2015-07-09", - "case_names": "People v. Slater", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06033.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15684 2261/12", - "judges": "", - "citations": "2015 NY Slip Op 06033", - "case_name_shorts": "Slater" - }, - { - "case_dates": "2015-07-09", - "case_names": "People v. Sanford", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06024.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15672 30149/13", - "judges": "", - "citations": "2015 NY Slip Op 06024", - "case_name_shorts": "Sanford" - }, - { - "case_dates": "2015-07-09", - "case_names": "People v. Rivera", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06026.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15674 1541/12", - "judges": "", - "citations": "2015 NY Slip Op 06026", - "case_name_shorts": "Rivera" - }, - { - "case_dates": "2015-07-09", - "case_names": "People v. Olivero", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06017.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15663 6306/10", - "judges": "", - "citations": "2015 NY Slip Op 06017", - "case_name_shorts": "Olivero" - }, - { - "case_dates": "2015-07-09", - "case_names": "People v. Nashal", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06018.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15665 1687/13", - "judges": "", - "citations": "2015 NY Slip Op 06018", - "case_name_shorts": "Nashal" - }, - { - "case_dates": "2015-07-09", - "case_names": "People v. Montero", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06013.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15657 4921/11", - "judges": "", - "citations": "2015 NY Slip Op 06013", - "case_name_shorts": "Montero" - }, - { - "case_dates": "2015-07-09", - "case_names": "People v. Delgado", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06021.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15669 2491/11", - "judges": "", - "citations": "2015 NY Slip Op 06021", - "case_name_shorts": "Delgado" - }, - { - "case_dates": "2015-07-09", - "case_names": "People v. Cruz", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06038.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15691 602/07", - "judges": "", - "citations": "2015 NY Slip Op 06038", - "case_name_shorts": "Cruz" - }, - { - "case_dates": "2015-07-09", - "case_names": "People v. Batista", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06037.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "4230/07 15690A 3650/08 15690", - "judges": "", - "citations": "2015 NY Slip Op 06037", - "case_name_shorts": "Batista" - }, - { - "case_dates": "2015-07-09", - "case_names": "Michels v. Marton", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06015.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15659 110644/11", - "judges": "", - "citations": "2015 NY Slip Op 06015", - "case_name_shorts": "Michels" - }, - { - "case_dates": "2015-07-09", - "case_names": "Medinas v. MILT Holdings LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06044.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "590701/11 101003/11 15423", - "judges": "Saxe, J.", - "citations": "2015 NY Slip Op 06044", - "case_name_shorts": "Medinas" - }, - { - "case_dates": "2015-07-09", - "case_names": "Matter of Sanders v. Newbauer", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06043.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15698 652/15", - "judges": "", - "citations": "2015 NY Slip Op 06043", - "case_name_shorts": "Newbauer" - }, - { - "case_dates": "2015-07-09", - "case_names": "Matter of New York City Tr. Auth. v. Transport Workers Union of Greater N.Y. Local 100", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06042.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15697N 451546/14", - "judges": "", - "citations": "2015 NY Slip Op 06042", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-09", - "case_names": "Matter of New York City Asbestos Litig.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06027.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "40000/88 -190215/11 -190262/11 15678 190293/11 190294/11 190299/11 190311/11 15677 15676 15675", - "judges": "", - "citations": "2015 NY Slip Op 06027", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-09", - "case_names": "Matter of Nachamie v. Curiam", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06047.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "M-2222", - "judges": "Per Curiam", - "citations": "2015 NY Slip Op 06047", - "case_name_shorts": "Curiam" - }, - { - "case_dates": "2015-07-09", - "case_names": "Matter of Kotick v. Shvachko", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06011.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15074 1202/05", - "judges": "", - "citations": "2015 NY Slip Op 06011", - "case_name_shorts": "Shvachko" - }, - { - "case_dates": "2015-07-09", - "case_names": "Matter of Fisher", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06046.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "M-310 M-5318", - "judges": "Per Curiam", - "citations": "2015 NY Slip Op 06046", - "case_name_shorts": "Matter of Fisher" - }, - { - "case_dates": "2015-07-09", - "case_names": "Matter of Cumberbatch", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06045.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "M-2036", - "judges": "Per Curiam", - "citations": "2015 NY Slip Op 06045", - "case_name_shorts": "Matter of Cumberbatch" - }, - { - "case_dates": "2015-07-09", - "case_names": "Lynn & Cahill LLP v. Witkin", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06020.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15668 114676/09", - "judges": "", - "citations": "2015 NY Slip Op 06020", - "case_name_shorts": "Witkin" - }, - { - "case_dates": "2015-07-09", - "case_names": "Luis S. v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06022.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15670 350045/08", - "judges": "", - "citations": "2015 NY Slip Op 06022", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-09", - "case_names": "Littlejohn v. Dominos Pizza LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06035.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "111186/11 15688A 15688", - "judges": "", - "citations": "2015 NY Slip Op 06035", - "case_name_shorts": "Littlejohn" - }, - { - "case_dates": "2015-07-09", - "case_names": "Levin v. Mercedes-Benz Manhattan, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06025.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15673 108182/11 590791/12 590624/13", - "judges": "", - "citations": "2015 NY Slip Op 06025", - "case_name_shorts": "Levin" - }, - { - "case_dates": "2015-07-09", - "case_names": "Johnson v. Salaj", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06036.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15689 304975/11", - "judges": "", - "citations": "2015 NY Slip Op 06036", - "case_name_shorts": "Salaj" - }, - { - "case_dates": "2015-07-09", - "case_names": "Hoffman v. Biltmore 47 Assoc., LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06016.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "108095/06 -591083/07 -590494/09 15662A 590052/13 590059/13 15662 15661 15660", - "judges": "", - "citations": "2015 NY Slip Op 06016", - "case_name_shorts": "Hoffman" - }, - { - "case_dates": "2015-07-09", - "case_names": "Gem Holdco, LLC v. Ridgeline Energy Servs., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06040.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15694N 650841/13", - "judges": "", - "citations": "2015 NY Slip Op 06040", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-09", - "case_names": "Garcia v. Feigelson", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06032.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15682 104032/10", - "judges": "", - "citations": "2015 NY Slip Op 06032", - "case_name_shorts": "Garcia" - }, - { - "case_dates": "2015-07-09", - "case_names": "Gabriel v. Board of Mgrs. of the Gallery House Condominium", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06019.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "151715/14 15667 15666", - "judges": "", - "citations": "2015 NY Slip Op 06019", - "case_name_shorts": "Gabriel" - }, - { - "case_dates": "2015-07-09", - "case_names": "Forty Cent. Park S., Inc. v. Anza", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06028.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "651841/13 15680N 15679", - "judges": "", - "citations": "2015 NY Slip Op 06028", - "case_name_shorts": "Anza" - }, - { - "case_dates": "2015-07-09", - "case_names": "Estee Lauder Inc. v. OneBeacon Ins. Group, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06030.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15549N 602379/05", - "judges": "", - "citations": "2015 NY Slip Op 06030", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-09", - "case_names": "Duckett v. New York Presbyt. Hosp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06012.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15623 114004/10", - "judges": "", - "citations": "2015 NY Slip Op 06012", - "case_name_shorts": "Duckett" - }, - { - "case_dates": "2015-07-09", - "case_names": "Castlepoint Ins. Co. v. Hilmand Realty, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06014.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15658 156301/12", - "judges": "", - "citations": "2015 NY Slip Op 06014", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-09", - "case_names": "Cangro v. Reitano", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06023.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15671 100381/13", - "judges": "", - "citations": "2015 NY Slip Op 06023", - "case_name_shorts": "Cangro" - }, - { - "case_dates": "2015-07-09", - "case_names": "Barry v. Pepsi-Cola Bottling Co. of N.Y., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06034.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15685 309625/12", - "judges": "", - "citations": "2015 NY Slip Op 06034", - "case_name_shorts": "Barry" - }, - { - "case_dates": "2015-07-07", - "case_names": "Wyle Inc. v. ITT Corp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05877.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "14107 653465/11", - "judges": "", - "citations": "2015 NY Slip Op 05877", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-07", - "case_names": "Ward v. Ruppert Hous. Co., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05893.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15646 115058/10", - "judges": "", - "citations": "2015 NY Slip Op 05893", - "case_name_shorts": "Ward" - }, - { - "case_dates": "2015-07-07", - "case_names": "Progressive Realty Assoc., L.P. v. White", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05878.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15097 151260/14", - "judges": "", - "citations": "2015 NY Slip Op 05878", - "case_name_shorts": "White" - }, - { - "case_dates": "2015-07-07", - "case_names": "People v. Wells", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05884.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "6548/06 -41/07 - 15635 15634 15633", - "judges": "", - "citations": "2015 NY Slip Op 05884", - "case_name_shorts": "Wells" - }, - { - "case_dates": "2015-07-07", - "case_names": "People v. Timmons", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05888.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15639 6818/03", - "judges": "", - "citations": "2015 NY Slip Op 05888", - "case_name_shorts": "Timmons" - }, - { - "case_dates": "2015-07-07", - "case_names": "People v. Paulino", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05898.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1727/08 14168", - "judges": "Degrasse, J.", - "citations": "2015 NY Slip Op 05898", - "case_name_shorts": "Paulino" - }, - { - "case_dates": "2015-07-07", - "case_names": "People v. Pannizzo", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05894.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15647 36054/12", - "judges": "", - "citations": "2015 NY Slip Op 05894", - "case_name_shorts": "Pannizzo" - }, - { - "case_dates": "2015-07-07", - "case_names": "People v. Lara", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05890.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "5117/08 15643 15642", - "judges": "", - "citations": "2015 NY Slip Op 05890", - "case_name_shorts": "Lara" - }, - { - "case_dates": "2015-07-07", - "case_names": "People v. Johnson", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05881.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15628 3799/72 4532/72", - "judges": "", - "citations": "2015 NY Slip Op 05881", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-07", - "case_names": "Matter of Richter v. Cardozo", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05887.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15638 101447/13", - "judges": "", - "citations": "2015 NY Slip Op 05887", - "case_name_shorts": "Cardozo" - }, - { - "case_dates": "2015-07-07", - "case_names": "Matter of Metropolitan Transp. Auth.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05897.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "401189/08 -401190/08 15655N 401191/08 15654N 15653N", - "judges": "", - "citations": "2015 NY Slip Op 05897", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-07", - "case_names": "Matter of Jahmeka W.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05876.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15618", - "judges": "", - "citations": "2015 NY Slip Op 05876", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-07", - "case_names": "Matter of Imani G. (Pedro G.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05883.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15632 15631 15630", - "judges": "", - "citations": "2015 NY Slip Op 05883", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-07", - "case_names": "Matter of Carlos L. v. Diomaris C.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05885.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15636", - "judges": "", - "citations": "2015 NY Slip Op 05885", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-07", - "case_names": "Matter of Ansonia Assoc. L.P. v. Unwin", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05880.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15531 570033/14 50451/12", - "judges": "", - "citations": "2015 NY Slip Op 05880", - "case_name_shorts": "Unwin" - }, - { - "case_dates": "2015-07-07", - "case_names": "Lipin v. Danske Bank", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05896.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "155308/13 -100807/13 ---15652NB 15652NA 15652N 15651N 15650N 15649N", - "judges": "", - "citations": "2015 NY Slip Op 05896", - "case_name_shorts": "Lipin" - }, - { - "case_dates": "2015-07-07", - "case_names": "Liberty Mut. Ins. Co. v. Five Boro Med. Equip., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05891.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15644", - "judges": "", - "citations": "2015 NY Slip Op 05891", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-07", - "case_names": "LAIG v. Medanito S.A.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05892.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15645 160103/14", - "judges": "", - "citations": "2015 NY Slip Op 05892", - "case_name_shorts": "LAIG" - }, - { - "case_dates": "2015-07-07", - "case_names": "Jackson v. Whitson's Food Corp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05889.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "303448/10 15640A 15640", - "judges": "", - "citations": "2015 NY Slip Op 05889", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-07", - "case_names": "El-Ad 250 W. LLC v. Zurich Am. Ins. Co.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05886.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15637 652964/13", - "judges": "", - "citations": "2015 NY Slip Op 05886", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-07", - "case_names": "Davis v. Nyack Hosp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05882.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15629 106956/08", - "judges": "", - "citations": "2015 NY Slip Op 05882", - "case_name_shorts": "Davis" - }, - { - "case_dates": "2015-07-07", - "case_names": "Carey & Assoc. LLC v. 521 Fifth Ave. Partners, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05895.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15648 650165/08", - "judges": "", - "citations": "2015 NY Slip Op 05895", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-07", - "case_names": "Aziz v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05879.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "23810/04 15378 15377", - "judges": "", - "citations": "2015 NY Slip Op 05879", - "case_name_shorts": "Aziz" - }, - { - "case_dates": "2015-07-02", - "case_names": "Yannetti v. Hammerstein Ballroom", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05765.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "109955/09 15619A 15619", - "judges": "", - "citations": "2015 NY Slip Op 05765", - "case_name_shorts": "Yannetti" - }, - { - "case_dates": "2015-07-02", - "case_names": "Vogel v. Martos Dev., LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05756.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15601 310447/11", - "judges": "", - "citations": "2015 NY Slip Op 05756", - "case_name_shorts": "Vogel" - }, - { - "case_dates": "2015-07-02", - "case_names": "Valji v. Valji", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05758.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15607 311566/14", - "judges": "", - "citations": "2015 NY Slip Op 05758", - "case_name_shorts": "Valji" - }, - { - "case_dates": "2015-07-02", - "case_names": "Structure Tone, Inc. v. National Cas. Co.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05760.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "154651/12 15610 15609", - "judges": "", - "citations": "2015 NY Slip Op 05760", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Smith v. New York City Hous. Auth.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05776.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15579 6417/05", - "judges": "", - "citations": "2015 NY Slip Op 05776", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Santiago v. New York City Dept. of Educ.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05779.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "103976/12 15584 15583", - "judges": "", - "citations": "2015 NY Slip Op 05779", - "case_name_shorts": "Santiago" - }, - { - "case_dates": "2015-07-02", - "case_names": "Rivera v. Victoria's Secret Stores, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05789.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15596 155874/12", - "judges": "", - "citations": "2015 NY Slip Op 05789", - "case_name_shorts": "Rivera" - }, - { - "case_dates": "2015-07-02", - "case_names": "People v. Stewart-Hemphil", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05761.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15611 5137/11", - "judges": "", - "citations": "2015 NY Slip Op 05761", - "case_name_shorts": "Stewart-Hemphil" - }, - { - "case_dates": "2015-07-02", - "case_names": "People v. Smith", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05766.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15620 2163/13", - "judges": "", - "citations": "2015 NY Slip Op 05766", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "People v. Rutledge", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05781.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15586 2903/13", - "judges": "", - "citations": "2015 NY Slip Op 05781", - "case_name_shorts": "Rutledge" - }, - { - "case_dates": "2015-07-02", - "case_names": "People v. Johnson", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05788.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15594 4759/12", - "judges": "", - "citations": "2015 NY Slip Op 05788", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "People v. Hawkins", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05775.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15578 1633/07", - "judges": "", - "citations": "2015 NY Slip Op 05775", - "case_name_shorts": "Hawkins" - }, - { - "case_dates": "2015-07-02", - "case_names": "People v. Cuenea", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05768.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15622 4140N/11", - "judges": "", - "citations": "2015 NY Slip Op 05768", - "case_name_shorts": "Cuenea" - }, - { - "case_dates": "2015-07-02", - "case_names": "People v. Covington", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05764.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15617 5715/10", - "judges": "", - "citations": "2015 NY Slip Op 05764", - "case_name_shorts": "Covington" - }, - { - "case_dates": "2015-07-02", - "case_names": "People v. Colon", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05786.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15591 3094/11", - "judges": "", - "citations": "2015 NY Slip Op 05786", - "case_name_shorts": "Colon" - }, - { - "case_dates": "2015-07-02", - "case_names": "People v. Algarin", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05755.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15600 4335/12", - "judges": "", - "citations": "2015 NY Slip Op 05755", - "case_name_shorts": "Algarin" - }, - { - "case_dates": "2015-07-02", - "case_names": "Overseas Shipholding Group, Inc. v. Proskauer Rose, LLP", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05772.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "650765/14 14412A 14412", - "judges": "", - "citations": "2015 NY Slip Op 05772", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Oduro v. Bronxdale Outer, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05783.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15588 300992/12", - "judges": "", - "citations": "2015 NY Slip Op 05783", - "case_name_shorts": "Oduro" - }, - { - "case_dates": "2015-07-02", - "case_names": "Mergent Servs. v. ITEX Corp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05763.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15616 601777/07", - "judges": "", - "citations": "2015 NY Slip Op 05763", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Matter of Williams v. New York City Hous. Auth.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05784.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15589 100189/14", - "judges": "", - "citations": "2015 NY Slip Op 05784", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Matter of Rhames v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05759.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15608 308813/12", - "judges": "", - "citations": "2015 NY Slip Op 05759", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Matter of Merkin v. Berman", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05785.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15590 652415/12", - "judges": "", - "citations": "2015 NY Slip Op 05785", - "case_name_shorts": "Berman" - }, - { - "case_dates": "2015-07-02", - "case_names": "Matter of Jalicia G. (Jacqueline G.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05757.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15606 15605 15604 15603 15602", - "judges": "", - "citations": "2015 NY Slip Op 05757", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Matter of Jake M.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05777.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15580", - "judges": "", - "citations": "2015 NY Slip Op 05777", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Matter of Haubenstock v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05787.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15592 651892/13", - "judges": "", - "citations": "2015 NY Slip Op 05787", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Matter of Ephraim", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05773.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "14676 4109/06", - "judges": "", - "citations": "2015 NY Slip Op 05773", - "case_name_shorts": "Matter of Ephraim" - }, - { - "case_dates": "2015-07-02", - "case_names": "Matter of Avella v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05790.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "100161/14 15026", - "judges": "Mazzarelli, J.p.", - "citations": "2015 NY Slip Op 05790", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Matter of 12-14 E. 64th Owners Corp. v. Hixon", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05774.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "14924 570432/11", - "judges": "", - "citations": "2015 NY Slip Op 05774", - "case_name_shorts": "Hixon" - }, - { - "case_dates": "2015-07-02", - "case_names": "Lau v. Lazar", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05770.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15626 651648/13", - "judges": "", - "citations": "2015 NY Slip Op 05770", - "case_name_shorts": "Lau" - }, - { - "case_dates": "2015-07-02", - "case_names": "Kohan v. Nehmadi", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05780.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15585 104185/11", - "judges": "", - "citations": "2015 NY Slip Op 05780", - "case_name_shorts": "Kohan" - }, - { - "case_dates": "2015-07-02", - "case_names": "Knopf v. Sanford", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05762.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15613 113227/09 15074/11", - "judges": "", - "citations": "2015 NY Slip Op 05762", - "case_name_shorts": "Knopf" - }, - { - "case_dates": "2015-07-02", - "case_names": "Guzman v. Broadway 922 Enters., LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05782.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15587 305778/11", - "judges": "", - "citations": "2015 NY Slip Op 05782", - "case_name_shorts": "Guzman" - }, - { - "case_dates": "2015-07-02", - "case_names": "Forbes v. Giacomo", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05778.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "157640/12 15582 15581", - "judges": "", - "citations": "2015 NY Slip Op 05778", - "case_name_shorts": "Forbes" - }, - { - "case_dates": "2015-07-02", - "case_names": "Duckett v. New York Presbyt. Hosp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05769.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15623 114004/10", - "judges": "", - "citations": "2015 NY Slip Op 05769", - "case_name_shorts": "Duckett" - }, - { - "case_dates": "2015-07-02", - "case_names": "Domingez v. Zinnar", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05771.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15627N 116709/06", - "judges": "", - "citations": "2015 NY Slip Op 05771", - "case_name_shorts": "Domingez" - }, - { - "case_dates": "2015-07-02", - "case_names": "Andejo Corp. v. South St. Seaport Ltd. Partnership", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05767.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15621 603707/04", - "judges": "", - "citations": "2015 NY Slip Op 05767", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04359", + "case_name_shorts": "", + "authors": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyappdiv_1st_example.html b/tests/examples/opinions/united_states/nyappdiv_1st_example.html index ffca6aa09..13086a877 100644 --- a/tests/examples/opinions/united_states/nyappdiv_1st_example.html +++ b/tests/examples/opinions/united_states/nyappdiv_1st_example.html @@ -1,929 +1,117 @@ - - + - - - -Appellate Division, First Department, Decisions - - - - - - - - - - - - - - - - - - - - - - +LRB Search Results + + + + + + +
    - - - -
    - - - -
    - - - - +

    + -
    - - - - -
    - -
    - - - - -
    - - - - - -
    - - - - - -
    - -   - -
    -
    - - - - - - - - - - -
    -
    -
    - - - - - -
    - - -
    Archives
    -
    -
     
    - -
    - - - + + + + - -
    - -
      July, 2015  
    - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided July 28, 2015
    Title -Judge -Docket No. -Slip Opinion No. -
    Ganaj v New York City Health & Hosps. Corp.15072 303203/082015 NY Slip Op 06294
    Noor v City of New York15080 102899/072015 NY Slip Op 06295
    Tower Ins. Co. of N.Y. v Brown15339 153797/122015 NY Slip Op 06296
    Garrison Special Opportunities Fund LP v Fidelity Natl. Card Servs., Inc.15140 603081/082015 NY Slip Op 06297
    Amacio v State of New York985462015 NY Slip Op 06298
    Lee v Woori BankTom, J.P.154157/14 14872 2015 NY Slip Op 06299
    Matter of RosabiancaPer CuriamM-1874 2015 NY Slip Op 06300
    Matter of TeaguePer CuriamM-1137 2015 NY Slip Op 06301


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided July 21, 2015
    Title -Judge -Docket No. -Slip Opinion No. -
    U.S. Bank, N.A. v Landman13455 381515/082015 NY Slip Op 06194
    Smoke v Windemere Owners LLC15471 113051/112015 NY Slip Op 06195
    Chekowsky v Windemere Owners, LLC106532/11 15473 154722015 NY Slip Op 06196
    Dreisinger v Teglasi14989 308023/102015 NY Slip Op 06197
    MMA Meadows at Green Tree, LLC v Millrun Apts., LLC653943/13 15381 153802015 NY Slip Op 06198
    People v Maxwell15575 1751/102015 NY Slip Op 06199
    For The People Theaters of N.Y. Inc. v City of New YorkKapnick, J.121197/02 121080/02 12158 2015 NY Slip Op 06200
    381 Search Warrants Directed to Facebook, Inc. v New York County Dist. Attorney's Off.Renwick, J.30207/13 30178/14 2015 NY Slip Op 06201


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided July 14, 2015
    Title -Judge -Docket No. -Slip Opinion No. -
    Matter of Kusyk v New York City Dept. of Bldgs.112036/11 13165 131642015 NY Slip Op 06088
    Saunders v Guberman350015/12 13897N 13896N2015 NY Slip Op 06089
    Silver v Whitney Partners LLC14029 100020/132015 NY Slip Op 06090
    Greenman-Pedersen, Inc. v Berryman & Henigar, Inc.14062 403085/092015 NY Slip Op 06091
    People v Gutierrez14291 1381/092015 NY Slip Op 06092
    People v Sanders3679/11 15182 722/12 151812015 NY Slip Op 06093
    Gansevoort 69 Realty LLC v Laba15196 651010/132015 NY Slip Op 06094
    Nash v Port Auth. of N.Y. & N.J.Manzanet-Daniels129074/93 15032 2015 NY Slip Op 06095
    Matter of EhrenfeldPer CuriamM-1822 2015 NY Slip Op 06096
    Matter of GilbertPer CuriamM-6361 2015 NY Slip Op 06097
    Matter of VerzaniPer CuriamM-286 2015 NY Slip Op 06098


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided July 9, 2015
    Title -Judge -Docket No. -Slip Opinion No. -
    Matter of Kotick v Shvachko15074 1202/052015 NY Slip Op 06011
    Duckett v New York Presbyt. Hosp.15623 114004/102015 NY Slip Op 06012
    People v Montero15657 4921/112015 NY Slip Op 06013
    Castlepoint Ins. Co. v Hilmand Realty, LLC15658 156301/122015 NY Slip Op 06014
    Michels v Marton15659 110644/112015 NY Slip Op 06015
    Hoffman v Biltmore 47 Assoc., LLC108095/06 -591083/07 -590494/09 15662A 590052/13 590059/13 15662 15661 156602015 NY Slip Op 06016
    People v Olivero15663 6306/102015 NY Slip Op 06017
    People v Nashal15665 1687/132015 NY Slip Op 06018
    Gabriel v Board of Mgrs. of the Gallery House Condominium151715/14 15667 156662015 NY Slip Op 06019
    Lynn & Cahill LLP v Witkin15668 114676/092015 NY Slip Op 06020
    People v Delgado15669 2491/112015 NY Slip Op 06021
    Luis S. v City of New York15670 350045/082015 NY Slip Op 06022
    Cangro v Reitano15671 100381/132015 NY Slip Op 06023
    People v Sanford15672 30149/132015 NY Slip Op 06024
    Levin v Mercedes-Benz Manhattan, Inc.15673 108182/11 590791/12 590624/132015 NY Slip Op 06025
    People v Rivera15674 1541/122015 NY Slip Op 06026
    Matter of New York City Asbestos Litig.40000/88 -190215/11 -190262/11 15678 190293/11 190294/11 190299/11 190311/11 15677 15676 156752015 NY Slip Op 06027
    Forty Cent. Park S., Inc. v Anza651841/13 15680N 156792015 NY Slip Op 06028
    Russo v Rozenholc14208 650457/122015 NY Slip Op 06029
    Estee Lauder Inc. v OneBeacon Ins. Group, LLC15549N 602379/052015 NY Slip Op 06030
    People v Williams15681 584/112015 NY Slip Op 06031
    Garcia v Feigelson15682 104032/102015 NY Slip Op 06032
    People v Slater15684 2261/122015 NY Slip Op 06033
    Barry v Pepsi-Cola Bottling Co. of N.Y., Inc.15685 309625/122015 NY Slip Op 06034
    Littlejohn v Dominos Pizza LLC111186/11 15688A 156882015 NY Slip Op 06035
    Johnson v Salaj15689 304975/112015 NY Slip Op 06036
    People v Batista4230/07 15690A 3650/08 156902015 NY Slip Op 06037
    People v Cruz15691 602/072015 NY Slip Op 06038
    People v Tate15692 4129/082015 NY Slip Op 06039
    Gem Holdco, LLC v Ridgeline Energy Servs., Inc.15694N 650841/132015 NY Slip Op 06040
    Transport Workers Union of Greater N.Y. v Bianco15696 652798/132015 NY Slip Op 06041
    Matter of New York City Tr. Auth. v Transport Workers Union of Greater N.Y. Local 10015697N 451546/142015 NY Slip Op 06042
    Matter of Sanders v Newbauer15698 652/152015 NY Slip Op 06043
    Medinas v MILT Holdings LLCSaxe, J.590701/11 101003/11 15423 2015 NY Slip Op 06044
    Matter of CumberbatchPer CuriamM-2036 2015 NY Slip Op 06045
    Matter of FisherPer CuriamM-310 M-5318 2015 NY Slip Op 06046
    Matter of Nachamie v CuriamPer CuriamM-2222 2015 NY Slip Op 06047


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided July 7, 2015
    Title -Judge -Docket No. -Slip Opinion No. -
    Matter of Jahmeka W.156182015 NY Slip Op 05876
    Wyle Inc. v ITT Corp.14107 653465/112015 NY Slip Op 05877
    Progressive Realty Assoc., L.P. v White15097 151260/142015 NY Slip Op 05878
    Aziz v City of New York23810/04 15378 153772015 NY Slip Op 05879
    Matter of Ansonia Assoc. L.P. v Unwin15531 570033/14 50451/122015 NY Slip Op 05880
    People v Johnson15628 3799/72 4532/722015 NY Slip Op 05881
    Davis v Nyack Hosp.15629 106956/082015 NY Slip Op 05882
    Matter of Imani G. (Pedro G.)15632 15631 156302015 NY Slip Op 05883
    People v Wells6548/06 -41/07 - 15635 15634 156332015 NY Slip Op 05884
    Matter of Carlos L. v Diomaris C.156362015 NY Slip Op 05885
    El-Ad 250 W. LLC v Zurich Am. Ins. Co.15637 652964/132015 NY Slip Op 05886
    Matter of Richter v Cardozo15638 101447/132015 NY Slip Op 05887
    People v Timmons15639 6818/032015 NY Slip Op 05888
    Jackson v Whitson's Food Corp.303448/10 15640A 156402015 NY Slip Op 05889
    People v Lara5117/08 15643 156422015 NY Slip Op 05890
    Liberty Mut. Ins. Co. v Five Boro Med. Equip., Inc.156442015 NY Slip Op 05891
    LAIG v Medanito S.A.15645 160103/142015 NY Slip Op 05892
    Ward v Ruppert Hous. Co., Inc.15646 115058/102015 NY Slip Op 05893
    People v Pannizzo15647 36054/122015 NY Slip Op 05894
    Carey & Assoc. LLC v 521 Fifth Ave. Partners, LLC15648 650165/082015 NY Slip Op 05895
    Lipin v Danske Bank155308/13 -100807/13 ---15652NB 15652NA 15652N 15651N 15650N 15649N2015 NY Slip Op 05896
    Matter of Metropolitan Transp. Auth.401189/08 -401190/08 15655N 401191/08 15654N 15653N2015 NY Slip Op 05897
    People v PaulinoDegrasse, J.1727/08 14168 2015 NY Slip Op 05898


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided July 2, 2015
    Title -Judge -Docket No. -Slip Opinion No. -
    People v Algarin15600 4335/122015 NY Slip Op 05755
    Vogel v Martos Dev., LLC15601 310447/112015 NY Slip Op 05756
    Matter of Jalicia G. (Jacqueline G.)15606 15605 15604 15603 156022015 NY Slip Op 05757
    Valji v Valji15607 311566/142015 NY Slip Op 05758
    Matter of Rhames v City of New York15608 308813/122015 NY Slip Op 05759
    Structure Tone, Inc. v National Cas. Co.154651/12 15610 156092015 NY Slip Op 05760
    People v Stewart-Hemphil15611 5137/112015 NY Slip Op 05761
    Knopf v Sanford15613 113227/09 15074/112015 NY Slip Op 05762
    Mergent Servs. v ITEX Corp.15616 601777/072015 NY Slip Op 05763
    People v Covington15617 5715/102015 NY Slip Op 05764
    Yannetti v Hammerstein Ballroom109955/09 15619A 156192015 NY Slip Op 05765
    People v Smith15620 2163/132015 NY Slip Op 05766
    Andejo Corp. v South St. Seaport Ltd. Partnership15621 603707/042015 NY Slip Op 05767
    People v Cuenea15622 4140N/112015 NY Slip Op 05768
    Duckett v New York Presbyt. Hosp.15623 114004/102015 NY Slip Op 05769
    Lau v Lazar15626 651648/132015 NY Slip Op 05770
    Domingez v Zinnar15627N 116709/062015 NY Slip Op 05771
    Overseas Shipholding Group, Inc. v Proskauer Rose, LLP650765/14 14412A 144122015 NY Slip Op 05772
    Matter of Ephraim14676 4109/062015 NY Slip Op 05773
    Matter of 12-14 E. 64th Owners Corp. v Hixon14924 570432/112015 NY Slip Op 05774
    People v Hawkins15578 1633/072015 NY Slip Op 05775
    Smith v New York City Hous. Auth.15579 6417/052015 NY Slip Op 05776
    Matter of Jake M.155802015 NY Slip Op 05777
    Forbes v Giacomo157640/12 15582 155812015 NY Slip Op 05778
    Santiago v New York City Dept. of Educ.103976/12 15584 155832015 NY Slip Op 05779
    Kohan v Nehmadi15585 104185/112015 NY Slip Op 05780
    People v Rutledge15586 2903/132015 NY Slip Op 05781
    Guzman v Broadway 922 Enters., LLC15587 305778/112015 NY Slip Op 05782
    Oduro v Bronxdale Outer, Inc.15588 300992/122015 NY Slip Op 05783
    Matter of Williams v New York City Hous. Auth.15589 100189/142015 NY Slip Op 05784
    Matter of Merkin v Berman15590 652415/122015 NY Slip Op 05785
    People v Colon15591 3094/112015 NY Slip Op 05786
    Matter of Haubenstock v City of New York15592 651892/132015 NY Slip Op 05787
    People v Johnson15594 4759/122015 NY Slip Op 05788
    Rivera v Victoria's Secret Stores, LLC15596 155874/122015 NY Slip Op 05789
    Matter of Avella v City of New YorkMazzarelli, J.p.100161/14 15026 2015 NY Slip Op 05790


    - - - - - - - - -

    - - - - - - +
     Slip Decisions Search Results
    + + +
    + + + + + + + + + + + +
    Search Criteria
        Decision Start Date : + 09/04/2024
        Court : + App Div, 1st Dept

    -
    E-mail the Law
-Reporting Bureau -
    -
    -New York State Law Reporting Bureau
    -17 Lodge Street, Albany, NY 12207
    -phone: (518) 453-6900
    -fax: (518) 426-1640 -
    - -
    - - -
    -
    - -
     
     
     
    + + + + + + +
    + Total number of records found: 5 + +       


    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Party NameDecision DateCourt   Official Citation   Slip Number   JudgeOpn/Mot
    GCA Advisors, LLC v Intersections, Inc.09/05/2024App Div, 1st Dept2024 NYSlipOp 04359Opinion
    People v Leslie09/05/2024App Div, 1st Dept2024 NYSlipOp 04360Opinion
    People v Perkins09/05/2024App Div, 1st Dept2024 NYSlipOp 04361Opinion
    Picchioni v Sabur09/05/2024App Div, 1st Dept2024 NYSlipOp 04362ROSADO, J.Opinion
    Ria R Squared, Inc. v DW Partners, LP09/05/2024App Div, 1st Dept2024 NYSlipOp 04363Opinion
    +
    +
    + diff --git a/tests/examples/opinions/united_states/nyappdiv_2nd_eample.html b/tests/examples/opinions/united_states/nyappdiv_2nd_eample.html deleted file mode 100644 index cc62cc480..000000000 --- a/tests/examples/opinions/united_states/nyappdiv_2nd_eample.html +++ /dev/null @@ -1,1805 +0,0 @@ - - - - - -Appellate Division, Second Department, Decisions - - - - - - - - - - - - - - - - -
    2003
    2004
    2005
    2006
    2007
    2008
    2009
    2010
    2011
    2012
    2013
    2014
     
    - - - - - - - - -
    - - - -
    - - - - - -
    - - - - -
    - -
    - - - - -
    -
    - - - - -
    - - - - - -
    - -   - -
    -
    - - - - - - - - - -
    -
    -
    -
    - - - - - -
    - - -
    Archives
    -
    -
     
    -
    - - - - -
    - -
      May, 2014  
    - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided May 28, 2014
    Title -Judge -Docket No. -Slip Opinion No. -
    Abreu v Metropolitan Transp. Auth.2012-095672014 NY Slip Op 03787
    American Airlines Fed. Credit Union v Mohamed2013-000812014 NY Slip Op 03788
    Apladenaki v Greenpoint Mtge. Funding, Inc.2010-090282014 NY Slip Op 03789
    Apladenaki v Greenpoint Mtge. Funding, Inc.2012-031772014 NY Slip Op 03790
    Kolb v LJ Rabinowitz, CPA2013-041282014 NY Slip Op 03791
    Collazo v State of New York2012-101542014 NY Slip Op 03792
    Daniels v City of New York2012-032502014 NY Slip Op 03793
    Deutsche Bank Natl. Trust Co. v Joseph2012-032932014 NY Slip Op 03794
    DiMaggio v Cataletto2012-107572014 NY Slip Op 03795
    Gomez v Our Lady of Fatima Church2012-112432014 NY Slip Op 03796
    Iacono v Iacono2013-095032014 NY Slip Op 03797
    Jean v Joseph2012-034352014 NY Slip Op 03798
    KeyBank Natl. Assn. v Chapman Steamer Collective, LLC2013-001712014 NY Slip Op 03799
    Lane Constr. Co., Inc. v Chayat2013-023052014 NY Slip Op 03800
    Lehneis v Neill2012-110022014 NY Slip Op 03801
    Mannino Dev., Inc. v Linares2012-026882014 NY Slip Op 03802
    Margolin v Margolin2012-023272014 NY Slip Op 03803
    McNeil v HMB E. 40th St. Corp.2013-029162014 NY Slip Op 03804
    Mobarak v Mowad2012-113502014 NY Slip Op 03805
    Mondshein v Mondshein2012-100832014 NY Slip Op 03806
    Montalvo v United Parcel Serv., Inc.2013-062482014 NY Slip Op 03807
    Nagan Constr., Inc. v Monsignor McClancy Mem. High School2012-102922014 NY Slip Op 03808
    Neve v City of New York2012-066392014 NY Slip Op 03809
    Neves v Katonah-Lewisboro School Dist.2013-001052014 NY Slip Op 03810
    New Century Mtge. Corp. v Corriette2013-035352014 NY Slip Op 03811
    New York Univ. Hospital-Tisch Inst. v Government Employees Ins. Co.2011-103802014 NY Slip Op 03812
    O'Rourke v Carucci2012-061332014 NY Slip Op 03813
    Ortiz v 82-90 Broadway Realty Corp.2013-006062014 NY Slip Op 03814
    People v DeJesus2012-024862014 NY Slip Op 03815
    People v Patronick2013-001962014 NY Slip Op 03816
    People v Rotunno2013-073582014 NY Slip Op 03817
    Ragins v Hospitals Ins. Co., Inc.2011-069242014 NY Slip Op 03818
    Rodrigues v Samaras2014-001462014 NY Slip Op 03819
    Sanabria v Borges2012-109232014 NY Slip Op 03820
    Santoro v Geico2012-107402014 NY Slip Op 03821
    Texas 1845, LLC v Kyaw2012-086992014 NY Slip Op 03822
    Texas 1845, LLC v Kyaw2013-032962014 NY Slip Op 03823
    Trader v New York City Hous. Auth.2013-019842014 NY Slip Op 03824
    Vaccaro v Weinstein2012-056102014 NY Slip Op 03825
    Waldorf v Waldorf2012-097722014 NY Slip Op 03826
    Weinstein v Nicolosi2012-111042014 NY Slip Op 03827
    Yassa v Awad2013-005262014 NY Slip Op 03828
    Zelichenko v 301 Oriental Blvd., LLC2013-068172014 NY Slip Op 03829
    Zellner v Odyl, LLC2013-026132014 NY Slip Op 03830
    Matter of Eddie Z. B. (Henrietta W.)2012-047982014 NY Slip Op 03831
    Matter of Naydia A. B. (Jessica C.)2012-088822014 NY Slip Op 03832
    Matter of Jessica C. (Johanna B.)2013-045062014 NY Slip Op 03833
    Matter of Capece v Schultz2012-032572014 NY Slip Op 03834
    Matter of Brandon F.2013-072902014 NY Slip Op 03835
    Matter of Feldman v Torres2013-069502014 NY Slip Op 03836
    Matter of Travis G. (Carmen M.)2013-023242014 NY Slip Op 03837
    Matter of Gutman v Schmidt2014-030422014 NY Slip Op 03838
    Matter of Zebadiah Z.W.A. H.2013-028922014 NY Slip Op 03839
    Matter of Latisha T'Keyah J. (Monie J.)2012-109332014 NY Slip Op 03840
    Matter of Katz v Katz2013-017502014 NY Slip Op 03841
    Matter of Shamik M.2013-048212014 NY Slip Op 03842
    Matter of McAvoy v Klein2012-04744,2014 NY Slip Op 03843
    Matter of McCarthy v Brittingham-Bank2013-041962014 NY Slip Op 03844
    Matter of New v Sharma2013-015242014 NY Slip Op 03845
    Matter of Rosenblum v Tallman Fire Dist.2014-014542014 NY Slip Op 03846
    Matter of Shydasha J. S. (Smith)2013-031062014 NY Slip Op 03847
    Matter of SledjeskiPer Curiam.2013-066892014 NY Slip Op 03848
    Matter of Sorenson v Cassano2012-109152014 NY Slip Op 03849
    Matter of Zarvela v Banks2012-100202014 NY Slip Op 03850
    People v Avila2012-108622014 NY Slip Op 03851
    People v Benloss2013-002392014 NY Slip Op 03852
    People v Casarrubia2012-062412014 NY Slip Op 03853
    People v Charles2010-095512014 NY Slip Op 03854
    People v Currie2006-091042014 NY Slip Op 03855
    People v DiPippo2012-082672014 NY Slip Op 03856
    People v Frazier2010-033002014 NY Slip Op 03857
    People v Fulcher2007-110702014 NY Slip Op 03858
    People v Gary2010-073982014 NY Slip Op 03859
    People v Hicks2013-082732014 NY Slip Op 03860
    People v Jacob2011-110832014 NY Slip Op 03861
    People v Katehis2011-119582014 NY Slip Op 03862
    People v Mazariego2012-070252014 NY Slip Op 03863
    People v Mazyck2013-031362014 NY Slip Op 03864
    People v Munford2004-097702014 NY Slip Op 03865
    People v Oliphant2011-027932014 NY Slip Op 03866
    People v Pierre2007-008992014 NY Slip Op 03867
    People v Popal2011-020932014 NY Slip Op 03868
    People v Rasheed2012-066912014 NY Slip Op 03869
    People v Sabo2012-055442014 NY Slip Op 03870
    People v Statini2013-050582014 NY Slip Op 03871
    People v Tucker2010-045872014 NY Slip Op 03872
    People v Washington2010-118242014 NY Slip Op 03873
    People v Watkins2011-107722014 NY Slip Op 03874


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided May 21, 2014
    Title -Judge -Docket No. -Slip Opinion No. -
    Arcamone-Makinano v Britton Prop., Inc.2012-103762014 NY Slip Op 03644
    Clark v Amboy Bus Co.2013-000732014 NY Slip Op 03645
    Delvalle v Mercedes Benz USA, LLC2012-080382014 NY Slip Op 03646
    Delvalle v Mercedes Benz USA, LLC2013-044502014 NY Slip Op 03647
    Fink v DeAngelis2012-106182014 NY Slip Op 03648
    Firdous Oriental Rugs, Inc. v M & G Brokerage, Inc.2012-114162014 NY Slip Op 03649
    Francis v Super Clean Laundromat, Inc.2012-012762014 NY Slip Op 03650
    Frederic v City of New York2012-049562014 NY Slip Op 03651
    Godoy v Central Islip Union Free Sch. Dist.2012-098232014 NY Slip Op 03652
    Gooden v Gooden2012-051562014 NY Slip Op 03653
    Hasson v S.B.J. Assoc., LLC2012-104172014 NY Slip Op 03654
    Island Tennis, LP v Varilease Fin., Inc.2013-041482014 NY Slip Op 03655
    Javid v Sclafmore Constr.2013-016202014 NY Slip Op 03656
    Jessabell Realty Corp. v Gonzales2012-050662014 NY Slip Op 03657
    JP Morgan Chase Bank, N.A. v Smith Elec. Contr., Inc.2013-010202014 NY Slip Op 03658
    Karimov v Brown Harris Stevens Residential Mgt., LLC2013-061972014 NY Slip Op 03659
    Kelly v Karsenty2013-001782014 NY Slip Op 03660
    Lin v City of New York2012-059812014 NY Slip Op 03661
    Lizjan, Inc. v Sahn Ward Coschignano & Baker, PLLC2012-096062014 NY Slip Op 03662
    Maloney v Farris2012-083552014 NY Slip Op 03663
    Marcum, LLP v Silva2012-111652014 NY Slip Op 03664
    Marcum, LLP v Silva2013-049842014 NY Slip Op 03665
    Meyer v Staten Is. Univ. Hosp.2012-103942014 NY Slip Op 03666
    Mount Sinai Hosp. v Dust Tr., Inc.2011-104062014 NY Slip Op 03667
    Neckles Bldrs., Inc. v Turner2013-032722014 NY Slip Op 03668
    Ozkurt v Hyatt Realty, LLC2012-103842014 NY Slip Op 03669
    People v Rosen2013-081152014 NY Slip Op 03670
    Persaud v Palmer2012-086652014 NY Slip Op 03671
    Qurashi v Reliastar Life Ins. Co. of N.Y.2012-084352014 NY Slip Op 03672
    Ramirez v Genovese2012-071282014 NY Slip Op 03673
    Ramirez v McAllister2013-075102014 NY Slip Op 03674
    Rogers v Bloomingdale's, Inc.2012-113782014 NY Slip Op 03675
    Scalogna v Osipov2012-087482014 NY Slip Op 03676
    Schofield v Edward B. Borden, M.D., P.C.2012-099642014 NY Slip Op 03677
    Twaddell v Drop & Lock Stor. Co., Inc.2013-088102014 NY Slip Op 03678
    Vaughn v Veolia Transp., Inc.2013-057362014 NY Slip Op 03679
    Zanani v Schvimmer2012-109242014 NY Slip Op 03680
    Zhiwei Mao v Krantz & Levinson Realty Corp.2013-075052014 NY Slip Op 03681
    Matter of Brown v People of State of N.Y.2014-02186,2014 NY Slip Op 03682
    Matter of Country-Wide Ins. Co. v Sharon Bloomfield-Palmer2013-056642014 NY Slip Op 03683
    Matter of Hon v Tin Yat Chin2013-021262014 NY Slip Op 03684
    Matter of Huntley v Bartlett2014-018372014 NY Slip Op 03685
    Matter of Kennedy v New York State Bd. of Parole2013-031702014 NY Slip Op 03686
    Matter of Mazur Bros. Realty, LLC v State of New York2013-009082014 NY Slip Op 03687
    Matter of McEvoy v Oyster Bay Fire Co. No. 12012-053772014 NY Slip Op 03688
    Matter of New York City Tr. Auth. v Transport Workers Union of Greater N.Y., Local 1002012-053772014 NY Slip Op 03689
    Matter of Marvin PChambers2012-083922014 NY Slip Op 03690
    Matter of Evelyn R. (Franklin R.)2013-007712014 NY Slip Op 03691
    Matter of Rodriguez v Justices of the Supreme Ct. of the State of N.Y., Queens County2014-026542014 NY Slip Op 03692
    Matter of Symes v New York State Bd. of Parole2013-069172014 NY Slip Op 03693
    Matter of Jayson V.2013-071312014 NY Slip Op 03694
    Matter of Yuan v Sawyer2013-083002014 NY Slip Op 03695
    People v Brown2011-070922014 NY Slip Op 03696
    People v Chery2012-050432014 NY Slip Op 03697
    People v Hiraeta2010-045642014 NY Slip Op 03698
    People v Jackson2011-110762014 NY Slip Op 03699
    People v Jarvis2012-029752014 NY Slip Op 03700
    People v McFarlane2010-079432014 NY Slip Op 03701
    People v Mitchell2012-084502014 NY Slip Op 03702
    People v Mitchell2011-118152014 NY Slip Op 03703
    People v Thomas2012-083522014 NY Slip Op 03704


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided May 14, 2014
    Title -Judge -Docket No. -Slip Opinion No. -
    Airtight Sec. Sys., Inc. v 2350, LLC2012-110062014 NY Slip Op 03466
    Alvarez v Wright2013-032672014 NY Slip Op 03467
    Basile v Wiggs2012-114172014 NY Slip Op 03468
    Breidbart v Wiesenthal2012-091862014 NY Slip Op 03469
    Carrion v 162 Pulaski, LLC2012-035792014 NY Slip Op 03470
    Cotto v Scott2014-002322014 NY Slip Op 03471
    County of Suffolk v Long Is. Power Auth.2012-066652014 NY Slip Op 03472
    Couvertier v Concourse Rehabilitation & Nursing, Inc.2012-094592014 NY Slip Op 03473
    DeLaurentis v Orange Regional Med. Center-Horton Campus2012-094592014 NY Slip Op 03474
    Deutsch v Woodridge Segway, LLC2013-012202014 NY Slip Op 03475
    Diaz v City of New York2013-032532014 NY Slip Op 03476
    Eisner v M & E Rubin, LLC2012-092142014 NY Slip Op 03477
    Fairchild Corp. v State of New York2012-097582014 NY Slip Op 03478
    Felix v Duane2013-087582014 NY Slip Op 03479
    Friedman v 1753 Realty Co.2012-101072014 NY Slip Op 03480
    Fudge v North Shore- Long Is. Jewish Health Servs. Plainview2013-060422014 NY Slip Op 03481
    Garris v Lindemann2012-099952014 NY Slip Op 03482
    Gibson v Singh Towing, Inc.2013-003392014 NY Slip Op 03483
    Grundstrom v Papadopoulos2012-094152014 NY Slip Op 03484
    Gwinn v Christina's Polish Rest., Inc.2013-078892014 NY Slip Op 03485
    Harris v City of New York2013-066612014 NY Slip Op 03486
    Harris v Thompson2012-098392014 NY Slip Op 03487
    Hayes v Barroga-Hayes2012-069982014 NY Slip Op 03488
    Henry v Higgins2013-014232014 NY Slip Op 03489
    Hidalgo v 4-34-68, Inc.2012-039652014 NY Slip Op 03490
    Hidalgo v 4-34-68, Inc.2013-035112014 NY Slip Op 03491
    Himmelburger v Buchris2013-011862014 NY Slip Op 03492
    Hoque v Achiron2013-058452014 NY Slip Op 03493
    Kenda v Dunn2012-076192014 NY Slip Op 03494
    Mamani v Kiesling2013-054452014 NY Slip Op 03495
    Marshall v Marshall2013-087342014 NY Slip Op 03496
    McCoy v McCoy2011-052962014 NY Slip Op 03497
    McKay v Groesbeck2012-063192014 NY Slip Op 03498
    Miyahara v Majsak2011-107022014 NY Slip Op 03499
    People v Pizzo2011-038372014 NY Slip Op 03500
    Romano v Persky2012-077222014 NY Slip Op 03501
    Shea v Massapequa Union Free Sch. Dist.2013-070622014 NY Slip Op 03502
    Singh v Singh2013-062702014 NY Slip Op 03503
    Sirlin v Schreib2013-070202014 NY Slip Op 03504
    Stephen v State of New York2012-029392014 NY Slip Op 03505
    Stephen v State of New York2013-040002014 NY Slip Op 03506
    Wisselman, Harounian & Assoc., P.C. v Dowlah2013-084482014 NY Slip Op 03507
    Wysocka v Neglia2013-047752014 NY Slip Op 03508
    Matter of AndersonPer Curiam.2012-070022014 NY Slip Op 03509
    Matter of Azor v DiMango2014-01765,2014 NY Slip Op 03510
    Matter of BlairPer Curiam.2012-041752014 NY Slip Op 03511
    Matter of Bonilla v Acosta2013-017402014 NY Slip Op 03512
    Matter of Leichter-Kessler v Kessler2013-025722014 NY Slip Op 03513
    Matter of Judge M. (Matthew M.)2013-017682014 NY Slip Op 03514
    Matter of Madden v Ruskiewicz2013-053242014 NY Slip Op 03515
    Matter of Marino v Hubert2013-044972014 NY Slip Op 03516
    Matter of OderyPer Curiam.2013-073272014 NY Slip Op 03517
    Matter of Parietti v Sampson2013-045372014 NY Slip Op 03518
    Matter of Parietti v Sampson2013-045442014 NY Slip Op 03519
    Matter of Parietti v Sampson2013-072422014 NY Slip Op 03520
    Matter of Richards v Board of Fire Commr. of Brentwood Fire Dist.2012-067452014 NY Slip Op 03521
    Matter of SotoPer Curiam.2011-104422014 NY Slip Op 03522
    Matter of Streat v Streat2013-053892014 NY Slip Op 03523
    Matter of ToscanoPer Curiam.2010-058942014 NY Slip Op 03524
    Matter of Walker2012-083972014 NY Slip Op 03525
    People v Baldwin2012-025592014 NY Slip Op 03526
    People v Caraway2012-059622014 NY Slip Op 03527
    People v Davis2012-052222014 NY Slip Op 03528
    People v Durham2011-023102014 NY Slip Op 03529
    People v Ellis2009-024342014 NY Slip Op 03530
    People v Gore2010-076552014 NY Slip Op 03531
    People v Harris2005-029982014 NY Slip Op 03532
    People v Harvey2011-078902014 NY Slip Op 03533
    People v Jean2011-041562014 NY Slip Op 03534
    People v Jones2012-077712014 NY Slip Op 03535
    People v LaPierre2008-025482014 NY Slip Op 03536
    People v Maffei2010-101842014 NY Slip Op 03537
    People v Moreno2012-101602014 NY Slip Op 03538
    People v Mamadou N.2012-101602014 NY Slip Op 03539
    People v Newsom2011-04914 ON MOTION2014 NY Slip Op 03540
    People v Nichols2013-003982014 NY Slip Op 03541
    People v Porco2007-044592014 NY Slip Op 03542
    People v Ray2010-092782014 NY Slip Op 03543
    People v Rosado2013-033952014 NY Slip Op 03544
    People v Swails2011-027962014 NY Slip Op 03545
    People v Vargas2012-056262014 NY Slip Op 03546
    People v Walker2011-110422014 NY Slip Op 03547
    People v White2013-023182014 NY Slip Op 03548
    People v Wood2011-031002014 NY Slip Op 03549


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided May 7, 2014
    Title -Judge -Docket No. -Slip Opinion No. -
    Anisman v Nissman2013-012972014 NY Slip Op 03218
    Bakioglu v Tornabene2013-044542014 NY Slip Op 03219
    Bayport Constr. Corp. v BHS Ins. Agency2012-105002014 NY Slip Op 03220
    Borawski v Abulafia2012-091612014 NY Slip Op 03221
    Boyle v Pottery Barn Outlet2012-037282014 NY Slip Op 03222
    Castagna v Almaghrabi2013-043522014 NY Slip Op 03223
    Clark v Clark2012-076012014 NY Slip Op 03224
    Cole v Richard G. Karanfilian, M.D., P.C.2012-076612014 NY Slip Op 03225
    Davis v Davis2012-057092014 NY Slip Op 03226
    Delgado v Authentic Memorabilia, LLC2012-057092014 NY Slip Op 03227
    Deutsche Bank Natl. Trust Co. v Ramirez2012-105052014 NY Slip Op 03228
    Emigrant Mtge. Co., Inc. v Persad2013-058662014 NY Slip Op 03229
    Fernandez v Babylon Mun. Solid Waste2013-012652014 NY Slip Op 03230
    Galli v Galli2012-098022014 NY Slip Op 03231
    Gordon v Ifeanyichukwu Chuba Orakwue Obiakor2012-079782014 NY Slip Op 03232
    Greenberg v Blake2012-106942014 NY Slip Op 03233
    Ingram v COSTCO Wholesale Corp.2012-055852014 NY Slip Op 03234
    Kats-Kagan v City of New York2012-034402014 NY Slip Op 03235
    Lipco Elec. Corp. v ASG Consulting Corp.2012-035652014 NY Slip Op 03236
    Lipco Elec. Corp. v ASG Consulting Corp.2012-076102014 NY Slip Op 03237
    Lui v Town of E. Hampton2012-078062014 NY Slip Op 03238
    Marino & Weiss, P.C. v Cervera2013-020142014 NY Slip Op 03239
    Michaan v Gazebo Hort., Inc.2013-057992014 NY Slip Op 03240
    Milham v Port Auth. of N.Y. & N.J.2012-073862014 NY Slip Op 03241
    Moore v Great Atl. & Pac. Tea Co., Inc.2012-108972014 NY Slip Op 03242
    Nielsen Co. (US), LLC v Hudson Riv. Group, Inc.2012-114202014 NY Slip Op 03243
    Oak Hollow Nursing Ctr. v Stumbo2012-069212014 NY Slip Op 03244
    184 Joralemon, LLC v Brklyn Hts Condos, LLC2012-103772014 NY Slip Op 03245
    People v Roache2010-019042014 NY Slip Op 03246
    QPBC, Inc. v Total Automotive Warehouse, Inc.2012-106742014 NY Slip Op 03247
    Rallo v Man-Dell Food Stores, Inc.2013-111392014 NY Slip Op 03248
    Rodzianko v Parish of the Russian Orthodox Holy Virgin Protection Church, Inc.2012-099812014 NY Slip Op 03249
    Ryan v Town of Riverhead2013-018912014 NY Slip Op 03250
    Santana v Leith2013-087272014 NY Slip Op 03251
    Serpas v Bell2013-013902014 NY Slip Op 03252
    Sinclair v Chau2013-074032014 NY Slip Op 03253
    Southeast Fin., LLC v Broadway Towing, Inc.2013-030252014 NY Slip Op 03254
    TD Bank, N.A. v 126 Spruce St., LLC2012-109562014 NY Slip Op 03255
    Torres v Saint Vincent's Catholic Med. Ctrs. of N.Y.2011-107892014 NY Slip Op 03256
    Turco v Turco2011-107892014 NY Slip Op 03257
    Turco v Turco2012-087212014 NY Slip Op 03258
    Waggaman v Arauzo2012-111132014 NY Slip Op 03259
    Zavelin v Greenberg2012-097812014 NY Slip Op 03260
    Ziv v Tellkamp2013-009382014 NY Slip Op 03261
    Matter of Graziani C. A. (Lisa A.)2012-089492014 NY Slip Op 03262
    Matter of Andries v Cox2012-080492014 NY Slip Op 03263
    Matter of Archer v Carrion2013-055222014 NY Slip Op 03264
    Matter of Gaymon v MTA Bus Co.2012-018902014 NY Slip Op 03265
    Matter of Hamad v Rizika2012-107862014 NY Slip Op 03266
    Matter of Heuser v Chavez2012-039932014 NY Slip Op 03267
    Matter of Kirkpatrick v Wambua2012-093842014 NY Slip Op 03268
    Matter of Frank A. L. v Vaccarelli2011-113922014 NY Slip Op 03269
    Matter of Liddell v New York State Off. of Children & Family Servs.2013-045402014 NY Slip Op 03270
    Matter of Local 342, Long Is. Pub. Serv. Employees v Huntington2012-088172014 NY Slip Op 03271
    Matter of Adriel R. (David P.)2013-053922014 NY Slip Op 03272
    Matter of Son v Ramos2013-043682014 NY Slip Op 03273
    People v Bennett2010-046042014 NY Slip Op 03274
    People v Berezny2011-027922014 NY Slip Op 03275
    People v Cruz2010-114512014 NY Slip Op 03276
    People v Davis2012-040452014 NY Slip Op 03277
    People v Lewis2011-04170ON MOTION2014 NY Slip Op 03278
    People v Lezama2012-049942014 NY Slip Op 03279
    People v Mantock2012-002942014 NY Slip Op 03280
    People v McCormick2012-023372014 NY Slip Op 03281
    People v Myers2012-045172014 NY Slip Op 03282
    People v Ormejuste2012-073982014 NY Slip Op 03283
    People v Sanders2010-101812014 NY Slip Op 03284
    People v Santana2012-087812014 NY Slip Op 03285
    People v Santiago2010-042912014 NY Slip Op 03286
    People v Vines2012-001092014 NY Slip Op 03287
    People v Webb2012-002872014 NY Slip Op 03288
    People v Whitney2011-084492014 NY Slip Op 03289
    People v Chen2011-118242014 NY Slip Op 03290


    - - - - - - - - -

    - - - - - - -
    -
    E-mail the Law
-Reporting Bureau -
    -
    -New York State Law Reporting Bureau
    -17 Lodge Street, Albany, NY 12207
    -phone: (518) 453-6900
    -fax: (518) 426-1640 -
    - -
    -Friday, July 4, 2014 - -
    -
    - -
     
     
     
    - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyappdiv_2nd_eample_2.html b/tests/examples/opinions/united_states/nyappdiv_2nd_eample_2.html deleted file mode 100644 index 9d56995c7..000000000 --- a/tests/examples/opinions/united_states/nyappdiv_2nd_eample_2.html +++ /dev/null @@ -1,1017 +0,0 @@ - - - - - - - -Appellate Division, Second Department, Decisions - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    - - - - - -
    - - - - -
    - -
    - - - - -
    -
    - - - - -
    - - - - - -
    - -   - -
    -
    - - - - - - - - - -
    -
    -
    -
    - - - - - -
    - - -
    Archives
    -
    -
     
    -
    - - - - -
    - -
      November, 2014  
    - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided November 12, 2014
    Title -Judge -Docket No. -Slip Opinion No. -
    Barrocales v New York Methodist Hosp.2012-106412014 NY Slip Op 07606
    Berrios-Lemus v Village of Spring Val.2014-038342014 NY Slip Op 07607
    Bibeau v Sudick2013-017692014 NY Slip Op 07608
    Blum v Accurate Chem. & Scientific Corp.2013-022952014 NY Slip Op 07609
    Bregman v East Ramapo Cent. Sch. Dist.2013-054342014 NY Slip Op 07610
    Bressler v Bressler2013-046212014 NY Slip Op 07611
    Buchholz v A.L.A.C. Contr. Corp.2014-002772014 NY Slip Op 07612
    Carroll-Batista v Bennett2013-103702014 NY Slip Op 07613
    Clarke v First Student, Inc.2014-028082014 NY Slip Op 07614
    Delanoy v City of White Plains2012-078602014 NY Slip Op 07615
    Dish Realty, LLC v Town of Huntington2013-002202014 NY Slip Op 07616
    Duvidovich v George2012-074482014 NY Slip Op 07617
    Feldman v Merrick Union Free Sch. Dist.2013-011132014 NY Slip Op 07618
    Felicciardi v Lankap Cab Corp.2014-045382014 NY Slip Op 07619
    Fenner v 1011 Rte. 109 Corp.2014-004072014 NY Slip Op 07620
    Flores v Luna2013-098072014 NY Slip Op 07621
    Flores v Metropolitan Transp. Auth.2013-034972014 NY Slip Op 07622
    Flowers v Bhola2014-029272014 NY Slip Op 07623
    Frankenmuth Mut. Ins. Co. v Waste Mgt. of N.Y., LLC2012-083072014 NY Slip Op 07624
    Frank-Shaevich v Anand2012-103062014 NY Slip Op 07625
    Galette v Byrne2013-025542014 NY Slip Op 07626
    Halberstam v Halberstam2013-102812014 NY Slip Op 07627
    Henriquez v Rovt2013-062642014 NY Slip Op 07628
    Hymowitz v City of New York2013-102152014 NY Slip Op 07629
    Jordan v Metropolitan Jewish Hospice2012-102662014 NY Slip Op 07630
    Knight v M & M Sanitation Corp.2012-060542014 NY Slip Op 07631
    Leon Petroleum, LLC v Carl S. Levine & Assoc., P.C.2013-011162014 NY Slip Op 07632
    Long Is. Pine Barrens Socy., Inc. v County of Suffolk2012-088382014 NY Slip Op 07633
    McCourt v Wasilewski2013-065202014 NY Slip Op 07634
    McGee v New York City Hous. Auth.2013-091482014 NY Slip Op 07635
    Ogle v Higgins2013-102822014 NY Slip Op 07636
    Palmeri v Erricola2014-011262014 NY Slip Op 07637
    People v Dallas2012-113082014 NY Slip Op 07638
    Pichardo v Zayas2013-107272014 NY Slip Op 07639
    Pinilla v New York City Tr. Auth.2013-097592014 NY Slip Op 07640
    Rajpurohit v Rajpurohit2013-076142014 NY Slip Op 07641
    Ryan v Taconic Realty Assoc.2013-027852014 NY Slip Op 07642
    Samet v Binson2013-088462014 NY Slip Op 07643
    Schimko v Haley2013-036112014 NY Slip Op 07644
    Silan v Sylvester2014-009242014 NY Slip Op 07645
    Siskin v Cassar2012-076842014 NY Slip Op 07646
    Smithie v Smithie2013-046102014 NY Slip Op 07647
    Stewart v Citimortgage, Inc.2013-049762014 NY Slip Op 07648
    Trunzo v Yannotti2013-106482014 NY Slip Op 07649
    Vazquez v Gun Hill Assoc., LLC2013-098792014 NY Slip Op 07650
    Velasco v 34-06 73rd St., LLC2013-059222014 NY Slip Op 07651
    Wachovsky v City of New York2013-068822014 NY Slip Op 07652
    Wells Fargo Bank, N.A. v Ali2013-008662014 NY Slip Op 07653
    Wilcoxen v Palladino2013-109712014 NY Slip Op 07654
    Wolf v Flowers2014-055342014 NY Slip Op 07655
    Young Sun Chung v Kwah2013-094522014 NY Slip Op 07656
    Matter of Isser B. (Abraham A.B.)2013-007322014 NY Slip Op 07657
    Matter of Bonaguro v City of New York2014-007832014 NY Slip Op 07658
    Matter of Edemodu v Scott2013-097032014 NY Slip Op 07659
    Matter of Flournoy v Supreme Ct. Clerk2013-007082014 NY Slip Op 07660
    Matter of Courtland H.2013-095772014 NY Slip Op 07661
    Matter of HP Ronkonkoma, Inc. v Kirkland2012-107262014 NY Slip Op 07662
    Matter of JP & Assoc. Corp. v New York State Div. of Hous. & Community Renewal2012-049392014 NY Slip Op 07663
    Matter of JP & Assoc. Corp. v New York State Div. of Hous. & Community Renewal2013-059512014 NY Slip Op 07664
    Matter of McLennan v Gordon2013-086212014 NY Slip Op 07665
    Matter of O'Gorman v O'Gorman2013-106662014 NY Slip Op 07666
    Matter of O'Gorman v O'Gorman2014-036302014 NY Slip Op 07667
    Matter of Progressive Specialty Ins. Co. v Alexis2013-033642014 NY Slip Op 07668
    Matter of Reina R. (Erica R.)2013-104012014 NY Slip Op 07669
    Matter of Dayshawn S.2013-017602014 NY Slip Op 07670
    Matter of Kobe S.2013-096482014 NY Slip Op 07671
    Matter of Ya-Sin S.2013-084862014 NY Slip Op 07672
    Matter of SLS Residential, Inc. v New York State Off. of Mental Health2013-027232014 NY Slip Op 07673
    Matter of Sutherland v New York State Dept. of Envtl. Conservation2012-063372014 NY Slip Op 07674
    Matter of Yu F. (Fen W.)2013-064772014 NY Slip Op 07675
    People v Almonor2010-068112014 NY Slip Op 07676
    People v Alvarezjolon2013-112542014 NY Slip Op 07677
    People v Bell2012-111742014 NY Slip Op 07678
    People v Caliste2014-009342014 NY Slip Op 07679
    People v Clarke2011-002532014 NY Slip Op 07680
    People v Grant2012-059942014 NY Slip Op 07681
    People v Gueye2006-111932014 NY Slip Op 07682
    People v Haywood2013-090362014 NY Slip Op 07683
    People v Holmes2012-088972014 NY Slip Op 07684
    People v Lazier2012-086282014 NY Slip Op 07685
    People v Leach2012-091432014 NY Slip Op 07686
    People v Licausi2010-114302014 NY Slip Op 07687
    People v Pendelton2013-101572014 NY Slip Op 07688
    People v Perry2012-037412014 NY Slip Op 07689
    People v Poliandro2013-013752014 NY Slip Op 07690
    People v Rodas2013-028212014 NY Slip Op 07691
    People v Sanchez2012-070772014 NY Slip Op 07692
    People v Sassi2014-003242014 NY Slip Op 07693
    People v Williams2013-042562014 NY Slip Op 07694


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided November 5, 2014
    Title -Judge -Docket No. -Slip Opinion No. -
    Abato v Beller2011-078162014 NY Slip Op 07460
    Altreche v City of New York2013-045032014 NY Slip Op 07461
    Aurora Loan Servs., LLC v Ahmed2012-098052014 NY Slip Op 07462
    Balashanskaya v Polymed Community Care Ctr., P.C.2013-081922014 NY Slip Op 07463
    Bellissimo v Mitchell2012-101232014 NY Slip Op 07464
    Browne v Board of Educ.2013-073512014 NY Slip Op 07465
    Bryant v Broadcast Music, Inc.2012-066422014 NY Slip Op 07466
    Dcfs Usa, LLC v Metro Constr. Equities2012-085182014 NY Slip Op 07467
    Deutsche Bank Natl. Trust Co. v Islar2013-069962014 NY Slip Op 07468
    DiMauro v United, LLC2013-022212014 NY Slip Op 07469
    Green Apple Mgt. Corp. v Aronis2013-005192014 NY Slip Op 07470
    Hairman v Jhawarer2012-115162014 NY Slip Op 07471
    Hampshire Props. v BTA Bldg. & Developing, Inc.2013-092772014 NY Slip Op 07472
    Hinz v Hinz2013-060862014 NY Slip Op 07473
    Holand v Cascino2014-033892014 NY Slip Op 07474
    JP Morgan Chase Bank, N.A. v Hall2012-084392014 NY Slip Op 07475
    Kane v Galtieri2012-111302014 NY Slip Op 07476
    Leach v Ocean Black Car Corp.2013-053522014 NY Slip Op 07477
    Master v Boiakhtchion2013-084122014 NY Slip Op 07478
    Miller v City of New York2013-054802014 NY Slip Op 07479
    Han v BJ Laura & Son, Inc.2013-062732014 NY Slip Op 07480
    Mizuno v Nunberg2013-067092014 NY Slip Op 07481
    MRI Enters., Inc. v Comprehensive Med. Care of N.Y., P.C.2012-110232014 NY Slip Op 07482
    Nour v City of New York2012-109862014 NY Slip Op 07483
    Ortiz v All Lock & Glass Serv., Inc.2013-021462014 NY Slip Op 07484
    People v Coleman2012-055922014 NY Slip Op 07485
    People v Padin2013-108062014 NY Slip Op 07486
    Prakhin v Fulton Towers Realty Corp.2013-040322014 NY Slip Op 07487
    Rodriguez v 1790 Broadway Assoc., LLC2012-111582014 NY Slip Op 07488
    Rosenblum v Great Neck Teachers Assn. Benefit Trust Fund2012-088052014 NY Slip Op 07489
    Ross v Jamaica Hosp. Med. Ctr.2012-115992014 NY Slip Op 07490
    Serrano v Lutheran Social Servs. of Metro. N.Y., Inc.2013-029752014 NY Slip Op 07491
    Slonecki v Damm2012-084782014 NY Slip Op 07492
    Stenberg v Kalansky2012-115712014 NY Slip Op 07493
    Tucholski v State of New York2013-106232014 NY Slip Op 07494
    U.S. Mdse., Inc. v L&R Distribs., Inc.2013-004972014 NY Slip Op 07495
    Uribe v Uribe2013-028692014 NY Slip Op 07496
    Vinasco v Intell Times Sq. Hotel, LLC2013-014672014 NY Slip Op 07497
    Volodarsky v Moonlight Ambulette Serv., Inc.2012-075332014 NY Slip Op 07498
    Wolfe v North Merrick Union Free School Dist.2013-099332014 NY Slip Op 07499
    Matter of Jemel M. A. (Elizabeth C. B. A.)2013-085142014 NY Slip Op 07500
    Matter of Belton v Spota2014-04430,2014 NY Slip Op 07501
    Matter of Boodhoo v Rampersaud2013-095142014 NY Slip Op 07502
    Matter of Burke v Cogan2014-010972014 NY Slip Op 07503
    Matter of Cooper v Lathillerie2014-001422014 NY Slip Op 07504
    Matter of Edwards v Incorporated Vil. of Hempstead2013-023442014 NY Slip Op 07505
    Matter of Executive Life Ins. Co. of N.Y. (Dolan)2013-023352014 NY Slip Op 07506
    Matter of Kaydance H. G. (Carmen M.)2013-096302014 NY Slip Op 07507
    Matter of Goll2003-107102014 NY Slip Op 07508
    Matter of Guiracocha v Amaro2013-106432014 NY Slip Op 07509
    Matter of Harrison v Palumbo2012-106512014 NY Slip Op 07510
    Matter of Lopez v New York State Div. of Human Rights2013-053502014 NY Slip Op 07511
    Matter of Mondschein v Mondschein2013-113792014 NY Slip Op 07512
    Matter of Progressive Specialty Ins. Co. v Louis2013-014552014 NY Slip Op 07513
    Matter of State of New York v Leroy P.2012-109272014 NY Slip Op 07514
    People v Armstead2012-072122014 NY Slip Op 07515
    People v Banner2012-088992014 NY Slip Op 07516
    People v Dorvilier2012-097012014 NY Slip Op 07517
    People v Grant2008-105862014 NY Slip Op 07518
    People v Heine2013-000152014 NY Slip Op 07519
    People v Louis2012-034012014 NY Slip Op 07520
    People v Sanchez2013-039652014 NY Slip Op 07521
    People v Williams2012-078932014 NY Slip Op 07522


    - - - - - - - - -

    - - - - - - -
    -
    E-mail the Law
-Reporting Bureau -
    -
    -New York State Law Reporting Bureau
    -17 Lodge Street, Albany, NY 12207
    -phone: (518) 453-6900
    -fax: (518) 426-1640 -
    - -
    - - -
    -
    - -
     
     
     
    - - diff --git a/tests/examples/opinions/united_states/nyappdiv_2nd_example.compare.json b/tests/examples/opinions/united_states/nyappdiv_2nd_example.compare.json new file mode 100644 index 000000000..6b21955e7 --- /dev/null +++ b/tests/examples/opinions/united_states/nyappdiv_2nd_example.compare.json @@ -0,0 +1,660 @@ +[ + { + "case_dates": "2024-08-28", + "case_names": "Wilmington Sav. Fund Socy., FSB v. Cabadiana", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04343.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04343", + "case_name_shorts": "Cabadiana", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Wahid v. HMC Times Sq. Hotel, L.P.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04342.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04342", + "case_name_shorts": "Wahid", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "U.S. Bank N.A. v. Unger", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04341.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04341", + "case_name_shorts": "Unger", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "South Point, Inc. v. John", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04340.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04340", + "case_name_shorts": "John", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Shulamith Sch. for Girls, Inc. v. Shulamith Sch. for Girls of Brooklyn", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04339.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04339", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Schiano v. Harsanyi", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04338.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04338", + "case_name_shorts": "Schiano", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Samodurova v. Consolidated Edison Co. of N.Y., Inc.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04337.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04337", + "case_name_shorts": "Samodurova", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Roderick v. Golden", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04336.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04336", + "case_name_shorts": "Roderick", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Reverse Mtge. Solutions, Inc. v. Gipson", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04335.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04335", + "case_name_shorts": "Gipson", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Ramirez v. Pace Univ.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04334.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04334", + "case_name_shorts": "Ramirez", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Rajaram v. Singh", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04333.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04333", + "case_name_shorts": "Rajaram", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Polis v. City of New York", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04332.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04332", + "case_name_shorts": "Polis", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "People v. Benoit", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04331.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04331", + "case_name_shorts": "Benoit", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Osby v. Spring Cr. Rehabilitation & Nursing Care Ctr.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04330.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04330", + "case_name_shorts": "Osby", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Ogletree v. Long Is. Univ.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04329.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04329", + "case_name_shorts": "Ogletree", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Miranda v. 1320 Entertainment, Inc.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04313.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04313", + "case_name_shorts": "Miranda", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Yaqoob A.-S. (Bushra A.)", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04314.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04314", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Williams v. Pascale", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04328.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04328", + "case_name_shorts": "Pascale", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Sivanesan v. YBF, LLC", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04327.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04327", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Puig v. City of Middletown", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04326.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04326", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of McCrory v. Village of Mamaroneck Bd. of Trustees", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04324.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04324", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Masiello v. Astol", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04323.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04323", + "case_name_shorts": "Astol", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Lovell", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04322.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04322", + "case_name_shorts": "Matter of Lovell", + "authors": "", + "per_curiam": true + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Kreger v. Town of Southold Zoning Bd. of Appeals", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04321.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04321", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Kreger v. Town of Southold", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04320.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04320", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Haase v. Jones", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04319.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04319", + "case_name_shorts": "Jones", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Galloway", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04318.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04318", + "case_name_shorts": "Matter of Galloway", + "authors": "", + "per_curiam": true + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Ferrera v. New York City Dept. of Educ.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04317.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04317", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Cheema", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04316.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04316", + "case_name_shorts": "Matter of Cheema", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Alexi P. (Ruben P.)", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04325.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04325", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Matter of Aime v. New York City Health & Hosps. Corp.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04315.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04315", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Mater v. Anniversary Corp.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04312.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04312", + "case_name_shorts": "Mater", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Madigan v. Putnam County", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04311.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04311", + "case_name_shorts": "Madigan", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Lewis v. Bartow", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04310.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04310", + "case_name_shorts": "Lewis", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Kerr-Inniss v. Williams", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04309.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04309", + "case_name_shorts": "Kerr-Inniss", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Kashyap v. Dasilva", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04308.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04308", + "case_name_shorts": "Kashyap", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "K. B. v. City of Mount Vernon", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04299.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04299", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Hudesman v. Dawson Holding Co.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04307.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04307", + "case_name_shorts": "Hudesman", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Gironza v. Macedonio", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04306.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04306", + "case_name_shorts": "Gironza", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Edwards v. Freedom Church of Revelation", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04305.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04305", + "case_name_shorts": "Edwards", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Deutsche Bank Natl. Trust Co. v. Pirozzi", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04304.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04304", + "case_name_shorts": "Pirozzi", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Bistrian v. Gibson", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04303.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04303", + "case_name_shorts": "Bistrian", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Beier v. Giglio", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04302.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04302", + "case_name_shorts": "Beier", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Behrens v. Town of Huntington", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04301.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04301", + "case_name_shorts": "Behrens", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Bank of Am., N.A. v. Sach", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04300.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04300", + "case_name_shorts": "Sach", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "Albano v. Albano", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04298.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04298", + "case_name_shorts": "Albano", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-28", + "case_names": "6 Harbor Park Dr., LLC v. Town of N. Hempstead", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04297.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04297", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyappdiv_2nd_example.html b/tests/examples/opinions/united_states/nyappdiv_2nd_example.html new file mode 100644 index 000000000..9e932782a --- /dev/null +++ b/tests/examples/opinions/united_states/nyappdiv_2nd_example.html @@ -0,0 +1,495 @@ + + +LRB Search Results + + + + + +
    + + + @@ -354,33 +373,33 @@

    The Supreme Court of Ohio & The Ohio Judicial System


    + + + + + + +
     Slip Decisions Search Results
    + + +
    + + + + + + + + + + + +
    Search Criteria
        Decision Start Date : + 08/28/2024
        Court : + App Div, 2d Dept
    +
    + + + + + + +
    + Total number of records found: 47 + +       


    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Party NameDecision DateCourt   Official Citation   Slip Number   JudgeOpn/Mot
    6 Harbor Park Dr., LLC v Town of N. Hempstead08/28/2024App Div, 2d Dept2024 NYSlipOp 04297Opinion
    Albano v Albano08/28/2024App Div, 2d Dept2024 NYSlipOp 04298Opinion
    Bank of Am., N.A. v Sach08/28/2024App Div, 2d Dept2024 NYSlipOp 04300Opinion
    Behrens v Town of Huntington08/28/2024App Div, 2d Dept2024 NYSlipOp 04301Opinion
    Beier v Giglio08/28/2024App Div, 2d Dept2024 NYSlipOp 04302Opinion
    Bistrian v Gibson08/28/2024App Div, 2d Dept2024 NYSlipOp 04303Opinion
    Deutsche Bank Natl. Trust Co. v Pirozzi08/28/2024App Div, 2d Dept2024 NYSlipOp 04304Opinion
    Edwards v Freedom Church of Revelation08/28/2024App Div, 2d Dept2024 NYSlipOp 04305Opinion
    Gironza v Macedonio08/28/2024App Div, 2d Dept2024 NYSlipOp 04306Opinion
    Hudesman v Dawson Holding Co.08/28/2024App Div, 2d Dept2024 NYSlipOp 04307Opinion
    K. B. v City of Mount Vernon08/28/2024App Div, 2d Dept2024 NYSlipOp 04299Opinion
    Kashyap v Dasilva08/28/2024App Div, 2d Dept2024 NYSlipOp 04308Opinion
    Kerr-Inniss v Williams08/28/2024App Div, 2d Dept2024 NYSlipOp 04309Opinion
    Lewis v Bartow08/28/2024App Div, 2d Dept2024 NYSlipOp 04310Opinion
    Madigan v Putnam County08/28/2024App Div, 2d Dept2024 NYSlipOp 04311Opinion
    Mater v Anniversary Corp.08/28/2024App Div, 2d Dept2024 NYSlipOp 04312Opinion
    Matter of Aime v New York City Health & Hosps. Corp.08/28/2024App Div, 2d Dept2024 NYSlipOp 04315Opinion
    Matter of Alexi P. (Ruben P.)08/28/2024App Div, 2d Dept2024 NYSlipOp 04325Opinion
    Matter of Cheema08/28/2024App Div, 2d Dept2024 NYSlipOp 04316Opinion
    Matter of Ferrera v New York City Dept. of Educ.08/28/2024App Div, 2d Dept2024 NYSlipOp 04317Opinion
    Matter of Galloway08/28/2024App Div, 2d Dept2024 NYSlipOp 04318Per Curiam.Opinion
    Matter of Haase v Jones08/28/2024App Div, 2d Dept2024 NYSlipOp 04319Opinion
    Matter of Kreger v Town of Southold08/28/2024App Div, 2d Dept2024 NYSlipOp 04320Opinion
    Matter of Kreger v Town of Southold Zoning Bd. of Appeals08/28/2024App Div, 2d Dept2024 NYSlipOp 04321Opinion
    Matter of Lovell08/28/2024App Div, 2d Dept2024 NYSlipOp 04322Per Curiam.Opinion
    Matter of Masiello v Astol08/28/2024App Div, 2d Dept2024 NYSlipOp 04323Opinion
    Matter of McCrory v Village of Mamaroneck Bd. of Trustees08/28/2024App Div, 2d Dept2024 NYSlipOp 04324Opinion
    Matter of Puig v City of Middletown08/28/2024App Div, 2d Dept2024 NYSlipOp 04326Opinion
    Matter of Sivanesan v YBF, LLC08/28/2024App Div, 2d Dept2024 NYSlipOp 04327Opinion
    Matter of Williams v Pascale08/28/2024App Div, 2d Dept2024 NYSlipOp 04328Opinion
    Matter of Yaqoob A.-S. (Bushra A.)08/28/2024App Div, 2d Dept2024 NYSlipOp 04314Opinion
    Miranda v 1320 Entertainment, Inc.08/28/2024App Div, 2d Dept2024 NYSlipOp 04313Opinion
    Ogletree v Long Is. Univ.08/28/2024App Div, 2d Dept2024 NYSlipOp 04329Opinion
    Osby v Spring Cr. Rehabilitation & Nursing Care Ctr.08/28/2024App Div, 2d Dept2024 NYSlipOp 04330Opinion
    People v Benoit08/28/2024App Div, 2d Dept2024 NYSlipOp 04331Opinion
    Polis v City of New York08/28/2024App Div, 2d Dept2024 NYSlipOp 04332Opinion
    Rajaram v Singh08/28/2024App Div, 2d Dept2024 NYSlipOp 04333Opinion
    Ramirez v Pace Univ.08/28/2024App Div, 2d Dept2024 NYSlipOp 04334Opinion
    Reverse Mtge. Solutions, Inc. v Gipson08/28/2024App Div, 2d Dept2024 NYSlipOp 04335Opinion
    Roderick v Golden08/28/2024App Div, 2d Dept2024 NYSlipOp 04336Opinion
    Samodurova v Consolidated Edison Co. of N.Y., Inc.08/28/2024App Div, 2d Dept2024 NYSlipOp 04337Opinion
    Schiano v Harsanyi08/28/2024App Div, 2d Dept2024 NYSlipOp 04338Opinion
    Shulamith Sch. for Girls, Inc. v Shulamith Sch. for Girls of Brooklyn08/28/2024App Div, 2d Dept2024 NYSlipOp 04339Opinion
    South Point, Inc. v John08/28/2024App Div, 2d Dept2024 NYSlipOp 04340Opinion
    U.S. Bank N.A. v Unger08/28/2024App Div, 2d Dept2024 NYSlipOp 04341Opinion
    Wahid v HMC Times Sq. Hotel, L.P.08/28/2024App Div, 2d Dept2024 NYSlipOp 04342Opinion
    Wilmington Sav. Fund Socy., FSB v Cabadiana08/28/2024App Div, 2d Dept2024 NYSlipOp 04343Opinion
    +
    +
    + + + diff --git a/tests/examples/opinions/united_states/nyappdiv_2nd_example_3.compare.json b/tests/examples/opinions/united_states/nyappdiv_2nd_example_3.compare.json deleted file mode 100644 index 6820898f8..000000000 --- a/tests/examples/opinions/united_states/nyappdiv_2nd_example_3.compare.json +++ /dev/null @@ -1,4394 +0,0 @@ -[ - { - "case_dates": "2015-07-29", - "case_names": "Woodstock Constr. Group, Ltd. v. State of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06334.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-11180", - "judges": "", - "citations": "2015 NY Slip Op 06334", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Williams-Guillaume v. Bank of Am., N.A.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06333.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-04497", - "judges": "", - "citations": "2015 NY Slip Op 06333", - "case_name_shorts": "Williams-Guillaume" - }, - { - "case_dates": "2015-07-29", - "case_names": "Town of Huntington v. Long Is. Power Auth.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06332.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-06863", - "judges": "", - "citations": "2015 NY Slip Op 06332", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Sweeny v. Millbrook Cent. Sch. Dist.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06331.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-01270", - "judges": "", - "citations": "2015 NY Slip Op 06331", - "case_name_shorts": "Sweeny" - }, - { - "case_dates": "2015-07-29", - "case_names": "Stathis v. Estate of Karas", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06330.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-01705", - "judges": "", - "citations": "2015 NY Slip Op 06330", - "case_name_shorts": "Stathis" - }, - { - "case_dates": "2015-07-29", - "case_names": "State Farm Mut. Auto. Ins. Co. v. Anikeyeva", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06329.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07838", - "judges": "", - "citations": "2015 NY Slip Op 06329", - "case_name_shorts": "Anikeyeva" - }, - { - "case_dates": "2015-07-29", - "case_names": "School Aid Specialists, LLC v. Board of Educ. of Warwick Val. Cent. Sch. Dist.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06328.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-11539", - "judges": "", - "citations": "2015 NY Slip Op 06328", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "S. Nicolia & Sons Realty Corp. v. A.J.A. Concrete Ready Mix, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06327.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08447", - "judges": "", - "citations": "2015 NY Slip Op 06327", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Rumford v. Singh", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06326.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-05537", - "judges": "", - "citations": "2015 NY Slip Op 06326", - "case_name_shorts": "Rumford" - }, - { - "case_dates": "2015-07-29", - "case_names": "Ruiz v. Mortgage Elec. Registration Sys., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06325.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-06572", - "judges": "", - "citations": "2015 NY Slip Op 06325", - "case_name_shorts": "Ruiz" - }, - { - "case_dates": "2015-07-29", - "case_names": "Rodriguez v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06324.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01104", - "judges": "", - "citations": "2015 NY Slip Op 06324", - "case_name_shorts": "Rodriguez" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Wellington", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06377.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2009-00585", - "judges": "", - "citations": "2015 NY Slip Op 06377", - "case_name_shorts": "Wellington" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Velazquez", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06323.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-06694", - "judges": "", - "citations": "2015 NY Slip Op 06323", - "case_name_shorts": "Velazquez" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Torres", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06376.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-05907", - "judges": "", - "citations": "2015 NY Slip Op 06376", - "case_name_shorts": "Torres" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Raysor", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06374.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-01542", - "judges": "", - "citations": "2015 NY Slip Op 06374", - "case_name_shorts": "Raysor" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Palencia", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06373.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08636", - "judges": "", - "citations": "2015 NY Slip Op 06373", - "case_name_shorts": "Palencia" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Noezile", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06372.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2000-00287", - "judges": "", - "citations": "2015 NY Slip Op 06372", - "case_name_shorts": "Noezile" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Maldonado", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06371.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-07934", - "judges": "", - "citations": "2015 NY Slip Op 06371", - "case_name_shorts": "Maldonado" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Johnakin", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06370.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09078", - "judges": "", - "citations": "2015 NY Slip Op 06370", - "case_name_shorts": "Johnakin" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Isaiah S.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06375.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09077", - "judges": "", - "citations": "2015 NY Slip Op 06375", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Hunter", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06369.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-02037", - "judges": "", - "citations": "2015 NY Slip Op 06369", - "case_name_shorts": "Hunter" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Huggins", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06368.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-08258", - "judges": "", - "citations": "2015 NY Slip Op 06368", - "case_name_shorts": "Huggins" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Goode", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06367.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-04402", - "judges": "", - "citations": "2015 NY Slip Op 06367", - "case_name_shorts": "Goode" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Fletcher", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06366.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-08855", - "judges": "", - "citations": "2015 NY Slip Op 06366", - "case_name_shorts": "Fletcher" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Feeney", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06365.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-03667", - "judges": "", - "citations": "2015 NY Slip Op 06365", - "case_name_shorts": "Feeney" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Ewart", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06364.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09166", - "judges": "", - "citations": "2015 NY Slip Op 06364", - "case_name_shorts": "Ewart" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Dunston", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06363.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-01599", - "judges": "", - "citations": "2015 NY Slip Op 06363", - "case_name_shorts": "Dunston" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Dorvilier", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06362.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-09701", - "judges": "", - "citations": "2015 NY Slip Op 06362", - "case_name_shorts": "Dorvilier" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Crowl", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06361.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-11394", - "judges": "", - "citations": "2015 NY Slip Op 06361", - "case_name_shorts": "Crowl" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Council", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06360.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-03841", - "judges": "", - "citations": "2015 NY Slip Op 06360", - "case_name_shorts": "Council" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Carter", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06359.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08766", - "judges": "", - "citations": "2015 NY Slip Op 06359", - "case_name_shorts": "Carter" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Canales", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06358.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-04782", - "judges": "", - "citations": "2015 NY Slip Op 06358", - "case_name_shorts": "Canales" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Borges", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06357.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-07087", - "judges": "", - "citations": "2015 NY Slip Op 06357", - "case_name_shorts": "Borges" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Boney", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06356.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-10302", - "judges": "", - "citations": "2015 NY Slip Op 06356", - "case_name_shorts": "Boney" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Arocho", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06322.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-11338", - "judges": "", - "citations": "2015 NY Slip Op 06322", - "case_name_shorts": "Arocho" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Anderson", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06355.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-01294", - "judges": "", - "citations": "2015 NY Slip Op 06355", - "case_name_shorts": "Anderson" - }, - { - "case_dates": "2015-07-29", - "case_names": "People v. Alvarez", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06354.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-04508", - "judges": "", - "citations": "2015 NY Slip Op 06354", - "case_name_shorts": "Alvarez" - }, - { - "case_dates": "2015-07-29", - "case_names": "Onewest Bank, FSB v. Colace", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06321.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-03487", - "judges": "", - "citations": "2015 NY Slip Op 06321", - "case_name_shorts": "Colace" - }, - { - "case_dates": "2015-07-29", - "case_names": "NYCTL 1998-2 Trust v. Avila", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06320.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08916", - "judges": "", - "citations": "2015 NY Slip Op 06320", - "case_name_shorts": "Avila" - }, - { - "case_dates": "2015-07-29", - "case_names": "Mudgil v. Metropolitan Suburban Bus Auth.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06319.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-03634", - "judges": "", - "citations": "2015 NY Slip Op 06319", - "case_name_shorts": "Mudgil" - }, - { - "case_dates": "2015-07-29", - "case_names": "Moskovitz v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06318.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-02661", - "judges": "", - "citations": "2015 NY Slip Op 06318", - "case_name_shorts": "Moskovitz" - }, - { - "case_dates": "2015-07-29", - "case_names": "Mawere v. Landau", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06317.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09198", - "judges": "", - "citations": "2015 NY Slip Op 06317", - "case_name_shorts": "Mawere" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Velasquez v. New York State Div. of Hous. & Community Renewal", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06353.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-04709", - "judges": "", - "citations": "2015 NY Slip Op 06353", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Thomas J.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06347.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-06077", - "judges": "", - "citations": "2015 NY Slip Op 06347", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of State of New York v. Ted B.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06352.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-10730", - "judges": "Chambers", - "citations": "2015 NY Slip Op 06352", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Quirolo v. Israel", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06350.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-01204", - "judges": "", - "citations": "2015 NY Slip Op 06350", - "case_name_shorts": "Israel" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Oshikanlu", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06349.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-05173", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 06349", - "case_name_shorts": "Matter of Oshikanlu" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Mercedes R.B. (Heather C.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06338.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08606", - "judges": "", - "citations": "2015 NY Slip Op 06338", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Julia M.G. (Trinidad G.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06344.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-09021", - "judges": "", - "citations": "2015 NY Slip Op 06344", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of James v. Donovan", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06348.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-02774", - "judges": "", - "citations": "2015 NY Slip Op 06348", - "case_name_shorts": "Donovan" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Herman v. Herman", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06346.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-11008", - "judges": "", - "citations": "2015 NY Slip Op 06346", - "case_name_shorts": "Herman" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Fiduciary Ins. Co. v. American Bankers Ins. Co. of Fla.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06343.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10862", - "judges": "Hinds-radix", - "citations": "2015 NY Slip Op 06343", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Edward S. (Georgis-Corey)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06351.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-10265", - "judges": "", - "citations": "2015 NY Slip Op 06351", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Davis v. Koch", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06342.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07730", - "judges": "", - "citations": "2015 NY Slip Op 06342", - "case_name_shorts": "Koch" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of C.H. v. F.M.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06345.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-11501", - "judges": "", - "citations": "2015 NY Slip Op 06345", - "case_name_shorts": "F.M." - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Borrok v. Town of Southampton", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06340.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-11038", - "judges": "", - "citations": "2015 NY Slip Op 06340", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Borrok v. Town of Southampton", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06339.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05755", - "judges": "", - "citations": "2015 NY Slip Op 06339", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Allstate Ins. Co. v. Carraro", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06336.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-02773", - "judges": "", - "citations": "2015 NY Slip Op 06336", - "case_name_shorts": "Carraro" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Allison C. (Angel C.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06341.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-08628", - "judges": "", - "citations": "2015 NY Slip Op 06341", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of Alexandryia M.B. (Heather C.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06337.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10084", - "judges": "", - "citations": "2015 NY Slip Op 06337", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Matter of AJM Capital II, LLC v. Incorporated Vil. of Muttontown", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06335.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09293", - "judges": "", - "citations": "2015 NY Slip Op 06335", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Kohulka v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06316.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07308", - "judges": "", - "citations": "2015 NY Slip Op 06316", - "case_name_shorts": "Kohulka" - }, - { - "case_dates": "2015-07-29", - "case_names": "Hartman v. Milbel Enters., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06314.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-05130", - "judges": "", - "citations": "2015 NY Slip Op 06314", - "case_name_shorts": "Hartman" - }, - { - "case_dates": "2015-07-29", - "case_names": "HSBC Bank USA, N.A. v. Roumiantseva", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06315.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09197", - "judges": "", - "citations": "2015 NY Slip Op 06315", - "case_name_shorts": "Roumiantseva" - }, - { - "case_dates": "2015-07-29", - "case_names": "Greenpoint Sav. Bank v. Avila", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06313.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08915", - "judges": "", - "citations": "2015 NY Slip Op 06313", - "case_name_shorts": "Avila" - }, - { - "case_dates": "2015-07-29", - "case_names": "Feng Wang v. A & W Travel, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06312.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07412", - "judges": "", - "citations": "2015 NY Slip Op 06312", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Earle v. Village of Lindenhurst", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06311.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-11196", - "judges": "", - "citations": "2015 NY Slip Op 06311", - "case_name_shorts": "Earle" - }, - { - "case_dates": "2015-07-29", - "case_names": "Crown Constr. Bldrs. & Project Mgrs. Corp. v. Chavez", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06310.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09000", - "judges": "", - "citations": "2015 NY Slip Op 06310", - "case_name_shorts": "Chavez" - }, - { - "case_dates": "2015-07-29", - "case_names": "Crawford v. Smith", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06309.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09969", - "judges": "", - "citations": "2015 NY Slip Op 06309", - "case_name_shorts": "Crawford" - }, - { - "case_dates": "2015-07-29", - "case_names": "Covert v. Wisla Corp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06308.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00478", - "judges": "", - "citations": "2015 NY Slip Op 06308", - "case_name_shorts": "Covert" - }, - { - "case_dates": "2015-07-29", - "case_names": "Clark v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06307.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08016", - "judges": "", - "citations": "2015 NY Slip Op 06307", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Castiglione v. Kruse", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06306.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-10307", - "judges": "", - "citations": "2015 NY Slip Op 06306", - "case_name_shorts": "Castiglione" - }, - { - "case_dates": "2015-07-29", - "case_names": "Brea v. Salvatore", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06305.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-11964", - "judges": "", - "citations": "2015 NY Slip Op 06305", - "case_name_shorts": "Brea" - }, - { - "case_dates": "2015-07-29", - "case_names": "Board of Educ. of Northport-E. Northport Union Free Sch. Dist. v. Long Is. Power Auth.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06304.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-06812", - "judges": "", - "citations": "2015 NY Slip Op 06304", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-29", - "case_names": "Aurora Loan Servs., LLC v. Lopa", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06303.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10154", - "judges": "", - "citations": "2015 NY Slip Op 06303", - "case_name_shorts": "Lopa" - }, - { - "case_dates": "2015-07-29", - "case_names": "Andrew v. Kerendian", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06302.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01219", - "judges": "", - "citations": "2015 NY Slip Op 06302", - "case_name_shorts": "Andrew" - }, - { - "case_dates": "2015-07-22", - "case_names": "Zwarycz v. Marnia Constr., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06239.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-09379", - "judges": "", - "citations": "2015 NY Slip Op 06239", - "case_name_shorts": "Zwarycz" - }, - { - "case_dates": "2015-07-22", - "case_names": "U.S. Bank Natl. Assn. v. Ventura", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06237.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00141", - "judges": "", - "citations": "2015 NY Slip Op 06237", - "case_name_shorts": "Ventura" - }, - { - "case_dates": "2015-07-22", - "case_names": "Tirpack v. 125 N. 10, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06236.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-04511", - "judges": "", - "citations": "2015 NY Slip Op 06236", - "case_name_shorts": "Tirpack" - }, - { - "case_dates": "2015-07-22", - "case_names": "Tanaysha T. v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06235.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-01971", - "judges": "", - "citations": "2015 NY Slip Op 06235", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "Stein v. Chiera", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06234.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-11445", - "judges": "", - "citations": "2015 NY Slip Op 06234", - "case_name_shorts": "Stein" - }, - { - "case_dates": "2015-07-22", - "case_names": "Silver v. Sportsstuff, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06233.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08934", - "judges": "", - "citations": "2015 NY Slip Op 06233", - "case_name_shorts": "Silver" - }, - { - "case_dates": "2015-07-22", - "case_names": "Silver v. Sportsstuff, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06232.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07573", - "judges": "", - "citations": "2015 NY Slip Op 06232", - "case_name_shorts": "Silver" - }, - { - "case_dates": "2015-07-22", - "case_names": "Sholom & Zuckerbrot Realty, LLC v. Gallant", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06231.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07575", - "judges": "", - "citations": "2015 NY Slip Op 06231", - "case_name_shorts": "Gallant" - }, - { - "case_dates": "2015-07-22", - "case_names": "Scott v. Ward", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06230.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-09265", - "judges": "", - "citations": "2015 NY Slip Op 06230", - "case_name_shorts": "Scott" - }, - { - "case_dates": "2015-07-22", - "case_names": "Phoenix Asset Mgt., LLC v. X & Y Group Dev., LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06229.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01169", - "judges": "", - "citations": "2015 NY Slip Op 06229", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "Peretz v. Village of Great Neck Plaza", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06211.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07623", - "judges": "", - "citations": "2015 NY Slip Op 06211", - "case_name_shorts": "Peretz" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Williams", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06263.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09662", - "judges": "", - "citations": "2015 NY Slip Op 06263", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Taylor", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06262.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-00775", - "judges": "", - "citations": "2015 NY Slip Op 06262", - "case_name_shorts": "Taylor" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Soler", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06261.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-07926", - "judges": "", - "citations": "2015 NY Slip Op 06261", - "case_name_shorts": "Soler" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Rodriguez", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06228.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-09312", - "judges": "", - "citations": "2015 NY Slip Op 06228", - "case_name_shorts": "Rodriguez" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Marsden", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06260.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-07743", - "judges": "", - "citations": "2015 NY Slip Op 06260", - "case_name_shorts": "Marsden" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Lundi", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06259.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-10025", - "judges": "", - "citations": "2015 NY Slip Op 06259", - "case_name_shorts": "Lundi" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Lawson", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06258.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2006-00233", - "judges": "", - "citations": "2015 NY Slip Op 06258", - "case_name_shorts": "Lawson" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Knotts", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06257.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10772", - "judges": "", - "citations": "2015 NY Slip Op 06257", - "case_name_shorts": "Knotts" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Holloway", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06256.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-02411", - "judges": "", - "citations": "2015 NY Slip Op 06256", - "case_name_shorts": "Holloway" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Hendricks", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06255.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01991", - "judges": "", - "citations": "2015 NY Slip Op 06255", - "case_name_shorts": "Hendricks" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Fulford", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06254.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1999-05260", - "judges": "", - "citations": "2015 NY Slip Op 06254", - "case_name_shorts": "Fulford" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Fabregas", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06253.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-07614", - "judges": "", - "citations": "2015 NY Slip Op 06253", - "case_name_shorts": "Fabregas" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Cesar", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06252.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-02141", - "judges": "Dillon, J.P.", - "citations": "2015 NY Slip Op 06252", - "case_name_shorts": "Cesar" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Bruce", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06251.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-07220", - "judges": "", - "citations": "2015 NY Slip Op 06251", - "case_name_shorts": "Bruce" - }, - { - "case_dates": "2015-07-22", - "case_names": "People v. Bethune", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06250.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2009-06026", - "judges": "", - "citations": "2015 NY Slip Op 06250", - "case_name_shorts": "Bethune" - }, - { - "case_dates": "2015-07-22", - "case_names": "People ex rel. Udell v. Queens County Dist. Attorney", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06264.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-05551", - "judges": "", - "citations": "2015 NY Slip Op 06264", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "Payano v. Patel", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06227.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09388", - "judges": "", - "citations": "2015 NY Slip Op 06227", - "case_name_shorts": "Payano" - }, - { - "case_dates": "2015-07-22", - "case_names": "Nugent v. Hubbard", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06226.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-03818", - "judges": "", - "citations": "2015 NY Slip Op 06226", - "case_name_shorts": "Nugent" - }, - { - "case_dates": "2015-07-22", - "case_names": "North Oyster Bay Baymen's Assn. v. Town of Oyster Bay", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06225.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01227", - "judges": "", - "citations": "2015 NY Slip Op 06225", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "Monzon v. Brown", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06224.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06872", - "judges": "", - "citations": "2015 NY Slip Op 06224", - "case_name_shorts": "Monzon" - }, - { - "case_dates": "2015-07-22", - "case_names": "Matter of Villalobos v. New York City Fire Dept.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06249.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08145", - "judges": "", - "citations": "2015 NY Slip Op 06249", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "Matter of Schwartz", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06248.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06175", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 06248", - "case_name_shorts": "Matter of Schwartz" - }, - { - "case_dates": "2015-07-22", - "case_names": "Matter of Rivera", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06247.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05743", - "judges": "", - "citations": "2015 NY Slip Op 06247", - "case_name_shorts": "Matter of Rivera" - }, - { - "case_dates": "2015-07-22", - "case_names": "Matter of Rappaport v. Village of Saltaire", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06246.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-05148", - "judges": "", - "citations": "2015 NY Slip Op 06246", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "Matter of Premier Capital, LLC v. Schnitzler", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06245.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05085", - "judges": "", - "citations": "2015 NY Slip Op 06245", - "case_name_shorts": "Schnitzler" - }, - { - "case_dates": "2015-07-22", - "case_names": "Matter of Ostojic v. Gee", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06244.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08802", - "judges": "", - "citations": "2015 NY Slip Op 06244", - "case_name_shorts": "Gee" - }, - { - "case_dates": "2015-07-22", - "case_names": "Matter of Hayden C. (Tafari C.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06241.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-08407", - "judges": "", - "citations": "2015 NY Slip Op 06241", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "Matter of Cronin", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06243.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-06884", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 06243", - "case_name_shorts": "Matter of Cronin" - }, - { - "case_dates": "2015-07-22", - "case_names": "Matter of Cambre v. Kirton", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06242.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-09177", - "judges": "", - "citations": "2015 NY Slip Op 06242", - "case_name_shorts": "Kirton" - }, - { - "case_dates": "2015-07-22", - "case_names": "Matter of Brown v. Brown", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06240.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07464", - "judges": "", - "citations": "2015 NY Slip Op 06240", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2015-07-22", - "case_names": "Matos v. Shelter Rock Homes, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06223.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08997", - "judges": "", - "citations": "2015 NY Slip Op 06223", - "case_name_shorts": "Matos" - }, - { - "case_dates": "2015-07-22", - "case_names": "Marrero v. Sosinsky", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06222.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00482", - "judges": "", - "citations": "2015 NY Slip Op 06222", - "case_name_shorts": "Marrero" - }, - { - "case_dates": "2015-07-22", - "case_names": "Manufacturers & Traders Trust Co. v. Berthole", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06221.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10144", - "judges": "", - "citations": "2015 NY Slip Op 06221", - "case_name_shorts": "Berthole" - }, - { - "case_dates": "2015-07-22", - "case_names": "Lopez v. Cobra Logistics, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06220.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01057", - "judges": "", - "citations": "2015 NY Slip Op 06220", - "case_name_shorts": "Lopez" - }, - { - "case_dates": "2015-07-22", - "case_names": "Kung v. Scottsdale Ins. Co.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06219.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-11538", - "judges": "", - "citations": "2015 NY Slip Op 06219", - "case_name_shorts": "Kung" - }, - { - "case_dates": "2015-07-22", - "case_names": "Kanic Realty Assoc., Inc. v. Suffolk County Water Auth.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06218.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10996", - "judges": "", - "citations": "2015 NY Slip Op 06218", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "JP Morgan Chase Bank v. Schott", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06217.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-00592ON MOTION", - "judges": "", - "citations": "2015 NY Slip Op 06217", - "case_name_shorts": "Schott" - }, - { - "case_dates": "2015-07-22", - "case_names": "Hinck v. Hinck", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06216.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08826", - "judges": "", - "citations": "2015 NY Slip Op 06216", - "case_name_shorts": "Hinck" - }, - { - "case_dates": "2015-07-22", - "case_names": "Hedley's, Inc. v. Airwaves Global Logistics, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06215.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01163", - "judges": "", - "citations": "2015 NY Slip Op 06215", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "Haines v. Verazzano of Dutchess, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06214.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06740", - "judges": "", - "citations": "2015 NY Slip Op 06214", - "case_name_shorts": "Haines" - }, - { - "case_dates": "2015-07-22", - "case_names": "Garcia v. Government Employees Ins. Co.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06213.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10278", - "judges": "", - "citations": "2015 NY Slip Op 06213", - "case_name_shorts": "Garcia" - }, - { - "case_dates": "2015-07-22", - "case_names": "Finn v. Zinn", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06212.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08632", - "judges": "", - "citations": "2015 NY Slip Op 06212", - "case_name_shorts": "Finn" - }, - { - "case_dates": "2015-07-22", - "case_names": "E. V. v. R. V.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06238.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06687", - "judges": "", - "citations": "2015 NY Slip Op 06238", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "Darby Group Cos., Inc. v. Wulforst Acquisition, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06210.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10128", - "judges": "", - "citations": "2015 NY Slip Op 06210", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "Combs v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06209.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-05957", - "judges": "", - "citations": "2015 NY Slip Op 06209", - "case_name_shorts": "Combs" - }, - { - "case_dates": "2015-07-22", - "case_names": "Citibank, N.A. v. Cabrera", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06208.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-10003", - "judges": "", - "citations": "2015 NY Slip Op 06208", - "case_name_shorts": "Cabrera" - }, - { - "case_dates": "2015-07-22", - "case_names": "Chudinova v. Kleyner", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06207.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01330", - "judges": "", - "citations": "2015 NY Slip Op 06207", - "case_name_shorts": "Chudinova" - }, - { - "case_dates": "2015-07-22", - "case_names": "Caterpillar Ins. Co. v. Metro Constr. Equities", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06206.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08108", - "judges": "", - "citations": "2015 NY Slip Op 06206", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-22", - "case_names": "Campisi v. Gambar Food Corp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06205.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08177", - "judges": "", - "citations": "2015 NY Slip Op 06205", - "case_name_shorts": "Campisi" - }, - { - "case_dates": "2015-07-22", - "case_names": "Brown v. Roosevelt Union Free School Dist.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06204.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-01496", - "judges": "", - "citations": "2015 NY Slip Op 06204", - "case_name_shorts": "Brown" - }, - { - "case_dates": "2015-07-22", - "case_names": "Brandeis School, Inc. v. Yakobowicz", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06203.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10279", - "judges": "", - "citations": "2015 NY Slip Op 06203", - "case_name_shorts": "Yakobowicz" - }, - { - "case_dates": "2015-07-22", - "case_names": "Bayview Loan Servicing, LLC v. Bernard", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06202.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-00338", - "judges": "", - "citations": "2015 NY Slip Op 06202", - "case_name_shorts": "Bernard" - }, - { - "case_dates": "2015-07-15", - "case_names": "Yung Chong Ho v. Uppal", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06132.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-11506", - "judges": "", - "citations": "2015 NY Slip Op 06132", - "case_name_shorts": "Uppal" - }, - { - "case_dates": "2015-07-15", - "case_names": "Yen-Fu Chen v. Oheka Catering, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06131.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-09250", - "judges": "", - "citations": "2015 NY Slip Op 06131", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Wan Li Situ v. MTA Bus Co.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06130.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-09993", - "judges": "", - "citations": "2015 NY Slip Op 06130", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Walker v. Walker", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06129.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-01178", - "judges": "", - "citations": "2015 NY Slip Op 06129", - "case_name_shorts": "Walker" - }, - { - "case_dates": "2015-07-15", - "case_names": "Stewart v. Dubuisson", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06128.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-04059", - "judges": "", - "citations": "2015 NY Slip Op 06128", - "case_name_shorts": "Stewart" - }, - { - "case_dates": "2015-07-15", - "case_names": "Rosenblum v. Island Custom Stairs, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06127.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01048", - "judges": "", - "citations": "2015 NY Slip Op 06127", - "case_name_shorts": "Rosenblum" - }, - { - "case_dates": "2015-07-15", - "case_names": "Rivera v. Department of Hous. Preserv. & Dev. of City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06126.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01607", - "judges": "", - "citations": "2015 NY Slip Op 06126", - "case_name_shorts": "Rivera" - }, - { - "case_dates": "2015-07-15", - "case_names": "Ricketts v. New York Cong. Nursing Ctr., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06125.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05332", - "judges": "", - "citations": "2015 NY Slip Op 06125", - "case_name_shorts": "Ricketts" - }, - { - "case_dates": "2015-07-15", - "case_names": "Renhe Zhang v. Gerald W. Purcell Assoc., Ltd.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06133.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-06028", - "judges": "", - "citations": "2015 NY Slip Op 06133", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Quartarolo-Johanson v. Johanson", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06124.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07940", - "judges": "", - "citations": "2015 NY Slip Op 06124", - "case_name_shorts": "Quartarolo-Johanson" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. Swenson", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06173.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-09511ON MOTION", - "judges": "", - "citations": "2015 NY Slip Op 06173", - "case_name_shorts": "Swenson" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. Robinson", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06172.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01446", - "judges": "", - "citations": "2015 NY Slip Op 06172", - "case_name_shorts": "Robinson" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. Riley", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06171.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2004-03714", - "judges": "", - "citations": "2015 NY Slip Op 06171", - "case_name_shorts": "Riley" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. Reyes", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06170.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-06674", - "judges": "", - "citations": "2015 NY Slip Op 06170", - "case_name_shorts": "Reyes" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. McKane", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06169.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01985 The People of the State of New York v. Calvin", - "judges": "", - "citations": "2015 NY Slip Op 06169", - "case_name_shorts": "McKane" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. LaTouche", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06168.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2006-01150", - "judges": "", - "citations": "2015 NY Slip Op 06168", - "case_name_shorts": "LaTouche" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. Irving", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06167.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-10322", - "judges": "", - "citations": "2015 NY Slip Op 06167", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. Georges", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06166.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09676", - "judges": "", - "citations": "2015 NY Slip Op 06166", - "case_name_shorts": "Georges" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. Duren", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06165.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-00985", - "judges": "", - "citations": "2015 NY Slip Op 06165", - "case_name_shorts": "Duren" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. DiSalvo", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06164.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07651", - "judges": "", - "citations": "2015 NY Slip Op 06164", - "case_name_shorts": "DiSalvo" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. Davidson", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06163.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09529", - "judges": "", - "citations": "2015 NY Slip Op 06163", - "case_name_shorts": "Davidson" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. Chance", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06162.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2010-04664", - "judges": "", - "citations": "2015 NY Slip Op 06162", - "case_name_shorts": "Chance" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. Bushuyeva", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06161.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-09658", - "judges": "", - "citations": "2015 NY Slip Op 06161", - "case_name_shorts": "Bushuyeva" - }, - { - "case_dates": "2015-07-15", - "case_names": "People v. Barnhill", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06160.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-04911", - "judges": "", - "citations": "2015 NY Slip Op 06160", - "case_name_shorts": "Barnhill" - }, - { - "case_dates": "2015-07-15", - "case_names": "Oseff v. Scotti", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06123.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10870", - "judges": "", - "citations": "2015 NY Slip Op 06123", - "case_name_shorts": "Oseff" - }, - { - "case_dates": "2015-07-15", - "case_names": "Nationwide Gen. Ins. Co. v. Linwood Bates III", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06122.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01986", - "judges": "", - "citations": "2015 NY Slip Op 06122", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Morales v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06121.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-06490", - "judges": "", - "citations": "2015 NY Slip Op 06121", - "case_name_shorts": "Morales" - }, - { - "case_dates": "2015-07-15", - "case_names": "Meredith v. Siben & Siben, LLP", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06120.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-11282", - "judges": "", - "citations": "2015 NY Slip Op 06120", - "case_name_shorts": "Meredith" - }, - { - "case_dates": "2015-07-15", - "case_names": "Mazur Bros. Realty, LLC v. State of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06119.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01090", - "judges": "", - "citations": "2015 NY Slip Op 06119", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Velardi", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06158.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07945", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 06158", - "case_name_shorts": "Matter of Velardi" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Tolkinen v. Siewert", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06156.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01929", - "judges": "", - "citations": "2015 NY Slip Op 06156", - "case_name_shorts": "Siewert" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Tiyana D.R.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06151.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06751", - "judges": "", - "citations": "2015 NY Slip Op 06151", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Sims v. Boykin", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06155.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-11258", - "judges": "", - "citations": "2015 NY Slip Op 06155", - "case_name_shorts": "Boykin" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Schneider", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06154.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08543", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 06154", - "case_name_shorts": "Matter of Schneider" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Ramos", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06152.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-10976", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 06152", - "case_name_shorts": "Matter of Ramos" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Nixon v. Christian", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06150.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07732", - "judges": "", - "citations": "2015 NY Slip Op 06150", - "case_name_shorts": "Christian" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Mazur Bros. Realty, LLC v. State of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06149.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-02719", - "judges": "", - "citations": "2015 NY Slip Op 06149", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Makhi A. (Jamillah A.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06134.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-08331", - "judges": "", - "citations": "2015 NY Slip Op 06134", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Livoti", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06148.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-00735", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 06148", - "case_name_shorts": "Matter of Livoti" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Levitis", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06147.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-00926", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 06147", - "case_name_shorts": "Matter of Levitis" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Kogan", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06146.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00131", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 06146", - "case_name_shorts": "Matter of Kogan" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Jeremiah W. (Ronald W.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06159.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-03871", - "judges": "", - "citations": "2015 NY Slip Op 06159", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Helen S. (Falero)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06153.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-10130", - "judges": "", - "citations": "2015 NY Slip Op 06153", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Ethan B. (Frederick B.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06137.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-04907", - "judges": "", - "citations": "2015 NY Slip Op 06137", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Dylan C. (Carmen V.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06141.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-11517", - "judges": "", - "citations": "2015 NY Slip Op 06141", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Cyngiel", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06145.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00180", - "judges": "", - "citations": "2015 NY Slip Op 06145", - "case_name_shorts": "Matter of Cyngiel" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Culberson v. Fisher", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06144.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06799", - "judges": "", - "citations": "2015 NY Slip Op 06144", - "case_name_shorts": "Fisher" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of County of Orange v. Monroe Bakertown Rd. Realty, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06143.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-04685", - "judges": "", - "citations": "2015 NY Slip Op 06143", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Cascardo", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06142.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07523", - "judges": "", - "citations": "2015 NY Slip Op 06142", - "case_name_shorts": "Matter of Cascardo" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Bhargava v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06140.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05762", - "judges": "", - "citations": "2015 NY Slip Op 06140", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Best v. Schwartz", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06139.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-01499", - "judges": "", - "citations": "2015 NY Slip Op 06139", - "case_name_shorts": "Schwartz" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Barrett v. Village of Wappingers Falls", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06138.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-11489", - "judges": "", - "citations": "2015 NY Slip Op 06138", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Arzadi", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06136.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00700 ON MOTION", - "judges": "", - "citations": "2015 NY Slip Op 06136", - "case_name_shorts": "Matter of Arzadi" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Allstate Ins. Co. v. Laldharry", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06135.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06493", - "judges": "", - "citations": "2015 NY Slip Op 06135", - "case_name_shorts": "Laldharry" - }, - { - "case_dates": "2015-07-15", - "case_names": "Matter of Alexa V. (Antonio V.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06157.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09106", - "judges": "", - "citations": "2015 NY Slip Op 06157", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Loancare v. Firshing", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06118.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07529", - "judges": "", - "citations": "2015 NY Slip Op 06118", - "case_name_shorts": "Loancare" - }, - { - "case_dates": "2015-07-15", - "case_names": "Krigsman v. Cyngiel", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06117.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-03443", - "judges": "", - "citations": "2015 NY Slip Op 06117", - "case_name_shorts": "Krigsman" - }, - { - "case_dates": "2015-07-15", - "case_names": "Imperatore v. 329 Menahan St., LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06116.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-11968", - "judges": "", - "citations": "2015 NY Slip Op 06116", - "case_name_shorts": "Imperatore" - }, - { - "case_dates": "2015-07-15", - "case_names": "Haber v. Raso", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06113.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05061", - "judges": "", - "citations": "2015 NY Slip Op 06113", - "case_name_shorts": "Haber" - }, - { - "case_dates": "2015-07-15", - "case_names": "HSBC Bank, USA v. Despot", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06115.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-10174", - "judges": "", - "citations": "2015 NY Slip Op 06115", - "case_name_shorts": "Despot" - }, - { - "case_dates": "2015-07-15", - "case_names": "HSBC Bank USA, N.A. v. Wright", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06114.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07581", - "judges": "", - "citations": "2015 NY Slip Op 06114", - "case_name_shorts": "Wright" - }, - { - "case_dates": "2015-07-15", - "case_names": "Griffin v. Sherwood Vil., Co-op \"C\", Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06112.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07707", - "judges": "", - "citations": "2015 NY Slip Op 06112", - "case_name_shorts": "Griffin" - }, - { - "case_dates": "2015-07-15", - "case_names": "Graham v. Kone, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06111.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07513", - "judges": "", - "citations": "2015 NY Slip Op 06111", - "case_name_shorts": "Graham" - }, - { - "case_dates": "2015-07-15", - "case_names": "Gerald Gardner Wright, P.C. & Assoc. v. Champion Prop. Mgt., LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06110.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10389", - "judges": "", - "citations": "2015 NY Slip Op 06110", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Doria v. Benisch", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06109.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01566", - "judges": "", - "citations": "2015 NY Slip Op 06109", - "case_name_shorts": "Doria" - }, - { - "case_dates": "2015-07-15", - "case_names": "David v. Byron", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06107.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-03824", - "judges": "", - "citations": "2015 NY Slip Op 06107", - "case_name_shorts": "David" - }, - { - "case_dates": "2015-07-15", - "case_names": "DKR Mtge. Asset Trust 1 v. Rivera", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06108.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07186", - "judges": "", - "citations": "2015 NY Slip Op 06108", - "case_name_shorts": "Rivera" - }, - { - "case_dates": "2015-07-15", - "case_names": "Copacabana Realty, LLC v. Fireman's Fund Ins. Co.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06106.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08910", - "judges": "", - "citations": "2015 NY Slip Op 06106", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Congregation Beth Shalom of Kingsbay v. Yaakov", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06105.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00578", - "judges": "", - "citations": "2015 NY Slip Op 06105", - "case_name_shorts": "Yaakov" - }, - { - "case_dates": "2015-07-15", - "case_names": "Brits v. Flores", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06104.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07898", - "judges": "", - "citations": "2015 NY Slip Op 06104", - "case_name_shorts": "Brits" - }, - { - "case_dates": "2015-07-15", - "case_names": "Bergin v. Golshani", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06103.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08946", - "judges": "", - "citations": "2015 NY Slip Op 06103", - "case_name_shorts": "Bergin" - }, - { - "case_dates": "2015-07-15", - "case_names": "Barone v. Barone", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06102.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-03681", - "judges": "", - "citations": "2015 NY Slip Op 06102", - "case_name_shorts": "Barone" - }, - { - "case_dates": "2015-07-15", - "case_names": "Avenue C Med., P.C. v. Encompass Ins. of MA", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06101.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00659", - "judges": "", - "citations": "2015 NY Slip Op 06101", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-15", - "case_names": "Aurora Loan Servs., LLC v. Hiyo", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06100.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-08425", - "judges": "", - "citations": "2015 NY Slip Op 06100", - "case_name_shorts": "Hiyo" - }, - { - "case_dates": "2015-07-15", - "case_names": "Amandola v. Roman Catholic Diocese of Rockville Ctr.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_06099.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07937", - "judges": "", - "citations": "2015 NY Slip Op 06099", - "case_name_shorts": "Amandola" - }, - { - "case_dates": "2015-07-08", - "case_names": "Wells Fargo Bank v. Allen", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05935.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10841", - "judges": "", - "citations": "2015 NY Slip Op 05935", - "case_name_shorts": "Allen" - }, - { - "case_dates": "2015-07-08", - "case_names": "Vanderhurst v. Nobile", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05934.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06105", - "judges": "", - "citations": "2015 NY Slip Op 05934", - "case_name_shorts": "Vanderhurst" - }, - { - "case_dates": "2015-07-08", - "case_names": "U.S. Bank N.A. v. Alba", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05933.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08737", - "judges": "", - "citations": "2015 NY Slip Op 05933", - "case_name_shorts": "Alba" - }, - { - "case_dates": "2015-07-08", - "case_names": "Tracy v. Vassar Bros. Hosp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05932.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-01541", - "judges": "", - "citations": "2015 NY Slip Op 05932", - "case_name_shorts": "Tracy" - }, - { - "case_dates": "2015-07-08", - "case_names": "Taylor v. New York City Tr. Auth.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05931.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-03465", - "judges": "", - "citations": "2015 NY Slip Op 05931", - "case_name_shorts": "Taylor" - }, - { - "case_dates": "2015-07-08", - "case_names": "Stein v. Bauer", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05930.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01997", - "judges": "", - "citations": "2015 NY Slip Op 05930", - "case_name_shorts": "Stein" - }, - { - "case_dates": "2015-07-08", - "case_names": "Spencer v. Tower Ins. Group Corp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05929.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-04708", - "judges": "", - "citations": "2015 NY Slip Op 05929", - "case_name_shorts": "Spencer" - }, - { - "case_dates": "2015-07-08", - "case_names": "Rosa v. Mendon Leasing Corp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05928.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-03338", - "judges": "", - "citations": "2015 NY Slip Op 05928", - "case_name_shorts": "Rosa" - }, - { - "case_dates": "2015-07-08", - "case_names": "Pyronneau v. Pyronneau", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05927.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-04051", - "judges": "", - "citations": "2015 NY Slip Op 05927", - "case_name_shorts": "Pyronneau" - }, - { - "case_dates": "2015-07-08", - "case_names": "Politopoulos v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05926.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07855", - "judges": "", - "citations": "2015 NY Slip Op 05926", - "case_name_shorts": "Politopoulos" - }, - { - "case_dates": "2015-07-08", - "case_names": "Piccoli v. Panos", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05925.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-01542", - "judges": "", - "citations": "2015 NY Slip Op 05925", - "case_name_shorts": "Piccoli" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Vaughn", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05970.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10347", - "judges": "", - "citations": "2015 NY Slip Op 05970", - "case_name_shorts": "Vaughn" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Ullah", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05969.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-11057", - "judges": "", - "citations": "2015 NY Slip Op 05969", - "case_name_shorts": "Ullah" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Samuels", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05968.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-01739", - "judges": "", - "citations": "2015 NY Slip Op 05968", - "case_name_shorts": "Samuels" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Rosas", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05967.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-05033", - "judges": "", - "citations": "2015 NY Slip Op 05967", - "case_name_shorts": "Rosas" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Priester", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05966.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-06914", - "judges": "", - "citations": "2015 NY Slip Op 05966", - "case_name_shorts": "Priester" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. LaRosa", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05965.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-08360", - "judges": "", - "citations": "2015 NY Slip Op 05965", - "case_name_shorts": "LaRosa" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Heron", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05964.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-05469", - "judges": "", - "citations": "2015 NY Slip Op 05964", - "case_name_shorts": "Heron" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Hardy", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05963.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-09914", - "judges": "", - "citations": "2015 NY Slip Op 05963", - "case_name_shorts": "Hardy" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Hall", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05962.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-04635", - "judges": "", - "citations": "2015 NY Slip Op 05962", - "case_name_shorts": "Hall" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Hall", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05961.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-00806", - "judges": "", - "citations": "2015 NY Slip Op 05961", - "case_name_shorts": "Hall" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Dupree", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05960.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07337", - "judges": "", - "citations": "2015 NY Slip Op 05960", - "case_name_shorts": "Dupree" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Dawson", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05959.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-04044", - "judges": "", - "citations": "2015 NY Slip Op 05959", - "case_name_shorts": "Dawson" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Collezo", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05958.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-10064", - "judges": "", - "citations": "2015 NY Slip Op 05958", - "case_name_shorts": "Collezo" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Clarke", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05957.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2008-00671", - "judges": "", - "citations": "2015 NY Slip Op 05957", - "case_name_shorts": "Clarke" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Burno", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05956.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09310", - "judges": "", - "citations": "2015 NY Slip Op 05956", - "case_name_shorts": "Burno" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Barksdale", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05955.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-01422", - "judges": "", - "citations": "2015 NY Slip Op 05955", - "case_name_shorts": "Barksdale" - }, - { - "case_dates": "2015-07-08", - "case_names": "People v. Badia", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05954.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-04523", - "judges": "", - "citations": "2015 NY Slip Op 05954", - "case_name_shorts": "Badia" - }, - { - "case_dates": "2015-07-08", - "case_names": "PHH Mtge. Corp. v. Celestin", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05924.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-04882", - "judges": "", - "citations": "2015 NY Slip Op 05924", - "case_name_shorts": "Celestin" - }, - { - "case_dates": "2015-07-08", - "case_names": "Oriental v. U-Haul Co. of Ariz.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05923.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-08456", - "judges": "", - "citations": "2015 NY Slip Op 05923", - "case_name_shorts": "Oriental" - }, - { - "case_dates": "2015-07-08", - "case_names": "Onewest Bank, FSB v. Prince", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05922.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09359", - "judges": "", - "citations": "2015 NY Slip Op 05922", - "case_name_shorts": "Prince" - }, - { - "case_dates": "2015-07-08", - "case_names": "O'Connor v. Metro Mgt. Dev., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05921.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00694", - "judges": "", - "citations": "2015 NY Slip Op 05921", - "case_name_shorts": "O'Connor" - }, - { - "case_dates": "2015-07-08", - "case_names": "Nura v. International Shoppes, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05920.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-04870", - "judges": "", - "citations": "2015 NY Slip Op 05920", - "case_name_shorts": "Nura" - }, - { - "case_dates": "2015-07-08", - "case_names": "Montenegro v. P12, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05919.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-08939", - "judges": "", - "citations": "2015 NY Slip Op 05919", - "case_name_shorts": "Montenegro" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Westchester County Dept. of Social Servs. v. Arnoldo B.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05953.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05839", - "judges": "", - "citations": "2015 NY Slip Op 05953", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Sha-Naya M.S.C. (Derrick C.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05938.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07008", - "judges": "", - "citations": "2015 NY Slip Op 05938", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Patrick v. Zoning Bd. of Appeals of Vil. of Russell Gardens", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05951.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10536", - "judges": "", - "citations": "2015 NY Slip Op 05951", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Oakley v. Cond-Arnold", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05949.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06972", - "judges": "", - "citations": "2015 NY Slip Op 05949", - "case_name_shorts": "Cond-Arnold" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Nyomi B. (Nefreida W.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05937.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-11345", - "judges": "", - "citations": "2015 NY Slip Op 05937", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Nelson v. McGriff", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05948.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-08731", - "judges": "", - "citations": "2015 NY Slip Op 05948", - "case_name_shorts": "McGriff" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Kayla F. (Kevin F.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05942.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10881", - "judges": "", - "citations": "2015 NY Slip Op 05942", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Kadyorios v. Kirton", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05946.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06392", - "judges": "", - "citations": "2015 NY Slip Op 05946", - "case_name_shorts": "Kirton" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Hyde Park Landing, Ltd. v. Town of Hyde Park", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05945.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-11209", - "judges": "", - "citations": "2015 NY Slip Op 05945", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Haide L.G.M. v. Santo D.S.M.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05947.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-10541", - "judges": "", - "citations": "2015 NY Slip Op 05947", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Goldfarb v. Szabo", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05944.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-04357", - "judges": "", - "citations": "2015 NY Slip Op 05944", - "case_name_shorts": "Szabo" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Glass v. County of Suffolk", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05943.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00224", - "judges": "", - "citations": "2015 NY Slip Op 05943", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Gabriel W. (Steven C.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05952.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01602", - "judges": "", - "citations": "2015 NY Slip Op 05952", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Denkewitz v. Sundara", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05941.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-04452", - "judges": "", - "citations": "2015 NY Slip Op 05941", - "case_name_shorts": "Sundara" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of David P. (Elisa P.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05950.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08609", - "judges": "", - "citations": "2015 NY Slip Op 05950", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Curtis", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05940.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10323", - "judges": "", - "citations": "2015 NY Slip Op 05940", - "case_name_shorts": "Matter of Curtis" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Covington v. Ray", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05939.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06479", - "judges": "", - "citations": "2015 NY Slip Op 05939", - "case_name_shorts": "Ray" - }, - { - "case_dates": "2015-07-08", - "case_names": "Matter of Alleyne v. Ally", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05936.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-11715", - "judges": "", - "citations": "2015 NY Slip Op 05936", - "case_name_shorts": "Ally" - }, - { - "case_dates": "2015-07-08", - "case_names": "Mahabir v. Suffolk County Water Auth.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05918.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07139", - "judges": "", - "citations": "2015 NY Slip Op 05918", - "case_name_shorts": "Mahabir" - }, - { - "case_dates": "2015-07-08", - "case_names": "Lanza v. Carbone", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05917.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10557", - "judges": "", - "citations": "2015 NY Slip Op 05917", - "case_name_shorts": "Lanza" - }, - { - "case_dates": "2015-07-08", - "case_names": "Lajqi v. Lajqi", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05916.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07910", - "judges": "", - "citations": "2015 NY Slip Op 05916", - "case_name_shorts": "Lajqi" - }, - { - "case_dates": "2015-07-08", - "case_names": "Kraus v. Kraus", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05915.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-04824", - "judges": "Dillon, J.P.", - "citations": "2015 NY Slip Op 05915", - "case_name_shorts": "Kraus" - }, - { - "case_dates": "2015-07-08", - "case_names": "Jones v. City of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05914.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05219", - "judges": "", - "citations": "2015 NY Slip Op 05914", - "case_name_shorts": "Jones" - }, - { - "case_dates": "2015-07-08", - "case_names": "Island Assoc. Real Estate, Inc. v. Doukas", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05913.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-06200", - "judges": "", - "citations": "2015 NY Slip Op 05913", - "case_name_shorts": "Doukas" - }, - { - "case_dates": "2015-07-08", - "case_names": "Hernandez v. Alstom Transp., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05911.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-03915", - "judges": "", - "citations": "2015 NY Slip Op 05911", - "case_name_shorts": "Hernandez" - }, - { - "case_dates": "2015-07-08", - "case_names": "HSBC Bank, USA v. Hagerman", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05912.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01949", - "judges": "", - "citations": "2015 NY Slip Op 05912", - "case_name_shorts": "Hagerman" - }, - { - "case_dates": "2015-07-08", - "case_names": "Foley Inc. v. Metropolis Superstructures, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05910.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-01622", - "judges": "", - "citations": "2015 NY Slip Op 05910", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-08", - "case_names": "Deutsche Bank Natl. Trust Co. v. Gavrielova", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05907.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07577", - "judges": "", - "citations": "2015 NY Slip Op 05907", - "case_name_shorts": "Gavrielova" - }, - { - "case_dates": "2015-07-08", - "case_names": "Cuttler v. Cuttler", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05906.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-10860", - "judges": "", - "citations": "2015 NY Slip Op 05906", - "case_name_shorts": "Cuttler" - }, - { - "case_dates": "2015-07-08", - "case_names": "Cuttler v. Cuttler", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05905.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01350", - "judges": "", - "citations": "2015 NY Slip Op 05905", - "case_name_shorts": "Cuttler" - }, - { - "case_dates": "2015-07-08", - "case_names": "Comprehensive Mental Assessment & Med. Care, P.C. v. Gusrae Kaplan Nusbaum, PLLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05904.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10499", - "judges": "", - "citations": "2015 NY Slip Op 05904", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-08", - "case_names": "Chavez v. Delta Intl. Mach. Corp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05903.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05236", - "judges": "", - "citations": "2015 NY Slip Op 05903", - "case_name_shorts": "Chavez" - }, - { - "case_dates": "2015-07-08", - "case_names": "Caldara v. Utica Mut. Ins. Co.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05902.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-11164", - "judges": "", - "citations": "2015 NY Slip Op 05902", - "case_name_shorts": "Caldara" - }, - { - "case_dates": "2015-07-08", - "case_names": "Cabrera v. Magussen", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05901.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05027", - "judges": "", - "citations": "2015 NY Slip Op 05901", - "case_name_shorts": "Cabrera" - }, - { - "case_dates": "2015-07-08", - "case_names": "Bowman v. Bowman", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05900.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05422", - "judges": "", - "citations": "2015 NY Slip Op 05900", - "case_name_shorts": "Bowman" - }, - { - "case_dates": "2015-07-08", - "case_names": "Alotta v. Diaz", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05899.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06581", - "judges": "", - "citations": "2015 NY Slip Op 05899", - "case_name_shorts": "Alotta" - }, - { - "case_dates": "2015-07-08", - "case_names": "5000, Inc. v. Hudson One, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05909.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01696", - "judges": "", - "citations": "2015 NY Slip Op 05909", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-08", - "case_names": "5000, Inc. v. Hudson One, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05908.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-07355", - "judges": "", - "citations": "2015 NY Slip Op 05908", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Yehia v. Marphil Realty Corp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05670.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07705", - "judges": "", - "citations": "2015 NY Slip Op 05670", - "case_name_shorts": "Yehia" - }, - { - "case_dates": "2015-07-01", - "case_names": "Weldon v. Vepp Realty, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05669.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07740", - "judges": "", - "citations": "2015 NY Slip Op 05669", - "case_name_shorts": "Weldon" - }, - { - "case_dates": "2015-07-01", - "case_names": "Watt v. County of Nassau", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05668.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05374", - "judges": "", - "citations": "2015 NY Slip Op 05668", - "case_name_shorts": "Watt" - }, - { - "case_dates": "2015-07-01", - "case_names": "Walker v. Schuster", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05667.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-09252", - "judges": "", - "citations": "2015 NY Slip Op 05667", - "case_name_shorts": "Walker" - }, - { - "case_dates": "2015-07-01", - "case_names": "Vitolo v. Suarez", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05666.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-08925", - "judges": "", - "citations": "2015 NY Slip Op 05666", - "case_name_shorts": "Vitolo" - }, - { - "case_dates": "2015-07-01", - "case_names": "Vitiello v. Merwin", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05665.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-05694", - "judges": "", - "citations": "2015 NY Slip Op 05665", - "case_name_shorts": "Vitiello" - }, - { - "case_dates": "2015-07-01", - "case_names": "Turner v. Turner", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05664.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01194", - "judges": "", - "citations": "2015 NY Slip Op 05664", - "case_name_shorts": "Turner" - }, - { - "case_dates": "2015-07-01", - "case_names": "Town of Hempstead v. AJM Capital II, LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05663.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08176", - "judges": "", - "citations": "2015 NY Slip Op 05663", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "TKM Group, Inc. v. Indian Harbor Ins. Co.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05662.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09319", - "judges": "", - "citations": "2015 NY Slip Op 05662", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Stein v. Stein", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05661.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-02529", - "judges": "", - "citations": "2015 NY Slip Op 05661", - "case_name_shorts": "Stein" - }, - { - "case_dates": "2015-07-01", - "case_names": "Shannon v. Shannon", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05660.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-09961", - "judges": "", - "citations": "2015 NY Slip Op 05660", - "case_name_shorts": "Shannon" - }, - { - "case_dates": "2015-07-01", - "case_names": "Pietrafesa v. Canestro", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05659.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-00800", - "judges": "", - "citations": "2015 NY Slip Op 05659", - "case_name_shorts": "Pietrafesa" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Wiggs", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05707.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-08055", - "judges": "", - "citations": "2015 NY Slip Op 05707", - "case_name_shorts": "Wiggs" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Syville", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05706.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-01830", - "judges": "", - "citations": "2015 NY Slip Op 05706", - "case_name_shorts": "Syville" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Spitzer", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05705.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-05370", - "judges": "", - "citations": "2015 NY Slip Op 05705", - "case_name_shorts": "Spitzer" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Rucano", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05704.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-01960", - "judges": "", - "citations": "2015 NY Slip Op 05704", - "case_name_shorts": "Rucano" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Rivera", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05703.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-07822", - "judges": "", - "citations": "2015 NY Slip Op 05703", - "case_name_shorts": "Rivera" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. McMillan", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05702.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-00263", - "judges": "", - "citations": "2015 NY Slip Op 05702", - "case_name_shorts": "McMillan" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. McAllister", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05701.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-04102", - "judges": "", - "citations": "2015 NY Slip Op 05701", - "case_name_shorts": "McAllister" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Mack", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05700.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10183", - "judges": "", - "citations": "2015 NY Slip Op 05700", - "case_name_shorts": "Mack" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Jones", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05658.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00566", - "judges": "", - "citations": "2015 NY Slip Op 05658", - "case_name_shorts": "Jones" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Jean", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05699.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01409", - "judges": "", - "citations": "2015 NY Slip Op 05699", - "case_name_shorts": "Jean" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Hatcher", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05698.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-11928", - "judges": "", - "citations": "2015 NY Slip Op 05698", - "case_name_shorts": "Hatcher" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Hamilton", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05697.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1995-06509", - "judges": "", - "citations": "2015 NY Slip Op 05697", - "case_name_shorts": "Hamilton" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Gavarette", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05696.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-11069 ON MOTION", - "judges": "", - "citations": "2015 NY Slip Op 05696", - "case_name_shorts": "Gavarette" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Garvin", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05695.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-09698", - "judges": "", - "citations": "2015 NY Slip Op 05695", - "case_name_shorts": "Garvin" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Garcia", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05694.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-09782", - "judges": "", - "citations": "2015 NY Slip Op 05694", - "case_name_shorts": "Garcia" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Fortier", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05693.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07162", - "judges": "", - "citations": "2015 NY Slip Op 05693", - "case_name_shorts": "Fortier" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Dyson", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05657.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-10682", - "judges": "", - "citations": "2015 NY Slip Op 05657", - "case_name_shorts": "Dyson" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Davis", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05656.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2011-04636", - "judges": "", - "citations": "2015 NY Slip Op 05656", - "case_name_shorts": "Davis" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Colliton", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05692.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-02399", - "judges": "", - "citations": "2015 NY Slip Op 05692", - "case_name_shorts": "Colliton" - }, - { - "case_dates": "2015-07-01", - "case_names": "People v. Buckery", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05691.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-02486", - "judges": "", - "citations": "2015 NY Slip Op 05691", - "case_name_shorts": "Buckery" - }, - { - "case_dates": "2015-07-01", - "case_names": "Ostrovsky v. Stern", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05654.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-04698", - "judges": "", - "citations": "2015 NY Slip Op 05654", - "case_name_shorts": "Ostrovsky" - }, - { - "case_dates": "2015-07-01", - "case_names": "Osarczuk v. Associated Univs., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05653.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07904", - "judges": "", - "citations": "2015 NY Slip Op 05653", - "case_name_shorts": "Osarczuk" - }, - { - "case_dates": "2015-07-01", - "case_names": "Ortiz v. AGL Trucking Corp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05652.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-01530", - "judges": "", - "citations": "2015 NY Slip Op 05652", - "case_name_shorts": "Ortiz" - }, - { - "case_dates": "2015-07-01", - "case_names": "O'Toole v. Vollmer", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05655.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07210", - "judges": "", - "citations": "2015 NY Slip Op 05655", - "case_name_shorts": "O'Toole" - }, - { - "case_dates": "2015-07-01", - "case_names": "Nasca v. Sgro", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05650.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-04626", - "judges": "", - "citations": "2015 NY Slip Op 05650", - "case_name_shorts": "Nasca" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Williamsburg & Greenpoint Parents: Our Pub. Schools! v. Board of Trustees, State Univ. of N.Y.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05690.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-04383", - "judges": "", - "citations": "2015 NY Slip Op 05690", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Weber", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05689.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-04637", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 05689", - "case_name_shorts": "Matter of Weber" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Teixeira v. Spota", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05688.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-02612", - "judges": "", - "citations": "2015 NY Slip Op 05688", - "case_name_shorts": "Spota" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Sosa v. Serrano", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05687.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-00185", - "judges": "", - "citations": "2015 NY Slip Op 05687", - "case_name_shorts": "Serrano" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Sarabia v. Sarabia", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05686.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06390", - "judges": "", - "citations": "2015 NY Slip Op 05686", - "case_name_shorts": "Sarabia" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Rosenfeld", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05684.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-02209", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 05684", - "case_name_shorts": "Matter of Rosenfeld" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Richard S. (Lacey P.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05685.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00445", - "judges": "", - "citations": "2015 NY Slip Op 05685", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Raven K. (Adam C.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05679.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06457", - "judges": "", - "citations": "2015 NY Slip Op 05679", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Middleton v. Stringham", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05682.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-10821", - "judges": "", - "citations": "2015 NY Slip Op 05682", - "case_name_shorts": "Stringham" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Michael B. (Samantha B.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05673.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-03811", - "judges": "", - "citations": "2015 NY Slip Op 05673", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Matthew G. (Miguel G.)", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05676.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09936", - "judges": "", - "citations": "2015 NY Slip Op 05676", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Masciello v. Masciello", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05681.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05369", - "judges": "", - "citations": "2015 NY Slip Op 05681", - "case_name_shorts": "Masciello" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Lao v. Gonzales", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05680.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-10752", - "judges": "", - "citations": "2015 NY Slip Op 05680", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Heavy Constr. Co., Inc. v. Metro Constr. Equities, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05678.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-04192", - "judges": "", - "citations": "2015 NY Slip Op 05678", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Halloran", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05677.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-00352", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 05677", - "case_name_shorts": "Matter of Halloran" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Fisher", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05675.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-01899", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 05675", - "case_name_shorts": "Matter of Fisher" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Dillon R.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05683.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07575", - "judges": "", - "citations": "2015 NY Slip Op 05683", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Castelli", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05674.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00322", - "judges": "Per Curiam.", - "citations": "2015 NY Slip Op 05674", - "case_name_shorts": "Matter of Castelli" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Arkali v. Suffolk County Dept. of Social Servs.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05672.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-04652", - "judges": "", - "citations": "2015 NY Slip Op 05672", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Matter of Arkali v. Muuss", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05671.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-03091", - "judges": "", - "citations": "2015 NY Slip Op 05671", - "case_name_shorts": "Muuss" - }, - { - "case_dates": "2015-07-01", - "case_names": "Manganiello v. Ahmed", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05649.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-08804", - "judges": "", - "citations": "2015 NY Slip Op 05649", - "case_name_shorts": "Manganiello" - }, - { - "case_dates": "2015-07-01", - "case_names": "Loccisano v. Ayers", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05648.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-10305", - "judges": "", - "citations": "2015 NY Slip Op 05648", - "case_name_shorts": "Loccisano" - }, - { - "case_dates": "2015-07-01", - "case_names": "Lamparillo v. Lamparillo", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05647.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2012-06232ON MOTION", - "judges": "", - "citations": "2015 NY Slip Op 05647", - "case_name_shorts": "Lamparillo" - }, - { - "case_dates": "2015-07-01", - "case_names": "Knapp v. Town of Hempstead", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05646.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-10531", - "judges": "", - "citations": "2015 NY Slip Op 05646", - "case_name_shorts": "Knapp" - }, - { - "case_dates": "2015-07-01", - "case_names": "Kaplan v. Kaplan", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05645.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00906", - "judges": "", - "citations": "2015 NY Slip Op 05645", - "case_name_shorts": "Kaplan" - }, - { - "case_dates": "2015-07-01", - "case_names": "Istomin v. Istomin", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05644.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-09320", - "judges": "", - "citations": "2015 NY Slip Op 05644", - "case_name_shorts": "Istomin" - }, - { - "case_dates": "2015-07-01", - "case_names": "Imperium Ins. Co. v. Utica First Ins. Co.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05643.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-02658", - "judges": "", - "citations": "2015 NY Slip Op 05643", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Hecker v. Liebgold", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05642.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05143", - "judges": "", - "citations": "2015 NY Slip Op 05642", - "case_name_shorts": "Hecker" - }, - { - "case_dates": "2015-07-01", - "case_names": "Hallwood v. Incorporated Vil. of Old Westbury", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05641.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07543", - "judges": "", - "citations": "2015 NY Slip Op 05641", - "case_name_shorts": "Hallwood" - }, - { - "case_dates": "2015-07-01", - "case_names": "GFRE, Inc. v. U.S. Bank, N.A.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05640.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-01120", - "judges": "", - "citations": "2015 NY Slip Op 05640", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Forlenza v. Miglio", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05639.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07836", - "judges": "", - "citations": "2015 NY Slip Op 05639", - "case_name_shorts": "Forlenza" - }, - { - "case_dates": "2015-07-01", - "case_names": "Fernandez v. State of New York", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05638.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-00515", - "judges": "", - "citations": "2015 NY Slip Op 05638", - "case_name_shorts": "Fernandez" - }, - { - "case_dates": "2015-07-01", - "case_names": "Excess Line Assn. of N.Y. (ELANY) v. Waldorf & Assoc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05637.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-06615", - "judges": "", - "citations": "2015 NY Slip Op 05637", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-01", - "case_names": "Estrada v. Selman", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05636.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-03733", - "judges": "", - "citations": "2015 NY Slip Op 05636", - "case_name_shorts": "Estrada" - }, - { - "case_dates": "2015-07-01", - "case_names": "Diaz v. Diaz", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05635.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-04150", - "judges": "", - "citations": "2015 NY Slip Op 05635", - "case_name_shorts": "Diaz" - }, - { - "case_dates": "2015-07-01", - "case_names": "Deutsche Bank Trust Co. Ams. v. Vitellas", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05634.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-07197", - "judges": "Cohen, J.", - "citations": "2015 NY Slip Op 05634", - "case_name_shorts": "Vitellas" - }, - { - "case_dates": "2015-07-01", - "case_names": "Cremosa Food Co., LLC v. Amella", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05633.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07220", - "judges": "", - "citations": "2015 NY Slip Op 05633", - "case_name_shorts": "Amella" - }, - { - "case_dates": "2015-07-01", - "case_names": "Citimortgage, Inc. v. Kowalski", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05632.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-03941", - "judges": "", - "citations": "2015 NY Slip Op 05632", - "case_name_shorts": "Kowalski" - }, - { - "case_dates": "2015-07-01", - "case_names": "Camac v. 550 Realty Hgts., LLC", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05631.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-06271", - "judges": "", - "citations": "2015 NY Slip Op 05631", - "case_name_shorts": "Camac" - }, - { - "case_dates": "2015-07-01", - "case_names": "Brothers v. Bartling", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05630.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-07559", - "judges": "", - "citations": "2015 NY Slip Op 05630", - "case_name_shorts": "Brothers" - }, - { - "case_dates": "2015-07-01", - "case_names": "Boudine v. Goldmaker, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05629.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-08480", - "judges": "", - "citations": "2015 NY Slip Op 05629", - "case_name_shorts": "Boudine" - }, - { - "case_dates": "2015-07-01", - "case_names": "Bank of N.Y. v. Stein", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05628.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-05779", - "judges": "", - "citations": "2015 NY Slip Op 05628", - "case_name_shorts": "Stein" - }, - { - "case_dates": "2015-07-01", - "case_names": "1136 Realty, LLC v. 213 Union St. Realty Corp.", - "download_urls": "tests/examples/opinions/3dseries/2015/2015_05651.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-06818", - "judges": "", - "citations": "2015 NY Slip Op 05651", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyappdiv_2nd_example_3.html b/tests/examples/opinions/united_states/nyappdiv_2nd_example_3.html deleted file mode 100644 index 49f48dfb6..000000000 --- a/tests/examples/opinions/united_states/nyappdiv_2nd_example_3.html +++ /dev/null @@ -1,2144 +0,0 @@ - - - - - - - -Appellate Division, Second Department, Decisions - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    - - - - - -
    - - - - -
    - -
    - - - - -
    -
    - - - - -
    - - - - - -
    - -   - -
    -
    - - - - - - - - - -
    -
    -
    -
    - - - - - -
    - - -
    Archives
    -
    -
     
    -
    - - - - -
    - -
      July, 2015  
    - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided July 29, 2015
    Title -Judge -Docket No. -Slip Opinion No. -
    Andrew v Kerendian2014-012192015 NY Slip Op 06302
    Aurora Loan Servs., LLC v Lopa2013-101542015 NY Slip Op 06303
    Board of Educ. of Northport-E. Northport Union Free Sch. Dist. v Long Is. Power Auth.2013-068122015 NY Slip Op 06304
    Brea v Salvatore2014-119642015 NY Slip Op 06305
    Castiglione v Kruse2014-103072015 NY Slip Op 06306
    Clark v City of New York2013-080162015 NY Slip Op 06307
    Covert v Wisla Corp.2014-004782015 NY Slip Op 06308
    Crawford v Smith2013-099692015 NY Slip Op 06309
    Crown Constr. Bldrs. & Project Mgrs. Corp. v Chavez2013-090002015 NY Slip Op 06310
    Earle v Village of Lindenhurst2014-111962015 NY Slip Op 06311
    Feng Wang v A & W Travel, Inc.2013-074122015 NY Slip Op 06312
    Greenpoint Sav. Bank v Avila2013-089152015 NY Slip Op 06313
    Hartman v Milbel Enters., Inc.2013-051302015 NY Slip Op 06314
    HSBC Bank USA, N.A. v Roumiantseva2013-091972015 NY Slip Op 06315
    Kohulka v City of New York2014-073082015 NY Slip Op 06316
    Mawere v Landau2013-091982015 NY Slip Op 06317
    Moskovitz v City of New York2013-026612015 NY Slip Op 06318
    Mudgil v Metropolitan Suburban Bus Auth.2014-036342015 NY Slip Op 06319
    NYCTL 1998-2 Trust v Avila2013-089162015 NY Slip Op 06320
    Onewest Bank, FSB v Colace2013-034872015 NY Slip Op 06321
    People v Arocho2011-113382015 NY Slip Op 06322
    People v Velazquez2013-066942015 NY Slip Op 06323
    Rodriguez v City of New York2014-011042015 NY Slip Op 06324
    Ruiz v Mortgage Elec. Registration Sys., Inc.2013-065722015 NY Slip Op 06325
    Rumford v Singh2013-055372015 NY Slip Op 06326
    S. Nicolia & Sons Realty Corp. v A.J.A. Concrete Ready Mix, Inc.2013-084472015 NY Slip Op 06327
    School Aid Specialists, LLC v Board of Educ. of Warwick Val. Cent. Sch. Dist.2013-115392015 NY Slip Op 06328
    State Farm Mut. Auto. Ins. Co. v Anikeyeva2013-078382015 NY Slip Op 06329
    Stathis v Estate of Karas2013-017052015 NY Slip Op 06330
    Sweeny v Millbrook Cent. Sch. Dist.2013-012702015 NY Slip Op 06331
    Town of Huntington v Long Is. Power Auth.2013-068632015 NY Slip Op 06332
    Williams-Guillaume v Bank of Am., N.A.2014-044972015 NY Slip Op 06333
    Woodstock Constr. Group, Ltd. v State of New York2014-111802015 NY Slip Op 06334
    Matter of AJM Capital II, LLC v Incorporated Vil. of Muttontown2013-092932015 NY Slip Op 06335
    Matter of Allstate Ins. Co. v Carraro2014-027732015 NY Slip Op 06336
    Matter of Alexandryia M.B. (Heather C.)2013-100842015 NY Slip Op 06337
    Matter of Mercedes R.B. (Heather C.)2013-086062015 NY Slip Op 06338
    Matter of Borrok v Town of Southampton2014-057552015 NY Slip Op 06339
    Matter of Borrok v Town of Southampton2014-110382015 NY Slip Op 06340
    Matter of Allison C. (Angel C.)2014-086282015 NY Slip Op 06341
    Matter of Davis v Koch2014-077302015 NY Slip Op 06342
    Matter of Fiduciary Ins. Co. v American Bankers Ins. Co. of Fla.Hinds-radix2013-108622015 NY Slip Op 06343
    Matter of Julia M.G. (Trinidad G.)2014-090212015 NY Slip Op 06344
    Matter of C.H. v F.M.2013-115012015 NY Slip Op 06345
    Matter of Herman v Herman2012-110082015 NY Slip Op 06346
    Matter of Thomas J.2013-060772015 NY Slip Op 06347
    Matter of James v Donovan2015-027742015 NY Slip Op 06348
    Matter of OshikanluPer Curiam.2012-051732015 NY Slip Op 06349
    Matter of Quirolo v Israel2015-012042015 NY Slip Op 06350
    Matter of Edward S. (Georgis-Corey)2014-102652015 NY Slip Op 06351
    Matter of State of New York v Ted B.Chambers2012-107302015 NY Slip Op 06352
    Matter of Velasquez v New York State Div. of Hous. & Community Renewal2014-047092015 NY Slip Op 06353
    People v Alvarez2012-045082015 NY Slip Op 06354
    People v Anderson2012-012942015 NY Slip Op 06355
    People v Boney2012-103022015 NY Slip Op 06356
    People v Borges2012-070872015 NY Slip Op 06357
    People v Canales2011-047822015 NY Slip Op 06358
    People v Carter2013-087662015 NY Slip Op 06359
    People v Council2013-038412015 NY Slip Op 06360
    People v Crowl2013-113942015 NY Slip Op 06361
    People v Dorvilier2012-097012015 NY Slip Op 06362
    People v Dunston2011-015992015 NY Slip Op 06363
    People v Ewart2013-091662015 NY Slip Op 06364
    People v Feeney2010-036672015 NY Slip Op 06365
    People v Fletcher2012-088552015 NY Slip Op 06366
    People v Goode2013-044022015 NY Slip Op 06367
    People v Huggins2012-082582015 NY Slip Op 06368
    People v Hunter2013-020372015 NY Slip Op 06369
    People v Johnakin2013-090782015 NY Slip Op 06370
    People v Maldonado2011-079342015 NY Slip Op 06371
    People v Noezile2000-002872015 NY Slip Op 06372
    People v Palencia2013-086362015 NY Slip Op 06373
    People v Raysor2011-015422015 NY Slip Op 06374
    People v Isaiah S.2013-090772015 NY Slip Op 06375
    People v Torres2013-059072015 NY Slip Op 06376
    People v Wellington2009-005852015 NY Slip Op 06377


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided July 22, 2015
    Title -Judge -Docket No. -Slip Opinion No. -
    Matter of Brown v Brown2014-074642015 NY Slip Op 06240
    Matter of Hayden C. (Tafari C.)2014-084072015 NY Slip Op 06241
    Matter of Cambre v Kirton2014-091772015 NY Slip Op 06242
    Matter of CroninPer Curiam.2012-068842015 NY Slip Op 06243
    Matter of Ostojic v Gee2013-088022015 NY Slip Op 06244
    Matter of Premier Capital, LLC v Schnitzler2014-050852015 NY Slip Op 06245
    Matter of Rappaport v Village of Saltaire2013-051482015 NY Slip Op 06246
    Matter of Rivera2014-057432015 NY Slip Op 06247
    Matter of SchwartzPer Curiam.2014-061752015 NY Slip Op 06248
    Matter of Villalobos v New York City Fire Dept.2013-081452015 NY Slip Op 06249
    People v Bethune2009-060262015 NY Slip Op 06250
    People v Bruce2012-072202015 NY Slip Op 06251
    People v CesarDillon, J.P.2013-021412015 NY Slip Op 06252
    People v Fabregas2011-076142015 NY Slip Op 06253
    People v Fulford1999-052602015 NY Slip Op 06254
    People v Hendricks2014-019912015 NY Slip Op 06255
    People v Holloway2012-024112015 NY Slip Op 06256
    People v Knotts2013-107722015 NY Slip Op 06257
    People v Lawson2006-002332015 NY Slip Op 06258
    People v Lundi2011-100252015 NY Slip Op 06259
    People v Marsden2008-077432015 NY Slip Op 06260
    People v Soler2012-079262015 NY Slip Op 06261
    People v Taylor2012-007752015 NY Slip Op 06262
    People v Williams2013-096622015 NY Slip Op 06263
    People ex rel. Udell v Queens County Dist. Attorney2015-055512015 NY Slip Op 06264


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided July 22, 2015
    Title -Judge -Docket No. -Slip Opinion No. -
    Bayview Loan Servicing, LLC v Bernard2015-003382015 NY Slip Op 06202
    Brandeis School, Inc. v Yakobowicz2013-102792015 NY Slip Op 06203
    Brown v Roosevelt Union Free School Dist.2015-014962015 NY Slip Op 06204
    Campisi v Gambar Food Corp.2013-081772015 NY Slip Op 06205
    Caterpillar Ins. Co. v Metro Constr. Equities2013-081082015 NY Slip Op 06206
    Chudinova v Kleyner2014-013302015 NY Slip Op 06207
    Citibank, N.A. v Cabrera2014-100032015 NY Slip Op 06208
    Combs v City of New York2013-059572015 NY Slip Op 06209
    Darby Group Cos., Inc. v Wulforst Acquisition, LLC2013-101282015 NY Slip Op 06210
    Peretz v Village of Great Neck Plaza2014-076232015 NY Slip Op 06211
    Finn v Zinn2013-086322015 NY Slip Op 06212
    Garcia v Government Employees Ins. Co.2013-102782015 NY Slip Op 06213
    Haines v Verazzano of Dutchess, LLC2014-067402015 NY Slip Op 06214
    Hedley's, Inc. v Airwaves Global Logistics, LLC2014-011632015 NY Slip Op 06215
    Hinck v Hinck2013-088262015 NY Slip Op 06216
    JP Morgan Chase Bank v Schott2013-00592ON MOTION2015 NY Slip Op 06217
    Kanic Realty Assoc., Inc. v Suffolk County Water Auth.2013-109962015 NY Slip Op 06218
    Kung v Scottsdale Ins. Co.2013-115382015 NY Slip Op 06219
    Lopez v Cobra Logistics, Inc.2014-010572015 NY Slip Op 06220
    Manufacturers & Traders Trust Co. v Berthole2013-101442015 NY Slip Op 06221
    Marrero v Sosinsky2014-004822015 NY Slip Op 06222
    Matos v Shelter Rock Homes, Inc.2013-089972015 NY Slip Op 06223
    Monzon v Brown2014-068722015 NY Slip Op 06224
    North Oyster Bay Baymen's Assn. v Town of Oyster Bay2014-012272015 NY Slip Op 06225
    Nugent v Hubbard2014-038182015 NY Slip Op 06226
    Payano v Patel2013-093882015 NY Slip Op 06227
    People v Rodriguez2012-093122015 NY Slip Op 06228
    Phoenix Asset Mgt., LLC v X & Y Group Dev., LLC2014-011692015 NY Slip Op 06229
    Scott v Ward2014-092652015 NY Slip Op 06230
    Sholom & Zuckerbrot Realty, LLC v Gallant2013-075752015 NY Slip Op 06231
    Silver v Sportsstuff, Inc.2013-075732015 NY Slip Op 06232
    Silver v Sportsstuff, Inc.2013-089342015 NY Slip Op 06233
    Stein v Chiera2013-114452015 NY Slip Op 06234
    Tanaysha T. v City of New York2013-019712015 NY Slip Op 06235
    Tirpack v 125 N. 10, LLC2013-045112015 NY Slip Op 06236
    U.S. Bank Natl. Assn. v Ventura2014-001412015 NY Slip Op 06237
    E. V. v R. V.2014-066872015 NY Slip Op 06238
    Zwarycz v Marnia Constr., Inc.2014-093792015 NY Slip Op 06239
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided July 15, 2015
    Title -Judge -Docket No. -Slip Opinion No. -
    Amandola v Roman Catholic Diocese of Rockville Ctr.2013-079372015 NY Slip Op 06099
    Aurora Loan Servs., LLC v Hiyo2014-084252015 NY Slip Op 06100
    Avenue C Med., P.C. v Encompass Ins. of MA2014-006592015 NY Slip Op 06101
    Barone v Barone2013-036812015 NY Slip Op 06102
    Bergin v Golshani2013-089462015 NY Slip Op 06103
    Brits v Flores2014-078982015 NY Slip Op 06104
    Congregation Beth Shalom of Kingsbay v Yaakov2014-005782015 NY Slip Op 06105
    Copacabana Realty, LLC v Fireman's Fund Ins. Co.2013-089102015 NY Slip Op 06106
    David v Byron2014-038242015 NY Slip Op 06107
    DKR Mtge. Asset Trust 1 v Rivera2014-071862015 NY Slip Op 06108
    Doria v Benisch2014-015662015 NY Slip Op 06109
    Gerald Gardner Wright, P.C. & Assoc. v Champion Prop. Mgt., LLC2013-103892015 NY Slip Op 06110
    Graham v Kone, Inc.2014-075132015 NY Slip Op 06111
    Griffin v Sherwood Vil., Co-op "C", Inc.2013-077072015 NY Slip Op 06112
    Haber v Raso2014-050612015 NY Slip Op 06113
    HSBC Bank USA, N.A. v Wright2014-075812015 NY Slip Op 06114
    HSBC Bank, USA v Despot2014-101742015 NY Slip Op 06115
    Imperatore v 329 Menahan St., LLC2014-119682015 NY Slip Op 06116
    Krigsman v Cyngiel2014-034432015 NY Slip Op 06117
    Loancare v Firshing2014-075292015 NY Slip Op 06118
    Mazur Bros. Realty, LLC v State of New York2014-010902015 NY Slip Op 06119
    Meredith v Siben & Siben, LLP2013-112822015 NY Slip Op 06120
    Morales v City of New York2013-064902015 NY Slip Op 06121
    Nationwide Gen. Ins. Co. v Linwood Bates III2014-019862015 NY Slip Op 06122
    Oseff v Scotti2013-108702015 NY Slip Op 06123
    Quartarolo-Johanson v Johanson2013-079402015 NY Slip Op 06124
    Ricketts v New York Cong. Nursing Ctr., Inc.2014-053322015 NY Slip Op 06125
    Rivera v Department of Hous. Preserv. & Dev. of City of New York2014-016072015 NY Slip Op 06126
    Rosenblum v Island Custom Stairs, Inc.2014-010482015 NY Slip Op 06127
    Stewart v Dubuisson2014-040592015 NY Slip Op 06128
    Walker v Walker2013-011782015 NY Slip Op 06129
    Wan Li Situ v MTA Bus Co.2014-099932015 NY Slip Op 06130
    Yen-Fu Chen v Oheka Catering, LLC2014-092502015 NY Slip Op 06131
    Yung Chong Ho v Uppal2014-115062015 NY Slip Op 06132
    Renhe Zhang v Gerald W. Purcell Assoc., Ltd.2013-060282015 NY Slip Op 06133
    Matter of Makhi A. (Jamillah A.)2014-083312015 NY Slip Op 06134
    Matter of Allstate Ins. Co. v Laldharry2014-064932015 NY Slip Op 06135
    Matter of Arzadi2014-00700 ON MOTION2015 NY Slip Op 06136
    Matter of Ethan B. (Frederick B.)2014-049072015 NY Slip Op 06137
    Matter of Barrett v Village of Wappingers Falls2014-114892015 NY Slip Op 06138
    Matter of Best v Schwartz2015-01499,2015 NY Slip Op 06139
    Matter of Bhargava v City of New York2014-057622015 NY Slip Op 06140
    Matter of Dylan C. (Carmen V.)2013-115172015 NY Slip Op 06141
    Matter of Cascardo2013-075232015 NY Slip Op 06142
    Matter of County of Orange v Monroe Bakertown Rd. Realty, Inc.2013-046852015 NY Slip Op 06143
    Matter of Culberson v Fisher2014-067992015 NY Slip Op 06144
    Matter of Cyngiel2014-001802015 NY Slip Op 06145
    Matter of KoganPer Curiam.2014-001312015 NY Slip Op 06146
    Matter of LevitisPer Curiam.2015-009262015 NY Slip Op 06147
    Matter of LivotiPer Curiam.2015-007352015 NY Slip Op 06148
    Matter of Mazur Bros. Realty, LLC v State of New York2014-027192015 NY Slip Op 06149
    Matter of Nixon v Christian2014-077322015 NY Slip Op 06150
    Matter of Tiyana D.R.2014-067512015 NY Slip Op 06151
    Matter of RamosPer Curiam.2012-109762015 NY Slip Op 06152
    Matter of Helen S. (Falero)2014-101302015 NY Slip Op 06153
    Matter of SchneiderPer Curiam.2013-085432015 NY Slip Op 06154
    Matter of Sims v Boykin2014-112582015 NY Slip Op 06155
    Matter of Tolkinen v Siewert2014-019292015 NY Slip Op 06156
    Matter of Alexa V. (Antonio V.)2013-091062015 NY Slip Op 06157
    Matter of VelardiPer Curiam.2013-079452015 NY Slip Op 06158
    Matter of Jeremiah W. (Ronald W.)2014-038712015 NY Slip Op 06159
    People v Barnhill2013-049112015 NY Slip Op 06160
    People v Bushuyeva2012-096582015 NY Slip Op 06161
    People v Chance2010-046642015 NY Slip Op 06162
    People v Davidson2013-095292015 NY Slip Op 06163
    People v DiSalvo2013-076512015 NY Slip Op 06164
    People v Duren2013-009852015 NY Slip Op 06165
    People v Georges2013-096762015 NY Slip Op 06166
    People v Irving2012-103222015 NY Slip Op 06167
    People v LaTouche2006-011502015 NY Slip Op 06168
    People v McKane2014-01985 The People of the State of New York, respondent, v Calvin2015 NY Slip Op 06169
    People v Reyes2010-066742015 NY Slip Op 06170
    People v Riley2004-037142015 NY Slip Op 06171
    People v Robinson2014-014462015 NY Slip Op 06172
    People v Swenson2010-09511ON MOTION2015 NY Slip Op 06173


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided July 8, 2015
    Title -Judge -Docket No. -Slip Opinion No. -
    Alotta v Diaz2014-065812015 NY Slip Op 05899
    Bowman v Bowman2014-054222015 NY Slip Op 05900
    Cabrera v Magussen2014-050272015 NY Slip Op 05901
    Caldara v Utica Mut. Ins. Co.2013-111642015 NY Slip Op 05902
    Chavez v Delta Intl. Mach. Corp.2014-052362015 NY Slip Op 05903
    Comprehensive Mental Assessment & Med. Care, P.C. v Gusrae Kaplan Nusbaum, PLLC2013-104992015 NY Slip Op 05904
    Cuttler v Cuttler2014-013502015 NY Slip Op 05905
    Cuttler v Cuttler2014-108602015 NY Slip Op 05906
    Deutsche Bank Natl. Trust Co. v Gavrielova2013-075772015 NY Slip Op 05907
    5000, Inc. v Hudson One, Inc.2012-073552015 NY Slip Op 05908
    5000, Inc. v Hudson One, Inc.2014-016962015 NY Slip Op 05909
    Foley Inc. v Metropolis Superstructures, Inc.2013-016222015 NY Slip Op 05910
    Hernandez v Alstom Transp., Inc.2013-039152015 NY Slip Op 05911
    HSBC Bank, USA v Hagerman2014-019492015 NY Slip Op 05912
    Island Assoc. Real Estate, Inc. v Doukas2012-062002015 NY Slip Op 05913
    Jones v City of New York2014-052192015 NY Slip Op 05914
    Kraus v KrausDillon, J.P.2013-048242015 NY Slip Op 05915
    Lajqi v Lajqi2014-079102015 NY Slip Op 05916
    Lanza v Carbone2013-105572015 NY Slip Op 05917
    Mahabir v Suffolk County Water Auth.2013-071392015 NY Slip Op 05918
    Montenegro v P12, LLC2014-089392015 NY Slip Op 05919
    Nura v International Shoppes, LLC2014-048702015 NY Slip Op 05920
    O'Connor v Metro Mgt. Dev., Inc.2014-006942015 NY Slip Op 05921
    Onewest Bank, FSB v Prince2013-093592015 NY Slip Op 05922
    Oriental v U-Haul Co. of Ariz.2014-084562015 NY Slip Op 05923
    PHH Mtge. Corp. v Celestin2014-048822015 NY Slip Op 05924
    Piccoli v Panos2013-015422015 NY Slip Op 05925
    Politopoulos v City of New York2013-078552015 NY Slip Op 05926
    Pyronneau v Pyronneau2014-040512015 NY Slip Op 05927
    Rosa v Mendon Leasing Corp.2014-033382015 NY Slip Op 05928
    Spencer v Tower Ins. Group Corp.2014-047082015 NY Slip Op 05929
    Stein v Bauer2014-019972015 NY Slip Op 05930
    Taylor v New York City Tr. Auth.2012-034652015 NY Slip Op 05931
    Tracy v Vassar Bros. Hosp.2013-015412015 NY Slip Op 05932
    U.S. Bank N.A. v Alba2013-087372015 NY Slip Op 05933
    Vanderhurst v Nobile2014-061052015 NY Slip Op 05934
    Wells Fargo Bank v Allen2013-108412015 NY Slip Op 05935
    Matter of Alleyne v Ally2014-117152015 NY Slip Op 05936
    Matter of Nyomi B. (Nefreida W.)2013-113452015 NY Slip Op 05937
    Matter of Sha-Naya M.S.C. (Derrick C.)2014-070082015 NY Slip Op 05938
    Matter of Covington v Ray2014-064792015 NY Slip Op 05939
    Matter of Curtis2013-103232015 NY Slip Op 05940
    Matter of Denkewitz v Sundara2014-044522015 NY Slip Op 05941
    Matter of Kayla F. (Kevin F.)2013-108812015 NY Slip Op 05942
    Matter of Glass v County of Suffolk2014-002242015 NY Slip Op 05943
    Matter of Goldfarb v Szabo2014-043572015 NY Slip Op 05944
    Matter of Hyde Park Landing, Ltd. v Town of Hyde Park2013-112092015 NY Slip Op 05945
    Matter of Kadyorios v Kirton2014-063922015 NY Slip Op 05946
    Matter of Haide L.G.M. v Santo D.S.M.2014-105412015 NY Slip Op 05947
    Matter of Nelson v McGriff2014-087312015 NY Slip Op 05948
    Matter of Oakley v Cond-Arnold2014-069722015 NY Slip Op 05949
    Matter of David P. (Elisa P.)2013-086092015 NY Slip Op 05950
    Matter of Patrick v Zoning Bd. of Appeals of Vil. of Russell Gardens2013-105362015 NY Slip Op 05951
    Matter of Gabriel W. (Steven C.)2014-016022015 NY Slip Op 05952
    Matter of Westchester County Dept. of Social Servs. v Arnoldo B.2014-058392015 NY Slip Op 05953
    People v Badia2012-045232015 NY Slip Op 05954
    People v Barksdale2012-014222015 NY Slip Op 05955
    People v Burno2013-093102015 NY Slip Op 05956
    People v Clarke2008-006712015 NY Slip Op 05957
    People v Collezo2011-100642015 NY Slip Op 05958
    People v Dawson2012-040442015 NY Slip Op 05959
    People v Dupree2013-073372015 NY Slip Op 05960
    People v Hall2013-008062015 NY Slip Op 05961
    People v Hall2015-046352015 NY Slip Op 05962
    People v Hardy2012-099142015 NY Slip Op 05963
    People v Heron2013-054692015 NY Slip Op 05964
    People v LaRosa2012-083602015 NY Slip Op 05965
    People v Priester2013-069142015 NY Slip Op 05966
    People v Rosas2013-050332015 NY Slip Op 05967
    People v Samuels2013-017392015 NY Slip Op 05968
    People v Ullah2012-110572015 NY Slip Op 05969
    People v Vaughn2013-103472015 NY Slip Op 05970


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided July 1, 2015
    Title -Judge -Docket No. -Slip Opinion No. -
    Bank of N.Y. v Stein2014-057792015 NY Slip Op 05628
    Boudine v Goldmaker, Inc.2014-084802015 NY Slip Op 05629
    Brothers v Bartling2014-075592015 NY Slip Op 05630
    Camac v 550 Realty Hgts., LLC2014-062712015 NY Slip Op 05631
    Citimortgage, Inc. v Kowalski2014-039412015 NY Slip Op 05632
    Cremosa Food Co., LLC v Amella2014-072202015 NY Slip Op 05633
    Deutsche Bank Trust Co. Ams. v VitellasCohen, J.2013-071972015 NY Slip Op 05634
    Diaz v Diaz2014-041502015 NY Slip Op 05635
    Estrada v Selman2014-037332015 NY Slip Op 05636
    Excess Line Assn. of N.Y. (ELANY) v Waldorf & Assoc.2013-066152015 NY Slip Op 05637
    Fernandez v State of New York2014-005152015 NY Slip Op 05638
    Forlenza v Miglio2014-078362015 NY Slip Op 05639
    GFRE, Inc. v U.S. Bank, N.A.2014-011202015 NY Slip Op 05640
    Hallwood v Incorporated Vil. of Old Westbury2014-075432015 NY Slip Op 05641
    Hecker v Liebgold2014-051432015 NY Slip Op 05642
    Imperium Ins. Co. v Utica First Ins. Co.2014-026582015 NY Slip Op 05643
    Istomin v Istomin2013-093202015 NY Slip Op 05644
    Kaplan v Kaplan2014-009062015 NY Slip Op 05645
    Knapp v Town of Hempstead2014-105312015 NY Slip Op 05646
    Lamparillo v Lamparillo2012-06232ON MOTION2015 NY Slip Op 05647
    Loccisano v Ayers2013-103052015 NY Slip Op 05648
    Manganiello v Ahmed2012-088042015 NY Slip Op 05649
    Nasca v Sgro2013-046262015 NY Slip Op 05650
    1136 Realty, LLC v 213 Union St. Realty Corp.2013-068182015 NY Slip Op 05651
    Ortiz v AGL Trucking Corp.2015-015302015 NY Slip Op 05652
    Osarczuk v Associated Univs., Inc.2013-079042015 NY Slip Op 05653
    Ostrovsky v Stern2014-046982015 NY Slip Op 05654
    O'Toole v Vollmer2014-072102015 NY Slip Op 05655
    People v Davis2011-046362015 NY Slip Op 05656
    People v Dyson2014-106822015 NY Slip Op 05657
    People v Jones2014-005662015 NY Slip Op 05658
    Pietrafesa v Canestro2015-008002015 NY Slip Op 05659
    Shannon v Shannon2014-099612015 NY Slip Op 05660
    Stein v Stein2014-025292015 NY Slip Op 05661
    TKM Group, Inc. v Indian Harbor Ins. Co.2013-093192015 NY Slip Op 05662
    Town of Hempstead v AJM Capital II, LLC2013-081762015 NY Slip Op 05663
    Turner v Turner2014-011942015 NY Slip Op 05664
    Vitiello v Merwin2013-056942015 NY Slip Op 05665
    Vitolo v Suarez2014-089252015 NY Slip Op 05666
    Walker v Schuster2014-092522015 NY Slip Op 05667
    Watt v County of Nassau2014-053742015 NY Slip Op 05668
    Weldon v Vepp Realty, LLC2014-077402015 NY Slip Op 05669
    Yehia v Marphil Realty Corp.2013-077052015 NY Slip Op 05670
    Matter of Arkali v Muuss2014-030912015 NY Slip Op 05671
    Matter of Arkali v Suffolk County Dept. of Social Servs.2014-046522015 NY Slip Op 05672
    Matter of Michael B. (Samantha B.)2014-038112015 NY Slip Op 05673
    Matter of CastelliPer Curiam.2014-003222015 NY Slip Op 05674
    Matter of FisherPer Curiam.2015-018992015 NY Slip Op 05675
    Matter of Matthew G. (Miguel G.)2013-099362015 NY Slip Op 05676
    Matter of HalloranPer Curiam.2015-003522015 NY Slip Op 05677
    Matter of Heavy Constr. Co., Inc. v Metro Constr. Equities, Inc.2013-041922015 NY Slip Op 05678
    Matter of Raven K. (Adam C.)2014-064572015 NY Slip Op 05679
    Matter of Lao v Gonzales2014-107522015 NY Slip Op 05680
    Matter of Masciello v Masciello2014-053692015 NY Slip Op 05681
    Matter of Middleton v Stringham2014-108212015 NY Slip Op 05682
    Matter of Dillon R.2014-075752015 NY Slip Op 05683
    Matter of RosenfeldPer Curiam.2015-022092015 NY Slip Op 05684
    Matter of Richard S. (Lacey P.)2014-004452015 NY Slip Op 05685
    Matter of Sarabia v Sarabia2014-063902015 NY Slip Op 05686
    Matter of Sosa v Serrano2015-001852015 NY Slip Op 05687
    Matter of Teixeira v Spota2015-026122015 NY Slip Op 05688
    Matter of WeberPer Curiam.2013-046372015 NY Slip Op 05689
    Matter of Williamsburg & Greenpoint Parents: Our Pub. Schools! v Board of Trustees, State Univ. of N.Y.2013-043832015 NY Slip Op 05690
    People v Buckery2014-024862015 NY Slip Op 05691
    People v Colliton2014-023992015 NY Slip Op 05692
    People v Fortier2014-071622015 NY Slip Op 05693
    People v Garcia2014-097822015 NY Slip Op 05694
    People v Garvin2012-096982015 NY Slip Op 05695
    People v Gavarette2013-11069 ON MOTION2015 NY Slip Op 05696
    People v Hamilton1995-065092015 NY Slip Op 05697
    People v Hatcher2011-119282015 NY Slip Op 05698
    People v Jean2014-014092015 NY Slip Op 05699
    People v Mack2013-101832015 NY Slip Op 05700
    People v McAllister2013-041022015 NY Slip Op 05701
    People v McMillan2011-002632015 NY Slip Op 05702
    People v Rivera2011-078222015 NY Slip Op 05703
    People v Rucano2011-019602015 NY Slip Op 05704
    People v Spitzer2012-053702015 NY Slip Op 05705
    People v Syville2012-018302015 NY Slip Op 05706
    People v Wiggs2013-080552015 NY Slip Op 05707


    - - - - - - - - -

    - - - - - - -
    -
    E-mail the Law
-Reporting Bureau -
    -
    -New York State Law Reporting Bureau
    -17 Lodge Street, Albany, NY 12207
    -phone: (518) 453-6900
    -fax: (518) 426-1640 -
    - -
    - - -
    -
    - -
     
     
     
    - - diff --git a/tests/examples/opinions/united_states/nyappdiv_3rd_example.compare.json b/tests/examples/opinions/united_states/nyappdiv_3rd_example.compare.json index 5b89f0fb5..41960db57 100644 --- a/tests/examples/opinions/united_states/nyappdiv_3rd_example.compare.json +++ b/tests/examples/opinions/united_states/nyappdiv_3rd_example.compare.json @@ -1,842 +1,114 @@ [ { - "case_dates": "2017-05-11", - "case_names": "Wells v. Hodgkins", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03824.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523473", - "judges": "", - "citations": "2017 NY Slip Op 03824", - "case_name_shorts": "Wells" - }, - { - "case_dates": "2017-05-11", - "case_names": "People v. Worthington", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03806.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "106869", - "judges": "", - "citations": "2017 NY Slip Op 03806", - "case_name_shorts": "Worthington" - }, - { - "case_dates": "2017-05-11", - "case_names": "People v. Watson", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03802.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "106310", - "judges": "", - "citations": "2017 NY Slip Op 03802", - "case_name_shorts": "Watson" - }, - { - "case_dates": "2017-05-11", - "case_names": "People v. Slaughter", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03811.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107883", - "judges": "", - "citations": "2017 NY Slip Op 03811", - "case_name_shorts": "Slaughter" - }, - { - "case_dates": "2017-05-11", - "case_names": "People v. Mesko", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03810.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107462", - "judges": "", - "citations": "2017 NY Slip Op 03810", - "case_name_shorts": "Mesko" - }, - { - "case_dates": "2017-05-11", - "case_names": "People v. Johnson", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03804.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "106607", - "judges": "", - "citations": "2017 NY Slip Op 03804", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-11", - "case_names": "People v. Ildefonso", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03803.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "106590", - "judges": "", - "citations": "2017 NY Slip Op 03803", - "case_name_shorts": "Ildefonso" - }, - { - "case_dates": "2017-05-11", - "case_names": "People v. Glass", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03809.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107378", - "judges": "", - "citations": "2017 NY Slip Op 03809", - "case_name_shorts": "Glass" - }, - { - "case_dates": "2017-05-11", - "case_names": "People v. Davis", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03805.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03805", - "case_name_shorts": "Davis" - }, - { - "case_dates": "2017-05-11", - "case_names": "People v. Bryson", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03808.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107135", - "judges": "", - "citations": "2017 NY Slip Op 03808", - "case_name_shorts": "Bryson" - }, - { - "case_dates": "2017-05-11", - "case_names": "People v. Arce", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03807.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107006", - "judges": "", - "citations": "2017 NY Slip Op 03807", - "case_name_shorts": "Arce" - }, - { - "case_dates": "2017-05-11", - "case_names": "Olsen v. Campbell", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03828.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523973", - "judges": "", - "citations": "2017 NY Slip Op 03828", - "case_name_shorts": "Olsen" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of Weber v. State Univ. of N.Y., Coll. At Cortland", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03817.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "522569", - "judges": "", - "citations": "2017 NY Slip Op 03817", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of Shelton", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03831.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03831", - "case_name_shorts": "Matter of Shelton" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of Schmid", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03841.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03841", - "case_name_shorts": "Matter of Schmid" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of Richters", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03840.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03840", - "case_name_shorts": "Matter of Richters" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of O'Connell", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03839.htm", + "case_dates": "2024-09-05", + "case_names": "Matter of Temudo", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04358.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03839", - "case_name_shorts": "Matter of O'Connell" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of O'Brien v. Yugartis", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03821.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523138", - "judges": "", - "citations": "2017 NY Slip Op 03821", - "case_name_shorts": "Yugartis" + "citations": "", + "parallel_citations": "2024 NYSlipOp 04358", + "case_name_shorts": "Matter of Temudo", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-11", - "case_names": "Matter of Linger v. Linger", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03822.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523147", - "judges": "", - "citations": "2017 NY Slip Op 03822", - "case_name_shorts": "Linger" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of Krouner", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03830.htm", + "case_dates": "2024-09-05", + "case_names": "Matter of Ramnitz", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04357.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03830", - "case_name_shorts": "Matter of Krouner" + "citations": "", + "parallel_citations": "2024 NYSlipOp 04357", + "case_name_shorts": "Matter of Ramnitz", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-11", - "case_names": "Matter of Kaushal", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03838.htm", + "case_dates": "2024-09-05", + "case_names": "Matter of Murray", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04356.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03838", - "case_name_shorts": "Matter of Kaushal" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of Jesse DD. v. Arianna EE.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03815.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "522526", - "judges": "", - "citations": "2017 NY Slip Op 03815", - "case_name_shorts": "" + "citations": "", + "parallel_citations": "2024 NYSlipOp 04356", + "case_name_shorts": "Matter of Murray", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-11", - "case_names": "Matter of Ganje", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03837.htm", + "case_dates": "2024-09-05", + "case_names": "Matter of Maloney", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04355.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03837", - "case_name_shorts": "Matter of Ganje" + "citations": "", + "parallel_citations": "2024 NYSlipOp 04355", + "case_name_shorts": "Matter of Maloney", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-11", - "case_names": "Matter of Gabriella RR. (Tina SS.)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03816.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "522564", - "judges": "", - "citations": "2017 NY Slip Op 03816", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of Flores", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03836.htm", + "case_dates": "2024-08-29", + "case_names": "Matter of Santomauro", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04353.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03836", - "case_name_shorts": "Matter of Flores" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of Ernest V. v. State of New York", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03818.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "522755", - "judges": "", - "citations": "2017 NY Slip Op 03818", - "case_name_shorts": "" + "citations": "", + "parallel_citations": "2024 NYSlipOp 04353", + "case_name_shorts": "Matter of Santomauro", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-11", - "case_names": "Matter of Dorsey v. De'Loache", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03813.htm", + "case_dates": "2024-08-29", + "case_names": "Matter of Cartwright v. Kennedy", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04354.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03813", - "case_name_shorts": "De'Loache" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of Dharamshot v. Surita", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03819.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "522826", - "judges": "", - "citations": "2017 NY Slip Op 03819", - "case_name_shorts": "Surita" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of Cordell M. (Cheryl O.)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03814.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "521815", - "judges": "", - "citations": "2017 NY Slip Op 03814", - "case_name_shorts": "" + "citations": "", + "parallel_citations": "2024 NYSlipOp 04354", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-11", - "case_names": "Matter of Caulk", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03835.htm", + "case_dates": "2024-08-29", + "case_names": "Matter of Carol Q. v. Charlie R.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04351.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03835", - "case_name_shorts": "Matter of Caulk" + "citations": "", + "parallel_citations": "2024 NYSlipOp 04351", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-11", - "case_names": "Matter of Brown", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03834.htm", + "case_dates": "2024-08-29", + "case_names": "Matter of Alexander K. v. Jaheria L.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04352.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03834", - "case_name_shorts": "Matter of Brown" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of Bresley", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03833.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03833", - "case_name_shorts": "Matter of Bresley" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of Bordell", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03823.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523198", - "judges": "", - "citations": "2017 NY Slip Op 03823", - "case_name_shorts": "Matter of Bordell" - }, - { - "case_dates": "2017-05-11", - "case_names": "Matter of Bayati", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03832.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "judges": "", - "citations": "2017 NY Slip Op 03832", - "case_name_shorts": "Matter of Bayati" - }, - { - "case_dates": "2017-05-11", - "case_names": "Marcello v. Flecher", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03827.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523963", - "judges": "", - "citations": "2017 NY Slip Op 03827", - "case_name_shorts": "Marcello" - }, - { - "case_dates": "2017-05-11", - "case_names": "He v. Realty USA", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03812.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "520979", - "judges": "", - "citations": "2017 NY Slip Op 03812", - "case_name_shorts": "He" - }, - { - "case_dates": "2017-05-11", - "case_names": "Griguts v. Alpin Haus Ski Shop, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03820.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "522829", - "judges": "", - "citations": "2017 NY Slip Op 03820", - "case_name_shorts": "Griguts" - }, - { - "case_dates": "2017-05-11", - "case_names": "Griffin v. AVA Realty Ithaca, LLC", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03829.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "524012", - "judges": "", - "citations": "2017 NY Slip Op 03829", - "case_name_shorts": "Griffin" - }, - { - "case_dates": "2017-05-11", - "case_names": "Flikweert v. Berger", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03826.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523877", - "judges": "", - "citations": "2017 NY Slip Op 03826", - "case_name_shorts": "Flikweert" - }, - { - "case_dates": "2017-05-11", - "case_names": "Estate of Savage v. Kredentser", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03825.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523664", - "judges": "", - "citations": "2017 NY Slip Op 03825", - "case_name_shorts": "Kredentser" - }, - { - "case_dates": "2017-05-04", - "case_names": "St. Denis v. Queensbury Baybridge Homeowners Assn., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03590.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523942", - "judges": "", - "citations": "2017 NY Slip Op 03590", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "Salewski v. Music", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03582.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523330", - "judges": "", - "citations": "2017 NY Slip Op 03582", - "case_name_shorts": "Salewski" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. Williams", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03562.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "106276", - "judges": "", - "citations": "2017 NY Slip Op 03562", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. Walley", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03570.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107634", - "judges": "", - "citations": "2017 NY Slip Op 03570", - "case_name_shorts": "Walley" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. Palmer", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03572.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107764", - "judges": "", - "citations": "2017 NY Slip Op 03572", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. McRae", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03567.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107332", - "judges": "", - "citations": "2017 NY Slip Op 03567", - "case_name_shorts": "McRae" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. Manigault", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03569.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107553", - "judges": "", - "citations": "2017 NY Slip Op 03569", - "case_name_shorts": "Manigault" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. Lavalley", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03575.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "108497", - "judges": "", - "citations": "2017 NY Slip Op 03575", - "case_name_shorts": "Lavalley" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. Howe", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03563.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "106585", - "judges": "", - "citations": "2017 NY Slip Op 03563", - "case_name_shorts": "Howe" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. Harris", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03573.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107933", - "judges": "", - "citations": "2017 NY Slip Op 03573", - "case_name_shorts": "Harris" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. Davis", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03568.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107508", - "judges": "", - "citations": "2017 NY Slip Op 03568", - "case_name_shorts": "Davis" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. Cooks", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03564.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "106850", - "judges": "", - "citations": "2017 NY Slip Op 03564", - "case_name_shorts": "Cooks" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. Chaires", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03566.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107124", - "judges": "", - "citations": "2017 NY Slip Op 03566", - "case_name_shorts": "Chaires" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. Caggiano", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03571.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107656", - "judges": "", - "citations": "2017 NY Slip Op 03571", - "case_name_shorts": "Caggiano" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. Beaver", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03565.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "106949", - "judges": "", - "citations": "2017 NY Slip Op 03565", - "case_name_shorts": "Beaver" - }, - { - "case_dates": "2017-05-04", - "case_names": "People v. Barnes", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03574.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107939", - "judges": "", - "citations": "2017 NY Slip Op 03574", - "case_name_shorts": "Barnes" - }, - { - "case_dates": "2017-05-04", - "case_names": "Noble v. Slavin", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03578.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "522798", - "judges": "", - "citations": "2017 NY Slip Op 03578", - "case_name_shorts": "Noble" - }, - { - "case_dates": "2017-05-04", - "case_names": "Matter of Xie v. JP Morgan Chase", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03584.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523460", - "judges": "", - "citations": "2017 NY Slip Op 03584", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "Matter of Richards v. Massena Cent. Sch.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03580.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523126", - "judges": "", - "citations": "2017 NY Slip Op 03580", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "Matter of Reyes v. Annucci", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03587.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523668", - "judges": "", - "citations": "2017 NY Slip Op 03587", - "case_name_shorts": "Annucci" - }, - { - "case_dates": "2017-05-04", - "case_names": "Matter of Police Benevolent Assn. of N.Y. State, Inc. v. State of New York", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03588.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523835", - "judges": "", - "citations": "2017 NY Slip Op 03588", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "Matter of Misquitta v. Getty Petroleum", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03585.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523501", - "judges": "", - "citations": "2017 NY Slip Op 03585", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "Matter of Melijah NN. (Russell NN.)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03579.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "522962", - "judges": "", - "citations": "2017 NY Slip Op 03579", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "Matter of McKinney v. United States Roofing Corp.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03589.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523922", - "judges": "", - "citations": "2017 NY Slip Op 03589", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "Matter of Manocchio v. ABB Combustion Eng'g", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03577.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "522436", - "judges": "", - "citations": "2017 NY Slip Op 03577", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "Matter of Manning v. DiNapoli", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03591.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523956", - "judges": "", - "citations": "2017 NY Slip Op 03591", - "case_name_shorts": "DiNapoli" - }, - { - "case_dates": "2017-05-04", - "case_names": "Matter of Jennifer BB. v. Megan CC.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03576.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "522189", - "judges": "", - "citations": "2017 NY Slip Op 03576", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-04", - "case_names": "Matter of Cortland County Dept. of Social Servs. v. Perry", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03581.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523165", - "judges": "", - "citations": "2017 NY Slip Op 03581", - "case_name_shorts": "Perry" - }, - { - "case_dates": "2017-05-04", - "case_names": "Feeney v. County of Del.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03583.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523359", - "judges": "", - "citations": "2017 NY Slip Op 03583", - "case_name_shorts": "Feeney" - }, - { - "case_dates": "2017-05-04", - "case_names": "Blair v. Ferris", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03586.htm", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "523502", - "judges": "", - "citations": "2017 NY Slip Op 03586", - "case_name_shorts": "Blair" + "citations": "", + "parallel_citations": "2024 NYSlipOp 04352", + "case_name_shorts": "", + "authors": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyappdiv_3rd_example.html b/tests/examples/opinions/united_states/nyappdiv_3rd_example.html index 4fa0f0271..1930d8e02 100644 --- a/tests/examples/opinions/united_states/nyappdiv_3rd_example.html +++ b/tests/examples/opinions/united_states/nyappdiv_3rd_example.html @@ -1,631 +1,144 @@ - - + - - - -Appellate Division, Third Department, Decisions - - - - - - - - - - - - - - - - - - -
    -

    It appears you are using Adblock. Please disable Adblock to best experience our website.

    -
    - - +LRB Search Results + + + + + + +
    - - - -
    - - - -
    - - - - +

    + -
    - - - - -
    - -
    - - - - -
    - - - - - -
    - - - - - -
    - -   - -
    -
    - - - - - - - - - - -
    -
    -
    - - - - - -
    - - -
    Archives
    -
    -
     
    -
    - - - + + + +
    - -
      May, 2017  
    - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided May 11, 2017
    Title -Judge -Docket No. -Slip Opinion No. -
    People v Watson1063102017 NY Slip Op 03802
    People v Ildefonso1065902017 NY Slip Op 03803
    People v Johnson1066072017 NY Slip Op 03804
    People v Davis2017 NY Slip Op 03805
    People v Worthington1068692017 NY Slip Op 03806
    People v Arce1070062017 NY Slip Op 03807
    People v Bryson1071352017 NY Slip Op 03808
    People v Glass1073782017 NY Slip Op 03809
    People v Mesko1074622017 NY Slip Op 03810
    People v Slaughter1078832017 NY Slip Op 03811
    He v Realty USA5209792017 NY Slip Op 03812
    Matter of Dorsey v De'Loache2017 NY Slip Op 03813
    Matter of Cordell M. (Cheryl O.)5218152017 NY Slip Op 03814
    Matter of Jesse DD. v Arianna EE.5225262017 NY Slip Op 03815
    Matter of Gabriella RR. (Tina SS.)5225642017 NY Slip Op 03816
    Matter of Weber v State Univ. of N.Y., Coll. At Cortland5225692017 NY Slip Op 03817
    Matter of Ernest V. v State of New York5227552017 NY Slip Op 03818
    Matter of Dharamshot v Surita5228262017 NY Slip Op 03819
    Griguts v Alpin Haus Ski Shop, Inc.5228292017 NY Slip Op 03820
    Matter of O'Brien v Yugartis5231382017 NY Slip Op 03821
    Matter of Linger v Linger5231472017 NY Slip Op 03822
    Matter of Bordell5231982017 NY Slip Op 03823
    Wells v Hodgkins5234732017 NY Slip Op 03824
    Estate of Savage v Kredentser5236642017 NY Slip Op 03825
    Flikweert v Berger5238772017 NY Slip Op 03826
    Marcello v Flecher5239632017 NY Slip Op 03827
    Olsen v Campbell5239732017 NY Slip Op 03828
    Griffin v AVA Realty Ithaca, LLC5240122017 NY Slip Op 03829
    Matter of Krouner2017 NY Slip Op 03830
    Matter of Shelton2017 NY Slip Op 03831
    Matter of Bayati2017 NY Slip Op 03832
    Matter of Bresley2017 NY Slip Op 03833
    Matter of Brown2017 NY Slip Op 03834
    Matter of Caulk2017 NY Slip Op 03835
    Matter of Flores2017 NY Slip Op 03836
    Matter of Ganje2017 NY Slip Op 03837
    Matter of Kaushal2017 NY Slip Op 03838
    Matter of O'Connell2017 NY Slip Op 03839
    Matter of Richters2017 NY Slip Op 03840
    Matter of Schmid2017 NY Slip Op 03841


    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided May 4, 2017
    Title -Judge -Docket No. -Slip Opinion No. -
    People v Williams1062762017 NY Slip Op 03562
    People v Howe1065852017 NY Slip Op 03563
    People v Cooks1068502017 NY Slip Op 03564
    People v Beaver1069492017 NY Slip Op 03565
    People v Chaires1071242017 NY Slip Op 03566
    People v McRae1073322017 NY Slip Op 03567
    People v Davis1075082017 NY Slip Op 03568
    People v Manigault1075532017 NY Slip Op 03569
    People v Walley1076342017 NY Slip Op 03570
    People v Caggiano1076562017 NY Slip Op 03571
    People v Palmer1077642017 NY Slip Op 03572
    People v Harris1079332017 NY Slip Op 03573
    People v Barnes1079392017 NY Slip Op 03574
    People v Lavalley1084972017 NY Slip Op 03575
    Matter of Jennifer BB. v Megan CC.5221892017 NY Slip Op 03576
    Matter of Manocchio v ABB Combustion Eng'g5224362017 NY Slip Op 03577
    Noble v Slavin5227982017 NY Slip Op 03578
    Matter of Melijah NN. (Russell NN.)5229622017 NY Slip Op 03579
    Matter of Richards v Massena Cent. Sch.5231262017 NY Slip Op 03580
    Matter of Cortland County Dept. of Social Servs. v Perry5231652017 NY Slip Op 03581
    Salewski v Music5233302017 NY Slip Op 03582
    Feeney v County of Del.5233592017 NY Slip Op 03583
    Matter of Xie v JP Morgan Chase5234602017 NY Slip Op 03584
    Matter of Misquitta v Getty Petroleum5235012017 NY Slip Op 03585
    Blair v Ferris5235022017 NY Slip Op 03586
    Matter of Reyes v Annucci5236682017 NY Slip Op 03587
    Matter of Police Benevolent Assn. of N.Y. State, Inc. v State of New York5238352017 NY Slip Op 03588
    Matter of McKinney v United States Roofing Corp.5239222017 NY Slip Op 03589
    St. Denis v Queensbury Baybridge Homeowners Assn., Inc.5239422017 NY Slip Op 03590
    Matter of Manning v DiNapoli5239562017 NY Slip Op 03591


    - - - - - - - - -

    - - - - - - +
     Slip Decisions Search Results
    + + +
    + + + + + + + + + + + +
    Search Criteria
        Decision Start Date : + 08/28/2024
        Court : + App Div, 3d Dept

    -
    E-mail the Law
-Reporting Bureau -
    -
    -New York State Law Reporting Bureau
    -17 Lodge Street, Albany, NY 12207
    -phone: (518) 453-6900
    -fax: (518) 426-1640 -
    - -
    - - -
    + + + + + + - -
    + Total number of records found: 8 + +       


    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Party NameDecision DateCourt   Official Citation   Slip Number   JudgeOpn/Mot
    Matter of Alexander K. v Jaheria L.08/29/2024App Div, 3d Dept2024 NYSlipOp 04352Opinion
    Matter of Carol Q. v Charlie R.08/29/2024App Div, 3d Dept2024 NYSlipOp 04351Opinion
    Matter of Cartwright v Kennedy08/29/2024App Div, 3d Dept2024 NYSlipOp 04354Opinion
    Matter of Maloney09/05/2024App Div, 3d Dept2024 NYSlipOp 04355Opinion
    Matter of Murray09/05/2024App Div, 3d Dept2024 NYSlipOp 04356Opinion
    Matter of Ramnitz09/05/2024App Div, 3d Dept2024 NYSlipOp 04357Opinion
    Matter of Santomauro08/29/2024App Div, 3d Dept2024 NYSlipOp 04353Opinion
    Matter of Temudo09/05/2024App Div, 3d Dept2024 NYSlipOp 04358Opinion
    - -
     
     
     
    - - - +
    +
    + diff --git a/tests/examples/opinions/united_states/nyappdiv_4th_example.compare.json b/tests/examples/opinions/united_states/nyappdiv_4th_example.compare.json index 33749f834..c853b543e 100644 --- a/tests/examples/opinions/united_states/nyappdiv_4th_example.compare.json +++ b/tests/examples/opinions/united_states/nyappdiv_4th_example.compare.json @@ -1,722 +1,1640 @@ [ { - "case_dates": "2017-05-05", - "case_names": "Waterman v. CNH Am. LLC", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03639.htm", + "case_dates": "2024-07-26", + "case_names": "Williams v. City of Buffalo", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03978.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "455 CA 16-00808", - "judges": "", - "citations": "2017 NY Slip Op 03639", - "case_name_shorts": "Waterman" + "docket_numbers": "", + "citations": "229 AD3d 1267", + "parallel_citations": "2024 NYSlipOp 03978", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Wallenhorst v. Wallenhorst", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03641.htm", + "case_dates": "2024-07-26", + "case_names": "Visiko v. Fleming", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04016.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "478 CA 16-01721", - "judges": "", - "citations": "2017 NY Slip Op 03641", - "case_name_shorts": "Wallenhorst" + "docket_numbers": "", + "citations": "229 AD3d 1355", + "parallel_citations": "2024 NYSlipOp 04016", + "case_name_shorts": "Visiko", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Wallace v. M&C Hotel Interests, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03647.htm", + "case_dates": "2024-07-26", + "case_names": "Thomas v. Eckhert", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03963.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "503 CA 16-01090", - "judges": "", - "citations": "2017 NY Slip Op 03647", - "case_name_shorts": "Wallace" + "docket_numbers": "", + "citations": "229 AD3d 1237", + "parallel_citations": "2024 NYSlipOp 03963", + "case_name_shorts": "Thomas", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Terwilliger v. Beazer E., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03629.htm", + "case_dates": "2024-07-26", + "case_names": "Storm v. Kaleida Health", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03964.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "85 CA 16-00947", - "judges": "", - "citations": "2017 NY Slip Op 03629", - "case_name_shorts": "Terwilliger" + "docket_numbers": "", + "citations": "229 AD3d 1239", + "parallel_citations": "2024 NYSlipOp 03964", + "case_name_shorts": "Storm", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Stowe v. Furness", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03648.htm", + "case_dates": "2024-07-26", + "case_names": "Rouse v. City of Syracuse Dept. of Pub. Works", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03938.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "509 CA 16-02040", - "judges": "", - "citations": "2017 NY Slip Op 03648", - "case_name_shorts": "Stowe" + "docket_numbers": "", + "citations": "229 AD3d 1189", + "parallel_citations": "2024 NYSlipOp 03938", + "case_name_shorts": "Rouse", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Rodrigues v. Lesser", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03669.htm", + "case_dates": "2024-07-26", + "case_names": "Ross v. Northeast Diversification, Inc.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03989.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "598 CA 15-01383", - "judges": "", - "citations": "2017 NY Slip Op 03669", - "case_name_shorts": "Rodrigues" + "docket_numbers": "", + "citations": "229 AD3d 1282", + "parallel_citations": "2024 NYSlipOp 03989", + "case_name_shorts": "Ross", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "RJW Enters., Inc. v. Simao", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03684.htm", + "case_dates": "2024-07-26", + "case_names": "Revere v. Burke", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03948.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1009/16 CA 15-02060", - "judges": "", - "citations": "2017 NY Slip Op 03684", - "case_name_shorts": "Simao" + "docket_numbers": "", + "citations": "229 AD3d 1212", + "parallel_citations": "2024 NYSlipOp 03948", + "case_name_shorts": "Revere", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Piche v. Synergy Tooling Sys., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03673.htm", + "case_dates": "2024-07-26", + "case_names": "Resetarits Constr. Corp. v. Norfolk S. Ry. Co.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04020.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "619 CA 16-01958", - "judges": "", - "citations": "2017 NY Slip Op 03673", - "case_name_shorts": "Piche" + "docket_numbers": "", + "citations": "229 AD3d 1364", + "parallel_citations": "2024 NYSlipOp 04020", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Williams", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03667.htm", + "case_dates": "2024-07-26", + "case_names": "Resetarits Constr. Corp. v. Norfolk S. Ry. Co.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04019.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "588 KA 15-01221", - "judges": "", - "citations": "2017 NY Slip Op 03667", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1362", + "parallel_citations": "2024 NYSlipOp 04019", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Vogt", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03682.htm", + "case_dates": "2024-07-26", + "case_names": "Potempa v. Potempa", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03940.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "656 KA 16-00869", - "judges": "", - "citations": "2017 NY Slip Op 03682", - "case_name_shorts": "Vogt" + "docket_numbers": "", + "citations": "229 AD3d 1191", + "parallel_citations": "2024 NYSlipOp 03940", + "case_name_shorts": "Potempa", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", + "case_dates": "2024-07-26", + "case_names": "People v. Wernle", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03988.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1281", + "parallel_citations": "2024 NYSlipOp 03988", + "case_name_shorts": "Wernle", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Wendy B.-S.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04003.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1317", + "parallel_citations": "2024 NYSlipOp 04003", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Toran", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03958.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1228", + "parallel_citations": "2024 NYSlipOp 03958", + "case_name_shorts": "Toran", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", "case_names": "People v. Smith", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03657.htm", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03973.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1253", + "parallel_citations": "2024 NYSlipOp 03973", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Shaw", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03936.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1180", + "parallel_citations": "2024 NYSlipOp 03936", + "case_name_shorts": "Shaw", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Shammah", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03971.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1250", + "parallel_citations": "2024 NYSlipOp 03971", + "case_name_shorts": "Shammah", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Santiago", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04041.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1383", + "parallel_citations": "2024 NYSlipOp 04041", + "case_name_shorts": "Santiago", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Sanger", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03984.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1275", + "parallel_citations": "2024 NYSlipOp 03984", + "case_name_shorts": "Sanger", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Ross", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04029.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1372", + "parallel_citations": "2024 NYSlipOp 04029", + "case_name_shorts": "Ross", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Robinson", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04023.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1369", + "parallel_citations": "2024 NYSlipOp 04023", + "case_name_shorts": "Robinson", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Putnam", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03983.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1274", + "parallel_citations": "2024 NYSlipOp 03983", + "case_name_shorts": "Putnam", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Putnam", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03982.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1274", + "parallel_citations": "2024 NYSlipOp 03982", + "case_name_shorts": "Putnam", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Pringle", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03961.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1234", + "parallel_citations": "2024 NYSlipOp 03961", + "case_name_shorts": "Pringle", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Pope", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04036.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1379", + "parallel_citations": "2024 NYSlipOp 04036", + "case_name_shorts": "Pope", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Perkins", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03952.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1223", + "parallel_citations": "2024 NYSlipOp 03952", + "case_name_shorts": "Perkins", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Perez", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03981.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1273", + "parallel_citations": "2024 NYSlipOp 03981", + "case_name_shorts": "Perez", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Penfold", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03996.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1299", + "parallel_citations": "2024 NYSlipOp 03996", + "case_name_shorts": "Penfold", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Pearsall", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04035.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1377", + "parallel_citations": "2024 NYSlipOp 04035", + "case_name_shorts": "Pearsall", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. O'Connor", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04039.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1380", + "parallel_citations": "2024 NYSlipOp 04039", + "case_name_shorts": "O'Connor", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Ney", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03972.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1251", + "parallel_citations": "2024 NYSlipOp 03972", + "case_name_shorts": "Ney", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Mulligan", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03968.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1247", + "parallel_citations": "2024 NYSlipOp 03968", + "case_name_shorts": "Mulligan", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Motell", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04007.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1330", + "parallel_citations": "2024 NYSlipOp 04007", + "case_name_shorts": "Motell", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Moore", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03987.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1279", + "parallel_citations": "2024 NYSlipOp 03987", + "case_name_shorts": "Moore", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Moore", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03941.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1193", + "parallel_citations": "2024 NYSlipOp 03941", + "case_name_shorts": "Moore", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Lacey", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03980.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1270", + "parallel_citations": "2024 NYSlipOp 03980", + "case_name_shorts": "Lacey", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. King", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03932.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1173", + "parallel_citations": "2024 NYSlipOp 03932", + "case_name_shorts": "King", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. King", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03931.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1170", + "parallel_citations": "2024 NYSlipOp 03931", + "case_name_shorts": "King", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Junot", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04025.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1370", + "parallel_citations": "2024 NYSlipOp 04025", + "case_name_shorts": "Junot", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Johnson", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03997.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1300", + "parallel_citations": "2024 NYSlipOp 03997", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Jackson", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03957.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1228", + "parallel_citations": "2024 NYSlipOp 03957", + "case_name_shorts": "", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Hudson", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04015.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1355", + "parallel_citations": "2024 NYSlipOp 04015", + "case_name_shorts": "Hudson", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Hudson", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04014.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1354", + "parallel_citations": "2024 NYSlipOp 04014", + "case_name_shorts": "Hudson", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Hinson", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03939.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1191", + "parallel_citations": "2024 NYSlipOp 03939", + "case_name_shorts": "Hinson", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Herrera-Cruz", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04024.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1369", + "parallel_citations": "2024 NYSlipOp 04024", + "case_name_shorts": "Herrera-Cruz", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Harris", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03953.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1226", + "parallel_citations": "2024 NYSlipOp 03953", + "case_name_shorts": "Harris", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Hancock", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03959.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1229", + "parallel_citations": "2024 NYSlipOp 03959", + "case_name_shorts": "Hancock", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Goines", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03970.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1248", + "parallel_citations": "2024 NYSlipOp 03970", + "case_name_shorts": "Goines", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Gamble", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03993.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1294", + "parallel_citations": "2024 NYSlipOp 03993", + "case_name_shorts": "Gamble", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Gamble", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03992.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1290", + "parallel_citations": "2024 NYSlipOp 03992", + "case_name_shorts": "Gamble", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Foumakoye", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04038.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1380", + "parallel_citations": "2024 NYSlipOp 04038", + "case_name_shorts": "Foumakoye", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Felder", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03986.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1278", + "parallel_citations": "2024 NYSlipOp 03986", + "case_name_shorts": "Felder", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Favors", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04027.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1371", + "parallel_citations": "2024 NYSlipOp 04027", + "case_name_shorts": "Favors", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Favors", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04026.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1371", + "parallel_citations": "2024 NYSlipOp 04026", + "case_name_shorts": "Favors", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Everson", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04013.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1349", + "parallel_citations": "2024 NYSlipOp 04013", + "case_name_shorts": "Everson", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Evans", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04037.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1380", + "parallel_citations": "2024 NYSlipOp 04037", + "case_name_shorts": "Evans", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Edmonds", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03985.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1275", + "parallel_citations": "2024 NYSlipOp 03985", + "case_name_shorts": "Edmonds", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Dunn", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03956.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1227", + "parallel_citations": "2024 NYSlipOp 03956", + "case_name_shorts": "Dunn", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Dunn", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03955.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1227", + "parallel_citations": "2024 NYSlipOp 03955", + "case_name_shorts": "Dunn", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Dunn", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03951.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1220", + "parallel_citations": "2024 NYSlipOp 03951", + "case_name_shorts": "Dunn", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Cromwell", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03934.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1176", + "parallel_citations": "2024 NYSlipOp 03934", + "case_name_shorts": "Cromwell", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Converso", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04033.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1376", + "parallel_citations": "2024 NYSlipOp 04033", + "case_name_shorts": "Converso", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Colella", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04012.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1344", + "parallel_citations": "2024 NYSlipOp 04012", + "case_name_shorts": "Colella", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Cerone", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04031.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1375", + "parallel_citations": "2024 NYSlipOp 04031", + "case_name_shorts": "Cerone", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Campbell", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04028.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1372", + "parallel_citations": "2024 NYSlipOp 04028", + "case_name_shorts": "Campbell", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Campbell", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03995.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1296", + "parallel_citations": "2024 NYSlipOp 03995", + "case_name_shorts": "Campbell", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Callara", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03969.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1247", + "parallel_citations": "2024 NYSlipOp 03969", + "case_name_shorts": "Callara", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Brown", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03954.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "229 AD3d 1226", + "parallel_citations": "2024 NYSlipOp 03954", + "case_name_shorts": "Brown", + "authors": "", + "per_curiam": false + }, + { + "case_dates": "2024-07-26", + "case_names": "People v. Bell", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03935.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "540 KA 14-00968", - "judges": "", - "citations": "2017 NY Slip Op 03657", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1178", + "parallel_citations": "2024 NYSlipOp 03935", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Reed", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03649.htm", + "case_dates": "2024-07-26", + "case_names": "People v. Bean", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03960.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "516 KA 14-00727", - "judges": "", - "citations": "2017 NY Slip Op 03649", - "case_name_shorts": "Reed" + "docket_numbers": "", + "citations": "229 AD3d 1231", + "parallel_citations": "2024 NYSlipOp 03960", + "case_name_shorts": "Bean", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Propst", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03676.htm", + "case_dates": "2024-07-26", + "case_names": "People v. Barber", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03994.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "630 KA 15-00403", - "judges": "", - "citations": "2017 NY Slip Op 03676", - "case_name_shorts": "Propst" + "docket_numbers": "", + "citations": "229 AD3d 1295", + "parallel_citations": "2024 NYSlipOp 03994", + "case_name_shorts": "Barber", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Pendergraph", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03681.htm", + "case_dates": "2024-07-26", + "case_names": "People v. Baker", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04006.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "653 KA 07-00150", - "judges": "", - "citations": "2017 NY Slip Op 03681", - "case_name_shorts": "Pendergraph" + "docket_numbers": "", + "citations": "229 AD3d 1324", + "parallel_citations": "2024 NYSlipOp 04006", + "case_name_shorts": "Baker", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Kunz", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03675.htm", + "case_dates": "2024-07-26", + "case_names": "People v. Ashton", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04005.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "629 KA 15-01176", - "judges": "", - "citations": "2017 NY Slip Op 03675", - "case_name_shorts": "Kunz" + "docket_numbers": "", + "citations": "229 AD3d 1324", + "parallel_citations": "2024 NYSlipOp 04005", + "case_name_shorts": "Ashton", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Krembel", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03680.htm", + "case_dates": "2024-07-26", + "case_names": "People v. Ashton", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04004.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "652 KA 15-00454", - "judges": "", - "citations": "2017 NY Slip Op 03680", - "case_name_shorts": "Krembel" + "docket_numbers": "", + "citations": "229 AD3d 1322", + "parallel_citations": "2024 NYSlipOp 04004", + "case_name_shorts": "Ashton", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. June", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03679.htm", + "case_dates": "2024-07-26", + "case_names": "People v. Anderson", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04042.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "651 KA 15-02093", - "judges": "", - "citations": "2017 NY Slip Op 03679", - "case_name_shorts": "June" + "docket_numbers": "", + "citations": "229 AD3d 1384", + "parallel_citations": "2024 NYSlipOp 04042", + "case_name_shorts": "Anderson", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Joyce", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03637.htm", + "case_dates": "2024-07-26", + "case_names": "People v. Allis", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04032.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "422 KA 16-01514", - "judges": "", - "citations": "2017 NY Slip Op 03637", - "case_name_shorts": "Joyce" + "docket_numbers": "", + "citations": "229 AD3d 1375", + "parallel_citations": "2024 NYSlipOp 04032", + "case_name_shorts": "Allis", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Ibarrondo", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03643.htm", + "case_dates": "2024-07-26", + "case_names": "PB-33 Doe v. Rudolph", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04009.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "495 KA 12-01361", - "judges": "", - "citations": "2017 NY Slip Op 03643", - "case_name_shorts": "Ibarrondo" + "docket_numbers": "", + "citations": "229 AD3d 1340", + "parallel_citations": "2024 NYSlipOp 04009", + "case_name_shorts": "Rudolph", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Gambale", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03658.htm", + "case_dates": "2024-07-26", + "case_names": "Oakshire Props., LLC v. Argus Capital Funding, LLC", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03943.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "541 KA 14-00722", - "judges": "", - "citations": "2017 NY Slip Op 03658", - "case_name_shorts": "Gambale" + "docket_numbers": "", + "citations": "229 AD3d 1199", + "parallel_citations": "2024 NYSlipOp 03943", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Fedrick", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03650.htm", + "case_dates": "2024-07-26", + "case_names": "Novak v. Western N.Y. Snowmobile Club of Boston, Inc.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04018.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "518 KA 13-00166", - "judges": "", - "citations": "2017 NY Slip Op 03650", - "case_name_shorts": "Fedrick" + "docket_numbers": "", + "citations": "229 AD3d 1359", + "parallel_citations": "2024 NYSlipOp 04018", + "case_name_shorts": "Novak", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Farley", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03634.htm", + "case_dates": "2024-07-26", + "case_names": "Merchants Preferred Ins. Co. v. Campbell", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03976.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "296 KA 14-00246", - "judges": "", - "citations": "2017 NY Slip Op 03634", - "case_name_shorts": "Farley" + "docket_numbers": "", + "citations": "229 AD3d 1260", + "parallel_citations": "2024 NYSlipOp 03976", + "case_name_shorts": "Campbell", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Dumbleton", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03670.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Weber", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04047.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "607 KA 15-00124", - "judges": "", - "citations": "2017 NY Slip Op 03670", - "case_name_shorts": "Dumbleton" + "docket_numbers": "", + "citations": "229 AD3d 1386", + "parallel_citations": "2024 NYSlipOp 04047", + "case_name_shorts": "Matter of Weber", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Days", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03632.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Steven S. (Lyndsey M.)", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03946.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "264 KA 12-00113", - "judges": "", - "citations": "2017 NY Slip Op 03632", - "case_name_shorts": "Days" + "docket_numbers": "", + "citations": "229 AD3d 1207", + "parallel_citations": "2024 NYSlipOp 03946", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Daggett", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03666.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of State Div. of Human Rights v. Weichert", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03962.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "587 KA 14-00060", - "judges": "", - "citations": "2017 NY Slip Op 03666", - "case_name_shorts": "Daggett" + "docket_numbers": "", + "citations": "229 AD3d 1236", + "parallel_citations": "2024 NYSlipOp 03962", + "case_name_shorts": "Weichert", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Case", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03638.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Spaeth v. Annucci", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04034.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "445 KA 15-00535", - "judges": "", - "citations": "2017 NY Slip Op 03638", - "case_name_shorts": "Case" + "docket_numbers": "", + "citations": "229 AD3d 1376", + "parallel_citations": "2024 NYSlipOp 04034", + "case_name_shorts": "Annucci", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "People v. Baird", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03640.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Smith v. Annucci", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04030.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "468 KA 15-00001", - "judges": "", - "citations": "2017 NY Slip Op 03640", - "case_name_shorts": "Baird" + "docket_numbers": "", + "citations": "229 AD3d 1372", + "parallel_citations": "2024 NYSlipOp 04030", + "case_name_shorts": "Annucci", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Mosley v. State of New York", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03653.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Prame", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04045.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "526 CA 16-01969", - "judges": "", - "citations": "2017 NY Slip Op 03653", - "case_name_shorts": "Mosley" + "docket_numbers": "", + "citations": "229 AD3d 1385", + "parallel_citations": "2024 NYSlipOp 04045", + "case_name_shorts": "Matter of Prame", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Wooster v. Queen City Landing, LLC", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03672.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Pendergrass", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04043.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "618 CA 16-02077", - "judges": "", - "citations": "2017 NY Slip Op 03672", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "", + "parallel_citations": "2024 NYSlipOp 04043", + "case_name_shorts": "Matter of Pendergrass", + "authors": "", + "per_curiam": true }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Wooster v. Queen City Landing, LLC", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03671.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Parson v. Unified Ct. Sys. of the State of New York", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04010.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "617 CA 16-02043", - "judges": "", - "citations": "2017 NY Slip Op 03671", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1343", + "parallel_citations": "2024 NYSlipOp 04010", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Washington v. Annucci", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03678.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Onondaga County v. Taylor", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04040.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "650 TP 16-01796", - "judges": "", - "citations": "2017 NY Slip Op 03678", - "case_name_shorts": "Annucci" + "docket_numbers": "", + "citations": "229 AD3d 1381", + "parallel_citations": "2024 NYSlipOp 04040", + "case_name_shorts": "Taylor", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Rochester Eastside Residents for Appropriate Dev., Inc. v. City of Rochester", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03665.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Lekki", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03991.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "580 CA 16-01413", - "judges": "", - "citations": "2017 NY Slip Op 03665", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1286", + "parallel_citations": "2024 NYSlipOp 03991", + "case_name_shorts": "Matter of Lekki", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Phillips v. Annucci", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03661.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Lekki", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03990.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "571 CA 16-00385", - "judges": "", - "citations": "2017 NY Slip Op 03661", - "case_name_shorts": "Annucci" + "docket_numbers": "", + "citations": "229 AD3d 1285", + "parallel_citations": "2024 NYSlipOp 03990", + "case_name_shorts": "Matter of Lekki", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Pfalzer v. Pfalzer", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03683.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Kiara F. (Lyndsey M.)", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03945.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "664 CAF 16-00204", - "judges": "", - "citations": "2017 NY Slip Op 03683", - "case_name_shorts": "Pfalzer" + "docket_numbers": "", + "citations": "229 AD3d 1207", + "parallel_citations": "2024 NYSlipOp 03945", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Nataylia C.B. (Christopher B.)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03652.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of James L. v. Starpoint Cent. Sch. Dist.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04011.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "523 CAF 16-02010", - "judges": "", - "citations": "2017 NY Slip Op 03652", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1344", + "parallel_citations": "2024 NYSlipOp 04011", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Nataylia C.B. (Christopher B.)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03651.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Guarino", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04044.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "522 CAF 16-00507", - "judges": "", - "citations": "2017 NY Slip Op 03651", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1385", + "parallel_citations": "2024 NYSlipOp 04044", + "case_name_shorts": "Matter of Guarino", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Michael S. (Rebecca S.)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03688.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Freedom Found. v. Jefferson County", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03944.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1193 CAF 15-00680", - "judges": "", - "citations": "2017 NY Slip Op 03688", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1203", + "parallel_citations": "2024 NYSlipOp 03944", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Kubiak v. Derenda", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03636.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Fallin v. Haruna", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03974.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "392 CA 16-01307", - "judges": "", - "citations": "2017 NY Slip Op 03636", - "case_name_shorts": "Derenda" + "docket_numbers": "", + "citations": "229 AD3d 1257", + "parallel_citations": "2024 NYSlipOp 03974", + "case_name_shorts": "Haruna", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Klimov v. New York State Div. of Human Rights", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03664.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Chase", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04046.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "579 TP 16-01824", - "judges": "", - "citations": "2017 NY Slip Op 03664", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1386", + "parallel_citations": "2024 NYSlipOp 04046", + "case_name_shorts": "Matter of Chase", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Kaylee W. (Rebecca S.)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03686.htm", + "case_dates": "2024-07-26", + "case_names": "Matter of Bradshaw v. Annucci", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03966.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1191 CAF 15-00678", - "judges": "", - "citations": "2017 NY Slip Op 03686", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1244", + "parallel_citations": "2024 NYSlipOp 03966", + "case_name_shorts": "Annucci", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Joseph M., Jr. (Joseph M., Sr.)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03645.htm", + "case_dates": "2024-07-26", + "case_names": "Lavine v. State of New York", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03933.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "498 CAF 15-00225", - "judges": "", - "citations": "2017 NY Slip Op 03645", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1173", + "parallel_citations": "2024 NYSlipOp 03933", + "case_name_shorts": "Lavine", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of HSBC Bank USA, N.A. (Campbell)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03654.htm", + "case_dates": "2024-07-26", + "case_names": "Lamarr v. Buffalo State Alumni Assn., Inc.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03965.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "530 CA 15-01043", - "judges": "", - "citations": "2017 NY Slip Op 03654", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1241", + "parallel_citations": "2024 NYSlipOp 03965", + "case_name_shorts": "Lamarr", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Greeley v. Tucker", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03644.htm", + "case_dates": "2024-07-26", + "case_names": "Kolli v. Kaleida Health", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03998.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "497 CAF 15-01557", - "judges": "", - "citations": "2017 NY Slip Op 03644", - "case_name_shorts": "Tucker" + "docket_numbers": "", + "citations": "229 AD3d 1303", + "parallel_citations": "2024 NYSlipOp 03998", + "case_name_shorts": "Kolli", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of England (Campbell)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03656.htm", + "case_dates": "2024-07-26", + "case_names": "Kirschler v. Village of N. Collins", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03977.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "532 CA 15-01047", - "judges": "", - "citations": "2017 NY Slip Op 03656", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1264", + "parallel_citations": "2024 NYSlipOp 03977", + "case_name_shorts": "Kirschler", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of England (Campbell)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03655.htm", + "case_dates": "2024-07-26", + "case_names": "Gibson v. Farm Credit E., ACA", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03967.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "531 CA 15-01046", - "judges": "", - "citations": "2017 NY Slip Op 03655", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1245", + "parallel_citations": "2024 NYSlipOp 03967", + "case_name_shorts": "Gibson", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Emily W. (Michael S.)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03685.htm", + "case_dates": "2024-07-26", + "case_names": "Gaskill v. Sharpe", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03975.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1190 CAF 14-02243", - "judges": "", - "citations": "2017 NY Slip Op 03685", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1258", + "parallel_citations": "2024 NYSlipOp 03975", + "case_name_shorts": "Gaskill", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of DeMarco v. New York State Dept. of Motor Vehs.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03660.htm", + "case_dates": "2024-07-26", + "case_names": "Galante v. Karlis", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04001.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "553 TP 16-01783", - "judges": "", - "citations": "2017 NY Slip Op 03660", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1311", + "parallel_citations": "2024 NYSlipOp 04001", + "case_name_shorts": "Galante", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of City of Buffalo v. Buffalo Police Benevolent Assn., Inc.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03642.htm", + "case_dates": "2024-07-26", + "case_names": "Fresh Air for The Eastside, Inc. v. State of New York", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03950.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "481 CA 16-01699", - "judges": "", - "citations": "2017 NY Slip Op 03642", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1217", + "parallel_citations": "2024 NYSlipOp 03950", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of City of Buffalo (Brand-on Servs., Inc.)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03662.htm", + "case_dates": "2024-07-26", + "case_names": "Durkee v. Sanchez-Rodriguez", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04002.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "572 CA 16-01895", - "judges": "", - "citations": "2017 NY Slip Op 03662", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1315", + "parallel_citations": "2024 NYSlipOp 04002", + "case_name_shorts": "Durkee", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Brooklyn S. (Stafania Q.)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03677.htm", + "case_dates": "2024-07-26", + "case_names": "Duhart-Neal v. Monroe County", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04022.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "639 CAF 15-01654", - "judges": "", - "citations": "2017 NY Slip Op 03677", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1365", + "parallel_citations": "2024 NYSlipOp 04022", + "case_name_shorts": "Duhart-Neal", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Matter of Ava W. (Rebecca S.)", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03687.htm", + "case_dates": "2024-07-26", + "case_names": "Duhart-Neal v. Monroe County", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04021.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1192 CAF 15-00679", - "judges": "", - "citations": "2017 NY Slip Op 03687", - "case_name_shorts": "" + "docket_numbers": "", + "citations": "229 AD3d 1365", + "parallel_citations": "2024 NYSlipOp 04021", + "case_name_shorts": "Duhart-Neal", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Larke v. Moore", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03631.htm", + "case_dates": "2024-07-26", + "case_names": "Dreamco Dev. Corp. v. Cranesville Block Co., Inc.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03937.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "161 CA 16-00109", - "judges": "", - "citations": "2017 NY Slip Op 03631", - "case_name_shorts": "Larke" + "docket_numbers": "", + "citations": "229 AD3d 1187", + "parallel_citations": "2024 NYSlipOp 03937", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Larke v. Moore", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03630.htm", + "case_dates": "2024-07-26", + "case_names": "DeFedericis v. Vince's Pizza Plus, Inc.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03947.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "160 CA 15-01971", - "judges": "", - "citations": "2017 NY Slip Op 03630", - "case_name_shorts": "Larke" + "docket_numbers": "", + "citations": "229 AD3d 1210", + "parallel_citations": "2024 NYSlipOp 03947", + "case_name_shorts": "DeFedericis", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Golisano v. Vitoch Interiors Ltd.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03635.htm", + "case_dates": "2024-07-26", + "case_names": "Campus Sq., LLC v. North-Ellicott Mgt., Inc.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04008.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "300 CA 16-01312", - "judges": "", - "citations": "2017 NY Slip Op 03635", - "case_name_shorts": "Golisano" + "docket_numbers": "", + "citations": "229 AD3d 1332", + "parallel_citations": "2024 NYSlipOp 04008", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Gallagher v. City of Buffalo", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03663.htm", + "case_dates": "2024-07-26", + "case_names": "Boatman v. County of Onondaga", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03949.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "573 CA 16-01210", - "judges": "", - "citations": "2017 NY Slip Op 03663", - "case_name_shorts": "Gallagher" + "docket_numbers": "", + "citations": "229 AD3d 1214", + "parallel_citations": "2024 NYSlipOp 03949", + "case_name_shorts": "Boatman", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Coffee v. Tank Indus. Consultants, Inc.", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03668.htm", + "case_dates": "2024-07-26", + "case_names": "Bates v. Gannett Co., Inc.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03999.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "593 CA 16-01777", - "judges": "", - "citations": "2017 NY Slip Op 03668", - "case_name_shorts": "Coffee" + "docket_numbers": "", + "citations": "229 AD3d 1307", + "parallel_citations": "2024 NYSlipOp 03999", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Chillis v. Brundin", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03646.htm", + "case_dates": "2024-07-26", + "case_names": "BL Doe 4 v. Fleming", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04000.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "502 CA 16-01846", - "judges": "", - "citations": "2017 NY Slip Op 03646", - "case_name_shorts": "Chillis" + "docket_numbers": "", + "citations": "229 AD3d 1309", + "parallel_citations": "2024 NYSlipOp 04000", + "case_name_shorts": "Fleming", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Burgwardt v. Burgwardt", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03633.htm", + "case_dates": "2024-07-26", + "case_names": "Alvarado v. Jilani", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_04017.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "283 CA 16-01578", - "judges": "", - "citations": "2017 NY Slip Op 03633", - "case_name_shorts": "Burgwardt" + "docket_numbers": "", + "citations": "229 AD3d 1358", + "parallel_citations": "2024 NYSlipOp 04017", + "case_name_shorts": "Alvarado", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Arrington v. Cohen", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03674.htm", + "case_dates": "2024-07-26", + "case_names": "AB 511 Doe v. Lyndonville Cent. Sch. Dist.", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03979.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "626 CA 16-01369", - "judges": "", - "citations": "2017 NY Slip Op 03674", - "case_name_shorts": "Arrington" + "docket_numbers": "", + "citations": "229 AD3d 1268", + "parallel_citations": "2024 NYSlipOp 03979", + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { - "case_dates": "2017-05-05", - "case_names": "Ahern v. City of Syracuse", - "download_urls": "tests/examples/opinions/3dseries/2017/2017_03659.htm", + "case_dates": "2024-07-26", + "case_names": "107/115 N. Wash. St., LLC v. Irwin Props., LLC", + "download_urls": "http://www.nycourts.gov/reporter/3dseries/2024/2024_03942.htm", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "547 CA 16-01883", - "judges": "", - "citations": "2017 NY Slip Op 03659", - "case_name_shorts": "Ahern" + "docket_numbers": "", + "citations": "229 AD3d 1196", + "parallel_citations": "2024 NYSlipOp 03942", + "case_name_shorts": "", + "authors": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyappdiv_4th_example.html b/tests/examples/opinions/united_states/nyappdiv_4th_example.html index 65023ce09..33fdb3f28 100644 --- a/tests/examples/opinions/united_states/nyappdiv_4th_example.html +++ b/tests/examples/opinions/united_states/nyappdiv_4th_example.html @@ -1,542 +1,1125 @@ - - + - - - -Appellate Division, Fourth Department, Decisions +LRB Search Results + - - - - - - - - - - - - - - - - - - - - - + + + + +
    - - - -
    - - - -
    - - - - +

    + -
    - - - - -
    - -
    - - - - -
    - - - - - -
    - - - - - -
    - -   - -
    -
    - - - - - - - - - - -
    -
    -
    - - - - - -
    - - -
    Archives
    -
    -
     
    -
    - - - + + + +
    - -
      May, 2017  
    -
    *Date of decision is released date, unless another date is noted in the decision.
    - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Cases Decided May 5, 2017
    Title -Judge -Docket No. -Slip Opinion No. -
    Piche v Synergy Tooling Sys., Inc.619 CA 16-019582017 NY Slip Op 03673
    Arrington v Cohen626 CA 16-013692017 NY Slip Op 03674
    People v Kunz629 KA 15-011762017 NY Slip Op 03675
    People v Propst630 KA 15-004032017 NY Slip Op 03676
    Matter of Brooklyn S. (Stafania Q.)639 CAF 15-016542017 NY Slip Op 03677
    Matter of Washington v Annucci650 TP 16-017962017 NY Slip Op 03678
    People v June651 KA 15-020932017 NY Slip Op 03679
    People v Krembel652 KA 15-004542017 NY Slip Op 03680
    People v Pendergraph653 KA 07-001502017 NY Slip Op 03681
    People v Vogt656 KA 16-008692017 NY Slip Op 03682
    Matter of Pfalzer v Pfalzer664 CAF 16-002042017 NY Slip Op 03683
    RJW Enters., Inc. v Simao1009/16 CA 15-020602017 NY Slip Op 03684
    Matter of Emily W. (Michael S.)1190 CAF 14-022432017 NY Slip Op 03685
    Matter of Kaylee W. (Rebecca S.)1191 CAF 15-006782017 NY Slip Op 03686
    Matter of Ava W. (Rebecca S.)1192 CAF 15-006792017 NY Slip Op 03687
    Matter of Michael S. (Rebecca S.)1193 CAF 15-006802017 NY Slip Op 03688
    Terwilliger v Beazer E., Inc.85 CA 16-009472017 NY Slip Op 03629
    Larke v Moore160 CA 15-019712017 NY Slip Op 03630
    Larke v Moore161 CA 16-001092017 NY Slip Op 03631
    People v Days264 KA 12-001132017 NY Slip Op 03632
    Burgwardt v Burgwardt283 CA 16-015782017 NY Slip Op 03633
    People v Farley296 KA 14-002462017 NY Slip Op 03634
    Golisano v Vitoch Interiors Ltd.300 CA 16-013122017 NY Slip Op 03635
    Matter of Kubiak v Derenda392 CA 16-013072017 NY Slip Op 03636
    People v Joyce422 KA 16-015142017 NY Slip Op 03637
    People v Case445 KA 15-005352017 NY Slip Op 03638
    Waterman v CNH Am. LLC455 CA 16-008082017 NY Slip Op 03639
    People v Baird468 KA 15-000012017 NY Slip Op 03640
    Wallenhorst v Wallenhorst478 CA 16-017212017 NY Slip Op 03641
    Matter of City of Buffalo v Buffalo Police Benevolent Assn., Inc.481 CA 16-016992017 NY Slip Op 03642
    People v Ibarrondo495 KA 12-013612017 NY Slip Op 03643
    Matter of Greeley v Tucker497 CAF 15-015572017 NY Slip Op 03644
    Matter of Joseph M., Jr. (Joseph M., Sr.)498 CAF 15-002252017 NY Slip Op 03645
    Chillis v Brundin502 CA 16-018462017 NY Slip Op 03646
    Wallace v M&C Hotel Interests, Inc.503 CA 16-010902017 NY Slip Op 03647
    Stowe v Furness509 CA 16-020402017 NY Slip Op 03648
    People v Reed516 KA 14-007272017 NY Slip Op 03649
    People v Fedrick518 KA 13-001662017 NY Slip Op 03650
    Matter of Nataylia C.B. (Christopher B.)522 CAF 16-005072017 NY Slip Op 03651
    Matter of Nataylia C.B. (Christopher B.)523 CAF 16-020102017 NY Slip Op 03652
    Mosley v State of New York526 CA 16-019692017 NY Slip Op 03653
    Matter of HSBC Bank USA, N.A. (Campbell)530 CA 15-010432017 NY Slip Op 03654
    Matter of England (Campbell)531 CA 15-010462017 NY Slip Op 03655
    Matter of England (Campbell)532 CA 15-010472017 NY Slip Op 03656
    People v Smith540 KA 14-009682017 NY Slip Op 03657
    People v Gambale541 KA 14-007222017 NY Slip Op 03658
    Ahern v City of Syracuse547 CA 16-018832017 NY Slip Op 03659
    Matter of DeMarco v New York State Dept. of Motor Vehs.553 TP 16-017832017 NY Slip Op 03660
    Matter of Phillips v Annucci571 CA 16-003852017 NY Slip Op 03661
    Matter of City of Buffalo (Brand-on Servs., Inc.)572 CA 16-018952017 NY Slip Op 03662
    Gallagher v City of Buffalo573 CA 16-012102017 NY Slip Op 03663
    Matter of Klimov v New York State Div. of Human Rights579 TP 16-018242017 NY Slip Op 03664
    Matter of Rochester Eastside Residents for Appropriate Dev., Inc. v City of Rochester580 CA 16-014132017 NY Slip Op 03665
    People v Daggett587 KA 14-000602017 NY Slip Op 03666
    People v Williams588 KA 15-012212017 NY Slip Op 03667
    Coffee v Tank Indus. Consultants, Inc.593 CA 16-017772017 NY Slip Op 03668
    Rodrigues v Lesser598 CA 15-013832017 NY Slip Op 03669
    People v Dumbleton607 KA 15-001242017 NY Slip Op 03670
    Matter of Wooster v Queen City Landing, LLC617 CA 16-020432017 NY Slip Op 03671
    Matter of Wooster v Queen City Landing, LLC618 CA 16-020772017 NY Slip Op 03672
    - - - - - - - - -

    - - +
     Slip Decisions Search Results
    + + +
    + + + + + + + + + + -
    Search Criteria
        Decision Start Date : + 07/22/2024
        Court : + App Div, 4th Dept

    -Citation Services | -Archives | -Style Manual | -Legal Research Portal - + + + + + + - -
    + Total number of records found: 117 -
    -
    E-mail the Law
-Reporting Bureau -
    -
    -New York State Law Reporting Bureau
    -17 Lodge Street, Albany, NY 12207
    -phone: (518) 453-6900
    -fax: (518) 426-1640 -
    +
          


    +
    + + -
    - - -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Party NameDecision DateCourt   Official Citation   Slip Number   JudgeOpn/Mot
    107/115 N. Wash. St., LLC v Irwin Props., LLC07/26/2024App Div, 4th Dept229 AD3d 11962024 NYSlipOp 03942Opinion
    AB 511 Doe v Lyndonville Cent. Sch. Dist.07/26/2024App Div, 4th Dept229 AD3d 12682024 NYSlipOp 03979Opinion
    Alvarado v Jilani07/26/2024App Div, 4th Dept229 AD3d 13582024 NYSlipOp 04017Opinion
    BL Doe 4 v Fleming07/26/2024App Div, 4th Dept229 AD3d 13092024 NYSlipOp 04000Opinion
    Bates v Gannett Co., Inc.07/26/2024App Div, 4th Dept229 AD3d 13072024 NYSlipOp 03999Opinion
    Boatman v County of Onondaga07/26/2024App Div, 4th Dept229 AD3d 12142024 NYSlipOp 03949Opinion
    Campus Sq., LLC v North-Ellicott Mgt., Inc.07/26/2024App Div, 4th Dept229 AD3d 13322024 NYSlipOp 04008Opinion
    DeFedericis v Vince's Pizza Plus, Inc.07/26/2024App Div, 4th Dept229 AD3d 12102024 NYSlipOp 03947Opinion
    Dreamco Dev. Corp. v Cranesville Block Co., Inc.07/26/2024App Div, 4th Dept229 AD3d 11872024 NYSlipOp 03937Opinion
    Duhart-Neal v Monroe County07/26/2024App Div, 4th Dept229 AD3d 13652024 NYSlipOp 04021Opinion
    Duhart-Neal v Monroe County07/26/2024App Div, 4th Dept229 AD3d 13652024 NYSlipOp 04022Opinion
    Durkee v Sanchez-Rodriguez07/26/2024App Div, 4th Dept229 AD3d 13152024 NYSlipOp 04002Opinion
    Fresh Air for The Eastside, Inc. v State of New York07/26/2024App Div, 4th Dept229 AD3d 12172024 NYSlipOp 03950Opinion
    Galante v Karlis07/26/2024App Div, 4th Dept229 AD3d 13112024 NYSlipOp 04001Opinion
    Gaskill v Sharpe07/26/2024App Div, 4th Dept229 AD3d 12582024 NYSlipOp 03975Opinion
    Gibson v Farm Credit E., ACA07/26/2024App Div, 4th Dept229 AD3d 12452024 NYSlipOp 03967Opinion
    Kirschler v Village of N. Collins07/26/2024App Div, 4th Dept229 AD3d 12642024 NYSlipOp 03977Opinion
    Kolli v Kaleida Health07/26/2024App Div, 4th Dept229 AD3d 13032024 NYSlipOp 03998Opinion
    Lamarr v Buffalo State Alumni Assn., Inc.07/26/2024App Div, 4th Dept229 AD3d 12412024 NYSlipOp 03965Opinion
    Lavine v State of New York07/26/2024App Div, 4th Dept229 AD3d 11732024 NYSlipOp 03933Opinion
    Matter of Bradshaw v Annucci07/26/2024App Div, 4th Dept229 AD3d 12442024 NYSlipOp 03966Opinion
    Matter of Chase07/26/2024App Div, 4th Dept229 AD3d 13862024 NYSlipOp 04046Opinion
    Matter of Fallin v Haruna07/26/2024App Div, 4th Dept229 AD3d 12572024 NYSlipOp 03974Opinion
    Matter of Freedom Found. v Jefferson County07/26/2024App Div, 4th Dept229 AD3d 12032024 NYSlipOp 03944Opinion
    Matter of Guarino07/26/2024App Div, 4th Dept229 AD3d 13852024 NYSlipOp 04044Opinion
    Matter of James L. v Starpoint Cent. Sch. Dist.07/26/2024App Div, 4th Dept229 AD3d 13442024 NYSlipOp 04011Opinion
    Matter of Kiara F. (Lyndsey M.)07/26/2024App Div, 4th Dept229 AD3d 12072024 NYSlipOp 03945Opinion
    Matter of Lekki07/26/2024App Div, 4th Dept229 AD3d 12852024 NYSlipOp 03990Opinion
    Matter of Lekki07/26/2024App Div, 4th Dept229 AD3d 12862024 NYSlipOp 03991Opinion
    Matter of Onondaga County v Taylor07/26/2024App Div, 4th Dept229 AD3d 13812024 NYSlipOp 04040Opinion
    Matter of Parson v Unified Ct. Sys. of the State of New York07/26/2024App Div, 4th Dept229 AD3d 13432024 NYSlipOp 04010Opinion
    Matter of Pendergrass07/26/2024App Div, 4th Dept2024 NYSlipOp 04043Per CuriamOpinion
    Matter of Prame07/26/2024App Div, 4th Dept229 AD3d 13852024 NYSlipOp 04045Opinion
    Matter of Smith v Annucci07/26/2024App Div, 4th Dept229 AD3d 13722024 NYSlipOp 04030Opinion
    Matter of Spaeth v Annucci07/26/2024App Div, 4th Dept229 AD3d 13762024 NYSlipOp 04034Opinion
    Matter of State Div. of Human Rights v Weichert07/26/2024App Div, 4th Dept229 AD3d 12362024 NYSlipOp 03962Opinion
    Matter of Steven S. (Lyndsey M.)07/26/2024App Div, 4th Dept229 AD3d 12072024 NYSlipOp 03946Opinion
    Matter of Weber07/26/2024App Div, 4th Dept229 AD3d 13862024 NYSlipOp 04047Opinion
    Merchants Preferred Ins. Co. v Campbell07/26/2024App Div, 4th Dept229 AD3d 12602024 NYSlipOp 03976Opinion
    Novak v Western N.Y. Snowmobile Club of Boston, Inc.07/26/2024App Div, 4th Dept229 AD3d 13592024 NYSlipOp 04018Opinion
    Oakshire Props., LLC v Argus Capital Funding, LLC07/26/2024App Div, 4th Dept229 AD3d 11992024 NYSlipOp 03943Opinion
    PB-33 Doe v Rudolph07/26/2024App Div, 4th Dept229 AD3d 13402024 NYSlipOp 04009Opinion
    People v Allis07/26/2024App Div, 4th Dept229 AD3d 13752024 NYSlipOp 04032Opinion
    People v Anderson07/26/2024App Div, 4th Dept229 AD3d 13842024 NYSlipOp 04042Opinion
    People v Ashton07/26/2024App Div, 4th Dept229 AD3d 13222024 NYSlipOp 04004Opinion
    People v Ashton07/26/2024App Div, 4th Dept229 AD3d 13242024 NYSlipOp 04005Opinion
    People v Baker07/26/2024App Div, 4th Dept229 AD3d 13242024 NYSlipOp 04006Opinion
    People v Barber07/26/2024App Div, 4th Dept229 AD3d 12952024 NYSlipOp 03994Opinion
    People v Bean07/26/2024App Div, 4th Dept229 AD3d 12312024 NYSlipOp 03960Opinion
    People v Bell07/26/2024App Div, 4th Dept229 AD3d 11782024 NYSlipOp 03935Opinion
    People v Brown07/26/2024App Div, 4th Dept229 AD3d 12262024 NYSlipOp 03954Opinion
    People v Callara07/26/2024App Div, 4th Dept229 AD3d 12472024 NYSlipOp 03969Opinion
    People v Campbell07/26/2024App Div, 4th Dept229 AD3d 12962024 NYSlipOp 03995Opinion
    People v Campbell07/26/2024App Div, 4th Dept229 AD3d 13722024 NYSlipOp 04028Opinion
    People v Cerone07/26/2024App Div, 4th Dept229 AD3d 13752024 NYSlipOp 04031Opinion
    People v Colella07/26/2024App Div, 4th Dept229 AD3d 13442024 NYSlipOp 04012Opinion
    People v Converso07/26/2024App Div, 4th Dept229 AD3d 13762024 NYSlipOp 04033Opinion
    People v Cromwell07/26/2024App Div, 4th Dept229 AD3d 11762024 NYSlipOp 03934Opinion
    People v Dunn07/26/2024App Div, 4th Dept229 AD3d 12202024 NYSlipOp 03951Opinion
    People v Dunn07/26/2024App Div, 4th Dept229 AD3d 12272024 NYSlipOp 03955Opinion
    People v Dunn07/26/2024App Div, 4th Dept229 AD3d 12272024 NYSlipOp 03956Opinion
    People v Edmonds07/26/2024App Div, 4th Dept229 AD3d 12752024 NYSlipOp 03985Opinion
    People v Evans07/26/2024App Div, 4th Dept229 AD3d 13802024 NYSlipOp 04037Opinion
    People v Everson07/26/2024App Div, 4th Dept229 AD3d 13492024 NYSlipOp 04013Opinion
    People v Favors07/26/2024App Div, 4th Dept229 AD3d 13712024 NYSlipOp 04026Opinion
    People v Favors07/26/2024App Div, 4th Dept229 AD3d 13712024 NYSlipOp 04027Opinion
    People v Felder07/26/2024App Div, 4th Dept229 AD3d 12782024 NYSlipOp 03986Opinion
    People v Foumakoye07/26/2024App Div, 4th Dept229 AD3d 13802024 NYSlipOp 04038Opinion
    People v Gamble07/26/2024App Div, 4th Dept229 AD3d 12902024 NYSlipOp 03992Opinion
    People v Gamble07/26/2024App Div, 4th Dept229 AD3d 12942024 NYSlipOp 03993Opinion
    People v Goines07/26/2024App Div, 4th Dept229 AD3d 12482024 NYSlipOp 03970Opinion
    People v Hancock07/26/2024App Div, 4th Dept229 AD3d 12292024 NYSlipOp 03959Opinion
    People v Harris07/26/2024App Div, 4th Dept229 AD3d 12262024 NYSlipOp 03953Opinion
    People v Herrera-Cruz07/26/2024App Div, 4th Dept229 AD3d 13692024 NYSlipOp 04024Opinion
    People v Hinson07/26/2024App Div, 4th Dept229 AD3d 11912024 NYSlipOp 03939Opinion
    People v Hudson07/26/2024App Div, 4th Dept229 AD3d 13542024 NYSlipOp 04014Opinion
    People v Hudson07/26/2024App Div, 4th Dept229 AD3d 13552024 NYSlipOp 04015Opinion
    People v Jackson07/26/2024App Div, 4th Dept229 AD3d 12282024 NYSlipOp 03957Opinion
    People v Johnson07/26/2024App Div, 4th Dept229 AD3d 13002024 NYSlipOp 03997Opinion
    People v Junot07/26/2024App Div, 4th Dept229 AD3d 13702024 NYSlipOp 04025Opinion
    People v King07/26/2024App Div, 4th Dept229 AD3d 11702024 NYSlipOp 03931Opinion
    People v King07/26/2024App Div, 4th Dept229 AD3d 11732024 NYSlipOp 03932Opinion
    People v Lacey07/26/2024App Div, 4th Dept229 AD3d 12702024 NYSlipOp 03980Opinion
    People v Moore07/26/2024App Div, 4th Dept229 AD3d 11932024 NYSlipOp 03941Opinion
    People v Moore07/26/2024App Div, 4th Dept229 AD3d 12792024 NYSlipOp 03987Opinion
    People v Motell07/26/2024App Div, 4th Dept229 AD3d 13302024 NYSlipOp 04007Opinion
    People v Mulligan07/26/2024App Div, 4th Dept229 AD3d 12472024 NYSlipOp 03968Opinion
    People v Ney07/26/2024App Div, 4th Dept229 AD3d 12512024 NYSlipOp 03972Opinion
    People v O'Connor07/26/2024App Div, 4th Dept229 AD3d 13802024 NYSlipOp 04039Opinion
    People v Pearsall07/26/2024App Div, 4th Dept229 AD3d 13772024 NYSlipOp 04035Opinion
    People v Penfold07/26/2024App Div, 4th Dept229 AD3d 12992024 NYSlipOp 03996Opinion
    People v Perez07/26/2024App Div, 4th Dept229 AD3d 12732024 NYSlipOp 03981Opinion
    People v Perkins07/26/2024App Div, 4th Dept229 AD3d 12232024 NYSlipOp 03952Opinion
    People v Pope07/26/2024App Div, 4th Dept229 AD3d 13792024 NYSlipOp 04036Opinion
    People v Pringle07/26/2024App Div, 4th Dept229 AD3d 12342024 NYSlipOp 03961Opinion
    People v Putnam07/26/2024App Div, 4th Dept229 AD3d 12742024 NYSlipOp 03982Opinion
    People v Putnam07/26/2024App Div, 4th Dept229 AD3d 12742024 NYSlipOp 03983Opinion
    People v Robinson07/26/2024App Div, 4th Dept229 AD3d 13692024 NYSlipOp 04023Opinion
    People v Ross07/26/2024App Div, 4th Dept229 AD3d 13722024 NYSlipOp 04029Opinion
    People v Sanger07/26/2024App Div, 4th Dept229 AD3d 12752024 NYSlipOp 03984Opinion
    People v Santiago07/26/2024App Div, 4th Dept229 AD3d 13832024 NYSlipOp 04041Opinion
    People v Shammah07/26/2024App Div, 4th Dept229 AD3d 12502024 NYSlipOp 03971Opinion
    People v Shaw07/26/2024App Div, 4th Dept229 AD3d 11802024 NYSlipOp 03936Opinion
    People v Smith07/26/2024App Div, 4th Dept229 AD3d 12532024 NYSlipOp 03973Opinion
    People v Toran07/26/2024App Div, 4th Dept229 AD3d 12282024 NYSlipOp 03958Opinion
    People v Wendy B.-S.07/26/2024App Div, 4th Dept229 AD3d 13172024 NYSlipOp 04003Opinion
    People v Wernle07/26/2024App Div, 4th Dept229 AD3d 12812024 NYSlipOp 03988Opinion
    Potempa v Potempa07/26/2024App Div, 4th Dept229 AD3d 11912024 NYSlipOp 03940Opinion
    Resetarits Constr. Corp. v Norfolk S. Ry. Co.07/26/2024App Div, 4th Dept229 AD3d 13622024 NYSlipOp 04019Opinion
    Resetarits Constr. Corp. v Norfolk S. Ry. Co.07/26/2024App Div, 4th Dept229 AD3d 13642024 NYSlipOp 04020Opinion
    Revere v Burke07/26/2024App Div, 4th Dept229 AD3d 12122024 NYSlipOp 03948Opinion
    Ross v Northeast Diversification, Inc.07/26/2024App Div, 4th Dept229 AD3d 12822024 NYSlipOp 03989Opinion
    Rouse v City of Syracuse Dept. of Pub. Works07/26/2024App Div, 4th Dept229 AD3d 11892024 NYSlipOp 03938Opinion
    Storm v Kaleida Health07/26/2024App Div, 4th Dept229 AD3d 12392024 NYSlipOp 03964Opinion
    Thomas v Eckhert07/26/2024App Div, 4th Dept229 AD3d 12372024 NYSlipOp 03963Opinion
    Visiko v Fleming07/26/2024App Div, 4th Dept229 AD3d 13552024 NYSlipOp 04016Opinion
    Williams v City of Buffalo07/26/2024App Div, 4th Dept229 AD3d 12672024 NYSlipOp 03978Opinion
    - -
     
     
     
    +
    +
    + diff --git a/tests/examples/opinions/united_states/nyappterm_1st_example.compare.json b/tests/examples/opinions/united_states/nyappterm_1st_example.compare.json index 60515dc4b..cea52493f 100644 --- a/tests/examples/opinions/united_states/nyappterm_1st_example.compare.json +++ b/tests/examples/opinions/united_states/nyappterm_1st_example.compare.json @@ -9,7 +9,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50067(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -21,7 +23,9 @@ "docket_numbers": "", "citations": "7 Misc 3d 29", "parallel_citations": "2005 NYSlipOp 25023", - "case_name_shorts": "Perez" + "case_name_shorts": "Perez", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -33,7 +37,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2005 NYSlipOp Slip", - "case_name_shorts": "Perez" + "case_name_shorts": "Perez", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-14", @@ -45,7 +51,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 128(A)", "parallel_citations": "2005 NYSlipOp 50021(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-14", @@ -57,7 +65,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 128(A)", "parallel_citations": "2005 NYSlipOp 50020(U)", - "case_name_shorts": "Cavallo" + "case_name_shorts": "Cavallo", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-14", @@ -69,7 +79,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 128(A)", "parallel_citations": "2005 NYSlipOp 50019(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-12", @@ -81,7 +93,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 128(A)", "parallel_citations": "2005 NYSlipOp 50017(U)", - "case_name_shorts": "Tucker" + "case_name_shorts": "Tucker", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-12", @@ -93,7 +107,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 128(A)", "parallel_citations": "2005 NYSlipOp 50016(U)", - "case_name_shorts": "Rivera" + "case_name_shorts": "Rivera", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-12", @@ -105,7 +121,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 128(A)", "parallel_citations": "2005 NYSlipOp 50015(U)", - "case_name_shorts": "Lau" + "case_name_shorts": "Lau", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-12", @@ -117,7 +135,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 128(A)", "parallel_citations": "2005 NYSlipOp 50014(U)", - "case_name_shorts": "Myers" + "case_name_shorts": "Myers", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-07", @@ -129,7 +149,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 128(A)", "parallel_citations": "2005 NYSlipOp 50007(U)", - "case_name_shorts": "Stevens" + "case_name_shorts": "Stevens", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-07", @@ -141,7 +163,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 127(A)", "parallel_citations": "2005 NYSlipOp 50005(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-07", @@ -153,7 +177,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 128(A)", "parallel_citations": "2005 NYSlipOp 50006(U)", - "case_name_shorts": "Moore" + "case_name_shorts": "Moore", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-07", @@ -165,7 +191,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 127(A)", "parallel_citations": "2005 NYSlipOp 50004(U)", - "case_name_shorts": "Hernandez" + "case_name_shorts": "Hernandez", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-06", @@ -177,7 +205,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 128(A)", "parallel_citations": "2005 NYSlipOp 50002(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-06", @@ -189,7 +219,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 128(A)", "parallel_citations": "2005 NYSlipOp 50000(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-06", @@ -201,7 +233,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 78", "parallel_citations": "2005 NYSlipOp 25001", - "case_name_shorts": "Melnitzky" + "case_name_shorts": "Melnitzky", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-06", @@ -213,7 +247,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 66", "parallel_citations": "2005 NYSlipOp 25000", - "case_name_shorts": "Gazivoda" + "case_name_shorts": "Gazivoda", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-06", @@ -225,6 +261,8 @@ "docket_numbers": "", "citations": "6 Misc 3d 128(A)", "parallel_citations": "2005 NYSlipOp 50001(U)", - "case_name_shorts": "Bickham" + "case_name_shorts": "Bickham", + "authors": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyappterm_2nd_example.compare.json b/tests/examples/opinions/united_states/nyappterm_2nd_example.compare.json index 8e859e8c0..61df21227 100644 --- a/tests/examples/opinions/united_states/nyappterm_2nd_example.compare.json +++ b/tests/examples/opinions/united_states/nyappterm_2nd_example.compare.json @@ -9,7 +9,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 131(A)", "parallel_citations": "2005 NYSlipOp 50087(U)", - "case_name_shorts": "Tischler" + "case_name_shorts": "Tischler", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-02-01", @@ -21,7 +23,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 131(A)", "parallel_citations": "2005 NYSlipOp 50086(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-02-01", @@ -33,7 +37,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 131(A)", "parallel_citations": "2005 NYSlipOp 50088(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -45,7 +51,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 131(A)", "parallel_citations": "2005 NYSlipOp 50080(U)", - "case_name_shorts": "Woodson" + "case_name_shorts": "Woodson", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -57,7 +65,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 131(A)", "parallel_citations": "2005 NYSlipOp 50085(U)", - "case_name_shorts": "Urena" + "case_name_shorts": "Urena", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -69,7 +79,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50077(U)", - "case_name_shorts": "Ravens" + "case_name_shorts": "Ravens", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -81,7 +93,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 131(A)", "parallel_citations": "2005 NYSlipOp 50078(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -93,7 +107,9 @@ "docket_numbers": "", "citations": "7 Misc 3d 32", "parallel_citations": "2005 NYSlipOp 25034", - "case_name_shorts": "Osborne" + "case_name_shorts": "Osborne", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -105,7 +121,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 131(A)", "parallel_citations": "2005 NYSlipOp 50081(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -117,7 +135,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50074(U)", - "case_name_shorts": "Mennella" + "case_name_shorts": "Mennella", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -129,7 +149,9 @@ "docket_numbers": "", "citations": "7 Misc 3d 40", "parallel_citations": "2005 NYSlipOp 25033", - "case_name_shorts": "Jacome" + "case_name_shorts": "Jacome", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -141,7 +163,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 131(A)", "parallel_citations": "2005 NYSlipOp 50082(U)", - "case_name_shorts": "Colorito" + "case_name_shorts": "Colorito", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -153,7 +177,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 131(A)", "parallel_citations": "2005 NYSlipOp 50079(U)", - "case_name_shorts": "Browne" + "case_name_shorts": "Browne", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -165,7 +191,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 131(A)", "parallel_citations": "2005 NYSlipOp 50084(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -177,7 +205,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 131(A)", "parallel_citations": "2005 NYSlipOp 50083(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -189,7 +219,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50075(U)", - "case_name_shorts": "Banjoku" + "case_name_shorts": "Banjoku", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-27", @@ -201,7 +233,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50076(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -213,7 +247,9 @@ "docket_numbers": "", "citations": "7 Misc 3d 8", "parallel_citations": "2005 NYSlipOp 25031", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -225,7 +261,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 129(A)", "parallel_citations": "2005 NYSlipOp 50059(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -237,7 +275,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50065(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -249,7 +289,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 129(A)", "parallel_citations": "2005 NYSlipOp 50060(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -261,7 +303,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50066(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -273,7 +317,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 129(A)", "parallel_citations": "2005 NYSlipOp 50058(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -285,7 +331,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 129(A)", "parallel_citations": "2005 NYSlipOp 50057(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -297,7 +345,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 129(A)", "parallel_citations": "2005 NYSlipOp 50063(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -309,7 +359,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 129(A)", "parallel_citations": "2005 NYSlipOp 50061(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -321,7 +373,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 129(A)", "parallel_citations": "2005 NYSlipOp 50062(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -333,7 +387,9 @@ "docket_numbers": "", "citations": "7 Misc 3d 35", "parallel_citations": "2005 NYSlipOp 25030", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-26", @@ -345,7 +401,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50064(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-20", @@ -357,7 +415,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50070(U)", - "case_name_shorts": "Stewart" + "case_name_shorts": "Stewart", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-20", @@ -369,7 +429,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50072(U)", - "case_name_shorts": "Vilmont" + "case_name_shorts": "Vilmont", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-20", @@ -381,7 +443,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50069(U)", - "case_name_shorts": "Gonzalez" + "case_name_shorts": "Gonzalez", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-20", @@ -393,7 +457,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50068(U)", - "case_name_shorts": "Gobaira" + "case_name_shorts": "Gobaira", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-20", @@ -405,7 +471,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50071(U)", - "case_name_shorts": "Carr" + "case_name_shorts": "Carr", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-20", @@ -417,7 +485,9 @@ "docket_numbers": "", "citations": "6 Misc 3d 130(A)", "parallel_citations": "2005 NYSlipOp 50073(U)", - "case_name_shorts": "Bloom" + "case_name_shorts": "Bloom", + "authors": "", + "per_curiam": false }, { "case_dates": "2005-01-20", @@ -429,6 +499,8 @@ "docket_numbers": "", "citations": "7 Misc 3d 14", "parallel_citations": "2005 NYSlipOp 25032", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyappterm_2nd_example_2.compare.json b/tests/examples/opinions/united_states/nyappterm_2nd_example_2.compare.json index 5a3dcbd4f..afe2812d0 100644 --- a/tests/examples/opinions/united_states/nyappterm_2nd_example_2.compare.json +++ b/tests/examples/opinions/united_states/nyappterm_2nd_example_2.compare.json @@ -9,7 +9,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51120(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-09-01", @@ -21,7 +23,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51122(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-09-01", @@ -33,7 +37,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51119(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-09-01", @@ -45,7 +51,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51118(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-09-01", @@ -57,7 +65,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51121(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-31", @@ -69,7 +79,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51117(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-31", @@ -81,7 +93,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85681(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-31", @@ -93,7 +107,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85682(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-30", @@ -105,7 +121,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85382(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-30", @@ -117,7 +135,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85388(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-30", @@ -129,7 +149,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85386(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-30", @@ -141,7 +163,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85384(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-30", @@ -153,7 +177,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85383(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-30", @@ -165,7 +191,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85387(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-30", @@ -177,7 +205,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85385(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-29", @@ -189,7 +219,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85381(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-29", @@ -201,11 +233,13 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85378(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-29", - "case_names": "15 Crown St. Realty, LLC v. Sonia Walker, Tenant Lilema Hamlet, Nonparty.", + "case_names": "15 Crown St. Realty, LLC v. Sonia Walker, Tenant; Lilema Hamlet, Nonparty.", "download_urls": "http://www.nycourts.gov/reporter/motions/2017/2017_85379.htm", "precedential_statuses": "Unpublished", "blocked_statuses": false, @@ -213,7 +247,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85379(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-29", @@ -225,7 +261,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85380(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-28", @@ -237,7 +275,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85377(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-25", @@ -249,7 +289,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51101(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-25", @@ -261,7 +303,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51100(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-25", @@ -273,7 +317,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51099(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-25", @@ -285,7 +331,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51098(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-25", @@ -297,7 +345,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 27284", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-25", @@ -309,7 +359,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51103(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-25", @@ -321,7 +373,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51102(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-25", @@ -333,7 +387,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51104(U)", - "case_name_shorts": "Charles" + "case_name_shorts": "Charles", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-25", @@ -345,7 +401,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85095(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-24", @@ -357,7 +415,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 27282", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-24", @@ -369,7 +429,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51094(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-24", @@ -381,7 +443,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51096(U)", - "case_name_shorts": "M.D." + "case_name_shorts": "M.D.", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-24", @@ -393,7 +457,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 27283", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-24", @@ -405,7 +471,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51097(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-24", @@ -417,7 +485,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51095(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-24", @@ -429,7 +499,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85091(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-24", @@ -441,7 +513,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85092(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-24", @@ -453,7 +527,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85094(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-24", @@ -465,7 +541,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85090(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-24", @@ -477,7 +555,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85093(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-22", @@ -489,7 +569,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85025(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-22", @@ -501,7 +583,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85018(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-22", @@ -513,7 +597,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85021(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-22", @@ -525,7 +611,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85023(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-22", @@ -537,7 +625,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85016(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-22", @@ -549,7 +639,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85020(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-22", @@ -561,7 +653,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85014(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-22", @@ -573,7 +667,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85024(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-22", @@ -585,7 +681,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85017(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-22", @@ -597,7 +695,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85022(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-22", @@ -609,7 +709,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85019(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-22", @@ -621,7 +723,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85015(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -633,7 +737,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85013(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -645,7 +751,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85001(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -657,7 +765,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51093(U)", - "case_name_shorts": "Thomas" + "case_name_shorts": "Thomas", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -669,7 +779,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51087(U)", - "case_name_shorts": "Vaizburd" + "case_name_shorts": "Vaizburd", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -681,7 +793,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85008(U)", - "case_name_shorts": "Mvaic" + "case_name_shorts": "Mvaic", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -693,7 +807,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85009(U)", - "case_name_shorts": "Mvaic" + "case_name_shorts": "Mvaic", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -705,7 +821,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85002(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -717,7 +835,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85000(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -729,7 +849,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85003(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -741,7 +863,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85004(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -753,7 +877,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51092(U)", - "case_name_shorts": "Nachande" + "case_name_shorts": "Nachande", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -765,7 +891,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51088(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -777,7 +905,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85011(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -789,7 +919,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51089(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -801,7 +933,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51090(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -813,7 +947,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85005(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -825,7 +961,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85007(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -837,7 +975,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51084(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -849,7 +989,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51083(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -861,7 +1003,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85006(U)", - "case_name_shorts": "Mvaic" + "case_name_shorts": "Mvaic", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -873,7 +1017,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51086(U)", - "case_name_shorts": "Lyttle" + "case_name_shorts": "Lyttle", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -885,7 +1031,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85010(U)", - "case_name_shorts": "Mvaic" + "case_name_shorts": "Mvaic", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -897,7 +1045,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51091(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -909,7 +1059,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 85012(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-18", @@ -921,7 +1073,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51085(U)", - "case_name_shorts": "Woldmarian" + "case_name_shorts": "Woldmarian", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-17", @@ -933,7 +1087,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 27279", - "case_name_shorts": "Robson" + "case_name_shorts": "Robson", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-17", @@ -945,7 +1101,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84994(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-17", @@ -957,7 +1115,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84998(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-17", @@ -969,7 +1129,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84997(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-17", @@ -981,7 +1143,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51075(U)", - "case_name_shorts": "Maltz" + "case_name_shorts": "Maltz", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-17", @@ -993,7 +1157,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84999(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-17", @@ -1005,7 +1171,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51080(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-17", @@ -1017,7 +1185,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51079(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-17", @@ -1029,7 +1199,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51078(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-17", @@ -1041,7 +1213,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51077(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-17", @@ -1053,7 +1227,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 51076(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-17", @@ -1065,7 +1241,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84996(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-17", @@ -1077,7 +1255,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84995(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1089,7 +1269,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84989(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1101,7 +1283,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84973(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1113,7 +1297,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84977(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1125,7 +1311,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84972(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1137,7 +1325,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84975(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1149,7 +1339,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84974(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1161,7 +1353,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84987(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1173,7 +1367,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84992(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1185,7 +1381,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84993(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1197,7 +1395,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84970(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1209,7 +1409,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84988(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1221,7 +1423,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84990(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1233,7 +1437,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84982(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1245,7 +1451,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84969(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1257,7 +1465,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84971(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1269,7 +1479,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84978(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1281,7 +1493,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84991(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1293,7 +1507,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84981(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1305,7 +1521,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84984(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1317,7 +1535,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84983(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1329,7 +1549,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84986(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1341,7 +1563,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84980(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1353,7 +1577,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84979(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1365,7 +1591,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84976(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-16", @@ -1377,7 +1605,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84985(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-14", @@ -1389,7 +1619,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84960(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-14", @@ -1401,7 +1633,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84961(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-14", @@ -1413,7 +1647,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84962(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-14", @@ -1425,7 +1661,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84964(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-14", @@ -1437,7 +1675,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84963(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-14", @@ -1449,7 +1689,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84959(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-14", @@ -1461,7 +1703,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84967(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-14", @@ -1473,7 +1717,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84966(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-14", @@ -1485,7 +1731,9 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84968(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false }, { "case_dates": "2017-08-14", @@ -1497,6 +1745,8 @@ "docket_numbers": "", "citations": "", "parallel_citations": "2017 NYSlipOp 84965(U)", - "case_name_shorts": "" + "case_name_shorts": "", + "authors": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nycityct_example.compare.json b/tests/examples/opinions/united_states/nycityct_example.compare.json new file mode 100644 index 000000000..b0087f070 --- /dev/null +++ b/tests/examples/opinions/united_states/nycityct_example.compare.json @@ -0,0 +1,50 @@ +[ + { + "case_dates": "2023-12-11", + "case_names": "Morel v. Aviles", + "download_urls": "https://nycourts.gov/reporter/3dseries/2023/2023_51355.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51355(U)", + "case_name_shorts": "Morel", + "child_courts": "City Ct Middletown, Orange County" + }, + { + "case_dates": "2023-12-08", + "case_names": "Cooley v. Vanslyke", + "download_urls": "https://nycourts.gov/reporter/3dseries/2023/2023_23382.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 23382", + "case_name_shorts": "Cooley", + "child_courts": "City Ct Little Falls, Herkimer County" + }, + { + "case_dates": "2023-12-07", + "case_names": "Hughes v. Qingling Zhao", + "download_urls": "https://nycourts.gov/reporter/3dseries/2023/2023_23383.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 23383", + "case_name_shorts": "Hughes", + "child_courts": "City Ct Long Beach, Nassau County" + }, + { + "case_dates": "2023-12-01", + "case_names": "Potentia Mgt. Group, LLC v. D.W.", + "download_urls": "https://nycourts.gov/reporter/3dseries/2023/2023_23374.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 23374", + "case_name_shorts": "D.W.", + "child_courts": "Utica City Ct" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nycityct_example.html b/tests/examples/opinions/united_states/nycityct_example.html new file mode 100644 index 000000000..d01e00f01 --- /dev/null +++ b/tests/examples/opinions/united_states/nycityct_example.html @@ -0,0 +1,4888 @@ + + + + + + + Other Court Decisions + + + + + + + + + + + +
    + + + + + + +
      December, 2023  
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 29, 2023
    Title + Court + Date + Slip Op No. +
    Stefanik v HochulSup Ct, Albany County12/26/20232023 NY Slip Op 34517(U)
    Lanza v Whole Foods Mkt. Group, + Inc.Sup Ct, NY County12/18/20232023 NY Slip Op 34518(U)
    Porter v Cliffside Nursing Home, + Inc.Sup Ct, Kings County12/5/20232023 NY Slip Op 34520(U)
    Antebi v GuindiSup Ct, Kings County12/21/20232023 NY Slip Op 34521(U)
    Antara Capital Master Fund LP v + Bombardier Inc.Sup Ct, NY County12/22/20232023 NY Slip Op 34524(U)
    SH575 Holdings LLC v Richmond + Stuyvesant Holdings, LLCSup Ct, NY County12/22/20232023 NY Slip Op 34525(U)
    Oasis Med. & Surgical + Wellness v + New Jersey Mfrs. Ins. Co.Sup Ct, NY County12/21/20232023 NY Slip Op 34526(U)
    Matter of Infinity Q Diversified + Alpha + Fund Sec. Litig. v XXXSup Ct, NY County12/21/20232023 NY Slip Op 34527(U)
    Country-Wide Ins. Co. v Geico + Gen. + Ins. Co.Sup Ct, NY County12/20/20232023 NY Slip Op 34528(U)
    Tremor Video, Inc. v Alphonso, + Inc.Sup Ct, NY County12/22/20232023 NY Slip Op 34529(U)
    Matter of AKF Inc. v Jin + Clothing, + Inc.Sup Ct, NY County12/21/20232023 NY Slip Op 34530(U)
    Forum Gallery Inc. v Spirits Fin. + Corp.Sup Ct, NY County12/23/20232023 NY Slip Op 34531(U)
    AC Penguin Prestige Corp. v Two + Thousand Fifteen Artisanal LLCSup Ct, NY County12/19/20232023 NY Slip Op 34532(U)
    Samsung Elecs. Co., Ltd. v MPEG + LA, L.L.C.Sup Ct, NY County12/21/20232023 NY Slip Op 34533(U)
    Manhattan Concrete LLC v Prime + Prop. & Cas. Ins. Inc.Sup Ct, NY County12/21/20232023 NY Slip Op 34534(U)
    O'Connor v Society Pass + Inc.Sup Ct, NY County12/23/20232023 NY Slip Op 34535(U)
    Martinez v Fromer Eye Ctrs. + Sup Ct, NY County12/21/20232023 NY Slip Op 34536(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 28, 2023
    TitleCourtDateSlip Op No.
    Federal Natl. Mtge. Assn. + ("Fannie Mae") v KerendianSup Ct, Nassau County10/13/20232023 NY Slip Op 34490(U)
    Parisien v MVAICCiv Ct City NY, Kings County12/8/20232023 NY Slip Op 34491(U)
    Turner v DelacruzSup Ct, Bronx County4/26/20212021 NY Slip Op 34048(U)
    Thompson v + 735 Equities LLCSup Ct, Bronx County3/24/20222022 NY Slip Op 34666(U)
    Almenares v V VA Serv. Corp. + Sup Ct, Bronx County9/21/20212021 NY Slip Op 34049(U)
    Saleh v RiveraSup Ct, Bronx County1/31/20202020 NY Slip Op 35548(U)
    Alexander v GuzmanSup Ct, Bronx County1/25/20222022 NY Slip Op 34667(U)
    Fagbemi-Mohamed v Rodriguez + Sup Ct, Bronx County6/30/20222022 NY Slip Op 34668(U)
    Salcedo v 906 Holding LLC + Sup Ct, Bronx County12/3/20192019 NY Slip Op 35072(U)
    Santos v Holy Temple Church of + the Lord Jesus ChristSup Ct, Bronx County9/15/20202020 NY Slip Op 35549(U)
    Herbst v Hospice of N.Y., LLC + Sup Ct, Bronx County1/6/20202020 NY Slip Op 35550(U)
    Duran v Venture Leasing LLC. + Sup Ct, Bronx County7/29/20212021 NY Slip Op 34050(U)
    Acevedo v Ji Hee YouSup Ct, Bronx County5/15/20202020 NY Slip Op 35551(U)
    Diaz v H&Z Bldg. Consulting + Group, LLCSup Ct, Bronx County1/29/20202020 NY Slip Op 35552(U)
    Martinez v SantosSup Ct, Bronx County6/30/20202020 NY Slip Op 35553(U)
    Sabater v NoumbiSup Ct, Bronx County3/16/20202020 NY Slip Op 35554(U)
    Neder v AndrewsSup Ct, Bronx County11/24/20202020 NY Slip Op 35555(U)
    Dotel v Mount Hope Preserv. Apts. + 1A Hous. Dev. Fund Co., Inc.Sup Ct, Bronx County11/30/20232023 NY Slip Op 34492(U)
    Jimenez-Couret v LinzoSup Ct, Bronx County1/27/20222022 NY Slip Op 34669(U)
    Stephenson v ArdoviniSup Ct, Bronx County11/7/20192019 NY Slip Op 35073(U)
    Wallis v HarrisonSup Ct, Bronx County11/1/20192019 NY Slip Op 35074(U)
    Gomez v MalekSup Ct, Bronx County5/21/20202020 NY Slip Op 35556(U)
    "John Doe I" v Iona Preparatory + Sch.Sup Ct, Bronx County7/1/20202020 NY Slip Op 35557(U)
    Stagnari v BunnSup Ct, Onondaga County12/30/20212021 NY Slip Op 34051(U)
    Requena v New York City Dept. of + Educ.Sup Ct, NY County12/21/20232023 NY Slip Op 34493(U)
    O'Keeffe's Inc. v 400 Times Sq. + Assoc., LLC,Sup Ct, NY County12/23/20232023 NY Slip Op 34494(U)
    Photenas v New York City Tr. + Auth.Sup Ct, NY County12/19/20232023 NY Slip Op 34495(U)
    Carlisle v One Hudson Yards + Owner, LLCSup Ct, NY County12/22/20232023 NY Slip Op 34496(U)
    State Farm Mut. Auto. Ins. Co. v + DestineSup Ct, NY County12/20/20232023 NY Slip Op 34497(U)
    BLDG Mgt. Co., Inc. v Kreloff + Sup Ct, NY County12/20/20232023 NY Slip Op 34498(U)
    Caramante v New York City Hous. + Auth.Sup Ct, NY County12/21/20232023 NY Slip Op 34499(U)
    Matter of Law Offs. of Michael S. + Lamonsoff, PLLC v Gorayeb & Assoc., P.C.Sup Ct, NY County12/21/20232023 NY Slip Op 34500(U)
    Fernandez v LeoSup Ct, NY County12/20/20232023 NY Slip Op 34501(U)
    Surveillance Tech. Oversight + Project v Metropolitan Transp. Auth.Sup Ct, NY County12/21/20232023 NY Slip Op 34502(U)
    Glenmede Trust Co., N.A. v + Infinity Q Capital Mgt. LLCSup Ct, NY County12/21/20232023 NY Slip Op 34503(U)
    Matter of New York City Tr. Auth. + v Charter Oak Fire Ins. Co.Sup Ct, NY County12/22/20232023 NY Slip Op 34504(U)
    Motor Vehicle Acc. Indem. Corp. v + Hereford Ins. Co.Sup Ct, NY County12/21/20232023 NY Slip Op 34505(U)
    City of New York v Peters + Sup Ct, NY County12/21/20232023 NY Slip Op 34506(U)
    Newson v Vivaldi Real Estate + Ltd.Sup Ct, NY County12/21/20232023 NY Slip Op 34507(U)
    Henry v 34th St. Dental + Assoc.Sup Ct, Kings County12/15/20232023 NY Slip Op 34508(U)
    Crespi v PHD GBWSup Ct, Kings County12/21/20232023 NY Slip Op 34509(U)
    Papadimitriou v PappasSup Ct, Kings County12/19/20232023 NY Slip Op 34510(U)
    Kuris v Wiz Kids Ctr. Inc. + Sup Ct, Kings County12/7/20232023 NY Slip Op 34511(U)
    Vasquez v Lorimer St Holdings + LLC.Sup Ct, Kings County12/15/20232023 NY Slip Op 34512(U)
    Itzkowitz v GinsburgSup Ct, Kings County12/4/20232023 NY Slip Op 34513(U)
    Cisco v Verizon N.Y. Inc. + Sup Ct, Kings County12/20/20232023 NY Slip Op 34514(U)
    Donato v 455 Broadway Realty + LLCSup Ct, Kings County12/18/20232023 NY Slip Op 34515(U)
    Romero v 201 W. 79 St. Realty + Corp.Sup Ct, Kings County12/20/20232023 NY Slip Op 34516(U)


    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 27, 2023
    Title + Court + Date + Slip Op No. +
    Clarke v ToureSup Ct, Kings County12/24/20232023 NY Slip Op 23410
    People v Ramirez-Luna + Crim Ct City NY, Queens County5/5/20232023 NY Slip Op 51433(U)
    Cambridge Leasing Prop. LLC v + CachimboCiv Ct City NY, Queens County12/26/20232023 NY Slip Op 51434(U)
    BAA Capital Ventures, LLC v + ToscaniSup Ct, Saratoga County12/22/20232023 NY Slip Op 34467(U)
    Grooney v New York City Tr. + Auth.Sup Ct, NY County12/19/20232023 NY Slip Op 34468(U)
    Stopford v HewittSup Ct, NY County12/20/20232023 NY Slip Op 34469(U)
    Chadrjian v 1278-1284 First Ave. + Realty LLCSup Ct, NY County12/20/20232023 NY Slip Op 34470(U)
    Thompson v City of New York + Sup Ct, NY County12/19/20232023 NY Slip Op 34471(U)
    Matter of 225 Cent. Park N. LLC v + New York State Div. of Hous. & Community RenewalSup Ct, NY County12/20/20232023 NY Slip Op 34472(U)
    Nunez v Nalco Co.Sup Ct, NY County12/20/20232023 NY Slip Op 34473(U)
    Your Vet 1, LLC v Eastman, Cooke + & Assoc., LLCSup Ct, NY County12/19/20232023 NY Slip Op 34474(U)
    Riverton Sq., LLC v New York + State Div. of Hous. & Community RenewalSup Ct, NY County12/20/20232023 NY Slip Op 34475(U)
    Credit Acceptance Corp. v + TraylorSup Ct, Monroe County12/19/20232023 NY Slip Op 34476(U)
    Tasinari v DeMatteoSup Ct, NY County12/20/20232023 NY Slip Op 34477(U)
    Wells Fargo Bank, N.A. v + CardielloSup Ct, Kings County11/7/20232023 NY Slip Op 34478(U)
    Mendoza v 204 Forsyth St., + LLCSup Ct, Kings County12/19/20232023 NY Slip Op 34479(U)
    Elizon DB Transfer Agent LLC v + 1711 E. 15 St. LLCSup Ct, Kings County12/20/20232023 NY Slip Op 34480(U)
    Gordon v PeckSup Ct, NY County12/20/20232023 NY Slip Op 34481(U)
    FPG Cobble Hill Acquisitions, LLC + v Palm Cove Mgt. LLCSup Ct, NY County12/20/20232023 NY Slip Op 34482(U)
    Kapitus Servicing Inc. v Zumma + Mgt. Group, LLCSup Ct, NY County12/20/20232023 NY Slip Op 34483(U)
    ESRT One Grand Cent. Place, + L.L.C. v Peoples Foreign Exch., Corp.Sup Ct, NY County12/20/20232023 NY Slip Op 34484(U)
    Mahland v Noor Staffing Group, + LLCSup Ct, NY County12/20/20232023 NY Slip Op 34485(U)
    Azmy v WatkinsSup Ct, NY County12/20/20232023 NY Slip Op 34486(U)
    Martinez v New York City Health + & Hosps. Corp.Sup Ct, NY County12/20/20232023 NY Slip Op 34487(U)
    Soto v City of New YorkSup Ct, NY County12/11/20232023 NY Slip Op 34489(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 26, 2023
    Title + Court + Date + Slip Op No. +
    Stromberg v East Riv. Hous. + Corp.Sup Ct, NY County12/26/20232023 NY Slip Op 23409
    B&S Duo Realty LLC v + GazaliCiv Ct City NY, Queens County12/21/20232023 NY Slip Op 51423(U)
    Sylvester v JonesSup Ct, Kings County10/13/20232023 NY Slip Op 51424(U)
    U.S. Specialty Ins. Co. v + State Natl. Ins. Co., Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 51425(U)
    Brooke v StreitSup Ct, NY County12/14/20232023 NY Slip Op 51426(U)
    Kapitus + Servicing, Inc. v Zumma Mgt. Group, LLCSup Ct, NY County12/20/20232023 NY Slip Op 51427(U)
    American Express Natl. Bank v + EllisSup Ct, NY County12/23/20232023 NY Slip Op 51428(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 22, 2023
    Title + Court + Date + Slip Op No. +
    Mrijaj v Genting N.Y. + LLC.Sup Ct, Bronx County12/14/20232023 NY Slip Op 23407
    Nellis v Cadman Assoc. + LLCSup Ct, Kings County11/16/20232023 NY Slip Op 23408
    Matter of Federico + (Aloisi)Sur Ct, Putnam County10/20/20232023 NY Slip Op 51418(U)
    People v CareySup Ct, Nassau County12/11/20232023 NY Slip Op 51419(U)
    Torres v New York City + Employees' Retirement Sys.Sup Ct, Kings County12/4/20232023 NY Slip Op 51420(U)
    People v BrennanJust Ct Village Piermont, Rockland County12/22/20232023 NY Slip Op 51421(U)
    People v JuzwaCrim Ct City NY, Queens County7/9/20232023 NY Slip Op 51422(U)
    Estate of Wenger v Good Shepherd + Communities, Inc.Sup Ct, Broome County12/20/20232023 NY Slip Op 34459(U)
    Mohamed v Almarwa Ctr. Inc. + Sup Ct, Kings County8/18/20222022 NY Slip Op 34665(U)
    Tsui v ChouSup Ct, NY County8/8/20192019 NY Slip Op 35071(U)
    Breest v HaggisSup Ct, NY County12/19/20232023 NY Slip Op 34460(U)
    Giraldo v Longford Inc.Sup Ct, NY County12/18/20232023 NY Slip Op 34461(U)
    M.P. v DavidsonSup Ct, Kings County11/3/20232023 NY Slip Op 34462(U)
    Sadlowski v East End Bldg. Servs. + IncSup Ct, Kings County12/18/20232023 NY Slip Op 34463(U)
    Cotto v RobinsonSup Ct, Kings County12/14/20232023 NY Slip Op 34464(U)
    Samsung Elecs. Co., Ltd. v MPEG + LA, L.L.C.Sup Ct, NY County12/19/20232023 NY Slip Op 34465(U)
    Millennium Consolidated Holdings, + LLC v Bluefin Capital Mgt., LLCSup Ct, NY County12/19/20232023 NY Slip Op 34466(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 21, 2023
    Title + Court + Date + Slip Op No. +
    R.G. v S.W.Sup Ct, NY County7/12/20222022 NY Slip Op 51421(U)
    C.R. v M.B.Sup Ct, NY County7/14/20222022 NY Slip Op 51422(U)
    M.B. v M.C.B.Sup Ct, NY County3/22/20222022 NY Slip Op 51423(U)
    D.R. v B.K.Sup Ct, NY County7/27/20222022 NY Slip Op 51424(U)
    C.B. v R.B.Sup Ct, NY County10/28/20222022 NY Slip Op 51425(U)
    Yesilevich v Tenenbaum + Sup Ct, Kings County10/30/20232023 NY Slip Op 23405
    People v SmithSup Ct, Kings County12/20/20232023 NY Slip Op 23406
    K.L. v I.L.Sup Ct, Richmond County12/7/20232023 NY Slip Op 51411(U)
    Kohler v S.L.Sup Ct, Albany County12/20/20232023 NY Slip Op 51412(U)
    People v BowmanJust Ct Town Webster, Monroe County12/21/20232023 NY Slip Op 51413(U)
    Matter of Newsday LLC v Nassau + County Police Dept.Sup Ct, Nassau County11/3/20212023 NY Slip Op 34433(U)
    Aina v Jopal Bronx, LLCSup Ct, Bronx County12/1/20232023 NY Slip Op 34434(U)
    Caicedo v East Gun Hill Rd. Food, + LLCSup Ct, Bronx County9/8/20222022 NY Slip Op 34664(U)
    Thorne v WilsonSup Ct, Bronx County12/23/20202020 NY Slip Op 35546(U)
    Hoffman v Government Empls. Ins. + Co.Sup Ct, Bronx County6/10/20202020 NY Slip Op 35547(U)
    Warshaw Burstein, LLP v Colambda + Tech., Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34435(U)
    Archives, L.L.C. v Schmitter + Sup Ct, NY County12/18/20232023 NY Slip Op 34436(U)
    Matter of Stroock & Stroock + & Lavan, LLP v New York State Dept. of Economic Dev.Sup Ct, NY County12/12/20232023 NY Slip Op 34437(U)
    Goldman v + Vanguard Const. & Dev. Co., Inc. Sup Ct, NY County12/15/20232023 NY Slip Op 34438(U)
    Randel Mold & Die Corp. v + City of New York Off. of Admin. Trials & HearingsSup Ct, NY County12/18/20232023 NY Slip Op 34439(U)
    Smith v TS ZO L.L.C.Sup Ct, NY County12/18/20232023 NY Slip Op 34440(U)
    Friedman v City of New York + Sup Ct, NY County12/18/20232023 NY Slip Op 34441(U)
    Friedman v City of New York + Sup Ct, NY County12/18/20232023 NY Slip Op 34442(U)
    Crown Wisteria, Inc. v Cibani + Sup Ct, NY County12/18/20232023 NY Slip Op 34443(U)
    Bardach v MartynovaSup Ct, NY County12/18/20232023 NY Slip Op 34444(U)
    Public Admr. of Bronx County v + New York City Health & Hosps. Corp.Sup Ct, NY County12/18/20232023 NY Slip Op 34445(U)
    Mawere v LandauSup Ct, Kings County12/8/20232023 NY Slip Op 34446(U)
    Klitnick v WanounoSup Ct, Kings County12/14/20232023 NY Slip Op 34447(U)
    Matter of 22 Title Solutions, LLC + v American Home Assur. Co.Sup Ct, Kings County12/13/20232023 NY Slip Op 34448(U)
    AKF, Inc. v A Pattern Med. + Clinic, P.C.Sup Ct, NY County12/18/20232023 NY Slip Op 34449(U)
    Medallion Fin. Corp. v EDE Serv. + Corp.Sup Ct, NY County12/15/20232023 NY Slip Op 34450(U)
    Board of Mgrs. of 229 E. 2nd St. + Condominium v 229 2nd St. LLCSup Ct, NY County12/18/20232023 NY Slip Op 34451(U)
    Medallion Bank v Chopper Taxi + Inc.Sup Ct, NY County12/15/20232023 NY Slip Op 34452(U)
    EBF Partners, LLC v GRA Group, + Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34453(U)
    Wong v WongSup Ct, NY County12/18/20232023 NY Slip Op 34454(U)
    G.B. v Archdiocese of N.Y. + Sup Ct, NY County12/1/20232023 NY Slip Op 34456(U)
    ARK667 Doe v Archdiocese of + N.Y.Sup Ct, NY County12/5/20232023 NY Slip Op 34457(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 20, 2023
    Title + Court + Date + Slip Op No. +
    G.S. v K.K.Sup Ct, NY County9/12/20222022 NY Slip Op 51420(U)
    Kahn Prop. Owner, LLC v + FruchthandlerSup Ct, Suffolk County10/30/20232023 NY Slip Op 23402
    People v Gonzalez-Mendoza + County Ct, Putnam County12/13/20232023 NY Slip Op 23403
    People v MarteCrim Ct City NY, Queens County12/20/20232023 NY Slip Op 23404
    Cold Spring Country Club, + Inc. v Town of HuntingonSup Ct, Suffolk County10/30/20232023 NY Slip Op 51407(U)
    M.G.W. v V.D.Sup Ct, NY County1/5/20232023 NY Slip Op 51408(U)
    P.G. v P.G.Sup Ct, NY County3/3/20232023 NY Slip Op 51409(U)
    De Andrade v Monadnock Constr., + Inc.Sup Ct, Kings County12/7/20232023 NY Slip Op 34412(U)
    Ner Mordechai Inc. v Ohel Harav + Yenoshua Boruch Found.Sup Ct, Kings County11/28/20232023 NY Slip Op 34413(U)
    Stein v 594 Marcy Villa LLC + Sup Ct, Kings County12/4/20232023 NY Slip Op 34414(U)
    Torres v New York City Employees' + Retirement Sys.Sup Ct, Kings County12/4/20232023 NY Slip Op 34415(U)
    Aicon Contemporary v Dutta + Sup Ct, NY County12/14/20232023 NY Slip Op 34416(U)
    Malick v 302 E. 105th St. LLC + Sup Ct, NY County12/12/20232023 NY Slip Op 34417(U)
    JDS Fourth Ave. JV II LLC v Largo + 613 Baltic St. Partners LLCSup Ct, NY County12/14/20232023 NY Slip Op 34418(U)
    Dong Hua Zhang, v Amy's Rest. NY + Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34419(U)
    Century Indem. Co. v Archdiocese + of N.Y.Sup Ct, NY County12/14/20232023 NY Slip Op 34420(U)
    213 W. 23rd St. LLC v Crunch + Holdings LLCSup Ct, NY County12/14/20232023 NY Slip Op 34421(U)
    Brooke v StreitSup Ct, NY County12/14/20232023 NY Slip Op 34422(U)
    Zurich Am. Ins. Co. v Alterra Am. + Ins. Co.Sup Ct, NY County12/13/20232023 NY Slip Op 34423(U)
    South Beach Tristar 800 LLC v + Lincoln Arts ERFR LLCSup Ct, NY County12/12/20232023 NY Slip Op 34425(U)
    Annovazzi v MeyerSup Ct, NY County12/6/20232023 NY Slip Op 34426(U)
    Columbia Consultants, LLC v + Danucht Entertainment, LLCSup Ct, NY County12/12/20232023 NY Slip Op 34427(U)
    Boston Beer Corp. v Boening + Bros., Inc.Sup Ct, NY County12/15/20232023 NY Slip Op 34428(U)
    Stile v C-Air Customhouse + Brokers-Forwards, Inc.Sup Ct, NY County12/15/20232023 NY Slip Op 34429(U)
    Golden Nugget Atl. City LLC v + ChanSup Ct, NY County12/13/20232023 NY Slip Op 34430(U)
    57th St. Vacation Owners Assn., + Inc. v KongSup Ct, NY County12/11/20232023 NY Slip Op 34431(U)
    S.A. v BellSup Ct, NY County12/14/20232023 NY Slip Op 34432(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 19, 2023
    Title + Court + Date + Slip Op No. +
    People v GaynorSup Ct, Kings County12/18/20232023 NY Slip Op 23395
    People v MavroudisJust Ct Town New Scotland, Albany County12/18/20232023 NY Slip Op 23396
    City of New York v "Doe" + Civ Ct City NY, Bronx County12/18/20232023 NY Slip Op 23397
    Leibovitz v State of New + YorkCt Claims12/13/20232023 NY Slip Op 51366(U)
    People v Cedeno-Ortiz + Crim Ct City NY, Bronx County5/31/20232023 NY Slip Op 51367(U)
    Aina v Jopal Bronx, LLC + Sup Ct, Bronx County12/18/20232023 NY Slip Op 51368(U)
    Corona Apts. LLC v + BarriosCiv Ct City NY, Queens County12/14/20232023 NY Slip Op 51369(U)
    Marino v FriedmanSup Ct, Kings County12/18/20232023 NY Slip Op 51370(U)
    People v ChungCrim Ct City NY, Queens County5/16/20232023 NY Slip Op 51371(U)
    Matter of WoodSurrogate's Ct, Putnam County6/9/20232023 NY Slip Op 34382(U)
    Stuyvesant Owners Inc. v + FrantinoCiv Ct City NY, NY County11/13/20232023 NY Slip Op 34383(U)
    GRM Info. Mgt. Servs. v Silver + Autumn Hotel + (N.Y.) Corp. Ltd.Sup Ct, NY County12/14/20232023 NY Slip Op 34384(U)
    Hidalgo v Support Collection Unit + of NYC + Dept. of Social Servs.Sup Ct, NY County12/14/20232023 NY Slip Op 34385(U)
    Hernandez v Kobayashi Am. Mfg., + LLCSup Ct, NY County12/13/20232023 NY Slip Op 34386(U)
    Sestak v Hylan Datacom & + Elec. + LLCSup Ct, NY County12/15/20232023 NY Slip Op 34387(U)
    Matter of Helm v New York State + Div. of + Hous. & Community RenewalSup Ct, NY County12/13/20232023 NY Slip Op 34388(U)
    Illyrian Props. Inc. v Department + of Hous. + Preserv. & Dev.Sup Ct, NY County12/14/20232023 NY Slip Op 34389(U)
    Pena v JP Morgan Chase & + Co.Sup Ct, NY County12/15/20232023 NY Slip Op 34390(U)
    Mori v Riomar Corp.Sup Ct, NY County12/14/20232023 NY Slip Op 34391(U)
    Septimus v Yeshiva Univ.Sup Ct, NY County12/14/20232023 NY Slip Op 34392(U)
    Lewis v Related Broadway Dev., + LLCSup Ct, NY County12/14/20232023 NY Slip Op 34393(U)
    67-69 St. Nicholas Ave. Hous. + Dev. Fund + Corp. v GreenSup Ct, NY County12/14/20232023 NY Slip Op 34394(U)
    Rosario v 75 Ft. Wash. Prop. + LLCSup Ct, NY County12/11/20232023 NY Slip Op 34395(U)
    PWV Acquisition Owner, LLC v + LernerSup Ct, NY County12/14/20232023 NY Slip Op 34396(U)
    Matter of Your Vet 1, LLC v + Eastman, Cooke & Assoc., + LLCSup Ct, NY County12/14/20232023 NY Slip Op 34397(U)
    Ilan Props., Inc. v Hendler + Sup Ct, NY County12/14/20232023 NY Slip Op 34398(U)
    Graham v LaporteSup Ct, NY County12/14/20232023 NY Slip Op 34399(U)
    Memedi v MartnickSup Ct, NY County12/14/20232023 NY Slip Op 34400(U)
    Ogbolu v 125 Prop. Masters, + Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34401(U)
    Galonsky v East 17th LLCSup Ct, NY County12/15/20232023 NY Slip Op 34402(U)
    Paz v 52-74th Hous. Corp. + Sup Ct, NY County12/14/20232023 NY Slip Op 34403(U)
    Matter of Plumbers Local Union + No. 1 v New + York City Dept. of Bldgs.Sup Ct, NY County12/14/20232023 NY Slip Op 34404(U)
    Teachers' Retirement Sys. of the + City of N.Y. v + DubnerSup Ct, NY County12/14/20232023 NY Slip Op 34405(U)
    Lee v Mount Sinai Hosp.Sup Ct, Kings County12/12/20232023 NY Slip Op 34406(U)
    Silva v City of New YorkSup Ct, Kings County12/14/20232023 NY Slip Op 34407(U)
    Su Hwa Chu v LaiSup Ct, Kings County12/12/20232023 NY Slip Op 34408(U)
    Silva v ScopoSup Ct, Kings County12/8/20232023 NY Slip Op 34409(U)
    Prizzi v LeeSup Ct, Kings County12/4/20232023 NY Slip Op 34410(U)
    Lashley v Brooklyn Standard IV, + LLCSup Ct, Kings County12/14/20232023 NY Slip Op 34411(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 18, 2023
    Title + Court + Date + Slip Op No. +
    G.S. v K.K.Sup Ct, NY County7/13/20222022 NY Slip Op 51419(U)
    People v VallejoCrim Ct City NY, Bronx County12/18/20232023 NY Slip Op 23394
    People v MonkCounty Ct, Tompkins County12/12/20232023 NY Slip Op 51362(U)
    People v GuzmanCrim Ct City NY, Bronx County12/18/20232023 NY Slip Op 51363(U)
    People v ValentinCrim Ct City NY, Bronx County12/14/20232023 NY Slip Op 51364(U)
    People v MuhammadCrim Ct City NY, Bronx County12/12/20232023 NY Slip Op 51365(U)
    Village of Maybrook v Teamsters + Local + 445Sup Ct, Orange County5/6/20232023 NY Slip Op 34355(U)
    Gordon v 476 Broadway Realty + Corp.Superme Ct, NY County12/12/20232023 NY Slip Op 34356(U)
    De Pichardo v Central Laundry + Serv. + Corp.Sup Ct, Kings County12/1/20232023 NY Slip Op 34357(U)
    Rent Stabilization Assn. of + N.Y.C., Inc. v + McKeeSup Ct, NY County12/4/20232023 NY Slip Op 34358(U)
    Etihad Airways PJSC v Khan + Sup Ct, NY County12/11/20232023 NY Slip Op 34359(U)
    Verderosa v City of New York + Sup Ct, NY County12/4/20232023 NY Slip Op 34360(U)
    Planas v DoughertySup Ct, NY County12/12/20232023 NY Slip Op 34361(U)
    Green 333 Corp. v KusykSup Ct, NY County12/13/20232023 NY Slip Op 34362(U)
    Ryder v A.O. Smith Water Prods. + Co.Sup Ct, NY County12/12/20232023 NY Slip Op 34363(U)
    Zachary v Avon Prods., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34364(U)
    Rullo v ABB, Inc.Sup Ct, NY County12/12/20232023 NY Slip Op 34365(U)
    Radovic v Amchem Prods., Inc. + Sup Ct, NY County12/12/20232023 NY Slip Op 34366(U)
    Radovic v Amchem Prods., Inc. + Sup Ct, NY County12/12/20232023 NY Slip Op 34367(U)
    Radovic v Amchem Prods., Inc. + Sup Ct, NY County12/12/20232023 NY Slip Op 34368(U)
    People v VDARE Found., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34369(U)
    Lavia v Brooklyn Hosp. Ctr. + Sup Ct, Kings County12/11/20232023 NY Slip Op 34370(U)
    Corbett v Boro Park Ctr. for + Rehabilitation & + HealthcareSup Ct, Kings County12/11/20232023 NY Slip Op 34371(U)
    Omega Mkt., LLC v New York City + Dept. of + Envtl. ProtectionSup Ct, Kings County11/30/20232023 NY Slip Op 34372(U)
    Garcia v SAF LI LLCSup Ct, Kings County12/12/20232023 NY Slip Op 34373(U)
    Whyte v DN 63 Rockaway Parkway + LLCSup Ct, Kings County11/28/20232023 NY Slip Op 34374(U)
    Reape v Mercedes-Benz of + BrooklynSup Ct, Kings County12/11/20232023 NY Slip Op 34375(U)
    Morgan v St. Lukes Roosevelt + Hosp. Ctr. + Sup Ct, Kings County12/1/20232023 NY Slip Op 34376(U)
    Brown v OSIB-BCRE Bowery St. + Holdings + LLCSup Ct, Kings County12/1/20232023 NY Slip Op 34377(U)
    Martinez v Welsback Elec. + Corp.Sup Ct, Kings County11/17/20232023 NY Slip Op 34378(U)
    Matter of Rental Claims Servs. v + CzimentSup Ct, Kings County12/4/20232023 NY Slip Op 34379(U)
    New York Auto Concierge Inc. v + ValenzuelaSup Ct, Kings County12/11/20232023 NY Slip Op 34380(U)
    EO Inv., LLC v GilroySup Ct, NY County12/13/20232023 NY Slip Op 34381(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 15, 2023
    Title + Court + Date + Slip Op No. +
    People v FavoriteSup Ct, Kings County12/11/20232023 NY Slip Op 23391
    People v BallardCrim Ct City NY, Queens County12/14/20232023 NY Slip Op 23392
    Cannizzaro v City of New + YorkSup Ct, NY County12/15/20232023 NY Slip Op 23393
    Afghan House, Inc. v + Inshandbags Inc.Civ Ct City NY, NY County12/1/20232023 NY Slip Op 51358(U)
    New Commune DTLA LLC v + LawrenceCiv Ct City NY, NY County12/6/20232023 NY Slip Op 51359(U)
    Lashley v Brooklyn Std. IV, + LLCSup Ct, Kings County12/14/20232023 NY Slip Op 51360(U)
    Johnson v State of New + YorkCt Claims9/5/20232023 NY Slip Op 51361(U)
    Buffalo Auto Acceptance Corp. v + HamiltonCounty Ct, Niagara County8/21/20232023 NY Slip Op 34339(U)
    Ciceron v GulmaticoSup Ct, Kings County4/7/20212021 NY Slip Op 34044(U)
    Jackson v RahmanSup Ct, Bronx County10/13/20202020 NY Slip Op 35540(U)
    Lesniak v 411 Wales Realty, + LLCSup Ct, Bronx County8/4/20212021 NY Slip Op 34045(U)
    Veras v GuzmanSup Ct, Bronx County4/28/20202020 NY Slip Op 35541(U)
    McRae v American United Transp. + Inc.Sup Ct, Bronx County3/17/20202020 NY Slip Op 35542(U)
    Podlubny v KourSup Ct, Bronx County12/21/20202020 NY Slip Op 35543(U)
    Patino v Carretera Inc.Sup Ct, Bronx County1/29/20212021 NY Slip Op 34046(U)
    Martinez v JRL Food Corp. + Sup Ct, Bronx County5/19/20202020 NY Slip Op 35544(U)
    Simmons v BellSup Ct, Queens County12/9/20222022 NY Slip Op 34663(U)
    Simmons v BellSup Ct, Queens County5/29/20202020 NY Slip Op 35545(U)
    Cimillo v West Side Dental + Assoc., + P.C.Sup Ct, NY County11/27/20232023 NY Slip Op 34340(U)
    Cimillo v West Side Dental + Assoc., + P.C.Sup Ct, NY County11/30/20232023 NY Slip Op 34341(U)
    Miller v BostromSup Ct, NY County12/5/20232023 NY Slip Op 34342(U)
    Larios v GauthierSup Ct, NY County12/7/20232023 NY Slip Op 34343(U)
    Johnson v Mount Sinai + Hosp.Sup Ct, NY County11/27/20232023 NY Slip Op 34344(U)
    Williams v SenthilkumarSup Ct, NY County12/4/20232023 NY Slip Op 34345(U)
    Bethpage Fed. Credit Union v West + 26th St. Realty LLCSup Ct, NY County12/1/20232023 NY Slip Op 34346(U)
    Six Gramercy LLC v Westside Units + 18th St. LLCSup Ct, NY County12/1/20232023 NY Slip Op 34347(U)
    88 Global Partners LLC v 141 E. + 88th + St. Realty LLCSup Ct, NY County11/17/20232023 NY Slip Op 34348(U)
    Christiana Trust v AliSup Ct, NY County12/1/20232023 NY Slip Op 34349(U)
    BD Notes LLC v Garofalo Real + Estate + Holdings, LLCSup Ct, NY County12/8/20232023 NY Slip Op 34350(U)
    New York Life Ins. Co. v 717 GFC, + LLCSup Ct, NY County12/8/20232023 NY Slip Op 34351(U)
    Fannie Mae v Residential Indus. + I, + LLCSup Ct, NY County12/1/20232023 NY Slip Op 34352(U)
    Wells Fargo Bank, N.A. v 555 + Retail + Owner LLCSup Ct, NY County11/20/20232023 NY Slip Op 34353(U)
    Deutsche Bank Trust Co. Ams. v A + & R + 1392 Realty, LLCSup Ct, NY County11/17/20232023 NY Slip Op 34354(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 14, 2023
    Title + Court + Date + Slip Op No. +
    Mendez v HidalgoCiv Ct City NY, NY County12/14/20232023 NY Slip Op 23390
    Mehr v Mount Sinai Hosp. + Sup Ct, Orange County12/12/20232023 NY Slip Op 51356(U)
    Vucetaj v DahlSup Ct, NY County12/13/20232023 NY Slip Op 51357(U)
    King v City of New YorkSup Ct, NY County12/11/20232023 NY Slip Op 34311(U)
    Rodriguez v YWA-Amsterdam LLC + Sup Ct, NY County12/8/20232023 NY Slip Op 34312(U)
    Matter of Gonzaque v Helene Fuld + Coll. of NursingSup Ct, NY County12/8/20232023 NY Slip Op 34313(U)
    Marcus v City of New York + Sup Ct, NY County12/11/20232023 NY Slip Op 34314(U)
    Pinder v Mount Sinai Hosp. + Sup Ct, NY County12/11/20232023 NY Slip Op 34315(U)
    Matter of C72 LLC v New York + State Div. of Hous. & Community RenewalSup Ct, NY County12/7/20232023 NY Slip Op 34316(U)
    Diaz v 2 Broadway Ground Lease + TrustSup Ct, NY County12/8/20232023 NY Slip Op 34317(U)
    Morale v A.O. Smith Water Prods. + Co.Sup Ct, NY County12/11/20232023 NY Slip Op 34318(U)
    Thomas v Avon Prods., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34319(U)
    Courtois v RosenblumSup Ct, Kings County12/7/20232023 NY Slip Op 34320(U)
    People v VDARE Found., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34321(U)
    Qi Yong Wu v Olympos Trans + Inc.Sup Ct, Kings County11/21/20232023 NY Slip Op 34322(U)
    Marte v AgostaSup Ct, Kings County12/11/20232023 NY Slip Op 34323(U)
    Marin v AmatoreSup Ct, Kings County12/11/20232023 NY Slip Op 34324(U)
    Square My Capital LLC v + JohnsonSup Ct, Kings County12/7/20232023 NY Slip Op 34325(U)
    Moses v Deroche-WilliamsSup Ct, Kings County12/11/20232023 NY Slip Op 34326(U)
    Sabr Chems. Group, LLC v Norrhest + Chems., Inc.Sup Ct, NY County12/11/20232023 NY Slip Op 34327(U)
    Scarola Zubatov & Schaffzin + PLLC v Rocketfuel Blockchain, Inc.Sup Ct, NY County12/11/20232023 NY Slip Op 34328(U)
    AKF, Inc. v Windows & Beyond + Interiors, LLCSup Ct, NY County12/11/20232023 NY Slip Op 34330(U)
    32 W. 39th St. Sole Member LLC v + Regency NYC Inc.Sup Ct, NY County12/7/20232023 NY Slip Op 34332(U)
    J-Bar Reinforcement Inc. v Crest + Hill Capital LLCSup Ct, NY County12/11/20232023 NY Slip Op 34333(U)
    MDB Dev. Corp. v Maximum Fire + EscapesSup Ct, NY County12/10/20232023 NY Slip Op 34334(U)
    Federal Realty N.Y., LLC v FC + Foley, LLCSup Ct, NY County11/17/20232023 NY Slip Op 34335(U)
    Skyhorse Publ., Inc. v + BlakleySup Ct, NY County11/3/20232023 NY Slip Op 34336(U)
    Stevens v CutlerSup Ct, NY County12/7/20232023 NY Slip Op 34337(U)
    Hudgins v SpielfogelSup Ct, NY County11/30/20232023 NY Slip Op 34338(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 13, 2023
    Title + Court + Date + Slip Op No. +
    Matter of Liam V.Fam Ct, Kings County12/12/20232023 NY Slip Op 23387
    People v LujaCrim Ct City NY, Bronx County 12/11/20232023 NY Slip Op 23388
    People v CollazoSup Ct, NY County12/6/20232023 NY Slip Op 23389
    People v EvansCrim Ct City NY, Queens County12/12/20232023 NY Slip Op 51352(U)
    Adolphe v MorcilloSup Ct, Kings County12/12/20232023 NY Slip Op 51353(U)
    Benayoun v AlkadaSup Ct, Kings County12/12/20232023 NY Slip Op 51354(U)
    Morel v AvilesCity Ct Middletown, Orange County12/11/20232023 NY Slip Op 51355(U)
    Deutsche Bank Natl. Trust Co. v + GordonSup Ct, Nassau County4/6/20232023 NY Slip Op 34284(U)
    Residential Mtge. Loan Trust + 2013-TT2 v FioritaSup Ct, Suffolk County7/18/20222022 NY Slip Op 34659(U)
    Bank of N.Y. Mellon v + LicariSup Ct, Suffolk County3/11/20222022 NY Slip Op 34660(U)
    U.S. Bank N.A. v MartySup Ct, Suffolk County5/24/20192019 NY Slip Op 35069(U)
    Federal Natl. Mtge. Assn. (Fannie + Mae) v PriscoSup Ct, Suffolk County8/20/20192019 NY Slip Op 35070(U)
    Direct Lending Group, Inc. v + Barina + Group LLCSup Ct, Nassau County12/1/20222022 NY Slip Op 34661(U)
    Matter of Serrano v Meyer + Sup Ct, Orange County12/8/20232023 NY Slip Op 34285(U)
    Tokos v County of BroomeSup Ct, Broome County12/6/20222022 NY Slip Op 34662(U)
    Country-Wide Ins. Co. v Advanced + Comprehensive Lab., LLCSup Ct, NY County12/7/20232023 NY Slip Op 34286(U)
    Tremor Video, Inc. v Alphonso, + Inc.Sup Ct, NY County12/5/20232023 NY Slip Op 34287(U)
    Xiaoguang Jiang v American + Express + Co.Sup Ct, NY County11/20/20232023 NY Slip Op 34288(U)
    Tender Touch Health Care Servs. + Inc. + v Tnuzeg LLCSup Ct, NY County11/30/20232023 NY Slip Op 34289(U)
    MW Gestion v Cellenkos + Inc.Sup Ct, NY County12/7/20232023 NY Slip Op 34290(U)
    Strecker v Singlepoint Inc. + Sup Ct, NY County12/6/20232023 NY Slip Op 34291(U)
    Bissell St. I, LLC v Westbrook + Partners LLCSup Ct, NY County11/21/20232023 NY Slip Op 34293(U)
    Rockefeller Univ. v Aetna Cas. + & + Surety Co.Sup Ct, NY County12/8/20232023 NY Slip Op 34294(U)
    Deutsche Bank AG, N.Y. Branch v + RBH Inv. II, LLCSup Ct, NY County11/20/20232023 NY Slip Op 34295(U)
    DCH LEX Propco GP LLC v YS 541 + Lexington Holdings LLCSup Ct, NY County12/4/20232023 NY Slip Op 34296(U)
    Thoro-Graph, Inc. v New York + Racing + Assn., Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 34297(U)
    Fred Alger Mgt., LLC v Impulse + Dynamics PLCSup Ct, NY County12/7/20232023 NY Slip Op 34298(U)
    U.S. Specialty Ins. Co. v State + Natl. + Ins. Co., Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 34299(U)
    Trinity Ctr. LLC v Mazel + Reproduction, Inc.Sup Ct, NY County12/4/20232023 NY Slip Op 34300(U)
    Taverna v Hieber Reade St., + LLCSup Ct, NY County12/1/20232023 NY Slip Op 34301(U)
    Strabag, SPA v Alto Maipo + SPASup Ct, NY County12/8/20232023 NY Slip Op 34302(U)
    Go N.Y. Tours, Inc. v Tour Cent. + Park + Inc.Sup Ct, NY County11/29/20232023 NY Slip Op 34303(U)
    Real Dependable Contr. Corp. v + Fountain Gardens Owners CorpSup Ct, NY County11/29/20232023 NY Slip Op 34304(U)
    389 Assoc. v Isabella's Jewels, + Inc.Sup Ct, NY County11/20/20232023 NY Slip Op 34305(U)
    200 E. 36th Owners Corp. v N.Y.C. + Warehouse, Inc.Sup Ct, NY County12/1/20232023 NY Slip Op 34306(U)
    Empiremediholdings, LLC v Bridge + Funding Cap LLCSup Ct, NY County11/29/20232023 NY Slip Op 34307(U)
    Skyland Dev. Corp. v Elmwood + Ventures, LLCSup Ct, NY County11/30/20232023 NY Slip Op 34308(U)
    370 8th Ave. Group, LLC v + BurkeSup Ct, NY County12/4/20232023 NY Slip Op 34309(U)
    Zeidman v ChenSup Ct, NY County11/20/20232023 NY Slip Op 34310(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 12, 2023
    Title + Court + Date + Slip Op No. +
    A.S. v S.S.Sup Ct, NY County10/14/20222022 NY Slip Op 51418(U)
    First Hous. Co., Inc. v + TchiremuCiv Ct City NY, Queens County3/6/20232023 NY Slip Op 23384
    WV Preserv. Partners LLC v + ChangCiv Ct City NY, NY County12/11/20232023 NY Slip Op 23385
    Santana v Yonkers City Sch. + Dist.Sup Ct, Westchester County12/7/20232023 NY Slip Op 23386
    Matter of Small v Wade + Sup Ct, Kings County12/11/20232023 NY Slip Op 51342(U)
    Federal Natl. Mtge. Assn. v + SmithCiv Ct City NY, Queens County12/11/20232023 NY Slip Op 51343(U)
    People v MallikCrim Ct City NY, Kings County10/6/20232023 NY Slip Op 51344(U)
    People v StephensCrim Ct City NY, Kings County10/3/20232023 NY Slip Op 51346(U)
    Asian v Flintlock Constr. Servs. + LLCSup Ct, NY County12/8/20232023 NY Slip Op 34257(U)
    Garcia v CM & Assoc. Constr. + Mgt., LLCSup Ct, NY County12/8/20232023 NY Slip Op 34258(U)
    Gyure v Friars N.A. Inc.Sup Ct, NY County12/8/20232023 NY Slip Op 34259(U)
    Corey v City of New YorkSup Ct, NY County12/7/20232023 NY Slip Op 34260(U)
    591 Realty LLC v CuranajSup Ct, NY County12/8/20232023 NY Slip Op 34261(U)
    Matter of Baychester Payment Ctr. + v New York State Dept. of Fin. Servs.Sup Ct, NY County12/7/20232023 NY Slip Op 34262(U)
    Longfellow v BarneySup Ct, NY County11/29/20232023 NY Slip Op 34263(U)
    Matter of Courtney v NYS + Emergency Rental Assistance Program (ERAP)Sup Ct, NY County12/8/20232023 NY Slip Op 34264(U)
    Rockefeller v Solovieff Realty + Co., L.L.C.Sup Ct, NY County12/8/20232023 NY Slip Op 34265(U)
    Smyth v City of New YorkSup Ct, NY County12/7/20232023 NY Slip Op 34266(U)
    TD Bank, N.A. v Gallery 18 + Inc.Sup Ct, NY County11/29/20232023 NY Slip Op 34267(U)
    Hereford Ins. Co. v 247 Med. + Supplies, Inc.Sup Ct, NY County12/4/20232023 NY Slip Op 34268(U)
    Damassia v Bedford Stuyvesant S. + One LLCSup Ct, NY County12/8/20232023 NY Slip Op 34269(U)
    People v National Rifle Assn. of + Am.Sup Ct, NY County12/8/20232023 NY Slip Op 34270(U)
    Johnson v Harlem Hosp.Sup Ct, NY County12/8/20232023 NY Slip Op 34271(U)
    McLean v SolnySup Ct, Kings County11/27/20232023 NY Slip Op 34272(U)
    Weber v BarnettSup Ct, Kings County12/7/20232023 NY Slip Op 34273(U)
    Franks v National Grid USA + Sup Ct, Kings County12/7/20232023 NY Slip Op 34274(U)
    Nellis v Cadman Assoc. LLC + Sup Ct, Kings County11/16/20232023 NY Slip Op 34276(U)
    BH Sterling Realty LLC v + LongoriaSup Ct, Kings County12/7/20232023 NY Slip Op 34277(U)
    Diaz v MahmoodSup Ct, Kings County11/30/20232023 NY Slip Op 34278(U)
    Global Liberty Ins. Co. v + CoboSup Ct, Kings County11/21/20232023 NY Slip Op 34279(U)
    Fusco v DantonSup Ct, Kings County12/5/20232023 NY Slip Op 34280(U)
    Skyview Capital, LLC v Conduent + Bus. Servs., LLCSup Ct, NY County12/7/20232023 NY Slip Op 34281(U)
    Altium Growth Fund, L.P. v Tingo + Group, Inc.Sup Ct, NY County12/7/20232023 NY Slip Op 34282(U)
    69 Second Ave. LLC v Vanessa + Realty Corp.Sup Ct, NY County12/8/20232023 NY Slip Op 34283(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 11, 2023
    Title + Court + Date + Slip Op No. +
    N.T. v P.F.Sup Ct, NY County9/23/20222022 NY Slip Op 51417(U)
    Hughes v Qingling Zhao + City Ct Long Beach, Nassau County12/7/20232023 NY Slip Op 23383
    People v DunmeyerSup Ct, NY County11/27/20232023 NY Slip Op 51334(U)
    BRX Ground 1 LLC v + TejerasCiv Ct City NY, Bronx County12/8/20232023 NY Slip Op 51335(U)
    Bracero v State of New + YorkCt Claims8/2/20232023 NY Slip Op 51336(U)
    American Tr. Ins. Co. v + Trinity Pain Mgt. of Staten Is., PLLCSup Ct, Kings County12/8/20232023 NY Slip Op 51337(U)
    Richards v PierreSup Ct, Kings County12/8/20232023 NY Slip Op 51338(U)
    Robinson v D.C. Realty Group + Inc.Sup Ct, Kings County12/8/20232023 NY Slip Op 51339(U)
    Lux Bldrs. Inc. v INN Constr. + Corp.Sup Ct, Kings County12/8/20232023 NY Slip Op 51340(U)
    985 Herkimer St. LLC v + Hobson-GreeneSup Ct, Kings County12/8/20232023 NY Slip Op 51341(U)
    Matter of Coscia v Town of + GreenburghSup Ct, Westchester County9/9/20212021 NY Slip Op 34039(U)
    Rosario v PeskinSup Ct, Bronx County11/22/20192019 NY Slip Op 35061(U)
    Silva v CastroSup Ct, Bronx County11/27/20192019 NY Slip Op 35062(U)
    Ramirez v HansumSup Ct, Bronx County9/30/20202020 NY Slip Op 35535(U)
    Martinez v Ortega-Lizardi + Sup Ct, Bronx County11/4/20192019 NY Slip Op 35063(U)
    Aybar v Krasdale Foods, Inc. + Sup Ct, Bronx County10/25/20192019 NY Slip Op 35064(U)
    Batista v Triumph Constr. + Corp.Sup Ct, Bronx County8/26/20202020 NY Slip Op 35536(U)
    Cuddihy v Bronx Pro Group LLC + Sup Ct, Bronx County10/28/20192019 NY Slip Op 35065(U)
    Cuddihy v Bronx Pro Group LLC + Sup Ct, Bronx County9/23/20192019 NY Slip Op 35066(U)
    Delgado v SantiagoSup Ct, Bronx County11/8/20192019 NY Slip Op 35067(U)
    Abad v MartinSup Ct, Bronx County5/15/20202020 NY Slip Op 35537(U)
    Brito v SantiagoSup Ct, Bronx County10/8/20202020 NY Slip Op 35538(U)
    Black v SpanosSup Ct, Bronx County11/19/20192019 NY Slip Op 35068(U)
    Madera v City of New York + Sup Ct, NY County12/5/20232023 NY Slip Op 34234(U)
    State Farm Mut. Auto. Ins. Co. v + Protection Physical Therapy, P.C.Sup Ct, NY County12/6/20232023 NY Slip Op 34235(U)
    Burgos v GTL Constr., LLC. + Sup Ct, NY County12/6/20232023 NY Slip Op 34236(U)
    Liss v City of New YorkSup Ct, NY County12/6/20232023 NY Slip Op 34237(U)
    Associated Indus. Ins. Co. v + Unified Window Sys. Inc.Sup Ct, NY County12/6/20232023 NY Slip Op 34238(U)
    Aldrich v LNG Enters., Inc. + Sup Ct, Chautauqua County9/2/20222022 NY Slip Op 34658(U)
    Stanhope v ConwaySup Ct, Otsego County5/25/20212021 NY Slip Op 34040(U)
    Garcia v City of New York + Sup Ct, NY County12/5/20232023 NY Slip Op 34239(U)
    Allison-Jabbie v Collins Bldg. + Servs., Inc.Sup Ct, Kings County12/6/20232023 NY Slip Op 34240(U)
    Krasnow v CataniaSup Ct, Nassau County3/30/20212021 NY Slip Op 34041(U)
    Anagnostopoulos v Rosenman + Sup Ct, Nassau County12/10/20212021 NY Slip Op 34042(U)
    Anagnostopoulos v Rosenman + Sup Ct, Nassau County4/14/20202020 NY Slip Op 35539(U)
    Lynch Dev. Assoc., Inc. v + JohnsonSup Ct, Suffolk County12/30/20212021 NY Slip Op 34043(U)
    SF Capital Invs., LP v + LoanStreet, + Inc.Sup Ct, NY County12/3/20232023 NY Slip Op 34241(U)
    Weisberg v StandardSup Ct, NY County11/28/20232023 NY Slip Op 34242(U)
    Weiner v AbendSup Ct, NY County11/22/20232023 NY Slip Op 34243(U)
    Besen Partners LLC v 36 W. 128th, + LLCSup Ct, NY County11/30/20232023 NY Slip Op 34244(U)
    CWCapital Invs. LLC v CWCapital + Cobalt Vr Ltd.Sup Ct, NY County12/3/20232023 NY Slip Op 34245(U)
    East 51st St. Dev. Co., LLC v HFZ + E. 51, LLCSup Ct, NY County11/28/20232023 NY Slip Op 34246(U)
    3B Assoc., LLC v eCommission + Solutions, LLCSup Ct, NY County11/20/20232023 NY Slip Op 34247(U)
    Matter of Trust Motor, LLC v LCF + GroupSup Ct, NY County11/28/20232023 NY Slip Op 34248(U)
    Oddo & Babat, P.C. v Joseph + T. Mullen, Jr. & Assoc.Sup Ct, NY County11/28/20232023 NY Slip Op 34249(U)
    Bridgeton 396 Broadway Fee, LLC v + HiRise Engg. P.C.Sup Ct, NY County11/29/20232023 NY Slip Op 34250(U)
    C.D.E. A.C. Co., Inc. v New York + City Dept. of Envtl. ProtectionSup Ct, NY County12/5/20232023 NY Slip Op 34251(U)
    Hildene Opportunities Master Fund + II, Ltd. v NRF Holdco, LLCSup Ct, NY County11/30/20232023 NY Slip Op 34252(U)
    213 W. 23rd St. LLC v Crunch + Holdings LLCSup Ct, NY County11/20/20232023 NY Slip Op 34253(U)
    Murphy Kennedy Group LLC v Board + of Mgrs. of the St. Tropez CondominiumSup Ct, NY County11/28/20232023 NY Slip Op 34254(U)
    ARM Energy Holdings, LLC v + Nautilus Envtl. Ohio 1, LLCSup Ct, NY County12/6/20232023 NY Slip Op 34255(U)
    ACS Group Acquisitions LLC v Kate + Spade LLCSup Ct, NY County12/5/20232023 NY Slip Op 34256(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 08, 2023
    Title + Court + Date + Slip Op No. +
    Mamadjanov v Boston Bryant + Hous. Dev. Fund Corp.Sup Ct, Kings County12/7/20232023 NY Slip Op 23381
    Cooley v VanslykeCity Ct Little Falls, Herkimer County12/8/20232023 NY Slip Op 23382
    People v FashawSup Ct, NY County11/29/20232023 NY Slip Op 51333(U)
    Sam Van LLC v BickleyCiv Ct City NY, Bronx County11/30/20232023 NY Slip Op 34209(U)
    Matter of Ling Lin v Sewell + Sup Ct, NY County12/5/20232023 NY Slip Op 34210(U)
    Diaz v 2 Broadway Ground Lease + TrustSup Ct, NY County12/5/20232023 NY Slip Op 34212(U)
    Enz v A.O. Smith Water Prods. + Co.Sup Ct, NY County12/4/20232023 NY Slip Op 34213(U)
    Guaman v New 470 LLCSup Ct, Kings County12/5/20232023 NY Slip Op 34214(U)
    Opera House Lofts LLC v + CarnahanSup Ct, Kings County11/28/20232023 NY Slip Op 34215(U)
    Batis v 85 Jay St. (Brooklyn), + LLCSup Ct, Kings County12/5/20232023 NY Slip Op 34216(U)
    Callender v ForondaSup Ct, Kings County12/5/20232023 NY Slip Op 34217(U)
    L.I. Champions Taekwondo Inc. v + 151 Montague Opportunity LLCSup Ct, Kings County11/30/20232023 NY Slip Op 34218(U)
    Rock-Park 94 LLC v CAMBA, + Inc.Sup Ct, Kings County11/27/20232023 NY Slip Op 34219(U)
    Buccio v SinghSup Ct, Kings County11/15/20232023 NY Slip Op 34220(U)
    Svetlichnyy v Cornell Univ. + Sup Ct, Kings County11/20/20232023 NY Slip Op 34221(U)
    Alpine Ready Mix Inc. v Happy + Living Dev., LLCSup Ct, Kings County11/20/20232023 NY Slip Op 34223(U)
    Vasquez v New York City Fire + Dept.Sup Ct, Kings County11/27/20232023 NY Slip Op 34224(U)
    Biodiagnostic Labs, Inc. v + Centers for Care, LLCSup Ct, Kings County11/28/20232023 NY Slip Op 34225(U)
    Ray v RaySup Ct, NY County12/1/20232023 NY Slip Op 34226(U)
    Greenman v MillerSup Ct, NY County12/5/20232023 NY Slip Op 34227(U)
    White Oak Commercial Fin., LLC v + EIA, Inc.Sup Ct, NY County11/27/20232023 NY Slip Op 34228(U)
    Tantaros v KrechmerSup Ct, NY County11/20/20232023 NY Slip Op 34229(U)
    Haider v RupallSup Ct, NY County11/29/20232023 NY Slip Op 34230(U)
    Hartman v Pilata Inc.Sup Ct, NY County12/1/20232023 NY Slip Op 34231(U)
    Pursuit Credit Special + Opportunity Fund, L.P. v KrunchCash, LLCSup Ct, NY County11/28/20232023 NY Slip Op 34232(U)
    Sotheby's, Inc. v August Uribe + Fine Art, LLCSup Ct, NY County11/21/20232023 NY Slip Op 34233(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 07, 2023
    Title + Court + Date + Slip Op No. +
    NYC Blue Mgt. LLC v Finn + Civ Ct City NY, Queens County12/3/20232023 NY Slip Op 23380
    K.L. v J.B.Sup Ct, NY County11/8/20232023 NY Slip Op 51327(U)
    G.W. v J.W.Sup Ct, Westchester County12/6/20232023 NY Slip Op 51328(U)
    Biondo v OrnochSup Ct, Richmond County11/30/20232023 NY Slip Op 51329(U)
    Afanador v State of New + YorkCt Claims10/3/20232023 NY Slip Op 51330(U)
    Loumat Realty Co., LLC v + GilkarovCiv Ct City NY, Queens County12/6/20232023 NY Slip Op 51331(U)
    Bologna v Carmel Richmond + Nursing Home, Inc.Sup Ct, Kings County12/7/20232023 NY Slip Op 51332(U)
    Aghedo v 80 Clarkson LLCCiv Ct City NY, Kings County12/4/20232023 NY Slip Op 34188(U)
    Crest I LP v VenturaCiv Ct City NY, NY County3/1/20212021 NY Slip Op 34038(U)
    Sayles v Urban Am. Mgt. Corp. + Sup Ct, NY County11/29/20232023 NY Slip Op 34189(U)
    Kiehm v KimSup Ct, NY County12/1/20232023 NY Slip Op 34190(U)
    Matter of 738 E. 6th Owner (DE) + LLC v New York City Dept. of Hous. Preserv. & Dev. Sup Ct, NY County12/4/20232023 NY Slip Op 34191(U)
    Matter of GPG 592 LLC v New York + City Dept. of Hous. Preserv. & Dev.Sup Ct, NY County12/4/20232023 NY Slip Op 34192(U)
    Matter of DS Brooklyn Portfolio + Owner LLC v New York City Dept. of Hous. Preserv. & Dev.Sup Ct, NY County12/4/20232023 NY Slip Op 34193(U)
    NYCTL 2019-A Trust v Yelagina + Sup Ct, NY County12/1/20232023 NY Slip Op 34194(U)
    Matter of 326 Bedford Ventures + LLC v New York City Dept. of Hous. Preserv. & Dev.Sup Ct, NY County12/4/20232023 NY Slip Op 34195(U)
    Gross v MTGLQ Invs., L.P. + Sup Ct, Kings County12/4/20232023 NY Slip Op 34196(U)
    Follman v GruberSup Ct, Kings County11/30/20232023 NY Slip Op 34197(U)
    Matter of W 36th Villa LLC, v New + York State Div. of Hous. & Community RenewalSup Ct, Kings County11/6/20232023 NY Slip Op 34198(U)
    Varona v Story Ave. E. + Residential, LLCSup Ct, Kings County11/20/20232023 NY Slip Op 34199(U)
    Valentine v LobelSup Ct, Kings County12/4/20232023 NY Slip Op 34200(U)
    Noboa v AGBH Print. House + Holdings, L.L.C.Sup Ct, Kings County11/27/20232023 NY Slip Op 34201(U)
    Muharram v DialloSup Ct, Kings County11/28/20232023 NY Slip Op 34202(U)
    209 Barbey St. Trust v + ScotlandSup Ct, Kings County11/28/20232023 NY Slip Op 34203(U)
    Glover v AshmanSup Ct, Kings County11/1/20232023 NY Slip Op 34204(U)
    ARK570 Doe v Diocese of + BrooklynSup Ct, Kings County11/15/20232023 NY Slip Op 34205(U)
    Ramirez v IssaSup Ct, Kings County11/28/20232023 NY Slip Op 34206(U)
    Nelson v CRP N.Y. Ave. LLC + Sup Ct, Kings County11/28/20232023 NY Slip Op 34207(U)
    Miles-Forde v Green Line Taxi + Inc.Sup Ct, Kings County11/17/20232023 NY Slip Op 34208(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 06, 2023
    Title + Court + Date + Slip Op No. +
    RH 528 W. 159 St. LP v + TimofeevaCiv Ct City NY, NY County12/5/20232023 NY Slip Op 23377
    35-09 LLC v Navedo-Perez + Civ Ct City NY, Queens County12/6/20232023 NY Slip Op 23378
    Koncikowski v Albany Med. + Ctr. Hosp.Sup Ct, Warren County12/4/20232023 NY Slip Op 23379
    Corneille v AliSup Ct, Suffolk County11/28/20232023 NY Slip Op 51318(U)
    Matter of Progressive Ins. + Co. v OteroSup Ct, Richmond County12/1/20232023 NY Slip Op 51319(U)
    Gross v BrachSup Ct, Kings County3/6/20232023 NY Slip Op 51320(U)
    People v MorganSup Ct, Kings County12/4/20232023 NY Slip Op 51321(U)
    People v HooksCrim Ct City NY, Kings County12/6/20232023 NY Slip Op 51322(U)
    People v KingsberryCrim Ct City NY, Bronx County12/5/20232023 NY Slip Op 51323(U)
    People v FrankCrim Ct City NY, Queens County12/4/20232023 NY Slip Op 51324(U)
    People v SaquijxolCrim Ct City NY, Queens County12/6/20232023 NY Slip Op 51325(U)
    Matter of 201 EB Dev. III, LLC v + New York City Dept. of Bldgs.Sup Ct, NY County12/2/20232023 NY Slip Op 34153(U)
    Perez v Anejo, LLCSup Ct, NY County12/1/20232023 NY Slip Op 34154(U)
    Sayles v New York City Hous. + Auth.Sup Ct, NY County11/30/20232023 NY Slip Op 34155(U)
    Cerrone v City of New York + Sup Ct, NY County11/30/20232023 NY Slip Op 34156(U)
    Desposito v JungSup Ct, NY County12/1/20232023 NY Slip Op 34157(U)
    Deleon v 560-568 Audubon Realty, + LLCSup Ct, NY County12/1/20232023 NY Slip Op 34158(U)
    Solarte v Brearley Sch.Sup Ct, NY County11/30/20232023 NY Slip Op 34159(U)
    Alatorre v Port Auth. of N.Y. + & N.J.Sup Ct, NY County12/1/20232023 NY Slip Op 34160(U)
    Saunders v New York City Hous. + Auth.Sup Ct, NY County11/30/20232023 NY Slip Op 34161(U)
    Iacovacci v Brevet Holdings, + LLCSup Ct, NY County11/27/20232023 NY Slip Op 34162(U)
    Escobedo v Circle Line + Sightseeing Yachts, Inc.Sup Ct, NY County11/27/20232023 NY Slip Op 34163(U)
    Ashley v Red Lobster Hospitality + LLCSup Ct, NY County11/21/20232023 NY Slip Op 34164(U)
    Almark Holding Co. LLC v Jung + MoonSup Ct, NY County11/17/20232023 NY Slip Op 34165(U)
    Real World Holdings LLC v 393 W. + Broadway Corp.Sup Ct, NY County11/28/20232023 NY Slip Op 34166(U)
    West 152nd Assoc., L.P. v + GassamaSup Ct, NY County11/28/20232023 NY Slip Op 34168(U)
    Davis v AngiolettiSup Ct, NY County11/29/20232023 NY Slip Op 34169(U)
    NYP Holdings, Inc. v New York + City Police Dept.Sup Ct, NY County11/28/20232023 NY Slip Op 34170(U)
    Munoz v A.O. Smith Water Prods. + CoSup Ct, NY County11/21/20232023 NY Slip Op 34171(U)
    Hollingsworth v A.O. Smith Water + Prods. Co.Sup Ct, NY County11/21/20232023 NY Slip Op 34172(U)
    Marino v Air & Liquid Sys. + Corp.Sup Ct, NY County11/27/20232023 NY Slip Op 34173(U)
    Woods v Amchem Prods., Inc. + Sup Ct, NY County11/21/20232023 NY Slip Op 34174(U)
    Gonder v A.O. Smith Water Prods. + CoSup Ct, NY County11/24/20232023 NY Slip Op 34175(U)
    Nankervis v A.O. Smith Water + Prods. CoSup Ct, NY County11/21/20232023 NY Slip Op 34176(U)
    U.S. Bank N.A. v HandlerSup Ct, Kings County11/22/20232023 NY Slip Op 34177(U)
    City of New York v ORJ Props. + Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 34178(U)
    American Funding Servs. v T.N. + Eldridge Devs. LLCSup Ct, NY County12/1/20232023 NY Slip Op 34179(U)
    City of New York v Steven Holl + Architect, P.C.Sup Ct, NY County12/1/20232023 NY Slip Op 34180(U)
    People v National Rifle Assn. of + Am.Sup Ct, NY County11/30/20232023 NY Slip Op 34181(U)
    Commissioners of the State Ins. + Fund v WyckoffSup Ct, NY County11/27/20232023 NY Slip Op 34182(U)
    Stone v St. Leo R.C. Church + Sup Ct, Kings County11/20/20232023 NY Slip Op 34183(U)
    Lewis v MatiasSup Ct, Kings County11/21/20232023 NY Slip Op 34184(U)
    Henry v CookSup Ct, Kings County11/27/20232023 NY Slip Op 34185(U)
    Anderson v Toll House, LLC + Sup Ct, Kings County12/1/20232023 NY Slip Op 34186(U)
    Guzman v 345 PAS Owner, LLC + Sup Ct, Kings County11/20/20232023 NY Slip Op 34187(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 05, 2023
    Title + Court + Date + Slip Op No. +
    S.B. v A.K.Sup Ct, Westchester County12/4/20232023 NY Slip Op 23373
    Potentia Mgt. Group, LLC v + D.W.Utica City Ct12/1/20232023 NY Slip Op 23374
    Temo Realty LLC v Herrera + Civ Ct City NY, Kings County11/29/20232023 NY Slip Op 23375
    Delgado v State of New + YorkCt Claims11/22/20232023 NY Slip Op 23376
    201 E. 164th St. Assoc., LLC + v CalderonCiv Ct City NY, Bronx County12/4/20232023 NY Slip Op 51315(U)
    People v PriceCrim Ct City NY, Bronx County12/4/20232023 NY Slip Op 51316(U)
    Town of Hartford v Swezey + Sup Ct, Washington County11/30/20232023 NY Slip Op 51317(U)
    Dadey v Onondaga County Comm. of + the Conservative Party of NYSSup Ct, Onondaga County11/30/20232023 NY Slip Op 34150(U)
    Stevenson v Ghosh-HazraSup Ct, Bronx County9/28/20212021 NY Slip Op 34032(U)
    Skyers v City of New York + Sup Ct, Bronx County8/18/20202020 NY Slip Op 35525(U)
    Rivera v Lopez-ReyesSup Ct, Bronx County12/22/20202020 NY Slip Op 35526(U)
    Martinez v EderSup Ct, Bronx County6/29/20202020 NY Slip Op 35527(U)
    Sarowar v ViejoSup Ct, Bronx County10/30/20192019 NY Slip Op 35048(U)
    Metzger v DL Peterson Trust + Sup Ct, Bronx County8/5/20212021 NY Slip Op 34033(U)
    Lesch v Advantage Rent A Car + Sup Ct, Bronx County11/1/20192019 NY Slip Op 35049(U)
    Saduzy v MazumderSup Ct, Bronx County10/15/20192019 NY Slip Op 35050(U)
    Tejada v 15 Cliff LLCSup Ct, Bronx County11/4/20192019 NY Slip Op 35051(U)
    Ayele v ValentineSup Ct, Bronx County11/7/20192019 NY Slip Op 35052(U)
    Ayele v ValentineSup Ct, Bronx County5/30/20192019 NY Slip Op 35053(U)
    Kriskovich v CruzSup Ct, Bronx County12/14/20202020 NY Slip Op 35528(U)
    Ramos v Clam Diggers Restoration + LLCSup Ct, Bronx County2/22/20212021 NY Slip Op 34034(U)
    Colon v Raymour Furniture Co. + Inc.Sup Ct, Bronx County7/21/20202020 NY Slip Op 35529(U)
    Harris v BonnoSup Ct, Bronx County9/28/20202020 NY Slip Op 35530(U)
    Upson v Oliveira Contr., Inc. + Sup Ct, Bronx County12/9/20202020 NY Slip Op 35531(U)
    Ruiz v Parkchester S. + Condominium, Inc.Sup Ct, Bronx County8/7/20192019 NY Slip Op 35054(U)
    Granieri v MaksumovSup Ct, Bronx County6/15/20202020 NY Slip Op 35532(U)
    Corrales v Urgent Care Physician + of N.Y.-Hartsdale, PLLCSup Ct, Bronx County3/6/20202020 NY Slip Op 35533(U)
    Ramirez-Cruz v + Montgomery-GilesSup Ct, Bronx County11/7/20192019 NY Slip Op 35055(U)
    Turner v DoeSup Ct, Bronx County7/30/20202020 NY Slip Op 35534(U)
    O'Shea v Procida Constr. + Corp.Sup Ct, Bronx County9/26/20222022 NY Slip Op 34655(U)
    Jerez v MorenoSup Ct, Bronx County11/25/20192019 NY Slip Op 35056(U)
    Betancourt v ARC NYC123 William, + LLCSup Ct, Bronx County8/31/20232023 NY Slip Op 34151(U)
    Torres v LevySup Ct, Bronx County7/14/20232023 NY Slip Op 34152(U)
    Rosa v 267 E. 202 LLCSup Ct, Bronx County3/28/20192019 NY Slip Op 35057(U)
    Richardson v CancelSup Ct, Bronx County2/7/20222022 NY Slip Op 34656(U)
    Mirza v Tribeca Auto. Inc. + Sup Ct, Bronx County8/2/20192019 NY Slip Op 35058(U)
    Menzies v MoonabSup Ct, Bronx County10/7/20192019 NY Slip Op 35059(U)
    Rosa v DiloneSup Ct, Bronx County10/8/20192019 NY Slip Op 35060(U)
    Hallback v City of New York + Sup Ct, Bronx County9/21/20222022 NY Slip Op 34657(U)
    Davis v SantosSup Ct, Bronx County10/19/20212021 NY Slip Op 34036(U)
    Cattaraugus County v New York + State Dept. of HealthSup Ct, Albany County10/12/20212021 NY Slip Op 34037(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 04, 2023
    Title + Court + Date + Slip Op No. +
    Matter of MaltzSur Ct, Richmond County11/30/20232023 NY Slip Op 23372
    Department of Hous. Preserv. + & Dev. of the City of N.Y. v OhebshalomCiv Ct City NY, Queens County11/29/20232023 NY Slip Op 51313(U)
    Scoca v KosmachevaJust Ct Village Tuckahoe, Westchester County11/16/20232023 NY Slip Op 51314(U)
    Collazo v AduseiSup Ct, Bronx County9/27/20192019 NY Slip Op 35038(U)
    Catania v LirianoSup Ct, Bronx County4/15/20212021 NY Slip Op 34027(U)
    Catania v LirianoSup Ct, Bronx County11/6/20202020 NY Slip Op 35519(U)
    Catania v LirianoSup Ct, Bronx County2/21/20202020 NY Slip Op 35520(U)
    Contreras v CharrierSup Ct, Bronx County10/15/20192019 NY Slip Op 35039(U)
    Franco v NarvaezSup Ct, Bronx County11/19/20192019 NY Slip Op 35040(U)
    Naranjo v CampbellSup Ct, Bronx County10/10/20192019 NY Slip Op 35041(U)
    Clarke v BerdonSup Ct, Bronx County11/8/20192019 NY Slip Op 35042(U)
    Moore v JohnsonSup Ct, Bronx County10/9/20192019 NY Slip Op 35043(U)
    Figueroa v WilliamsSup Ct, Bronx County7/29/20212021 NY Slip Op 34028(U)
    Tavarez v Linda Transp. Corp. + Sup Ct, Bronx County10/9/20192019 NY Slip Op 35044(U)
    Lioreisis v MazaSup Ct, Bronx County7/14/20212021 NY Slip Op 34029(U)
    Gonzalez v SeraphinSup Ct, Bronx County4/28/20202020 NY Slip Op 35521(U)
    Eusebio v Ahern Rentals Inc. + Sup Ct, Bronx County11/21/20192019 NY Slip Op 35045(U)
    Lewis v KaboreSup Ct, Bronx County9/28/20212021 NY Slip Op 34030(U)
    Wright v Plaza Constr. LLC + Sup Ct, Bronx County12/21/20202020 NY Slip Op 35522(U)
    Wilson v Otis El. Co.Sup Ct, Bronx County10/22/20192019 NY Slip Op 35046(U)
    Colarossi v ShahSup Ct, Bronx County8/13/20202020 NY Slip Op 35523(U)
    Pryce v SanchezSup Ct, Bronx County11/1/20192019 NY Slip Op 35047(U)
    Meza v GarciaSup Ct, Bronx County7/28/20212021 NY Slip Op 34031(U)
    Reyes v MaldonadoSup Ct, Bronx County3/17/20202020 NY Slip Op 35524(U)
    Owczarek v J.T. Magen & Co. + Inc.Sup Ct, NY County11/29/20232023 NY Slip Op 34144(U)
    Clayman Rosenberg Kirshner & + Linder LLP v New York County Dist. Attorney's Off.Sup Ct, NY County11/29/20232023 NY Slip Op 34145(U)
    AMG Solutions LLC v Hudson + Meridian Constr. Group, LLCSup Ct, NY County11/20/20232023 NY Slip Op 34146(U)
    Rich v New York City Tr. + Auth.Sup Ct, NY County11/27/20232023 NY Slip Op 34148(U)
    40 CPS Assoc., LLC v Elnashar + Sup Ct, NY County11/15/20232023 NY Slip Op 34149(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 01, 2023
    Title + Court + Date + Slip Op No. +
    Matter of Andres Q. v + Letiticia Y.A.Fam Ct, Monroe County11/18/20222022 NY Slip Op 51416(U)
    C.M. v E.M.Sup Ct, Nassau County11/28/20232023 NY Slip Op 23369
    Ditech Fin. LLC v Naidu + Sup Ct, Queens County10/18/20232023 NY Slip Op 23370
    G.P. v State of New York + Ct Claims10/16/20232023 NY Slip Op 23371
    Bank of N.Y. v Harper + Sup Ct, Suffolk County10/2/20232023 NY Slip Op 51306(U)
    Cadillac Leasing L.P. v + KamaraCiv Ct City NY, Queens County11/30/20232023 NY Slip Op 51307(U)
    Sims v RegisDist Ct Nassau County, Second Dist11/30/20232023 NY Slip Op 51308(U)
    BP New Bldg. LLC v + SteplightCiv Ct City NY, Bronx County8/25/20232023 NY Slip Op 51309(U)
    Madison Advance LLC v Design + Light. Group LLCSup Ct, Kings County12/1/20232023 NY Slip Op 51310(U)
    American Tr. Ins. Co. v + Nexray Med. Imaging P.C.Sup Ct, Kings County12/1/20232023 NY Slip Op 51311(U)
    429 Lenox Realty, LLC v A + Taste of Seafood, Inc.Civ Ct City NY, NY County6/7/20232023 NY Slip Op 51312(U)
    Laurelton Estates LLC. v + PrinceSup Ct, Queens County11/20/20232023 NY Slip Op 34118(U)
    Serafin v New York State Dept. of + HealthSup Ct, Albany County12/9/20212021 NY Slip Op 34025(U)
    Cassino-Sharp v Whispering Hills + Homeowners Assn., Inc.Sup Ct, Orange County12/2/20202020 NY Slip Op 35517(U)
    Diamond v WalkerSup Ct, Suffolk County4/23/20202020 NY Slip Op 35518(U)
    Diamond v WalkerSup Ct, Suffolk County1/4/20172017 NY Slip Op 33554(U)
    Perez v City of New YorkSup Ct, NY County11/20/20232023 NY Slip Op 34119(U)
    Bourne v Martin Dev. & Mgt., + LLC.Sup Ct, Kings County11/22/20232023 NY Slip Op 34120(U)
    Maria v Manhattan Homes Co., + LLCSup Ct, NY County11/16/20232023 NY Slip Op 34121(U)
    Ming Tang v PS Marcato El. Co., + Inc.Sup Ct, NY County11/28/20232023 NY Slip Op 34122(U)
    Baptiste v New York City Tr. + Auth.Sup Ct, NY County11/20/20232023 NY Slip Op 34123(U)
    In Re Sea Ltd. Sec. Litig. v + XXXSup Ct, NY County11/20/20232023 NY Slip Op 34124(U)
    Lopez v 18-20 Park 84 Corp. + Sup Ct, NY County11/24/20232023 NY Slip Op 34125(U)
    Alexopoulos v 2 Rector St. (NY), + LLCSup Ct, NY County11/20/20232023 NY Slip Op 34126(U)
    Normanus Realty LLC v 154 E. 62 + LLCSup Ct, NY County11/27/20232023 NY Slip Op 34127(U)
    Yeiser v SchiavocampoSup Ct, NY County11/20/20232023 NY Slip Op 34128(U)
    Littleton v Mode Pub. Relations + LLCSup Ct, NY County5/24/20232023 NY Slip Op 34129(U)
    Stuyvesant Town-Peter Cooper Vil. + Tenants Assn. v New York State Div. of Hous. & Community RenewalSup Ct, NY County11/22/20232023 NY Slip Op 34130(U)
    Evans v PunterSup Ct, NY County11/22/20232023 NY Slip Op 34131(U)
    Komomolov v PopikSup Ct, NY County11/27/20232023 NY Slip Op 34132(U)
    Starks v Metropolitan Transp. + Auth.Sup Ct, NY County11/17/20232023 NY Slip Op 34133(U)
    Yankiver v New York City Tr. + Auth.Sup Ct, NY County11/15/20232023 NY Slip Op 34134(U)
    Mironov v Memorial Hosp. for + Cancer & Allied DiseasesSup Ct, NY County11/27/20232023 NY Slip Op 34135(U)
    Torres v 411-413 Broadway, + LLCSup Ct, NY County11/16/20232023 NY Slip Op 34136(U)
    Chapin v 1818 Nadlan LLC. + Sup Ct, NY County11/21/20232023 NY Slip Op 34137(U)
    El-Yamani v F.B.M. Cab Corp + Sup Ct, NY County11/28/20232023 NY Slip Op 34138(U)
    McCrae v City of New York + Sup Ct, NY County11/1/20232023 NY Slip Op 34139(U)
    245 Park Ave. Prop. LLC v HNA + Capital US LLCSup Ct, NY County11/17/20232023 NY Slip Op 34140(U)
    Silverman v LeibowitzSup Ct, NY County11/22/20232023 NY Slip Op 34141(U)
    Murphy v City of New York + Sup Ct, NY County11/20/20232023 NY Slip Op 34142(U)
    Lardon Constr. Corp. v Mark + Cerrone, Inc.Sup Ct, Niagara County4/11/20222022 NY Slip Op 34653(U)
    Clarke v American Credit + AcceptanceSup Ct, Ulster County11/14/20232023 NY Slip Op 34143(U)
    Rosas v PetkovichSup Ct, Dutchess County10/8/20212021 NY Slip Op 34026(U)
    Hart v City of BuffaloSup Ct, Erie County1/20/20222022 NY Slip Op 34654(U)


    + + + +
    +
    + + +
    +
    E-mail the Law
+
+
+
+Reporting Bureau +
    +
    New York State Law Reporting Bureau
    + 17 Lodge St., Albany NY 12207
    + phone: (518) 453-6900
    + fax: (518) 426-1640
    +
    +
    +
    + +
    + +  
    + +  
    + +  
    + +
    + + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nycivct_example.compare.json b/tests/examples/opinions/united_states/nycivct_example.compare.json new file mode 100644 index 000000000..9488ac59c --- /dev/null +++ b/tests/examples/opinions/united_states/nycivct_example.compare.json @@ -0,0 +1,38 @@ +[ + { + "case_dates": "2023-12-27", + "case_names": "INK 954 LLC v. Mann", + "download_urls": "tests/examples/opinions/3dseries/2023/2023_51437.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51437(U)", + "case_name_shorts": "Mann", + "child_courts": "Civ Ct City NY, Queens County" + }, + { + "case_dates": "2023-12-21", + "case_names": "Gur Assoc. LLC v. Convenience on Eight Corp.", + "download_urls": "tests/examples/opinions/3dseries/2023/2023_23413.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 23413", + "case_name_shorts": "", + "child_courts": "Civ Ct City NY, NY County" + }, + { + "case_dates": "2023-12-18", + "case_names": "Parisien v. MVAIC", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34542.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34542(U)", + "case_name_shorts": "Parisien", + "child_courts": "Civ Ct City NY, Kings County" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nycivct_example.html b/tests/examples/opinions/united_states/nycivct_example.html new file mode 100644 index 000000000..6c3197be4 --- /dev/null +++ b/tests/examples/opinions/united_states/nycivct_example.html @@ -0,0 +1,415 @@ + + + + + + + Other Court Decisions + + + + + + + + + + + +
    + + + + + + +
      January, 2024  
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 04, 2024
    Title + Court + Date + Slip Op No. +
    Gur Assoc. LLC v Convenience on Eight + Corp.Civ Ct City NY, NY County12/21/20232023 NY Slip Op 23413
    Matter of Dionisio v BelmontSup Ct, Westchester County12/21/20232023 NY Slip Op 23414
    People v NichollsSup Ct, Kings County1/2/20242024 NY Slip Op 24003
    Wells Fargo Bank, N.A. v DefoeSup Ct, Richmond County12/4/20232023 NY Slip Op 34558(U)
    Matney v BoyleSup Ct, Saratoga County1/2/20242024 NY Slip Op 30001(U)
    Mule v SillermanSup Ct, NY County1/1/20242024 NY Slip Op 30002(U)
    Bunn v Faxton-St. Luke's HealthcareSup Ct, Oneida County10/4/20222022 NY Slip Op 34670(U)
    Contona v GodasSup Ct, Nassau County1/31/20192019 NY Slip Op 35075(U)
    Atalaya Special Opportunities Fund VII LP v + WhitedSup Ct, NY County12/31/20232023 NY Slip Op 34559(U)
    U.S. Bank N.A. v DLJ Mtge. Capital, Inc. + Sup Ct, NY County12/30/20232023 NY Slip Op 34560(U)
    Wilmington Trust, N.A. v GawlowskiSup Ct, Suffolk County4/18/20222022 NY Slip Op 34671(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 03, 2024
    Title + Court + Date + Slip Op No. +
    Pennymac Corp. v ErnesteSup Ct, Queens County12/6/20232023 NY Slip Op 23411
    Matter of HusseinSur Ct, Richmond County12/28/20232023 NY Slip Op 23412
    P.C. v L.C.Sup Ct, Warren County12/26/20232023 NY Slip Op 51439(U)
    People v K.B.Sup Ct, Erie County9/8/20232023 NY Slip Op 51440(U)
    Roskin v Northern Adult Day Health Care + Ctr.Sup Ct, Kings County12/28/20232023 NY Slip Op 51441(U)
    People v VincentSup Ct, Kings County1/2/20242024 NY Slip Op 24002
    Parisien v MVAICCiv Ct City NY, Kings County12/18/20232023 NY Slip Op 34542(U)
    State Farm. Mut. Auto. Ins. Co. v Global + Surgery Ctr., LLCSup Ct, NY County12/29/20232023 NY Slip Op 34543(U)
    Matter of Promenade Nelson Apts., LLC v New + York State Div. of Hous. & Community RenewalSup Ct, NY County12/28/20232023 NY Slip Op 34544(U)
    Matter of Windermere Props. LLC v City of New + YorkSup Ct, NY County12/21/20232023 NY Slip Op 34545(U)
    Dabas v WhyneSup Ct, Kings County12/27/20232023 NY Slip Op 34546(U)
    Matter of New York City Tr. Auth. v Charter + Oak Fire Ins. Co.Sup Ct, NY County12/28/20232023 NY Slip Op 34547(U)
    Roskin v Northern Adult Day Health Care + Ctr.Sup Ct, Kings County12/28/20232023 NY Slip Op 34548(U)
    Koshelev v Mortar Architecture PLLCSup Ct, Kings County12/5/20232023 NY Slip Op 34549(U)
    Clairvil v VemulapalliSup Ct, Kings County12/28/20232023 NY Slip Op 34550(U)
    Graulau v RosenbergSup Ct, Kings County12/19/20232023 NY Slip Op 34551(U)
    Simpson v Success Academy Charter Schs., + Inc.Sup Ct, Kings County12/21/20232023 NY Slip Op 34552(U)
    Cortlandt St. Recovery Corp. v Hellas + Telecommunications II, S.C.A.Sup Ct, NY County12/28/20232023 NY Slip Op 34553(U)
    Pearl St. Co-Invest I, LLC v MapR (ABC) + LLCSup Ct, NY County12/28/20232023 NY Slip Op 34554(U)
    Reveam, Inc. v Taylor Frères Capital Mkts., + LLCSup Ct, NY County12/29/20232023 NY Slip Op 34555(U)
    Kruchten v Eastman Kodak Co.Sup Ct, NY County12/29/20232023 NY Slip Op 34556(U)
    Matter of DavisSur Ct, NY County12/28/20232023 NY Slip Op 34557(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 02, 2024
    Title + Court + Date + Slip Op No. +
    People v SandersCrim Ct City NY, Bronx County12/14/20232023 NY Slip Op 51435(U)
    People v GraySup Ct, Kings County12/29/20232023 NY Slip Op 51436(U)
    INK 954 LLC v MannCiv Ct City NY, Queens County12/27/20232023 NY Slip Op 51437(U)
    People v SolomonidisCounty Ct, Genesee County12/29/20232023 NY Slip Op 51438(U)
    People v BarriosCrim Ct City NY, Bronx County1/1/20242024 NY Slip Op 24001
    People v BowmanJust Ct Town Webster, Monroe County1/2/20242024 NY Slip Op 50001(U)
    Velez v LSG 105 W. 28th, LLCSup Ct, NY County12/27/20232023 NY Slip Op 34537(U)
    Servedio v A.O. Smith Water Prods. Co. + Sup Ct, NY County12/27/20232023 NY Slip Op 34538(U)
    Daly v Amchem Prods., Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34539(U)
    Desiena v Aerco Intl. Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34540(U)
    Desiena v Aerco Intl. Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34541(U)


    + + + +
    +
    + + +
    +
    E-mail the Law
+
+
+
+Reporting Bureau +
    +
    New York State Law Reporting Bureau
    + 17 Lodge St., Albany NY 12207
    + phone: (518) 453-6900
    + fax: (518) 426-1640
    +
    +
    +
    + +
    + +  
    + +  
    + +  
    + +
    + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyclaimsct_example.compare.json b/tests/examples/opinions/united_states/nyclaimsct_example.compare.json new file mode 100644 index 000000000..51e8f973a --- /dev/null +++ b/tests/examples/opinions/united_states/nyclaimsct_example.compare.json @@ -0,0 +1,74 @@ +[ + { + "case_dates": "2023-12-13", + "case_names": "Leibovitz v. State of New York", + "download_urls": "https://nycourts.gov/reporter/3dseries/2023/2023_51366.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51366(U)", + "case_name_shorts": "Leibovitz", + "child_courts": "" + }, + { + "case_dates": "2023-11-22", + "case_names": "Delgado v. State of New York", + "download_urls": "https://nycourts.gov/reporter/3dseries/2023/2023_23376.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 23376", + "case_name_shorts": "Delgado", + "child_courts": "" + }, + { + "case_dates": "2023-10-16", + "case_names": "G.P. v. State of New York", + "download_urls": "https://nycourts.gov/reporter/3dseries/2023/2023_23371.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 23371", + "case_name_shorts": "G.P.", + "child_courts": "" + }, + { + "case_dates": "2023-10-03", + "case_names": "Afanador v. State of New York", + "download_urls": "https://nycourts.gov/reporter/3dseries/2023/2023_51330.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51330(U)", + "case_name_shorts": "Afanador", + "child_courts": "" + }, + { + "case_dates": "2023-09-05", + "case_names": "Johnson v. State of New York", + "download_urls": "https://nycourts.gov/reporter/3dseries/2023/2023_51361.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51361(U)", + "case_name_shorts": "", + "child_courts": "" + }, + { + "case_dates": "2023-08-02", + "case_names": "Bracero v. State of New York", + "download_urls": "https://nycourts.gov/reporter/3dseries/2023/2023_51336.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51336(U)", + "case_name_shorts": "Bracero", + "child_courts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyclaimsct_example.html b/tests/examples/opinions/united_states/nyclaimsct_example.html new file mode 100644 index 000000000..d01e00f01 --- /dev/null +++ b/tests/examples/opinions/united_states/nyclaimsct_example.html @@ -0,0 +1,4888 @@ + + + + + + + Other Court Decisions + + + + + + + + + + + +
    + + + + + + +
      December, 2023  
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 29, 2023
    Title + Court + Date + Slip Op No. +
    Stefanik v HochulSup Ct, Albany County12/26/20232023 NY Slip Op 34517(U)
    Lanza v Whole Foods Mkt. Group, + Inc.Sup Ct, NY County12/18/20232023 NY Slip Op 34518(U)
    Porter v Cliffside Nursing Home, + Inc.Sup Ct, Kings County12/5/20232023 NY Slip Op 34520(U)
    Antebi v GuindiSup Ct, Kings County12/21/20232023 NY Slip Op 34521(U)
    Antara Capital Master Fund LP v + Bombardier Inc.Sup Ct, NY County12/22/20232023 NY Slip Op 34524(U)
    SH575 Holdings LLC v Richmond + Stuyvesant Holdings, LLCSup Ct, NY County12/22/20232023 NY Slip Op 34525(U)
    Oasis Med. & Surgical + Wellness v + New Jersey Mfrs. Ins. Co.Sup Ct, NY County12/21/20232023 NY Slip Op 34526(U)
    Matter of Infinity Q Diversified + Alpha + Fund Sec. Litig. v XXXSup Ct, NY County12/21/20232023 NY Slip Op 34527(U)
    Country-Wide Ins. Co. v Geico + Gen. + Ins. Co.Sup Ct, NY County12/20/20232023 NY Slip Op 34528(U)
    Tremor Video, Inc. v Alphonso, + Inc.Sup Ct, NY County12/22/20232023 NY Slip Op 34529(U)
    Matter of AKF Inc. v Jin + Clothing, + Inc.Sup Ct, NY County12/21/20232023 NY Slip Op 34530(U)
    Forum Gallery Inc. v Spirits Fin. + Corp.Sup Ct, NY County12/23/20232023 NY Slip Op 34531(U)
    AC Penguin Prestige Corp. v Two + Thousand Fifteen Artisanal LLCSup Ct, NY County12/19/20232023 NY Slip Op 34532(U)
    Samsung Elecs. Co., Ltd. v MPEG + LA, L.L.C.Sup Ct, NY County12/21/20232023 NY Slip Op 34533(U)
    Manhattan Concrete LLC v Prime + Prop. & Cas. Ins. Inc.Sup Ct, NY County12/21/20232023 NY Slip Op 34534(U)
    O'Connor v Society Pass + Inc.Sup Ct, NY County12/23/20232023 NY Slip Op 34535(U)
    Martinez v Fromer Eye Ctrs. + Sup Ct, NY County12/21/20232023 NY Slip Op 34536(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 28, 2023
    TitleCourtDateSlip Op No.
    Federal Natl. Mtge. Assn. + ("Fannie Mae") v KerendianSup Ct, Nassau County10/13/20232023 NY Slip Op 34490(U)
    Parisien v MVAICCiv Ct City NY, Kings County12/8/20232023 NY Slip Op 34491(U)
    Turner v DelacruzSup Ct, Bronx County4/26/20212021 NY Slip Op 34048(U)
    Thompson v + 735 Equities LLCSup Ct, Bronx County3/24/20222022 NY Slip Op 34666(U)
    Almenares v V VA Serv. Corp. + Sup Ct, Bronx County9/21/20212021 NY Slip Op 34049(U)
    Saleh v RiveraSup Ct, Bronx County1/31/20202020 NY Slip Op 35548(U)
    Alexander v GuzmanSup Ct, Bronx County1/25/20222022 NY Slip Op 34667(U)
    Fagbemi-Mohamed v Rodriguez + Sup Ct, Bronx County6/30/20222022 NY Slip Op 34668(U)
    Salcedo v 906 Holding LLC + Sup Ct, Bronx County12/3/20192019 NY Slip Op 35072(U)
    Santos v Holy Temple Church of + the Lord Jesus ChristSup Ct, Bronx County9/15/20202020 NY Slip Op 35549(U)
    Herbst v Hospice of N.Y., LLC + Sup Ct, Bronx County1/6/20202020 NY Slip Op 35550(U)
    Duran v Venture Leasing LLC. + Sup Ct, Bronx County7/29/20212021 NY Slip Op 34050(U)
    Acevedo v Ji Hee YouSup Ct, Bronx County5/15/20202020 NY Slip Op 35551(U)
    Diaz v H&Z Bldg. Consulting + Group, LLCSup Ct, Bronx County1/29/20202020 NY Slip Op 35552(U)
    Martinez v SantosSup Ct, Bronx County6/30/20202020 NY Slip Op 35553(U)
    Sabater v NoumbiSup Ct, Bronx County3/16/20202020 NY Slip Op 35554(U)
    Neder v AndrewsSup Ct, Bronx County11/24/20202020 NY Slip Op 35555(U)
    Dotel v Mount Hope Preserv. Apts. + 1A Hous. Dev. Fund Co., Inc.Sup Ct, Bronx County11/30/20232023 NY Slip Op 34492(U)
    Jimenez-Couret v LinzoSup Ct, Bronx County1/27/20222022 NY Slip Op 34669(U)
    Stephenson v ArdoviniSup Ct, Bronx County11/7/20192019 NY Slip Op 35073(U)
    Wallis v HarrisonSup Ct, Bronx County11/1/20192019 NY Slip Op 35074(U)
    Gomez v MalekSup Ct, Bronx County5/21/20202020 NY Slip Op 35556(U)
    "John Doe I" v Iona Preparatory + Sch.Sup Ct, Bronx County7/1/20202020 NY Slip Op 35557(U)
    Stagnari v BunnSup Ct, Onondaga County12/30/20212021 NY Slip Op 34051(U)
    Requena v New York City Dept. of + Educ.Sup Ct, NY County12/21/20232023 NY Slip Op 34493(U)
    O'Keeffe's Inc. v 400 Times Sq. + Assoc., LLC,Sup Ct, NY County12/23/20232023 NY Slip Op 34494(U)
    Photenas v New York City Tr. + Auth.Sup Ct, NY County12/19/20232023 NY Slip Op 34495(U)
    Carlisle v One Hudson Yards + Owner, LLCSup Ct, NY County12/22/20232023 NY Slip Op 34496(U)
    State Farm Mut. Auto. Ins. Co. v + DestineSup Ct, NY County12/20/20232023 NY Slip Op 34497(U)
    BLDG Mgt. Co., Inc. v Kreloff + Sup Ct, NY County12/20/20232023 NY Slip Op 34498(U)
    Caramante v New York City Hous. + Auth.Sup Ct, NY County12/21/20232023 NY Slip Op 34499(U)
    Matter of Law Offs. of Michael S. + Lamonsoff, PLLC v Gorayeb & Assoc., P.C.Sup Ct, NY County12/21/20232023 NY Slip Op 34500(U)
    Fernandez v LeoSup Ct, NY County12/20/20232023 NY Slip Op 34501(U)
    Surveillance Tech. Oversight + Project v Metropolitan Transp. Auth.Sup Ct, NY County12/21/20232023 NY Slip Op 34502(U)
    Glenmede Trust Co., N.A. v + Infinity Q Capital Mgt. LLCSup Ct, NY County12/21/20232023 NY Slip Op 34503(U)
    Matter of New York City Tr. Auth. + v Charter Oak Fire Ins. Co.Sup Ct, NY County12/22/20232023 NY Slip Op 34504(U)
    Motor Vehicle Acc. Indem. Corp. v + Hereford Ins. Co.Sup Ct, NY County12/21/20232023 NY Slip Op 34505(U)
    City of New York v Peters + Sup Ct, NY County12/21/20232023 NY Slip Op 34506(U)
    Newson v Vivaldi Real Estate + Ltd.Sup Ct, NY County12/21/20232023 NY Slip Op 34507(U)
    Henry v 34th St. Dental + Assoc.Sup Ct, Kings County12/15/20232023 NY Slip Op 34508(U)
    Crespi v PHD GBWSup Ct, Kings County12/21/20232023 NY Slip Op 34509(U)
    Papadimitriou v PappasSup Ct, Kings County12/19/20232023 NY Slip Op 34510(U)
    Kuris v Wiz Kids Ctr. Inc. + Sup Ct, Kings County12/7/20232023 NY Slip Op 34511(U)
    Vasquez v Lorimer St Holdings + LLC.Sup Ct, Kings County12/15/20232023 NY Slip Op 34512(U)
    Itzkowitz v GinsburgSup Ct, Kings County12/4/20232023 NY Slip Op 34513(U)
    Cisco v Verizon N.Y. Inc. + Sup Ct, Kings County12/20/20232023 NY Slip Op 34514(U)
    Donato v 455 Broadway Realty + LLCSup Ct, Kings County12/18/20232023 NY Slip Op 34515(U)
    Romero v 201 W. 79 St. Realty + Corp.Sup Ct, Kings County12/20/20232023 NY Slip Op 34516(U)


    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 27, 2023
    Title + Court + Date + Slip Op No. +
    Clarke v ToureSup Ct, Kings County12/24/20232023 NY Slip Op 23410
    People v Ramirez-Luna + Crim Ct City NY, Queens County5/5/20232023 NY Slip Op 51433(U)
    Cambridge Leasing Prop. LLC v + CachimboCiv Ct City NY, Queens County12/26/20232023 NY Slip Op 51434(U)
    BAA Capital Ventures, LLC v + ToscaniSup Ct, Saratoga County12/22/20232023 NY Slip Op 34467(U)
    Grooney v New York City Tr. + Auth.Sup Ct, NY County12/19/20232023 NY Slip Op 34468(U)
    Stopford v HewittSup Ct, NY County12/20/20232023 NY Slip Op 34469(U)
    Chadrjian v 1278-1284 First Ave. + Realty LLCSup Ct, NY County12/20/20232023 NY Slip Op 34470(U)
    Thompson v City of New York + Sup Ct, NY County12/19/20232023 NY Slip Op 34471(U)
    Matter of 225 Cent. Park N. LLC v + New York State Div. of Hous. & Community RenewalSup Ct, NY County12/20/20232023 NY Slip Op 34472(U)
    Nunez v Nalco Co.Sup Ct, NY County12/20/20232023 NY Slip Op 34473(U)
    Your Vet 1, LLC v Eastman, Cooke + & Assoc., LLCSup Ct, NY County12/19/20232023 NY Slip Op 34474(U)
    Riverton Sq., LLC v New York + State Div. of Hous. & Community RenewalSup Ct, NY County12/20/20232023 NY Slip Op 34475(U)
    Credit Acceptance Corp. v + TraylorSup Ct, Monroe County12/19/20232023 NY Slip Op 34476(U)
    Tasinari v DeMatteoSup Ct, NY County12/20/20232023 NY Slip Op 34477(U)
    Wells Fargo Bank, N.A. v + CardielloSup Ct, Kings County11/7/20232023 NY Slip Op 34478(U)
    Mendoza v 204 Forsyth St., + LLCSup Ct, Kings County12/19/20232023 NY Slip Op 34479(U)
    Elizon DB Transfer Agent LLC v + 1711 E. 15 St. LLCSup Ct, Kings County12/20/20232023 NY Slip Op 34480(U)
    Gordon v PeckSup Ct, NY County12/20/20232023 NY Slip Op 34481(U)
    FPG Cobble Hill Acquisitions, LLC + v Palm Cove Mgt. LLCSup Ct, NY County12/20/20232023 NY Slip Op 34482(U)
    Kapitus Servicing Inc. v Zumma + Mgt. Group, LLCSup Ct, NY County12/20/20232023 NY Slip Op 34483(U)
    ESRT One Grand Cent. Place, + L.L.C. v Peoples Foreign Exch., Corp.Sup Ct, NY County12/20/20232023 NY Slip Op 34484(U)
    Mahland v Noor Staffing Group, + LLCSup Ct, NY County12/20/20232023 NY Slip Op 34485(U)
    Azmy v WatkinsSup Ct, NY County12/20/20232023 NY Slip Op 34486(U)
    Martinez v New York City Health + & Hosps. Corp.Sup Ct, NY County12/20/20232023 NY Slip Op 34487(U)
    Soto v City of New YorkSup Ct, NY County12/11/20232023 NY Slip Op 34489(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 26, 2023
    Title + Court + Date + Slip Op No. +
    Stromberg v East Riv. Hous. + Corp.Sup Ct, NY County12/26/20232023 NY Slip Op 23409
    B&S Duo Realty LLC v + GazaliCiv Ct City NY, Queens County12/21/20232023 NY Slip Op 51423(U)
    Sylvester v JonesSup Ct, Kings County10/13/20232023 NY Slip Op 51424(U)
    U.S. Specialty Ins. Co. v + State Natl. Ins. Co., Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 51425(U)
    Brooke v StreitSup Ct, NY County12/14/20232023 NY Slip Op 51426(U)
    Kapitus + Servicing, Inc. v Zumma Mgt. Group, LLCSup Ct, NY County12/20/20232023 NY Slip Op 51427(U)
    American Express Natl. Bank v + EllisSup Ct, NY County12/23/20232023 NY Slip Op 51428(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 22, 2023
    Title + Court + Date + Slip Op No. +
    Mrijaj v Genting N.Y. + LLC.Sup Ct, Bronx County12/14/20232023 NY Slip Op 23407
    Nellis v Cadman Assoc. + LLCSup Ct, Kings County11/16/20232023 NY Slip Op 23408
    Matter of Federico + (Aloisi)Sur Ct, Putnam County10/20/20232023 NY Slip Op 51418(U)
    People v CareySup Ct, Nassau County12/11/20232023 NY Slip Op 51419(U)
    Torres v New York City + Employees' Retirement Sys.Sup Ct, Kings County12/4/20232023 NY Slip Op 51420(U)
    People v BrennanJust Ct Village Piermont, Rockland County12/22/20232023 NY Slip Op 51421(U)
    People v JuzwaCrim Ct City NY, Queens County7/9/20232023 NY Slip Op 51422(U)
    Estate of Wenger v Good Shepherd + Communities, Inc.Sup Ct, Broome County12/20/20232023 NY Slip Op 34459(U)
    Mohamed v Almarwa Ctr. Inc. + Sup Ct, Kings County8/18/20222022 NY Slip Op 34665(U)
    Tsui v ChouSup Ct, NY County8/8/20192019 NY Slip Op 35071(U)
    Breest v HaggisSup Ct, NY County12/19/20232023 NY Slip Op 34460(U)
    Giraldo v Longford Inc.Sup Ct, NY County12/18/20232023 NY Slip Op 34461(U)
    M.P. v DavidsonSup Ct, Kings County11/3/20232023 NY Slip Op 34462(U)
    Sadlowski v East End Bldg. Servs. + IncSup Ct, Kings County12/18/20232023 NY Slip Op 34463(U)
    Cotto v RobinsonSup Ct, Kings County12/14/20232023 NY Slip Op 34464(U)
    Samsung Elecs. Co., Ltd. v MPEG + LA, L.L.C.Sup Ct, NY County12/19/20232023 NY Slip Op 34465(U)
    Millennium Consolidated Holdings, + LLC v Bluefin Capital Mgt., LLCSup Ct, NY County12/19/20232023 NY Slip Op 34466(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 21, 2023
    Title + Court + Date + Slip Op No. +
    R.G. v S.W.Sup Ct, NY County7/12/20222022 NY Slip Op 51421(U)
    C.R. v M.B.Sup Ct, NY County7/14/20222022 NY Slip Op 51422(U)
    M.B. v M.C.B.Sup Ct, NY County3/22/20222022 NY Slip Op 51423(U)
    D.R. v B.K.Sup Ct, NY County7/27/20222022 NY Slip Op 51424(U)
    C.B. v R.B.Sup Ct, NY County10/28/20222022 NY Slip Op 51425(U)
    Yesilevich v Tenenbaum + Sup Ct, Kings County10/30/20232023 NY Slip Op 23405
    People v SmithSup Ct, Kings County12/20/20232023 NY Slip Op 23406
    K.L. v I.L.Sup Ct, Richmond County12/7/20232023 NY Slip Op 51411(U)
    Kohler v S.L.Sup Ct, Albany County12/20/20232023 NY Slip Op 51412(U)
    People v BowmanJust Ct Town Webster, Monroe County12/21/20232023 NY Slip Op 51413(U)
    Matter of Newsday LLC v Nassau + County Police Dept.Sup Ct, Nassau County11/3/20212023 NY Slip Op 34433(U)
    Aina v Jopal Bronx, LLCSup Ct, Bronx County12/1/20232023 NY Slip Op 34434(U)
    Caicedo v East Gun Hill Rd. Food, + LLCSup Ct, Bronx County9/8/20222022 NY Slip Op 34664(U)
    Thorne v WilsonSup Ct, Bronx County12/23/20202020 NY Slip Op 35546(U)
    Hoffman v Government Empls. Ins. + Co.Sup Ct, Bronx County6/10/20202020 NY Slip Op 35547(U)
    Warshaw Burstein, LLP v Colambda + Tech., Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34435(U)
    Archives, L.L.C. v Schmitter + Sup Ct, NY County12/18/20232023 NY Slip Op 34436(U)
    Matter of Stroock & Stroock + & Lavan, LLP v New York State Dept. of Economic Dev.Sup Ct, NY County12/12/20232023 NY Slip Op 34437(U)
    Goldman v + Vanguard Const. & Dev. Co., Inc. Sup Ct, NY County12/15/20232023 NY Slip Op 34438(U)
    Randel Mold & Die Corp. v + City of New York Off. of Admin. Trials & HearingsSup Ct, NY County12/18/20232023 NY Slip Op 34439(U)
    Smith v TS ZO L.L.C.Sup Ct, NY County12/18/20232023 NY Slip Op 34440(U)
    Friedman v City of New York + Sup Ct, NY County12/18/20232023 NY Slip Op 34441(U)
    Friedman v City of New York + Sup Ct, NY County12/18/20232023 NY Slip Op 34442(U)
    Crown Wisteria, Inc. v Cibani + Sup Ct, NY County12/18/20232023 NY Slip Op 34443(U)
    Bardach v MartynovaSup Ct, NY County12/18/20232023 NY Slip Op 34444(U)
    Public Admr. of Bronx County v + New York City Health & Hosps. Corp.Sup Ct, NY County12/18/20232023 NY Slip Op 34445(U)
    Mawere v LandauSup Ct, Kings County12/8/20232023 NY Slip Op 34446(U)
    Klitnick v WanounoSup Ct, Kings County12/14/20232023 NY Slip Op 34447(U)
    Matter of 22 Title Solutions, LLC + v American Home Assur. Co.Sup Ct, Kings County12/13/20232023 NY Slip Op 34448(U)
    AKF, Inc. v A Pattern Med. + Clinic, P.C.Sup Ct, NY County12/18/20232023 NY Slip Op 34449(U)
    Medallion Fin. Corp. v EDE Serv. + Corp.Sup Ct, NY County12/15/20232023 NY Slip Op 34450(U)
    Board of Mgrs. of 229 E. 2nd St. + Condominium v 229 2nd St. LLCSup Ct, NY County12/18/20232023 NY Slip Op 34451(U)
    Medallion Bank v Chopper Taxi + Inc.Sup Ct, NY County12/15/20232023 NY Slip Op 34452(U)
    EBF Partners, LLC v GRA Group, + Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34453(U)
    Wong v WongSup Ct, NY County12/18/20232023 NY Slip Op 34454(U)
    G.B. v Archdiocese of N.Y. + Sup Ct, NY County12/1/20232023 NY Slip Op 34456(U)
    ARK667 Doe v Archdiocese of + N.Y.Sup Ct, NY County12/5/20232023 NY Slip Op 34457(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 20, 2023
    Title + Court + Date + Slip Op No. +
    G.S. v K.K.Sup Ct, NY County9/12/20222022 NY Slip Op 51420(U)
    Kahn Prop. Owner, LLC v + FruchthandlerSup Ct, Suffolk County10/30/20232023 NY Slip Op 23402
    People v Gonzalez-Mendoza + County Ct, Putnam County12/13/20232023 NY Slip Op 23403
    People v MarteCrim Ct City NY, Queens County12/20/20232023 NY Slip Op 23404
    Cold Spring Country Club, + Inc. v Town of HuntingonSup Ct, Suffolk County10/30/20232023 NY Slip Op 51407(U)
    M.G.W. v V.D.Sup Ct, NY County1/5/20232023 NY Slip Op 51408(U)
    P.G. v P.G.Sup Ct, NY County3/3/20232023 NY Slip Op 51409(U)
    De Andrade v Monadnock Constr., + Inc.Sup Ct, Kings County12/7/20232023 NY Slip Op 34412(U)
    Ner Mordechai Inc. v Ohel Harav + Yenoshua Boruch Found.Sup Ct, Kings County11/28/20232023 NY Slip Op 34413(U)
    Stein v 594 Marcy Villa LLC + Sup Ct, Kings County12/4/20232023 NY Slip Op 34414(U)
    Torres v New York City Employees' + Retirement Sys.Sup Ct, Kings County12/4/20232023 NY Slip Op 34415(U)
    Aicon Contemporary v Dutta + Sup Ct, NY County12/14/20232023 NY Slip Op 34416(U)
    Malick v 302 E. 105th St. LLC + Sup Ct, NY County12/12/20232023 NY Slip Op 34417(U)
    JDS Fourth Ave. JV II LLC v Largo + 613 Baltic St. Partners LLCSup Ct, NY County12/14/20232023 NY Slip Op 34418(U)
    Dong Hua Zhang, v Amy's Rest. NY + Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34419(U)
    Century Indem. Co. v Archdiocese + of N.Y.Sup Ct, NY County12/14/20232023 NY Slip Op 34420(U)
    213 W. 23rd St. LLC v Crunch + Holdings LLCSup Ct, NY County12/14/20232023 NY Slip Op 34421(U)
    Brooke v StreitSup Ct, NY County12/14/20232023 NY Slip Op 34422(U)
    Zurich Am. Ins. Co. v Alterra Am. + Ins. Co.Sup Ct, NY County12/13/20232023 NY Slip Op 34423(U)
    South Beach Tristar 800 LLC v + Lincoln Arts ERFR LLCSup Ct, NY County12/12/20232023 NY Slip Op 34425(U)
    Annovazzi v MeyerSup Ct, NY County12/6/20232023 NY Slip Op 34426(U)
    Columbia Consultants, LLC v + Danucht Entertainment, LLCSup Ct, NY County12/12/20232023 NY Slip Op 34427(U)
    Boston Beer Corp. v Boening + Bros., Inc.Sup Ct, NY County12/15/20232023 NY Slip Op 34428(U)
    Stile v C-Air Customhouse + Brokers-Forwards, Inc.Sup Ct, NY County12/15/20232023 NY Slip Op 34429(U)
    Golden Nugget Atl. City LLC v + ChanSup Ct, NY County12/13/20232023 NY Slip Op 34430(U)
    57th St. Vacation Owners Assn., + Inc. v KongSup Ct, NY County12/11/20232023 NY Slip Op 34431(U)
    S.A. v BellSup Ct, NY County12/14/20232023 NY Slip Op 34432(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 19, 2023
    Title + Court + Date + Slip Op No. +
    People v GaynorSup Ct, Kings County12/18/20232023 NY Slip Op 23395
    People v MavroudisJust Ct Town New Scotland, Albany County12/18/20232023 NY Slip Op 23396
    City of New York v "Doe" + Civ Ct City NY, Bronx County12/18/20232023 NY Slip Op 23397
    Leibovitz v State of New + YorkCt Claims12/13/20232023 NY Slip Op 51366(U)
    People v Cedeno-Ortiz + Crim Ct City NY, Bronx County5/31/20232023 NY Slip Op 51367(U)
    Aina v Jopal Bronx, LLC + Sup Ct, Bronx County12/18/20232023 NY Slip Op 51368(U)
    Corona Apts. LLC v + BarriosCiv Ct City NY, Queens County12/14/20232023 NY Slip Op 51369(U)
    Marino v FriedmanSup Ct, Kings County12/18/20232023 NY Slip Op 51370(U)
    People v ChungCrim Ct City NY, Queens County5/16/20232023 NY Slip Op 51371(U)
    Matter of WoodSurrogate's Ct, Putnam County6/9/20232023 NY Slip Op 34382(U)
    Stuyvesant Owners Inc. v + FrantinoCiv Ct City NY, NY County11/13/20232023 NY Slip Op 34383(U)
    GRM Info. Mgt. Servs. v Silver + Autumn Hotel + (N.Y.) Corp. Ltd.Sup Ct, NY County12/14/20232023 NY Slip Op 34384(U)
    Hidalgo v Support Collection Unit + of NYC + Dept. of Social Servs.Sup Ct, NY County12/14/20232023 NY Slip Op 34385(U)
    Hernandez v Kobayashi Am. Mfg., + LLCSup Ct, NY County12/13/20232023 NY Slip Op 34386(U)
    Sestak v Hylan Datacom & + Elec. + LLCSup Ct, NY County12/15/20232023 NY Slip Op 34387(U)
    Matter of Helm v New York State + Div. of + Hous. & Community RenewalSup Ct, NY County12/13/20232023 NY Slip Op 34388(U)
    Illyrian Props. Inc. v Department + of Hous. + Preserv. & Dev.Sup Ct, NY County12/14/20232023 NY Slip Op 34389(U)
    Pena v JP Morgan Chase & + Co.Sup Ct, NY County12/15/20232023 NY Slip Op 34390(U)
    Mori v Riomar Corp.Sup Ct, NY County12/14/20232023 NY Slip Op 34391(U)
    Septimus v Yeshiva Univ.Sup Ct, NY County12/14/20232023 NY Slip Op 34392(U)
    Lewis v Related Broadway Dev., + LLCSup Ct, NY County12/14/20232023 NY Slip Op 34393(U)
    67-69 St. Nicholas Ave. Hous. + Dev. Fund + Corp. v GreenSup Ct, NY County12/14/20232023 NY Slip Op 34394(U)
    Rosario v 75 Ft. Wash. Prop. + LLCSup Ct, NY County12/11/20232023 NY Slip Op 34395(U)
    PWV Acquisition Owner, LLC v + LernerSup Ct, NY County12/14/20232023 NY Slip Op 34396(U)
    Matter of Your Vet 1, LLC v + Eastman, Cooke & Assoc., + LLCSup Ct, NY County12/14/20232023 NY Slip Op 34397(U)
    Ilan Props., Inc. v Hendler + Sup Ct, NY County12/14/20232023 NY Slip Op 34398(U)
    Graham v LaporteSup Ct, NY County12/14/20232023 NY Slip Op 34399(U)
    Memedi v MartnickSup Ct, NY County12/14/20232023 NY Slip Op 34400(U)
    Ogbolu v 125 Prop. Masters, + Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34401(U)
    Galonsky v East 17th LLCSup Ct, NY County12/15/20232023 NY Slip Op 34402(U)
    Paz v 52-74th Hous. Corp. + Sup Ct, NY County12/14/20232023 NY Slip Op 34403(U)
    Matter of Plumbers Local Union + No. 1 v New + York City Dept. of Bldgs.Sup Ct, NY County12/14/20232023 NY Slip Op 34404(U)
    Teachers' Retirement Sys. of the + City of N.Y. v + DubnerSup Ct, NY County12/14/20232023 NY Slip Op 34405(U)
    Lee v Mount Sinai Hosp.Sup Ct, Kings County12/12/20232023 NY Slip Op 34406(U)
    Silva v City of New YorkSup Ct, Kings County12/14/20232023 NY Slip Op 34407(U)
    Su Hwa Chu v LaiSup Ct, Kings County12/12/20232023 NY Slip Op 34408(U)
    Silva v ScopoSup Ct, Kings County12/8/20232023 NY Slip Op 34409(U)
    Prizzi v LeeSup Ct, Kings County12/4/20232023 NY Slip Op 34410(U)
    Lashley v Brooklyn Standard IV, + LLCSup Ct, Kings County12/14/20232023 NY Slip Op 34411(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 18, 2023
    Title + Court + Date + Slip Op No. +
    G.S. v K.K.Sup Ct, NY County7/13/20222022 NY Slip Op 51419(U)
    People v VallejoCrim Ct City NY, Bronx County12/18/20232023 NY Slip Op 23394
    People v MonkCounty Ct, Tompkins County12/12/20232023 NY Slip Op 51362(U)
    People v GuzmanCrim Ct City NY, Bronx County12/18/20232023 NY Slip Op 51363(U)
    People v ValentinCrim Ct City NY, Bronx County12/14/20232023 NY Slip Op 51364(U)
    People v MuhammadCrim Ct City NY, Bronx County12/12/20232023 NY Slip Op 51365(U)
    Village of Maybrook v Teamsters + Local + 445Sup Ct, Orange County5/6/20232023 NY Slip Op 34355(U)
    Gordon v 476 Broadway Realty + Corp.Superme Ct, NY County12/12/20232023 NY Slip Op 34356(U)
    De Pichardo v Central Laundry + Serv. + Corp.Sup Ct, Kings County12/1/20232023 NY Slip Op 34357(U)
    Rent Stabilization Assn. of + N.Y.C., Inc. v + McKeeSup Ct, NY County12/4/20232023 NY Slip Op 34358(U)
    Etihad Airways PJSC v Khan + Sup Ct, NY County12/11/20232023 NY Slip Op 34359(U)
    Verderosa v City of New York + Sup Ct, NY County12/4/20232023 NY Slip Op 34360(U)
    Planas v DoughertySup Ct, NY County12/12/20232023 NY Slip Op 34361(U)
    Green 333 Corp. v KusykSup Ct, NY County12/13/20232023 NY Slip Op 34362(U)
    Ryder v A.O. Smith Water Prods. + Co.Sup Ct, NY County12/12/20232023 NY Slip Op 34363(U)
    Zachary v Avon Prods., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34364(U)
    Rullo v ABB, Inc.Sup Ct, NY County12/12/20232023 NY Slip Op 34365(U)
    Radovic v Amchem Prods., Inc. + Sup Ct, NY County12/12/20232023 NY Slip Op 34366(U)
    Radovic v Amchem Prods., Inc. + Sup Ct, NY County12/12/20232023 NY Slip Op 34367(U)
    Radovic v Amchem Prods., Inc. + Sup Ct, NY County12/12/20232023 NY Slip Op 34368(U)
    People v VDARE Found., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34369(U)
    Lavia v Brooklyn Hosp. Ctr. + Sup Ct, Kings County12/11/20232023 NY Slip Op 34370(U)
    Corbett v Boro Park Ctr. for + Rehabilitation & + HealthcareSup Ct, Kings County12/11/20232023 NY Slip Op 34371(U)
    Omega Mkt., LLC v New York City + Dept. of + Envtl. ProtectionSup Ct, Kings County11/30/20232023 NY Slip Op 34372(U)
    Garcia v SAF LI LLCSup Ct, Kings County12/12/20232023 NY Slip Op 34373(U)
    Whyte v DN 63 Rockaway Parkway + LLCSup Ct, Kings County11/28/20232023 NY Slip Op 34374(U)
    Reape v Mercedes-Benz of + BrooklynSup Ct, Kings County12/11/20232023 NY Slip Op 34375(U)
    Morgan v St. Lukes Roosevelt + Hosp. Ctr. + Sup Ct, Kings County12/1/20232023 NY Slip Op 34376(U)
    Brown v OSIB-BCRE Bowery St. + Holdings + LLCSup Ct, Kings County12/1/20232023 NY Slip Op 34377(U)
    Martinez v Welsback Elec. + Corp.Sup Ct, Kings County11/17/20232023 NY Slip Op 34378(U)
    Matter of Rental Claims Servs. v + CzimentSup Ct, Kings County12/4/20232023 NY Slip Op 34379(U)
    New York Auto Concierge Inc. v + ValenzuelaSup Ct, Kings County12/11/20232023 NY Slip Op 34380(U)
    EO Inv., LLC v GilroySup Ct, NY County12/13/20232023 NY Slip Op 34381(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 15, 2023
    Title + Court + Date + Slip Op No. +
    People v FavoriteSup Ct, Kings County12/11/20232023 NY Slip Op 23391
    People v BallardCrim Ct City NY, Queens County12/14/20232023 NY Slip Op 23392
    Cannizzaro v City of New + YorkSup Ct, NY County12/15/20232023 NY Slip Op 23393
    Afghan House, Inc. v + Inshandbags Inc.Civ Ct City NY, NY County12/1/20232023 NY Slip Op 51358(U)
    New Commune DTLA LLC v + LawrenceCiv Ct City NY, NY County12/6/20232023 NY Slip Op 51359(U)
    Lashley v Brooklyn Std. IV, + LLCSup Ct, Kings County12/14/20232023 NY Slip Op 51360(U)
    Johnson v State of New + YorkCt Claims9/5/20232023 NY Slip Op 51361(U)
    Buffalo Auto Acceptance Corp. v + HamiltonCounty Ct, Niagara County8/21/20232023 NY Slip Op 34339(U)
    Ciceron v GulmaticoSup Ct, Kings County4/7/20212021 NY Slip Op 34044(U)
    Jackson v RahmanSup Ct, Bronx County10/13/20202020 NY Slip Op 35540(U)
    Lesniak v 411 Wales Realty, + LLCSup Ct, Bronx County8/4/20212021 NY Slip Op 34045(U)
    Veras v GuzmanSup Ct, Bronx County4/28/20202020 NY Slip Op 35541(U)
    McRae v American United Transp. + Inc.Sup Ct, Bronx County3/17/20202020 NY Slip Op 35542(U)
    Podlubny v KourSup Ct, Bronx County12/21/20202020 NY Slip Op 35543(U)
    Patino v Carretera Inc.Sup Ct, Bronx County1/29/20212021 NY Slip Op 34046(U)
    Martinez v JRL Food Corp. + Sup Ct, Bronx County5/19/20202020 NY Slip Op 35544(U)
    Simmons v BellSup Ct, Queens County12/9/20222022 NY Slip Op 34663(U)
    Simmons v BellSup Ct, Queens County5/29/20202020 NY Slip Op 35545(U)
    Cimillo v West Side Dental + Assoc., + P.C.Sup Ct, NY County11/27/20232023 NY Slip Op 34340(U)
    Cimillo v West Side Dental + Assoc., + P.C.Sup Ct, NY County11/30/20232023 NY Slip Op 34341(U)
    Miller v BostromSup Ct, NY County12/5/20232023 NY Slip Op 34342(U)
    Larios v GauthierSup Ct, NY County12/7/20232023 NY Slip Op 34343(U)
    Johnson v Mount Sinai + Hosp.Sup Ct, NY County11/27/20232023 NY Slip Op 34344(U)
    Williams v SenthilkumarSup Ct, NY County12/4/20232023 NY Slip Op 34345(U)
    Bethpage Fed. Credit Union v West + 26th St. Realty LLCSup Ct, NY County12/1/20232023 NY Slip Op 34346(U)
    Six Gramercy LLC v Westside Units + 18th St. LLCSup Ct, NY County12/1/20232023 NY Slip Op 34347(U)
    88 Global Partners LLC v 141 E. + 88th + St. Realty LLCSup Ct, NY County11/17/20232023 NY Slip Op 34348(U)
    Christiana Trust v AliSup Ct, NY County12/1/20232023 NY Slip Op 34349(U)
    BD Notes LLC v Garofalo Real + Estate + Holdings, LLCSup Ct, NY County12/8/20232023 NY Slip Op 34350(U)
    New York Life Ins. Co. v 717 GFC, + LLCSup Ct, NY County12/8/20232023 NY Slip Op 34351(U)
    Fannie Mae v Residential Indus. + I, + LLCSup Ct, NY County12/1/20232023 NY Slip Op 34352(U)
    Wells Fargo Bank, N.A. v 555 + Retail + Owner LLCSup Ct, NY County11/20/20232023 NY Slip Op 34353(U)
    Deutsche Bank Trust Co. Ams. v A + & R + 1392 Realty, LLCSup Ct, NY County11/17/20232023 NY Slip Op 34354(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 14, 2023
    Title + Court + Date + Slip Op No. +
    Mendez v HidalgoCiv Ct City NY, NY County12/14/20232023 NY Slip Op 23390
    Mehr v Mount Sinai Hosp. + Sup Ct, Orange County12/12/20232023 NY Slip Op 51356(U)
    Vucetaj v DahlSup Ct, NY County12/13/20232023 NY Slip Op 51357(U)
    King v City of New YorkSup Ct, NY County12/11/20232023 NY Slip Op 34311(U)
    Rodriguez v YWA-Amsterdam LLC + Sup Ct, NY County12/8/20232023 NY Slip Op 34312(U)
    Matter of Gonzaque v Helene Fuld + Coll. of NursingSup Ct, NY County12/8/20232023 NY Slip Op 34313(U)
    Marcus v City of New York + Sup Ct, NY County12/11/20232023 NY Slip Op 34314(U)
    Pinder v Mount Sinai Hosp. + Sup Ct, NY County12/11/20232023 NY Slip Op 34315(U)
    Matter of C72 LLC v New York + State Div. of Hous. & Community RenewalSup Ct, NY County12/7/20232023 NY Slip Op 34316(U)
    Diaz v 2 Broadway Ground Lease + TrustSup Ct, NY County12/8/20232023 NY Slip Op 34317(U)
    Morale v A.O. Smith Water Prods. + Co.Sup Ct, NY County12/11/20232023 NY Slip Op 34318(U)
    Thomas v Avon Prods., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34319(U)
    Courtois v RosenblumSup Ct, Kings County12/7/20232023 NY Slip Op 34320(U)
    People v VDARE Found., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34321(U)
    Qi Yong Wu v Olympos Trans + Inc.Sup Ct, Kings County11/21/20232023 NY Slip Op 34322(U)
    Marte v AgostaSup Ct, Kings County12/11/20232023 NY Slip Op 34323(U)
    Marin v AmatoreSup Ct, Kings County12/11/20232023 NY Slip Op 34324(U)
    Square My Capital LLC v + JohnsonSup Ct, Kings County12/7/20232023 NY Slip Op 34325(U)
    Moses v Deroche-WilliamsSup Ct, Kings County12/11/20232023 NY Slip Op 34326(U)
    Sabr Chems. Group, LLC v Norrhest + Chems., Inc.Sup Ct, NY County12/11/20232023 NY Slip Op 34327(U)
    Scarola Zubatov & Schaffzin + PLLC v Rocketfuel Blockchain, Inc.Sup Ct, NY County12/11/20232023 NY Slip Op 34328(U)
    AKF, Inc. v Windows & Beyond + Interiors, LLCSup Ct, NY County12/11/20232023 NY Slip Op 34330(U)
    32 W. 39th St. Sole Member LLC v + Regency NYC Inc.Sup Ct, NY County12/7/20232023 NY Slip Op 34332(U)
    J-Bar Reinforcement Inc. v Crest + Hill Capital LLCSup Ct, NY County12/11/20232023 NY Slip Op 34333(U)
    MDB Dev. Corp. v Maximum Fire + EscapesSup Ct, NY County12/10/20232023 NY Slip Op 34334(U)
    Federal Realty N.Y., LLC v FC + Foley, LLCSup Ct, NY County11/17/20232023 NY Slip Op 34335(U)
    Skyhorse Publ., Inc. v + BlakleySup Ct, NY County11/3/20232023 NY Slip Op 34336(U)
    Stevens v CutlerSup Ct, NY County12/7/20232023 NY Slip Op 34337(U)
    Hudgins v SpielfogelSup Ct, NY County11/30/20232023 NY Slip Op 34338(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 13, 2023
    Title + Court + Date + Slip Op No. +
    Matter of Liam V.Fam Ct, Kings County12/12/20232023 NY Slip Op 23387
    People v LujaCrim Ct City NY, Bronx County 12/11/20232023 NY Slip Op 23388
    People v CollazoSup Ct, NY County12/6/20232023 NY Slip Op 23389
    People v EvansCrim Ct City NY, Queens County12/12/20232023 NY Slip Op 51352(U)
    Adolphe v MorcilloSup Ct, Kings County12/12/20232023 NY Slip Op 51353(U)
    Benayoun v AlkadaSup Ct, Kings County12/12/20232023 NY Slip Op 51354(U)
    Morel v AvilesCity Ct Middletown, Orange County12/11/20232023 NY Slip Op 51355(U)
    Deutsche Bank Natl. Trust Co. v + GordonSup Ct, Nassau County4/6/20232023 NY Slip Op 34284(U)
    Residential Mtge. Loan Trust + 2013-TT2 v FioritaSup Ct, Suffolk County7/18/20222022 NY Slip Op 34659(U)
    Bank of N.Y. Mellon v + LicariSup Ct, Suffolk County3/11/20222022 NY Slip Op 34660(U)
    U.S. Bank N.A. v MartySup Ct, Suffolk County5/24/20192019 NY Slip Op 35069(U)
    Federal Natl. Mtge. Assn. (Fannie + Mae) v PriscoSup Ct, Suffolk County8/20/20192019 NY Slip Op 35070(U)
    Direct Lending Group, Inc. v + Barina + Group LLCSup Ct, Nassau County12/1/20222022 NY Slip Op 34661(U)
    Matter of Serrano v Meyer + Sup Ct, Orange County12/8/20232023 NY Slip Op 34285(U)
    Tokos v County of BroomeSup Ct, Broome County12/6/20222022 NY Slip Op 34662(U)
    Country-Wide Ins. Co. v Advanced + Comprehensive Lab., LLCSup Ct, NY County12/7/20232023 NY Slip Op 34286(U)
    Tremor Video, Inc. v Alphonso, + Inc.Sup Ct, NY County12/5/20232023 NY Slip Op 34287(U)
    Xiaoguang Jiang v American + Express + Co.Sup Ct, NY County11/20/20232023 NY Slip Op 34288(U)
    Tender Touch Health Care Servs. + Inc. + v Tnuzeg LLCSup Ct, NY County11/30/20232023 NY Slip Op 34289(U)
    MW Gestion v Cellenkos + Inc.Sup Ct, NY County12/7/20232023 NY Slip Op 34290(U)
    Strecker v Singlepoint Inc. + Sup Ct, NY County12/6/20232023 NY Slip Op 34291(U)
    Bissell St. I, LLC v Westbrook + Partners LLCSup Ct, NY County11/21/20232023 NY Slip Op 34293(U)
    Rockefeller Univ. v Aetna Cas. + & + Surety Co.Sup Ct, NY County12/8/20232023 NY Slip Op 34294(U)
    Deutsche Bank AG, N.Y. Branch v + RBH Inv. II, LLCSup Ct, NY County11/20/20232023 NY Slip Op 34295(U)
    DCH LEX Propco GP LLC v YS 541 + Lexington Holdings LLCSup Ct, NY County12/4/20232023 NY Slip Op 34296(U)
    Thoro-Graph, Inc. v New York + Racing + Assn., Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 34297(U)
    Fred Alger Mgt., LLC v Impulse + Dynamics PLCSup Ct, NY County12/7/20232023 NY Slip Op 34298(U)
    U.S. Specialty Ins. Co. v State + Natl. + Ins. Co., Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 34299(U)
    Trinity Ctr. LLC v Mazel + Reproduction, Inc.Sup Ct, NY County12/4/20232023 NY Slip Op 34300(U)
    Taverna v Hieber Reade St., + LLCSup Ct, NY County12/1/20232023 NY Slip Op 34301(U)
    Strabag, SPA v Alto Maipo + SPASup Ct, NY County12/8/20232023 NY Slip Op 34302(U)
    Go N.Y. Tours, Inc. v Tour Cent. + Park + Inc.Sup Ct, NY County11/29/20232023 NY Slip Op 34303(U)
    Real Dependable Contr. Corp. v + Fountain Gardens Owners CorpSup Ct, NY County11/29/20232023 NY Slip Op 34304(U)
    389 Assoc. v Isabella's Jewels, + Inc.Sup Ct, NY County11/20/20232023 NY Slip Op 34305(U)
    200 E. 36th Owners Corp. v N.Y.C. + Warehouse, Inc.Sup Ct, NY County12/1/20232023 NY Slip Op 34306(U)
    Empiremediholdings, LLC v Bridge + Funding Cap LLCSup Ct, NY County11/29/20232023 NY Slip Op 34307(U)
    Skyland Dev. Corp. v Elmwood + Ventures, LLCSup Ct, NY County11/30/20232023 NY Slip Op 34308(U)
    370 8th Ave. Group, LLC v + BurkeSup Ct, NY County12/4/20232023 NY Slip Op 34309(U)
    Zeidman v ChenSup Ct, NY County11/20/20232023 NY Slip Op 34310(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 12, 2023
    Title + Court + Date + Slip Op No. +
    A.S. v S.S.Sup Ct, NY County10/14/20222022 NY Slip Op 51418(U)
    First Hous. Co., Inc. v + TchiremuCiv Ct City NY, Queens County3/6/20232023 NY Slip Op 23384
    WV Preserv. Partners LLC v + ChangCiv Ct City NY, NY County12/11/20232023 NY Slip Op 23385
    Santana v Yonkers City Sch. + Dist.Sup Ct, Westchester County12/7/20232023 NY Slip Op 23386
    Matter of Small v Wade + Sup Ct, Kings County12/11/20232023 NY Slip Op 51342(U)
    Federal Natl. Mtge. Assn. v + SmithCiv Ct City NY, Queens County12/11/20232023 NY Slip Op 51343(U)
    People v MallikCrim Ct City NY, Kings County10/6/20232023 NY Slip Op 51344(U)
    People v StephensCrim Ct City NY, Kings County10/3/20232023 NY Slip Op 51346(U)
    Asian v Flintlock Constr. Servs. + LLCSup Ct, NY County12/8/20232023 NY Slip Op 34257(U)
    Garcia v CM & Assoc. Constr. + Mgt., LLCSup Ct, NY County12/8/20232023 NY Slip Op 34258(U)
    Gyure v Friars N.A. Inc.Sup Ct, NY County12/8/20232023 NY Slip Op 34259(U)
    Corey v City of New YorkSup Ct, NY County12/7/20232023 NY Slip Op 34260(U)
    591 Realty LLC v CuranajSup Ct, NY County12/8/20232023 NY Slip Op 34261(U)
    Matter of Baychester Payment Ctr. + v New York State Dept. of Fin. Servs.Sup Ct, NY County12/7/20232023 NY Slip Op 34262(U)
    Longfellow v BarneySup Ct, NY County11/29/20232023 NY Slip Op 34263(U)
    Matter of Courtney v NYS + Emergency Rental Assistance Program (ERAP)Sup Ct, NY County12/8/20232023 NY Slip Op 34264(U)
    Rockefeller v Solovieff Realty + Co., L.L.C.Sup Ct, NY County12/8/20232023 NY Slip Op 34265(U)
    Smyth v City of New YorkSup Ct, NY County12/7/20232023 NY Slip Op 34266(U)
    TD Bank, N.A. v Gallery 18 + Inc.Sup Ct, NY County11/29/20232023 NY Slip Op 34267(U)
    Hereford Ins. Co. v 247 Med. + Supplies, Inc.Sup Ct, NY County12/4/20232023 NY Slip Op 34268(U)
    Damassia v Bedford Stuyvesant S. + One LLCSup Ct, NY County12/8/20232023 NY Slip Op 34269(U)
    People v National Rifle Assn. of + Am.Sup Ct, NY County12/8/20232023 NY Slip Op 34270(U)
    Johnson v Harlem Hosp.Sup Ct, NY County12/8/20232023 NY Slip Op 34271(U)
    McLean v SolnySup Ct, Kings County11/27/20232023 NY Slip Op 34272(U)
    Weber v BarnettSup Ct, Kings County12/7/20232023 NY Slip Op 34273(U)
    Franks v National Grid USA + Sup Ct, Kings County12/7/20232023 NY Slip Op 34274(U)
    Nellis v Cadman Assoc. LLC + Sup Ct, Kings County11/16/20232023 NY Slip Op 34276(U)
    BH Sterling Realty LLC v + LongoriaSup Ct, Kings County12/7/20232023 NY Slip Op 34277(U)
    Diaz v MahmoodSup Ct, Kings County11/30/20232023 NY Slip Op 34278(U)
    Global Liberty Ins. Co. v + CoboSup Ct, Kings County11/21/20232023 NY Slip Op 34279(U)
    Fusco v DantonSup Ct, Kings County12/5/20232023 NY Slip Op 34280(U)
    Skyview Capital, LLC v Conduent + Bus. Servs., LLCSup Ct, NY County12/7/20232023 NY Slip Op 34281(U)
    Altium Growth Fund, L.P. v Tingo + Group, Inc.Sup Ct, NY County12/7/20232023 NY Slip Op 34282(U)
    69 Second Ave. LLC v Vanessa + Realty Corp.Sup Ct, NY County12/8/20232023 NY Slip Op 34283(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 11, 2023
    Title + Court + Date + Slip Op No. +
    N.T. v P.F.Sup Ct, NY County9/23/20222022 NY Slip Op 51417(U)
    Hughes v Qingling Zhao + City Ct Long Beach, Nassau County12/7/20232023 NY Slip Op 23383
    People v DunmeyerSup Ct, NY County11/27/20232023 NY Slip Op 51334(U)
    BRX Ground 1 LLC v + TejerasCiv Ct City NY, Bronx County12/8/20232023 NY Slip Op 51335(U)
    Bracero v State of New + YorkCt Claims8/2/20232023 NY Slip Op 51336(U)
    American Tr. Ins. Co. v + Trinity Pain Mgt. of Staten Is., PLLCSup Ct, Kings County12/8/20232023 NY Slip Op 51337(U)
    Richards v PierreSup Ct, Kings County12/8/20232023 NY Slip Op 51338(U)
    Robinson v D.C. Realty Group + Inc.Sup Ct, Kings County12/8/20232023 NY Slip Op 51339(U)
    Lux Bldrs. Inc. v INN Constr. + Corp.Sup Ct, Kings County12/8/20232023 NY Slip Op 51340(U)
    985 Herkimer St. LLC v + Hobson-GreeneSup Ct, Kings County12/8/20232023 NY Slip Op 51341(U)
    Matter of Coscia v Town of + GreenburghSup Ct, Westchester County9/9/20212021 NY Slip Op 34039(U)
    Rosario v PeskinSup Ct, Bronx County11/22/20192019 NY Slip Op 35061(U)
    Silva v CastroSup Ct, Bronx County11/27/20192019 NY Slip Op 35062(U)
    Ramirez v HansumSup Ct, Bronx County9/30/20202020 NY Slip Op 35535(U)
    Martinez v Ortega-Lizardi + Sup Ct, Bronx County11/4/20192019 NY Slip Op 35063(U)
    Aybar v Krasdale Foods, Inc. + Sup Ct, Bronx County10/25/20192019 NY Slip Op 35064(U)
    Batista v Triumph Constr. + Corp.Sup Ct, Bronx County8/26/20202020 NY Slip Op 35536(U)
    Cuddihy v Bronx Pro Group LLC + Sup Ct, Bronx County10/28/20192019 NY Slip Op 35065(U)
    Cuddihy v Bronx Pro Group LLC + Sup Ct, Bronx County9/23/20192019 NY Slip Op 35066(U)
    Delgado v SantiagoSup Ct, Bronx County11/8/20192019 NY Slip Op 35067(U)
    Abad v MartinSup Ct, Bronx County5/15/20202020 NY Slip Op 35537(U)
    Brito v SantiagoSup Ct, Bronx County10/8/20202020 NY Slip Op 35538(U)
    Black v SpanosSup Ct, Bronx County11/19/20192019 NY Slip Op 35068(U)
    Madera v City of New York + Sup Ct, NY County12/5/20232023 NY Slip Op 34234(U)
    State Farm Mut. Auto. Ins. Co. v + Protection Physical Therapy, P.C.Sup Ct, NY County12/6/20232023 NY Slip Op 34235(U)
    Burgos v GTL Constr., LLC. + Sup Ct, NY County12/6/20232023 NY Slip Op 34236(U)
    Liss v City of New YorkSup Ct, NY County12/6/20232023 NY Slip Op 34237(U)
    Associated Indus. Ins. Co. v + Unified Window Sys. Inc.Sup Ct, NY County12/6/20232023 NY Slip Op 34238(U)
    Aldrich v LNG Enters., Inc. + Sup Ct, Chautauqua County9/2/20222022 NY Slip Op 34658(U)
    Stanhope v ConwaySup Ct, Otsego County5/25/20212021 NY Slip Op 34040(U)
    Garcia v City of New York + Sup Ct, NY County12/5/20232023 NY Slip Op 34239(U)
    Allison-Jabbie v Collins Bldg. + Servs., Inc.Sup Ct, Kings County12/6/20232023 NY Slip Op 34240(U)
    Krasnow v CataniaSup Ct, Nassau County3/30/20212021 NY Slip Op 34041(U)
    Anagnostopoulos v Rosenman + Sup Ct, Nassau County12/10/20212021 NY Slip Op 34042(U)
    Anagnostopoulos v Rosenman + Sup Ct, Nassau County4/14/20202020 NY Slip Op 35539(U)
    Lynch Dev. Assoc., Inc. v + JohnsonSup Ct, Suffolk County12/30/20212021 NY Slip Op 34043(U)
    SF Capital Invs., LP v + LoanStreet, + Inc.Sup Ct, NY County12/3/20232023 NY Slip Op 34241(U)
    Weisberg v StandardSup Ct, NY County11/28/20232023 NY Slip Op 34242(U)
    Weiner v AbendSup Ct, NY County11/22/20232023 NY Slip Op 34243(U)
    Besen Partners LLC v 36 W. 128th, + LLCSup Ct, NY County11/30/20232023 NY Slip Op 34244(U)
    CWCapital Invs. LLC v CWCapital + Cobalt Vr Ltd.Sup Ct, NY County12/3/20232023 NY Slip Op 34245(U)
    East 51st St. Dev. Co., LLC v HFZ + E. 51, LLCSup Ct, NY County11/28/20232023 NY Slip Op 34246(U)
    3B Assoc., LLC v eCommission + Solutions, LLCSup Ct, NY County11/20/20232023 NY Slip Op 34247(U)
    Matter of Trust Motor, LLC v LCF + GroupSup Ct, NY County11/28/20232023 NY Slip Op 34248(U)
    Oddo & Babat, P.C. v Joseph + T. Mullen, Jr. & Assoc.Sup Ct, NY County11/28/20232023 NY Slip Op 34249(U)
    Bridgeton 396 Broadway Fee, LLC v + HiRise Engg. P.C.Sup Ct, NY County11/29/20232023 NY Slip Op 34250(U)
    C.D.E. A.C. Co., Inc. v New York + City Dept. of Envtl. ProtectionSup Ct, NY County12/5/20232023 NY Slip Op 34251(U)
    Hildene Opportunities Master Fund + II, Ltd. v NRF Holdco, LLCSup Ct, NY County11/30/20232023 NY Slip Op 34252(U)
    213 W. 23rd St. LLC v Crunch + Holdings LLCSup Ct, NY County11/20/20232023 NY Slip Op 34253(U)
    Murphy Kennedy Group LLC v Board + of Mgrs. of the St. Tropez CondominiumSup Ct, NY County11/28/20232023 NY Slip Op 34254(U)
    ARM Energy Holdings, LLC v + Nautilus Envtl. Ohio 1, LLCSup Ct, NY County12/6/20232023 NY Slip Op 34255(U)
    ACS Group Acquisitions LLC v Kate + Spade LLCSup Ct, NY County12/5/20232023 NY Slip Op 34256(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 08, 2023
    Title + Court + Date + Slip Op No. +
    Mamadjanov v Boston Bryant + Hous. Dev. Fund Corp.Sup Ct, Kings County12/7/20232023 NY Slip Op 23381
    Cooley v VanslykeCity Ct Little Falls, Herkimer County12/8/20232023 NY Slip Op 23382
    People v FashawSup Ct, NY County11/29/20232023 NY Slip Op 51333(U)
    Sam Van LLC v BickleyCiv Ct City NY, Bronx County11/30/20232023 NY Slip Op 34209(U)
    Matter of Ling Lin v Sewell + Sup Ct, NY County12/5/20232023 NY Slip Op 34210(U)
    Diaz v 2 Broadway Ground Lease + TrustSup Ct, NY County12/5/20232023 NY Slip Op 34212(U)
    Enz v A.O. Smith Water Prods. + Co.Sup Ct, NY County12/4/20232023 NY Slip Op 34213(U)
    Guaman v New 470 LLCSup Ct, Kings County12/5/20232023 NY Slip Op 34214(U)
    Opera House Lofts LLC v + CarnahanSup Ct, Kings County11/28/20232023 NY Slip Op 34215(U)
    Batis v 85 Jay St. (Brooklyn), + LLCSup Ct, Kings County12/5/20232023 NY Slip Op 34216(U)
    Callender v ForondaSup Ct, Kings County12/5/20232023 NY Slip Op 34217(U)
    L.I. Champions Taekwondo Inc. v + 151 Montague Opportunity LLCSup Ct, Kings County11/30/20232023 NY Slip Op 34218(U)
    Rock-Park 94 LLC v CAMBA, + Inc.Sup Ct, Kings County11/27/20232023 NY Slip Op 34219(U)
    Buccio v SinghSup Ct, Kings County11/15/20232023 NY Slip Op 34220(U)
    Svetlichnyy v Cornell Univ. + Sup Ct, Kings County11/20/20232023 NY Slip Op 34221(U)
    Alpine Ready Mix Inc. v Happy + Living Dev., LLCSup Ct, Kings County11/20/20232023 NY Slip Op 34223(U)
    Vasquez v New York City Fire + Dept.Sup Ct, Kings County11/27/20232023 NY Slip Op 34224(U)
    Biodiagnostic Labs, Inc. v + Centers for Care, LLCSup Ct, Kings County11/28/20232023 NY Slip Op 34225(U)
    Ray v RaySup Ct, NY County12/1/20232023 NY Slip Op 34226(U)
    Greenman v MillerSup Ct, NY County12/5/20232023 NY Slip Op 34227(U)
    White Oak Commercial Fin., LLC v + EIA, Inc.Sup Ct, NY County11/27/20232023 NY Slip Op 34228(U)
    Tantaros v KrechmerSup Ct, NY County11/20/20232023 NY Slip Op 34229(U)
    Haider v RupallSup Ct, NY County11/29/20232023 NY Slip Op 34230(U)
    Hartman v Pilata Inc.Sup Ct, NY County12/1/20232023 NY Slip Op 34231(U)
    Pursuit Credit Special + Opportunity Fund, L.P. v KrunchCash, LLCSup Ct, NY County11/28/20232023 NY Slip Op 34232(U)
    Sotheby's, Inc. v August Uribe + Fine Art, LLCSup Ct, NY County11/21/20232023 NY Slip Op 34233(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 07, 2023
    Title + Court + Date + Slip Op No. +
    NYC Blue Mgt. LLC v Finn + Civ Ct City NY, Queens County12/3/20232023 NY Slip Op 23380
    K.L. v J.B.Sup Ct, NY County11/8/20232023 NY Slip Op 51327(U)
    G.W. v J.W.Sup Ct, Westchester County12/6/20232023 NY Slip Op 51328(U)
    Biondo v OrnochSup Ct, Richmond County11/30/20232023 NY Slip Op 51329(U)
    Afanador v State of New + YorkCt Claims10/3/20232023 NY Slip Op 51330(U)
    Loumat Realty Co., LLC v + GilkarovCiv Ct City NY, Queens County12/6/20232023 NY Slip Op 51331(U)
    Bologna v Carmel Richmond + Nursing Home, Inc.Sup Ct, Kings County12/7/20232023 NY Slip Op 51332(U)
    Aghedo v 80 Clarkson LLCCiv Ct City NY, Kings County12/4/20232023 NY Slip Op 34188(U)
    Crest I LP v VenturaCiv Ct City NY, NY County3/1/20212021 NY Slip Op 34038(U)
    Sayles v Urban Am. Mgt. Corp. + Sup Ct, NY County11/29/20232023 NY Slip Op 34189(U)
    Kiehm v KimSup Ct, NY County12/1/20232023 NY Slip Op 34190(U)
    Matter of 738 E. 6th Owner (DE) + LLC v New York City Dept. of Hous. Preserv. & Dev. Sup Ct, NY County12/4/20232023 NY Slip Op 34191(U)
    Matter of GPG 592 LLC v New York + City Dept. of Hous. Preserv. & Dev.Sup Ct, NY County12/4/20232023 NY Slip Op 34192(U)
    Matter of DS Brooklyn Portfolio + Owner LLC v New York City Dept. of Hous. Preserv. & Dev.Sup Ct, NY County12/4/20232023 NY Slip Op 34193(U)
    NYCTL 2019-A Trust v Yelagina + Sup Ct, NY County12/1/20232023 NY Slip Op 34194(U)
    Matter of 326 Bedford Ventures + LLC v New York City Dept. of Hous. Preserv. & Dev.Sup Ct, NY County12/4/20232023 NY Slip Op 34195(U)
    Gross v MTGLQ Invs., L.P. + Sup Ct, Kings County12/4/20232023 NY Slip Op 34196(U)
    Follman v GruberSup Ct, Kings County11/30/20232023 NY Slip Op 34197(U)
    Matter of W 36th Villa LLC, v New + York State Div. of Hous. & Community RenewalSup Ct, Kings County11/6/20232023 NY Slip Op 34198(U)
    Varona v Story Ave. E. + Residential, LLCSup Ct, Kings County11/20/20232023 NY Slip Op 34199(U)
    Valentine v LobelSup Ct, Kings County12/4/20232023 NY Slip Op 34200(U)
    Noboa v AGBH Print. House + Holdings, L.L.C.Sup Ct, Kings County11/27/20232023 NY Slip Op 34201(U)
    Muharram v DialloSup Ct, Kings County11/28/20232023 NY Slip Op 34202(U)
    209 Barbey St. Trust v + ScotlandSup Ct, Kings County11/28/20232023 NY Slip Op 34203(U)
    Glover v AshmanSup Ct, Kings County11/1/20232023 NY Slip Op 34204(U)
    ARK570 Doe v Diocese of + BrooklynSup Ct, Kings County11/15/20232023 NY Slip Op 34205(U)
    Ramirez v IssaSup Ct, Kings County11/28/20232023 NY Slip Op 34206(U)
    Nelson v CRP N.Y. Ave. LLC + Sup Ct, Kings County11/28/20232023 NY Slip Op 34207(U)
    Miles-Forde v Green Line Taxi + Inc.Sup Ct, Kings County11/17/20232023 NY Slip Op 34208(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 06, 2023
    Title + Court + Date + Slip Op No. +
    RH 528 W. 159 St. LP v + TimofeevaCiv Ct City NY, NY County12/5/20232023 NY Slip Op 23377
    35-09 LLC v Navedo-Perez + Civ Ct City NY, Queens County12/6/20232023 NY Slip Op 23378
    Koncikowski v Albany Med. + Ctr. Hosp.Sup Ct, Warren County12/4/20232023 NY Slip Op 23379
    Corneille v AliSup Ct, Suffolk County11/28/20232023 NY Slip Op 51318(U)
    Matter of Progressive Ins. + Co. v OteroSup Ct, Richmond County12/1/20232023 NY Slip Op 51319(U)
    Gross v BrachSup Ct, Kings County3/6/20232023 NY Slip Op 51320(U)
    People v MorganSup Ct, Kings County12/4/20232023 NY Slip Op 51321(U)
    People v HooksCrim Ct City NY, Kings County12/6/20232023 NY Slip Op 51322(U)
    People v KingsberryCrim Ct City NY, Bronx County12/5/20232023 NY Slip Op 51323(U)
    People v FrankCrim Ct City NY, Queens County12/4/20232023 NY Slip Op 51324(U)
    People v SaquijxolCrim Ct City NY, Queens County12/6/20232023 NY Slip Op 51325(U)
    Matter of 201 EB Dev. III, LLC v + New York City Dept. of Bldgs.Sup Ct, NY County12/2/20232023 NY Slip Op 34153(U)
    Perez v Anejo, LLCSup Ct, NY County12/1/20232023 NY Slip Op 34154(U)
    Sayles v New York City Hous. + Auth.Sup Ct, NY County11/30/20232023 NY Slip Op 34155(U)
    Cerrone v City of New York + Sup Ct, NY County11/30/20232023 NY Slip Op 34156(U)
    Desposito v JungSup Ct, NY County12/1/20232023 NY Slip Op 34157(U)
    Deleon v 560-568 Audubon Realty, + LLCSup Ct, NY County12/1/20232023 NY Slip Op 34158(U)
    Solarte v Brearley Sch.Sup Ct, NY County11/30/20232023 NY Slip Op 34159(U)
    Alatorre v Port Auth. of N.Y. + & N.J.Sup Ct, NY County12/1/20232023 NY Slip Op 34160(U)
    Saunders v New York City Hous. + Auth.Sup Ct, NY County11/30/20232023 NY Slip Op 34161(U)
    Iacovacci v Brevet Holdings, + LLCSup Ct, NY County11/27/20232023 NY Slip Op 34162(U)
    Escobedo v Circle Line + Sightseeing Yachts, Inc.Sup Ct, NY County11/27/20232023 NY Slip Op 34163(U)
    Ashley v Red Lobster Hospitality + LLCSup Ct, NY County11/21/20232023 NY Slip Op 34164(U)
    Almark Holding Co. LLC v Jung + MoonSup Ct, NY County11/17/20232023 NY Slip Op 34165(U)
    Real World Holdings LLC v 393 W. + Broadway Corp.Sup Ct, NY County11/28/20232023 NY Slip Op 34166(U)
    West 152nd Assoc., L.P. v + GassamaSup Ct, NY County11/28/20232023 NY Slip Op 34168(U)
    Davis v AngiolettiSup Ct, NY County11/29/20232023 NY Slip Op 34169(U)
    NYP Holdings, Inc. v New York + City Police Dept.Sup Ct, NY County11/28/20232023 NY Slip Op 34170(U)
    Munoz v A.O. Smith Water Prods. + CoSup Ct, NY County11/21/20232023 NY Slip Op 34171(U)
    Hollingsworth v A.O. Smith Water + Prods. Co.Sup Ct, NY County11/21/20232023 NY Slip Op 34172(U)
    Marino v Air & Liquid Sys. + Corp.Sup Ct, NY County11/27/20232023 NY Slip Op 34173(U)
    Woods v Amchem Prods., Inc. + Sup Ct, NY County11/21/20232023 NY Slip Op 34174(U)
    Gonder v A.O. Smith Water Prods. + CoSup Ct, NY County11/24/20232023 NY Slip Op 34175(U)
    Nankervis v A.O. Smith Water + Prods. CoSup Ct, NY County11/21/20232023 NY Slip Op 34176(U)
    U.S. Bank N.A. v HandlerSup Ct, Kings County11/22/20232023 NY Slip Op 34177(U)
    City of New York v ORJ Props. + Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 34178(U)
    American Funding Servs. v T.N. + Eldridge Devs. LLCSup Ct, NY County12/1/20232023 NY Slip Op 34179(U)
    City of New York v Steven Holl + Architect, P.C.Sup Ct, NY County12/1/20232023 NY Slip Op 34180(U)
    People v National Rifle Assn. of + Am.Sup Ct, NY County11/30/20232023 NY Slip Op 34181(U)
    Commissioners of the State Ins. + Fund v WyckoffSup Ct, NY County11/27/20232023 NY Slip Op 34182(U)
    Stone v St. Leo R.C. Church + Sup Ct, Kings County11/20/20232023 NY Slip Op 34183(U)
    Lewis v MatiasSup Ct, Kings County11/21/20232023 NY Slip Op 34184(U)
    Henry v CookSup Ct, Kings County11/27/20232023 NY Slip Op 34185(U)
    Anderson v Toll House, LLC + Sup Ct, Kings County12/1/20232023 NY Slip Op 34186(U)
    Guzman v 345 PAS Owner, LLC + Sup Ct, Kings County11/20/20232023 NY Slip Op 34187(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 05, 2023
    Title + Court + Date + Slip Op No. +
    S.B. v A.K.Sup Ct, Westchester County12/4/20232023 NY Slip Op 23373
    Potentia Mgt. Group, LLC v + D.W.Utica City Ct12/1/20232023 NY Slip Op 23374
    Temo Realty LLC v Herrera + Civ Ct City NY, Kings County11/29/20232023 NY Slip Op 23375
    Delgado v State of New + YorkCt Claims11/22/20232023 NY Slip Op 23376
    201 E. 164th St. Assoc., LLC + v CalderonCiv Ct City NY, Bronx County12/4/20232023 NY Slip Op 51315(U)
    People v PriceCrim Ct City NY, Bronx County12/4/20232023 NY Slip Op 51316(U)
    Town of Hartford v Swezey + Sup Ct, Washington County11/30/20232023 NY Slip Op 51317(U)
    Dadey v Onondaga County Comm. of + the Conservative Party of NYSSup Ct, Onondaga County11/30/20232023 NY Slip Op 34150(U)
    Stevenson v Ghosh-HazraSup Ct, Bronx County9/28/20212021 NY Slip Op 34032(U)
    Skyers v City of New York + Sup Ct, Bronx County8/18/20202020 NY Slip Op 35525(U)
    Rivera v Lopez-ReyesSup Ct, Bronx County12/22/20202020 NY Slip Op 35526(U)
    Martinez v EderSup Ct, Bronx County6/29/20202020 NY Slip Op 35527(U)
    Sarowar v ViejoSup Ct, Bronx County10/30/20192019 NY Slip Op 35048(U)
    Metzger v DL Peterson Trust + Sup Ct, Bronx County8/5/20212021 NY Slip Op 34033(U)
    Lesch v Advantage Rent A Car + Sup Ct, Bronx County11/1/20192019 NY Slip Op 35049(U)
    Saduzy v MazumderSup Ct, Bronx County10/15/20192019 NY Slip Op 35050(U)
    Tejada v 15 Cliff LLCSup Ct, Bronx County11/4/20192019 NY Slip Op 35051(U)
    Ayele v ValentineSup Ct, Bronx County11/7/20192019 NY Slip Op 35052(U)
    Ayele v ValentineSup Ct, Bronx County5/30/20192019 NY Slip Op 35053(U)
    Kriskovich v CruzSup Ct, Bronx County12/14/20202020 NY Slip Op 35528(U)
    Ramos v Clam Diggers Restoration + LLCSup Ct, Bronx County2/22/20212021 NY Slip Op 34034(U)
    Colon v Raymour Furniture Co. + Inc.Sup Ct, Bronx County7/21/20202020 NY Slip Op 35529(U)
    Harris v BonnoSup Ct, Bronx County9/28/20202020 NY Slip Op 35530(U)
    Upson v Oliveira Contr., Inc. + Sup Ct, Bronx County12/9/20202020 NY Slip Op 35531(U)
    Ruiz v Parkchester S. + Condominium, Inc.Sup Ct, Bronx County8/7/20192019 NY Slip Op 35054(U)
    Granieri v MaksumovSup Ct, Bronx County6/15/20202020 NY Slip Op 35532(U)
    Corrales v Urgent Care Physician + of N.Y.-Hartsdale, PLLCSup Ct, Bronx County3/6/20202020 NY Slip Op 35533(U)
    Ramirez-Cruz v + Montgomery-GilesSup Ct, Bronx County11/7/20192019 NY Slip Op 35055(U)
    Turner v DoeSup Ct, Bronx County7/30/20202020 NY Slip Op 35534(U)
    O'Shea v Procida Constr. + Corp.Sup Ct, Bronx County9/26/20222022 NY Slip Op 34655(U)
    Jerez v MorenoSup Ct, Bronx County11/25/20192019 NY Slip Op 35056(U)
    Betancourt v ARC NYC123 William, + LLCSup Ct, Bronx County8/31/20232023 NY Slip Op 34151(U)
    Torres v LevySup Ct, Bronx County7/14/20232023 NY Slip Op 34152(U)
    Rosa v 267 E. 202 LLCSup Ct, Bronx County3/28/20192019 NY Slip Op 35057(U)
    Richardson v CancelSup Ct, Bronx County2/7/20222022 NY Slip Op 34656(U)
    Mirza v Tribeca Auto. Inc. + Sup Ct, Bronx County8/2/20192019 NY Slip Op 35058(U)
    Menzies v MoonabSup Ct, Bronx County10/7/20192019 NY Slip Op 35059(U)
    Rosa v DiloneSup Ct, Bronx County10/8/20192019 NY Slip Op 35060(U)
    Hallback v City of New York + Sup Ct, Bronx County9/21/20222022 NY Slip Op 34657(U)
    Davis v SantosSup Ct, Bronx County10/19/20212021 NY Slip Op 34036(U)
    Cattaraugus County v New York + State Dept. of HealthSup Ct, Albany County10/12/20212021 NY Slip Op 34037(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 04, 2023
    Title + Court + Date + Slip Op No. +
    Matter of MaltzSur Ct, Richmond County11/30/20232023 NY Slip Op 23372
    Department of Hous. Preserv. + & Dev. of the City of N.Y. v OhebshalomCiv Ct City NY, Queens County11/29/20232023 NY Slip Op 51313(U)
    Scoca v KosmachevaJust Ct Village Tuckahoe, Westchester County11/16/20232023 NY Slip Op 51314(U)
    Collazo v AduseiSup Ct, Bronx County9/27/20192019 NY Slip Op 35038(U)
    Catania v LirianoSup Ct, Bronx County4/15/20212021 NY Slip Op 34027(U)
    Catania v LirianoSup Ct, Bronx County11/6/20202020 NY Slip Op 35519(U)
    Catania v LirianoSup Ct, Bronx County2/21/20202020 NY Slip Op 35520(U)
    Contreras v CharrierSup Ct, Bronx County10/15/20192019 NY Slip Op 35039(U)
    Franco v NarvaezSup Ct, Bronx County11/19/20192019 NY Slip Op 35040(U)
    Naranjo v CampbellSup Ct, Bronx County10/10/20192019 NY Slip Op 35041(U)
    Clarke v BerdonSup Ct, Bronx County11/8/20192019 NY Slip Op 35042(U)
    Moore v JohnsonSup Ct, Bronx County10/9/20192019 NY Slip Op 35043(U)
    Figueroa v WilliamsSup Ct, Bronx County7/29/20212021 NY Slip Op 34028(U)
    Tavarez v Linda Transp. Corp. + Sup Ct, Bronx County10/9/20192019 NY Slip Op 35044(U)
    Lioreisis v MazaSup Ct, Bronx County7/14/20212021 NY Slip Op 34029(U)
    Gonzalez v SeraphinSup Ct, Bronx County4/28/20202020 NY Slip Op 35521(U)
    Eusebio v Ahern Rentals Inc. + Sup Ct, Bronx County11/21/20192019 NY Slip Op 35045(U)
    Lewis v KaboreSup Ct, Bronx County9/28/20212021 NY Slip Op 34030(U)
    Wright v Plaza Constr. LLC + Sup Ct, Bronx County12/21/20202020 NY Slip Op 35522(U)
    Wilson v Otis El. Co.Sup Ct, Bronx County10/22/20192019 NY Slip Op 35046(U)
    Colarossi v ShahSup Ct, Bronx County8/13/20202020 NY Slip Op 35523(U)
    Pryce v SanchezSup Ct, Bronx County11/1/20192019 NY Slip Op 35047(U)
    Meza v GarciaSup Ct, Bronx County7/28/20212021 NY Slip Op 34031(U)
    Reyes v MaldonadoSup Ct, Bronx County3/17/20202020 NY Slip Op 35524(U)
    Owczarek v J.T. Magen & Co. + Inc.Sup Ct, NY County11/29/20232023 NY Slip Op 34144(U)
    Clayman Rosenberg Kirshner & + Linder LLP v New York County Dist. Attorney's Off.Sup Ct, NY County11/29/20232023 NY Slip Op 34145(U)
    AMG Solutions LLC v Hudson + Meridian Constr. Group, LLCSup Ct, NY County11/20/20232023 NY Slip Op 34146(U)
    Rich v New York City Tr. + Auth.Sup Ct, NY County11/27/20232023 NY Slip Op 34148(U)
    40 CPS Assoc., LLC v Elnashar + Sup Ct, NY County11/15/20232023 NY Slip Op 34149(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 01, 2023
    Title + Court + Date + Slip Op No. +
    Matter of Andres Q. v + Letiticia Y.A.Fam Ct, Monroe County11/18/20222022 NY Slip Op 51416(U)
    C.M. v E.M.Sup Ct, Nassau County11/28/20232023 NY Slip Op 23369
    Ditech Fin. LLC v Naidu + Sup Ct, Queens County10/18/20232023 NY Slip Op 23370
    G.P. v State of New York + Ct Claims10/16/20232023 NY Slip Op 23371
    Bank of N.Y. v Harper + Sup Ct, Suffolk County10/2/20232023 NY Slip Op 51306(U)
    Cadillac Leasing L.P. v + KamaraCiv Ct City NY, Queens County11/30/20232023 NY Slip Op 51307(U)
    Sims v RegisDist Ct Nassau County, Second Dist11/30/20232023 NY Slip Op 51308(U)
    BP New Bldg. LLC v + SteplightCiv Ct City NY, Bronx County8/25/20232023 NY Slip Op 51309(U)
    Madison Advance LLC v Design + Light. Group LLCSup Ct, Kings County12/1/20232023 NY Slip Op 51310(U)
    American Tr. Ins. Co. v + Nexray Med. Imaging P.C.Sup Ct, Kings County12/1/20232023 NY Slip Op 51311(U)
    429 Lenox Realty, LLC v A + Taste of Seafood, Inc.Civ Ct City NY, NY County6/7/20232023 NY Slip Op 51312(U)
    Laurelton Estates LLC. v + PrinceSup Ct, Queens County11/20/20232023 NY Slip Op 34118(U)
    Serafin v New York State Dept. of + HealthSup Ct, Albany County12/9/20212021 NY Slip Op 34025(U)
    Cassino-Sharp v Whispering Hills + Homeowners Assn., Inc.Sup Ct, Orange County12/2/20202020 NY Slip Op 35517(U)
    Diamond v WalkerSup Ct, Suffolk County4/23/20202020 NY Slip Op 35518(U)
    Diamond v WalkerSup Ct, Suffolk County1/4/20172017 NY Slip Op 33554(U)
    Perez v City of New YorkSup Ct, NY County11/20/20232023 NY Slip Op 34119(U)
    Bourne v Martin Dev. & Mgt., + LLC.Sup Ct, Kings County11/22/20232023 NY Slip Op 34120(U)
    Maria v Manhattan Homes Co., + LLCSup Ct, NY County11/16/20232023 NY Slip Op 34121(U)
    Ming Tang v PS Marcato El. Co., + Inc.Sup Ct, NY County11/28/20232023 NY Slip Op 34122(U)
    Baptiste v New York City Tr. + Auth.Sup Ct, NY County11/20/20232023 NY Slip Op 34123(U)
    In Re Sea Ltd. Sec. Litig. v + XXXSup Ct, NY County11/20/20232023 NY Slip Op 34124(U)
    Lopez v 18-20 Park 84 Corp. + Sup Ct, NY County11/24/20232023 NY Slip Op 34125(U)
    Alexopoulos v 2 Rector St. (NY), + LLCSup Ct, NY County11/20/20232023 NY Slip Op 34126(U)
    Normanus Realty LLC v 154 E. 62 + LLCSup Ct, NY County11/27/20232023 NY Slip Op 34127(U)
    Yeiser v SchiavocampoSup Ct, NY County11/20/20232023 NY Slip Op 34128(U)
    Littleton v Mode Pub. Relations + LLCSup Ct, NY County5/24/20232023 NY Slip Op 34129(U)
    Stuyvesant Town-Peter Cooper Vil. + Tenants Assn. v New York State Div. of Hous. & Community RenewalSup Ct, NY County11/22/20232023 NY Slip Op 34130(U)
    Evans v PunterSup Ct, NY County11/22/20232023 NY Slip Op 34131(U)
    Komomolov v PopikSup Ct, NY County11/27/20232023 NY Slip Op 34132(U)
    Starks v Metropolitan Transp. + Auth.Sup Ct, NY County11/17/20232023 NY Slip Op 34133(U)
    Yankiver v New York City Tr. + Auth.Sup Ct, NY County11/15/20232023 NY Slip Op 34134(U)
    Mironov v Memorial Hosp. for + Cancer & Allied DiseasesSup Ct, NY County11/27/20232023 NY Slip Op 34135(U)
    Torres v 411-413 Broadway, + LLCSup Ct, NY County11/16/20232023 NY Slip Op 34136(U)
    Chapin v 1818 Nadlan LLC. + Sup Ct, NY County11/21/20232023 NY Slip Op 34137(U)
    El-Yamani v F.B.M. Cab Corp + Sup Ct, NY County11/28/20232023 NY Slip Op 34138(U)
    McCrae v City of New York + Sup Ct, NY County11/1/20232023 NY Slip Op 34139(U)
    245 Park Ave. Prop. LLC v HNA + Capital US LLCSup Ct, NY County11/17/20232023 NY Slip Op 34140(U)
    Silverman v LeibowitzSup Ct, NY County11/22/20232023 NY Slip Op 34141(U)
    Murphy v City of New York + Sup Ct, NY County11/20/20232023 NY Slip Op 34142(U)
    Lardon Constr. Corp. v Mark + Cerrone, Inc.Sup Ct, Niagara County4/11/20222022 NY Slip Op 34653(U)
    Clarke v American Credit + AcceptanceSup Ct, Ulster County11/14/20232023 NY Slip Op 34143(U)
    Rosas v PetkovichSup Ct, Dutchess County10/8/20212021 NY Slip Op 34026(U)
    Hart v City of BuffaloSup Ct, Erie County1/20/20222022 NY Slip Op 34654(U)


    + + + +
    +
    + + +
    +
    E-mail the Law
+
+
+
+Reporting Bureau +
    +
    New York State Law Reporting Bureau
    + 17 Lodge St., Albany NY 12207
    + phone: (518) 453-6900
    + fax: (518) 426-1640
    +
    +
    +
    + +
    + +  
    + +  
    + +  
    + +
    + + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nycountyct_example.compare.json b/tests/examples/opinions/united_states/nycountyct_example.compare.json new file mode 100644 index 000000000..c438e1d07 --- /dev/null +++ b/tests/examples/opinions/united_states/nycountyct_example.compare.json @@ -0,0 +1,14 @@ +[ + { + "case_dates": "2023-12-29", + "case_names": "People v. Solomonidis", + "download_urls": "tests/examples/opinions/3dseries/2023/2023_51438.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51438(U)", + "case_name_shorts": "Solomonidis", + "child_courts": "County Ct, Genesee County" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nycountyct_example.html b/tests/examples/opinions/united_states/nycountyct_example.html new file mode 100644 index 000000000..6c3197be4 --- /dev/null +++ b/tests/examples/opinions/united_states/nycountyct_example.html @@ -0,0 +1,415 @@ + + + + + + + Other Court Decisions + + + + + + + + + + + +
    + + + + + + +
      January, 2024  
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 04, 2024
    Title + Court + Date + Slip Op No. +
    Gur Assoc. LLC v Convenience on Eight + Corp.Civ Ct City NY, NY County12/21/20232023 NY Slip Op 23413
    Matter of Dionisio v BelmontSup Ct, Westchester County12/21/20232023 NY Slip Op 23414
    People v NichollsSup Ct, Kings County1/2/20242024 NY Slip Op 24003
    Wells Fargo Bank, N.A. v DefoeSup Ct, Richmond County12/4/20232023 NY Slip Op 34558(U)
    Matney v BoyleSup Ct, Saratoga County1/2/20242024 NY Slip Op 30001(U)
    Mule v SillermanSup Ct, NY County1/1/20242024 NY Slip Op 30002(U)
    Bunn v Faxton-St. Luke's HealthcareSup Ct, Oneida County10/4/20222022 NY Slip Op 34670(U)
    Contona v GodasSup Ct, Nassau County1/31/20192019 NY Slip Op 35075(U)
    Atalaya Special Opportunities Fund VII LP v + WhitedSup Ct, NY County12/31/20232023 NY Slip Op 34559(U)
    U.S. Bank N.A. v DLJ Mtge. Capital, Inc. + Sup Ct, NY County12/30/20232023 NY Slip Op 34560(U)
    Wilmington Trust, N.A. v GawlowskiSup Ct, Suffolk County4/18/20222022 NY Slip Op 34671(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 03, 2024
    Title + Court + Date + Slip Op No. +
    Pennymac Corp. v ErnesteSup Ct, Queens County12/6/20232023 NY Slip Op 23411
    Matter of HusseinSur Ct, Richmond County12/28/20232023 NY Slip Op 23412
    P.C. v L.C.Sup Ct, Warren County12/26/20232023 NY Slip Op 51439(U)
    People v K.B.Sup Ct, Erie County9/8/20232023 NY Slip Op 51440(U)
    Roskin v Northern Adult Day Health Care + Ctr.Sup Ct, Kings County12/28/20232023 NY Slip Op 51441(U)
    People v VincentSup Ct, Kings County1/2/20242024 NY Slip Op 24002
    Parisien v MVAICCiv Ct City NY, Kings County12/18/20232023 NY Slip Op 34542(U)
    State Farm. Mut. Auto. Ins. Co. v Global + Surgery Ctr., LLCSup Ct, NY County12/29/20232023 NY Slip Op 34543(U)
    Matter of Promenade Nelson Apts., LLC v New + York State Div. of Hous. & Community RenewalSup Ct, NY County12/28/20232023 NY Slip Op 34544(U)
    Matter of Windermere Props. LLC v City of New + YorkSup Ct, NY County12/21/20232023 NY Slip Op 34545(U)
    Dabas v WhyneSup Ct, Kings County12/27/20232023 NY Slip Op 34546(U)
    Matter of New York City Tr. Auth. v Charter + Oak Fire Ins. Co.Sup Ct, NY County12/28/20232023 NY Slip Op 34547(U)
    Roskin v Northern Adult Day Health Care + Ctr.Sup Ct, Kings County12/28/20232023 NY Slip Op 34548(U)
    Koshelev v Mortar Architecture PLLCSup Ct, Kings County12/5/20232023 NY Slip Op 34549(U)
    Clairvil v VemulapalliSup Ct, Kings County12/28/20232023 NY Slip Op 34550(U)
    Graulau v RosenbergSup Ct, Kings County12/19/20232023 NY Slip Op 34551(U)
    Simpson v Success Academy Charter Schs., + Inc.Sup Ct, Kings County12/21/20232023 NY Slip Op 34552(U)
    Cortlandt St. Recovery Corp. v Hellas + Telecommunications II, S.C.A.Sup Ct, NY County12/28/20232023 NY Slip Op 34553(U)
    Pearl St. Co-Invest I, LLC v MapR (ABC) + LLCSup Ct, NY County12/28/20232023 NY Slip Op 34554(U)
    Reveam, Inc. v Taylor Frères Capital Mkts., + LLCSup Ct, NY County12/29/20232023 NY Slip Op 34555(U)
    Kruchten v Eastman Kodak Co.Sup Ct, NY County12/29/20232023 NY Slip Op 34556(U)
    Matter of DavisSur Ct, NY County12/28/20232023 NY Slip Op 34557(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 02, 2024
    Title + Court + Date + Slip Op No. +
    People v SandersCrim Ct City NY, Bronx County12/14/20232023 NY Slip Op 51435(U)
    People v GraySup Ct, Kings County12/29/20232023 NY Slip Op 51436(U)
    INK 954 LLC v MannCiv Ct City NY, Queens County12/27/20232023 NY Slip Op 51437(U)
    People v SolomonidisCounty Ct, Genesee County12/29/20232023 NY Slip Op 51438(U)
    People v BarriosCrim Ct City NY, Bronx County1/1/20242024 NY Slip Op 24001
    People v BowmanJust Ct Town Webster, Monroe County1/2/20242024 NY Slip Op 50001(U)
    Velez v LSG 105 W. 28th, LLCSup Ct, NY County12/27/20232023 NY Slip Op 34537(U)
    Servedio v A.O. Smith Water Prods. Co. + Sup Ct, NY County12/27/20232023 NY Slip Op 34538(U)
    Daly v Amchem Prods., Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34539(U)
    Desiena v Aerco Intl. Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34540(U)
    Desiena v Aerco Intl. Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34541(U)


    + + + +
    +
    + + +
    +
    E-mail the Law
+
+
+
+Reporting Bureau +
    +
    New York State Law Reporting Bureau
    + 17 Lodge St., Albany NY 12207
    + phone: (518) 453-6900
    + fax: (518) 426-1640
    +
    +
    +
    + +
    + +  
    + +  
    + +  
    + +
    + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nycrimct_example.compare.json b/tests/examples/opinions/united_states/nycrimct_example.compare.json new file mode 100644 index 000000000..587689413 --- /dev/null +++ b/tests/examples/opinions/united_states/nycrimct_example.compare.json @@ -0,0 +1,26 @@ +[ + { + "case_dates": "2024-01-01", + "case_names": "People v. Barrios", + "download_urls": "tests/examples/opinions/3dseries/2024/2024_24001.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2024 NY Slip Op 24001", + "case_name_shorts": "Barrios", + "child_courts": "Crim Ct City NY, Bronx County" + }, + { + "case_dates": "2023-12-14", + "case_names": "People v. Sanders", + "download_urls": "tests/examples/opinions/3dseries/2023/2023_51435.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51435(U)", + "case_name_shorts": "Sanders", + "child_courts": "Crim Ct City NY, Bronx County" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nycrimct_example.html b/tests/examples/opinions/united_states/nycrimct_example.html new file mode 100644 index 000000000..6c3197be4 --- /dev/null +++ b/tests/examples/opinions/united_states/nycrimct_example.html @@ -0,0 +1,415 @@ + + + + + + + Other Court Decisions + + + + + + + + + + + +
    + + + + + + +
      January, 2024  
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 04, 2024
    Title + Court + Date + Slip Op No. +
    Gur Assoc. LLC v Convenience on Eight + Corp.Civ Ct City NY, NY County12/21/20232023 NY Slip Op 23413
    Matter of Dionisio v BelmontSup Ct, Westchester County12/21/20232023 NY Slip Op 23414
    People v NichollsSup Ct, Kings County1/2/20242024 NY Slip Op 24003
    Wells Fargo Bank, N.A. v DefoeSup Ct, Richmond County12/4/20232023 NY Slip Op 34558(U)
    Matney v BoyleSup Ct, Saratoga County1/2/20242024 NY Slip Op 30001(U)
    Mule v SillermanSup Ct, NY County1/1/20242024 NY Slip Op 30002(U)
    Bunn v Faxton-St. Luke's HealthcareSup Ct, Oneida County10/4/20222022 NY Slip Op 34670(U)
    Contona v GodasSup Ct, Nassau County1/31/20192019 NY Slip Op 35075(U)
    Atalaya Special Opportunities Fund VII LP v + WhitedSup Ct, NY County12/31/20232023 NY Slip Op 34559(U)
    U.S. Bank N.A. v DLJ Mtge. Capital, Inc. + Sup Ct, NY County12/30/20232023 NY Slip Op 34560(U)
    Wilmington Trust, N.A. v GawlowskiSup Ct, Suffolk County4/18/20222022 NY Slip Op 34671(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 03, 2024
    Title + Court + Date + Slip Op No. +
    Pennymac Corp. v ErnesteSup Ct, Queens County12/6/20232023 NY Slip Op 23411
    Matter of HusseinSur Ct, Richmond County12/28/20232023 NY Slip Op 23412
    P.C. v L.C.Sup Ct, Warren County12/26/20232023 NY Slip Op 51439(U)
    People v K.B.Sup Ct, Erie County9/8/20232023 NY Slip Op 51440(U)
    Roskin v Northern Adult Day Health Care + Ctr.Sup Ct, Kings County12/28/20232023 NY Slip Op 51441(U)
    People v VincentSup Ct, Kings County1/2/20242024 NY Slip Op 24002
    Parisien v MVAICCiv Ct City NY, Kings County12/18/20232023 NY Slip Op 34542(U)
    State Farm. Mut. Auto. Ins. Co. v Global + Surgery Ctr., LLCSup Ct, NY County12/29/20232023 NY Slip Op 34543(U)
    Matter of Promenade Nelson Apts., LLC v New + York State Div. of Hous. & Community RenewalSup Ct, NY County12/28/20232023 NY Slip Op 34544(U)
    Matter of Windermere Props. LLC v City of New + YorkSup Ct, NY County12/21/20232023 NY Slip Op 34545(U)
    Dabas v WhyneSup Ct, Kings County12/27/20232023 NY Slip Op 34546(U)
    Matter of New York City Tr. Auth. v Charter + Oak Fire Ins. Co.Sup Ct, NY County12/28/20232023 NY Slip Op 34547(U)
    Roskin v Northern Adult Day Health Care + Ctr.Sup Ct, Kings County12/28/20232023 NY Slip Op 34548(U)
    Koshelev v Mortar Architecture PLLCSup Ct, Kings County12/5/20232023 NY Slip Op 34549(U)
    Clairvil v VemulapalliSup Ct, Kings County12/28/20232023 NY Slip Op 34550(U)
    Graulau v RosenbergSup Ct, Kings County12/19/20232023 NY Slip Op 34551(U)
    Simpson v Success Academy Charter Schs., + Inc.Sup Ct, Kings County12/21/20232023 NY Slip Op 34552(U)
    Cortlandt St. Recovery Corp. v Hellas + Telecommunications II, S.C.A.Sup Ct, NY County12/28/20232023 NY Slip Op 34553(U)
    Pearl St. Co-Invest I, LLC v MapR (ABC) + LLCSup Ct, NY County12/28/20232023 NY Slip Op 34554(U)
    Reveam, Inc. v Taylor Frères Capital Mkts., + LLCSup Ct, NY County12/29/20232023 NY Slip Op 34555(U)
    Kruchten v Eastman Kodak Co.Sup Ct, NY County12/29/20232023 NY Slip Op 34556(U)
    Matter of DavisSur Ct, NY County12/28/20232023 NY Slip Op 34557(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 02, 2024
    Title + Court + Date + Slip Op No. +
    People v SandersCrim Ct City NY, Bronx County12/14/20232023 NY Slip Op 51435(U)
    People v GraySup Ct, Kings County12/29/20232023 NY Slip Op 51436(U)
    INK 954 LLC v MannCiv Ct City NY, Queens County12/27/20232023 NY Slip Op 51437(U)
    People v SolomonidisCounty Ct, Genesee County12/29/20232023 NY Slip Op 51438(U)
    People v BarriosCrim Ct City NY, Bronx County1/1/20242024 NY Slip Op 24001
    People v BowmanJust Ct Town Webster, Monroe County1/2/20242024 NY Slip Op 50001(U)
    Velez v LSG 105 W. 28th, LLCSup Ct, NY County12/27/20232023 NY Slip Op 34537(U)
    Servedio v A.O. Smith Water Prods. Co. + Sup Ct, NY County12/27/20232023 NY Slip Op 34538(U)
    Daly v Amchem Prods., Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34539(U)
    Desiena v Aerco Intl. Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34540(U)
    Desiena v Aerco Intl. Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34541(U)


    + + + +
    +
    + + +
    +
    E-mail the Law
+
+
+
+Reporting Bureau +
    +
    New York State Law Reporting Bureau
    + 17 Lodge St., Albany NY 12207
    + phone: (518) 453-6900
    + fax: (518) 426-1640
    +
    +
    +
    + +
    + +  
    + +  
    + +  
    + +
    + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nydistct_example.compare.json b/tests/examples/opinions/united_states/nydistct_example.compare.json new file mode 100644 index 000000000..6270c187e --- /dev/null +++ b/tests/examples/opinions/united_states/nydistct_example.compare.json @@ -0,0 +1,14 @@ +[ + { + "case_dates": "2023-11-30", + "case_names": "Sims v. Regis", + "download_urls": "https://nycourts.gov/reporter/3dseries/2023/2023_51308.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51308(U)", + "case_name_shorts": "Sims", + "child_courts": "Dist Ct Nassau County, Second Dist" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nydistct_example.html b/tests/examples/opinions/united_states/nydistct_example.html new file mode 100644 index 000000000..d01e00f01 --- /dev/null +++ b/tests/examples/opinions/united_states/nydistct_example.html @@ -0,0 +1,4888 @@ + + + + + + + Other Court Decisions + + + + + + + + + + + +
    + + + + + + +
      December, 2023  
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 29, 2023
    Title + Court + Date + Slip Op No. +
    Stefanik v HochulSup Ct, Albany County12/26/20232023 NY Slip Op 34517(U)
    Lanza v Whole Foods Mkt. Group, + Inc.Sup Ct, NY County12/18/20232023 NY Slip Op 34518(U)
    Porter v Cliffside Nursing Home, + Inc.Sup Ct, Kings County12/5/20232023 NY Slip Op 34520(U)
    Antebi v GuindiSup Ct, Kings County12/21/20232023 NY Slip Op 34521(U)
    Antara Capital Master Fund LP v + Bombardier Inc.Sup Ct, NY County12/22/20232023 NY Slip Op 34524(U)
    SH575 Holdings LLC v Richmond + Stuyvesant Holdings, LLCSup Ct, NY County12/22/20232023 NY Slip Op 34525(U)
    Oasis Med. & Surgical + Wellness v + New Jersey Mfrs. Ins. Co.Sup Ct, NY County12/21/20232023 NY Slip Op 34526(U)
    Matter of Infinity Q Diversified + Alpha + Fund Sec. Litig. v XXXSup Ct, NY County12/21/20232023 NY Slip Op 34527(U)
    Country-Wide Ins. Co. v Geico + Gen. + Ins. Co.Sup Ct, NY County12/20/20232023 NY Slip Op 34528(U)
    Tremor Video, Inc. v Alphonso, + Inc.Sup Ct, NY County12/22/20232023 NY Slip Op 34529(U)
    Matter of AKF Inc. v Jin + Clothing, + Inc.Sup Ct, NY County12/21/20232023 NY Slip Op 34530(U)
    Forum Gallery Inc. v Spirits Fin. + Corp.Sup Ct, NY County12/23/20232023 NY Slip Op 34531(U)
    AC Penguin Prestige Corp. v Two + Thousand Fifteen Artisanal LLCSup Ct, NY County12/19/20232023 NY Slip Op 34532(U)
    Samsung Elecs. Co., Ltd. v MPEG + LA, L.L.C.Sup Ct, NY County12/21/20232023 NY Slip Op 34533(U)
    Manhattan Concrete LLC v Prime + Prop. & Cas. Ins. Inc.Sup Ct, NY County12/21/20232023 NY Slip Op 34534(U)
    O'Connor v Society Pass + Inc.Sup Ct, NY County12/23/20232023 NY Slip Op 34535(U)
    Martinez v Fromer Eye Ctrs. + Sup Ct, NY County12/21/20232023 NY Slip Op 34536(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 28, 2023
    TitleCourtDateSlip Op No.
    Federal Natl. Mtge. Assn. + ("Fannie Mae") v KerendianSup Ct, Nassau County10/13/20232023 NY Slip Op 34490(U)
    Parisien v MVAICCiv Ct City NY, Kings County12/8/20232023 NY Slip Op 34491(U)
    Turner v DelacruzSup Ct, Bronx County4/26/20212021 NY Slip Op 34048(U)
    Thompson v + 735 Equities LLCSup Ct, Bronx County3/24/20222022 NY Slip Op 34666(U)
    Almenares v V VA Serv. Corp. + Sup Ct, Bronx County9/21/20212021 NY Slip Op 34049(U)
    Saleh v RiveraSup Ct, Bronx County1/31/20202020 NY Slip Op 35548(U)
    Alexander v GuzmanSup Ct, Bronx County1/25/20222022 NY Slip Op 34667(U)
    Fagbemi-Mohamed v Rodriguez + Sup Ct, Bronx County6/30/20222022 NY Slip Op 34668(U)
    Salcedo v 906 Holding LLC + Sup Ct, Bronx County12/3/20192019 NY Slip Op 35072(U)
    Santos v Holy Temple Church of + the Lord Jesus ChristSup Ct, Bronx County9/15/20202020 NY Slip Op 35549(U)
    Herbst v Hospice of N.Y., LLC + Sup Ct, Bronx County1/6/20202020 NY Slip Op 35550(U)
    Duran v Venture Leasing LLC. + Sup Ct, Bronx County7/29/20212021 NY Slip Op 34050(U)
    Acevedo v Ji Hee YouSup Ct, Bronx County5/15/20202020 NY Slip Op 35551(U)
    Diaz v H&Z Bldg. Consulting + Group, LLCSup Ct, Bronx County1/29/20202020 NY Slip Op 35552(U)
    Martinez v SantosSup Ct, Bronx County6/30/20202020 NY Slip Op 35553(U)
    Sabater v NoumbiSup Ct, Bronx County3/16/20202020 NY Slip Op 35554(U)
    Neder v AndrewsSup Ct, Bronx County11/24/20202020 NY Slip Op 35555(U)
    Dotel v Mount Hope Preserv. Apts. + 1A Hous. Dev. Fund Co., Inc.Sup Ct, Bronx County11/30/20232023 NY Slip Op 34492(U)
    Jimenez-Couret v LinzoSup Ct, Bronx County1/27/20222022 NY Slip Op 34669(U)
    Stephenson v ArdoviniSup Ct, Bronx County11/7/20192019 NY Slip Op 35073(U)
    Wallis v HarrisonSup Ct, Bronx County11/1/20192019 NY Slip Op 35074(U)
    Gomez v MalekSup Ct, Bronx County5/21/20202020 NY Slip Op 35556(U)
    "John Doe I" v Iona Preparatory + Sch.Sup Ct, Bronx County7/1/20202020 NY Slip Op 35557(U)
    Stagnari v BunnSup Ct, Onondaga County12/30/20212021 NY Slip Op 34051(U)
    Requena v New York City Dept. of + Educ.Sup Ct, NY County12/21/20232023 NY Slip Op 34493(U)
    O'Keeffe's Inc. v 400 Times Sq. + Assoc., LLC,Sup Ct, NY County12/23/20232023 NY Slip Op 34494(U)
    Photenas v New York City Tr. + Auth.Sup Ct, NY County12/19/20232023 NY Slip Op 34495(U)
    Carlisle v One Hudson Yards + Owner, LLCSup Ct, NY County12/22/20232023 NY Slip Op 34496(U)
    State Farm Mut. Auto. Ins. Co. v + DestineSup Ct, NY County12/20/20232023 NY Slip Op 34497(U)
    BLDG Mgt. Co., Inc. v Kreloff + Sup Ct, NY County12/20/20232023 NY Slip Op 34498(U)
    Caramante v New York City Hous. + Auth.Sup Ct, NY County12/21/20232023 NY Slip Op 34499(U)
    Matter of Law Offs. of Michael S. + Lamonsoff, PLLC v Gorayeb & Assoc., P.C.Sup Ct, NY County12/21/20232023 NY Slip Op 34500(U)
    Fernandez v LeoSup Ct, NY County12/20/20232023 NY Slip Op 34501(U)
    Surveillance Tech. Oversight + Project v Metropolitan Transp. Auth.Sup Ct, NY County12/21/20232023 NY Slip Op 34502(U)
    Glenmede Trust Co., N.A. v + Infinity Q Capital Mgt. LLCSup Ct, NY County12/21/20232023 NY Slip Op 34503(U)
    Matter of New York City Tr. Auth. + v Charter Oak Fire Ins. Co.Sup Ct, NY County12/22/20232023 NY Slip Op 34504(U)
    Motor Vehicle Acc. Indem. Corp. v + Hereford Ins. Co.Sup Ct, NY County12/21/20232023 NY Slip Op 34505(U)
    City of New York v Peters + Sup Ct, NY County12/21/20232023 NY Slip Op 34506(U)
    Newson v Vivaldi Real Estate + Ltd.Sup Ct, NY County12/21/20232023 NY Slip Op 34507(U)
    Henry v 34th St. Dental + Assoc.Sup Ct, Kings County12/15/20232023 NY Slip Op 34508(U)
    Crespi v PHD GBWSup Ct, Kings County12/21/20232023 NY Slip Op 34509(U)
    Papadimitriou v PappasSup Ct, Kings County12/19/20232023 NY Slip Op 34510(U)
    Kuris v Wiz Kids Ctr. Inc. + Sup Ct, Kings County12/7/20232023 NY Slip Op 34511(U)
    Vasquez v Lorimer St Holdings + LLC.Sup Ct, Kings County12/15/20232023 NY Slip Op 34512(U)
    Itzkowitz v GinsburgSup Ct, Kings County12/4/20232023 NY Slip Op 34513(U)
    Cisco v Verizon N.Y. Inc. + Sup Ct, Kings County12/20/20232023 NY Slip Op 34514(U)
    Donato v 455 Broadway Realty + LLCSup Ct, Kings County12/18/20232023 NY Slip Op 34515(U)
    Romero v 201 W. 79 St. Realty + Corp.Sup Ct, Kings County12/20/20232023 NY Slip Op 34516(U)


    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 27, 2023
    Title + Court + Date + Slip Op No. +
    Clarke v ToureSup Ct, Kings County12/24/20232023 NY Slip Op 23410
    People v Ramirez-Luna + Crim Ct City NY, Queens County5/5/20232023 NY Slip Op 51433(U)
    Cambridge Leasing Prop. LLC v + CachimboCiv Ct City NY, Queens County12/26/20232023 NY Slip Op 51434(U)
    BAA Capital Ventures, LLC v + ToscaniSup Ct, Saratoga County12/22/20232023 NY Slip Op 34467(U)
    Grooney v New York City Tr. + Auth.Sup Ct, NY County12/19/20232023 NY Slip Op 34468(U)
    Stopford v HewittSup Ct, NY County12/20/20232023 NY Slip Op 34469(U)
    Chadrjian v 1278-1284 First Ave. + Realty LLCSup Ct, NY County12/20/20232023 NY Slip Op 34470(U)
    Thompson v City of New York + Sup Ct, NY County12/19/20232023 NY Slip Op 34471(U)
    Matter of 225 Cent. Park N. LLC v + New York State Div. of Hous. & Community RenewalSup Ct, NY County12/20/20232023 NY Slip Op 34472(U)
    Nunez v Nalco Co.Sup Ct, NY County12/20/20232023 NY Slip Op 34473(U)
    Your Vet 1, LLC v Eastman, Cooke + & Assoc., LLCSup Ct, NY County12/19/20232023 NY Slip Op 34474(U)
    Riverton Sq., LLC v New York + State Div. of Hous. & Community RenewalSup Ct, NY County12/20/20232023 NY Slip Op 34475(U)
    Credit Acceptance Corp. v + TraylorSup Ct, Monroe County12/19/20232023 NY Slip Op 34476(U)
    Tasinari v DeMatteoSup Ct, NY County12/20/20232023 NY Slip Op 34477(U)
    Wells Fargo Bank, N.A. v + CardielloSup Ct, Kings County11/7/20232023 NY Slip Op 34478(U)
    Mendoza v 204 Forsyth St., + LLCSup Ct, Kings County12/19/20232023 NY Slip Op 34479(U)
    Elizon DB Transfer Agent LLC v + 1711 E. 15 St. LLCSup Ct, Kings County12/20/20232023 NY Slip Op 34480(U)
    Gordon v PeckSup Ct, NY County12/20/20232023 NY Slip Op 34481(U)
    FPG Cobble Hill Acquisitions, LLC + v Palm Cove Mgt. LLCSup Ct, NY County12/20/20232023 NY Slip Op 34482(U)
    Kapitus Servicing Inc. v Zumma + Mgt. Group, LLCSup Ct, NY County12/20/20232023 NY Slip Op 34483(U)
    ESRT One Grand Cent. Place, + L.L.C. v Peoples Foreign Exch., Corp.Sup Ct, NY County12/20/20232023 NY Slip Op 34484(U)
    Mahland v Noor Staffing Group, + LLCSup Ct, NY County12/20/20232023 NY Slip Op 34485(U)
    Azmy v WatkinsSup Ct, NY County12/20/20232023 NY Slip Op 34486(U)
    Martinez v New York City Health + & Hosps. Corp.Sup Ct, NY County12/20/20232023 NY Slip Op 34487(U)
    Soto v City of New YorkSup Ct, NY County12/11/20232023 NY Slip Op 34489(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 26, 2023
    Title + Court + Date + Slip Op No. +
    Stromberg v East Riv. Hous. + Corp.Sup Ct, NY County12/26/20232023 NY Slip Op 23409
    B&S Duo Realty LLC v + GazaliCiv Ct City NY, Queens County12/21/20232023 NY Slip Op 51423(U)
    Sylvester v JonesSup Ct, Kings County10/13/20232023 NY Slip Op 51424(U)
    U.S. Specialty Ins. Co. v + State Natl. Ins. Co., Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 51425(U)
    Brooke v StreitSup Ct, NY County12/14/20232023 NY Slip Op 51426(U)
    Kapitus + Servicing, Inc. v Zumma Mgt. Group, LLCSup Ct, NY County12/20/20232023 NY Slip Op 51427(U)
    American Express Natl. Bank v + EllisSup Ct, NY County12/23/20232023 NY Slip Op 51428(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 22, 2023
    Title + Court + Date + Slip Op No. +
    Mrijaj v Genting N.Y. + LLC.Sup Ct, Bronx County12/14/20232023 NY Slip Op 23407
    Nellis v Cadman Assoc. + LLCSup Ct, Kings County11/16/20232023 NY Slip Op 23408
    Matter of Federico + (Aloisi)Sur Ct, Putnam County10/20/20232023 NY Slip Op 51418(U)
    People v CareySup Ct, Nassau County12/11/20232023 NY Slip Op 51419(U)
    Torres v New York City + Employees' Retirement Sys.Sup Ct, Kings County12/4/20232023 NY Slip Op 51420(U)
    People v BrennanJust Ct Village Piermont, Rockland County12/22/20232023 NY Slip Op 51421(U)
    People v JuzwaCrim Ct City NY, Queens County7/9/20232023 NY Slip Op 51422(U)
    Estate of Wenger v Good Shepherd + Communities, Inc.Sup Ct, Broome County12/20/20232023 NY Slip Op 34459(U)
    Mohamed v Almarwa Ctr. Inc. + Sup Ct, Kings County8/18/20222022 NY Slip Op 34665(U)
    Tsui v ChouSup Ct, NY County8/8/20192019 NY Slip Op 35071(U)
    Breest v HaggisSup Ct, NY County12/19/20232023 NY Slip Op 34460(U)
    Giraldo v Longford Inc.Sup Ct, NY County12/18/20232023 NY Slip Op 34461(U)
    M.P. v DavidsonSup Ct, Kings County11/3/20232023 NY Slip Op 34462(U)
    Sadlowski v East End Bldg. Servs. + IncSup Ct, Kings County12/18/20232023 NY Slip Op 34463(U)
    Cotto v RobinsonSup Ct, Kings County12/14/20232023 NY Slip Op 34464(U)
    Samsung Elecs. Co., Ltd. v MPEG + LA, L.L.C.Sup Ct, NY County12/19/20232023 NY Slip Op 34465(U)
    Millennium Consolidated Holdings, + LLC v Bluefin Capital Mgt., LLCSup Ct, NY County12/19/20232023 NY Slip Op 34466(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 21, 2023
    Title + Court + Date + Slip Op No. +
    R.G. v S.W.Sup Ct, NY County7/12/20222022 NY Slip Op 51421(U)
    C.R. v M.B.Sup Ct, NY County7/14/20222022 NY Slip Op 51422(U)
    M.B. v M.C.B.Sup Ct, NY County3/22/20222022 NY Slip Op 51423(U)
    D.R. v B.K.Sup Ct, NY County7/27/20222022 NY Slip Op 51424(U)
    C.B. v R.B.Sup Ct, NY County10/28/20222022 NY Slip Op 51425(U)
    Yesilevich v Tenenbaum + Sup Ct, Kings County10/30/20232023 NY Slip Op 23405
    People v SmithSup Ct, Kings County12/20/20232023 NY Slip Op 23406
    K.L. v I.L.Sup Ct, Richmond County12/7/20232023 NY Slip Op 51411(U)
    Kohler v S.L.Sup Ct, Albany County12/20/20232023 NY Slip Op 51412(U)
    People v BowmanJust Ct Town Webster, Monroe County12/21/20232023 NY Slip Op 51413(U)
    Matter of Newsday LLC v Nassau + County Police Dept.Sup Ct, Nassau County11/3/20212023 NY Slip Op 34433(U)
    Aina v Jopal Bronx, LLCSup Ct, Bronx County12/1/20232023 NY Slip Op 34434(U)
    Caicedo v East Gun Hill Rd. Food, + LLCSup Ct, Bronx County9/8/20222022 NY Slip Op 34664(U)
    Thorne v WilsonSup Ct, Bronx County12/23/20202020 NY Slip Op 35546(U)
    Hoffman v Government Empls. Ins. + Co.Sup Ct, Bronx County6/10/20202020 NY Slip Op 35547(U)
    Warshaw Burstein, LLP v Colambda + Tech., Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34435(U)
    Archives, L.L.C. v Schmitter + Sup Ct, NY County12/18/20232023 NY Slip Op 34436(U)
    Matter of Stroock & Stroock + & Lavan, LLP v New York State Dept. of Economic Dev.Sup Ct, NY County12/12/20232023 NY Slip Op 34437(U)
    Goldman v + Vanguard Const. & Dev. Co., Inc. Sup Ct, NY County12/15/20232023 NY Slip Op 34438(U)
    Randel Mold & Die Corp. v + City of New York Off. of Admin. Trials & HearingsSup Ct, NY County12/18/20232023 NY Slip Op 34439(U)
    Smith v TS ZO L.L.C.Sup Ct, NY County12/18/20232023 NY Slip Op 34440(U)
    Friedman v City of New York + Sup Ct, NY County12/18/20232023 NY Slip Op 34441(U)
    Friedman v City of New York + Sup Ct, NY County12/18/20232023 NY Slip Op 34442(U)
    Crown Wisteria, Inc. v Cibani + Sup Ct, NY County12/18/20232023 NY Slip Op 34443(U)
    Bardach v MartynovaSup Ct, NY County12/18/20232023 NY Slip Op 34444(U)
    Public Admr. of Bronx County v + New York City Health & Hosps. Corp.Sup Ct, NY County12/18/20232023 NY Slip Op 34445(U)
    Mawere v LandauSup Ct, Kings County12/8/20232023 NY Slip Op 34446(U)
    Klitnick v WanounoSup Ct, Kings County12/14/20232023 NY Slip Op 34447(U)
    Matter of 22 Title Solutions, LLC + v American Home Assur. Co.Sup Ct, Kings County12/13/20232023 NY Slip Op 34448(U)
    AKF, Inc. v A Pattern Med. + Clinic, P.C.Sup Ct, NY County12/18/20232023 NY Slip Op 34449(U)
    Medallion Fin. Corp. v EDE Serv. + Corp.Sup Ct, NY County12/15/20232023 NY Slip Op 34450(U)
    Board of Mgrs. of 229 E. 2nd St. + Condominium v 229 2nd St. LLCSup Ct, NY County12/18/20232023 NY Slip Op 34451(U)
    Medallion Bank v Chopper Taxi + Inc.Sup Ct, NY County12/15/20232023 NY Slip Op 34452(U)
    EBF Partners, LLC v GRA Group, + Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34453(U)
    Wong v WongSup Ct, NY County12/18/20232023 NY Slip Op 34454(U)
    G.B. v Archdiocese of N.Y. + Sup Ct, NY County12/1/20232023 NY Slip Op 34456(U)
    ARK667 Doe v Archdiocese of + N.Y.Sup Ct, NY County12/5/20232023 NY Slip Op 34457(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 20, 2023
    Title + Court + Date + Slip Op No. +
    G.S. v K.K.Sup Ct, NY County9/12/20222022 NY Slip Op 51420(U)
    Kahn Prop. Owner, LLC v + FruchthandlerSup Ct, Suffolk County10/30/20232023 NY Slip Op 23402
    People v Gonzalez-Mendoza + County Ct, Putnam County12/13/20232023 NY Slip Op 23403
    People v MarteCrim Ct City NY, Queens County12/20/20232023 NY Slip Op 23404
    Cold Spring Country Club, + Inc. v Town of HuntingonSup Ct, Suffolk County10/30/20232023 NY Slip Op 51407(U)
    M.G.W. v V.D.Sup Ct, NY County1/5/20232023 NY Slip Op 51408(U)
    P.G. v P.G.Sup Ct, NY County3/3/20232023 NY Slip Op 51409(U)
    De Andrade v Monadnock Constr., + Inc.Sup Ct, Kings County12/7/20232023 NY Slip Op 34412(U)
    Ner Mordechai Inc. v Ohel Harav + Yenoshua Boruch Found.Sup Ct, Kings County11/28/20232023 NY Slip Op 34413(U)
    Stein v 594 Marcy Villa LLC + Sup Ct, Kings County12/4/20232023 NY Slip Op 34414(U)
    Torres v New York City Employees' + Retirement Sys.Sup Ct, Kings County12/4/20232023 NY Slip Op 34415(U)
    Aicon Contemporary v Dutta + Sup Ct, NY County12/14/20232023 NY Slip Op 34416(U)
    Malick v 302 E. 105th St. LLC + Sup Ct, NY County12/12/20232023 NY Slip Op 34417(U)
    JDS Fourth Ave. JV II LLC v Largo + 613 Baltic St. Partners LLCSup Ct, NY County12/14/20232023 NY Slip Op 34418(U)
    Dong Hua Zhang, v Amy's Rest. NY + Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34419(U)
    Century Indem. Co. v Archdiocese + of N.Y.Sup Ct, NY County12/14/20232023 NY Slip Op 34420(U)
    213 W. 23rd St. LLC v Crunch + Holdings LLCSup Ct, NY County12/14/20232023 NY Slip Op 34421(U)
    Brooke v StreitSup Ct, NY County12/14/20232023 NY Slip Op 34422(U)
    Zurich Am. Ins. Co. v Alterra Am. + Ins. Co.Sup Ct, NY County12/13/20232023 NY Slip Op 34423(U)
    South Beach Tristar 800 LLC v + Lincoln Arts ERFR LLCSup Ct, NY County12/12/20232023 NY Slip Op 34425(U)
    Annovazzi v MeyerSup Ct, NY County12/6/20232023 NY Slip Op 34426(U)
    Columbia Consultants, LLC v + Danucht Entertainment, LLCSup Ct, NY County12/12/20232023 NY Slip Op 34427(U)
    Boston Beer Corp. v Boening + Bros., Inc.Sup Ct, NY County12/15/20232023 NY Slip Op 34428(U)
    Stile v C-Air Customhouse + Brokers-Forwards, Inc.Sup Ct, NY County12/15/20232023 NY Slip Op 34429(U)
    Golden Nugget Atl. City LLC v + ChanSup Ct, NY County12/13/20232023 NY Slip Op 34430(U)
    57th St. Vacation Owners Assn., + Inc. v KongSup Ct, NY County12/11/20232023 NY Slip Op 34431(U)
    S.A. v BellSup Ct, NY County12/14/20232023 NY Slip Op 34432(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 19, 2023
    Title + Court + Date + Slip Op No. +
    People v GaynorSup Ct, Kings County12/18/20232023 NY Slip Op 23395
    People v MavroudisJust Ct Town New Scotland, Albany County12/18/20232023 NY Slip Op 23396
    City of New York v "Doe" + Civ Ct City NY, Bronx County12/18/20232023 NY Slip Op 23397
    Leibovitz v State of New + YorkCt Claims12/13/20232023 NY Slip Op 51366(U)
    People v Cedeno-Ortiz + Crim Ct City NY, Bronx County5/31/20232023 NY Slip Op 51367(U)
    Aina v Jopal Bronx, LLC + Sup Ct, Bronx County12/18/20232023 NY Slip Op 51368(U)
    Corona Apts. LLC v + BarriosCiv Ct City NY, Queens County12/14/20232023 NY Slip Op 51369(U)
    Marino v FriedmanSup Ct, Kings County12/18/20232023 NY Slip Op 51370(U)
    People v ChungCrim Ct City NY, Queens County5/16/20232023 NY Slip Op 51371(U)
    Matter of WoodSurrogate's Ct, Putnam County6/9/20232023 NY Slip Op 34382(U)
    Stuyvesant Owners Inc. v + FrantinoCiv Ct City NY, NY County11/13/20232023 NY Slip Op 34383(U)
    GRM Info. Mgt. Servs. v Silver + Autumn Hotel + (N.Y.) Corp. Ltd.Sup Ct, NY County12/14/20232023 NY Slip Op 34384(U)
    Hidalgo v Support Collection Unit + of NYC + Dept. of Social Servs.Sup Ct, NY County12/14/20232023 NY Slip Op 34385(U)
    Hernandez v Kobayashi Am. Mfg., + LLCSup Ct, NY County12/13/20232023 NY Slip Op 34386(U)
    Sestak v Hylan Datacom & + Elec. + LLCSup Ct, NY County12/15/20232023 NY Slip Op 34387(U)
    Matter of Helm v New York State + Div. of + Hous. & Community RenewalSup Ct, NY County12/13/20232023 NY Slip Op 34388(U)
    Illyrian Props. Inc. v Department + of Hous. + Preserv. & Dev.Sup Ct, NY County12/14/20232023 NY Slip Op 34389(U)
    Pena v JP Morgan Chase & + Co.Sup Ct, NY County12/15/20232023 NY Slip Op 34390(U)
    Mori v Riomar Corp.Sup Ct, NY County12/14/20232023 NY Slip Op 34391(U)
    Septimus v Yeshiva Univ.Sup Ct, NY County12/14/20232023 NY Slip Op 34392(U)
    Lewis v Related Broadway Dev., + LLCSup Ct, NY County12/14/20232023 NY Slip Op 34393(U)
    67-69 St. Nicholas Ave. Hous. + Dev. Fund + Corp. v GreenSup Ct, NY County12/14/20232023 NY Slip Op 34394(U)
    Rosario v 75 Ft. Wash. Prop. + LLCSup Ct, NY County12/11/20232023 NY Slip Op 34395(U)
    PWV Acquisition Owner, LLC v + LernerSup Ct, NY County12/14/20232023 NY Slip Op 34396(U)
    Matter of Your Vet 1, LLC v + Eastman, Cooke & Assoc., + LLCSup Ct, NY County12/14/20232023 NY Slip Op 34397(U)
    Ilan Props., Inc. v Hendler + Sup Ct, NY County12/14/20232023 NY Slip Op 34398(U)
    Graham v LaporteSup Ct, NY County12/14/20232023 NY Slip Op 34399(U)
    Memedi v MartnickSup Ct, NY County12/14/20232023 NY Slip Op 34400(U)
    Ogbolu v 125 Prop. Masters, + Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34401(U)
    Galonsky v East 17th LLCSup Ct, NY County12/15/20232023 NY Slip Op 34402(U)
    Paz v 52-74th Hous. Corp. + Sup Ct, NY County12/14/20232023 NY Slip Op 34403(U)
    Matter of Plumbers Local Union + No. 1 v New + York City Dept. of Bldgs.Sup Ct, NY County12/14/20232023 NY Slip Op 34404(U)
    Teachers' Retirement Sys. of the + City of N.Y. v + DubnerSup Ct, NY County12/14/20232023 NY Slip Op 34405(U)
    Lee v Mount Sinai Hosp.Sup Ct, Kings County12/12/20232023 NY Slip Op 34406(U)
    Silva v City of New YorkSup Ct, Kings County12/14/20232023 NY Slip Op 34407(U)
    Su Hwa Chu v LaiSup Ct, Kings County12/12/20232023 NY Slip Op 34408(U)
    Silva v ScopoSup Ct, Kings County12/8/20232023 NY Slip Op 34409(U)
    Prizzi v LeeSup Ct, Kings County12/4/20232023 NY Slip Op 34410(U)
    Lashley v Brooklyn Standard IV, + LLCSup Ct, Kings County12/14/20232023 NY Slip Op 34411(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 18, 2023
    Title + Court + Date + Slip Op No. +
    G.S. v K.K.Sup Ct, NY County7/13/20222022 NY Slip Op 51419(U)
    People v VallejoCrim Ct City NY, Bronx County12/18/20232023 NY Slip Op 23394
    People v MonkCounty Ct, Tompkins County12/12/20232023 NY Slip Op 51362(U)
    People v GuzmanCrim Ct City NY, Bronx County12/18/20232023 NY Slip Op 51363(U)
    People v ValentinCrim Ct City NY, Bronx County12/14/20232023 NY Slip Op 51364(U)
    People v MuhammadCrim Ct City NY, Bronx County12/12/20232023 NY Slip Op 51365(U)
    Village of Maybrook v Teamsters + Local + 445Sup Ct, Orange County5/6/20232023 NY Slip Op 34355(U)
    Gordon v 476 Broadway Realty + Corp.Superme Ct, NY County12/12/20232023 NY Slip Op 34356(U)
    De Pichardo v Central Laundry + Serv. + Corp.Sup Ct, Kings County12/1/20232023 NY Slip Op 34357(U)
    Rent Stabilization Assn. of + N.Y.C., Inc. v + McKeeSup Ct, NY County12/4/20232023 NY Slip Op 34358(U)
    Etihad Airways PJSC v Khan + Sup Ct, NY County12/11/20232023 NY Slip Op 34359(U)
    Verderosa v City of New York + Sup Ct, NY County12/4/20232023 NY Slip Op 34360(U)
    Planas v DoughertySup Ct, NY County12/12/20232023 NY Slip Op 34361(U)
    Green 333 Corp. v KusykSup Ct, NY County12/13/20232023 NY Slip Op 34362(U)
    Ryder v A.O. Smith Water Prods. + Co.Sup Ct, NY County12/12/20232023 NY Slip Op 34363(U)
    Zachary v Avon Prods., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34364(U)
    Rullo v ABB, Inc.Sup Ct, NY County12/12/20232023 NY Slip Op 34365(U)
    Radovic v Amchem Prods., Inc. + Sup Ct, NY County12/12/20232023 NY Slip Op 34366(U)
    Radovic v Amchem Prods., Inc. + Sup Ct, NY County12/12/20232023 NY Slip Op 34367(U)
    Radovic v Amchem Prods., Inc. + Sup Ct, NY County12/12/20232023 NY Slip Op 34368(U)
    People v VDARE Found., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34369(U)
    Lavia v Brooklyn Hosp. Ctr. + Sup Ct, Kings County12/11/20232023 NY Slip Op 34370(U)
    Corbett v Boro Park Ctr. for + Rehabilitation & + HealthcareSup Ct, Kings County12/11/20232023 NY Slip Op 34371(U)
    Omega Mkt., LLC v New York City + Dept. of + Envtl. ProtectionSup Ct, Kings County11/30/20232023 NY Slip Op 34372(U)
    Garcia v SAF LI LLCSup Ct, Kings County12/12/20232023 NY Slip Op 34373(U)
    Whyte v DN 63 Rockaway Parkway + LLCSup Ct, Kings County11/28/20232023 NY Slip Op 34374(U)
    Reape v Mercedes-Benz of + BrooklynSup Ct, Kings County12/11/20232023 NY Slip Op 34375(U)
    Morgan v St. Lukes Roosevelt + Hosp. Ctr. + Sup Ct, Kings County12/1/20232023 NY Slip Op 34376(U)
    Brown v OSIB-BCRE Bowery St. + Holdings + LLCSup Ct, Kings County12/1/20232023 NY Slip Op 34377(U)
    Martinez v Welsback Elec. + Corp.Sup Ct, Kings County11/17/20232023 NY Slip Op 34378(U)
    Matter of Rental Claims Servs. v + CzimentSup Ct, Kings County12/4/20232023 NY Slip Op 34379(U)
    New York Auto Concierge Inc. v + ValenzuelaSup Ct, Kings County12/11/20232023 NY Slip Op 34380(U)
    EO Inv., LLC v GilroySup Ct, NY County12/13/20232023 NY Slip Op 34381(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 15, 2023
    Title + Court + Date + Slip Op No. +
    People v FavoriteSup Ct, Kings County12/11/20232023 NY Slip Op 23391
    People v BallardCrim Ct City NY, Queens County12/14/20232023 NY Slip Op 23392
    Cannizzaro v City of New + YorkSup Ct, NY County12/15/20232023 NY Slip Op 23393
    Afghan House, Inc. v + Inshandbags Inc.Civ Ct City NY, NY County12/1/20232023 NY Slip Op 51358(U)
    New Commune DTLA LLC v + LawrenceCiv Ct City NY, NY County12/6/20232023 NY Slip Op 51359(U)
    Lashley v Brooklyn Std. IV, + LLCSup Ct, Kings County12/14/20232023 NY Slip Op 51360(U)
    Johnson v State of New + YorkCt Claims9/5/20232023 NY Slip Op 51361(U)
    Buffalo Auto Acceptance Corp. v + HamiltonCounty Ct, Niagara County8/21/20232023 NY Slip Op 34339(U)
    Ciceron v GulmaticoSup Ct, Kings County4/7/20212021 NY Slip Op 34044(U)
    Jackson v RahmanSup Ct, Bronx County10/13/20202020 NY Slip Op 35540(U)
    Lesniak v 411 Wales Realty, + LLCSup Ct, Bronx County8/4/20212021 NY Slip Op 34045(U)
    Veras v GuzmanSup Ct, Bronx County4/28/20202020 NY Slip Op 35541(U)
    McRae v American United Transp. + Inc.Sup Ct, Bronx County3/17/20202020 NY Slip Op 35542(U)
    Podlubny v KourSup Ct, Bronx County12/21/20202020 NY Slip Op 35543(U)
    Patino v Carretera Inc.Sup Ct, Bronx County1/29/20212021 NY Slip Op 34046(U)
    Martinez v JRL Food Corp. + Sup Ct, Bronx County5/19/20202020 NY Slip Op 35544(U)
    Simmons v BellSup Ct, Queens County12/9/20222022 NY Slip Op 34663(U)
    Simmons v BellSup Ct, Queens County5/29/20202020 NY Slip Op 35545(U)
    Cimillo v West Side Dental + Assoc., + P.C.Sup Ct, NY County11/27/20232023 NY Slip Op 34340(U)
    Cimillo v West Side Dental + Assoc., + P.C.Sup Ct, NY County11/30/20232023 NY Slip Op 34341(U)
    Miller v BostromSup Ct, NY County12/5/20232023 NY Slip Op 34342(U)
    Larios v GauthierSup Ct, NY County12/7/20232023 NY Slip Op 34343(U)
    Johnson v Mount Sinai + Hosp.Sup Ct, NY County11/27/20232023 NY Slip Op 34344(U)
    Williams v SenthilkumarSup Ct, NY County12/4/20232023 NY Slip Op 34345(U)
    Bethpage Fed. Credit Union v West + 26th St. Realty LLCSup Ct, NY County12/1/20232023 NY Slip Op 34346(U)
    Six Gramercy LLC v Westside Units + 18th St. LLCSup Ct, NY County12/1/20232023 NY Slip Op 34347(U)
    88 Global Partners LLC v 141 E. + 88th + St. Realty LLCSup Ct, NY County11/17/20232023 NY Slip Op 34348(U)
    Christiana Trust v AliSup Ct, NY County12/1/20232023 NY Slip Op 34349(U)
    BD Notes LLC v Garofalo Real + Estate + Holdings, LLCSup Ct, NY County12/8/20232023 NY Slip Op 34350(U)
    New York Life Ins. Co. v 717 GFC, + LLCSup Ct, NY County12/8/20232023 NY Slip Op 34351(U)
    Fannie Mae v Residential Indus. + I, + LLCSup Ct, NY County12/1/20232023 NY Slip Op 34352(U)
    Wells Fargo Bank, N.A. v 555 + Retail + Owner LLCSup Ct, NY County11/20/20232023 NY Slip Op 34353(U)
    Deutsche Bank Trust Co. Ams. v A + & R + 1392 Realty, LLCSup Ct, NY County11/17/20232023 NY Slip Op 34354(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 14, 2023
    Title + Court + Date + Slip Op No. +
    Mendez v HidalgoCiv Ct City NY, NY County12/14/20232023 NY Slip Op 23390
    Mehr v Mount Sinai Hosp. + Sup Ct, Orange County12/12/20232023 NY Slip Op 51356(U)
    Vucetaj v DahlSup Ct, NY County12/13/20232023 NY Slip Op 51357(U)
    King v City of New YorkSup Ct, NY County12/11/20232023 NY Slip Op 34311(U)
    Rodriguez v YWA-Amsterdam LLC + Sup Ct, NY County12/8/20232023 NY Slip Op 34312(U)
    Matter of Gonzaque v Helene Fuld + Coll. of NursingSup Ct, NY County12/8/20232023 NY Slip Op 34313(U)
    Marcus v City of New York + Sup Ct, NY County12/11/20232023 NY Slip Op 34314(U)
    Pinder v Mount Sinai Hosp. + Sup Ct, NY County12/11/20232023 NY Slip Op 34315(U)
    Matter of C72 LLC v New York + State Div. of Hous. & Community RenewalSup Ct, NY County12/7/20232023 NY Slip Op 34316(U)
    Diaz v 2 Broadway Ground Lease + TrustSup Ct, NY County12/8/20232023 NY Slip Op 34317(U)
    Morale v A.O. Smith Water Prods. + Co.Sup Ct, NY County12/11/20232023 NY Slip Op 34318(U)
    Thomas v Avon Prods., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34319(U)
    Courtois v RosenblumSup Ct, Kings County12/7/20232023 NY Slip Op 34320(U)
    People v VDARE Found., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34321(U)
    Qi Yong Wu v Olympos Trans + Inc.Sup Ct, Kings County11/21/20232023 NY Slip Op 34322(U)
    Marte v AgostaSup Ct, Kings County12/11/20232023 NY Slip Op 34323(U)
    Marin v AmatoreSup Ct, Kings County12/11/20232023 NY Slip Op 34324(U)
    Square My Capital LLC v + JohnsonSup Ct, Kings County12/7/20232023 NY Slip Op 34325(U)
    Moses v Deroche-WilliamsSup Ct, Kings County12/11/20232023 NY Slip Op 34326(U)
    Sabr Chems. Group, LLC v Norrhest + Chems., Inc.Sup Ct, NY County12/11/20232023 NY Slip Op 34327(U)
    Scarola Zubatov & Schaffzin + PLLC v Rocketfuel Blockchain, Inc.Sup Ct, NY County12/11/20232023 NY Slip Op 34328(U)
    AKF, Inc. v Windows & Beyond + Interiors, LLCSup Ct, NY County12/11/20232023 NY Slip Op 34330(U)
    32 W. 39th St. Sole Member LLC v + Regency NYC Inc.Sup Ct, NY County12/7/20232023 NY Slip Op 34332(U)
    J-Bar Reinforcement Inc. v Crest + Hill Capital LLCSup Ct, NY County12/11/20232023 NY Slip Op 34333(U)
    MDB Dev. Corp. v Maximum Fire + EscapesSup Ct, NY County12/10/20232023 NY Slip Op 34334(U)
    Federal Realty N.Y., LLC v FC + Foley, LLCSup Ct, NY County11/17/20232023 NY Slip Op 34335(U)
    Skyhorse Publ., Inc. v + BlakleySup Ct, NY County11/3/20232023 NY Slip Op 34336(U)
    Stevens v CutlerSup Ct, NY County12/7/20232023 NY Slip Op 34337(U)
    Hudgins v SpielfogelSup Ct, NY County11/30/20232023 NY Slip Op 34338(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 13, 2023
    Title + Court + Date + Slip Op No. +
    Matter of Liam V.Fam Ct, Kings County12/12/20232023 NY Slip Op 23387
    People v LujaCrim Ct City NY, Bronx County 12/11/20232023 NY Slip Op 23388
    People v CollazoSup Ct, NY County12/6/20232023 NY Slip Op 23389
    People v EvansCrim Ct City NY, Queens County12/12/20232023 NY Slip Op 51352(U)
    Adolphe v MorcilloSup Ct, Kings County12/12/20232023 NY Slip Op 51353(U)
    Benayoun v AlkadaSup Ct, Kings County12/12/20232023 NY Slip Op 51354(U)
    Morel v AvilesCity Ct Middletown, Orange County12/11/20232023 NY Slip Op 51355(U)
    Deutsche Bank Natl. Trust Co. v + GordonSup Ct, Nassau County4/6/20232023 NY Slip Op 34284(U)
    Residential Mtge. Loan Trust + 2013-TT2 v FioritaSup Ct, Suffolk County7/18/20222022 NY Slip Op 34659(U)
    Bank of N.Y. Mellon v + LicariSup Ct, Suffolk County3/11/20222022 NY Slip Op 34660(U)
    U.S. Bank N.A. v MartySup Ct, Suffolk County5/24/20192019 NY Slip Op 35069(U)
    Federal Natl. Mtge. Assn. (Fannie + Mae) v PriscoSup Ct, Suffolk County8/20/20192019 NY Slip Op 35070(U)
    Direct Lending Group, Inc. v + Barina + Group LLCSup Ct, Nassau County12/1/20222022 NY Slip Op 34661(U)
    Matter of Serrano v Meyer + Sup Ct, Orange County12/8/20232023 NY Slip Op 34285(U)
    Tokos v County of BroomeSup Ct, Broome County12/6/20222022 NY Slip Op 34662(U)
    Country-Wide Ins. Co. v Advanced + Comprehensive Lab., LLCSup Ct, NY County12/7/20232023 NY Slip Op 34286(U)
    Tremor Video, Inc. v Alphonso, + Inc.Sup Ct, NY County12/5/20232023 NY Slip Op 34287(U)
    Xiaoguang Jiang v American + Express + Co.Sup Ct, NY County11/20/20232023 NY Slip Op 34288(U)
    Tender Touch Health Care Servs. + Inc. + v Tnuzeg LLCSup Ct, NY County11/30/20232023 NY Slip Op 34289(U)
    MW Gestion v Cellenkos + Inc.Sup Ct, NY County12/7/20232023 NY Slip Op 34290(U)
    Strecker v Singlepoint Inc. + Sup Ct, NY County12/6/20232023 NY Slip Op 34291(U)
    Bissell St. I, LLC v Westbrook + Partners LLCSup Ct, NY County11/21/20232023 NY Slip Op 34293(U)
    Rockefeller Univ. v Aetna Cas. + & + Surety Co.Sup Ct, NY County12/8/20232023 NY Slip Op 34294(U)
    Deutsche Bank AG, N.Y. Branch v + RBH Inv. II, LLCSup Ct, NY County11/20/20232023 NY Slip Op 34295(U)
    DCH LEX Propco GP LLC v YS 541 + Lexington Holdings LLCSup Ct, NY County12/4/20232023 NY Slip Op 34296(U)
    Thoro-Graph, Inc. v New York + Racing + Assn., Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 34297(U)
    Fred Alger Mgt., LLC v Impulse + Dynamics PLCSup Ct, NY County12/7/20232023 NY Slip Op 34298(U)
    U.S. Specialty Ins. Co. v State + Natl. + Ins. Co., Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 34299(U)
    Trinity Ctr. LLC v Mazel + Reproduction, Inc.Sup Ct, NY County12/4/20232023 NY Slip Op 34300(U)
    Taverna v Hieber Reade St., + LLCSup Ct, NY County12/1/20232023 NY Slip Op 34301(U)
    Strabag, SPA v Alto Maipo + SPASup Ct, NY County12/8/20232023 NY Slip Op 34302(U)
    Go N.Y. Tours, Inc. v Tour Cent. + Park + Inc.Sup Ct, NY County11/29/20232023 NY Slip Op 34303(U)
    Real Dependable Contr. Corp. v + Fountain Gardens Owners CorpSup Ct, NY County11/29/20232023 NY Slip Op 34304(U)
    389 Assoc. v Isabella's Jewels, + Inc.Sup Ct, NY County11/20/20232023 NY Slip Op 34305(U)
    200 E. 36th Owners Corp. v N.Y.C. + Warehouse, Inc.Sup Ct, NY County12/1/20232023 NY Slip Op 34306(U)
    Empiremediholdings, LLC v Bridge + Funding Cap LLCSup Ct, NY County11/29/20232023 NY Slip Op 34307(U)
    Skyland Dev. Corp. v Elmwood + Ventures, LLCSup Ct, NY County11/30/20232023 NY Slip Op 34308(U)
    370 8th Ave. Group, LLC v + BurkeSup Ct, NY County12/4/20232023 NY Slip Op 34309(U)
    Zeidman v ChenSup Ct, NY County11/20/20232023 NY Slip Op 34310(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 12, 2023
    Title + Court + Date + Slip Op No. +
    A.S. v S.S.Sup Ct, NY County10/14/20222022 NY Slip Op 51418(U)
    First Hous. Co., Inc. v + TchiremuCiv Ct City NY, Queens County3/6/20232023 NY Slip Op 23384
    WV Preserv. Partners LLC v + ChangCiv Ct City NY, NY County12/11/20232023 NY Slip Op 23385
    Santana v Yonkers City Sch. + Dist.Sup Ct, Westchester County12/7/20232023 NY Slip Op 23386
    Matter of Small v Wade + Sup Ct, Kings County12/11/20232023 NY Slip Op 51342(U)
    Federal Natl. Mtge. Assn. v + SmithCiv Ct City NY, Queens County12/11/20232023 NY Slip Op 51343(U)
    People v MallikCrim Ct City NY, Kings County10/6/20232023 NY Slip Op 51344(U)
    People v StephensCrim Ct City NY, Kings County10/3/20232023 NY Slip Op 51346(U)
    Asian v Flintlock Constr. Servs. + LLCSup Ct, NY County12/8/20232023 NY Slip Op 34257(U)
    Garcia v CM & Assoc. Constr. + Mgt., LLCSup Ct, NY County12/8/20232023 NY Slip Op 34258(U)
    Gyure v Friars N.A. Inc.Sup Ct, NY County12/8/20232023 NY Slip Op 34259(U)
    Corey v City of New YorkSup Ct, NY County12/7/20232023 NY Slip Op 34260(U)
    591 Realty LLC v CuranajSup Ct, NY County12/8/20232023 NY Slip Op 34261(U)
    Matter of Baychester Payment Ctr. + v New York State Dept. of Fin. Servs.Sup Ct, NY County12/7/20232023 NY Slip Op 34262(U)
    Longfellow v BarneySup Ct, NY County11/29/20232023 NY Slip Op 34263(U)
    Matter of Courtney v NYS + Emergency Rental Assistance Program (ERAP)Sup Ct, NY County12/8/20232023 NY Slip Op 34264(U)
    Rockefeller v Solovieff Realty + Co., L.L.C.Sup Ct, NY County12/8/20232023 NY Slip Op 34265(U)
    Smyth v City of New YorkSup Ct, NY County12/7/20232023 NY Slip Op 34266(U)
    TD Bank, N.A. v Gallery 18 + Inc.Sup Ct, NY County11/29/20232023 NY Slip Op 34267(U)
    Hereford Ins. Co. v 247 Med. + Supplies, Inc.Sup Ct, NY County12/4/20232023 NY Slip Op 34268(U)
    Damassia v Bedford Stuyvesant S. + One LLCSup Ct, NY County12/8/20232023 NY Slip Op 34269(U)
    People v National Rifle Assn. of + Am.Sup Ct, NY County12/8/20232023 NY Slip Op 34270(U)
    Johnson v Harlem Hosp.Sup Ct, NY County12/8/20232023 NY Slip Op 34271(U)
    McLean v SolnySup Ct, Kings County11/27/20232023 NY Slip Op 34272(U)
    Weber v BarnettSup Ct, Kings County12/7/20232023 NY Slip Op 34273(U)
    Franks v National Grid USA + Sup Ct, Kings County12/7/20232023 NY Slip Op 34274(U)
    Nellis v Cadman Assoc. LLC + Sup Ct, Kings County11/16/20232023 NY Slip Op 34276(U)
    BH Sterling Realty LLC v + LongoriaSup Ct, Kings County12/7/20232023 NY Slip Op 34277(U)
    Diaz v MahmoodSup Ct, Kings County11/30/20232023 NY Slip Op 34278(U)
    Global Liberty Ins. Co. v + CoboSup Ct, Kings County11/21/20232023 NY Slip Op 34279(U)
    Fusco v DantonSup Ct, Kings County12/5/20232023 NY Slip Op 34280(U)
    Skyview Capital, LLC v Conduent + Bus. Servs., LLCSup Ct, NY County12/7/20232023 NY Slip Op 34281(U)
    Altium Growth Fund, L.P. v Tingo + Group, Inc.Sup Ct, NY County12/7/20232023 NY Slip Op 34282(U)
    69 Second Ave. LLC v Vanessa + Realty Corp.Sup Ct, NY County12/8/20232023 NY Slip Op 34283(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 11, 2023
    Title + Court + Date + Slip Op No. +
    N.T. v P.F.Sup Ct, NY County9/23/20222022 NY Slip Op 51417(U)
    Hughes v Qingling Zhao + City Ct Long Beach, Nassau County12/7/20232023 NY Slip Op 23383
    People v DunmeyerSup Ct, NY County11/27/20232023 NY Slip Op 51334(U)
    BRX Ground 1 LLC v + TejerasCiv Ct City NY, Bronx County12/8/20232023 NY Slip Op 51335(U)
    Bracero v State of New + YorkCt Claims8/2/20232023 NY Slip Op 51336(U)
    American Tr. Ins. Co. v + Trinity Pain Mgt. of Staten Is., PLLCSup Ct, Kings County12/8/20232023 NY Slip Op 51337(U)
    Richards v PierreSup Ct, Kings County12/8/20232023 NY Slip Op 51338(U)
    Robinson v D.C. Realty Group + Inc.Sup Ct, Kings County12/8/20232023 NY Slip Op 51339(U)
    Lux Bldrs. Inc. v INN Constr. + Corp.Sup Ct, Kings County12/8/20232023 NY Slip Op 51340(U)
    985 Herkimer St. LLC v + Hobson-GreeneSup Ct, Kings County12/8/20232023 NY Slip Op 51341(U)
    Matter of Coscia v Town of + GreenburghSup Ct, Westchester County9/9/20212021 NY Slip Op 34039(U)
    Rosario v PeskinSup Ct, Bronx County11/22/20192019 NY Slip Op 35061(U)
    Silva v CastroSup Ct, Bronx County11/27/20192019 NY Slip Op 35062(U)
    Ramirez v HansumSup Ct, Bronx County9/30/20202020 NY Slip Op 35535(U)
    Martinez v Ortega-Lizardi + Sup Ct, Bronx County11/4/20192019 NY Slip Op 35063(U)
    Aybar v Krasdale Foods, Inc. + Sup Ct, Bronx County10/25/20192019 NY Slip Op 35064(U)
    Batista v Triumph Constr. + Corp.Sup Ct, Bronx County8/26/20202020 NY Slip Op 35536(U)
    Cuddihy v Bronx Pro Group LLC + Sup Ct, Bronx County10/28/20192019 NY Slip Op 35065(U)
    Cuddihy v Bronx Pro Group LLC + Sup Ct, Bronx County9/23/20192019 NY Slip Op 35066(U)
    Delgado v SantiagoSup Ct, Bronx County11/8/20192019 NY Slip Op 35067(U)
    Abad v MartinSup Ct, Bronx County5/15/20202020 NY Slip Op 35537(U)
    Brito v SantiagoSup Ct, Bronx County10/8/20202020 NY Slip Op 35538(U)
    Black v SpanosSup Ct, Bronx County11/19/20192019 NY Slip Op 35068(U)
    Madera v City of New York + Sup Ct, NY County12/5/20232023 NY Slip Op 34234(U)
    State Farm Mut. Auto. Ins. Co. v + Protection Physical Therapy, P.C.Sup Ct, NY County12/6/20232023 NY Slip Op 34235(U)
    Burgos v GTL Constr., LLC. + Sup Ct, NY County12/6/20232023 NY Slip Op 34236(U)
    Liss v City of New YorkSup Ct, NY County12/6/20232023 NY Slip Op 34237(U)
    Associated Indus. Ins. Co. v + Unified Window Sys. Inc.Sup Ct, NY County12/6/20232023 NY Slip Op 34238(U)
    Aldrich v LNG Enters., Inc. + Sup Ct, Chautauqua County9/2/20222022 NY Slip Op 34658(U)
    Stanhope v ConwaySup Ct, Otsego County5/25/20212021 NY Slip Op 34040(U)
    Garcia v City of New York + Sup Ct, NY County12/5/20232023 NY Slip Op 34239(U)
    Allison-Jabbie v Collins Bldg. + Servs., Inc.Sup Ct, Kings County12/6/20232023 NY Slip Op 34240(U)
    Krasnow v CataniaSup Ct, Nassau County3/30/20212021 NY Slip Op 34041(U)
    Anagnostopoulos v Rosenman + Sup Ct, Nassau County12/10/20212021 NY Slip Op 34042(U)
    Anagnostopoulos v Rosenman + Sup Ct, Nassau County4/14/20202020 NY Slip Op 35539(U)
    Lynch Dev. Assoc., Inc. v + JohnsonSup Ct, Suffolk County12/30/20212021 NY Slip Op 34043(U)
    SF Capital Invs., LP v + LoanStreet, + Inc.Sup Ct, NY County12/3/20232023 NY Slip Op 34241(U)
    Weisberg v StandardSup Ct, NY County11/28/20232023 NY Slip Op 34242(U)
    Weiner v AbendSup Ct, NY County11/22/20232023 NY Slip Op 34243(U)
    Besen Partners LLC v 36 W. 128th, + LLCSup Ct, NY County11/30/20232023 NY Slip Op 34244(U)
    CWCapital Invs. LLC v CWCapital + Cobalt Vr Ltd.Sup Ct, NY County12/3/20232023 NY Slip Op 34245(U)
    East 51st St. Dev. Co., LLC v HFZ + E. 51, LLCSup Ct, NY County11/28/20232023 NY Slip Op 34246(U)
    3B Assoc., LLC v eCommission + Solutions, LLCSup Ct, NY County11/20/20232023 NY Slip Op 34247(U)
    Matter of Trust Motor, LLC v LCF + GroupSup Ct, NY County11/28/20232023 NY Slip Op 34248(U)
    Oddo & Babat, P.C. v Joseph + T. Mullen, Jr. & Assoc.Sup Ct, NY County11/28/20232023 NY Slip Op 34249(U)
    Bridgeton 396 Broadway Fee, LLC v + HiRise Engg. P.C.Sup Ct, NY County11/29/20232023 NY Slip Op 34250(U)
    C.D.E. A.C. Co., Inc. v New York + City Dept. of Envtl. ProtectionSup Ct, NY County12/5/20232023 NY Slip Op 34251(U)
    Hildene Opportunities Master Fund + II, Ltd. v NRF Holdco, LLCSup Ct, NY County11/30/20232023 NY Slip Op 34252(U)
    213 W. 23rd St. LLC v Crunch + Holdings LLCSup Ct, NY County11/20/20232023 NY Slip Op 34253(U)
    Murphy Kennedy Group LLC v Board + of Mgrs. of the St. Tropez CondominiumSup Ct, NY County11/28/20232023 NY Slip Op 34254(U)
    ARM Energy Holdings, LLC v + Nautilus Envtl. Ohio 1, LLCSup Ct, NY County12/6/20232023 NY Slip Op 34255(U)
    ACS Group Acquisitions LLC v Kate + Spade LLCSup Ct, NY County12/5/20232023 NY Slip Op 34256(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 08, 2023
    Title + Court + Date + Slip Op No. +
    Mamadjanov v Boston Bryant + Hous. Dev. Fund Corp.Sup Ct, Kings County12/7/20232023 NY Slip Op 23381
    Cooley v VanslykeCity Ct Little Falls, Herkimer County12/8/20232023 NY Slip Op 23382
    People v FashawSup Ct, NY County11/29/20232023 NY Slip Op 51333(U)
    Sam Van LLC v BickleyCiv Ct City NY, Bronx County11/30/20232023 NY Slip Op 34209(U)
    Matter of Ling Lin v Sewell + Sup Ct, NY County12/5/20232023 NY Slip Op 34210(U)
    Diaz v 2 Broadway Ground Lease + TrustSup Ct, NY County12/5/20232023 NY Slip Op 34212(U)
    Enz v A.O. Smith Water Prods. + Co.Sup Ct, NY County12/4/20232023 NY Slip Op 34213(U)
    Guaman v New 470 LLCSup Ct, Kings County12/5/20232023 NY Slip Op 34214(U)
    Opera House Lofts LLC v + CarnahanSup Ct, Kings County11/28/20232023 NY Slip Op 34215(U)
    Batis v 85 Jay St. (Brooklyn), + LLCSup Ct, Kings County12/5/20232023 NY Slip Op 34216(U)
    Callender v ForondaSup Ct, Kings County12/5/20232023 NY Slip Op 34217(U)
    L.I. Champions Taekwondo Inc. v + 151 Montague Opportunity LLCSup Ct, Kings County11/30/20232023 NY Slip Op 34218(U)
    Rock-Park 94 LLC v CAMBA, + Inc.Sup Ct, Kings County11/27/20232023 NY Slip Op 34219(U)
    Buccio v SinghSup Ct, Kings County11/15/20232023 NY Slip Op 34220(U)
    Svetlichnyy v Cornell Univ. + Sup Ct, Kings County11/20/20232023 NY Slip Op 34221(U)
    Alpine Ready Mix Inc. v Happy + Living Dev., LLCSup Ct, Kings County11/20/20232023 NY Slip Op 34223(U)
    Vasquez v New York City Fire + Dept.Sup Ct, Kings County11/27/20232023 NY Slip Op 34224(U)
    Biodiagnostic Labs, Inc. v + Centers for Care, LLCSup Ct, Kings County11/28/20232023 NY Slip Op 34225(U)
    Ray v RaySup Ct, NY County12/1/20232023 NY Slip Op 34226(U)
    Greenman v MillerSup Ct, NY County12/5/20232023 NY Slip Op 34227(U)
    White Oak Commercial Fin., LLC v + EIA, Inc.Sup Ct, NY County11/27/20232023 NY Slip Op 34228(U)
    Tantaros v KrechmerSup Ct, NY County11/20/20232023 NY Slip Op 34229(U)
    Haider v RupallSup Ct, NY County11/29/20232023 NY Slip Op 34230(U)
    Hartman v Pilata Inc.Sup Ct, NY County12/1/20232023 NY Slip Op 34231(U)
    Pursuit Credit Special + Opportunity Fund, L.P. v KrunchCash, LLCSup Ct, NY County11/28/20232023 NY Slip Op 34232(U)
    Sotheby's, Inc. v August Uribe + Fine Art, LLCSup Ct, NY County11/21/20232023 NY Slip Op 34233(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 07, 2023
    Title + Court + Date + Slip Op No. +
    NYC Blue Mgt. LLC v Finn + Civ Ct City NY, Queens County12/3/20232023 NY Slip Op 23380
    K.L. v J.B.Sup Ct, NY County11/8/20232023 NY Slip Op 51327(U)
    G.W. v J.W.Sup Ct, Westchester County12/6/20232023 NY Slip Op 51328(U)
    Biondo v OrnochSup Ct, Richmond County11/30/20232023 NY Slip Op 51329(U)
    Afanador v State of New + YorkCt Claims10/3/20232023 NY Slip Op 51330(U)
    Loumat Realty Co., LLC v + GilkarovCiv Ct City NY, Queens County12/6/20232023 NY Slip Op 51331(U)
    Bologna v Carmel Richmond + Nursing Home, Inc.Sup Ct, Kings County12/7/20232023 NY Slip Op 51332(U)
    Aghedo v 80 Clarkson LLCCiv Ct City NY, Kings County12/4/20232023 NY Slip Op 34188(U)
    Crest I LP v VenturaCiv Ct City NY, NY County3/1/20212021 NY Slip Op 34038(U)
    Sayles v Urban Am. Mgt. Corp. + Sup Ct, NY County11/29/20232023 NY Slip Op 34189(U)
    Kiehm v KimSup Ct, NY County12/1/20232023 NY Slip Op 34190(U)
    Matter of 738 E. 6th Owner (DE) + LLC v New York City Dept. of Hous. Preserv. & Dev. Sup Ct, NY County12/4/20232023 NY Slip Op 34191(U)
    Matter of GPG 592 LLC v New York + City Dept. of Hous. Preserv. & Dev.Sup Ct, NY County12/4/20232023 NY Slip Op 34192(U)
    Matter of DS Brooklyn Portfolio + Owner LLC v New York City Dept. of Hous. Preserv. & Dev.Sup Ct, NY County12/4/20232023 NY Slip Op 34193(U)
    NYCTL 2019-A Trust v Yelagina + Sup Ct, NY County12/1/20232023 NY Slip Op 34194(U)
    Matter of 326 Bedford Ventures + LLC v New York City Dept. of Hous. Preserv. & Dev.Sup Ct, NY County12/4/20232023 NY Slip Op 34195(U)
    Gross v MTGLQ Invs., L.P. + Sup Ct, Kings County12/4/20232023 NY Slip Op 34196(U)
    Follman v GruberSup Ct, Kings County11/30/20232023 NY Slip Op 34197(U)
    Matter of W 36th Villa LLC, v New + York State Div. of Hous. & Community RenewalSup Ct, Kings County11/6/20232023 NY Slip Op 34198(U)
    Varona v Story Ave. E. + Residential, LLCSup Ct, Kings County11/20/20232023 NY Slip Op 34199(U)
    Valentine v LobelSup Ct, Kings County12/4/20232023 NY Slip Op 34200(U)
    Noboa v AGBH Print. House + Holdings, L.L.C.Sup Ct, Kings County11/27/20232023 NY Slip Op 34201(U)
    Muharram v DialloSup Ct, Kings County11/28/20232023 NY Slip Op 34202(U)
    209 Barbey St. Trust v + ScotlandSup Ct, Kings County11/28/20232023 NY Slip Op 34203(U)
    Glover v AshmanSup Ct, Kings County11/1/20232023 NY Slip Op 34204(U)
    ARK570 Doe v Diocese of + BrooklynSup Ct, Kings County11/15/20232023 NY Slip Op 34205(U)
    Ramirez v IssaSup Ct, Kings County11/28/20232023 NY Slip Op 34206(U)
    Nelson v CRP N.Y. Ave. LLC + Sup Ct, Kings County11/28/20232023 NY Slip Op 34207(U)
    Miles-Forde v Green Line Taxi + Inc.Sup Ct, Kings County11/17/20232023 NY Slip Op 34208(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 06, 2023
    Title + Court + Date + Slip Op No. +
    RH 528 W. 159 St. LP v + TimofeevaCiv Ct City NY, NY County12/5/20232023 NY Slip Op 23377
    35-09 LLC v Navedo-Perez + Civ Ct City NY, Queens County12/6/20232023 NY Slip Op 23378
    Koncikowski v Albany Med. + Ctr. Hosp.Sup Ct, Warren County12/4/20232023 NY Slip Op 23379
    Corneille v AliSup Ct, Suffolk County11/28/20232023 NY Slip Op 51318(U)
    Matter of Progressive Ins. + Co. v OteroSup Ct, Richmond County12/1/20232023 NY Slip Op 51319(U)
    Gross v BrachSup Ct, Kings County3/6/20232023 NY Slip Op 51320(U)
    People v MorganSup Ct, Kings County12/4/20232023 NY Slip Op 51321(U)
    People v HooksCrim Ct City NY, Kings County12/6/20232023 NY Slip Op 51322(U)
    People v KingsberryCrim Ct City NY, Bronx County12/5/20232023 NY Slip Op 51323(U)
    People v FrankCrim Ct City NY, Queens County12/4/20232023 NY Slip Op 51324(U)
    People v SaquijxolCrim Ct City NY, Queens County12/6/20232023 NY Slip Op 51325(U)
    Matter of 201 EB Dev. III, LLC v + New York City Dept. of Bldgs.Sup Ct, NY County12/2/20232023 NY Slip Op 34153(U)
    Perez v Anejo, LLCSup Ct, NY County12/1/20232023 NY Slip Op 34154(U)
    Sayles v New York City Hous. + Auth.Sup Ct, NY County11/30/20232023 NY Slip Op 34155(U)
    Cerrone v City of New York + Sup Ct, NY County11/30/20232023 NY Slip Op 34156(U)
    Desposito v JungSup Ct, NY County12/1/20232023 NY Slip Op 34157(U)
    Deleon v 560-568 Audubon Realty, + LLCSup Ct, NY County12/1/20232023 NY Slip Op 34158(U)
    Solarte v Brearley Sch.Sup Ct, NY County11/30/20232023 NY Slip Op 34159(U)
    Alatorre v Port Auth. of N.Y. + & N.J.Sup Ct, NY County12/1/20232023 NY Slip Op 34160(U)
    Saunders v New York City Hous. + Auth.Sup Ct, NY County11/30/20232023 NY Slip Op 34161(U)
    Iacovacci v Brevet Holdings, + LLCSup Ct, NY County11/27/20232023 NY Slip Op 34162(U)
    Escobedo v Circle Line + Sightseeing Yachts, Inc.Sup Ct, NY County11/27/20232023 NY Slip Op 34163(U)
    Ashley v Red Lobster Hospitality + LLCSup Ct, NY County11/21/20232023 NY Slip Op 34164(U)
    Almark Holding Co. LLC v Jung + MoonSup Ct, NY County11/17/20232023 NY Slip Op 34165(U)
    Real World Holdings LLC v 393 W. + Broadway Corp.Sup Ct, NY County11/28/20232023 NY Slip Op 34166(U)
    West 152nd Assoc., L.P. v + GassamaSup Ct, NY County11/28/20232023 NY Slip Op 34168(U)
    Davis v AngiolettiSup Ct, NY County11/29/20232023 NY Slip Op 34169(U)
    NYP Holdings, Inc. v New York + City Police Dept.Sup Ct, NY County11/28/20232023 NY Slip Op 34170(U)
    Munoz v A.O. Smith Water Prods. + CoSup Ct, NY County11/21/20232023 NY Slip Op 34171(U)
    Hollingsworth v A.O. Smith Water + Prods. Co.Sup Ct, NY County11/21/20232023 NY Slip Op 34172(U)
    Marino v Air & Liquid Sys. + Corp.Sup Ct, NY County11/27/20232023 NY Slip Op 34173(U)
    Woods v Amchem Prods., Inc. + Sup Ct, NY County11/21/20232023 NY Slip Op 34174(U)
    Gonder v A.O. Smith Water Prods. + CoSup Ct, NY County11/24/20232023 NY Slip Op 34175(U)
    Nankervis v A.O. Smith Water + Prods. CoSup Ct, NY County11/21/20232023 NY Slip Op 34176(U)
    U.S. Bank N.A. v HandlerSup Ct, Kings County11/22/20232023 NY Slip Op 34177(U)
    City of New York v ORJ Props. + Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 34178(U)
    American Funding Servs. v T.N. + Eldridge Devs. LLCSup Ct, NY County12/1/20232023 NY Slip Op 34179(U)
    City of New York v Steven Holl + Architect, P.C.Sup Ct, NY County12/1/20232023 NY Slip Op 34180(U)
    People v National Rifle Assn. of + Am.Sup Ct, NY County11/30/20232023 NY Slip Op 34181(U)
    Commissioners of the State Ins. + Fund v WyckoffSup Ct, NY County11/27/20232023 NY Slip Op 34182(U)
    Stone v St. Leo R.C. Church + Sup Ct, Kings County11/20/20232023 NY Slip Op 34183(U)
    Lewis v MatiasSup Ct, Kings County11/21/20232023 NY Slip Op 34184(U)
    Henry v CookSup Ct, Kings County11/27/20232023 NY Slip Op 34185(U)
    Anderson v Toll House, LLC + Sup Ct, Kings County12/1/20232023 NY Slip Op 34186(U)
    Guzman v 345 PAS Owner, LLC + Sup Ct, Kings County11/20/20232023 NY Slip Op 34187(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 05, 2023
    Title + Court + Date + Slip Op No. +
    S.B. v A.K.Sup Ct, Westchester County12/4/20232023 NY Slip Op 23373
    Potentia Mgt. Group, LLC v + D.W.Utica City Ct12/1/20232023 NY Slip Op 23374
    Temo Realty LLC v Herrera + Civ Ct City NY, Kings County11/29/20232023 NY Slip Op 23375
    Delgado v State of New + YorkCt Claims11/22/20232023 NY Slip Op 23376
    201 E. 164th St. Assoc., LLC + v CalderonCiv Ct City NY, Bronx County12/4/20232023 NY Slip Op 51315(U)
    People v PriceCrim Ct City NY, Bronx County12/4/20232023 NY Slip Op 51316(U)
    Town of Hartford v Swezey + Sup Ct, Washington County11/30/20232023 NY Slip Op 51317(U)
    Dadey v Onondaga County Comm. of + the Conservative Party of NYSSup Ct, Onondaga County11/30/20232023 NY Slip Op 34150(U)
    Stevenson v Ghosh-HazraSup Ct, Bronx County9/28/20212021 NY Slip Op 34032(U)
    Skyers v City of New York + Sup Ct, Bronx County8/18/20202020 NY Slip Op 35525(U)
    Rivera v Lopez-ReyesSup Ct, Bronx County12/22/20202020 NY Slip Op 35526(U)
    Martinez v EderSup Ct, Bronx County6/29/20202020 NY Slip Op 35527(U)
    Sarowar v ViejoSup Ct, Bronx County10/30/20192019 NY Slip Op 35048(U)
    Metzger v DL Peterson Trust + Sup Ct, Bronx County8/5/20212021 NY Slip Op 34033(U)
    Lesch v Advantage Rent A Car + Sup Ct, Bronx County11/1/20192019 NY Slip Op 35049(U)
    Saduzy v MazumderSup Ct, Bronx County10/15/20192019 NY Slip Op 35050(U)
    Tejada v 15 Cliff LLCSup Ct, Bronx County11/4/20192019 NY Slip Op 35051(U)
    Ayele v ValentineSup Ct, Bronx County11/7/20192019 NY Slip Op 35052(U)
    Ayele v ValentineSup Ct, Bronx County5/30/20192019 NY Slip Op 35053(U)
    Kriskovich v CruzSup Ct, Bronx County12/14/20202020 NY Slip Op 35528(U)
    Ramos v Clam Diggers Restoration + LLCSup Ct, Bronx County2/22/20212021 NY Slip Op 34034(U)
    Colon v Raymour Furniture Co. + Inc.Sup Ct, Bronx County7/21/20202020 NY Slip Op 35529(U)
    Harris v BonnoSup Ct, Bronx County9/28/20202020 NY Slip Op 35530(U)
    Upson v Oliveira Contr., Inc. + Sup Ct, Bronx County12/9/20202020 NY Slip Op 35531(U)
    Ruiz v Parkchester S. + Condominium, Inc.Sup Ct, Bronx County8/7/20192019 NY Slip Op 35054(U)
    Granieri v MaksumovSup Ct, Bronx County6/15/20202020 NY Slip Op 35532(U)
    Corrales v Urgent Care Physician + of N.Y.-Hartsdale, PLLCSup Ct, Bronx County3/6/20202020 NY Slip Op 35533(U)
    Ramirez-Cruz v + Montgomery-GilesSup Ct, Bronx County11/7/20192019 NY Slip Op 35055(U)
    Turner v DoeSup Ct, Bronx County7/30/20202020 NY Slip Op 35534(U)
    O'Shea v Procida Constr. + Corp.Sup Ct, Bronx County9/26/20222022 NY Slip Op 34655(U)
    Jerez v MorenoSup Ct, Bronx County11/25/20192019 NY Slip Op 35056(U)
    Betancourt v ARC NYC123 William, + LLCSup Ct, Bronx County8/31/20232023 NY Slip Op 34151(U)
    Torres v LevySup Ct, Bronx County7/14/20232023 NY Slip Op 34152(U)
    Rosa v 267 E. 202 LLCSup Ct, Bronx County3/28/20192019 NY Slip Op 35057(U)
    Richardson v CancelSup Ct, Bronx County2/7/20222022 NY Slip Op 34656(U)
    Mirza v Tribeca Auto. Inc. + Sup Ct, Bronx County8/2/20192019 NY Slip Op 35058(U)
    Menzies v MoonabSup Ct, Bronx County10/7/20192019 NY Slip Op 35059(U)
    Rosa v DiloneSup Ct, Bronx County10/8/20192019 NY Slip Op 35060(U)
    Hallback v City of New York + Sup Ct, Bronx County9/21/20222022 NY Slip Op 34657(U)
    Davis v SantosSup Ct, Bronx County10/19/20212021 NY Slip Op 34036(U)
    Cattaraugus County v New York + State Dept. of HealthSup Ct, Albany County10/12/20212021 NY Slip Op 34037(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 04, 2023
    Title + Court + Date + Slip Op No. +
    Matter of MaltzSur Ct, Richmond County11/30/20232023 NY Slip Op 23372
    Department of Hous. Preserv. + & Dev. of the City of N.Y. v OhebshalomCiv Ct City NY, Queens County11/29/20232023 NY Slip Op 51313(U)
    Scoca v KosmachevaJust Ct Village Tuckahoe, Westchester County11/16/20232023 NY Slip Op 51314(U)
    Collazo v AduseiSup Ct, Bronx County9/27/20192019 NY Slip Op 35038(U)
    Catania v LirianoSup Ct, Bronx County4/15/20212021 NY Slip Op 34027(U)
    Catania v LirianoSup Ct, Bronx County11/6/20202020 NY Slip Op 35519(U)
    Catania v LirianoSup Ct, Bronx County2/21/20202020 NY Slip Op 35520(U)
    Contreras v CharrierSup Ct, Bronx County10/15/20192019 NY Slip Op 35039(U)
    Franco v NarvaezSup Ct, Bronx County11/19/20192019 NY Slip Op 35040(U)
    Naranjo v CampbellSup Ct, Bronx County10/10/20192019 NY Slip Op 35041(U)
    Clarke v BerdonSup Ct, Bronx County11/8/20192019 NY Slip Op 35042(U)
    Moore v JohnsonSup Ct, Bronx County10/9/20192019 NY Slip Op 35043(U)
    Figueroa v WilliamsSup Ct, Bronx County7/29/20212021 NY Slip Op 34028(U)
    Tavarez v Linda Transp. Corp. + Sup Ct, Bronx County10/9/20192019 NY Slip Op 35044(U)
    Lioreisis v MazaSup Ct, Bronx County7/14/20212021 NY Slip Op 34029(U)
    Gonzalez v SeraphinSup Ct, Bronx County4/28/20202020 NY Slip Op 35521(U)
    Eusebio v Ahern Rentals Inc. + Sup Ct, Bronx County11/21/20192019 NY Slip Op 35045(U)
    Lewis v KaboreSup Ct, Bronx County9/28/20212021 NY Slip Op 34030(U)
    Wright v Plaza Constr. LLC + Sup Ct, Bronx County12/21/20202020 NY Slip Op 35522(U)
    Wilson v Otis El. Co.Sup Ct, Bronx County10/22/20192019 NY Slip Op 35046(U)
    Colarossi v ShahSup Ct, Bronx County8/13/20202020 NY Slip Op 35523(U)
    Pryce v SanchezSup Ct, Bronx County11/1/20192019 NY Slip Op 35047(U)
    Meza v GarciaSup Ct, Bronx County7/28/20212021 NY Slip Op 34031(U)
    Reyes v MaldonadoSup Ct, Bronx County3/17/20202020 NY Slip Op 35524(U)
    Owczarek v J.T. Magen & Co. + Inc.Sup Ct, NY County11/29/20232023 NY Slip Op 34144(U)
    Clayman Rosenberg Kirshner & + Linder LLP v New York County Dist. Attorney's Off.Sup Ct, NY County11/29/20232023 NY Slip Op 34145(U)
    AMG Solutions LLC v Hudson + Meridian Constr. Group, LLCSup Ct, NY County11/20/20232023 NY Slip Op 34146(U)
    Rich v New York City Tr. + Auth.Sup Ct, NY County11/27/20232023 NY Slip Op 34148(U)
    40 CPS Assoc., LLC v Elnashar + Sup Ct, NY County11/15/20232023 NY Slip Op 34149(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 01, 2023
    Title + Court + Date + Slip Op No. +
    Matter of Andres Q. v + Letiticia Y.A.Fam Ct, Monroe County11/18/20222022 NY Slip Op 51416(U)
    C.M. v E.M.Sup Ct, Nassau County11/28/20232023 NY Slip Op 23369
    Ditech Fin. LLC v Naidu + Sup Ct, Queens County10/18/20232023 NY Slip Op 23370
    G.P. v State of New York + Ct Claims10/16/20232023 NY Slip Op 23371
    Bank of N.Y. v Harper + Sup Ct, Suffolk County10/2/20232023 NY Slip Op 51306(U)
    Cadillac Leasing L.P. v + KamaraCiv Ct City NY, Queens County11/30/20232023 NY Slip Op 51307(U)
    Sims v RegisDist Ct Nassau County, Second Dist11/30/20232023 NY Slip Op 51308(U)
    BP New Bldg. LLC v + SteplightCiv Ct City NY, Bronx County8/25/20232023 NY Slip Op 51309(U)
    Madison Advance LLC v Design + Light. Group LLCSup Ct, Kings County12/1/20232023 NY Slip Op 51310(U)
    American Tr. Ins. Co. v + Nexray Med. Imaging P.C.Sup Ct, Kings County12/1/20232023 NY Slip Op 51311(U)
    429 Lenox Realty, LLC v A + Taste of Seafood, Inc.Civ Ct City NY, NY County6/7/20232023 NY Slip Op 51312(U)
    Laurelton Estates LLC. v + PrinceSup Ct, Queens County11/20/20232023 NY Slip Op 34118(U)
    Serafin v New York State Dept. of + HealthSup Ct, Albany County12/9/20212021 NY Slip Op 34025(U)
    Cassino-Sharp v Whispering Hills + Homeowners Assn., Inc.Sup Ct, Orange County12/2/20202020 NY Slip Op 35517(U)
    Diamond v WalkerSup Ct, Suffolk County4/23/20202020 NY Slip Op 35518(U)
    Diamond v WalkerSup Ct, Suffolk County1/4/20172017 NY Slip Op 33554(U)
    Perez v City of New YorkSup Ct, NY County11/20/20232023 NY Slip Op 34119(U)
    Bourne v Martin Dev. & Mgt., + LLC.Sup Ct, Kings County11/22/20232023 NY Slip Op 34120(U)
    Maria v Manhattan Homes Co., + LLCSup Ct, NY County11/16/20232023 NY Slip Op 34121(U)
    Ming Tang v PS Marcato El. Co., + Inc.Sup Ct, NY County11/28/20232023 NY Slip Op 34122(U)
    Baptiste v New York City Tr. + Auth.Sup Ct, NY County11/20/20232023 NY Slip Op 34123(U)
    In Re Sea Ltd. Sec. Litig. v + XXXSup Ct, NY County11/20/20232023 NY Slip Op 34124(U)
    Lopez v 18-20 Park 84 Corp. + Sup Ct, NY County11/24/20232023 NY Slip Op 34125(U)
    Alexopoulos v 2 Rector St. (NY), + LLCSup Ct, NY County11/20/20232023 NY Slip Op 34126(U)
    Normanus Realty LLC v 154 E. 62 + LLCSup Ct, NY County11/27/20232023 NY Slip Op 34127(U)
    Yeiser v SchiavocampoSup Ct, NY County11/20/20232023 NY Slip Op 34128(U)
    Littleton v Mode Pub. Relations + LLCSup Ct, NY County5/24/20232023 NY Slip Op 34129(U)
    Stuyvesant Town-Peter Cooper Vil. + Tenants Assn. v New York State Div. of Hous. & Community RenewalSup Ct, NY County11/22/20232023 NY Slip Op 34130(U)
    Evans v PunterSup Ct, NY County11/22/20232023 NY Slip Op 34131(U)
    Komomolov v PopikSup Ct, NY County11/27/20232023 NY Slip Op 34132(U)
    Starks v Metropolitan Transp. + Auth.Sup Ct, NY County11/17/20232023 NY Slip Op 34133(U)
    Yankiver v New York City Tr. + Auth.Sup Ct, NY County11/15/20232023 NY Slip Op 34134(U)
    Mironov v Memorial Hosp. for + Cancer & Allied DiseasesSup Ct, NY County11/27/20232023 NY Slip Op 34135(U)
    Torres v 411-413 Broadway, + LLCSup Ct, NY County11/16/20232023 NY Slip Op 34136(U)
    Chapin v 1818 Nadlan LLC. + Sup Ct, NY County11/21/20232023 NY Slip Op 34137(U)
    El-Yamani v F.B.M. Cab Corp + Sup Ct, NY County11/28/20232023 NY Slip Op 34138(U)
    McCrae v City of New York + Sup Ct, NY County11/1/20232023 NY Slip Op 34139(U)
    245 Park Ave. Prop. LLC v HNA + Capital US LLCSup Ct, NY County11/17/20232023 NY Slip Op 34140(U)
    Silverman v LeibowitzSup Ct, NY County11/22/20232023 NY Slip Op 34141(U)
    Murphy v City of New York + Sup Ct, NY County11/20/20232023 NY Slip Op 34142(U)
    Lardon Constr. Corp. v Mark + Cerrone, Inc.Sup Ct, Niagara County4/11/20222022 NY Slip Op 34653(U)
    Clarke v American Credit + AcceptanceSup Ct, Ulster County11/14/20232023 NY Slip Op 34143(U)
    Rosas v PetkovichSup Ct, Dutchess County10/8/20212021 NY Slip Op 34026(U)
    Hart v City of BuffaloSup Ct, Erie County1/20/20222022 NY Slip Op 34654(U)


    + + + +
    +
    + + +
    +
    E-mail the Law
+
+
+
+Reporting Bureau +
    +
    New York State Law Reporting Bureau
    + 17 Lodge St., Albany NY 12207
    + phone: (518) 453-6900
    + fax: (518) 426-1640
    +
    +
    +
    + +
    + +  
    + +  
    + +  
    + +
    + + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyfamct_example.compare.json b/tests/examples/opinions/united_states/nyfamct_example.compare.json new file mode 100644 index 000000000..8f0850c96 --- /dev/null +++ b/tests/examples/opinions/united_states/nyfamct_example.compare.json @@ -0,0 +1,26 @@ +[ + { + "case_dates": "2023-12-12", + "case_names": "Matter of Liam V.", + "download_urls": "https://nycourts.gov/reporter/3dseries/2023/2023_23387.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 23387", + "case_name_shorts": "", + "child_courts": "Fam Ct, Kings County" + }, + { + "case_dates": "2022-11-18", + "case_names": "Matter of Andres Q. v. Letiticia Y.A.", + "download_urls": "https://nycourts.gov/reporter/3dseries/2022/2022_51416.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2022 NY Slip Op 51416(U)", + "case_name_shorts": "", + "child_courts": "Fam Ct, Monroe County" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyfamct_example.html b/tests/examples/opinions/united_states/nyfamct_example.html new file mode 100644 index 000000000..d01e00f01 --- /dev/null +++ b/tests/examples/opinions/united_states/nyfamct_example.html @@ -0,0 +1,4888 @@ + + + + + + + Other Court Decisions + + + + + + + + + + + +
    + + + + + + +
      December, 2023  
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 29, 2023
    Title + Court + Date + Slip Op No. +
    Stefanik v HochulSup Ct, Albany County12/26/20232023 NY Slip Op 34517(U)
    Lanza v Whole Foods Mkt. Group, + Inc.Sup Ct, NY County12/18/20232023 NY Slip Op 34518(U)
    Porter v Cliffside Nursing Home, + Inc.Sup Ct, Kings County12/5/20232023 NY Slip Op 34520(U)
    Antebi v GuindiSup Ct, Kings County12/21/20232023 NY Slip Op 34521(U)
    Antara Capital Master Fund LP v + Bombardier Inc.Sup Ct, NY County12/22/20232023 NY Slip Op 34524(U)
    SH575 Holdings LLC v Richmond + Stuyvesant Holdings, LLCSup Ct, NY County12/22/20232023 NY Slip Op 34525(U)
    Oasis Med. & Surgical + Wellness v + New Jersey Mfrs. Ins. Co.Sup Ct, NY County12/21/20232023 NY Slip Op 34526(U)
    Matter of Infinity Q Diversified + Alpha + Fund Sec. Litig. v XXXSup Ct, NY County12/21/20232023 NY Slip Op 34527(U)
    Country-Wide Ins. Co. v Geico + Gen. + Ins. Co.Sup Ct, NY County12/20/20232023 NY Slip Op 34528(U)
    Tremor Video, Inc. v Alphonso, + Inc.Sup Ct, NY County12/22/20232023 NY Slip Op 34529(U)
    Matter of AKF Inc. v Jin + Clothing, + Inc.Sup Ct, NY County12/21/20232023 NY Slip Op 34530(U)
    Forum Gallery Inc. v Spirits Fin. + Corp.Sup Ct, NY County12/23/20232023 NY Slip Op 34531(U)
    AC Penguin Prestige Corp. v Two + Thousand Fifteen Artisanal LLCSup Ct, NY County12/19/20232023 NY Slip Op 34532(U)
    Samsung Elecs. Co., Ltd. v MPEG + LA, L.L.C.Sup Ct, NY County12/21/20232023 NY Slip Op 34533(U)
    Manhattan Concrete LLC v Prime + Prop. & Cas. Ins. Inc.Sup Ct, NY County12/21/20232023 NY Slip Op 34534(U)
    O'Connor v Society Pass + Inc.Sup Ct, NY County12/23/20232023 NY Slip Op 34535(U)
    Martinez v Fromer Eye Ctrs. + Sup Ct, NY County12/21/20232023 NY Slip Op 34536(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 28, 2023
    TitleCourtDateSlip Op No.
    Federal Natl. Mtge. Assn. + ("Fannie Mae") v KerendianSup Ct, Nassau County10/13/20232023 NY Slip Op 34490(U)
    Parisien v MVAICCiv Ct City NY, Kings County12/8/20232023 NY Slip Op 34491(U)
    Turner v DelacruzSup Ct, Bronx County4/26/20212021 NY Slip Op 34048(U)
    Thompson v + 735 Equities LLCSup Ct, Bronx County3/24/20222022 NY Slip Op 34666(U)
    Almenares v V VA Serv. Corp. + Sup Ct, Bronx County9/21/20212021 NY Slip Op 34049(U)
    Saleh v RiveraSup Ct, Bronx County1/31/20202020 NY Slip Op 35548(U)
    Alexander v GuzmanSup Ct, Bronx County1/25/20222022 NY Slip Op 34667(U)
    Fagbemi-Mohamed v Rodriguez + Sup Ct, Bronx County6/30/20222022 NY Slip Op 34668(U)
    Salcedo v 906 Holding LLC + Sup Ct, Bronx County12/3/20192019 NY Slip Op 35072(U)
    Santos v Holy Temple Church of + the Lord Jesus ChristSup Ct, Bronx County9/15/20202020 NY Slip Op 35549(U)
    Herbst v Hospice of N.Y., LLC + Sup Ct, Bronx County1/6/20202020 NY Slip Op 35550(U)
    Duran v Venture Leasing LLC. + Sup Ct, Bronx County7/29/20212021 NY Slip Op 34050(U)
    Acevedo v Ji Hee YouSup Ct, Bronx County5/15/20202020 NY Slip Op 35551(U)
    Diaz v H&Z Bldg. Consulting + Group, LLCSup Ct, Bronx County1/29/20202020 NY Slip Op 35552(U)
    Martinez v SantosSup Ct, Bronx County6/30/20202020 NY Slip Op 35553(U)
    Sabater v NoumbiSup Ct, Bronx County3/16/20202020 NY Slip Op 35554(U)
    Neder v AndrewsSup Ct, Bronx County11/24/20202020 NY Slip Op 35555(U)
    Dotel v Mount Hope Preserv. Apts. + 1A Hous. Dev. Fund Co., Inc.Sup Ct, Bronx County11/30/20232023 NY Slip Op 34492(U)
    Jimenez-Couret v LinzoSup Ct, Bronx County1/27/20222022 NY Slip Op 34669(U)
    Stephenson v ArdoviniSup Ct, Bronx County11/7/20192019 NY Slip Op 35073(U)
    Wallis v HarrisonSup Ct, Bronx County11/1/20192019 NY Slip Op 35074(U)
    Gomez v MalekSup Ct, Bronx County5/21/20202020 NY Slip Op 35556(U)
    "John Doe I" v Iona Preparatory + Sch.Sup Ct, Bronx County7/1/20202020 NY Slip Op 35557(U)
    Stagnari v BunnSup Ct, Onondaga County12/30/20212021 NY Slip Op 34051(U)
    Requena v New York City Dept. of + Educ.Sup Ct, NY County12/21/20232023 NY Slip Op 34493(U)
    O'Keeffe's Inc. v 400 Times Sq. + Assoc., LLC,Sup Ct, NY County12/23/20232023 NY Slip Op 34494(U)
    Photenas v New York City Tr. + Auth.Sup Ct, NY County12/19/20232023 NY Slip Op 34495(U)
    Carlisle v One Hudson Yards + Owner, LLCSup Ct, NY County12/22/20232023 NY Slip Op 34496(U)
    State Farm Mut. Auto. Ins. Co. v + DestineSup Ct, NY County12/20/20232023 NY Slip Op 34497(U)
    BLDG Mgt. Co., Inc. v Kreloff + Sup Ct, NY County12/20/20232023 NY Slip Op 34498(U)
    Caramante v New York City Hous. + Auth.Sup Ct, NY County12/21/20232023 NY Slip Op 34499(U)
    Matter of Law Offs. of Michael S. + Lamonsoff, PLLC v Gorayeb & Assoc., P.C.Sup Ct, NY County12/21/20232023 NY Slip Op 34500(U)
    Fernandez v LeoSup Ct, NY County12/20/20232023 NY Slip Op 34501(U)
    Surveillance Tech. Oversight + Project v Metropolitan Transp. Auth.Sup Ct, NY County12/21/20232023 NY Slip Op 34502(U)
    Glenmede Trust Co., N.A. v + Infinity Q Capital Mgt. LLCSup Ct, NY County12/21/20232023 NY Slip Op 34503(U)
    Matter of New York City Tr. Auth. + v Charter Oak Fire Ins. Co.Sup Ct, NY County12/22/20232023 NY Slip Op 34504(U)
    Motor Vehicle Acc. Indem. Corp. v + Hereford Ins. Co.Sup Ct, NY County12/21/20232023 NY Slip Op 34505(U)
    City of New York v Peters + Sup Ct, NY County12/21/20232023 NY Slip Op 34506(U)
    Newson v Vivaldi Real Estate + Ltd.Sup Ct, NY County12/21/20232023 NY Slip Op 34507(U)
    Henry v 34th St. Dental + Assoc.Sup Ct, Kings County12/15/20232023 NY Slip Op 34508(U)
    Crespi v PHD GBWSup Ct, Kings County12/21/20232023 NY Slip Op 34509(U)
    Papadimitriou v PappasSup Ct, Kings County12/19/20232023 NY Slip Op 34510(U)
    Kuris v Wiz Kids Ctr. Inc. + Sup Ct, Kings County12/7/20232023 NY Slip Op 34511(U)
    Vasquez v Lorimer St Holdings + LLC.Sup Ct, Kings County12/15/20232023 NY Slip Op 34512(U)
    Itzkowitz v GinsburgSup Ct, Kings County12/4/20232023 NY Slip Op 34513(U)
    Cisco v Verizon N.Y. Inc. + Sup Ct, Kings County12/20/20232023 NY Slip Op 34514(U)
    Donato v 455 Broadway Realty + LLCSup Ct, Kings County12/18/20232023 NY Slip Op 34515(U)
    Romero v 201 W. 79 St. Realty + Corp.Sup Ct, Kings County12/20/20232023 NY Slip Op 34516(U)


    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 27, 2023
    Title + Court + Date + Slip Op No. +
    Clarke v ToureSup Ct, Kings County12/24/20232023 NY Slip Op 23410
    People v Ramirez-Luna + Crim Ct City NY, Queens County5/5/20232023 NY Slip Op 51433(U)
    Cambridge Leasing Prop. LLC v + CachimboCiv Ct City NY, Queens County12/26/20232023 NY Slip Op 51434(U)
    BAA Capital Ventures, LLC v + ToscaniSup Ct, Saratoga County12/22/20232023 NY Slip Op 34467(U)
    Grooney v New York City Tr. + Auth.Sup Ct, NY County12/19/20232023 NY Slip Op 34468(U)
    Stopford v HewittSup Ct, NY County12/20/20232023 NY Slip Op 34469(U)
    Chadrjian v 1278-1284 First Ave. + Realty LLCSup Ct, NY County12/20/20232023 NY Slip Op 34470(U)
    Thompson v City of New York + Sup Ct, NY County12/19/20232023 NY Slip Op 34471(U)
    Matter of 225 Cent. Park N. LLC v + New York State Div. of Hous. & Community RenewalSup Ct, NY County12/20/20232023 NY Slip Op 34472(U)
    Nunez v Nalco Co.Sup Ct, NY County12/20/20232023 NY Slip Op 34473(U)
    Your Vet 1, LLC v Eastman, Cooke + & Assoc., LLCSup Ct, NY County12/19/20232023 NY Slip Op 34474(U)
    Riverton Sq., LLC v New York + State Div. of Hous. & Community RenewalSup Ct, NY County12/20/20232023 NY Slip Op 34475(U)
    Credit Acceptance Corp. v + TraylorSup Ct, Monroe County12/19/20232023 NY Slip Op 34476(U)
    Tasinari v DeMatteoSup Ct, NY County12/20/20232023 NY Slip Op 34477(U)
    Wells Fargo Bank, N.A. v + CardielloSup Ct, Kings County11/7/20232023 NY Slip Op 34478(U)
    Mendoza v 204 Forsyth St., + LLCSup Ct, Kings County12/19/20232023 NY Slip Op 34479(U)
    Elizon DB Transfer Agent LLC v + 1711 E. 15 St. LLCSup Ct, Kings County12/20/20232023 NY Slip Op 34480(U)
    Gordon v PeckSup Ct, NY County12/20/20232023 NY Slip Op 34481(U)
    FPG Cobble Hill Acquisitions, LLC + v Palm Cove Mgt. LLCSup Ct, NY County12/20/20232023 NY Slip Op 34482(U)
    Kapitus Servicing Inc. v Zumma + Mgt. Group, LLCSup Ct, NY County12/20/20232023 NY Slip Op 34483(U)
    ESRT One Grand Cent. Place, + L.L.C. v Peoples Foreign Exch., Corp.Sup Ct, NY County12/20/20232023 NY Slip Op 34484(U)
    Mahland v Noor Staffing Group, + LLCSup Ct, NY County12/20/20232023 NY Slip Op 34485(U)
    Azmy v WatkinsSup Ct, NY County12/20/20232023 NY Slip Op 34486(U)
    Martinez v New York City Health + & Hosps. Corp.Sup Ct, NY County12/20/20232023 NY Slip Op 34487(U)
    Soto v City of New YorkSup Ct, NY County12/11/20232023 NY Slip Op 34489(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 26, 2023
    Title + Court + Date + Slip Op No. +
    Stromberg v East Riv. Hous. + Corp.Sup Ct, NY County12/26/20232023 NY Slip Op 23409
    B&S Duo Realty LLC v + GazaliCiv Ct City NY, Queens County12/21/20232023 NY Slip Op 51423(U)
    Sylvester v JonesSup Ct, Kings County10/13/20232023 NY Slip Op 51424(U)
    U.S. Specialty Ins. Co. v + State Natl. Ins. Co., Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 51425(U)
    Brooke v StreitSup Ct, NY County12/14/20232023 NY Slip Op 51426(U)
    Kapitus + Servicing, Inc. v Zumma Mgt. Group, LLCSup Ct, NY County12/20/20232023 NY Slip Op 51427(U)
    American Express Natl. Bank v + EllisSup Ct, NY County12/23/20232023 NY Slip Op 51428(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 22, 2023
    Title + Court + Date + Slip Op No. +
    Mrijaj v Genting N.Y. + LLC.Sup Ct, Bronx County12/14/20232023 NY Slip Op 23407
    Nellis v Cadman Assoc. + LLCSup Ct, Kings County11/16/20232023 NY Slip Op 23408
    Matter of Federico + (Aloisi)Sur Ct, Putnam County10/20/20232023 NY Slip Op 51418(U)
    People v CareySup Ct, Nassau County12/11/20232023 NY Slip Op 51419(U)
    Torres v New York City + Employees' Retirement Sys.Sup Ct, Kings County12/4/20232023 NY Slip Op 51420(U)
    People v BrennanJust Ct Village Piermont, Rockland County12/22/20232023 NY Slip Op 51421(U)
    People v JuzwaCrim Ct City NY, Queens County7/9/20232023 NY Slip Op 51422(U)
    Estate of Wenger v Good Shepherd + Communities, Inc.Sup Ct, Broome County12/20/20232023 NY Slip Op 34459(U)
    Mohamed v Almarwa Ctr. Inc. + Sup Ct, Kings County8/18/20222022 NY Slip Op 34665(U)
    Tsui v ChouSup Ct, NY County8/8/20192019 NY Slip Op 35071(U)
    Breest v HaggisSup Ct, NY County12/19/20232023 NY Slip Op 34460(U)
    Giraldo v Longford Inc.Sup Ct, NY County12/18/20232023 NY Slip Op 34461(U)
    M.P. v DavidsonSup Ct, Kings County11/3/20232023 NY Slip Op 34462(U)
    Sadlowski v East End Bldg. Servs. + IncSup Ct, Kings County12/18/20232023 NY Slip Op 34463(U)
    Cotto v RobinsonSup Ct, Kings County12/14/20232023 NY Slip Op 34464(U)
    Samsung Elecs. Co., Ltd. v MPEG + LA, L.L.C.Sup Ct, NY County12/19/20232023 NY Slip Op 34465(U)
    Millennium Consolidated Holdings, + LLC v Bluefin Capital Mgt., LLCSup Ct, NY County12/19/20232023 NY Slip Op 34466(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 21, 2023
    Title + Court + Date + Slip Op No. +
    R.G. v S.W.Sup Ct, NY County7/12/20222022 NY Slip Op 51421(U)
    C.R. v M.B.Sup Ct, NY County7/14/20222022 NY Slip Op 51422(U)
    M.B. v M.C.B.Sup Ct, NY County3/22/20222022 NY Slip Op 51423(U)
    D.R. v B.K.Sup Ct, NY County7/27/20222022 NY Slip Op 51424(U)
    C.B. v R.B.Sup Ct, NY County10/28/20222022 NY Slip Op 51425(U)
    Yesilevich v Tenenbaum + Sup Ct, Kings County10/30/20232023 NY Slip Op 23405
    People v SmithSup Ct, Kings County12/20/20232023 NY Slip Op 23406
    K.L. v I.L.Sup Ct, Richmond County12/7/20232023 NY Slip Op 51411(U)
    Kohler v S.L.Sup Ct, Albany County12/20/20232023 NY Slip Op 51412(U)
    People v BowmanJust Ct Town Webster, Monroe County12/21/20232023 NY Slip Op 51413(U)
    Matter of Newsday LLC v Nassau + County Police Dept.Sup Ct, Nassau County11/3/20212023 NY Slip Op 34433(U)
    Aina v Jopal Bronx, LLCSup Ct, Bronx County12/1/20232023 NY Slip Op 34434(U)
    Caicedo v East Gun Hill Rd. Food, + LLCSup Ct, Bronx County9/8/20222022 NY Slip Op 34664(U)
    Thorne v WilsonSup Ct, Bronx County12/23/20202020 NY Slip Op 35546(U)
    Hoffman v Government Empls. Ins. + Co.Sup Ct, Bronx County6/10/20202020 NY Slip Op 35547(U)
    Warshaw Burstein, LLP v Colambda + Tech., Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34435(U)
    Archives, L.L.C. v Schmitter + Sup Ct, NY County12/18/20232023 NY Slip Op 34436(U)
    Matter of Stroock & Stroock + & Lavan, LLP v New York State Dept. of Economic Dev.Sup Ct, NY County12/12/20232023 NY Slip Op 34437(U)
    Goldman v + Vanguard Const. & Dev. Co., Inc. Sup Ct, NY County12/15/20232023 NY Slip Op 34438(U)
    Randel Mold & Die Corp. v + City of New York Off. of Admin. Trials & HearingsSup Ct, NY County12/18/20232023 NY Slip Op 34439(U)
    Smith v TS ZO L.L.C.Sup Ct, NY County12/18/20232023 NY Slip Op 34440(U)
    Friedman v City of New York + Sup Ct, NY County12/18/20232023 NY Slip Op 34441(U)
    Friedman v City of New York + Sup Ct, NY County12/18/20232023 NY Slip Op 34442(U)
    Crown Wisteria, Inc. v Cibani + Sup Ct, NY County12/18/20232023 NY Slip Op 34443(U)
    Bardach v MartynovaSup Ct, NY County12/18/20232023 NY Slip Op 34444(U)
    Public Admr. of Bronx County v + New York City Health & Hosps. Corp.Sup Ct, NY County12/18/20232023 NY Slip Op 34445(U)
    Mawere v LandauSup Ct, Kings County12/8/20232023 NY Slip Op 34446(U)
    Klitnick v WanounoSup Ct, Kings County12/14/20232023 NY Slip Op 34447(U)
    Matter of 22 Title Solutions, LLC + v American Home Assur. Co.Sup Ct, Kings County12/13/20232023 NY Slip Op 34448(U)
    AKF, Inc. v A Pattern Med. + Clinic, P.C.Sup Ct, NY County12/18/20232023 NY Slip Op 34449(U)
    Medallion Fin. Corp. v EDE Serv. + Corp.Sup Ct, NY County12/15/20232023 NY Slip Op 34450(U)
    Board of Mgrs. of 229 E. 2nd St. + Condominium v 229 2nd St. LLCSup Ct, NY County12/18/20232023 NY Slip Op 34451(U)
    Medallion Bank v Chopper Taxi + Inc.Sup Ct, NY County12/15/20232023 NY Slip Op 34452(U)
    EBF Partners, LLC v GRA Group, + Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34453(U)
    Wong v WongSup Ct, NY County12/18/20232023 NY Slip Op 34454(U)
    G.B. v Archdiocese of N.Y. + Sup Ct, NY County12/1/20232023 NY Slip Op 34456(U)
    ARK667 Doe v Archdiocese of + N.Y.Sup Ct, NY County12/5/20232023 NY Slip Op 34457(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 20, 2023
    Title + Court + Date + Slip Op No. +
    G.S. v K.K.Sup Ct, NY County9/12/20222022 NY Slip Op 51420(U)
    Kahn Prop. Owner, LLC v + FruchthandlerSup Ct, Suffolk County10/30/20232023 NY Slip Op 23402
    People v Gonzalez-Mendoza + County Ct, Putnam County12/13/20232023 NY Slip Op 23403
    People v MarteCrim Ct City NY, Queens County12/20/20232023 NY Slip Op 23404
    Cold Spring Country Club, + Inc. v Town of HuntingonSup Ct, Suffolk County10/30/20232023 NY Slip Op 51407(U)
    M.G.W. v V.D.Sup Ct, NY County1/5/20232023 NY Slip Op 51408(U)
    P.G. v P.G.Sup Ct, NY County3/3/20232023 NY Slip Op 51409(U)
    De Andrade v Monadnock Constr., + Inc.Sup Ct, Kings County12/7/20232023 NY Slip Op 34412(U)
    Ner Mordechai Inc. v Ohel Harav + Yenoshua Boruch Found.Sup Ct, Kings County11/28/20232023 NY Slip Op 34413(U)
    Stein v 594 Marcy Villa LLC + Sup Ct, Kings County12/4/20232023 NY Slip Op 34414(U)
    Torres v New York City Employees' + Retirement Sys.Sup Ct, Kings County12/4/20232023 NY Slip Op 34415(U)
    Aicon Contemporary v Dutta + Sup Ct, NY County12/14/20232023 NY Slip Op 34416(U)
    Malick v 302 E. 105th St. LLC + Sup Ct, NY County12/12/20232023 NY Slip Op 34417(U)
    JDS Fourth Ave. JV II LLC v Largo + 613 Baltic St. Partners LLCSup Ct, NY County12/14/20232023 NY Slip Op 34418(U)
    Dong Hua Zhang, v Amy's Rest. NY + Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34419(U)
    Century Indem. Co. v Archdiocese + of N.Y.Sup Ct, NY County12/14/20232023 NY Slip Op 34420(U)
    213 W. 23rd St. LLC v Crunch + Holdings LLCSup Ct, NY County12/14/20232023 NY Slip Op 34421(U)
    Brooke v StreitSup Ct, NY County12/14/20232023 NY Slip Op 34422(U)
    Zurich Am. Ins. Co. v Alterra Am. + Ins. Co.Sup Ct, NY County12/13/20232023 NY Slip Op 34423(U)
    South Beach Tristar 800 LLC v + Lincoln Arts ERFR LLCSup Ct, NY County12/12/20232023 NY Slip Op 34425(U)
    Annovazzi v MeyerSup Ct, NY County12/6/20232023 NY Slip Op 34426(U)
    Columbia Consultants, LLC v + Danucht Entertainment, LLCSup Ct, NY County12/12/20232023 NY Slip Op 34427(U)
    Boston Beer Corp. v Boening + Bros., Inc.Sup Ct, NY County12/15/20232023 NY Slip Op 34428(U)
    Stile v C-Air Customhouse + Brokers-Forwards, Inc.Sup Ct, NY County12/15/20232023 NY Slip Op 34429(U)
    Golden Nugget Atl. City LLC v + ChanSup Ct, NY County12/13/20232023 NY Slip Op 34430(U)
    57th St. Vacation Owners Assn., + Inc. v KongSup Ct, NY County12/11/20232023 NY Slip Op 34431(U)
    S.A. v BellSup Ct, NY County12/14/20232023 NY Slip Op 34432(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 19, 2023
    Title + Court + Date + Slip Op No. +
    People v GaynorSup Ct, Kings County12/18/20232023 NY Slip Op 23395
    People v MavroudisJust Ct Town New Scotland, Albany County12/18/20232023 NY Slip Op 23396
    City of New York v "Doe" + Civ Ct City NY, Bronx County12/18/20232023 NY Slip Op 23397
    Leibovitz v State of New + YorkCt Claims12/13/20232023 NY Slip Op 51366(U)
    People v Cedeno-Ortiz + Crim Ct City NY, Bronx County5/31/20232023 NY Slip Op 51367(U)
    Aina v Jopal Bronx, LLC + Sup Ct, Bronx County12/18/20232023 NY Slip Op 51368(U)
    Corona Apts. LLC v + BarriosCiv Ct City NY, Queens County12/14/20232023 NY Slip Op 51369(U)
    Marino v FriedmanSup Ct, Kings County12/18/20232023 NY Slip Op 51370(U)
    People v ChungCrim Ct City NY, Queens County5/16/20232023 NY Slip Op 51371(U)
    Matter of WoodSurrogate's Ct, Putnam County6/9/20232023 NY Slip Op 34382(U)
    Stuyvesant Owners Inc. v + FrantinoCiv Ct City NY, NY County11/13/20232023 NY Slip Op 34383(U)
    GRM Info. Mgt. Servs. v Silver + Autumn Hotel + (N.Y.) Corp. Ltd.Sup Ct, NY County12/14/20232023 NY Slip Op 34384(U)
    Hidalgo v Support Collection Unit + of NYC + Dept. of Social Servs.Sup Ct, NY County12/14/20232023 NY Slip Op 34385(U)
    Hernandez v Kobayashi Am. Mfg., + LLCSup Ct, NY County12/13/20232023 NY Slip Op 34386(U)
    Sestak v Hylan Datacom & + Elec. + LLCSup Ct, NY County12/15/20232023 NY Slip Op 34387(U)
    Matter of Helm v New York State + Div. of + Hous. & Community RenewalSup Ct, NY County12/13/20232023 NY Slip Op 34388(U)
    Illyrian Props. Inc. v Department + of Hous. + Preserv. & Dev.Sup Ct, NY County12/14/20232023 NY Slip Op 34389(U)
    Pena v JP Morgan Chase & + Co.Sup Ct, NY County12/15/20232023 NY Slip Op 34390(U)
    Mori v Riomar Corp.Sup Ct, NY County12/14/20232023 NY Slip Op 34391(U)
    Septimus v Yeshiva Univ.Sup Ct, NY County12/14/20232023 NY Slip Op 34392(U)
    Lewis v Related Broadway Dev., + LLCSup Ct, NY County12/14/20232023 NY Slip Op 34393(U)
    67-69 St. Nicholas Ave. Hous. + Dev. Fund + Corp. v GreenSup Ct, NY County12/14/20232023 NY Slip Op 34394(U)
    Rosario v 75 Ft. Wash. Prop. + LLCSup Ct, NY County12/11/20232023 NY Slip Op 34395(U)
    PWV Acquisition Owner, LLC v + LernerSup Ct, NY County12/14/20232023 NY Slip Op 34396(U)
    Matter of Your Vet 1, LLC v + Eastman, Cooke & Assoc., + LLCSup Ct, NY County12/14/20232023 NY Slip Op 34397(U)
    Ilan Props., Inc. v Hendler + Sup Ct, NY County12/14/20232023 NY Slip Op 34398(U)
    Graham v LaporteSup Ct, NY County12/14/20232023 NY Slip Op 34399(U)
    Memedi v MartnickSup Ct, NY County12/14/20232023 NY Slip Op 34400(U)
    Ogbolu v 125 Prop. Masters, + Inc.Sup Ct, NY County12/14/20232023 NY Slip Op 34401(U)
    Galonsky v East 17th LLCSup Ct, NY County12/15/20232023 NY Slip Op 34402(U)
    Paz v 52-74th Hous. Corp. + Sup Ct, NY County12/14/20232023 NY Slip Op 34403(U)
    Matter of Plumbers Local Union + No. 1 v New + York City Dept. of Bldgs.Sup Ct, NY County12/14/20232023 NY Slip Op 34404(U)
    Teachers' Retirement Sys. of the + City of N.Y. v + DubnerSup Ct, NY County12/14/20232023 NY Slip Op 34405(U)
    Lee v Mount Sinai Hosp.Sup Ct, Kings County12/12/20232023 NY Slip Op 34406(U)
    Silva v City of New YorkSup Ct, Kings County12/14/20232023 NY Slip Op 34407(U)
    Su Hwa Chu v LaiSup Ct, Kings County12/12/20232023 NY Slip Op 34408(U)
    Silva v ScopoSup Ct, Kings County12/8/20232023 NY Slip Op 34409(U)
    Prizzi v LeeSup Ct, Kings County12/4/20232023 NY Slip Op 34410(U)
    Lashley v Brooklyn Standard IV, + LLCSup Ct, Kings County12/14/20232023 NY Slip Op 34411(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 18, 2023
    Title + Court + Date + Slip Op No. +
    G.S. v K.K.Sup Ct, NY County7/13/20222022 NY Slip Op 51419(U)
    People v VallejoCrim Ct City NY, Bronx County12/18/20232023 NY Slip Op 23394
    People v MonkCounty Ct, Tompkins County12/12/20232023 NY Slip Op 51362(U)
    People v GuzmanCrim Ct City NY, Bronx County12/18/20232023 NY Slip Op 51363(U)
    People v ValentinCrim Ct City NY, Bronx County12/14/20232023 NY Slip Op 51364(U)
    People v MuhammadCrim Ct City NY, Bronx County12/12/20232023 NY Slip Op 51365(U)
    Village of Maybrook v Teamsters + Local + 445Sup Ct, Orange County5/6/20232023 NY Slip Op 34355(U)
    Gordon v 476 Broadway Realty + Corp.Superme Ct, NY County12/12/20232023 NY Slip Op 34356(U)
    De Pichardo v Central Laundry + Serv. + Corp.Sup Ct, Kings County12/1/20232023 NY Slip Op 34357(U)
    Rent Stabilization Assn. of + N.Y.C., Inc. v + McKeeSup Ct, NY County12/4/20232023 NY Slip Op 34358(U)
    Etihad Airways PJSC v Khan + Sup Ct, NY County12/11/20232023 NY Slip Op 34359(U)
    Verderosa v City of New York + Sup Ct, NY County12/4/20232023 NY Slip Op 34360(U)
    Planas v DoughertySup Ct, NY County12/12/20232023 NY Slip Op 34361(U)
    Green 333 Corp. v KusykSup Ct, NY County12/13/20232023 NY Slip Op 34362(U)
    Ryder v A.O. Smith Water Prods. + Co.Sup Ct, NY County12/12/20232023 NY Slip Op 34363(U)
    Zachary v Avon Prods., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34364(U)
    Rullo v ABB, Inc.Sup Ct, NY County12/12/20232023 NY Slip Op 34365(U)
    Radovic v Amchem Prods., Inc. + Sup Ct, NY County12/12/20232023 NY Slip Op 34366(U)
    Radovic v Amchem Prods., Inc. + Sup Ct, NY County12/12/20232023 NY Slip Op 34367(U)
    Radovic v Amchem Prods., Inc. + Sup Ct, NY County12/12/20232023 NY Slip Op 34368(U)
    People v VDARE Found., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34369(U)
    Lavia v Brooklyn Hosp. Ctr. + Sup Ct, Kings County12/11/20232023 NY Slip Op 34370(U)
    Corbett v Boro Park Ctr. for + Rehabilitation & + HealthcareSup Ct, Kings County12/11/20232023 NY Slip Op 34371(U)
    Omega Mkt., LLC v New York City + Dept. of + Envtl. ProtectionSup Ct, Kings County11/30/20232023 NY Slip Op 34372(U)
    Garcia v SAF LI LLCSup Ct, Kings County12/12/20232023 NY Slip Op 34373(U)
    Whyte v DN 63 Rockaway Parkway + LLCSup Ct, Kings County11/28/20232023 NY Slip Op 34374(U)
    Reape v Mercedes-Benz of + BrooklynSup Ct, Kings County12/11/20232023 NY Slip Op 34375(U)
    Morgan v St. Lukes Roosevelt + Hosp. Ctr. + Sup Ct, Kings County12/1/20232023 NY Slip Op 34376(U)
    Brown v OSIB-BCRE Bowery St. + Holdings + LLCSup Ct, Kings County12/1/20232023 NY Slip Op 34377(U)
    Martinez v Welsback Elec. + Corp.Sup Ct, Kings County11/17/20232023 NY Slip Op 34378(U)
    Matter of Rental Claims Servs. v + CzimentSup Ct, Kings County12/4/20232023 NY Slip Op 34379(U)
    New York Auto Concierge Inc. v + ValenzuelaSup Ct, Kings County12/11/20232023 NY Slip Op 34380(U)
    EO Inv., LLC v GilroySup Ct, NY County12/13/20232023 NY Slip Op 34381(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 15, 2023
    Title + Court + Date + Slip Op No. +
    People v FavoriteSup Ct, Kings County12/11/20232023 NY Slip Op 23391
    People v BallardCrim Ct City NY, Queens County12/14/20232023 NY Slip Op 23392
    Cannizzaro v City of New + YorkSup Ct, NY County12/15/20232023 NY Slip Op 23393
    Afghan House, Inc. v + Inshandbags Inc.Civ Ct City NY, NY County12/1/20232023 NY Slip Op 51358(U)
    New Commune DTLA LLC v + LawrenceCiv Ct City NY, NY County12/6/20232023 NY Slip Op 51359(U)
    Lashley v Brooklyn Std. IV, + LLCSup Ct, Kings County12/14/20232023 NY Slip Op 51360(U)
    Johnson v State of New + YorkCt Claims9/5/20232023 NY Slip Op 51361(U)
    Buffalo Auto Acceptance Corp. v + HamiltonCounty Ct, Niagara County8/21/20232023 NY Slip Op 34339(U)
    Ciceron v GulmaticoSup Ct, Kings County4/7/20212021 NY Slip Op 34044(U)
    Jackson v RahmanSup Ct, Bronx County10/13/20202020 NY Slip Op 35540(U)
    Lesniak v 411 Wales Realty, + LLCSup Ct, Bronx County8/4/20212021 NY Slip Op 34045(U)
    Veras v GuzmanSup Ct, Bronx County4/28/20202020 NY Slip Op 35541(U)
    McRae v American United Transp. + Inc.Sup Ct, Bronx County3/17/20202020 NY Slip Op 35542(U)
    Podlubny v KourSup Ct, Bronx County12/21/20202020 NY Slip Op 35543(U)
    Patino v Carretera Inc.Sup Ct, Bronx County1/29/20212021 NY Slip Op 34046(U)
    Martinez v JRL Food Corp. + Sup Ct, Bronx County5/19/20202020 NY Slip Op 35544(U)
    Simmons v BellSup Ct, Queens County12/9/20222022 NY Slip Op 34663(U)
    Simmons v BellSup Ct, Queens County5/29/20202020 NY Slip Op 35545(U)
    Cimillo v West Side Dental + Assoc., + P.C.Sup Ct, NY County11/27/20232023 NY Slip Op 34340(U)
    Cimillo v West Side Dental + Assoc., + P.C.Sup Ct, NY County11/30/20232023 NY Slip Op 34341(U)
    Miller v BostromSup Ct, NY County12/5/20232023 NY Slip Op 34342(U)
    Larios v GauthierSup Ct, NY County12/7/20232023 NY Slip Op 34343(U)
    Johnson v Mount Sinai + Hosp.Sup Ct, NY County11/27/20232023 NY Slip Op 34344(U)
    Williams v SenthilkumarSup Ct, NY County12/4/20232023 NY Slip Op 34345(U)
    Bethpage Fed. Credit Union v West + 26th St. Realty LLCSup Ct, NY County12/1/20232023 NY Slip Op 34346(U)
    Six Gramercy LLC v Westside Units + 18th St. LLCSup Ct, NY County12/1/20232023 NY Slip Op 34347(U)
    88 Global Partners LLC v 141 E. + 88th + St. Realty LLCSup Ct, NY County11/17/20232023 NY Slip Op 34348(U)
    Christiana Trust v AliSup Ct, NY County12/1/20232023 NY Slip Op 34349(U)
    BD Notes LLC v Garofalo Real + Estate + Holdings, LLCSup Ct, NY County12/8/20232023 NY Slip Op 34350(U)
    New York Life Ins. Co. v 717 GFC, + LLCSup Ct, NY County12/8/20232023 NY Slip Op 34351(U)
    Fannie Mae v Residential Indus. + I, + LLCSup Ct, NY County12/1/20232023 NY Slip Op 34352(U)
    Wells Fargo Bank, N.A. v 555 + Retail + Owner LLCSup Ct, NY County11/20/20232023 NY Slip Op 34353(U)
    Deutsche Bank Trust Co. Ams. v A + & R + 1392 Realty, LLCSup Ct, NY County11/17/20232023 NY Slip Op 34354(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 14, 2023
    Title + Court + Date + Slip Op No. +
    Mendez v HidalgoCiv Ct City NY, NY County12/14/20232023 NY Slip Op 23390
    Mehr v Mount Sinai Hosp. + Sup Ct, Orange County12/12/20232023 NY Slip Op 51356(U)
    Vucetaj v DahlSup Ct, NY County12/13/20232023 NY Slip Op 51357(U)
    King v City of New YorkSup Ct, NY County12/11/20232023 NY Slip Op 34311(U)
    Rodriguez v YWA-Amsterdam LLC + Sup Ct, NY County12/8/20232023 NY Slip Op 34312(U)
    Matter of Gonzaque v Helene Fuld + Coll. of NursingSup Ct, NY County12/8/20232023 NY Slip Op 34313(U)
    Marcus v City of New York + Sup Ct, NY County12/11/20232023 NY Slip Op 34314(U)
    Pinder v Mount Sinai Hosp. + Sup Ct, NY County12/11/20232023 NY Slip Op 34315(U)
    Matter of C72 LLC v New York + State Div. of Hous. & Community RenewalSup Ct, NY County12/7/20232023 NY Slip Op 34316(U)
    Diaz v 2 Broadway Ground Lease + TrustSup Ct, NY County12/8/20232023 NY Slip Op 34317(U)
    Morale v A.O. Smith Water Prods. + Co.Sup Ct, NY County12/11/20232023 NY Slip Op 34318(U)
    Thomas v Avon Prods., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34319(U)
    Courtois v RosenblumSup Ct, Kings County12/7/20232023 NY Slip Op 34320(U)
    People v VDARE Found., Inc. + Sup Ct, NY County12/11/20232023 NY Slip Op 34321(U)
    Qi Yong Wu v Olympos Trans + Inc.Sup Ct, Kings County11/21/20232023 NY Slip Op 34322(U)
    Marte v AgostaSup Ct, Kings County12/11/20232023 NY Slip Op 34323(U)
    Marin v AmatoreSup Ct, Kings County12/11/20232023 NY Slip Op 34324(U)
    Square My Capital LLC v + JohnsonSup Ct, Kings County12/7/20232023 NY Slip Op 34325(U)
    Moses v Deroche-WilliamsSup Ct, Kings County12/11/20232023 NY Slip Op 34326(U)
    Sabr Chems. Group, LLC v Norrhest + Chems., Inc.Sup Ct, NY County12/11/20232023 NY Slip Op 34327(U)
    Scarola Zubatov & Schaffzin + PLLC v Rocketfuel Blockchain, Inc.Sup Ct, NY County12/11/20232023 NY Slip Op 34328(U)
    AKF, Inc. v Windows & Beyond + Interiors, LLCSup Ct, NY County12/11/20232023 NY Slip Op 34330(U)
    32 W. 39th St. Sole Member LLC v + Regency NYC Inc.Sup Ct, NY County12/7/20232023 NY Slip Op 34332(U)
    J-Bar Reinforcement Inc. v Crest + Hill Capital LLCSup Ct, NY County12/11/20232023 NY Slip Op 34333(U)
    MDB Dev. Corp. v Maximum Fire + EscapesSup Ct, NY County12/10/20232023 NY Slip Op 34334(U)
    Federal Realty N.Y., LLC v FC + Foley, LLCSup Ct, NY County11/17/20232023 NY Slip Op 34335(U)
    Skyhorse Publ., Inc. v + BlakleySup Ct, NY County11/3/20232023 NY Slip Op 34336(U)
    Stevens v CutlerSup Ct, NY County12/7/20232023 NY Slip Op 34337(U)
    Hudgins v SpielfogelSup Ct, NY County11/30/20232023 NY Slip Op 34338(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 13, 2023
    Title + Court + Date + Slip Op No. +
    Matter of Liam V.Fam Ct, Kings County12/12/20232023 NY Slip Op 23387
    People v LujaCrim Ct City NY, Bronx County 12/11/20232023 NY Slip Op 23388
    People v CollazoSup Ct, NY County12/6/20232023 NY Slip Op 23389
    People v EvansCrim Ct City NY, Queens County12/12/20232023 NY Slip Op 51352(U)
    Adolphe v MorcilloSup Ct, Kings County12/12/20232023 NY Slip Op 51353(U)
    Benayoun v AlkadaSup Ct, Kings County12/12/20232023 NY Slip Op 51354(U)
    Morel v AvilesCity Ct Middletown, Orange County12/11/20232023 NY Slip Op 51355(U)
    Deutsche Bank Natl. Trust Co. v + GordonSup Ct, Nassau County4/6/20232023 NY Slip Op 34284(U)
    Residential Mtge. Loan Trust + 2013-TT2 v FioritaSup Ct, Suffolk County7/18/20222022 NY Slip Op 34659(U)
    Bank of N.Y. Mellon v + LicariSup Ct, Suffolk County3/11/20222022 NY Slip Op 34660(U)
    U.S. Bank N.A. v MartySup Ct, Suffolk County5/24/20192019 NY Slip Op 35069(U)
    Federal Natl. Mtge. Assn. (Fannie + Mae) v PriscoSup Ct, Suffolk County8/20/20192019 NY Slip Op 35070(U)
    Direct Lending Group, Inc. v + Barina + Group LLCSup Ct, Nassau County12/1/20222022 NY Slip Op 34661(U)
    Matter of Serrano v Meyer + Sup Ct, Orange County12/8/20232023 NY Slip Op 34285(U)
    Tokos v County of BroomeSup Ct, Broome County12/6/20222022 NY Slip Op 34662(U)
    Country-Wide Ins. Co. v Advanced + Comprehensive Lab., LLCSup Ct, NY County12/7/20232023 NY Slip Op 34286(U)
    Tremor Video, Inc. v Alphonso, + Inc.Sup Ct, NY County12/5/20232023 NY Slip Op 34287(U)
    Xiaoguang Jiang v American + Express + Co.Sup Ct, NY County11/20/20232023 NY Slip Op 34288(U)
    Tender Touch Health Care Servs. + Inc. + v Tnuzeg LLCSup Ct, NY County11/30/20232023 NY Slip Op 34289(U)
    MW Gestion v Cellenkos + Inc.Sup Ct, NY County12/7/20232023 NY Slip Op 34290(U)
    Strecker v Singlepoint Inc. + Sup Ct, NY County12/6/20232023 NY Slip Op 34291(U)
    Bissell St. I, LLC v Westbrook + Partners LLCSup Ct, NY County11/21/20232023 NY Slip Op 34293(U)
    Rockefeller Univ. v Aetna Cas. + & + Surety Co.Sup Ct, NY County12/8/20232023 NY Slip Op 34294(U)
    Deutsche Bank AG, N.Y. Branch v + RBH Inv. II, LLCSup Ct, NY County11/20/20232023 NY Slip Op 34295(U)
    DCH LEX Propco GP LLC v YS 541 + Lexington Holdings LLCSup Ct, NY County12/4/20232023 NY Slip Op 34296(U)
    Thoro-Graph, Inc. v New York + Racing + Assn., Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 34297(U)
    Fred Alger Mgt., LLC v Impulse + Dynamics PLCSup Ct, NY County12/7/20232023 NY Slip Op 34298(U)
    U.S. Specialty Ins. Co. v State + Natl. + Ins. Co., Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 34299(U)
    Trinity Ctr. LLC v Mazel + Reproduction, Inc.Sup Ct, NY County12/4/20232023 NY Slip Op 34300(U)
    Taverna v Hieber Reade St., + LLCSup Ct, NY County12/1/20232023 NY Slip Op 34301(U)
    Strabag, SPA v Alto Maipo + SPASup Ct, NY County12/8/20232023 NY Slip Op 34302(U)
    Go N.Y. Tours, Inc. v Tour Cent. + Park + Inc.Sup Ct, NY County11/29/20232023 NY Slip Op 34303(U)
    Real Dependable Contr. Corp. v + Fountain Gardens Owners CorpSup Ct, NY County11/29/20232023 NY Slip Op 34304(U)
    389 Assoc. v Isabella's Jewels, + Inc.Sup Ct, NY County11/20/20232023 NY Slip Op 34305(U)
    200 E. 36th Owners Corp. v N.Y.C. + Warehouse, Inc.Sup Ct, NY County12/1/20232023 NY Slip Op 34306(U)
    Empiremediholdings, LLC v Bridge + Funding Cap LLCSup Ct, NY County11/29/20232023 NY Slip Op 34307(U)
    Skyland Dev. Corp. v Elmwood + Ventures, LLCSup Ct, NY County11/30/20232023 NY Slip Op 34308(U)
    370 8th Ave. Group, LLC v + BurkeSup Ct, NY County12/4/20232023 NY Slip Op 34309(U)
    Zeidman v ChenSup Ct, NY County11/20/20232023 NY Slip Op 34310(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 12, 2023
    Title + Court + Date + Slip Op No. +
    A.S. v S.S.Sup Ct, NY County10/14/20222022 NY Slip Op 51418(U)
    First Hous. Co., Inc. v + TchiremuCiv Ct City NY, Queens County3/6/20232023 NY Slip Op 23384
    WV Preserv. Partners LLC v + ChangCiv Ct City NY, NY County12/11/20232023 NY Slip Op 23385
    Santana v Yonkers City Sch. + Dist.Sup Ct, Westchester County12/7/20232023 NY Slip Op 23386
    Matter of Small v Wade + Sup Ct, Kings County12/11/20232023 NY Slip Op 51342(U)
    Federal Natl. Mtge. Assn. v + SmithCiv Ct City NY, Queens County12/11/20232023 NY Slip Op 51343(U)
    People v MallikCrim Ct City NY, Kings County10/6/20232023 NY Slip Op 51344(U)
    People v StephensCrim Ct City NY, Kings County10/3/20232023 NY Slip Op 51346(U)
    Asian v Flintlock Constr. Servs. + LLCSup Ct, NY County12/8/20232023 NY Slip Op 34257(U)
    Garcia v CM & Assoc. Constr. + Mgt., LLCSup Ct, NY County12/8/20232023 NY Slip Op 34258(U)
    Gyure v Friars N.A. Inc.Sup Ct, NY County12/8/20232023 NY Slip Op 34259(U)
    Corey v City of New YorkSup Ct, NY County12/7/20232023 NY Slip Op 34260(U)
    591 Realty LLC v CuranajSup Ct, NY County12/8/20232023 NY Slip Op 34261(U)
    Matter of Baychester Payment Ctr. + v New York State Dept. of Fin. Servs.Sup Ct, NY County12/7/20232023 NY Slip Op 34262(U)
    Longfellow v BarneySup Ct, NY County11/29/20232023 NY Slip Op 34263(U)
    Matter of Courtney v NYS + Emergency Rental Assistance Program (ERAP)Sup Ct, NY County12/8/20232023 NY Slip Op 34264(U)
    Rockefeller v Solovieff Realty + Co., L.L.C.Sup Ct, NY County12/8/20232023 NY Slip Op 34265(U)
    Smyth v City of New YorkSup Ct, NY County12/7/20232023 NY Slip Op 34266(U)
    TD Bank, N.A. v Gallery 18 + Inc.Sup Ct, NY County11/29/20232023 NY Slip Op 34267(U)
    Hereford Ins. Co. v 247 Med. + Supplies, Inc.Sup Ct, NY County12/4/20232023 NY Slip Op 34268(U)
    Damassia v Bedford Stuyvesant S. + One LLCSup Ct, NY County12/8/20232023 NY Slip Op 34269(U)
    People v National Rifle Assn. of + Am.Sup Ct, NY County12/8/20232023 NY Slip Op 34270(U)
    Johnson v Harlem Hosp.Sup Ct, NY County12/8/20232023 NY Slip Op 34271(U)
    McLean v SolnySup Ct, Kings County11/27/20232023 NY Slip Op 34272(U)
    Weber v BarnettSup Ct, Kings County12/7/20232023 NY Slip Op 34273(U)
    Franks v National Grid USA + Sup Ct, Kings County12/7/20232023 NY Slip Op 34274(U)
    Nellis v Cadman Assoc. LLC + Sup Ct, Kings County11/16/20232023 NY Slip Op 34276(U)
    BH Sterling Realty LLC v + LongoriaSup Ct, Kings County12/7/20232023 NY Slip Op 34277(U)
    Diaz v MahmoodSup Ct, Kings County11/30/20232023 NY Slip Op 34278(U)
    Global Liberty Ins. Co. v + CoboSup Ct, Kings County11/21/20232023 NY Slip Op 34279(U)
    Fusco v DantonSup Ct, Kings County12/5/20232023 NY Slip Op 34280(U)
    Skyview Capital, LLC v Conduent + Bus. Servs., LLCSup Ct, NY County12/7/20232023 NY Slip Op 34281(U)
    Altium Growth Fund, L.P. v Tingo + Group, Inc.Sup Ct, NY County12/7/20232023 NY Slip Op 34282(U)
    69 Second Ave. LLC v Vanessa + Realty Corp.Sup Ct, NY County12/8/20232023 NY Slip Op 34283(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 11, 2023
    Title + Court + Date + Slip Op No. +
    N.T. v P.F.Sup Ct, NY County9/23/20222022 NY Slip Op 51417(U)
    Hughes v Qingling Zhao + City Ct Long Beach, Nassau County12/7/20232023 NY Slip Op 23383
    People v DunmeyerSup Ct, NY County11/27/20232023 NY Slip Op 51334(U)
    BRX Ground 1 LLC v + TejerasCiv Ct City NY, Bronx County12/8/20232023 NY Slip Op 51335(U)
    Bracero v State of New + YorkCt Claims8/2/20232023 NY Slip Op 51336(U)
    American Tr. Ins. Co. v + Trinity Pain Mgt. of Staten Is., PLLCSup Ct, Kings County12/8/20232023 NY Slip Op 51337(U)
    Richards v PierreSup Ct, Kings County12/8/20232023 NY Slip Op 51338(U)
    Robinson v D.C. Realty Group + Inc.Sup Ct, Kings County12/8/20232023 NY Slip Op 51339(U)
    Lux Bldrs. Inc. v INN Constr. + Corp.Sup Ct, Kings County12/8/20232023 NY Slip Op 51340(U)
    985 Herkimer St. LLC v + Hobson-GreeneSup Ct, Kings County12/8/20232023 NY Slip Op 51341(U)
    Matter of Coscia v Town of + GreenburghSup Ct, Westchester County9/9/20212021 NY Slip Op 34039(U)
    Rosario v PeskinSup Ct, Bronx County11/22/20192019 NY Slip Op 35061(U)
    Silva v CastroSup Ct, Bronx County11/27/20192019 NY Slip Op 35062(U)
    Ramirez v HansumSup Ct, Bronx County9/30/20202020 NY Slip Op 35535(U)
    Martinez v Ortega-Lizardi + Sup Ct, Bronx County11/4/20192019 NY Slip Op 35063(U)
    Aybar v Krasdale Foods, Inc. + Sup Ct, Bronx County10/25/20192019 NY Slip Op 35064(U)
    Batista v Triumph Constr. + Corp.Sup Ct, Bronx County8/26/20202020 NY Slip Op 35536(U)
    Cuddihy v Bronx Pro Group LLC + Sup Ct, Bronx County10/28/20192019 NY Slip Op 35065(U)
    Cuddihy v Bronx Pro Group LLC + Sup Ct, Bronx County9/23/20192019 NY Slip Op 35066(U)
    Delgado v SantiagoSup Ct, Bronx County11/8/20192019 NY Slip Op 35067(U)
    Abad v MartinSup Ct, Bronx County5/15/20202020 NY Slip Op 35537(U)
    Brito v SantiagoSup Ct, Bronx County10/8/20202020 NY Slip Op 35538(U)
    Black v SpanosSup Ct, Bronx County11/19/20192019 NY Slip Op 35068(U)
    Madera v City of New York + Sup Ct, NY County12/5/20232023 NY Slip Op 34234(U)
    State Farm Mut. Auto. Ins. Co. v + Protection Physical Therapy, P.C.Sup Ct, NY County12/6/20232023 NY Slip Op 34235(U)
    Burgos v GTL Constr., LLC. + Sup Ct, NY County12/6/20232023 NY Slip Op 34236(U)
    Liss v City of New YorkSup Ct, NY County12/6/20232023 NY Slip Op 34237(U)
    Associated Indus. Ins. Co. v + Unified Window Sys. Inc.Sup Ct, NY County12/6/20232023 NY Slip Op 34238(U)
    Aldrich v LNG Enters., Inc. + Sup Ct, Chautauqua County9/2/20222022 NY Slip Op 34658(U)
    Stanhope v ConwaySup Ct, Otsego County5/25/20212021 NY Slip Op 34040(U)
    Garcia v City of New York + Sup Ct, NY County12/5/20232023 NY Slip Op 34239(U)
    Allison-Jabbie v Collins Bldg. + Servs., Inc.Sup Ct, Kings County12/6/20232023 NY Slip Op 34240(U)
    Krasnow v CataniaSup Ct, Nassau County3/30/20212021 NY Slip Op 34041(U)
    Anagnostopoulos v Rosenman + Sup Ct, Nassau County12/10/20212021 NY Slip Op 34042(U)
    Anagnostopoulos v Rosenman + Sup Ct, Nassau County4/14/20202020 NY Slip Op 35539(U)
    Lynch Dev. Assoc., Inc. v + JohnsonSup Ct, Suffolk County12/30/20212021 NY Slip Op 34043(U)
    SF Capital Invs., LP v + LoanStreet, + Inc.Sup Ct, NY County12/3/20232023 NY Slip Op 34241(U)
    Weisberg v StandardSup Ct, NY County11/28/20232023 NY Slip Op 34242(U)
    Weiner v AbendSup Ct, NY County11/22/20232023 NY Slip Op 34243(U)
    Besen Partners LLC v 36 W. 128th, + LLCSup Ct, NY County11/30/20232023 NY Slip Op 34244(U)
    CWCapital Invs. LLC v CWCapital + Cobalt Vr Ltd.Sup Ct, NY County12/3/20232023 NY Slip Op 34245(U)
    East 51st St. Dev. Co., LLC v HFZ + E. 51, LLCSup Ct, NY County11/28/20232023 NY Slip Op 34246(U)
    3B Assoc., LLC v eCommission + Solutions, LLCSup Ct, NY County11/20/20232023 NY Slip Op 34247(U)
    Matter of Trust Motor, LLC v LCF + GroupSup Ct, NY County11/28/20232023 NY Slip Op 34248(U)
    Oddo & Babat, P.C. v Joseph + T. Mullen, Jr. & Assoc.Sup Ct, NY County11/28/20232023 NY Slip Op 34249(U)
    Bridgeton 396 Broadway Fee, LLC v + HiRise Engg. P.C.Sup Ct, NY County11/29/20232023 NY Slip Op 34250(U)
    C.D.E. A.C. Co., Inc. v New York + City Dept. of Envtl. ProtectionSup Ct, NY County12/5/20232023 NY Slip Op 34251(U)
    Hildene Opportunities Master Fund + II, Ltd. v NRF Holdco, LLCSup Ct, NY County11/30/20232023 NY Slip Op 34252(U)
    213 W. 23rd St. LLC v Crunch + Holdings LLCSup Ct, NY County11/20/20232023 NY Slip Op 34253(U)
    Murphy Kennedy Group LLC v Board + of Mgrs. of the St. Tropez CondominiumSup Ct, NY County11/28/20232023 NY Slip Op 34254(U)
    ARM Energy Holdings, LLC v + Nautilus Envtl. Ohio 1, LLCSup Ct, NY County12/6/20232023 NY Slip Op 34255(U)
    ACS Group Acquisitions LLC v Kate + Spade LLCSup Ct, NY County12/5/20232023 NY Slip Op 34256(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 08, 2023
    Title + Court + Date + Slip Op No. +
    Mamadjanov v Boston Bryant + Hous. Dev. Fund Corp.Sup Ct, Kings County12/7/20232023 NY Slip Op 23381
    Cooley v VanslykeCity Ct Little Falls, Herkimer County12/8/20232023 NY Slip Op 23382
    People v FashawSup Ct, NY County11/29/20232023 NY Slip Op 51333(U)
    Sam Van LLC v BickleyCiv Ct City NY, Bronx County11/30/20232023 NY Slip Op 34209(U)
    Matter of Ling Lin v Sewell + Sup Ct, NY County12/5/20232023 NY Slip Op 34210(U)
    Diaz v 2 Broadway Ground Lease + TrustSup Ct, NY County12/5/20232023 NY Slip Op 34212(U)
    Enz v A.O. Smith Water Prods. + Co.Sup Ct, NY County12/4/20232023 NY Slip Op 34213(U)
    Guaman v New 470 LLCSup Ct, Kings County12/5/20232023 NY Slip Op 34214(U)
    Opera House Lofts LLC v + CarnahanSup Ct, Kings County11/28/20232023 NY Slip Op 34215(U)
    Batis v 85 Jay St. (Brooklyn), + LLCSup Ct, Kings County12/5/20232023 NY Slip Op 34216(U)
    Callender v ForondaSup Ct, Kings County12/5/20232023 NY Slip Op 34217(U)
    L.I. Champions Taekwondo Inc. v + 151 Montague Opportunity LLCSup Ct, Kings County11/30/20232023 NY Slip Op 34218(U)
    Rock-Park 94 LLC v CAMBA, + Inc.Sup Ct, Kings County11/27/20232023 NY Slip Op 34219(U)
    Buccio v SinghSup Ct, Kings County11/15/20232023 NY Slip Op 34220(U)
    Svetlichnyy v Cornell Univ. + Sup Ct, Kings County11/20/20232023 NY Slip Op 34221(U)
    Alpine Ready Mix Inc. v Happy + Living Dev., LLCSup Ct, Kings County11/20/20232023 NY Slip Op 34223(U)
    Vasquez v New York City Fire + Dept.Sup Ct, Kings County11/27/20232023 NY Slip Op 34224(U)
    Biodiagnostic Labs, Inc. v + Centers for Care, LLCSup Ct, Kings County11/28/20232023 NY Slip Op 34225(U)
    Ray v RaySup Ct, NY County12/1/20232023 NY Slip Op 34226(U)
    Greenman v MillerSup Ct, NY County12/5/20232023 NY Slip Op 34227(U)
    White Oak Commercial Fin., LLC v + EIA, Inc.Sup Ct, NY County11/27/20232023 NY Slip Op 34228(U)
    Tantaros v KrechmerSup Ct, NY County11/20/20232023 NY Slip Op 34229(U)
    Haider v RupallSup Ct, NY County11/29/20232023 NY Slip Op 34230(U)
    Hartman v Pilata Inc.Sup Ct, NY County12/1/20232023 NY Slip Op 34231(U)
    Pursuit Credit Special + Opportunity Fund, L.P. v KrunchCash, LLCSup Ct, NY County11/28/20232023 NY Slip Op 34232(U)
    Sotheby's, Inc. v August Uribe + Fine Art, LLCSup Ct, NY County11/21/20232023 NY Slip Op 34233(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 07, 2023
    Title + Court + Date + Slip Op No. +
    NYC Blue Mgt. LLC v Finn + Civ Ct City NY, Queens County12/3/20232023 NY Slip Op 23380
    K.L. v J.B.Sup Ct, NY County11/8/20232023 NY Slip Op 51327(U)
    G.W. v J.W.Sup Ct, Westchester County12/6/20232023 NY Slip Op 51328(U)
    Biondo v OrnochSup Ct, Richmond County11/30/20232023 NY Slip Op 51329(U)
    Afanador v State of New + YorkCt Claims10/3/20232023 NY Slip Op 51330(U)
    Loumat Realty Co., LLC v + GilkarovCiv Ct City NY, Queens County12/6/20232023 NY Slip Op 51331(U)
    Bologna v Carmel Richmond + Nursing Home, Inc.Sup Ct, Kings County12/7/20232023 NY Slip Op 51332(U)
    Aghedo v 80 Clarkson LLCCiv Ct City NY, Kings County12/4/20232023 NY Slip Op 34188(U)
    Crest I LP v VenturaCiv Ct City NY, NY County3/1/20212021 NY Slip Op 34038(U)
    Sayles v Urban Am. Mgt. Corp. + Sup Ct, NY County11/29/20232023 NY Slip Op 34189(U)
    Kiehm v KimSup Ct, NY County12/1/20232023 NY Slip Op 34190(U)
    Matter of 738 E. 6th Owner (DE) + LLC v New York City Dept. of Hous. Preserv. & Dev. Sup Ct, NY County12/4/20232023 NY Slip Op 34191(U)
    Matter of GPG 592 LLC v New York + City Dept. of Hous. Preserv. & Dev.Sup Ct, NY County12/4/20232023 NY Slip Op 34192(U)
    Matter of DS Brooklyn Portfolio + Owner LLC v New York City Dept. of Hous. Preserv. & Dev.Sup Ct, NY County12/4/20232023 NY Slip Op 34193(U)
    NYCTL 2019-A Trust v Yelagina + Sup Ct, NY County12/1/20232023 NY Slip Op 34194(U)
    Matter of 326 Bedford Ventures + LLC v New York City Dept. of Hous. Preserv. & Dev.Sup Ct, NY County12/4/20232023 NY Slip Op 34195(U)
    Gross v MTGLQ Invs., L.P. + Sup Ct, Kings County12/4/20232023 NY Slip Op 34196(U)
    Follman v GruberSup Ct, Kings County11/30/20232023 NY Slip Op 34197(U)
    Matter of W 36th Villa LLC, v New + York State Div. of Hous. & Community RenewalSup Ct, Kings County11/6/20232023 NY Slip Op 34198(U)
    Varona v Story Ave. E. + Residential, LLCSup Ct, Kings County11/20/20232023 NY Slip Op 34199(U)
    Valentine v LobelSup Ct, Kings County12/4/20232023 NY Slip Op 34200(U)
    Noboa v AGBH Print. House + Holdings, L.L.C.Sup Ct, Kings County11/27/20232023 NY Slip Op 34201(U)
    Muharram v DialloSup Ct, Kings County11/28/20232023 NY Slip Op 34202(U)
    209 Barbey St. Trust v + ScotlandSup Ct, Kings County11/28/20232023 NY Slip Op 34203(U)
    Glover v AshmanSup Ct, Kings County11/1/20232023 NY Slip Op 34204(U)
    ARK570 Doe v Diocese of + BrooklynSup Ct, Kings County11/15/20232023 NY Slip Op 34205(U)
    Ramirez v IssaSup Ct, Kings County11/28/20232023 NY Slip Op 34206(U)
    Nelson v CRP N.Y. Ave. LLC + Sup Ct, Kings County11/28/20232023 NY Slip Op 34207(U)
    Miles-Forde v Green Line Taxi + Inc.Sup Ct, Kings County11/17/20232023 NY Slip Op 34208(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 06, 2023
    Title + Court + Date + Slip Op No. +
    RH 528 W. 159 St. LP v + TimofeevaCiv Ct City NY, NY County12/5/20232023 NY Slip Op 23377
    35-09 LLC v Navedo-Perez + Civ Ct City NY, Queens County12/6/20232023 NY Slip Op 23378
    Koncikowski v Albany Med. + Ctr. Hosp.Sup Ct, Warren County12/4/20232023 NY Slip Op 23379
    Corneille v AliSup Ct, Suffolk County11/28/20232023 NY Slip Op 51318(U)
    Matter of Progressive Ins. + Co. v OteroSup Ct, Richmond County12/1/20232023 NY Slip Op 51319(U)
    Gross v BrachSup Ct, Kings County3/6/20232023 NY Slip Op 51320(U)
    People v MorganSup Ct, Kings County12/4/20232023 NY Slip Op 51321(U)
    People v HooksCrim Ct City NY, Kings County12/6/20232023 NY Slip Op 51322(U)
    People v KingsberryCrim Ct City NY, Bronx County12/5/20232023 NY Slip Op 51323(U)
    People v FrankCrim Ct City NY, Queens County12/4/20232023 NY Slip Op 51324(U)
    People v SaquijxolCrim Ct City NY, Queens County12/6/20232023 NY Slip Op 51325(U)
    Matter of 201 EB Dev. III, LLC v + New York City Dept. of Bldgs.Sup Ct, NY County12/2/20232023 NY Slip Op 34153(U)
    Perez v Anejo, LLCSup Ct, NY County12/1/20232023 NY Slip Op 34154(U)
    Sayles v New York City Hous. + Auth.Sup Ct, NY County11/30/20232023 NY Slip Op 34155(U)
    Cerrone v City of New York + Sup Ct, NY County11/30/20232023 NY Slip Op 34156(U)
    Desposito v JungSup Ct, NY County12/1/20232023 NY Slip Op 34157(U)
    Deleon v 560-568 Audubon Realty, + LLCSup Ct, NY County12/1/20232023 NY Slip Op 34158(U)
    Solarte v Brearley Sch.Sup Ct, NY County11/30/20232023 NY Slip Op 34159(U)
    Alatorre v Port Auth. of N.Y. + & N.J.Sup Ct, NY County12/1/20232023 NY Slip Op 34160(U)
    Saunders v New York City Hous. + Auth.Sup Ct, NY County11/30/20232023 NY Slip Op 34161(U)
    Iacovacci v Brevet Holdings, + LLCSup Ct, NY County11/27/20232023 NY Slip Op 34162(U)
    Escobedo v Circle Line + Sightseeing Yachts, Inc.Sup Ct, NY County11/27/20232023 NY Slip Op 34163(U)
    Ashley v Red Lobster Hospitality + LLCSup Ct, NY County11/21/20232023 NY Slip Op 34164(U)
    Almark Holding Co. LLC v Jung + MoonSup Ct, NY County11/17/20232023 NY Slip Op 34165(U)
    Real World Holdings LLC v 393 W. + Broadway Corp.Sup Ct, NY County11/28/20232023 NY Slip Op 34166(U)
    West 152nd Assoc., L.P. v + GassamaSup Ct, NY County11/28/20232023 NY Slip Op 34168(U)
    Davis v AngiolettiSup Ct, NY County11/29/20232023 NY Slip Op 34169(U)
    NYP Holdings, Inc. v New York + City Police Dept.Sup Ct, NY County11/28/20232023 NY Slip Op 34170(U)
    Munoz v A.O. Smith Water Prods. + CoSup Ct, NY County11/21/20232023 NY Slip Op 34171(U)
    Hollingsworth v A.O. Smith Water + Prods. Co.Sup Ct, NY County11/21/20232023 NY Slip Op 34172(U)
    Marino v Air & Liquid Sys. + Corp.Sup Ct, NY County11/27/20232023 NY Slip Op 34173(U)
    Woods v Amchem Prods., Inc. + Sup Ct, NY County11/21/20232023 NY Slip Op 34174(U)
    Gonder v A.O. Smith Water Prods. + CoSup Ct, NY County11/24/20232023 NY Slip Op 34175(U)
    Nankervis v A.O. Smith Water + Prods. CoSup Ct, NY County11/21/20232023 NY Slip Op 34176(U)
    U.S. Bank N.A. v HandlerSup Ct, Kings County11/22/20232023 NY Slip Op 34177(U)
    City of New York v ORJ Props. + Inc.Sup Ct, NY County11/30/20232023 NY Slip Op 34178(U)
    American Funding Servs. v T.N. + Eldridge Devs. LLCSup Ct, NY County12/1/20232023 NY Slip Op 34179(U)
    City of New York v Steven Holl + Architect, P.C.Sup Ct, NY County12/1/20232023 NY Slip Op 34180(U)
    People v National Rifle Assn. of + Am.Sup Ct, NY County11/30/20232023 NY Slip Op 34181(U)
    Commissioners of the State Ins. + Fund v WyckoffSup Ct, NY County11/27/20232023 NY Slip Op 34182(U)
    Stone v St. Leo R.C. Church + Sup Ct, Kings County11/20/20232023 NY Slip Op 34183(U)
    Lewis v MatiasSup Ct, Kings County11/21/20232023 NY Slip Op 34184(U)
    Henry v CookSup Ct, Kings County11/27/20232023 NY Slip Op 34185(U)
    Anderson v Toll House, LLC + Sup Ct, Kings County12/1/20232023 NY Slip Op 34186(U)
    Guzman v 345 PAS Owner, LLC + Sup Ct, Kings County11/20/20232023 NY Slip Op 34187(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 05, 2023
    Title + Court + Date + Slip Op No. +
    S.B. v A.K.Sup Ct, Westchester County12/4/20232023 NY Slip Op 23373
    Potentia Mgt. Group, LLC v + D.W.Utica City Ct12/1/20232023 NY Slip Op 23374
    Temo Realty LLC v Herrera + Civ Ct City NY, Kings County11/29/20232023 NY Slip Op 23375
    Delgado v State of New + YorkCt Claims11/22/20232023 NY Slip Op 23376
    201 E. 164th St. Assoc., LLC + v CalderonCiv Ct City NY, Bronx County12/4/20232023 NY Slip Op 51315(U)
    People v PriceCrim Ct City NY, Bronx County12/4/20232023 NY Slip Op 51316(U)
    Town of Hartford v Swezey + Sup Ct, Washington County11/30/20232023 NY Slip Op 51317(U)
    Dadey v Onondaga County Comm. of + the Conservative Party of NYSSup Ct, Onondaga County11/30/20232023 NY Slip Op 34150(U)
    Stevenson v Ghosh-HazraSup Ct, Bronx County9/28/20212021 NY Slip Op 34032(U)
    Skyers v City of New York + Sup Ct, Bronx County8/18/20202020 NY Slip Op 35525(U)
    Rivera v Lopez-ReyesSup Ct, Bronx County12/22/20202020 NY Slip Op 35526(U)
    Martinez v EderSup Ct, Bronx County6/29/20202020 NY Slip Op 35527(U)
    Sarowar v ViejoSup Ct, Bronx County10/30/20192019 NY Slip Op 35048(U)
    Metzger v DL Peterson Trust + Sup Ct, Bronx County8/5/20212021 NY Slip Op 34033(U)
    Lesch v Advantage Rent A Car + Sup Ct, Bronx County11/1/20192019 NY Slip Op 35049(U)
    Saduzy v MazumderSup Ct, Bronx County10/15/20192019 NY Slip Op 35050(U)
    Tejada v 15 Cliff LLCSup Ct, Bronx County11/4/20192019 NY Slip Op 35051(U)
    Ayele v ValentineSup Ct, Bronx County11/7/20192019 NY Slip Op 35052(U)
    Ayele v ValentineSup Ct, Bronx County5/30/20192019 NY Slip Op 35053(U)
    Kriskovich v CruzSup Ct, Bronx County12/14/20202020 NY Slip Op 35528(U)
    Ramos v Clam Diggers Restoration + LLCSup Ct, Bronx County2/22/20212021 NY Slip Op 34034(U)
    Colon v Raymour Furniture Co. + Inc.Sup Ct, Bronx County7/21/20202020 NY Slip Op 35529(U)
    Harris v BonnoSup Ct, Bronx County9/28/20202020 NY Slip Op 35530(U)
    Upson v Oliveira Contr., Inc. + Sup Ct, Bronx County12/9/20202020 NY Slip Op 35531(U)
    Ruiz v Parkchester S. + Condominium, Inc.Sup Ct, Bronx County8/7/20192019 NY Slip Op 35054(U)
    Granieri v MaksumovSup Ct, Bronx County6/15/20202020 NY Slip Op 35532(U)
    Corrales v Urgent Care Physician + of N.Y.-Hartsdale, PLLCSup Ct, Bronx County3/6/20202020 NY Slip Op 35533(U)
    Ramirez-Cruz v + Montgomery-GilesSup Ct, Bronx County11/7/20192019 NY Slip Op 35055(U)
    Turner v DoeSup Ct, Bronx County7/30/20202020 NY Slip Op 35534(U)
    O'Shea v Procida Constr. + Corp.Sup Ct, Bronx County9/26/20222022 NY Slip Op 34655(U)
    Jerez v MorenoSup Ct, Bronx County11/25/20192019 NY Slip Op 35056(U)
    Betancourt v ARC NYC123 William, + LLCSup Ct, Bronx County8/31/20232023 NY Slip Op 34151(U)
    Torres v LevySup Ct, Bronx County7/14/20232023 NY Slip Op 34152(U)
    Rosa v 267 E. 202 LLCSup Ct, Bronx County3/28/20192019 NY Slip Op 35057(U)
    Richardson v CancelSup Ct, Bronx County2/7/20222022 NY Slip Op 34656(U)
    Mirza v Tribeca Auto. Inc. + Sup Ct, Bronx County8/2/20192019 NY Slip Op 35058(U)
    Menzies v MoonabSup Ct, Bronx County10/7/20192019 NY Slip Op 35059(U)
    Rosa v DiloneSup Ct, Bronx County10/8/20192019 NY Slip Op 35060(U)
    Hallback v City of New York + Sup Ct, Bronx County9/21/20222022 NY Slip Op 34657(U)
    Davis v SantosSup Ct, Bronx County10/19/20212021 NY Slip Op 34036(U)
    Cattaraugus County v New York + State Dept. of HealthSup Ct, Albany County10/12/20212021 NY Slip Op 34037(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 04, 2023
    Title + Court + Date + Slip Op No. +
    Matter of MaltzSur Ct, Richmond County11/30/20232023 NY Slip Op 23372
    Department of Hous. Preserv. + & Dev. of the City of N.Y. v OhebshalomCiv Ct City NY, Queens County11/29/20232023 NY Slip Op 51313(U)
    Scoca v KosmachevaJust Ct Village Tuckahoe, Westchester County11/16/20232023 NY Slip Op 51314(U)
    Collazo v AduseiSup Ct, Bronx County9/27/20192019 NY Slip Op 35038(U)
    Catania v LirianoSup Ct, Bronx County4/15/20212021 NY Slip Op 34027(U)
    Catania v LirianoSup Ct, Bronx County11/6/20202020 NY Slip Op 35519(U)
    Catania v LirianoSup Ct, Bronx County2/21/20202020 NY Slip Op 35520(U)
    Contreras v CharrierSup Ct, Bronx County10/15/20192019 NY Slip Op 35039(U)
    Franco v NarvaezSup Ct, Bronx County11/19/20192019 NY Slip Op 35040(U)
    Naranjo v CampbellSup Ct, Bronx County10/10/20192019 NY Slip Op 35041(U)
    Clarke v BerdonSup Ct, Bronx County11/8/20192019 NY Slip Op 35042(U)
    Moore v JohnsonSup Ct, Bronx County10/9/20192019 NY Slip Op 35043(U)
    Figueroa v WilliamsSup Ct, Bronx County7/29/20212021 NY Slip Op 34028(U)
    Tavarez v Linda Transp. Corp. + Sup Ct, Bronx County10/9/20192019 NY Slip Op 35044(U)
    Lioreisis v MazaSup Ct, Bronx County7/14/20212021 NY Slip Op 34029(U)
    Gonzalez v SeraphinSup Ct, Bronx County4/28/20202020 NY Slip Op 35521(U)
    Eusebio v Ahern Rentals Inc. + Sup Ct, Bronx County11/21/20192019 NY Slip Op 35045(U)
    Lewis v KaboreSup Ct, Bronx County9/28/20212021 NY Slip Op 34030(U)
    Wright v Plaza Constr. LLC + Sup Ct, Bronx County12/21/20202020 NY Slip Op 35522(U)
    Wilson v Otis El. Co.Sup Ct, Bronx County10/22/20192019 NY Slip Op 35046(U)
    Colarossi v ShahSup Ct, Bronx County8/13/20202020 NY Slip Op 35523(U)
    Pryce v SanchezSup Ct, Bronx County11/1/20192019 NY Slip Op 35047(U)
    Meza v GarciaSup Ct, Bronx County7/28/20212021 NY Slip Op 34031(U)
    Reyes v MaldonadoSup Ct, Bronx County3/17/20202020 NY Slip Op 35524(U)
    Owczarek v J.T. Magen & Co. + Inc.Sup Ct, NY County11/29/20232023 NY Slip Op 34144(U)
    Clayman Rosenberg Kirshner & + Linder LLP v New York County Dist. Attorney's Off.Sup Ct, NY County11/29/20232023 NY Slip Op 34145(U)
    AMG Solutions LLC v Hudson + Meridian Constr. Group, LLCSup Ct, NY County11/20/20232023 NY Slip Op 34146(U)
    Rich v New York City Tr. + Auth.Sup Ct, NY County11/27/20232023 NY Slip Op 34148(U)
    40 CPS Assoc., LLC v Elnashar + Sup Ct, NY County11/15/20232023 NY Slip Op 34149(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted December 01, 2023
    Title + Court + Date + Slip Op No. +
    Matter of Andres Q. v + Letiticia Y.A.Fam Ct, Monroe County11/18/20222022 NY Slip Op 51416(U)
    C.M. v E.M.Sup Ct, Nassau County11/28/20232023 NY Slip Op 23369
    Ditech Fin. LLC v Naidu + Sup Ct, Queens County10/18/20232023 NY Slip Op 23370
    G.P. v State of New York + Ct Claims10/16/20232023 NY Slip Op 23371
    Bank of N.Y. v Harper + Sup Ct, Suffolk County10/2/20232023 NY Slip Op 51306(U)
    Cadillac Leasing L.P. v + KamaraCiv Ct City NY, Queens County11/30/20232023 NY Slip Op 51307(U)
    Sims v RegisDist Ct Nassau County, Second Dist11/30/20232023 NY Slip Op 51308(U)
    BP New Bldg. LLC v + SteplightCiv Ct City NY, Bronx County8/25/20232023 NY Slip Op 51309(U)
    Madison Advance LLC v Design + Light. Group LLCSup Ct, Kings County12/1/20232023 NY Slip Op 51310(U)
    American Tr. Ins. Co. v + Nexray Med. Imaging P.C.Sup Ct, Kings County12/1/20232023 NY Slip Op 51311(U)
    429 Lenox Realty, LLC v A + Taste of Seafood, Inc.Civ Ct City NY, NY County6/7/20232023 NY Slip Op 51312(U)
    Laurelton Estates LLC. v + PrinceSup Ct, Queens County11/20/20232023 NY Slip Op 34118(U)
    Serafin v New York State Dept. of + HealthSup Ct, Albany County12/9/20212021 NY Slip Op 34025(U)
    Cassino-Sharp v Whispering Hills + Homeowners Assn., Inc.Sup Ct, Orange County12/2/20202020 NY Slip Op 35517(U)
    Diamond v WalkerSup Ct, Suffolk County4/23/20202020 NY Slip Op 35518(U)
    Diamond v WalkerSup Ct, Suffolk County1/4/20172017 NY Slip Op 33554(U)
    Perez v City of New YorkSup Ct, NY County11/20/20232023 NY Slip Op 34119(U)
    Bourne v Martin Dev. & Mgt., + LLC.Sup Ct, Kings County11/22/20232023 NY Slip Op 34120(U)
    Maria v Manhattan Homes Co., + LLCSup Ct, NY County11/16/20232023 NY Slip Op 34121(U)
    Ming Tang v PS Marcato El. Co., + Inc.Sup Ct, NY County11/28/20232023 NY Slip Op 34122(U)
    Baptiste v New York City Tr. + Auth.Sup Ct, NY County11/20/20232023 NY Slip Op 34123(U)
    In Re Sea Ltd. Sec. Litig. v + XXXSup Ct, NY County11/20/20232023 NY Slip Op 34124(U)
    Lopez v 18-20 Park 84 Corp. + Sup Ct, NY County11/24/20232023 NY Slip Op 34125(U)
    Alexopoulos v 2 Rector St. (NY), + LLCSup Ct, NY County11/20/20232023 NY Slip Op 34126(U)
    Normanus Realty LLC v 154 E. 62 + LLCSup Ct, NY County11/27/20232023 NY Slip Op 34127(U)
    Yeiser v SchiavocampoSup Ct, NY County11/20/20232023 NY Slip Op 34128(U)
    Littleton v Mode Pub. Relations + LLCSup Ct, NY County5/24/20232023 NY Slip Op 34129(U)
    Stuyvesant Town-Peter Cooper Vil. + Tenants Assn. v New York State Div. of Hous. & Community RenewalSup Ct, NY County11/22/20232023 NY Slip Op 34130(U)
    Evans v PunterSup Ct, NY County11/22/20232023 NY Slip Op 34131(U)
    Komomolov v PopikSup Ct, NY County11/27/20232023 NY Slip Op 34132(U)
    Starks v Metropolitan Transp. + Auth.Sup Ct, NY County11/17/20232023 NY Slip Op 34133(U)
    Yankiver v New York City Tr. + Auth.Sup Ct, NY County11/15/20232023 NY Slip Op 34134(U)
    Mironov v Memorial Hosp. for + Cancer & Allied DiseasesSup Ct, NY County11/27/20232023 NY Slip Op 34135(U)
    Torres v 411-413 Broadway, + LLCSup Ct, NY County11/16/20232023 NY Slip Op 34136(U)
    Chapin v 1818 Nadlan LLC. + Sup Ct, NY County11/21/20232023 NY Slip Op 34137(U)
    El-Yamani v F.B.M. Cab Corp + Sup Ct, NY County11/28/20232023 NY Slip Op 34138(U)
    McCrae v City of New York + Sup Ct, NY County11/1/20232023 NY Slip Op 34139(U)
    245 Park Ave. Prop. LLC v HNA + Capital US LLCSup Ct, NY County11/17/20232023 NY Slip Op 34140(U)
    Silverman v LeibowitzSup Ct, NY County11/22/20232023 NY Slip Op 34141(U)
    Murphy v City of New York + Sup Ct, NY County11/20/20232023 NY Slip Op 34142(U)
    Lardon Constr. Corp. v Mark + Cerrone, Inc.Sup Ct, Niagara County4/11/20222022 NY Slip Op 34653(U)
    Clarke v American Credit + AcceptanceSup Ct, Ulster County11/14/20232023 NY Slip Op 34143(U)
    Rosas v PetkovichSup Ct, Dutchess County10/8/20212021 NY Slip Op 34026(U)
    Hart v City of BuffaloSup Ct, Erie County1/20/20222022 NY Slip Op 34654(U)


    + + + +
    +
    + + +
    +
    E-mail the Law
+
+
+
+Reporting Bureau +
    +
    New York State Law Reporting Bureau
    + 17 Lodge St., Albany NY 12207
    + phone: (518) 453-6900
    + fax: (518) 426-1640
    +
    +
    +
    + +
    + +  
    + +  
    + +  
    + +
    + + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyjustct_example.compare.json b/tests/examples/opinions/united_states/nyjustct_example.compare.json new file mode 100644 index 000000000..2785457f3 --- /dev/null +++ b/tests/examples/opinions/united_states/nyjustct_example.compare.json @@ -0,0 +1,14 @@ +[ + { + "case_dates": "2024-01-02", + "case_names": "People v. Bowman", + "download_urls": "tests/examples/opinions/3dseries/2024/2024_50001.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2024 NY Slip Op 50001(U)", + "case_name_shorts": "Bowman", + "child_courts": "Just Ct Town Webster, Monroe County" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nyjustct_example.html b/tests/examples/opinions/united_states/nyjustct_example.html new file mode 100644 index 000000000..6c3197be4 --- /dev/null +++ b/tests/examples/opinions/united_states/nyjustct_example.html @@ -0,0 +1,415 @@ + + + + + + + Other Court Decisions + + + + + + + + + + + +
    + + + + + + +
      January, 2024  
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 04, 2024
    Title + Court + Date + Slip Op No. +
    Gur Assoc. LLC v Convenience on Eight + Corp.Civ Ct City NY, NY County12/21/20232023 NY Slip Op 23413
    Matter of Dionisio v BelmontSup Ct, Westchester County12/21/20232023 NY Slip Op 23414
    People v NichollsSup Ct, Kings County1/2/20242024 NY Slip Op 24003
    Wells Fargo Bank, N.A. v DefoeSup Ct, Richmond County12/4/20232023 NY Slip Op 34558(U)
    Matney v BoyleSup Ct, Saratoga County1/2/20242024 NY Slip Op 30001(U)
    Mule v SillermanSup Ct, NY County1/1/20242024 NY Slip Op 30002(U)
    Bunn v Faxton-St. Luke's HealthcareSup Ct, Oneida County10/4/20222022 NY Slip Op 34670(U)
    Contona v GodasSup Ct, Nassau County1/31/20192019 NY Slip Op 35075(U)
    Atalaya Special Opportunities Fund VII LP v + WhitedSup Ct, NY County12/31/20232023 NY Slip Op 34559(U)
    U.S. Bank N.A. v DLJ Mtge. Capital, Inc. + Sup Ct, NY County12/30/20232023 NY Slip Op 34560(U)
    Wilmington Trust, N.A. v GawlowskiSup Ct, Suffolk County4/18/20222022 NY Slip Op 34671(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 03, 2024
    Title + Court + Date + Slip Op No. +
    Pennymac Corp. v ErnesteSup Ct, Queens County12/6/20232023 NY Slip Op 23411
    Matter of HusseinSur Ct, Richmond County12/28/20232023 NY Slip Op 23412
    P.C. v L.C.Sup Ct, Warren County12/26/20232023 NY Slip Op 51439(U)
    People v K.B.Sup Ct, Erie County9/8/20232023 NY Slip Op 51440(U)
    Roskin v Northern Adult Day Health Care + Ctr.Sup Ct, Kings County12/28/20232023 NY Slip Op 51441(U)
    People v VincentSup Ct, Kings County1/2/20242024 NY Slip Op 24002
    Parisien v MVAICCiv Ct City NY, Kings County12/18/20232023 NY Slip Op 34542(U)
    State Farm. Mut. Auto. Ins. Co. v Global + Surgery Ctr., LLCSup Ct, NY County12/29/20232023 NY Slip Op 34543(U)
    Matter of Promenade Nelson Apts., LLC v New + York State Div. of Hous. & Community RenewalSup Ct, NY County12/28/20232023 NY Slip Op 34544(U)
    Matter of Windermere Props. LLC v City of New + YorkSup Ct, NY County12/21/20232023 NY Slip Op 34545(U)
    Dabas v WhyneSup Ct, Kings County12/27/20232023 NY Slip Op 34546(U)
    Matter of New York City Tr. Auth. v Charter + Oak Fire Ins. Co.Sup Ct, NY County12/28/20232023 NY Slip Op 34547(U)
    Roskin v Northern Adult Day Health Care + Ctr.Sup Ct, Kings County12/28/20232023 NY Slip Op 34548(U)
    Koshelev v Mortar Architecture PLLCSup Ct, Kings County12/5/20232023 NY Slip Op 34549(U)
    Clairvil v VemulapalliSup Ct, Kings County12/28/20232023 NY Slip Op 34550(U)
    Graulau v RosenbergSup Ct, Kings County12/19/20232023 NY Slip Op 34551(U)
    Simpson v Success Academy Charter Schs., + Inc.Sup Ct, Kings County12/21/20232023 NY Slip Op 34552(U)
    Cortlandt St. Recovery Corp. v Hellas + Telecommunications II, S.C.A.Sup Ct, NY County12/28/20232023 NY Slip Op 34553(U)
    Pearl St. Co-Invest I, LLC v MapR (ABC) + LLCSup Ct, NY County12/28/20232023 NY Slip Op 34554(U)
    Reveam, Inc. v Taylor Frères Capital Mkts., + LLCSup Ct, NY County12/29/20232023 NY Slip Op 34555(U)
    Kruchten v Eastman Kodak Co.Sup Ct, NY County12/29/20232023 NY Slip Op 34556(U)
    Matter of DavisSur Ct, NY County12/28/20232023 NY Slip Op 34557(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 02, 2024
    Title + Court + Date + Slip Op No. +
    People v SandersCrim Ct City NY, Bronx County12/14/20232023 NY Slip Op 51435(U)
    People v GraySup Ct, Kings County12/29/20232023 NY Slip Op 51436(U)
    INK 954 LLC v MannCiv Ct City NY, Queens County12/27/20232023 NY Slip Op 51437(U)
    People v SolomonidisCounty Ct, Genesee County12/29/20232023 NY Slip Op 51438(U)
    People v BarriosCrim Ct City NY, Bronx County1/1/20242024 NY Slip Op 24001
    People v BowmanJust Ct Town Webster, Monroe County1/2/20242024 NY Slip Op 50001(U)
    Velez v LSG 105 W. 28th, LLCSup Ct, NY County12/27/20232023 NY Slip Op 34537(U)
    Servedio v A.O. Smith Water Prods. Co. + Sup Ct, NY County12/27/20232023 NY Slip Op 34538(U)
    Daly v Amchem Prods., Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34539(U)
    Desiena v Aerco Intl. Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34540(U)
    Desiena v Aerco Intl. Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34541(U)


    + + + +
    +
    + + +
    +
    E-mail the Law
+
+
+
+Reporting Bureau +
    +
    New York State Law Reporting Bureau
    + 17 Lodge St., Albany NY 12207
    + phone: (518) 453-6900
    + fax: (518) 426-1640
    +
    +
    +
    + +
    + +  
    + +  
    + +  
    + +
    + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nysupct_commercial_example.compare.json b/tests/examples/opinions/united_states/nysupct_commercial_example.compare.json new file mode 100644 index 000000000..74c7500b9 --- /dev/null +++ b/tests/examples/opinions/united_states/nysupct_commercial_example.compare.json @@ -0,0 +1,26 @@ +[ + { + "case_dates": "2023-12-12", + "case_names": "1125 Morris Ave. Realty LLC v. Title Issues Agency LLC", + "download_urls": "tests/examples/opinions/3dseries/2023/2023_51345.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51345(U)", + "case_name_shorts": "", + "child_courts": "Sup Ct, Bronx County" + }, + { + "case_dates": "2023-12-04", + "case_names": "SCE Envtl. Group, Inc. v. Murnane Bldg. Contrs. Inc.", + "download_urls": "tests/examples/opinions/3dseries/2023/2023_51326.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51326(U)", + "case_name_shorts": "", + "child_courts": "Sup Ct, Albany County" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nysupct_commercial_example.html b/tests/examples/opinions/united_states/nysupct_commercial_example.html new file mode 100644 index 000000000..3c78e0234 --- /dev/null +++ b/tests/examples/opinions/united_states/nysupct_commercial_example.html @@ -0,0 +1,124 @@ + + + + + Supreme Court, Commercial Division, Decisions + + + + + + + + + + + + +
    + + + + + + +
      December, 2023  
    + + + + +
    + + + + + + + + + + + + + + + +
    Cases Posted December 12, 2023
    Title + Court + Date + Slip Op No. +
    1125 Morris Ave. Realty LLC v Title Issues + Agency LLCSup Ct, Bronx County12/12/20232023 NY Slip Op 51345(U)


    + + + +
    + + + + + + + + + + + + + + + +
    Cases Posted December 07, 2023
    Title + Court + Date + Slip Op No. +
    SCE Envtl. Group, Inc. v Murnane Bldg. Contrs. + Inc.Sup Ct, Albany County12/4/20232023 NY Slip Op 51326(U)


    + + + + + + + +
    +
    + + +
    +
    E-mail the Law
+
+Reporting Bureau
    +
    New York State Law Reporting Bureau
    + One Commerce Plaza, Suite 1750, Albany NY 12210
    + phone: (518) 453-6900
    + fax: (518) 426-1640
    +
    +
    + +
    + +  
    + +  
    + +  
    + +
    + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nysupct_example.compare.json b/tests/examples/opinions/united_states/nysupct_example.compare.json index 446401023..6afcec2b8 100644 --- a/tests/examples/opinions/united_states/nysupct_example.compare.json +++ b/tests/examples/opinions/united_states/nysupct_example.compare.json @@ -1,14 +1,422 @@ [ { - "case_dates": "2005-01-25", - "case_names": "SBA Network Servs. v. Fred A. Nudd Corp.", - "download_urls": "http://www.nycourts.gov/reporter/3dseries/2005/2005_51861.htm", + "case_dates": "2024-01-02", + "case_names": "People v. Vincent", + "download_urls": "tests/examples/opinions/3dseries/2024/2024_24002.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2024 NY Slip Op 24002", + "case_name_shorts": "Vincent", + "child_courts": "Sup Ct, Kings County" + }, + { + "case_dates": "2024-01-02", + "case_names": "People v. Nicholls", + "download_urls": "tests/examples/opinions/3dseries/2024/2024_24003.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2024 NY Slip Op 24003", + "case_name_shorts": "Nicholls", + "child_courts": "Sup Ct, Kings County" + }, + { + "case_dates": "2024-01-02", + "case_names": "Matney v. Boyle", + "download_urls": "tests/examples/opinions/pdfs/2024/2024_30001.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2024 NY Slip Op 30001(U)", + "case_name_shorts": "Matney", + "child_courts": "Sup Ct, Saratoga County" + }, + { + "case_dates": "2024-01-01", + "case_names": "Mule v. Sillerman", + "download_urls": "tests/examples/opinions/pdfs/2024/2024_30002.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2024 NY Slip Op 30002(U)", + "case_name_shorts": "Mule", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-31", + "case_names": "Atalaya Special Opportunities Fund VII LP v. Whited", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34559.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34559(U)", + "case_name_shorts": "Whited", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-30", + "case_names": "U.S. Bank N.A. v. DLJ Mtge. Capital, Inc.", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34560.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34560(U)", + "case_name_shorts": "", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-29", + "case_names": "State Farm. Mut. Auto. Ins. Co. v. Global Surgery Ctr., LLC", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34543.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34543(U)", + "case_name_shorts": "", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-29", + "case_names": "Reveam, Inc. v. Taylor Fr\u00e8res Capital Mkts., LLC", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34555.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34555(U)", + "case_name_shorts": "", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-29", + "case_names": "People v. Gray", + "download_urls": "tests/examples/opinions/3dseries/2023/2023_51436.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51436(U)", + "case_name_shorts": "Gray", + "child_courts": "Sup Ct, Kings County" + }, + { + "case_dates": "2023-12-29", + "case_names": "Kruchten v. Eastman Kodak Co.", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34556.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34556(U)", + "case_name_shorts": "Kruchten", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-28", + "case_names": "Roskin v. Northern Adult Day Health Care Ctr.", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34548.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34548(U)", + "case_name_shorts": "Roskin", + "child_courts": "Sup Ct, Kings County" + }, + { + "case_dates": "2023-12-28", + "case_names": "Roskin v. Northern Adult Day Health Care Ctr.", + "download_urls": "tests/examples/opinions/3dseries/2023/2023_51441.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51441(U)", + "case_name_shorts": "Roskin", + "child_courts": "Sup Ct, Kings County" + }, + { + "case_dates": "2023-12-28", + "case_names": "Pearl St. Co-Invest I, LLC v. MapR (ABC) LLC", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34554.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34554(U)", + "case_name_shorts": "", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-28", + "case_names": "Matter of Promenade Nelson Apts., LLC v. New York State Div. of Hous. & Community Renewal", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34544.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34544(U)", + "case_name_shorts": "", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-28", + "case_names": "Matter of New York City Tr. Auth. v. Charter Oak Fire Ins. Co.", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34547.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34547(U)", + "case_name_shorts": "", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-28", + "case_names": "Cortlandt St. Recovery Corp. v. Hellas Telecommunications II, S.C.A.", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34553.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34553(U)", + "case_name_shorts": "", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-28", + "case_names": "Clairvil v. Vemulapalli", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34550.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34550(U)", + "case_name_shorts": "Clairvil", + "child_courts": "Sup Ct, Kings County" + }, + { + "case_dates": "2023-12-27", + "case_names": "Velez v. LSG 105 W. 28th, LLC", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34537.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34537(U)", + "case_name_shorts": "Velez", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-27", + "case_names": "Servedio v. A.O. Smith Water Prods. Co.", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34538.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34538(U)", + "case_name_shorts": "Servedio", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-27", + "case_names": "Desiena v. Aerco Intl. Inc.", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34541.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34541(U)", + "case_name_shorts": "Desiena", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-27", + "case_names": "Desiena v. Aerco Intl. Inc.", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34540.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34540(U)", + "case_name_shorts": "Desiena", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-27", + "case_names": "Daly v. Amchem Prods., Inc.", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34539.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34539(U)", + "case_name_shorts": "Daly", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-27", + "case_names": "Dabas v. Whyne", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34546.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34546(U)", + "case_name_shorts": "Dabas", + "child_courts": "Sup Ct, Kings County" + }, + { + "case_dates": "2023-12-26", + "case_names": "P.C. v. L.C.", + "download_urls": "tests/examples/opinions/3dseries/2023/2023_51439.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51439(U)", + "case_name_shorts": "P.C.", + "child_courts": "Sup Ct, Warren County" + }, + { + "case_dates": "2023-12-21", + "case_names": "Simpson v. Success Academy Charter Schs., Inc.", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34552.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34552(U)", + "case_name_shorts": "Simpson", + "child_courts": "Sup Ct, Kings County" + }, + { + "case_dates": "2023-12-21", + "case_names": "Matter of Windermere Props. LLC v. City of New York", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34545.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34545(U)", + "case_name_shorts": "", + "child_courts": "Sup Ct, NY County" + }, + { + "case_dates": "2023-12-21", + "case_names": "Matter of Dionisio v. Belmont", + "download_urls": "tests/examples/opinions/3dseries/2023/2023_23414.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 23414", + "case_name_shorts": "Belmont", + "child_courts": "Sup Ct, Westchester County" + }, + { + "case_dates": "2023-12-19", + "case_names": "Graulau v. Rosenberg", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34551.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34551(U)", + "case_name_shorts": "Graulau", + "child_courts": "Sup Ct, Kings County" + }, + { + "case_dates": "2023-12-06", + "case_names": "Pennymac Corp. v. Erneste", + "download_urls": "tests/examples/opinions/3dseries/2023/2023_23411.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 23411", + "case_name_shorts": "Erneste", + "child_courts": "Sup Ct, Queens County" + }, + { + "case_dates": "2023-12-05", + "case_names": "Koshelev v. Mortar Architecture PLLC", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34549.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34549(U)", + "case_name_shorts": "Koshelev", + "child_courts": "Sup Ct, Kings County" + }, + { + "case_dates": "2023-12-04", + "case_names": "Wells Fargo Bank, N.A. v. Defoe", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34558.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34558(U)", + "case_name_shorts": "Defoe", + "child_courts": "Sup Ct, Richmond County" + }, + { + "case_dates": "2023-09-08", + "case_names": "People v. K.B.", + "download_urls": "tests/examples/opinions/3dseries/2023/2023_51440.htm", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 51440(U)", + "case_name_shorts": "K.B.", + "child_courts": "Sup Ct, Erie County" + }, + { + "case_dates": "2022-10-04", + "case_names": "Bunn v. Faxton-St. Luke's Healthcare", + "download_urls": "tests/examples/opinions/pdfs/2022/2022_34670.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2022 NY Slip Op 34670(U)", + "case_name_shorts": "Bunn", + "child_courts": "Sup Ct, Oneida County" + }, + { + "case_dates": "2022-04-18", + "case_names": "Wilmington Trust, N.A. v. Gawlowski", + "download_urls": "tests/examples/opinions/pdfs/2022/2022_34671.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2022 NY Slip Op 34671(U)", + "case_name_shorts": "Gawlowski", + "child_courts": "Sup Ct, Suffolk County" + }, + { + "case_dates": "2019-01-31", + "case_names": "Contona v. Godas", + "download_urls": "tests/examples/opinions/pdfs/2019/2019_35075.pdf", "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "", - "citations": "9 Misc 3d 1130(A)", - "parallel_citations": "2005 NYSlipOp 51861(U)", - "case_name_shorts": "" + "citations": "2019 NY Slip Op 35075(U)", + "case_name_shorts": "Contona", + "child_courts": "Sup Ct, Nassau County" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nysupct_example.html b/tests/examples/opinions/united_states/nysupct_example.html index fc918b145..6c3197be4 100644 --- a/tests/examples/opinions/united_states/nysupct_example.html +++ b/tests/examples/opinions/united_states/nysupct_example.html @@ -1,86 +1,415 @@ - - -LRB Search Results - - - - - -
    - - -

    - - - - - - -
     Slip Decisions Search Results
    - - -
    - - - - - - - - - - - - - - -
    Search Criteria
        Decision Start Date : - 01/01/2005
        Decision End Date : - 02/01/2005
        Court : - Commercial Division
    -
    - - - - - - -
    - Total number of records found: 1 - -       


    -
    - - - - - - - - - - - - - - - - - - - - - - -
    Party NameDecision DateCourt   Official Citation   Slip Number   JudgeOpn/Mot
    SBA Network Servs. v Fred A. Nudd Corp.01/25/2005Commercial Division9 Misc 3d 1130(A)2005 NYSlipOp 51861(U)FisherOpinion
    -
    -
    - - - -
    \ No newline at end of file + + + + + + + Other Court Decisions + + + + + + + + + + + +
    + + + + + + +
      January, 2024  
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 04, 2024
    Title + Court + Date + Slip Op No. +
    Gur Assoc. LLC v Convenience on Eight + Corp.Civ Ct City NY, NY County12/21/20232023 NY Slip Op 23413
    Matter of Dionisio v BelmontSup Ct, Westchester County12/21/20232023 NY Slip Op 23414
    People v NichollsSup Ct, Kings County1/2/20242024 NY Slip Op 24003
    Wells Fargo Bank, N.A. v DefoeSup Ct, Richmond County12/4/20232023 NY Slip Op 34558(U)
    Matney v BoyleSup Ct, Saratoga County1/2/20242024 NY Slip Op 30001(U)
    Mule v SillermanSup Ct, NY County1/1/20242024 NY Slip Op 30002(U)
    Bunn v Faxton-St. Luke's HealthcareSup Ct, Oneida County10/4/20222022 NY Slip Op 34670(U)
    Contona v GodasSup Ct, Nassau County1/31/20192019 NY Slip Op 35075(U)
    Atalaya Special Opportunities Fund VII LP v + WhitedSup Ct, NY County12/31/20232023 NY Slip Op 34559(U)
    U.S. Bank N.A. v DLJ Mtge. Capital, Inc. + Sup Ct, NY County12/30/20232023 NY Slip Op 34560(U)
    Wilmington Trust, N.A. v GawlowskiSup Ct, Suffolk County4/18/20222022 NY Slip Op 34671(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 03, 2024
    Title + Court + Date + Slip Op No. +
    Pennymac Corp. v ErnesteSup Ct, Queens County12/6/20232023 NY Slip Op 23411
    Matter of HusseinSur Ct, Richmond County12/28/20232023 NY Slip Op 23412
    P.C. v L.C.Sup Ct, Warren County12/26/20232023 NY Slip Op 51439(U)
    People v K.B.Sup Ct, Erie County9/8/20232023 NY Slip Op 51440(U)
    Roskin v Northern Adult Day Health Care + Ctr.Sup Ct, Kings County12/28/20232023 NY Slip Op 51441(U)
    People v VincentSup Ct, Kings County1/2/20242024 NY Slip Op 24002
    Parisien v MVAICCiv Ct City NY, Kings County12/18/20232023 NY Slip Op 34542(U)
    State Farm. Mut. Auto. Ins. Co. v Global + Surgery Ctr., LLCSup Ct, NY County12/29/20232023 NY Slip Op 34543(U)
    Matter of Promenade Nelson Apts., LLC v New + York State Div. of Hous. & Community RenewalSup Ct, NY County12/28/20232023 NY Slip Op 34544(U)
    Matter of Windermere Props. LLC v City of New + YorkSup Ct, NY County12/21/20232023 NY Slip Op 34545(U)
    Dabas v WhyneSup Ct, Kings County12/27/20232023 NY Slip Op 34546(U)
    Matter of New York City Tr. Auth. v Charter + Oak Fire Ins. Co.Sup Ct, NY County12/28/20232023 NY Slip Op 34547(U)
    Roskin v Northern Adult Day Health Care + Ctr.Sup Ct, Kings County12/28/20232023 NY Slip Op 34548(U)
    Koshelev v Mortar Architecture PLLCSup Ct, Kings County12/5/20232023 NY Slip Op 34549(U)
    Clairvil v VemulapalliSup Ct, Kings County12/28/20232023 NY Slip Op 34550(U)
    Graulau v RosenbergSup Ct, Kings County12/19/20232023 NY Slip Op 34551(U)
    Simpson v Success Academy Charter Schs., + Inc.Sup Ct, Kings County12/21/20232023 NY Slip Op 34552(U)
    Cortlandt St. Recovery Corp. v Hellas + Telecommunications II, S.C.A.Sup Ct, NY County12/28/20232023 NY Slip Op 34553(U)
    Pearl St. Co-Invest I, LLC v MapR (ABC) + LLCSup Ct, NY County12/28/20232023 NY Slip Op 34554(U)
    Reveam, Inc. v Taylor Frères Capital Mkts., + LLCSup Ct, NY County12/29/20232023 NY Slip Op 34555(U)
    Kruchten v Eastman Kodak Co.Sup Ct, NY County12/29/20232023 NY Slip Op 34556(U)
    Matter of DavisSur Ct, NY County12/28/20232023 NY Slip Op 34557(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 02, 2024
    Title + Court + Date + Slip Op No. +
    People v SandersCrim Ct City NY, Bronx County12/14/20232023 NY Slip Op 51435(U)
    People v GraySup Ct, Kings County12/29/20232023 NY Slip Op 51436(U)
    INK 954 LLC v MannCiv Ct City NY, Queens County12/27/20232023 NY Slip Op 51437(U)
    People v SolomonidisCounty Ct, Genesee County12/29/20232023 NY Slip Op 51438(U)
    People v BarriosCrim Ct City NY, Bronx County1/1/20242024 NY Slip Op 24001
    People v BowmanJust Ct Town Webster, Monroe County1/2/20242024 NY Slip Op 50001(U)
    Velez v LSG 105 W. 28th, LLCSup Ct, NY County12/27/20232023 NY Slip Op 34537(U)
    Servedio v A.O. Smith Water Prods. Co. + Sup Ct, NY County12/27/20232023 NY Slip Op 34538(U)
    Daly v Amchem Prods., Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34539(U)
    Desiena v Aerco Intl. Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34540(U)
    Desiena v Aerco Intl. Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34541(U)


    + + + +
    +
    + + +
    +
    E-mail the Law
+
+
+
+Reporting Bureau +
    +
    New York State Law Reporting Bureau
    + 17 Lodge St., Albany NY 12207
    + phone: (518) 453-6900
    + fax: (518) 426-1640
    +
    +
    +
    + +
    + +  
    + +  
    + +  
    + +
    + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nysupct_example_2.compare.json b/tests/examples/opinions/united_states/nysupct_example_2.compare.json deleted file mode 100644 index ad0ac0ead..000000000 --- a/tests/examples/opinions/united_states/nysupct_example_2.compare.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "case_dates": "2017-08-14", - "case_names": "Craft EM CLO 2006-1, Ltd. v. Deutsche Bank AG", - "download_urls": "http://www.nycourts.gov/reporter/3dseries/2017/2017_51045.htm", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "citations": "56 Misc 3d 1216(A)", - "parallel_citations": "2017 NYSlipOp 51045(U)", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nysupct_example_2.html b/tests/examples/opinions/united_states/nysupct_example_2.html deleted file mode 100644 index b6abd1192..000000000 --- a/tests/examples/opinions/united_states/nysupct_example_2.html +++ /dev/null @@ -1,105 +0,0 @@ - - -LRB Search Results - - - - - - - - - - - -
    - - -

    - - - - - - -
     Slip Decisions Search Results
    - - -
    - - - - - - - - - - - - - - -
    Search Criteria
        Decision Start Date : - 08/12/2017
        Decision End Date : - 09/12/2017
        Court : - Commercial Division
    -
    - - - - - - -
    - Total number of records found: 1 - -       


    -
    - - - - - - - - - - - - - - - - - - - - - - -
    Party NameDecision DateCourt   Official Citation   Slip Number   JudgeOpn/Mot
    Craft EM CLO 2006-1, Ltd. v Deutsche Bank AG08/14/2017Commercial Division56 Misc 3d 1216(A)2017 NYSlipOp 51045(U)RamosOpinion
    -
    -
    - - - diff --git a/tests/examples/opinions/united_states/nysurct_example.compare.json b/tests/examples/opinions/united_states/nysurct_example.compare.json new file mode 100644 index 000000000..c5e245f15 --- /dev/null +++ b/tests/examples/opinions/united_states/nysurct_example.compare.json @@ -0,0 +1,26 @@ +[ + { + "case_dates": "2023-12-28", + "case_names": "Matter of Hussein", + "download_urls": "tests/examples/opinions/3dseries/2023/2023_23412.htm", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 23412", + "case_name_shorts": "Matter of Hussein", + "child_courts": "Sur Ct, Richmond County" + }, + { + "case_dates": "2023-12-28", + "case_names": "Matter of Davis", + "download_urls": "tests/examples/opinions/pdfs/2023/2023_34557.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "", + "citations": "2023 NY Slip Op 34557(U)", + "case_name_shorts": "Matter of Davis", + "child_courts": "Sur Ct, NY County" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/nysurct_example.html b/tests/examples/opinions/united_states/nysurct_example.html new file mode 100644 index 000000000..6c3197be4 --- /dev/null +++ b/tests/examples/opinions/united_states/nysurct_example.html @@ -0,0 +1,415 @@ + + + + + + + Other Court Decisions + + + + + + + + + + + +
    + + + + + + +
      January, 2024  
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 04, 2024
    Title + Court + Date + Slip Op No. +
    Gur Assoc. LLC v Convenience on Eight + Corp.Civ Ct City NY, NY County12/21/20232023 NY Slip Op 23413
    Matter of Dionisio v BelmontSup Ct, Westchester County12/21/20232023 NY Slip Op 23414
    People v NichollsSup Ct, Kings County1/2/20242024 NY Slip Op 24003
    Wells Fargo Bank, N.A. v DefoeSup Ct, Richmond County12/4/20232023 NY Slip Op 34558(U)
    Matney v BoyleSup Ct, Saratoga County1/2/20242024 NY Slip Op 30001(U)
    Mule v SillermanSup Ct, NY County1/1/20242024 NY Slip Op 30002(U)
    Bunn v Faxton-St. Luke's HealthcareSup Ct, Oneida County10/4/20222022 NY Slip Op 34670(U)
    Contona v GodasSup Ct, Nassau County1/31/20192019 NY Slip Op 35075(U)
    Atalaya Special Opportunities Fund VII LP v + WhitedSup Ct, NY County12/31/20232023 NY Slip Op 34559(U)
    U.S. Bank N.A. v DLJ Mtge. Capital, Inc. + Sup Ct, NY County12/30/20232023 NY Slip Op 34560(U)
    Wilmington Trust, N.A. v GawlowskiSup Ct, Suffolk County4/18/20222022 NY Slip Op 34671(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 03, 2024
    Title + Court + Date + Slip Op No. +
    Pennymac Corp. v ErnesteSup Ct, Queens County12/6/20232023 NY Slip Op 23411
    Matter of HusseinSur Ct, Richmond County12/28/20232023 NY Slip Op 23412
    P.C. v L.C.Sup Ct, Warren County12/26/20232023 NY Slip Op 51439(U)
    People v K.B.Sup Ct, Erie County9/8/20232023 NY Slip Op 51440(U)
    Roskin v Northern Adult Day Health Care + Ctr.Sup Ct, Kings County12/28/20232023 NY Slip Op 51441(U)
    People v VincentSup Ct, Kings County1/2/20242024 NY Slip Op 24002
    Parisien v MVAICCiv Ct City NY, Kings County12/18/20232023 NY Slip Op 34542(U)
    State Farm. Mut. Auto. Ins. Co. v Global + Surgery Ctr., LLCSup Ct, NY County12/29/20232023 NY Slip Op 34543(U)
    Matter of Promenade Nelson Apts., LLC v New + York State Div. of Hous. & Community RenewalSup Ct, NY County12/28/20232023 NY Slip Op 34544(U)
    Matter of Windermere Props. LLC v City of New + YorkSup Ct, NY County12/21/20232023 NY Slip Op 34545(U)
    Dabas v WhyneSup Ct, Kings County12/27/20232023 NY Slip Op 34546(U)
    Matter of New York City Tr. Auth. v Charter + Oak Fire Ins. Co.Sup Ct, NY County12/28/20232023 NY Slip Op 34547(U)
    Roskin v Northern Adult Day Health Care + Ctr.Sup Ct, Kings County12/28/20232023 NY Slip Op 34548(U)
    Koshelev v Mortar Architecture PLLCSup Ct, Kings County12/5/20232023 NY Slip Op 34549(U)
    Clairvil v VemulapalliSup Ct, Kings County12/28/20232023 NY Slip Op 34550(U)
    Graulau v RosenbergSup Ct, Kings County12/19/20232023 NY Slip Op 34551(U)
    Simpson v Success Academy Charter Schs., + Inc.Sup Ct, Kings County12/21/20232023 NY Slip Op 34552(U)
    Cortlandt St. Recovery Corp. v Hellas + Telecommunications II, S.C.A.Sup Ct, NY County12/28/20232023 NY Slip Op 34553(U)
    Pearl St. Co-Invest I, LLC v MapR (ABC) + LLCSup Ct, NY County12/28/20232023 NY Slip Op 34554(U)
    Reveam, Inc. v Taylor Frères Capital Mkts., + LLCSup Ct, NY County12/29/20232023 NY Slip Op 34555(U)
    Kruchten v Eastman Kodak Co.Sup Ct, NY County12/29/20232023 NY Slip Op 34556(U)
    Matter of DavisSur Ct, NY County12/28/20232023 NY Slip Op 34557(U)


    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Cases Posted January 02, 2024
    Title + Court + Date + Slip Op No. +
    People v SandersCrim Ct City NY, Bronx County12/14/20232023 NY Slip Op 51435(U)
    People v GraySup Ct, Kings County12/29/20232023 NY Slip Op 51436(U)
    INK 954 LLC v MannCiv Ct City NY, Queens County12/27/20232023 NY Slip Op 51437(U)
    People v SolomonidisCounty Ct, Genesee County12/29/20232023 NY Slip Op 51438(U)
    People v BarriosCrim Ct City NY, Bronx County1/1/20242024 NY Slip Op 24001
    People v BowmanJust Ct Town Webster, Monroe County1/2/20242024 NY Slip Op 50001(U)
    Velez v LSG 105 W. 28th, LLCSup Ct, NY County12/27/20232023 NY Slip Op 34537(U)
    Servedio v A.O. Smith Water Prods. Co. + Sup Ct, NY County12/27/20232023 NY Slip Op 34538(U)
    Daly v Amchem Prods., Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34539(U)
    Desiena v Aerco Intl. Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34540(U)
    Desiena v Aerco Intl. Inc.Sup Ct, NY County12/27/20232023 NY Slip Op 34541(U)


    + + + +
    +
    + + +
    +
    E-mail the Law
+
+
+
+Reporting Bureau +
    +
    New York State Law Reporting Bureau
    + 17 Lodge St., Albany NY 12207
    + phone: (518) 453-6900
    + fax: (518) 426-1640
    +
    +
    +
    + +
    + +  
    + +  
    + +  
    + +
    + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohio_example.compare.json b/tests/examples/opinions/united_states/ohio_example.compare.json index 2334ce8f9..b4a3acfbb 100644 --- a/tests/examples/opinions/united_states/ohio_example.compare.json +++ b/tests/examples/opinions/united_states/ohio_example.compare.json @@ -1,301 +1,272 @@ [ { - "case_dates": "2015-07-24", - "case_names": "In re Whitt", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2947.pdf", + "case_dates": "2024-04-23", + "case_names": "Vandercar, L.L.C. v. Port of Greater Cincinnati Dev. Auth.", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1501.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2015-1200", - "judges": "", - "citations": "2015-Ohio-2947", - "summaries": "On certified entry of felony conviction.", - "case_name_shorts": "In re Whitt" + "docket_numbers": "2022-1312", + "judges": "Fischer, J.", + "citations": "2024-Ohio-1501", + "parallel_citations": "", + "summaries": "Civil law\u2014Contracts\u2014R.C. 1343.03(A)\u2014R.C. 4582.22(A)\u2014A port authority created under R.C. 4582.22(A) may be held liable for prejudgment interest under R.C. 1343.03(A) absent an agreement by the parties that provides otherwise\u2014Court of appeals' judgment reversed and cause remanded to trial court.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2015-07-23", - "case_names": "State ex rel. Jackson v. Calabrese (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2918.pdf", + "case_dates": "2024-04-18", + "case_names": "State v. Williams", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1433.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-1608", - "judges": "Per Curiam", - "citations": "2015-Ohio-2918", - "summaries": "Mandamus-R.C. 2969.25(C)-Failure to document balance of inmate account for six months preceding filing of petition-Judgment denying writ affirmed.", - "case_name_shorts": "" + "docket_numbers": "2022-1053", + "judges": "Fischer, J.", + "citations": "2024-Ohio-1433", + "parallel_citations": "", + "summaries": "Criminal law\u2014Juvenile law\u2014Stare decisis\u2014State v. Burns reaffirmed based on stare decisis\u2014Under Burns, defendant was properly charged with and convicted of tampering with evidence in adult court, because that charge was rooted in the acts for which defendant was bound over from juvenile court\u2014Court of appeals' judgment reversed and cause remanded for consideration of remaining assignments of error.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2015-07-23", - "case_names": "Ohio Bur. of Workers' Comp. v. McKinley (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2927.pdf", + "case_dates": "2024-04-17", + "case_names": "Ludlow v. Ohio Dept. of Health", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1399.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-0795", - "judges": "", - "citations": "2015-Ohio-2927", - "summaries": "Appeal dismissed as improvidently accepted.", - "case_name_shorts": "" + "docket_numbers": "2022-1391", + "judges": "Fischer, J.", + "citations": "2024-Ohio-1399", + "parallel_citations": "", + "summaries": "Public Records Act\u2014R.C. 149.43(A)(1)(v) does not require public offices to release records when release is \"prohibited by state or federal law,\" and this exception applies to records that contain protected health information, R.C. 3701.17(B)\u2014A decedent's name and address, when combined with information regarding his or her cause of death, falls within definition of \"protected health information,\" R.C. 3701.17(A)(2), because the combined information reveals decedent's identity and past physical-health status\u2014Records that contain a decedent's name and address, when combined with information regarding his or her cause of death, are exempt from disclosure under Public Records Act\u2014Court of appeals' judgment affirmed.", + "case_name_shorts": "Ludlow", + "per_curiam": false }, { - "case_dates": "2015-07-23", - "case_names": "Akron v. Ohio Dept. of Ins. (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2926.pdf", + "case_dates": "2024-04-17", + "case_names": "Disciplinary Counsel v. Alexander", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1438.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-0738", + "docket_numbers": "2023-0977", "judges": "", - "citations": "2015-Ohio-2926", - "summaries": "Appeal dismissed as improvidently accepted.", - "case_name_shorts": "" + "citations": "2024-Ohio-1438", + "parallel_citations": "174 Ohio St.3d 1268", + "summaries": "On application for reinstatement.", + "case_name_shorts": "Alexander", + "per_curiam": false }, { - "case_dates": "2015-07-22", - "case_names": "State ex rel. Reeves v. Chief of Police, Cedar Point Police Dept. (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2909.pdf", + "case_dates": "2024-04-16", + "case_names": "State ex rel. S.Y.C. v. Floyd", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1387.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-1850", - "judges": "Per Curiam", - "citations": "2015-Ohio-2909", - "summaries": "Mandamus-Public records-Affidavit of indigency-Affidavit must be notarized-Complaint must be verified-Denial of writ affirmed.", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-21", - "case_names": "State ex rel. Elkins v. Fais (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2873.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-1663", - "judges": "Per Curiam", - "citations": "2015-Ohio-2873", - "summaries": "Procedendo-An available, though untaken, appeal is an adequate remedy at law that precludes an action in procedendo-Writ denied.", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-16", - "case_names": "Turner v. Dept. of Rehab. & Corr. (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2833.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-1569", - "judges": "Per Curiam", - "citations": "2015-Ohio-2833", - "summaries": "Mandamus-Adequate remedy in the ordinary course of the law-Judgment dismissing petition for writ affirmed.", - "case_name_shorts": "Turner" + "docket_numbers": "2023-1028", + "judges": "", + "citations": "2024-Ohio-1387", + "parallel_citations": "175 Ohio St.3d 155", + "summaries": "Procedendo\u2014Mandamus\u2014Writs sought to compel rulings on motions pending before trial court\u2014Court of appeals' judgment dismissing petition affirmed because petition is moot.", + "case_name_shorts": "Floyd", + "per_curiam": true }, { - "case_dates": "2015-07-16", - "case_names": "Bevins v. Richard (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2832.pdf", + "case_dates": "2024-04-16", + "case_names": "Disciplinary Counsel v. Daniell", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1422.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-1912", - "judges": "Per Curiam", - "citations": "2015-Ohio-2832", - "summaries": "Habeas corpus-Successive petition barred by res judicata-Judgment dismissing petition for writ affirmed.", - "case_name_shorts": "Bevins" + "docket_numbers": "2024-0408", + "judges": "", + "citations": "2024-Ohio-1422", + "parallel_citations": "", + "summaries": "On certification of default.", + "case_name_shorts": "Daniell", + "per_curiam": false }, { - "case_dates": "2015-07-15", - "case_names": "Metamora Elevator Co. v. Fulton Cty. Bd. of Revision (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2807.pdf", + "case_dates": "2024-04-12", + "case_names": "Disciplinary Counsel v. Fannin", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1380.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-0874", - "judges": "O'Donnell, J.", - "citations": "2015-Ohio-2807", - "summaries": "In promulgating R.C. 5701.03, the General Assembly has expressly defined the term \"business fixture\" to include storage bins, and therefore, they are personal property not subject to real property tax.", - "case_name_shorts": "" + "docket_numbers": "2023-1400", + "judges": "", + "citations": "2024-Ohio-1380", + "parallel_citations": "", + "summaries": "On certification of default.", + "case_name_shorts": "Fannin", + "per_curiam": false }, { - "case_dates": "2015-07-15", - "case_names": "Holloman v. Mohr (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2812.pdf", + "case_dates": "2024-04-10", + "case_names": "Makuch v. Makuch", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1305.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-1569", - "judges": "Per Curiam", - "citations": "2015-Ohio-2812", - "summaries": "Habeas corpus-Petition moot once petitioner has been released from incarceration-Judgment dismissing petition for writ affirmed.", - "case_name_shorts": "Holloman" + "docket_numbers": "2023-1212", + "judges": "", + "citations": "2024-Ohio-1305", + "parallel_citations": "174 Ohio St.3d 636", + "summaries": "S.Ct.Prac.R. 403.(A)\u2014Appeal not accepted for review\u2014Memorandum in support of jurisdiction filed on behalf of appellant deemed frivolous\u2014Imposition of sanctions unnecessary because appellant's counsel has previously been declared to be vexatious litigators and appellee was not represented by counsel and did not file documents in this matter.", + "case_name_shorts": "Makuch", + "per_curiam": true }, { - "case_dates": "2015-07-14", - "case_names": "Kuhn v. Kuhn (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2806.pdf", + "case_dates": "2024-04-09", + "case_names": "State ex rel. Mobley v. Noble", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1291.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-0601", + "docket_numbers": "2023-0412", "judges": "", - "citations": "2015-Ohio-2806", - "summaries": "Appeal dismissed as having been improvidently accepted.", - "case_name_shorts": "Kuhn" + "citations": "2024-Ohio-1291", + "parallel_citations": "", + "summaries": "Mandamus\u2014Procedendo\u2014Relator sought extraordinary writ to compel trial-court judge to issue judgment of conviction that constitutes a final, appealable order\u2014Adequate remedy in ordinary course of law\u2014Court of appeals' judgment dismissing complaint affirmed\u2014Motion to declare relator a vexatious litigator denied.", + "case_name_shorts": "Noble", + "per_curiam": true }, { - "case_dates": "2015-07-14", - "case_names": "Brooks v. Kelly (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2805.pdf", + "case_dates": "2024-04-04", + "case_names": "State v. Carter", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1247.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-1606", - "judges": "Per Curiam", - "citations": "2015-Ohio-2805", - "summaries": "Habeas corpus-Res judicata-Court of appeals' granting of summary judgment in favor of warden affirmed.", - "case_name_shorts": "Brooks" + "docket_numbers": "2023-0156", + "judges": "DeWine, J.", + "citations": "2024-Ohio-1247", + "parallel_citations": "174 Ohio St.3d 619", + "summaries": "Criminal law\u2014Sixth Amendment\u2014Right to face-to-face confrontation\u2014Harmless error\u2014Trial court erred in allowing witness to testify by video at trial without making sufficient case-specific findings of necessity, in violation of defendant's right to face-to-face confrontation under Confrontation Clause of Sixth Amendment to United States Constitution\u2014In light of other evidence presented against defendant at trial, confrontation error was harmless\u2014Court of appeals' judgment affirmed.", + "case_name_shorts": "Carter", + "per_curiam": false }, { - "case_dates": "2015-07-13", - "case_names": "In re Resignation of Crosgrove", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2778.pdf", + "case_dates": "2024-04-04", + "case_names": "In re Disqualification of Scott", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1462.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2015-1059", - "judges": "", - "citations": "2015-Ohio-2778", - "summaries": "Attorneys at law-Resignation with disciplinary action pending-Gov.Bar R. VI(7)(C).", - "case_name_shorts": "" + "docket_numbers": "24-AP-033", + "judges": "Kennedy, C.J.", + "citations": "2024-Ohio-1462", + "parallel_citations": "175 Ohio St.3d 1201", + "summaries": "Judges\u2014Affidavits of disqualification\u2014R.C. 2701.031\u2014Standing\u2014Because name of party in the underlying cases is a fictitious name registered and used by affiant, affiant is considered a party to the cases and has standing to file an affidavit of disqualification\u2014Affiant failed to demonstrate bias or prejudice\u2014Disqualification denied.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2015-07-13", - "case_names": "Disciplinary Counsel v. Joseph", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2775.pdf", + "case_dates": "2024-04-03", + "case_names": "McDermott v. Ohio State Univ.", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1227.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2012-1107", + "docket_numbers": "2023-0202", "judges": "", - "citations": "2015-Ohio-2775", - "summaries": "On petition for reinstatement.", - "case_name_shorts": "Joseph" + "citations": "2024-Ohio-1227", + "parallel_citations": "", + "summaries": "Court of appeals' judgment reversed on the authority of Smith v. Ohio State Univ. and cause remanded.", + "case_name_shorts": "McDermott", + "per_curiam": false }, { - "case_dates": "2015-07-13", - "case_names": "Disciplinary Counsel v. Freeman", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2777.pdf", + "case_dates": "2024-03-28", + "case_names": "State ex rel. Townsend v. Gaul", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1128.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-1755", + "docket_numbers": "2023-0862", "judges": "", - "citations": "2015-Ohio-2777", - "summaries": "On order to show cause.", - "case_name_shorts": "Freeman" + "citations": "2024-Ohio-1128", + "parallel_citations": "174 Ohio St.3d 281", + "summaries": "Mandamus\u2014Inmate failed to comply with requirements of R.C. 2969.25(C)\u2014Court of appeals' dismissal of complaint affirmed.", + "case_name_shorts": "Gaul", + "per_curiam": true }, { - "case_dates": "2015-07-13", - "case_names": "Cleveland Metro. Bar Assn. v. Axner", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2776.pdf", + "case_dates": "2024-03-28", + "case_names": "State ex rel. Taylor v. Montgomery Cty. Court of Common Pleas", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1127.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-1745", + "docket_numbers": "2023-0788", "judges": "", - "citations": "2015-Ohio-2776", - "summaries": "On order to show cause.", - "case_name_shorts": "Axner" + "citations": "2024-Ohio-1127", + "parallel_citations": "", + "summaries": "Prohibition\u2014Petition for writ of prohibition failed because appellant had adequate remedy in ordinary course of law and failed to show that trial court had patently and unambiguously lacked jurisdiction over his criminal case\u2014Court of appeals' judgment dismissing petition affirmed.", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2015-07-09", - "case_names": "State ex rel. Smith v. McGee (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2748.pdf", + "case_dates": "2024-03-27", + "case_names": "State v. Jones", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1083.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-1009", - "judges": "Per Curiam", - "citations": "2015-Ohio-2748", - "summaries": "Mandamus-Procedendo-Adequate remedy in the ordinary course of the law-Court of appeals' dismissal of petition for writs affirmed.", - "case_name_shorts": "" + "docket_numbers": "2022-1049", + "judges": "Brunner, J.", + "citations": "2024-Ohio-1083", + "parallel_citations": "", + "summaries": "Criminal law\u2014Sentencing\u2014R.C. 2953.08(G)\u2014R.C. 2929.14(C)(4)\u2014The trial court made the findings necessary to impose consecutive sentences under R.C. 2929.14(C)(4), and those findings were not clearly and convincingly unsupported by the record, R.C. 2953.08(G)(2)\u2014Court of appeals' judgment affirmed.", + "case_name_shorts": "Jones", + "per_curiam": false }, { - "case_dates": "2015-07-08", - "case_names": "Cunningham v. Testa (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2744.pdf", + "case_dates": "2024-03-27", + "case_names": "Disciplinary Counsel v. Taylor", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1082.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-0532", - "judges": "Pfeifer, J.", - "citations": "2015-Ohio-2744", - "summaries": "Taxation-Income-Domicile-R.C. 5747.24-Taxpayer's claim under R.C. 5747.24(B)(1) to be domiciled outside Ohio is not binding on tax commissioner when other statements support an Ohio domicile-Common-law principles for determining domicile still apply-Taxpayer's statement verifying non-Ohio domicile can be false if it is not supported by common law of domicile.", - "case_name_shorts": "Cunningham" - }, - { - "case_dates": "2015-07-07", - "case_names": "Cleveland Metro. Bar Assn. v. Sleibi (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2724.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-1394", - "judges": "O'Neill, J.", - "citations": "2015-Ohio-2724", - "summaries": "Attorneys-Misconduct-Sexual activity with multiple clients-Violations of Prof.Cond.R. 1.8(j) and 8.4(h)-Sex addiction not a recognized mental disability for purposes of mitigation-Two-year suspension with six months stayed on conditions-Probation.", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "In Re Resignation of Lape", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2693.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2015-0919", + "docket_numbers": "2023-0743", "judges": "", - "citations": "2015-Ohio-2693", - "summaries": "Attorneys at law-Resignation with disciplinary action pending-Gov.Bar R. VI(7)(C).", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Ginter v. Auglaize Cty. Bd. of Revision (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2571.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2013-1710", - "judges": "Per Curiam", - "citations": "2015-Ohio-2571", - "summaries": "Taxation-Boards of revision do not have authority to dismiss a valuation complaint for failure to prosecute based on the complainant's failure to attend the scheduled hearing of the board-A board of revision must make a determination of value whenever a complaint properly invokes its jurisdiction.", - "case_name_shorts": "Ginter" + "citations": "2024-Ohio-1082", + "parallel_citations": "", + "summaries": "Attorneys\u2014Misconduct\u2014Violation of Prof.Cond.R. 8.4(c) for failing to provide truthful answers to questions on license application\u2014Conditionally stayed six-month suspension.", + "case_name_shorts": "Taylor", + "per_curiam": true }, { - "case_dates": "2015-07-01", - "case_names": "Stark Cty. Bar Assn. v. Marinelli (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2570.pdf", + "case_dates": "2024-03-26", + "case_names": "State ex rel. Ware v. Galonski", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1064.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-0971", - "judges": "Per Curiam", - "citations": "2015-Ohio-2570", - "summaries": "Attorney misconduct-Violations of the Rules of Professional Conduct, including failing to provide competent representation to clients and failing to act with reasonable diligence in representing clients-Two-year suspension, with one year stayed on conditions.", - "case_name_shorts": "" + "docket_numbers": "2023-0268", + "judges": "", + "citations": "2024-Ohio-1064", + "parallel_citations": "174 Ohio St.3d 517", + "summaries": "Mandamus\u2014Public Records Act\u2014Statutory damages\u2014On remand, court of appeals correctly held that requester was not entitled to statutory damages\u2014Requester failed to prove by clear and convincing evidence that he delivered public-records requests by certified mail\u2014Court of appeals' judgment affirmed.", + "case_name_shorts": "Galonski", + "per_curiam": true }, { - "case_dates": "2015-06-30", - "case_names": "State ex rel. Oldaker v. Indus. Comm. (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2015/2015-Ohio-2569.pdf", + "case_dates": "2024-03-26", + "case_names": "Estate of Tomlinson v. Mega Pool Warehouse, Inc.", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/0/2024/2024-Ohio-1065.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2014-0460", - "judges": "Per Curiam", - "citations": "2015-Ohio-2569", - "summaries": "Workers' Compensation-R.C. 4123.56(B)-Wage-loss compensation-Injured worker unable to return to former position must provide evidence of having made good-faith effort to search for comparably paying suitable employment.", - "case_name_shorts": "" + "docket_numbers": "2023-0230", + "judges": "", + "citations": "2024-Ohio-1065", + "parallel_citations": "174 Ohio St.3d 512", + "summaries": "Civil law\u2014Civ.R. 38\u2014Civil-jury-trial demands\u2014Trial court's local rule did not require each party seeking a jury trial to pay a jury deposit\u2014Under Civ.R. 38(D), a party may not unilaterally withdraw a jury demand\u2014Court of appeals' judgment reversed and cause remanded to trial court.", + "case_name_shorts": "", + "per_curiam": true } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohio_example.html b/tests/examples/opinions/united_states/ohio_example.html index 75dc48ebc..8ecc9239e 100644 --- a/tests/examples/opinions/united_states/ohio_example.html +++ b/tests/examples/opinions/united_states/ohio_example.html @@ -1,131 +1,77 @@ - - - - - +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head><title> Opinion Search - + -
    +
    - - - - + + + +
    - - - + - -
    - - - - - + + + + +
    -
    - - - - - - - - - - -
    Seal of the State of Ohio. Click here to return to the Supreme Court home page.The Supreme Court of Ohio & The Ohio Judicial System. Click here to return to the Supreme Court home page.Line Drawing of the Ohio Judicial Center. Click here to return to the Supreme Court home page.
    Spacer image
    -

    The Supreme Court of Ohio & The Ohio Judicial System

    -
    -
    - +
    + + - -
    -
    - -
    - - -
    +
    + +
    + +
    -
    -
    - - - - +
    + +
    +
    -
    - - - +
    + +
    + - + - - + - - + + + + + + + - - - + - + -
    - Opinion Search Filter Settings
    - Use standard search logic for the full-text search. + Opinion Search Filter Settings
    + Use standard search logic for the Opinion Text Search (full-text search). To search the entire web site click here
    Opinion Text Search: - -    - - What is Opinion Text Search? + + +   + What is Opinion Text Search? +
    Source: - + Source: -   What is a Source? +    + What is a Source? +
    Year Decided: - - Year Decided From: + + + + + + +
    + + Year Decided To: + -   What is Decided? +    + What is Year Decided? + +
    Year Decided Range Warning: + + +
    County: + -   What is Decided? +    + What is County? +
    Case Number: - -   What is Case Number? + + +    + What is Case Number? + +
    Author: - -   What is Decided? + +    + What is Author? + +
    Topics and Issues: - -   What is Decided? + +    + What are Topics and Issues? + +
    - +
    +
    -
    - - - +
    + +
    + - - + - - - - - - -
    WebCite No: - + + -Ohio- - -   What is a Web Cite No.?WebCite and Citation are unique document searches. If a value is entered in the WebCite or Citation field, - all other search filters are ignored. If values are entered in both the WebCite and Citation fields, + +    + What is a Web Cite No.? + + WebCite and Citation are unique document searches. If a value is entered in the WebCite or Citation field, + all other search filters are ignored. If values are entered in both the WebCite and Citation fields, only the WebCite search filter is applied.
    Citation: -    - - What is Citation? + + +    + What is Citation? +
    - +
    +
    - + - + -
    - + - + - This search returned 376 rows. + This search returned 460 rows. - Rows per page:  - - +
    - +
    +
    - - +
    + +
    - - + + -
    12345678
    12345678910
    Case CaptionCase No.Topics and IssuesAuthorCitation / CountyDecidedPostedWebCiteCase CaptionCase No.Topics and IssuesAuthorCitation / CountyDecidedPostedWebCite
    - - 07/30/2015 Case Announcements + + 04/23/2024 Case Announcements -  Motion and procedural rulings.   - 7/30/2015 +  Merit decisions with opinions.   + 4/23/2024 - 7/30/2015 - 2015-Ohio-30212024-Ohio-1539
    - - 07/29/2015 Case Announcements + + Vandercar, L.L.C. v. Port of Greater Cincinnati Dev. Auth. -  Motion and procedural rulings.   - 7/29/2015 + 2022-1312Civil law—Contracts—R.C. 1343.03(A)—R.C. 4582.22(A)—A port authority created under R.C. 4582.22(A) may be held liable for prejudgment interest under R.C. 1343.03(A) absent an agreement by the parties that provides otherwise—Court of appeals’ judgment reversed and cause remanded to trial court.Fischer, J.Slip Opinion No. 2024-Ohio-1501 + 4/23/2024 - 7/29/2015 - 2015-Ohio-30252024-Ohio-1501
    - - 07/28/2015 Case Announcements + + 04/23/2024 Case Announcements #2  Motion and procedural rulings.   - 7/28/2015 + 4/23/2024 - 7/28/2015 - 2015-Ohio-30162024-Ohio-1544
    - - In re Whitt + + 04/22/2024 Case Announcements - 2015-1200On certified entry of felony conviction.   - 7/24/2015 +  Motion and procedural rulings.   + 4/22/2024 - 7/24/2015 - 2015-Ohio-29472024-Ohio-1503
    - - 07/24/2015 Case Announcements + + 04/19/2024 Case Announcements -  Disciplinary cases.   - 7/24/2015 +  Affidavits of disqualification—Motion and procedural rulings.   + 4/19/2024 - 7/24/2015 - 2015-Ohio-29632024-Ohio-1493
    - - 07/24/2015 Case Announcements #2 + + 04/18/2024 Case Announcements -  Motion and procedural rulings.   - 7/24/2015 +  Merit decisions with opinions.   + 4/18/2024 - 7/24/2015 - 2015-Ohio-29642024-Ohio-1459
    - - State ex rel. Jackson v. Calabrese (Slip Opinion) + + State v. Williams - 2014-1608Mandamus-R.C. 2969.25(C)-Failure to document balance of inmate account for six months preceding filing of petition-Judgment denying writ affirmed.Per CuriamSlip Opinion No. 2015-Ohio-2918 - 7/23/2015 + 2022-1053Criminal law—Juvenile law—Stare decisis—State v. Burns reaffirmed based on stare decisis—Under Burns, defendant was properly charged with and convicted of tampering with evidence in adult court, because that charge was rooted in the acts for which defendant was bound over from juvenile court—Court of appeals’ judgment reversed and cause remanded for consideration of remaining assignments of error.Fischer, J.Slip Opinion No. 2024-Ohio-1433 + 4/18/2024 - 7/23/2015 - 2015-Ohio-29182024-Ohio-1433
    - - Akron v. Ohio Dept. of Ins. (Slip Opinion) + + Disciplinary Counsel v. Alexander - 2014-0738Appeal dismissed as improvidently accepted. Slip Opinion No. 2015-Ohio-2926 - 7/23/2015 + 2023-0977On application for reinstatement. 174 Ohio St.3d 1268 + 4/17/2024 - 7/23/2015 - 2015-Ohio-29262024-Ohio-1438
    - - Ohio Bur. of Workers' Comp. v. McKinley (Slip Opinion) + + 04/17/2024 Case Announcements - 2014-0795Appeal dismissed as improvidently accepted. Slip Opinion No. 2015-Ohio-2927 - 7/23/2015 +  Merit decisions with opinions—Motion and procedural rulings—Disciplinary cases—Mediation matters.   + 4/17/2024 - 7/23/2015 - 2015-Ohio-29272024-Ohio-1437
    - - 07/23/2015 Case Announcements + + Ludlow v. Ohio Dept. of Health -  Merit decisions with opinions-Affidavits of disqualification-Motion and procedural rulings-Mediation matters.   - 7/23/2015 + 2022-1391Public Records Act—R.C. 149.43(A)(1)(v) does not require public offices to release records when release is “prohibited by state or federal law,” and this exception applies to records that contain protected health information, R.C. 3701.17(B)—A decedent’s name and address, when combined with information regarding his or her cause of death, falls within definition of “protected health information,” R.C. 3701.17(A)(2), because the combined information reveals decedent’s identity and past physical-health status—Records that contain a decedent’s name and address, when combined with information regarding his or her cause of death, are exempt from disclosure under Public Records Act—Court of appeals’ judgment affirmed.Fischer, J.Slip Opinion No. 2024-Ohio-1399 + 4/17/2024 - 7/23/2015 - 2015-Ohio-29432024-Ohio-1399
    - - State ex rel. Reeves v. Chief of Police, Cedar Point Police Dept. (Slip Opinion) + + 04/16/2024 Case Announcements #2 - 2014-1850Mandamus-Public records-Affidavit of indigency-Affidavit must be notarized-Complaint must be verified-Denial of writ affirmed.Per CuriamSlip Opinion No. 2015-Ohio-2909 - 7/22/2015 +  Merit decisions with opinions—Disciplinary cases.   + 4/16/2024 - 7/22/2015 - 2015-Ohio-29092024-Ohio-1421
    - - 07/22/2015 Case Announcements + + Disciplinary Counsel v. Daniell -  Merit decisions with opinions-Affidavits of disqualification-Merit decisions without opinions-Motion and procedural rulings-Appeals accepted for review-Appeals not accepted for review-Reconsideration of prior decisions.   - 7/22/2015 + 2024-0408On certification of default.   + 4/16/2024 - 7/22/2015 - 2015-Ohio-29112024-Ohio-1422
    - - 07/22/2015 Administrative Actions + + 04/16/2024 Case Announcements -  Administrative actions.   - 7/21/2015 +  Merit decisions without opinions—Motion and procedural rulings—Appeals accepted for review—Appeals not accepted for review—Reconsideration of prior decisions.   + 4/16/2024 - 7/22/2015 - 2015-Ohio-29212024-Ohio-1386
    - - State ex rel. Elkins v. Fais (Slip Opinion) + + State ex rel. S.Y.C. v. Floyd - 2014-1663Procedendo-An available, though untaken, appeal is an adequate remedy at law that precludes an action in procedendo-Writ denied.Per CuriamSlip Opinion No. 2015-Ohio-2873 - 7/21/2015 + 2023-1028Procedendo—Mandamus—Writs sought to compel rulings on motions pending before trial court—Court of appeals’ judgment dismissing petition affirmed because petition is moot.Per Curiam175 Ohio St.3d 155 + 4/16/2024 - 7/21/2015 - 2015-Ohio-28732024-Ohio-1387
    - - 07/21/2015 Case Announcements + + 04/15/2024 Administrative Actions -  Merit decisions with opinions-Affidavits of disqualification-Motion and procedural rulings.   - 7/21/2015 +  Administrative actions.   + 4/15/2024 - 7/21/2015 - 2015-Ohio-29082024-Ohio-1397
    - - 07/21/2015 Case Announcements #2 + + 04/15/2024 Case Announcements -  Motion and procedural rulings.   - 7/21/2015 +  Official versions released.   + 4/15/2024 - 7/21/2015 - 2015-Ohio-29122024-Ohio-1396
    - - 07/20/2015 Case Announcements + + 04/15/2024 Case Announcements #2 -  Official versions released-Motion and procedural rulings.   - 7/20/2015 +  Motion and procedural rulings.   + 4/15/2024 - 7/20/2015 - 2015-Ohio-28832024-Ohio-1423
    - - 07/17/2015 Case Announcements + + 04/12/2024 Case Announcements #2 -  Motion and procedural rulings-Miscellaneous dismissals.   - 7/17/2015 +  Merit decisions without opinions—Motion and procedural rulings—Disciplinary cases.   + 4/12/2024 - 7/17/2015 - 2015-Ohio-28722024-Ohio-1384
    - - 07/16/2015 Case Announcements + + Disciplinary Counsel v. Fannin -  Merit decisions with opinions-Affidavits of disqualification-Disciplinary cases-Miscellaneous dismissals.   - 7/16/2015 + 2023-1400On certification of default.   + 4/12/2024 - 7/16/2015 - 2015-Ohio-28512024-Ohio-1380
    - - Bevins v. Richard (Slip Opinion) + + 04/12/2024 Case Announcements - 2014-1912Habeas corpus-Successive petition barred by res judicata-Judgment dismissing petition for writ affirmed.Per CuriamSlip Opinion No. 2015-Ohio-2832 - 7/16/2015 +  Motion and procedural rulings.   + 4/12/2024 - 7/16/2015 - 2015-Ohio-28322024-Ohio-1381
    - - Turner v. Dept. of Rehab. & Corr. (Slip Opinion) + + 04/12/2024 Case Announcements #3 - 2014-1569Mandamus-Adequate remedy in the ordinary course of the law-Judgment dismissing petition for writ affirmed.Per CuriamSlip Opinion No. 2015-Ohio-2833 - 7/16/2015 +  Motion and procedural rulings.   + 4/12/2024 - 7/16/2015 - 2015-Ohio-28332024-Ohio-1398
    - - Metamora Elevator Co. v. Fulton Cty. Bd. of Revision (Slip Opinion) + + 04/11/2024 Case Announcements #2 - 2014-0874In promulgating R.C. 5701.03, the General Assembly has expressly defined the term "business fixture" to include storage bins, and therefore, they are personal property not subject to real property tax.O'Donnell, J.Slip Opinion No. 2015-Ohio-2807 - 7/15/2015 +  Motion and procedural rulings.   + 4/11/2024 - 7/15/2015 - 2015-Ohio-28072024-Ohio-1356
    - - Holloman v. Mohr (Slip Opinion) + + 04/11/2024 Case Announcements - 2014-1569Habeas corpus-Petition moot once petitioner has been released from incarceration-Judgment dismissing petition for writ affirmed.Per CuriamSlip Opinion No. 2015-Ohio-2812 - 7/15/2015 +  Motion and procedural rulings.   + 4/11/2024 - 7/15/2015 - 2015-Ohio-28122024-Ohio-1355
    - - 07/15/2015 Case Announcements + + 04/10/2024 Case Announcements #2 -  Merit decisions with opinions-Affidavits of disqualification.   - 7/15/2015 +  Motion and procedural rulings.   + 4/10/2024 - 7/15/2015 - 2015-Ohio-28372024-Ohio-1351
    - - 07/14/2015 Case Announcements + + Makuch v. Makuch -  Merit decisions with opinions-Affidavits of disqualification-Motion and procedural rulings.   - 7/14/2015 + 2023-1212S.Ct.Prac.R. 403.(A)—Appeal not accepted for review—Memorandum in support of jurisdiction filed on behalf of appellant deemed frivolous—Imposition of sanctions unnecessary because appellant’s counsel has previously been declared to be vexatious litigators and appellee was not represented by counsel and did not file documents in this matter.Per Curiam174 Ohio St.3d 636 + 4/10/2024 - 7/14/2015 - 2015-Ohio-28312024-Ohio-1305
    - - Brooks v. Kelly (Slip Opinion) + + 04/10/2024 Case Announcements - 2014-1606Habeas corpus-Res judicata-Court of appeals' granting of summary judgment in favor of warden affirmed.Per CuriamSlip Opinion No. 2015-Ohio-2805 - 7/14/2015 +  Merit decisions with opinions—Merit decisions without opinions—Motion and procedural rulings.   + 4/10/2024 - 7/14/2015 - 2015-Ohio-28052024-Ohio-1307
    - - Kuhn v. Kuhn (Slip Opinion) + + 04/09/2024 Case Announcements - 2014-0601Appeal dismissed as having been improvidently accepted. Slip Opinion No. 2015-Ohio-2806 - 7/14/2015 +  Merit decisions with opinions—Motion and procedural rulings.   + 4/9/2024 - 7/14/2015 - 2015-Ohio-28062024-Ohio-1329
    - - Disciplinary Counsel v. Joseph + + State ex rel. Mobley v. Noble - 2012-1107On petition for reinstatement.   - 7/13/2015 + 2023-0412Mandamus—Procedendo—Relator sought extraordinary writ to compel trial-court judge to issue judgment of conviction that constitutes a final, appealable order—Adequate remedy in ordinary course of law—Court of appeals’ judgment dismissing complaint affirmed—Motion to declare relator a vexatious litigator denied.Per CuriamSlip Opinion No. 2024-Ohio-1291 + 4/9/2024 - 7/13/2015 - 2015-Ohio-27752024-Ohio-1291
    - - Cleveland Metro. Bar Assn. v. Axner + + 04/08/2024 Case Announcements - 2014-1745On order to show cause.   - 7/13/2015 +  Affidavits of disqualification—Miscellaneous dismissals.   + 4/8/2024 - 7/13/2015 - 2015-Ohio-27762024-Ohio-1309
    - - Disciplinary Counsel v. Freeman + + 04/05/2024 Case Announcements - 2014-1755On order to show cause.   - 7/13/2015 +  Motion and procedural rulings.   + 4/5/2024 - 7/13/2015 - 2015-Ohio-27772024-Ohio-1287
    - - In re Resignation of Crosgrove + + 04/04/2024 Case Announcements - 2015-1059Attorneys at law-Resignation with disciplinary action pending-Gov.Bar R. VI(7)(C).   - 7/13/2015 +  Merit decisions with opinions—Motion and procedural rulings—Miscellaneous dismissals.   + 4/4/2024 - 7/13/2015 - 2015-Ohio-27782024-Ohio-1263
    - - 07/13/2015 Case Announcements + + In re Disqualification of Scott -  Disciplinary cases.   - 7/13/2015 + 24-AP-033Judges—Affidavits of disqualification—R.C. 2701.031—Standing—Because name of party in the underlying cases is a fictitious name registered and used by affiant, affiant is considered a party to the cases and has standing to file an affidavit of disqualification—Affiant failed to demonstrate bias or prejudice—Disqualification denied.Kennedy, C.J.175 Ohio St.3d 1201 + 4/4/2024 - 7/13/2015 - 2015-Ohio-28042024-Ohio-1462
    - - 07/10/2015 Case Announcements + + State v. Carter -  Motion and procedural rulings.   - 7/10/2015 + 2023-0156Criminal law—Sixth Amendment—Right to face-to-face confrontation—Harmless error—Trial court erred in allowing witness to testify by video at trial without making sufficient case-specific findings of necessity, in violation of defendant’s right to face-to-face confrontation under Confrontation Clause of Sixth Amendment to United States Constitution—In light of other evidence presented against defendant at trial, confrontation error was harmless—Court of appeals’ judgment affirmed.DeWine, J.174 Ohio St.3d 619 + 4/4/2024 - 7/10/2015 - 2015-Ohio-27732024-Ohio-1247
    - - State ex rel. Smith v. McGee (Slip Opinion) + + 04/03/2024 Case Announcements - 2014-1009Mandamus-Procedendo-Adequate remedy in the ordinary course of the law-Court of appeals' dismissal of petition for writs affirmed.Per CuriamSlip Opinion No. 2015-Ohio-2748 - 7/9/2015 +  Merit decisions with opinions.   + 4/3/2024 - 7/9/2015 - 2015-Ohio-27482024-Ohio-1252
    - - 07/09/2015 Case Announcements + + McDermott v. Ohio State Univ. -  Merit decisions with opinions-Motion and procedural rulings-Miscellaneous dismissals.   - 7/9/2015 + 2023-0202Court of appeals’ judgment reversed on the authority of Smith v. Ohio State Univ. and cause remanded. Slip Opinion No. 2024-Ohio-1227 + 4/3/2024 - 7/9/2015 - 2015-Ohio-27552024-Ohio-1227
    - - 07/09/2015 Case Announcements #2 + + 04/02/2024 Administrative Actions -  Motion and procedural rulings.   - 7/9/2015 +  Administrative actions.   + 4/2/2024 - 7/9/2015 - 2015-Ohio-27712024-Ohio-1246
    - - Cunningham v. Testa (Slip Opinion) + + 04/02/2024 Case Announcements - 2014-0532Taxation-Income-Domicile-R.C. 5747.24-Taxpayer's claim under R.C. 5747.24(B)(1) to be domiciled outside Ohio is not binding on tax commissioner when other statements support an Ohio domicile-Common-law principles for determining domicile still apply-Taxpayer's statement verifying non-Ohio domicile can be false if it is not supported by common law of domicile.Pfeifer, J.Slip Opinion No. 2015-Ohio-2744 - 7/8/2015 +  Merit decisions without opinions—Motion and procedural rulings—Appeals accepted for review—Appeals not accepted for review—Reconsideration of prior decisions.   + 4/2/2024 - 7/8/2015 - 2015-Ohio-27442024-Ohio-1228
    - - 07/08/2015 Case Announcements + + 04/01/2024 Case Announcements -  Merit decisions with opinions-Merit decisions without opinions-Motion and procedural rulings-Appeals accepted for review-Appeals not accepted for review-Reconsideration of prior decisions.   - 7/8/2015 +  Official versions released—Motion and procedural rulings.   + 4/1/2024 - 7/8/2015 - 2015-Ohio-27472024-Ohio-1216
    - - Cleveland Metro. Bar Assn. v. Sleibi (Slip Opinion) + + 04/01/2024 Case Announcements #2 - 2014-1394Attorneys-Misconduct-Sexual activity with multiple clients-Violations of Prof.Cond.R. 1.8(j) and 8.4(h)-Sex addiction not a recognized mental disability for purposes of mitigation-Two-year suspension with six months stayed on conditions-Probation.O'Neill, J.Slip Opinion No. 2015-Ohio-2724 - 7/7/2015 +  Disciplinary cases.   + 4/1/2024 - 7/7/2015 - 2015-Ohio-27242024-Ohio-1229
    - - 07/07/2015 Case Announcements + + State ex rel. Taylor v. Montgomery Cty. Court of Common Pleas -  Merit decisions with opinions.   - 7/7/2015 + 2023-0788Prohibition—Petition for writ of prohibition failed because appellant had adequate remedy in ordinary course of law and failed to show that trial court had patently and unambiguously lacked jurisdiction over his criminal case—Court of appeals’ judgment dismissing petition affirmed.Per CuriamSlip Opinion No. 2024-Ohio-1127 + 3/28/2024 - 7/7/2015 - 2015-Ohio-27452024-Ohio-1127
    - - 07/06/2015 Case Announcements + + State ex rel. Townsend v. Gaul -  Official versions released-Motion and procedural rulings.   - 7/6/2015 + 2023-0862Mandamus—Inmate failed to comply with requirements of R.C. 2969.25(C)—Court of appeals’ dismissal of complaint affirmed.Per Curiam174 Ohio St.3d 281 + 3/28/2024 - 7/6/2015 - 2015-Ohio-27192024-Ohio-1128
    - - Ginter v. Auglaize Cty. Bd. of Revision (Slip Opinion) + + 03/28/2024 Case Announcements - 2013-1710Taxation-Boards of revision do not have authority to dismiss a valuation complaint for failure to prosecute based on the complainant's failure to attend the scheduled hearing of the board-A board of revision must make a determination of value whenever a complaint properly invokes its jurisdiction.Per CuriamSlip Opinion No. 2015-Ohio-2571 - 7/2/2015 +  Merit decisions with opinions—Motion and procedural rulings—Disciplinary cases—Miscellaneous dismissals.   + 3/28/2024 - 7/2/2015 - 2015-Ohio-25712024-Ohio-1156
    - - In Re Resignation of Lape + + 03/27/2024 Case Announcements - 2015-0919Attorneys at law-Resignation with disciplinary action pending-Gov.Bar R. VI(7)(C).   - 7/2/2015 +  Merit decisions with opinions—Merit decisions without opinions—Motion and procedural rulings—Appeals accepted for review—Appeals not accepted for review.   + 3/27/2024 - 7/2/2015 - 2015-Ohio-26932024-Ohio-1087
    - - 07/02/2015 Case Announcements + + State v. Jones -  Merit decisions with opinions-Motion and procedural rulings-Disciplinary cases.   - 7/2/2015 + 2022-1049Criminal law—Sentencing—R.C. 2953.08(G)—R.C. 2929.14(C)(4)—The trial court made the findings necessary to impose consecutive sentences under R.C. 2929.14(C)(4), and those findings were not clearly and convincingly unsupported by the record, R.C. 2953.08(G)(2)—Court of appeals’ judgment affirmed.Brunner, J.Slip Opinion No. 2024-Ohio-1083 + 3/27/2024 - 7/2/2015 - 2015-Ohio-26942024-Ohio-1083
    - - 07/02/2015 Case Announcements #2 + + 03/27/2024 Case Announcements #2  Motion and procedural rulings.   - 7/2/2015 + 3/27/2024 - 7/2/2015 - 2015-Ohio-27212024-Ohio-1151
    - - Stark Cty. Bar Assn. v. Marinelli (Slip Opinion) + + Disciplinary Counsel v. Taylor - 2014-0971Attorney misconduct-Violations of the Rules of Professional Conduct, including failing to provide competent representation to clients and failing to act with reasonable diligence in representing clients-Two-year suspension, with one year stayed on conditions.Per CuriamSlip Opinion No. 2015-Ohio-2570 - 7/1/2015 + 2023-0743Attorneys—Misconduct—Violation of Prof.Cond.R. 8.4(c) for failing to provide truthful answers to questions on license application—Conditionally stayed six-month suspension.Per CuriamSlip Opinion No. 2024-Ohio-1082 + 3/27/2024 - 7/1/2015 - 2015-Ohio-25702024-Ohio-1082
    - - 07/01/2015 Case Announcements + + 03/26/2024 Case Announcements #2 -  Merit decisions with opinions-Motion and procedural rulings.   - 7/1/2015 +  Motion and procedural rulings.   + 3/26/2024 - 7/1/2015 - 2015-Ohio-26652024-Ohio-1131
    - - State ex rel. Oldaker v. Indus. Comm. (Slip Opinion) + + State ex rel. Ware v. Galonski - 2014-0460Workers' Compensation-R.C. 4123.56(B)-Wage-loss compensation-Injured worker unable to return to former position must provide evidence of having made good-faith effort to search for comparably paying suitable employment.Per CuriamSlip Opinion No. 2015-Ohio-2569 - 6/30/2015 + 2023-0268Mandamus—Public Records Act—Statutory damages—On remand, court of appeals correctly held that requester was not entitled to statutory damages—Requester failed to prove by clear and convincing evidence that he delivered public-records requests by certified mail—Court of appeals’ judgment affirmed.Per Curiam174 Ohio St.3d 517 + 3/26/2024 - 6/30/2015 - 2015-Ohio-25692024-Ohio-1064
    - - 06/30/2015 Case Announcements + + Estate of Tomlinson v. Mega Pool Warehouse, Inc. -  Merit decisions with opinions-Mediation matters.   - 6/30/2015 + 2023-0230Civil law—Civ.R. 38—Civil-jury-trial demands—Trial court’s local rule did not require each party seeking a jury trial to pay a jury deposit—Under Civ.R. 38(D), a party may not unilaterally withdraw a jury demand—Court of appeals’ judgment reversed and cause remanded to trial court.Per Curiam174 Ohio St.3d 512 + 3/26/2024 - 6/30/2015 - 2015-Ohio-25832024-Ohio-1065
    - - 06/29/2015 Case Announcements + + 03/26/2024 Case Announcements -  Motion and procedural rulings-Miscellaneous dismissals.   - 6/29/2015 +  Merit decisions with opinions—Motion and procedural rulings—Miscellaneous dismissals.   + 3/26/2024 - 6/29/2015 - 2015-Ohio-25672024-Ohio-1125
    - - + + -
    12345678
    12345678910
    - + - + - -
    +
    +
    +
    + - - + + - - - - + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohio_example_2.compare.json b/tests/examples/opinions/united_states/ohio_example_2.compare.json deleted file mode 100644 index dbbd9c2cb..000000000 --- a/tests/examples/opinions/united_states/ohio_example_2.compare.json +++ /dev/null @@ -1,67 +0,0 @@ -[ - { - "case_dates": "2017-05-11", - "case_names": "State v. Polk (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2017/2017-Ohio-2735.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2016-0271", - "judges": "Kennedy, J.", - "citations": "2017-Ohio-2735", - "summaries": "Fourth Amendment-Search and seizure-High school's protocol requiring searches of unattended book bags furthers compelling governmental interest in protecting public-school students from physical harm-School employees' warrantless search of unattended book bag pursuant to protocol was limited to furthering compelling governmental interest and was reasonable-Court of appeals' judgment affirming trial court's grant of suppression motion reversed and cause remanded.", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-11", - "case_names": "Columbus Ctiy Schools Bd. of Edn. v. Franklin Cty. Bd. of Revision (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2017/2017-Ohio-2734.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2014-0807", - "judges": "Per Curiam", - "citations": "2017-Ohio-2734", - "summaries": "Taxation-Real-property valuation-Valuation of government-subsidized residential properties-Board of Tax Appeals' decision reversed.", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-10", - "case_names": "Ohio State Bar Assn. v. Jacob (Slip Opinion)", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2017/2017-Ohio-2733.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2016-1488", - "judges": "Per Curiam", - "citations": "2017-Ohio-2733", - "summaries": "Attorneys-Judges-Misconduct--Conviction of multiple misdemeanors, including solicitation and falsification--Two-year suspension with second year stayed on condition.", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-10", - "case_names": "In re Resignation of Eynon", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2017/2017-Ohio-2742.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2017-0425", - "judges": "", - "citations": "2017-Ohio-2742", - "summaries": "Attorneys at law-Resignation with disciplinary action pending-Gov.Bar R. VI(11)(C).", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-10", - "case_names": "Disciplinary Counsel v. Lech", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/0/2017/2017-Ohio-2737.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2017-0359", - "judges": "", - "citations": "2017-Ohio-2737", - "summaries": "On certified order of the United States Patent and Trademark Office.", - "case_name_shorts": "Lech" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohio_example_2.html b/tests/examples/opinions/united_states/ohio_example_2.html deleted file mode 100644 index 4d87f9cf8..000000000 --- a/tests/examples/opinions/united_states/ohio_example_2.html +++ /dev/null @@ -1,629 +0,0 @@ - - - - Opinion Search - - - - - -
    -
    - - - - -
    - - - - - - - - -
    - - - - - - -
    -
    - - - - - - - - - - -
    Seal of the State of Ohio. Click here to return to the Supreme Court home page.The Supreme Court of Ohio & The Ohio Judicial System. Click here to return to the Supreme Court home page.Line Drawing of the Ohio Judicial Center. Click here to return to the Supreme Court home page.
    Spacer image
    -

    The Supreme Court of Ohio & The Ohio Judicial System

    - -
    - -
    - - -
    -
    -
    - - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Opinion Search Filter Settings
    - Use standard search logic for the Opinion Text Search (full-text search). To search the entire web site click here -
    Opinion Text Search: - - -   - What is Opinion Text Search? - -
    Search Truncation Warning: - - -
    Source: - -    - What is a Source? - -
    Year Decided From: - - - - - - -
    - - Year Decided To: - -    - What is Year Decided? - -
    -
    Year Decided Range Warning: - - -
    County: - - -    - What is County? - -
    Case Number: - - -    - What is Case Number? - - -
    Author: - - -    - What is Author? - -
    Topics and Issues: - -    - What are Topics and Issues? - -
    - -
    -
    - - - - - - - - - - - - -
    WebCite No: - - -Ohio- - -    - What is a Web Cite No.? - - WebCite and Citation are unique document searches. If a value is entered in the WebCite or Citation field, - all other search filters are ignored. If values are entered in both the WebCite and Citation fields, - only the WebCite search filter is applied. -
    Citation: - - -    - What is Citation? - -
    - -
    -
    -
    - - - - - - - - -
    - - - - - This search returned 163 rows. - - Rows per page:  - -
    - -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    12345678910...>>
    Case CaptionCase No.Topics and IssuesAuthorCitation / CountyDecidedPostedWebCite
    - - - 05/12/2017 Case Announcements - - -  Motion and procedural rulings.   - 5/12/2017 - - 5/12/2017 - 2017-Ohio-2777
    - - - Columbus Ctiy Schools Bd. of Edn. v. Franklin Cty. Bd. of Revision (Slip Opinion) - - - 2014-0807Taxation-Real-property valuation-Valuation of government-subsidized residential properties-Board of Tax Appeals' decision reversed.Per CuriamSlip Opinion No. 2017-Ohio-2734 - 5/11/2017 - - 5/11/2017 - 2017-Ohio-2734
    - - - State v. Polk (Slip Opinion) - - - 2016-0271Fourth Amendment-Search and seizure-High school's protocol requiring searches of unattended book bags furthers compelling governmental interest in protecting public-school students from physical harm-School employees' warrantless search of unattended book bag pursuant to protocol was limited to furthering compelling governmental interest and was reasonable-Court of appeals' judgment affirming trial court's grant of suppression motion reversed and cause remanded.Kennedy, J.Slip Opinion No. 2017-Ohio-2735 - 5/11/2017 - - 5/11/2017 - 2017-Ohio-2735
    - - - 05/11/2017 Case Announcements - - -  Merit decisions with opinions-Miscellaneous dismissals.   - 5/11/2017 - - 5/11/2017 - 2017-Ohio-2748
    - - - Ohio State Bar Assn. v. Jacob (Slip Opinion) - - - 2016-1488Attorneys-Judges-Misconduct--Conviction of multiple misdemeanors, including solicitation and falsification--Two-year suspension with second year stayed on condition.Per CuriamSlip Opinion No. 2017-Ohio-2733 - 5/10/2017 - - 5/10/2017 - 2017-Ohio-2733
    - - - Disciplinary Counsel v. Lech - - - 2017-0359On certified order of the United States Patent and Trademark Office.   - 5/10/2017 - - 5/10/2017 - 2017-Ohio-2737
    - - - In re Resignation of Eynon - - - 2017-0425Attorneys at law-Resignation with disciplinary action pending-Gov.Bar R. VI(11)(C).   - 5/10/2017 - - 5/10/2017 - 2017-Ohio-2742
    - - - 05/10/2017 Case Announcements - - -  Merit decisions with opinions-Motion and procedural rulings-Disciplinary cases.   - 5/10/2017 - - 5/10/2017 - 2017-Ohio-2745
    - - - 05/09/2017 Case Announcements - - -  Miscellaneous dismissals.   - 5/9/2017 - - 5/9/2017 - 2017-Ohio-2730
    - - - 05/08/2017 Case Announcements - - -  Official versions released.   - 5/8/2017 - - 5/8/2017 - 2017-Ohio-2688
    - - - -
    12345678910...>>
    -
    -
    - -
    -
    -
    - -
    - - - - -
    - - diff --git a/tests/examples/opinions/united_states/ohioctapp_10_example.compare.json b/tests/examples/opinions/united_states/ohioctapp_10_example.compare.json index 69cac3f9d..2e26b040d 100644 --- a/tests/examples/opinions/united_states/ohioctapp_10_example.compare.json +++ b/tests/examples/opinions/united_states/ohioctapp_10_example.compare.json @@ -8,9 +8,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-322 & 20AP-324", "judges": "Klatt", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4531", "summaries": "Trial court did not abuse its discretion in finding that appellant failed to meet her burden of establishing that she filed her Civ.R. 60(B) motion within a reasonable time after default judgment was entered against her. Appellant's explanation for the untimeliness of her motion offered at the hearing before the trial court was unreviewable on appeal because appellant failed to file a transcript of the hearing.", - "case_name_shorts": "Yaklevich" + "case_name_shorts": "Yaklevich", + "per_curiam": false }, { "case_dates": "2021-12-23", @@ -21,9 +23,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-541", "judges": "Luper Schuster", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4532", "summaries": "The trial court did not abuse its discretion in admitting Sherman's letter into evidence, the trial court did not err in denying Sherman's Crim.R. 29 motion for acquittal, and the manifest weight of the evidence supports Sherman's convictions of attempted burglary, aggravated arson, and menacing by stalking.", - "case_name_shorts": "Sherman" + "case_name_shorts": "Sherman", + "per_curiam": false }, { "case_dates": "2021-12-23", @@ -34,9 +38,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-320", "judges": "Luper Schuster", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4534", "summaries": "The trial court did not err in denying appellant's post-sentence motion to withdraw his guilty plea pursuant to Crim.R. 32.1, as it reasonably concluded that appellant failed to demonstrate the existence of a manifest injustice. Judgment affirmed.", - "case_name_shorts": "Hughes" + "case_name_shorts": "Hughes", + "per_curiam": false }, { "case_dates": "2021-12-23", @@ -47,9 +53,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-265", "judges": "Luper Schuster", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4533", "summaries": "The trial court did not abuse its discretion in denying Hawk's successive motion for leave to file a delayed motion for new trial.", - "case_name_shorts": "Hawk" + "case_name_shorts": "Hawk", + "per_curiam": false }, { "case_dates": "2021-12-23", @@ -60,9 +68,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-207", "judges": "Mentel", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4530", "summaries": "The trial court did not err in finding that the Maioranas' claims were not barred by the expiration of the statute of limitations as their motion complied with the requirements of Civ.R. 15(C). The trial court did not err in finding that Mr. Maiorana had not assumed the risk of injury because he was on the sideline of the field during a football game as it was not a foreseeable or customary risk of his profession for the camera cart operator to fail to signal or identify if anyone was in his line of travel. The trial court did not abuse its discretion in refusing to allow jury instructions or interrogatories as to apportioning fault to non-parties. The trial court did not abuse its discretion permitting the use of an exhibit produced after the discovery deadline and permitting the jury to resolve the amount of lost wages. The trial court did not err in awarding video deposition and transcript expenses as costs. The trial court did not abuse its discretion in denying the Maioranas' motion for prejudgment interest without first allowing them an opportunity to conduct discovery.", - "case_name_shorts": "Maiorana" + "case_name_shorts": "Maiorana", + "per_curiam": false }, { "case_dates": "2021-12-21", @@ -73,9 +83,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-352", "judges": "Brown", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4491", "summaries": "As the trial court lacked jurisdiction to resentence appellant on Counts 1 and 3 while an appeal concerning those counts was pending, the portion of the court's order resentencing appellant on Counts 1 and 3 was void. The trial court retained jurisdiction to revoke appellant's judicial release community control on other counts, and did not err in revoking appellant's judicial release community control due to appellant's failure to pay restitution, as evidence demonstrated that appellant willfully or intentionally failed to pay restitution by not making a bona fide effort to acquire the resources to do so. As the trial court orignally sentened appellant to serve the community control term on Counts 1 and 3 consecutive to the prison term on the remaining counts, appellant's sentence to community control would begin following his release from prison. Judgment affirmed in part, reversed in part, case remanded.", - "case_name_shorts": "Thompson" + "case_name_shorts": "Thompson", + "per_curiam": false }, { "case_dates": "2021-12-21", @@ -86,9 +98,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-355", "judges": "Mentel", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4492", "summaries": "The trial court did not abuse its discretion or commit plain error, depending on whether the particular evidence discussed in the decision was preserved on appeal, in the admission of other acts or hearsay evidence. The trial court did not abuse its discretion in precluding appellant from asking the victim of purported claims of prior false allegations as appellant failed to demonstrate an adequate basis for the argument. The trial court did not err in allowing testimony of alleged vouching for the victim by the treating physician as the record indicates the physician's testimony did not constitute improper vouching. The trial court did not abuse its discretion in instructing the jury that a witness was provided information about other witnesses' testimony during the trial as the trial court reasonably concluded there was a violation of the separation order under Evid.R. 615. The trial court did not err in excluding records from Franklin County Children Services and National Youth Advocate Program. The trial court did not err in failing to inquire into appellant's request to represent himself at trial as the record indicates that appellant never properly invoked the right to self-representation. Claim of ineffective assistance of trial counsel was not meritorious because appellant failed to meet his burden of showing prejudice pursuant to Strickland v. Washington, 466 U.S. 668 (1984). The jury verdicts convicting appellant of rape and kidnapping were supported by sufficient evidence and were not against the manifest weight of the evidence. Judgment affirmed.", - "case_name_shorts": "C.D.S." + "case_name_shorts": "C.D.S.", + "per_curiam": false }, { "case_dates": "2021-12-21", @@ -99,9 +113,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-589", "judges": "Mentel", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4497", "summaries": "Appellant's assignment of error that the trial court erred in denying her right to be present at the sentencing and restitution hearing is moot as appellant fully participated in the proceeding. The trial court did not abuse its discretion in denying appellant's motion for blood testing pursuant to R.C. 2907.27. The trial court erred in failing to address appellant's argument that she was entitled to a blood test of the defendant under Marsy's Law. Judgment affirmed in part and reversed in part. Case remanded for further proceedings consistent with law and this decision.", - "case_name_shorts": "Beach" + "case_name_shorts": "Beach", + "per_curiam": false }, { "case_dates": "2021-12-21", @@ -112,9 +128,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-473", "judges": "Brown", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4495", "summaries": "The trial court did not err by retaining jurisdiction over defendent and ordering his committment to a treatment facility. Even assuming the rules of evidence applied at the R.C. 2945.39(A)(2) hearing, the trial court properly admitted the video recording of defendant's uncle's interview with police as a recorded recollection under Evid.R. 803(5). Judgment affirmed.", - "case_name_shorts": "Adbuleh" + "case_name_shorts": "Adbuleh", + "per_curiam": false }, { "case_dates": "2021-12-21", @@ -125,9 +143,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-386", "judges": "Dorrian", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4494", "summaries": "Limited writ of mandamus granted to vacate Industrial Commission denial of death benefits. The commission failed to give effect to the plain terms of the statute and failed to properly construe the term \"member of the family\" under R.C. 4123.59(D). On remand, the commission shall consider the evidence and determine, consistent with law and this decision, whether the claimant was a \"member of the family\" and if so the extent of dependency, in whole or in part. Objections to the magistrate's decision sustained. Limited writ granted.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-21", @@ -138,9 +158,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19AP-882", "judges": "Nelson", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4490", "summaries": "The BWC did not adduce evidence to reflect that the company exercises control over the manner or means by which the direct service providers with whom it contracts do their jobs. The BWC abused its discretion in not designating these providers as independent contractors (consistent with their classification when retained by the state itself and for unemployment compensation purposes). Objections to magistrate's decision sustained in part, and writ of mandamus granted.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-21", @@ -151,9 +173,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-382", "judges": "Nelson", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4493", "summaries": "Where an earlier judgment based on alleged fraud on the court had been reversed on appeal, that earlier finding of fraud did not bind the trial court on remand. The trial court's thorough decision in this post-divorce matter is affirmed. Judgment affirmed", - "case_name_shorts": "Roubanes" + "case_name_shorts": "Roubanes", + "per_curiam": false }, { "case_dates": "2021-12-21", @@ -164,9 +188,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-477", "judges": "Brown", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4496", - "summaries": "Judgment of Court of Claims finding in favor of appellee on appellants' claims for medical negligence and loss of consortium was not against the manifest weight of the evidence judgment affirmed.", - "case_name_shorts": "Gysegem" + "summaries": "Judgment of Court of Claims finding in favor of appellee on appellants' claims for medical negligence and loss of consortium was not against the manifest weight of the evidence; judgment affirmed.", + "case_name_shorts": "Gysegem", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -177,9 +203,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-18", "judges": "Dorrian", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4457", "summaries": "The trial court did not err in granting summary judgment in favor of the Ohio Department of Taxation and against appellant on appellant's claim pursuant to R.C. 5703.54(A)(1) that the auditor frivolously disregarded R.C. Chapter 5739 or a rule adopted thereunder. Judgment affirmed.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -190,9 +218,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-304 & 21AP-305", "judges": "Jamison", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4462", "summaries": "The trial court did not err in authorizing the involuntary administration of medication to appellant when he refused treatment. The impact of medical side effects on appellant was properly considered by the trial court. Judgment affirmed.", - "case_name_shorts": "Sowards" + "case_name_shorts": "Sowards", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -203,9 +233,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-27", "judges": "Mentel", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4458", "summaries": "The trial court erred in granting offender's application to seal a record of conviction as the applicant had not fully paid restitution and consequently was not an eligible offender under R.C. 2953.32(A). Judgment reversed and remanded.", - "case_name_shorts": "S.R." + "case_name_shorts": "S.R.", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -216,9 +248,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19AP-666", "judges": "Hess", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4451", "summaries": "Other-acts evidence, Evid.R. 404(B), unfair prejudice, Evid.R. 403(A), surveillance, sufficiency of the evidence, manifest weight of the evidence, R.C. 2925.11(A), constructive possession", - "case_name_shorts": "Love" + "case_name_shorts": "Love", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -229,9 +263,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-163", "judges": "Luper Schuster", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4459", "summaries": "Relator is not entitled to the requested writ of mandamus because he is unable to demonstrate a clear legal right to an earlier date for his next parole eligibility hearing.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -242,9 +278,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-239", "judges": "Klatt", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4455", "summaries": "The trial court erred in granting judgment on the pleadings with regard to plaintiff's claims for promissory estoppel and declaratory judgment. The trial court did not err in granting judgment on the pleadings with regard to plaintiff's request for damages in the form of bid-preparation costs.", - "case_name_shorts": "Gahanna" + "case_name_shorts": "Gahanna", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -255,9 +293,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-506", "judges": "Brown", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4456", "summaries": "Trial court did not abuse its discretion in denying appellant's motion for visitation/companionship rights with a minor child under R.C. 3109.051.", - "case_name_shorts": "In re Flynn" + "case_name_shorts": "In re Flynn", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -268,9 +308,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-349", "judges": "Dorrian", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4464", "summaries": "The court of claims did not err in applying the two year statute of limitations set forth in R.C. 2743.16(A) to dismiss pursuant to Civ. R. 12(B)(6) claims of employment discrimination, harassment and retaliation made pursuant to R.C. 4112.02 against the department of rehabilitation and corrections. Assignment of error overruled. Judgment affirmed.", - "case_name_shorts": "Hostacky" + "case_name_shorts": "Hostacky", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -281,9 +323,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-125", "judges": "Mentel", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4454", "summaries": "Trial court did not err in granting appellee's R.C. 2323.51(B) motion where counsel failed to appear for the hearing because, even if they did not receive actual notice, counsel had constructive notice sufficient to satisfy due process based on the entry of the hearing date on the docket. Judgment affirmed.", - "case_name_shorts": "Greenhouse" + "case_name_shorts": "Greenhouse", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -294,9 +338,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-252", "judges": "Luper Schuster", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4460", "summaries": "The trial court did not err in granting summary judgment in favor of appellee as to appellants' premises liability and loss of consortium claims. Appellants presented no evidence that appellee breached its duty to maintain the premises in a reasonably safe condition. Judgment affirmed.", - "case_name_shorts": "Canfield" + "case_name_shorts": "Canfield", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -307,9 +353,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-282", "judges": "Dorrian", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4461", "summaries": "Appellants claims for quiet title and regarding the deed conveying ownership were barred by statutes of limitations, and therefore the trial court did not err in granting summary judgment in favor of appellee. The trial court did not abuse its discretion in denying appellant's Civ.R. 56(F) motion. Assignments of error overruled. Judgment affirmed.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-14", @@ -320,9 +368,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-445", "judges": "Beatty Blunt", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4390", "summaries": "Under R.C. 119.12(N), courts of appeal lack jurisdiction over an administrative appeal by an agency unless the appeal is taken on a question of law relating to the constitutionality, construction, or interpretation of a statute or rule. Appeal by the Department of Commerce Division of Securities challenged a factual determination made by the trial court and the court of appeals did not have jurisdiction to consider it. Appeal dismissed.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-14", @@ -333,9 +383,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-511", "judges": "Brown, J.", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4391", "summaries": "Trial court did not err in its determination that some evidence supported the decision of the State Teachers Retirement System Board to deny appellant's application for disability benefits, and therefore trial court did not abuse its discretion in denying appellant's request for a writ of mandamus.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-14", @@ -346,9 +398,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-330", "judges": "Sadler", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4389", "summaries": "Because respondent-appellee, Ohio Public Employees Retirement System (\"OPERS\") is statutorily required to recoup overpayments arising from relator-appellant's son enrollment in the incorrect OPERS health care plan, the trial court did not abuse its discretion in denying relator-appellant's request for a writ of mandamus ordering OPERS to stop withholding payments from her retirement account and to refund any monies withheld. Judgment affirmed.", - "case_name_shorts": "Ruf" + "case_name_shorts": "Ruf", + "per_curiam": false }, { "case_dates": "2021-12-14", @@ -359,9 +413,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-535", "judges": "Beatty Blunt", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4392", "summaries": "It was not erroneous for the trial court to consider appellees' motions to dismiss prior to appellant's motion for default judgment, and decision granting appellees' motions to dismiss pursuant to Civ.R. 12(B)(6) was not error where appellant's complaint failed to state a claim upon which relief could be granted. Judgment affirmed.", - "case_name_shorts": "Colvin" + "case_name_shorts": "Colvin", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -372,9 +428,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-97", "judges": "Luper Schuster", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4327", "summaries": "The trial court did not err in interpreting the contract between Victoria's Secret and Cintas, and the manifest weight of the evidence supports the trial court's verdict that Victoria's Secret did not demonstrate that Cintas breached the contract.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -385,9 +443,11 @@ "date_filed_is_approximate": false, "docket_numbers": "17AP-588", "judges": "Luper Schuster", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4321", "summaries": "On remand from the Supreme Court of Ohio, to the extent we can consider his argument, sufficient evidence supported Walker's conviction of engaging in a pattern of corrupt activity, the prosecutor's statements did not deprive Walker of a fair trial, Walker did not receive the ineffective assistance of counsel, and the trial court did not err in declining to merge Walker's conviction of engaging in a pattern of corrupt activity with the underlying predicate offenses.", - "case_name_shorts": "Walker" + "case_name_shorts": "Walker", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -398,9 +458,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-50", "judges": "Mentel", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4326", "summaries": "Appellant's conviction for attempted burglary in violation of R.C. 2923.02/2911.12, a felony of the third degree was supported by sufficient evidence and not against the manifest weight of the evidence. Judgment affirmed.", - "case_name_shorts": "Paro" + "case_name_shorts": "Paro", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -411,9 +473,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-120", "judges": "Brown", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4323", "summaries": "Juvenile court did not abuse its discretion in concluding appellant was not amendable to care or rehabilitation within the juvenile system and that the safety of the community required that he be subject to adult sanctions.", - "case_name_shorts": "L.A.B." + "case_name_shorts": "L.A.B.", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -424,9 +488,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-132", "judges": "Sadler", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4328", "summaries": "Trial court did not err in finding res judicata barred appellant's latest, successive motion to correct his sentence that raised the same or similar merger argument resolved by a prior final judgment. Judgment affirmed.", - "case_name_shorts": "Hawkins" + "case_name_shorts": "Hawkins", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -437,9 +503,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-408", "judges": "Brown", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4325", - "summaries": "As appellant's motion to vacate void judgment was an untimely and successive petition for postconviction relief which did not satisfy R.C. 2953.23(A), the trial court properly determined that it lacked jurisdiction to entertain the motion. However, the trial court should have dismissed the motion for lack of jurisdiction rather than deny the motion. State's motion to dismiss the appeal lacked merit, as the trial court's docket failed to demonstrate compliance with Civ.R. 58(B) and appellant's notice of appeal was therefore timely pursuant to App.R. 4(A)(3). Motion to dismiss appeal denied judgment modified.", - "case_name_shorts": "Arroyo-Garcia" + "summaries": "As appellant's motion to vacate void judgment was an untimely and successive petition for postconviction relief which did not satisfy R.C. 2953.23(A), the trial court properly determined that it lacked jurisdiction to entertain the motion. However, the trial court should have dismissed the motion for lack of jurisdiction rather than deny the motion. State's motion to dismiss the appeal lacked merit, as the trial court's docket failed to demonstrate compliance with Civ.R. 58(B) and appellant's notice of appeal was therefore timely pursuant to App.R. 4(A)(3). Motion to dismiss appeal denied; judgment modified.", + "case_name_shorts": "Arroyo-Garcia", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -450,9 +518,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19AP-771", "judges": "Sadler", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4322", "summaries": "Under former R.C. 2901.05 and R.C. 2901.09, the state met its burden in disproving appellant acted in self-defense in shooting and killing an unarmed man in appellant's yard. Appellant's challenge to the jury instructions lacked merit and assertion of prosecutorial misconduct did not warrant reversal based on the overwhelming evidence in favor of convicting appellant. Judgment affirmed.", - "case_name_shorts": "Angel" + "case_name_shorts": "Angel", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -463,9 +533,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-396", "judges": "Dorrian", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4324", "summaries": "Trial court erred in granting summary judgment in foreclosure action where genuine issue of material fact remained for trial on amount advanced for property taxes and applicable interest rate on the note.", - "case_name_shorts": "Humphreys" + "case_name_shorts": "Humphreys", + "per_curiam": false }, { "case_dates": "2021-12-07", @@ -476,9 +548,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-81", "judges": "Brown", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4277", "summaries": "Trial court did not err in overruling appellant's Crim.R. 29 motion for judgment of acquittal, and appellant's conviction for sexual battery was not against the manifest weight of the evidence.", - "case_name_shorts": "Perpignand" + "case_name_shorts": "Perpignand", + "per_curiam": false }, { "case_dates": "2021-12-07", @@ -489,9 +563,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-482", "judges": "Jamison", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4278", "summaries": "Appellant, convicted of murder in 2014, appealed the trial court's denial of a 2020 motion to vacate void sentence. Trial court considered motion to vacate as a motion for post-conviction relief, and the only challenge to a voidable sentence is on direct appeal. Res judicata applies. Judgment affirmed.", - "case_name_shorts": "Hobbs" + "case_name_shorts": "Hobbs", + "per_curiam": false }, { "case_dates": "2021-12-07", @@ -502,9 +578,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-167", "judges": "Jamison", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4280", "summaries": "The magistrate properly determined that relator is not entitled to a writ of procedendo where respondent has performed the act that relator sought to compel. Motion to dismiss granted.", - "case_name_shorts": "Cocroft" + "case_name_shorts": "Cocroft", + "per_curiam": false }, { "case_dates": "2021-12-07", @@ -515,9 +593,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-507", "judges": "Jamison", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4279", "summaries": "Relator appeals a magistrate's decision denying a writ of mandamus requesting State Teachers Retirement System of Ohio (\"STRS\") to vacate a decision denying relator's disability benefits. Relator did not file objections. Medical reports in the record constitutes some evidence upon which board could deny relator's disability application. Writ of mandamus denied.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-07", @@ -528,9 +608,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-326", "judges": "Jamison", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4281", "summaries": "Appellant filed an appeal from an administrative determination. Pursuant to R.C. 2743.10(D), no further appeal may be taken from that judgment. Appeal dismissed.", - "case_name_shorts": "Harris" + "case_name_shorts": "Harris", + "per_curiam": false }, { "case_dates": "2021-12-02", @@ -541,9 +623,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-485", "judges": "Dorrian", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4222", "summaries": "The trial court erred when it revoked probation for failure to pay restitution and imposed a prison sentence as it did not make findings consistent with Bearden that either (1) the probationer failed to pay restitution willfully or intentionally by not making a bona fide effort, or (2) despite the probationer's bona fide efforts, an alternative means of punishment would not be adequate to meet the State's interests in punishment and deterrence. Assignment of error sustained. Judgment reversed and cause remanded.", - "case_name_shorts": "Conde" + "case_name_shorts": "Conde", + "per_curiam": false }, { "case_dates": "2021-12-02", @@ -554,9 +638,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-368", "judges": "Dorrian", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4221", "summaries": "Relator requests writ ordering commission to vacate order terminating TTD compensation. Magistrate recommends granting writ. Mangistrate's decision approved and adopted by the court as its own. Writ granted.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-02", @@ -567,9 +653,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-228", "judges": "Dorrian", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4220", - "summaries": "The trial court's finding of financial misconduct in part is not supported by competent, credible evidence however, on remand the court must consider whether the proceeds of the sale of the Florida property were spent on marital or separate property. The trial court abused its discretion when it did not sufficiently comply with the requirements of R.C. 3105.171(C)(1) when determining the division of marital property and did not provide written findings to support its distribution of marital property pursuant to R.C. 3105.171(F). The trial court did not abuse its discretion in determining that appellant gifted artwork to appellee. Assignment of error overruled in part and sustained in part. Judgment affirmed in part and reversed in part.", - "case_name_shorts": "Kowalkowski-Tippett" + "summaries": "The trial court's finding of financial misconduct in part is not supported by competent, credible evidence; however, on remand the court must consider whether the proceeds of the sale of the Florida property were spent on marital or separate property. The trial court abused its discretion when it did not sufficiently comply with the requirements of R.C. 3105.171(C)(1) when determining the division of marital property and did not provide written findings to support its distribution of marital property pursuant to R.C. 3105.171(F). The trial court did not abuse its discretion in determining that appellant gifted artwork to appellee. Assignment of error overruled in part and sustained in part. Judgment affirmed in part and reversed in part.", + "case_name_shorts": "Kowalkowski-Tippett", + "per_curiam": false }, { "case_dates": "2021-11-30", @@ -580,9 +668,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-24", "judges": "Beatty Blunt", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4195", "summaries": "In this appropriation proceeding, the record does not contain any evidence to support the conclusion that the parties mutually agreed that \"damages\" meant expectation damages versus damages to the residue and further shows that the parties disagreed on what \"damages\" meant. Because there is no evidence of a meeting of the minds on what the parties meant by \"damages\", the trial court erred by finding there was an enforceable settlement agreement. Agreed judgment entry vacated, judgment entry granting motion to enforce agreed judgment entry on settlement reversed, and cause remanded for further proceedings.", - "case_name_shorts": "Wray" + "case_name_shorts": "Wray", + "per_curiam": false }, { "case_dates": "2021-11-30", @@ -592,10 +682,12 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20AP-480", - "judges": "Per Curiam", + "judges": "", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4194", "summaries": "The trial court did not err in finding appellant incompetent to stand trial or by granting a petition for involuntary administration of medication. Judgment affirmed.", - "case_name_shorts": "Lanier" + "case_name_shorts": "Lanier", + "per_curiam": true }, { "case_dates": "2021-11-30", @@ -606,9 +698,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19AP-587", "judges": "Beatty Blunt", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4193", "summaries": "Appellant's convictions and sentence for murder and attempted murder affirmed. Juvenile bindover statute is constitutional, and appellant did not establish any error in the bindover decision or in grand jury indictment. Victim's statements identifying appellant were not excludable hearsay and trial court's decision to admit statements was not an abuse of discretion. Victim's statements were not admitted in violation of Evid.R. 404(B). Appellant did not establish that his trial counsel was ineffective for failure to challenge a juror or move for mistrial. Appellant's convictions were supported by sufficient evidence and were not against the manifest weight of the evidence. Trial court did not err in imposing consecutive sentences for firearm specifications, and appellant's indefinite sentence was not a violation of the principles set forth in Miller v. Alabama, 567 U.S. 460 (2012).", - "case_name_shorts": "Echols" + "case_name_shorts": "Echols", + "per_curiam": false }, { "case_dates": "2021-11-30", @@ -619,9 +713,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19AP-279", "judges": "Luper Schuster", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4192", "summaries": "The trial court did not err in the admission of other-acts evidence, sufficient evidence and the manifest weight of the evidence supports Daylong's convictions, the trial court did not err in instructing the jury or in preventing Daylong from arguing to the jury the meaning of the term \"public\" as used in R.C. 2909.04(A)(2), and the admission of the evidence of Daylong's prior criminal conviction did not constitute plain error.", - "case_name_shorts": "Daylong" + "case_name_shorts": "Daylong", + "per_curiam": false }, { "case_dates": "2021-11-30", @@ -632,9 +728,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP-193", "judges": "Sadler", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4196", "summaries": "Trial court did not err in holding the Ohio General Assembly acted within its state constitutional authority in enacting Section 29 of H.B. 197 to respond to the Covid-19 pandemic or in rejecting appellants' argument that Section 29 clearly violates Due Process Clause limitations on a government's jurisdiction to tax. Judgment affirmed.", - "case_name_shorts": "Kilgore" + "case_name_shorts": "Kilgore", + "per_curiam": false }, { "case_dates": "2021-11-23", @@ -645,8 +743,10 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP-456", "judges": "Mentel", + "lower_courts": "Franklin County Court", "citations": "2021-Ohio-4090", "summaries": "Appellant was not entitled to a hearing on his petition for postconviction relief under R.C. 2953.21 alleging ineffective assistance of counsel. Because he submitted no evidence of what mitigating evidence existed that his counsel allegedly failed to present, he could not show that the failure to do so was prejudicial. The trial court's decision did not \"summarily deny\" appellant's claims because it was sufficiently detailed to allow appellant review. Judgment affirmed.", - "case_name_shorts": "Wade" + "case_name_shorts": "Wade", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohioctapp_11_example.compare.json b/tests/examples/opinions/united_states/ohioctapp_11_example.compare.json index f9a2e7e67..36bd8c3f8 100644 --- a/tests/examples/opinions/united_states/ohioctapp_11_example.compare.json +++ b/tests/examples/opinions/united_states/ohioctapp_11_example.compare.json @@ -8,9 +8,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-P-0085", "judges": "Rice", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4571", - "summaries": "CRIMINAL LAW - Sierah's Law Senate Bill 231 R.C. 2903.41-44 Violent Offender Registry defendant's convicting trial court has jurisdiction post-release to hear defendant's constitutional challenge to the VOD statutes Per Hubbard, VOD statutes are not unconstitutional reversed.", - "case_name_shorts": "" + "summaries": "CRIMINAL LAW - Sierah's Law; Senate Bill 231; R.C. 2903.41-44; Violent Offender Registry; defendant's convicting trial court has jurisdiction post-release to hear defendant's constitutional challenge to the VOD statutes; Per Hubbard, VOD statutes are not unconstitutional; reversed.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -21,9 +23,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-A-0001", "judges": "Wright", + "lower_courts": "Ashtabula County Court", "citations": "2021-Ohio-4568", - "summaries": "CRIMINAL LAW - SEARCH & SEIZURE - motion to suppress Fourth Amendment privacy interests warrantless entry exigent circumstances fire official immediate investigation cause and origin of fire initial entry warrantless seizure police officer \"step into the shoes\" plain view evidence of criminal activity.", - "case_name_shorts": "Hommes" + "summaries": "CRIMINAL LAW - SEARCH & SEIZURE - motion to suppress; Fourth Amendment; privacy interests; warrantless entry; exigent circumstances; fire official; immediate investigation; cause and origin of fire; initial entry; warrantless seizure; police officer; \"step into the shoes\"; plain view; evidence of criminal activity.", + "case_name_shorts": "Hommes", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -34,9 +38,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-P-0034", "judges": "Eklund", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4570", - "summaries": "CRIMINAL - Allocution consecutive sentences record does not support the findings for consecutive sentencing R.C. 2929.14(C)(4).", - "case_name_shorts": "Coppa" + "summaries": "CRIMINAL - Allocution; consecutive sentences; record does not support the findings for consecutive sentencing; R.C. 2929.14(C)(4).", + "case_name_shorts": "Coppa", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -47,9 +53,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-P-0033", "judges": "Eklund", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4569", - "summaries": "CRIMINAL - Dismiss moot allocution.", - "case_name_shorts": "Coppa" + "summaries": "CRIMINAL - Dismiss; moot; allocution.", + "case_name_shorts": "Coppa", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -60,9 +68,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-A-0034 & 2020-A-0035", "judges": "Lynch", + "lower_courts": "Ashtabula County Court", "citations": "2021-Ohio-4480", - "summaries": "CRIMINAL - compelling prostitution R.C. 2907.21(A)(3) Sexual Imposition R.C. 2907.06(A)(4) and (C) guilty pleas Crim.R. 11 knowing and voluntary appeal of pretrial rulings maximum potential sentence motion to withdraw guilty plea Crim.R. 32.1 motion for continuance pre-sentence investigation report conflict of interest appearance of impropriety felony sentencing mitigation evidence maximum sentence R.C. 2929.14(A)(3)(b) consecutive sentences clearly and convincingly contrary to law", - "case_name_shorts": "Garcia" + "summaries": "CRIMINAL - compelling prostitution; R.C. 2907.21(A)(3); Sexual Imposition; R.C. 2907.06(A)(4) and (C); guilty pleas; Crim.R. 11; knowing and voluntary; appeal of pretrial rulings; maximum potential sentence; motion to withdraw guilty plea; Crim.R. 32.1; motion for continuance; pre-sentence investigation report; conflict of interest; appearance of impropriety; felony sentencing; mitigation evidence; maximum sentence; R.C. 2929.14(A)(3)(b); consecutive sentences; clearly and convincingly contrary to law", + "case_name_shorts": "Garcia", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -73,9 +83,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-P-0002, 2021-P-0003", "judges": "Eklund", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4375", - "summaries": "CRIMINAL - Revocation of Community Control Revocation Hearing Positive Drug Test Third Probation Violation Concurrent Sentences Abuse of Discretion Failure to Object Plain Error Ineffective Assistance of Counsel Failure to perform futile act not a basis for ineffective assistance claim.", - "case_name_shorts": "Neubig" + "summaries": "CRIMINAL - Revocation of Community Control; Revocation Hearing; Positive Drug Test; Third Probation Violation; Concurrent Sentences; Abuse of Discretion; Failure to Object; Plain Error; Ineffective Assistance of Counsel; Failure to perform futile act not a basis for ineffective assistance claim.", + "case_name_shorts": "Neubig", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -86,9 +98,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-A-0034", "judges": "Eklund", + "lower_courts": "Ashtabula County Court", "citations": "2021-Ohio-4371", - "summaries": "APPELLATE REVIEW: Untimely appeal App.R. 4(A)(1) appellant may seek leave to appeal an untimely criminal appeal through an App.R. 5(A) motion.", - "case_name_shorts": "Morrison" + "summaries": "APPELLATE REVIEW: Untimely appeal; App.R. 4(A)(1); appellant may seek leave to appeal an untimely criminal appeal through an App.R. 5(A) motion.", + "case_name_shorts": "Morrison", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -99,9 +113,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-A-0036", "judges": "Wright", + "lower_courts": "Ashtabula County Court", "citations": "2021-Ohio-4372", - "summaries": "APPELLATE REVIEW: Untimely appeal App.R. 4(A)(1) appellant may seek leave to appeal an untimely criminal appeal via App.R. 5(A).", - "case_name_shorts": "Kelsey" + "summaries": "APPELLATE REVIEW: Untimely appeal; App.R. 4(A)(1); appellant may seek leave to appeal an untimely criminal appeal via App.R. 5(A).", + "case_name_shorts": "Kelsey", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -112,9 +128,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-L-022", "judges": "Trapp", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-4374", - "summaries": "CRIMINAL LAW - misstatements of law voir dire failure to mention state's burden on self-defense does not mean the state misstated the law even if a misstatement occurred, the error would be harmless since the trial court accurately instructed the jury before deliberations sufficient evidence that appellant did not act in self-defense there was evidence from which a jury could find appellant was at fault in creating the situation, was not reasonable in believing he was in danger, and/or did not use reasonable force contradictory evidence goes to the manifest weight of the evidence, not the sufficiency of the evidence manifest weight of the evidence supports the verdict, inconsistent testimony goes to the credibility of witnesses appellant failed to allege equal protection violation, his status as a homeless person did not preclude the Castle doctrine pursuant to former R.C. 2901.09.", - "case_name_shorts": "Hodgson" + "summaries": "CRIMINAL LAW - misstatements of law; voir dire; failure to mention state's burden on self-defense does not mean the state misstated the law; even if a misstatement occurred, the error would be harmless since the trial court accurately instructed the jury before deliberations; sufficient evidence that appellant did not act in self-defense; there was evidence from which a jury could find appellant was at fault in creating the situation, was not reasonable in believing he was in danger, and/or did not use reasonable force; contradictory evidence goes to the manifest weight of the evidence, not the sufficiency of the evidence; manifest weight of the evidence supports the verdict, inconsistent testimony goes to the credibility of witnesses; appellant failed to allege equal protection violation, his status as a homeless person did not preclude the Castle doctrine pursuant to former R.C. 2901.09.", + "case_name_shorts": "Hodgson", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -125,9 +143,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-P-0044", "judges": "Wright", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4370", - "summaries": "CIVIL - summary judgment negligence appellant's burden to affirmatively demonstrate error App.R. 16(A)(7) trespass intentional conduct herbicide nominal damages genuine issue of material fact negligence per se civil liability for a criminal act criminal damaging R.C. 2909.06 R.C. 2307.60(A)(1) actual damages.", - "case_name_shorts": "Machlup" + "summaries": "CIVIL - summary judgment; negligence; appellant's burden to affirmatively demonstrate error; App.R. 16(A)(7); trespass; intentional conduct; herbicide; nominal damages; genuine issue of material fact; negligence per se; civil liability for a criminal act; criminal damaging; R.C. 2909.06; R.C. 2307.60(A)(1); actual damages.", + "case_name_shorts": "Machlup", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -138,9 +158,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-L-007", "judges": "Rice", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-4373", - "summaries": "JUVENILE - parenting motion to show cause compliance with original parenting schedule schedule subsequently clarified clarification affirmed in previous appeal law of the case doctrine no error in denying motion to show cause.", - "case_name_shorts": "Lucas" + "summaries": "JUVENILE - parenting; motion to show cause; compliance with original parenting schedule; schedule subsequently clarified; clarification affirmed in previous appeal; law of the case doctrine; no error in denying motion to show cause.", + "case_name_shorts": "Lucas", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -151,9 +173,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-P-0043", "judges": "Wright", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4369", - "summaries": "CIVIL - summary judgment negligence negligence per se appellant's burden to affirmatively demonstrate error App.R. 16(A)(7) allegations may not be raised for the first time on appeal trespass intentional conduct herbicide nominal damages genuine issue of material fact.", - "case_name_shorts": "Hammonds" + "summaries": "CIVIL - summary judgment; negligence; negligence per se; appellant's burden to affirmatively demonstrate error; App.R. 16(A)(7); allegations may not be raised for the first time on appeal; trespass; intentional conduct; herbicide; nominal damages; genuine issue of material fact.", + "case_name_shorts": "Hammonds", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -164,9 +188,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-P-0006", "judges": "Wright", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4259", - "summaries": "CIVIL - EVIDENCE - breach of contract lost profits established business difference in sales business owner's testimony.", - "case_name_shorts": "Shenigo" + "summaries": "CIVIL - EVIDENCE - breach of contract; lost profits; established business; difference in sales; business owner's testimony.", + "case_name_shorts": "Shenigo", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -177,9 +203,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-P-0011", "judges": "Wright", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4262", - "summaries": "CRIMINAL LAW - motion to vacate void voidable subject matter jurisdiction insufficient evidence fourth-degree felony OVI five prior OVI offenses within twenty years Crim.R. 32(C) State v. Gwen, 134 Ohio St.3d 284 concurrent jurisdiction res judicata.", - "case_name_shorts": "Lusane" + "summaries": "CRIMINAL LAW - motion to vacate; void; voidable; subject matter jurisdiction; insufficient evidence; fourth-degree felony OVI; five prior OVI offenses within twenty years; Crim.R. 32(C); State v. Gwen, 134 Ohio St.3d 284; concurrent jurisdiction; res judicata.", + "case_name_shorts": "Lusane", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -190,9 +218,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-L-047", "judges": "Trapp", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-4264", - "summaries": "CRIMINAL LAW - postconviction relief R.C. 2953.21 due process notice opportunity to respond recasting of irregular motion untimely exceptions to timeliness R.C. 2953.23.", - "case_name_shorts": "Lewis" + "summaries": "CRIMINAL LAW - postconviction relief; R.C. 2953.21; due process; notice; opportunity to respond; recasting of irregular motion; untimely; exceptions to timeliness; R.C. 2953.23.", + "case_name_shorts": "Lewis", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -203,9 +233,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-L-103", "judges": "Wright", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-4258", - "summaries": "APPELLATE REVIEW - misdemeanor conviction mootness completed jail sentence outstanding court costs. CRIMINAL LAW - CONSTITUTIONAL - waiver of right to counsel petty offense completed jail sentence moot. EVIDENCE - Evid.R. 601 competency to testify mental illness recollection credibility manifest weight.", - "case_name_shorts": "Landingham" + "summaries": "APPELLATE REVIEW - misdemeanor conviction; mootness; completed jail sentence; outstanding court costs. CRIMINAL LAW - CONSTITUTIONAL - waiver of right to counsel; petty offense; completed jail sentence; moot. EVIDENCE - Evid.R. 601; competency to testify; mental illness; recollection; credibility; manifest weight.", + "case_name_shorts": "Landingham", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -216,9 +248,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-A-0017", "judges": "Wright", + "lower_courts": "Ashtabula County Court", "citations": "2021-Ohio-4261", - "summaries": "POSTCONVICTION RELIEF - R.C. 2953.21 res judicata untimely.", - "case_name_shorts": "Conard" + "summaries": "POSTCONVICTION RELIEF - R.C. 2953.21; res judicata; untimely.", + "case_name_shorts": "Conard", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -229,9 +263,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-A-0005", "judges": "Lynch", + "lower_courts": "Ashtabula County Court", "citations": "2021-Ohio-4332", - "summaries": "CRIMINAL - Felony Murder Felonious Assault manifest weight of the evidence serious physical harm intent credibility ineffective assistance of counsel trial strategy blood spatter expert testimony police officer as expert jail attire harmless error prejudicial comments inconsistent statements impermissible vouching lesser-included offense instruction", - "case_name_shorts": "Bankston" + "summaries": "CRIMINAL - Felony Murder; Felonious Assault; manifest weight of the evidence; serious physical harm; intent; credibility; ineffective assistance of counsel; trial strategy; blood spatter; expert testimony; police officer as expert; jail attire; harmless error; prejudicial comments; inconsistent statements; impermissible vouching; lesser-included offense instruction", + "case_name_shorts": "Bankston", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -241,10 +277,12 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2020-L-043", - "judges": "Per Curiam", + "judges": "", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-4257", - "summaries": "EXTRAORDINARY WRITS - writ of mandamus compel production of public records R.C. 149.43 clerk of courts records provided moot statutory damages.", - "case_name_shorts": "Andrews" + "summaries": "EXTRAORDINARY WRITS - writ of mandamus; compel production of public records; R.C. 149.43; clerk of courts; records provided; moot; statutory damages.", + "case_name_shorts": "Andrews", + "per_curiam": true }, { "case_dates": "2021-12-06", @@ -255,9 +293,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-P-0106", "judges": "Rice", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4265", - "summaries": "APPELLATE REVIEW - App.R. 4(A) thirty-day rule Civ.R. 58(B) untimely appeal.", - "case_name_shorts": "Rinaldi" + "summaries": "APPELLATE REVIEW - App.R. 4(A); thirty-day rule; Civ.R. 58(B); untimely appeal.", + "case_name_shorts": "Rinaldi", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -268,9 +308,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-T-0078", "judges": "Lynch", + "lower_courts": "Trumbull County Court", "citations": "2021-Ohio-4260", - "summaries": "DOMESTIC RELATIONS - divorce marital property and debt property distribution equitable division financial misconduct R.C. 3105.171(E)(4) spousal support social security abuse of discretion cohabitation", - "case_name_shorts": "Kirkpatrick" + "summaries": "DOMESTIC RELATIONS - divorce; marital property and debt; property distribution; equitable division; financial misconduct; R.C. 3105.171(E)(4); spousal support; social security; abuse of discretion; cohabitation", + "case_name_shorts": "Kirkpatrick", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -281,9 +323,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-G-0028", "judges": "Lynch", + "lower_courts": "Geauga County Court", "citations": "2021-Ohio-4263", - "summaries": "APPELLATE REVIEW - R.C. 2505.02(B) appeal from magistrate's order is not a final appealable order magistrate's order is interlocutory in nature the magistrate's order has not received judicial approval.", - "case_name_shorts": "Jones" + "summaries": "APPELLATE REVIEW - R.C. 2505.02(B); appeal from magistrate's order is not a final appealable order; magistrate's order is interlocutory in nature; the magistrate's order has not received judicial approval.", + "case_name_shorts": "Jones", + "per_curiam": false }, { "case_dates": "2021-11-29", @@ -294,9 +338,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-G-0026", "judges": "Trapp", + "lower_courts": "Geauga County Court", "citations": "2021-Ohio-4186", - "summaries": "APPELLATE REVIEW - R.C. 2505.02(B) appeal from magistrate's order is not a final appealable order magistrate's order is interlocutory in nature the magistrate's order has not received judicial approval.", - "case_name_shorts": "Arnold" + "summaries": "APPELLATE REVIEW - R.C. 2505.02(B); appeal from magistrate's order is not a final appealable order; magistrate's order is interlocutory in nature; the magistrate's order has not received judicial approval.", + "case_name_shorts": "Arnold", + "per_curiam": false }, { "case_dates": "2021-11-22", @@ -307,9 +353,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-P-0066", "judges": "Trapp", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4136", - "summaries": "CRIMINAL - trial court did not fail to strike juror where there was no demonstration of bias or impartiality motions in limine appropriately denied, other-acts evidence inextricably linked to crime, any error harmless sufficient evidence as to element of sexual contact, touching does not have to be skin to skin delayed reporting of witnesses goes to credibility of witnesses, whom jury was free to believe counsel was not ineffective for failing to object to having trial during COVID trial court answered jury question with accurate statement of law assignment of error regarding whether trial court correctly denied motion for new trial is moot since assignments of error based on the same reasons, i.e. COVID and improper other-acts evidence, were found to be without merit.", - "case_name_shorts": "Mugrage" + "summaries": "CRIMINAL - trial court did not fail to strike juror where there was no demonstration of bias or impartiality; motions in limine appropriately denied, other-acts evidence inextricably linked to crime, any error harmless; sufficient evidence as to element of sexual contact, touching does not have to be skin to skin; delayed reporting of witnesses goes to credibility of witnesses, whom jury was free to believe; counsel was not ineffective for failing to object to having trial during COVID; trial court answered jury question with accurate statement of law; assignment of error regarding whether trial court correctly denied motion for new trial is moot since assignments of error based on the same reasons, i.e. COVID and improper other-acts evidence, were found to be without merit.", + "case_name_shorts": "Mugrage", + "per_curiam": false }, { "case_dates": "2021-11-22", @@ -320,9 +368,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-P-0004", "judges": "Lynch", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4137", - "summaries": "CRIMINAL \u2013 Crim.R. 32.1 withdraw plea indictment severance of offenses res judicata void voidable subject matter jurisdiction", - "case_name_shorts": "Feathers" + "summaries": "CRIMINAL \u2013 Crim.R. 32.1; withdraw plea; indictment; severance of offenses res judicata; void; voidable; subject matter jurisdiction", + "case_name_shorts": "Feathers", + "per_curiam": false }, { "case_dates": "2021-11-22", @@ -333,9 +383,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-A-0053", "judges": "Trapp", + "lower_courts": "Ashtabula County Court", "citations": "2021-Ohio-4135", - "summaries": "CIVIL - foreclosure default judgment Civ.R. 55 due process response deadline Civ.R. 6(C)(1).", - "case_name_shorts": "Knight" + "summaries": "CIVIL - foreclosure; default judgment; Civ.R. 55; due process; response deadline; Civ.R. 6(C)(1).", + "case_name_shorts": "Knight", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -346,9 +398,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-L-032", "judges": "Trapp", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-4059", - "summaries": "CRIMINAL LAW - community control sanctions medical marijuana trial court's discretion to prohibit substances failed to object at sentencing knowingly violated without notifying probation officer never submitted medical marijuana card into evidence at revocation hearing and/or argue medical necessity prohibition against marijuana did not implicate the OMMA under the circumstances of the case.", - "case_name_shorts": "Ryan" + "summaries": "CRIMINAL LAW - community control sanctions; medical marijuana; trial court's discretion to prohibit substances; failed to object at sentencing; knowingly violated without notifying probation officer; never submitted medical marijuana card into evidence at revocation hearing and/or argue medical necessity; prohibition against marijuana did not implicate the OMMA under the circumstances of the case.", + "case_name_shorts": "Ryan", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -359,9 +413,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-P-0083", "judges": "Eklund", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4050", - "summaries": "CRIMINAL - Felonious assault pointing a deadly weapon alone is insufficient under R.C. 2903.11(A)(2) Reagan Tokes Act indefinite sentences failure to raise at trial waives right to appeal unless plain error failure to notify of post-release control.", - "case_name_shorts": "Freetage" + "summaries": "CRIMINAL - Felonious assault; pointing a deadly weapon alone is insufficient under R.C. 2903.11(A)(2); Reagan Tokes Act; indefinite sentences; failure to raise at trial waives right to appeal unless plain error; failure to notify of post-release control.", + "case_name_shorts": "Freetage", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -372,9 +428,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-P-0049", "judges": "Wright", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4053", - "summaries": "APPELLATE REVIEW - motion to intervene nonparties Marsy's Law victim may petition the court of appeals issue not raised below controversy not ripe for review advisory jurisdiction appeal dismissed.", - "case_name_shorts": "Cunningham" + "summaries": "APPELLATE REVIEW - motion to intervene; nonparties; Marsy's Law; victim may petition the court of appeals; issue not raised below; controversy not ripe for review; advisory; jurisdiction; appeal dismissed.", + "case_name_shorts": "Cunningham", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -385,9 +443,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-P-0048", "judges": "Wright", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4052", - "summaries": "APPELLATE REVIEW - motion to intervene nonparties standing jurisdiction victim Marsy's Law appeal dismissed.", - "case_name_shorts": "Cunningham" + "summaries": "APPELLATE REVIEW - motion to intervene; nonparties; standing; jurisdiction; victim; Marsy's Law; appeal dismissed.", + "case_name_shorts": "Cunningham", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -398,9 +458,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-P-0047", "judges": "Wright", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4051", - "summaries": "APPELLATE REVIEW - final, appealable order R.C. 2505.02(B)(4) provisional remedy discovery order attorney-client privilege colorable claim interlocutory jurisdiction appeal dismissed.", - "case_name_shorts": "Cunningham" + "summaries": "APPELLATE REVIEW - final, appealable order; R.C. 2505.02(B)(4); provisional remedy; discovery order; attorney-client privilege; colorable claim; interlocutory; jurisdiction; appeal dismissed.", + "case_name_shorts": "Cunningham", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -411,9 +473,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-P-0086", "judges": "Lynch", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-4057", - "summaries": "CRIMINAL - Rape Sexual Battery parole officer Sixth Amendment presumption of innocence voir dire challenge of juror for cause whether juror can set aside opinion failure to exercise all peremptory challenges ineffective assistance of counsel juror selection trial strategy manifest weight of the evidence credibility of witnesses consecutive sentences R.C. 2929.14(C)(4) course of conduct connection, common scheme, or pattern", - "case_name_shorts": "Cooper" + "summaries": "CRIMINAL - Rape; Sexual Battery; parole officer; Sixth Amendment; presumption of innocence; voir dire; challenge of juror for cause; whether juror can set aside opinion; failure to exercise all peremptory challenges; ineffective assistance of counsel; juror selection; trial strategy; manifest weight of the evidence; credibility of witnesses; consecutive sentences; R.C. 2929.14(C)(4); course of conduct; connection, common scheme, or pattern", + "case_name_shorts": "Cooper", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -424,9 +488,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-A-0051", "judges": "Lynch", + "lower_courts": "Ashtabula County Court", "citations": "2021-Ohio-4056", - "summaries": "CIVIL - default judgment failure to appear failure to defend Civ.R. 55(A) appearance notice of hearing magistrate's decision adopt damages liquidated", - "case_name_shorts": "Courtney" + "summaries": "CIVIL - default judgment; failure to appear; failure to defend; Civ.R. 55(A); appearance; notice of hearing; magistrate's decision; adopt; damages; liquidated", + "case_name_shorts": "Courtney", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -437,9 +503,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2019-G-0222", "judges": "Lynch", + "lower_courts": "Geauga County Court", "citations": "2021-Ohio-4055", - "summaries": "JUVENILE - modification of child support due process evidentiary hearing downward deviation R.C. 3119.23 extended parenting time child support guidelines R.C. 3119.051 and .231 statutory constructive prospective application R.C. 1.48.", - "case_name_shorts": "In re A.H." + "summaries": "JUVENILE - modification of child support; due process; evidentiary hearing; downward deviation; R.C. 3119.23; extended parenting time; child support guidelines; R.C. 3119.051 and .231; statutory constructive; prospective application; R.C. 1.48.", + "case_name_shorts": "In re A.H.", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -450,9 +518,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-L-029", "judges": "Lynch", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-4058", - "summaries": "CIVIL - foreclosure mootness satisfaction of judgment R.C. 2329.45 summary judgment mortgage note in default enforceability decedent's estate R.C. 2117.12 actions in rem and in personam", - "case_name_shorts": "Moyer" + "summaries": "CIVIL - foreclosure; mootness; satisfaction of judgment; R.C. 2329.45; summary judgment; mortgage note in default; enforceability; decedent's estate; R.C. 2117.12; actions in rem and in personam", + "case_name_shorts": "Moyer", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -463,9 +533,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-P-0090 & 2021-P-0013", "judges": "Wright", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-3973", - "summaries": "CIVIL - declaratory judgment quiet title default judgment Civ.R. 55(A) oil and gas lease null and void interest terminated, abandoned, or extinguished predetermined the ultimate issue in the matter abuse of discretion.", - "case_name_shorts": "Zelek" + "summaries": "CIVIL - declaratory judgment; quiet title; default judgment; Civ.R. 55(A); oil and gas lease; null and void; interest terminated, abandoned, or extinguished; predetermined the ultimate issue in the matter; abuse of discretion.", + "case_name_shorts": "Zelek", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -476,9 +548,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-L-038", "judges": "Wright", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-3974", - "summaries": "CRIMINAL - SENTENCING - review of felony sentences consecutive sentences R.C. 2953.08 R.C. 2929.14(C)(4) multiple offenses course of conduct R.C. 2929.11 R.C. 2929.12 appellate court not permitted to independently weigh competing factors.", - "case_name_shorts": "Homa" + "summaries": "CRIMINAL - SENTENCING - review of felony sentences; consecutive sentences; R.C. 2953.08; R.C. 2929.14(C)(4); multiple offenses; course of conduct; R.C. 2929.11; R.C. 2929.12; appellate court not permitted to independently weigh competing factors.", + "case_name_shorts": "Homa", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -489,9 +563,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-L-065", "judges": "Eklund", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-3976", - "summaries": "CRIMINAL -SENTENCING - review of felony sentences R.C. 2929.12 appellate court not permitted to modify or vacate a sentence based on its view that the sentence is not supported by the record under 2929.12.", - "case_name_shorts": "Golding" + "summaries": "CRIMINAL -SENTENCING - review of felony sentences; R.C. 2929.12; appellate court not permitted to modify or vacate a sentence based on its view that the sentence is not supported by the record under 2929.12.", + "case_name_shorts": "Golding", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -502,9 +578,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-L-054", "judges": "Eklund", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-3975", - "summaries": "CRIMINAL - weapons under disability tampering with evidence manifest weight of evidence sufficiency of evidence acquittal R.C. 2923.13(A)(2) prohibits having, carrying, or using a firearm.", - "case_name_shorts": "Camacho" + "summaries": "CRIMINAL - weapons under disability; tampering with evidence; manifest weight of evidence; sufficiency of evidence; acquittal; R.C. 2923.13(A)(2) prohibits having, carrying, or using a firearm.", + "case_name_shorts": "Camacho", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -515,9 +593,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-L-072, 2021-L-073, 2021-L-074, 2021-L-075", "judges": "Wright", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-3978", - "summaries": "JUVENILE -- dependency proceeding permanent custody termination of parental rights R.C. 2151.352 child's right to appointed counsel maturity of the child conflict between child's wishes and guardian ad litem's recommendation parent's right to appointed counsel all stages of the proceedings harmless error.", - "case_name_shorts": "In re J.L." + "summaries": "JUVENILE -- dependency proceeding; permanent custody; termination of parental rights; R.C. 2151.352; child's right to appointed counsel; maturity of the child; conflict between child's wishes and guardian ad litem's recommendation; parent's right to appointed counsel; all stages of the proceedings; harmless error.", + "case_name_shorts": "In re J.L.", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -528,9 +608,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-L-066, 2021-L-067, 2021-L-068, 2021-L-069", "judges": "Wright", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-3977", - "summaries": "JUVENILE -- dependency proceeding permanent custody termination of parental rights R.C. 2151.414(D) best interest factors manifest weight clear and convincing evidence reasonable attempts at reunification case plan compliance.", - "case_name_shorts": "In re J.L." + "summaries": "JUVENILE -- dependency proceeding; permanent custody; termination of parental rights; R.C. 2151.414(D); best interest factors; manifest weight; clear and convincing evidence; reasonable attempts at reunification; case plan compliance.", + "case_name_shorts": "In re J.L.", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -541,9 +623,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-T-0016", "judges": "Eklund", + "lower_courts": "Trumbull County Court", "citations": "2021-Ohio-3979", - "summaries": "CIVIL - Child Custody Shared Parenting R.C. 3109.04, Reallocation of parental rights Change in circumstances of the child Change in circumstances of either of the parents subject to a shared parenting decree Relocation of parent Best Interest Factors Abuse of discretion.", - "case_name_shorts": "In re C.M.H." + "summaries": "CIVIL - Child Custody; Shared Parenting; R.C. 3109.04, Reallocation of parental rights; Change in circumstances of the child; Change in circumstances of either of the parents subject to a shared parenting decree; Relocation of parent; Best Interest Factors; Abuse of discretion.", + "case_name_shorts": "In re C.M.H.", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -554,9 +638,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-A-0009", "judges": "Lynch", + "lower_courts": "Ashtabula County Court", "citations": "2021-Ohio-3881", - "summaries": "CIVIL - supplementing the record on appeal App.R. 9(E) motion to compel Civ.R. 37(A)(1) involuntary dismissal Civ.R. 41(B)(1) discovery sanctions bad faith or willful conduct Civ.R. 37(B)(1) motion for relief from judgment Civ.R. 60(B)", - "case_name_shorts": "Sultaana" + "summaries": "CIVIL - supplementing the record on appeal; App.R. 9(E); motion to compel; Civ.R. 37(A)(1); involuntary dismissal; Civ.R. 41(B)(1); discovery sanctions; bad faith or willful conduct; Civ.R. 37(B)(1); motion for relief from judgment; Civ.R. 60(B)", + "case_name_shorts": "Sultaana", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -567,9 +653,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-P-0026", "judges": "Eklund", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-3883", - "summaries": "APPELLATE REVIEW: only single sentence imposed for two different crimes court is unable to determine to which offense sentence applies no final appealable order.", - "case_name_shorts": "" + "summaries": "APPELLATE REVIEW: only single sentence imposed for two different crimes; court is unable to determine to which offense sentence applies; no final appealable order.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -580,9 +668,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-L-126", "judges": "Rice", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-3880", - "summaries": "CRIMINAL LAW - trespass in a habitation grand theft motor vehicle community control violation revocation prison imposed no appeal judicial release new violations prison re-imposed motion to correct sentence merger analysis voidable issue could have been raised on a direct appeal res judicata separate animi separate acts.", - "case_name_shorts": "" + "summaries": "CRIMINAL LAW - trespass in a habitation; grand theft motor vehicle; community control violation; revocation; prison imposed; no appeal; judicial release; new violations; prison re-imposed; motion to correct sentence; merger analysis; voidable issue; could have been raised on a direct appeal; res judicata; separate animi; separate acts.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -593,9 +683,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-L-040", "judges": "Rice", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-3882", - "summaries": "CRIMINAL LAW - petition for post-conviction relief untimely R.C. 2953.23(A)(1)(a) not unavoidably prevented ineffective assistance of counsel appellant indicated he was satisfied with counsel appellant knew motion to suppress was withdrawn.", - "case_name_shorts": "" + "summaries": "CRIMINAL LAW - petition for post-conviction relief; untimely; R.C. 2953.23(A)(1)(a); not unavoidably prevented; ineffective assistance of counsel; appellant indicated he was satisfied with counsel; appellant knew motion to suppress was withdrawn.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -606,9 +698,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-P-0087", "judges": "Wright", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-3791", - "summaries": "CIVIL - summary judgment loss of consortium bodily injury does not include nonphysical harm R.C. Chapter 2744 political subdivision tort liability board of education employment relationship employees of political subdivision malice defamation qualified privilege educators parents duty to ensure student safety and welfare intentional infliction of emotional distress civil conspiracy unlawful act hazing harassment.", - "case_name_shorts": "Weaver" + "summaries": "CIVIL - summary judgment; loss of consortium; bodily injury does not include nonphysical harm; R.C. Chapter 2744; political subdivision tort liability; board of education; employment relationship; employees of political subdivision; malice; defamation; qualified privilege; educators; parents; duty to ensure student safety and welfare; intentional infliction of emotional distress; civil conspiracy; unlawful act; hazing; harassment.", + "case_name_shorts": "Weaver", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -619,9 +713,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-T-0012", "judges": "Wright", + "lower_courts": "Trumbull County Court", "citations": "2021-Ohio-3793", - "summaries": "CRIMINAL - SENTENCING - review of felony sentences R.C. 2929.11 R.C. 2929.12 appellate court not permitted to independently weigh competing factors plain error Crim.R. 52(B).", - "case_name_shorts": "Pruitt" + "summaries": "CRIMINAL - SENTENCING - review of felony sentences; R.C. 2929.11; R.C. 2929.12; appellate court not permitted to independently weigh competing factors; plain error; Crim.R. 52(B).", + "case_name_shorts": "Pruitt", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -632,9 +728,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-P-0092", "judges": "Wright", + "lower_courts": "Portage County Court", "citations": "2021-Ohio-3794", - "summaries": "APPELLATE REVIEW: Crim.R. 48 R.C. 2505.02 dismissal of charges in indictment is not a final appealable order.", - "case_name_shorts": "Barna" + "summaries": "APPELLATE REVIEW: Crim.R. 48; R.C. 2505.02; dismissal of charges in indictment is not a final appealable order.", + "case_name_shorts": "Barna", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -645,8 +743,10 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-L-030", "judges": "Eklund", + "lower_courts": "Lake County Court", "citations": "2021-Ohio-3792", - "summaries": "CIVIL -- Child Custody Shared Parenting Plan Discretion of Court granting leave to file untimely Shared Parenting Plan Child Support Denial of Motion to Continue Continuances under Juv.R. 23 Abuse of Discretion.", - "case_name_shorts": "In re B.D." + "summaries": "CIVIL -- Child Custody; Shared Parenting Plan; Discretion of Court granting leave to file untimely Shared Parenting Plan; Child Support; Denial of Motion to Continue; Continuances under Juv.R. 23; Abuse of Discretion.", + "case_name_shorts": "In re B.D.", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohioctapp_12_example.compare.json b/tests/examples/opinions/united_states/ohioctapp_12_example.compare.json index 34889ff6a..1c8d6cbe6 100644 --- a/tests/examples/opinions/united_states/ohioctapp_12_example.compare.json +++ b/tests/examples/opinions/united_states/ohioctapp_12_example.compare.json @@ -8,9 +8,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-02-016", "judges": "Byrne", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4545", "summaries": "Plaintiffs, relatives of nursing home resident, sued nursing home, claiming a Consumer Sales Practices Act violations by suing the plaintiffs in an attempt to recover the resident's unpaid nursing home bills. Court granted summary to the nursing home. Nursing home's lawsuit contained colorable claims against plaintiffs. A lawsuit presenting colorable claims, even if defenses to those claims existed, did not constitute an unfair/deceptive or unconscionable act.", - "case_name_shorts": "Vesper" + "case_name_shorts": "Vesper", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -21,9 +23,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-04-042", "judges": "Hendrickson", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4548", "summaries": "Trial counsel's decision not to request a waiver of court costs at appellant's sentencing hearing was a matter of trial strategy and appellant, despite his indigency, could not establish prejudice where the record demonstrated he had an ability work and earn an income to pay the costs.", - "case_name_shorts": "Watts" + "case_name_shorts": "Watts", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -34,9 +38,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-05-048", "judges": "Hendrickson", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-4541", "summaries": "The trial court's plea colloquy complied with the requirements of Crim.R. 11(C)(2) and the record demonstrated appellant understood the nature of the aggravated arson charge. The trial court considered the purposes and principles of sentencing as set forth in R.C. 2929.11 as well as the seriousness and recidivism factors listed in R.C. 2929.12 in imposing an indefinite prison term of 10 to 15 years. Appellant forfeited his constitutional challenge to the Reagan Tokes Law, specifically R.C. 2967.271, by not first raising the issue with the trial court. R.C. 2929.18(A) authorized the court to impose the cost of postrelease control supervision.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -47,9 +53,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-02-015", "judges": "S. Powell", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-4538", "summaries": "The trial court erred by denying appellant's Crim.R. 32.1 motion to withdraw guilty plea where appellant established the existence of a manifest injustice given his trial counsel provided him with ineffective assistance of counsel by misadvising him on the impact a guilty plea to attempted assault would have on his right to own and possess firearms.", - "case_name_shorts": "Longworth" + "case_name_shorts": "Longworth", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -60,9 +68,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-05-050", "judges": "S. Powell", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-4542", "summaries": "Appellant's conviction for fourth-degree misdemeanor attempted sexual imposition in violation of R.C. 2923.02(A) and 2907.06(A)(4) was supported by sufficient evidence and not against the manifest weight of the evidence where the state provided evidence that appellant asked the victim, a 14-year-old female, if she \"had any boundaries,\" whether \"touching\" was \"crossing a boundary,\" and if she would be willing \"to do something that would end up with [him] getting off\" while appellant was \"gently\" rubbing the victim's thigh and exhibiting a noticeable erection.", - "case_name_shorts": "Kirchgessner" + "case_name_shorts": "Kirchgessner", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -73,9 +83,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-03-021", "judges": "Byrne", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-4539", "summaries": "The trial court did not abuse its discretion in denying appellant's petition for postconviction relief where the record reflects that appellant could have, or did, raise the argument in his direct appeal. Furthermore, appellant fails to identify any operative facts establishing substantive grounds for postconviction relief. In addition, the trial court did not err by denying appellant's petition without granting an extension of time where the record reflects that appellant's request is more accurately framed as a request for permission to file an untimely petition for postconviction relief. The time requirement set forth in 2953.21(A)(2) is statutory and jurisdictional. Appellant has not satisfied the statutory conditions to entertain an untimely petition and his unspecific reference to \"difficulties posed by the COVID-19 emergency\" is unavailing.", - "case_name_shorts": "Kaufhold" + "case_name_shorts": "Kaufhold", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -84,11 +96,13 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CA2021-06-017 CA2021-06-018", + "docket_numbers": "CA2021-06-017; CA2021-06-018", "judges": "M. Powell", + "lower_courts": "Clinton County Court", "citations": "2021-Ohio-4543", - "summaries": ": Defendant's guilty plea was knowingly, intelligently, and voluntarily entered trial court's failure to accurately advise defendant during the plea colloquy whether he would face a maximum term of 20 or 24 years did not constitute a complete failure to comply with Crim.R. 11(C)(2)(a).", - "case_name_shorts": "Haislip" + "summaries": ": Defendant's guilty plea was knowingly, intelligently, and voluntarily entered; trial court's failure to accurately advise defendant during the plea colloquy whether he would face a maximum term of 20 or 24 years did not constitute a complete failure to comply with Crim.R. 11(C)(2)(a).", + "case_name_shorts": "Haislip", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -99,9 +113,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-03-017", "judges": "Byrne", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4546", "summaries": "State of Ohio appeals decision partially granting motion to allow defense expert to weigh seized bulk contraband. Court ordered state to weigh contraband in the presence of the defendant's expert. Order complied with R.C. 2925.51(F), which expressly permits a defendant charged under Chapter 2925 to have a laboratory analyst present at a measurement or weighing of the substance that is the basis of the alleged violation.", - "case_name_shorts": "Gross" + "case_name_shorts": "Gross", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -112,9 +128,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-03-006", "judges": "M. Powell", + "lower_courts": "Madison County Court", "citations": "2021-Ohio-4544", "summaries": "Trial court's failure to provide the mandatory advisements under R.C. 2903.42(A)(1)(a) during the plea colloquy regarding enrollment in the violent offender database did not render defendant's guilty plea invalid. Defendant's sentence is vacated and case is remanded to the trial court where trial court failed to provide the mandatory advisements under R.C. 2903.42(A)(1)(a) before sentencing as required by the statute.", - "case_name_shorts": "Baker" + "case_name_shorts": "Baker", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -125,9 +143,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-05-048", "judges": "S. Powell", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4549", "summaries": "The trial court did not err by denying appellant's motion to suppress the test results of appellant's blood and urine specimens taken shortly after an automobile accident occurred that result in the death of another driver where the state met its slight burden requiring it to prove the tests of appellant's blood and urine were conducted in substantial compliance with the necessary Ohio Administrative Code section, specifically Ohio Adm. Code 3701-53-05.", - "case_name_shorts": "Abner" + "case_name_shorts": "Abner", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -138,9 +158,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-04-040", "judges": "S. Powell", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4547", "summaries": "The trial court's decision ordering appellee to pay restitution to appellant in the amount of in the amount of $46,609.64 in this case involving matters related to the assessments, late fees, and attorney fees the trial court erroneously awarded to appellee following a one-day bench trial was affirmed as modified where the trial court should have instead ordered appellee to pay restitution to appellant in the amount of $191,499.85 as that amount represents the true amount necessary to make appellant whole.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -151,9 +173,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-04-044", "judges": "Piper", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-4540", "summaries": "The trial court did not error in upholding the denial of a plaintiff's request for long-term Medicaid benefits where the Ohio Department of Job and Family Services (ODJFS) properly performed its duty in determining plaintiff's Medicaid eligibility by ascertaining plaintiff's gross income, which was not reduced by plaintiff's monthly spousal support obligations. ODJFS provided relevant notice that plaintiff's Qualified Income Trust was underfunded and advised plaintiff that it would need to be properly funded to ensure Medicaid eligibility.", - "case_name_shorts": "Merritt" + "case_name_shorts": "Merritt", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -162,11 +186,13 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CA2020-11-112 CA2020-11-119", + "docket_numbers": "CA2020-11-112; CA2020-11-119", "judges": "Byrne", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-4537", "summaries": "Medicaid patient appeals decision terminating private nursing services, replacing those services with certified home personal care (\"HPC\") providers. Patient argued trial court failed to independently review magistrate's decision. No showing of failure to conduct independent review where written decision noted procedural history of the case and the parties orally argued the objections before the court. Agency decision to terminate nursing services in favor of HPC provider services lawful. HPC providers were statutorily authorized to administer the patient's seizure medications.", - "case_name_shorts": "Bacon" + "case_name_shorts": "Bacon", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -177,9 +203,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-06-026", "judges": "Hendrickson", + "lower_courts": "Clermont County Court", "citations": "2021-Ohio-4357", "summaries": "The trial court did not err in not sua sponte raising the issue of appellant's competency to stand trial where the issue was never raised by the parties and appellant's interactions with the court demonstrated appellant understood the nature and objective of the proceedings against him and he was capable of assisting in his own defense. Appellant's challenge to his misdemeanor sentence was disregarded for lack of briefing as appellant neglected to mention where in the record the alleged sentencing error occurred and he failed to cite any legal authority in support of his challenge to his sentence. App.R. 16(A)(7) and 12(A)(2).", - "case_name_shorts": "Powers" + "case_name_shorts": "Powers", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -190,9 +218,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-05-051", "judges": "S. Powell", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-4356", "summaries": "Appellant's conviction was not against the manifest weight of the evidence where there were inconsistencies in and conflicts between witnesses' testimony. Determinations regarding witness credibility, conflicting testimony, and the weight to be given such evidence are primarily for the trier of fact. The trial court did not err in choosing to believe the victim's testimony and disbelieve appellant's testimony.", - "case_name_shorts": "Cephas" + "case_name_shorts": "Cephas", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -203,9 +233,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-04-004", "judges": "M. Powell", + "lower_courts": "Brown County Court", "citations": "2021-Ohio-4354", "summaries": "The trial court did not abuse its discretion in concluding the plaintiff exercised reasonable diligence in locating the deceased's heirs prior to issuing service by publication where the plaintiff took steps that a person of ordinary prudence would take in order to successfully ascertain individuals' addresses.", - "case_name_shorts": "Patrick" + "case_name_shorts": "Patrick", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -216,9 +248,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-03-024", "judges": "Piper", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4358", "summaries": "Appellant appeals from a judgment of the municipal court finding in favor of and awarding damages to appellee. Where normal recording procedures for trial fail, App.R. 9(C) and Civ.R. 53(D)(3)(b)(iii) act as safeguards against the inability to produce a transcript. The detailed affidavits of both parties were sufficient to recreate the record and the trial court was therefore able to conduct the necessary independent review of the magistrate's findings pursuant to Civ.R. 53(D)(4)(d). Where the contract for services contained the parties and subject matter but no specified price, the law invokes the standard of reasonableness, and the fair value of the services is recoverable. Appellant was not a weak party he referred to his experience as a businessman in rehabilitating property and his experience investing in real estate and owning rental properties. The trial court did not abuse its discretion in awarding money damages based on the invoice and testimony provided by appellee. Appellant's argument that the amount claimed exceeded the trial court's jurisdictional limit is unpersuasive.", - "case_name_shorts": "Thompson" + "case_name_shorts": "Thompson", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -229,9 +263,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-06-057", "judges": "M. Powell", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4359", "summaries": "Trial court did not abuse its discretion in dismissing an Ohio couple's complaint against a Kentucky corporation on the basis of forum non conveniens.", - "case_name_shorts": "Epperson" + "case_name_shorts": "Epperson", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -242,9 +278,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2020-07-036", "judges": "Hendrickson", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4245", "summaries": "Following the death of their mother, a brother and sister got into a dispute regarding the use of assets belonging to their mother's trust, for which the siblings were co-trustees. The trial court's judgment in favor of sister on brother's claims for breach of fiduciary duty, unjust enrichment, a request for an accounting, and declaratory relief were not against the manifest weight of the evidence. The trial court did not have jurisdiction over brother's claim that sister intentional interfered with his expected inheritance of a motor vehicle as brother failed to exhaust all appropriate remedies in probate court, thereby requiring dismissal of the claim without prejudice.", - "case_name_shorts": "Vogel" + "case_name_shorts": "Vogel", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -255,9 +293,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2020-09-056", "judges": "Piper", + "lower_courts": "Clermont County Court", "citations": "2021-Ohio-4242", "summaries": "The trial court did not err by denying appellant's request to disqualify appellee's counsel where the record reflects that the firm's prior representation of appellant was not substantially related to its prior representation. In addition, the trial court did not err by awarding appellee's attorney fees and costs as a sanction for appellant's spoliation of evidence.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -268,9 +308,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-03-018", "judges": "S. Powell", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4246", "summaries": "The trial court did not err by sentencing appellant to serve a total of two years in prison after she pled guilty to eight counts of second-degree felony deception to obtain dangerous drugs where the trial court's findings under R.C. 2929.13(D) were supported by the record and the sentence imposed by the trial court was not contrary to law given the trial court considered the necessary sentencing statutes prior to issuing its sentencing decision, properly imposed postrelease control, and sentenced appellant within the permissible statutory range for a second-degree felony offense.", - "case_name_shorts": "Martin" + "case_name_shorts": "Martin", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -281,9 +323,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-02-005", "judges": "Byrne", + "lower_courts": "Clermont County Court", "citations": "2021-Ohio-4244", "summaries": "The trial court properly declined to merge appellant's convictions for domestic violence in violation of R.C. 2919.25(A) and abduction in violation of R.C. 2905.02(A)(2) as allied offenses. The two offenses created separate, identifiable harms to the victim, the offenses were separated in time by a space of thirty minutes, and the context surrounding each demonstrated a separate animus in committing the offenses.", - "case_name_shorts": "Herzner" + "case_name_shorts": "Herzner", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -294,9 +338,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2020-02-009", "judges": "Hendrickson", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4243", "summaries": "Appellant's conviction for domestic violence was supported by sufficient evidence and was not against the manifest weight of the evidence. The trial court did not err by allowing the state to introduce a statement appellant made to law enforcement regarding the domestic violence incident where the evidence was relevant, admissible under Evid.R. 801(D)(2) as an admission by a party opponent, and there was no indication that the prosecutor waiting to disclose the statement until the morning of trial was done willfully, prevented appellant from presenting a defense, or prejudiced her right to a fair trial.", - "case_name_shorts": "Doyle" + "case_name_shorts": "Doyle", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -305,11 +351,13 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CA2021-06-066 CA2021-06-067 CA2021-06-068 CA2021-06-069 CA2021-06-070", + "docket_numbers": "CA2021-06-066; CA2021-06-067; CA2021-06-068; CA2021-06-069; CA2021-06-070", "judges": "Hendrickson", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-4241", "summaries": "The trial court erred in denying the applicant's applications to seal the records of his conviction for contempt of court and other dismissed charges where the court failed to consider the required factors of R.C. 2953.52 and failed to determine the applicant's eligibility pursuant to R.C. 2953.31. The trial court did not err in charging an aggregate fee of $100 dollars where R.C. 2953.32(C)(3) authorizes a $50 fee to file such an application, and the applicant filed two applications.", - "case_name_shorts": "Cruz" + "case_name_shorts": "Cruz", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -320,9 +368,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-06-054", "judges": "Hendrickson", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4247", "summaries": "The trial court did not err in granting summary judgment in favor of veterinarians that allegedly performed a botched spay procedure where the record reflects that the dog was owned by another at the time of the procedure and the record is devoid of any evidence that the veterinarians owed any duty of care to the plaintiff.", - "case_name_shorts": "Perelman" + "case_name_shorts": "Perelman", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -333,9 +383,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2020-11-120", "judges": "M. Powell", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-4240", "summaries": "Trial court did not abuse its discretion in declining to excuse a prospective juror for cause and in denying plaintiffs' motion to exclude the testimony of a defense expert witness as a sanction for discovery violation in a personal-injury action.", - "case_name_shorts": "Long" + "case_name_shorts": "Long", + "per_curiam": false }, { "case_dates": "2021-11-29", @@ -346,9 +398,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-02-008", "judges": "Byrne", + "lower_courts": "Clermont County Court", "citations": "2021-Ohio-4177", "summaries": "A defendant appeals from a judgment entry reimposing a nine-month prison sentence that the court believed it had ordered to be served consecutively to other sentences, but which the defendant had already served concurrently. The court's judgment entry sentencing the defendant led to an ambiguous result when it ordered the defendant to serve his sentence consecutive to one sentence but concurrently with another sentence, which, under the circumstances, was impossible. The ambiguity led to the presumption that the sentence was to be served concurrently. The court lacked jurisdiction to reimpose a sentence already served.", - "case_name_shorts": "Norris" + "case_name_shorts": "Norris", + "per_curiam": false }, { "case_dates": "2021-11-29", @@ -359,9 +413,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-07-022", "judges": "Piper", + "lower_courts": "Clinton County Court", "citations": "2021-Ohio-4178", "summaries": "The probate court must follow the statutory procedure set forth when determining the merits of an adoption petition so that on remand, the probate court shall determine whether the child's biological father was justified in having only de minimis contact with the child in the year prior to appellant's petition to adopt the child.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-22", @@ -372,9 +428,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2020-06-009", "judges": "Piper", + "lower_courts": "Preble County Court", "citations": "2021-Ohio-4116", "summaries": "The prosecution did not violate Brady where documents containing GPS coordinates of appellant's whereabouts were public record and not suppressed by the state. Nor were the documents material where the results of the trial would not have been different had the documents been in appellant's possession during trial. Appellant's convictions are not against the manifest weight of the evidence where the three victims of appellant's gross sexual imposition testified that appellant touched their vaginal areas against their will and the victim of appellant's sexual battery testified that appellant forced her to perform fellatio.", - "case_name_shorts": "Ward" + "case_name_shorts": "Ward", + "per_curiam": false }, { "case_dates": "2021-11-22", @@ -385,9 +443,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-06-059", "judges": "Hendrickson", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-4114", "summaries": "As appellant only filed a notice of appeal for one of his two municipal cases, appellate review was limited to the judgment from which appellant properly appealed. App.R. 3 and 4. Jail-time credit was properly awarded under R.C. 2967.191 for the time appellant spent in jail in lieu of bail.", - "case_name_shorts": "Soupe" + "case_name_shorts": "Soupe", + "per_curiam": false }, { "case_dates": "2021-11-22", @@ -398,9 +458,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-04-038", "judges": "S. Powell", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4117", "summaries": "The trial court did not err by instructing the jury on sexual battery in violation of R.C. 2907.03(A)(2) as a lesser included offense of rape in violation of R.C. 2907.02(A)(1)(a) given that sexual battery in violation of R.C. 2907.03(A)(2) is, in fact, a lesser included offense of rape in violation of R.C. 2907.02(A)(1)(a). Additionally, the trial court did not err by allowing the state to question appellant regarding his so-called pre-arrest, pre-Miranda silence where the state's questioning was not used as substantive evidence indicative of appellant's guilt, but instead used to impeach appellant's claim that he was \"[k]ind of\" surprised when the police arrived at his home with a search warrant the day after the alleged rape occurred. Lastly, appellant's conviction for sexual battery in violation of R.C. 2907.03(A)(2) was supported by sufficient evidence and not against the manifest weight of the evidence where the evidence, established appellant drugged the victim with a sleep aid prior to engaging in sexual conduct with the victim given the victim woke up after blacking out with her pants off, her tampon removed, and her underwear pulled down to her knees after having unwittingly engaged in a sexual encounter with appellant from which appellant's semen was found on swabs taken from the victim's perianal and anal areas.", - "case_name_shorts": "Jones" + "case_name_shorts": "Jones", + "per_curiam": false }, { "case_dates": "2021-11-22", @@ -411,9 +473,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-03-022", "judges": "Piper", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-4112", "summaries": "Appellant's conviction for failure to stop was supported by the manifest weight of the evidence where appellant hit another car in a grocery store parking lot but refused to give his information to the other car's owner or to the police within 24 hours of the accident. However, appellant's conviction for failure to control was erroneous where the ordinance that addresses failure to control specifically excludes enforcement within parking areas.", - "case_name_shorts": "Gill" + "case_name_shorts": "Gill", + "per_curiam": false }, { "case_dates": "2021-11-22", @@ -424,9 +488,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-01-001", "judges": "M. Powell", + "lower_courts": "Fayette County Court", "citations": "2021-Ohio-4115", "summaries": "The trial court did not abuse its discretion in excluding evidence terminating appellant's status as a mentally ill person subject to court order because the entry was insufficient to relieve appellant from his disability and did not tend to prove or disprove any fact of consequence in the case.", - "case_name_shorts": "Geddes" + "case_name_shorts": "Geddes", + "per_curiam": false }, { "case_dates": "2021-11-22", @@ -435,11 +501,13 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CA2021-06-052 CA2021-06-053 CA2021-06-056", + "docket_numbers": "CA2021-06-052; CA2021-06-053; CA2021-06-056", "judges": "Byrne", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4118", "summaries": "Juvenile court did not err in granting permanent custody of children to a children services agency where the evidence supporting a determination that permanent custody was in the best interest of the children. Mother was diagnosed with mental health issues, including schizoaffective disorder, that prevented her from parenting the children. Despite compliance with the agency's case plan, Mother did not believe she had mental health issues and her mental health deteriorated over the course of the case.", - "case_name_shorts": "In re R.F." + "case_name_shorts": "In re R.F.", + "per_curiam": false }, { "case_dates": "2021-11-22", @@ -450,9 +518,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-09-013", "judges": "S. Powell", + "lower_courts": "Brown County Court", "citations": "2021-Ohio-4111", "summaries": "The probate court's decision denying appellant's petition for adoption of her adult granddaughter was reversed and remanded to the probate court where appellant had established a kinship relationship with her granddaughter while her granddaughter was a minor and her granddaughter consented to the adoption, thereby satisfying the requirements for an adult adoption to go forward pursuant to R.C. 3107.02(B)(3).", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -463,9 +533,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-04-029", "judges": "M. Powell", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-4043", "summaries": "Appellant's conviction for violating a protection order was not against the manifest weight of the evidence and therefore supported by sufficient evidence. Victim received two calls from appellant's cell phone number and on answering one, recognized his voice berating her. Ultimately, the question was whether appellant or victim was more credible. Substantial deference is given to the trial court's determination of a witness's credibility. The trial court found victim more credible than appellant, and a review of the record shows that the trial court as trier of fact did not clearly lose its way and create a manifest miscarriage of justice.", - "case_name_shorts": "Terry" + "case_name_shorts": "Terry", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -476,9 +548,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-07-015", "judges": "M. Powell", + "lower_courts": "Fayette County Court", "citations": "2021-Ohio-4042", "summaries": "The juvenile court did not err in granting permanent custody of a child to Fayette County Children Services where the record reflects that the child has been in the temporary custody of the agency for at least 12 months of a consecutive 22-month period and the agency proved by clear and convincing evidence that a grant of permanent custody was in that child's best interest.", - "case_name_shorts": "In re M.N." + "case_name_shorts": "In re M.N.", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -489,9 +563,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-04-005", "judges": "Hendrickson", + "lower_courts": "Brown County Court", "citations": "2021-Ohio-4041", "summaries": "In ruling on the Civ.R. 12(B)(6) motion to dismiss for failure to state a claim upon which relief could be granted, the trial court could not take judicial notice of court proceedings in another case and could not rely on documents attached to appellee's motion as such documents were not attached to the complaint and no notice had been given that the court was construing the motion as a Civ.R. 56 motion for summary judgment. The trial court committed reversible error by relying on factual allegations outside of the complaint and by summarily reviewing the merits of appellant's causes of action for unjust enrichment, conversion, and willful and malicious misconduct.", - "case_name_shorts": "Conaway" + "case_name_shorts": "Conaway", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -502,9 +578,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2020-12-124", "judges": "Piper", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-3958", "summaries": "The trial court properly overruled appellant's motion to suppress where the officers had reasonable articulable suspicion to perform a Terry stop of appellant after he matched the description of a robbery suspect reported in a police dispatch and where the officers found appellant one block away from the location of the robbery and within 30 seconds of looking for a suspect.", - "case_name_shorts": "Walton" + "case_name_shorts": "Walton", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -515,9 +593,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-01-004", "judges": "Byrne", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-3959", "summaries": "Defendant appeals sentence. Defendant argued error in that he could be ordered to pay confinement costs under a statutory program. Defendant argued court erred in imposing costs of post-release control supervision. Sentencing entry did not impose confinement costs. No error in judgment appealed from. Argument re statutory program was speculative and unripe. Statute authorized court to impose the cost of post-release control supervision.", - "case_name_shorts": "Patterson" + "case_name_shorts": "Patterson", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -527,10 +607,12 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "CA2021-06-012", - "judges": "Per Curiam", + "judges": "", + "lower_courts": "Fayette County Court", "citations": "2021-Ohio-3963", "summaries": "Anders no error.", - "case_name_shorts": "Moon" + "case_name_shorts": "Moon", + "per_curiam": true }, { "case_dates": "2021-11-08", @@ -541,9 +623,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-02-008", "judges": "Byrne", + "lower_courts": "Fayette County Court", "citations": "2021-Ohio-3962", "summaries": "Defendant appeals denial of his postconviction motion to withdraw guilty plea and vacate sentence based on a claim that he served six years on a three-year sentence. Defendant failed to establish manifest injustice. Defendant's only claimed error was the calculation of his sentence, which occurred after the guilty plea. The defendant's claim that he served his sentence twice was unsubstantiated and there were no grounds to vacate the sentence.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -554,9 +638,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-03-028", "judges": "Piper", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-3960", "summaries": "Appellant failed to preserve his arguments on appeal once he failed to file objections to the magistrate's decision. Nor did appellant argue plain error on appeal and this court will not fashion arguments on behalf of appellant.", - "case_name_shorts": "Reynolds" + "case_name_shorts": "Reynolds", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -565,11 +651,13 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CA2021-06-072 CA2021-06-073 CA2021-07-083 CA2021-07-084", + "docket_numbers": "CA2021-06-072; CA2021-06-073; CA2021-07-083; CA2021-07-084", "judges": "Hendrickson", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-3961", "summaries": "The juvenile court did not err in granting permanent custody of the children to the children services agency where the record reflects that the children have been in the temporary custody of the agency for at least 12 months of a consecutive 22-month period and the state proved by clear and convincing evidence that a grant of permanent custody was in the children's best interests. Furthermore, the juvenile court did not commit plain error by not sua sponte granting a six-month extension of temporary custody to the children services agency to allow mother additional time to complete case plan services.", - "case_name_shorts": "In re J.M." + "case_name_shorts": "In re J.M.", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -580,9 +668,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-01-009", "judges": "M. Powell", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-3965", "summaries": "Domestic relations court did not abuse its discretion in giving husband sole and complete control over when to exercise the nontransferable marital stock options.", - "case_name_shorts": "Flores" + "case_name_shorts": "Flores", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -593,9 +683,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-01-003", "judges": "Hendrickson", + "lower_courts": "Clermont County Court", "citations": "2021-Ohio-3871", "summaries": "The trial court properly held that plaintiff bore the burden of proving entitlement to injunctive relief where plaintiff brought the action. Plaintiff did not meet that burden where its expert's testimony and exhibit were both ambiguous and unsupported. Defendant was not required to exhaust administrative remedies where plaintiff brought the action, and defendant was not given notice that the administrative decision was appealable.", - "case_name_shorts": "Jordan" + "case_name_shorts": "Jordan", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -606,9 +698,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2021-03-029", "judges": "S. Powell", + "lower_courts": "Butler County Court", "citations": "2021-Ohio-3870", "summaries": "The trial court did not err by denying appellant's motion to dismiss based on a violation of appellant's statutory speedy trial rights where the speedy trial time limit to bring appellant to trial was properly extended so that a necessary witness could appear at trial after that witness was not permitted by her employer to leave work to attend the trial and later showed symptoms of COVID-19, thereby preventing that witness from attending appellant's trial. Additionally, appellant's conviction for second-degree misdemeanor public indecency was supported by sufficient evidence and was not against the manifest weight of the evidence where the state provided extensive evidence that appellant recklessly exposed his private parts while outside of a take-out pizzeria restaurant under circumstances when a minor would have likely viewed and been affronted by appellant's conduct.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -617,11 +711,13 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "CA2021-04-030 CA2021-04-031 CA2021-04-032 CA2021-04-033", + "docket_numbers": "CA2021-04-030; CA2021-04-031; CA2021-04-032; CA2021-04-033", "judges": "M. Powell", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-3873", "summaries": "The juvenile court erred in adjudicating four siblings as dependent children under R.C. 2151.04(C) solely based upon the parents' drug use and without any evidence of actual adverse impact on the children.", - "case_name_shorts": "In re A.V." + "case_name_shorts": "In re A.V.", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -632,9 +728,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2020-08-044", "judges": "Byrne", + "lower_courts": "Warren County Court", "citations": "2021-Ohio-3872", "summaries": "Pro se defendant appeals decision granting judgment on pleadings. Defendant sued in foreclosure by condominium owners' association. Defendant counterclaimed, asserting numerous claims against association and various third-party defendants. Defendant abandoned many claims by failing to present argument. Defendant's complaint, liberally construed, plead breach of contract claims against the association. Decision reversed only with respect to the dismissal of those claims, and otherwise affirmed.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -645,8 +743,10 @@ "date_filed_is_approximate": false, "docket_numbers": "CA2020-12-074", "judges": "M. Powell", + "lower_courts": "Clermont County Court", "citations": "2021-Ohio-3779", "summaries": "The Board of Tax Appeals erred in valuing a property at the full purchase price of a sale without any allocation toward personalty.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohioctapp_1_example.compare.json b/tests/examples/opinions/united_states/ohioctapp_1_example.compare.json index ccb9e3d2d..4b5084824 100644 --- a/tests/examples/opinions/united_states/ohioctapp_1_example.compare.json +++ b/tests/examples/opinions/united_states/ohioctapp_1_example.compare.json @@ -8,9 +8,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210163", "judges": "Bock", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4425", "summaries": "CONTRACT \u2014 INSURANCE \u2014 POLICY EXCLUSION \u2014 ASSAULT \u2014 BATTERY \u2014 POLICY ENDORSEMENT \u2014 PHYSICAL ABUSE: The trial court erred when it declared that an insurance policy assault or battery exclusion applied to claims stemming from the acts of a person incapable of governing his conduct in accordance with reason. [See CONCURRENCE: The Supreme Court of Ohio should revisit its holding in Nationwide Ins. Co. v. Estate of Kolstedt, 71 Ohio St.3d 624, 646 N.E.2d 816 (1995), that an exclusion for intentional injuries in an insurance policy did not apply where the insured was mentally incapable of committing an intentional act.]", - "case_name_shorts": "Krewina" + "case_name_shorts": "Krewina", + "per_curiam": false }, { "case_dates": "2021-12-15", @@ -21,9 +23,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210235", "judges": "Crouse", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4388", "summaries": "NEW TRIAL\u2014COUNSEL: The common pleas court properly declined to entertain defendant's pro se presentence motion under Crim.R. 33(A) for a new trial, and the motion could not be supplemented or amended, because the motion was a legal nullity, when defendant filed the motion while he was represented by counsel, and counsel did not join in the motion or otherwise indicate support for it. The common pleas court did not abuse its discretion in denying, without a hearing, the relief sought in defendant's Crim.R. 33(A) motion for a new trial, when that motion was not timely filed, and leave under Crim.R. 33(B) to move for a new trial out of time was neither sought nor warranted.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-15", @@ -34,9 +38,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-200369", "judges": "Winkler", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4387", "summaries": "MUNICIPAL \u2014 REAL PROPERTY \u2014 PUBLIC NUISANCE \u2014PROCEDURE/RULES \u2014 R.C. 3767.41(E) \u2014 APPELLATE REVIEW/CIVIL: The trial court did not err by dismissing defendant building owner's counterclaim seeking demolition of its own building that was alleged to be a public nuisance in a statutory-public-nuisance action brought by plaintiff city, because R.C. 3767.41(E) only afforded the owner the right to make a written request for demolition. The trial court did not err by granting summary judgment to the city on collections claims against a building owner for unpaid fees and fines arising under the city's municipal code where the owner admitted it owed the fees and fines and failed to pay them and the owner's challenge to the fees and fines as unconstitutional under the Excessive Fines Clause was untimely. A request for an advisory opinion from the appellate court is not a proper assignment of error and will be disregarded.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -47,9 +53,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-200167", "judges": "Bergeron", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4329", "summaries": "NEGLIGENCE \u2013 MEDICAL MALPRACTICE \u2013 CAUSATION: The trial court erred in failing to grant a directed verdict in favor of defendant surgeon where defendant's conduct in recommending a surgery that plaintiff declined to have was not the direct and proximate cause of the plaintiff's injury.", - "case_name_shorts": "Walls" + "case_name_shorts": "Walls", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -60,9 +68,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210309", "judges": "Bock", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4331", "summaries": "SENTENCING \u2013 R.C. 2919.13: The trial court properly imposed the 12-month prison sentence where, although this was defendant's first felony conviction, his conviction for improperly handling a firearm in a motor vehicle under R.C. 2923.16(B) encompasses having a firearm \"on or about the offender's person or under the offender's control,\" which is an exception under R.C. 2929.13(B)(1)(b)(i) where a trial court can impose a prison sentence, instead of community control, for a fourth-degree felony.", - "case_name_shorts": "Jones" + "case_name_shorts": "Jones", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -73,9 +83,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-200395, C-200396", "judges": "Zayas", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4330", "summaries": "CONFRONTATION\u2014HARMLESS ERROR\u2014R.C. 959.131(B)\u2014EVIDENCE\u2014SUFFICIENCY: Any violation of defendant's right to confrontation of a witness who testified through zoom technology was harmless error where the remaining evidence, absent the testimony in question, was sufficient to support the convictions. [See CONCURRENCE: While any violation of defendant's right to confront witnesses would constitute harmless error in this case, Ohio courts should reassess the scope of Ohio's Confrontation Clause in light of textual and historical differences between Ohio's Confrontation Clause and the federal Confrontation Clause.] Defendant's convictions for cruelty against a companion animal were supported by sufficient evidence and not against the manifest weight of the evidence where the evidence established that he hit the dogs multiple times and threw a crate at the dogs.", - "case_name_shorts": "Banks" + "case_name_shorts": "Banks", + "per_curiam": false }, { "case_dates": "2021-12-08", @@ -86,9 +98,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-200365", "judges": "Crouse", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4271", "summaries": "COUNSEL \u2013 PLEA \u2013 COMPETENCY \u2013 SENTENCE \u2013 POSTRELEASE CONTROL: The trial court did not err in declining to appoint new defense counsel where defendant withdrew his motion to appoint new counsel. The trial court did not err in finding defendant competent to stand trial where he was found to be competent by two doctors in separate evaluations, and there is no evidence in the record that defendant did not understand the nature and objective of the proceedings or that he was unable to assist in his defense. The trial court properly informed defendant at the sentencing hearing and in the sentencing entry that he was subject to mandatory postrelease control, and therefore, defendant's sentences were not void. The trial court conflated the concepts of postrelease control and parole and made contradictory statements regarding the mandatory nature of postrelease control during the plea hearing, but defendant failed to demonstrate that his pleas were not made knowingly, voluntarily, and intelligently because he could not show prejudice as a result of the court's errors. Because defendant's sentences were jointly-recommended nonmandatory consecutive sentences, the trial court was not required to make the consecutive-sentences findings. Because defendant's sentences were jointly recommended and authorized by law, the sentences are not subject to appellate review pursuant to R.C. 2953.08(D)(1).", - "case_name_shorts": "Singleton" + "case_name_shorts": "Singleton", + "per_curiam": false }, { "case_dates": "2021-12-08", @@ -99,9 +113,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210151", "judges": "Myers", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4274", "summaries": "POSTCONVICTION: The common pleas court's entry denying defendant's R.C. 2953.21 petition for postconviction relief is reversed, and the cause is remanded, because the court's findings of fact and conclusions of law did not conform with the requirements of R.C. 2953.21(H): the findings of fact and conclusions of law were not adequate to their purposes, when they did not specify which postconviction claims (if any) were barred by res judicata or what parts of the record were found to have established the bar, and when they did not address the material and determinative issues presented by the petition or apprise defendant or the appeals court of the legal or evidentiary bases for the conclusion that the petition and its supporting evidence did not demonstrate substantive grounds for relief.", - "case_name_shorts": "Lavender" + "case_name_shorts": "Lavender", + "per_curiam": false }, { "case_dates": "2021-12-08", @@ -112,9 +128,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-200437", "judges": "Bock", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4272", "summaries": "SUMMARY JUDGMENT \u2013 FOREIGN LIMITED LIABILITY COMPANIES \u2013 REGISTRATION \u2013 R.C. 1705.58 \u2013 STANDING: The trial court did not err in entering summary judgment in favor of defendant Ohio company against plaintiff Pennsylvania company where, pursuant to R.C. 1705.58, plaintiff's business activities within the state required it to register with the Ohio Secretary of State before it could maintain a lawsuit in Ohio, which plaintiff did not do, and therefore, plaintiff lacked standing to file the lawsuit.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-08", @@ -125,9 +143,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210252", "judges": "Bock", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4276", - "summaries": "CONTRACTS \u2013 PROMISSORY ESTOPPEL: The trial court did not err in granting summary judgment in defendant's favor on a breach-of-contract claim where the contract unambiguously absolved defendant of personal financial liability. The trial court did not err by not addressing plaintiff's promissory estoppel claim where the complaint did not allege that defendant had breached an oral promise rather, because the claim was based on a signed written agreement, promissory estoppel did not apply and plaintiff could not prevail on that claim.", - "case_name_shorts": "Abbott" + "summaries": "CONTRACTS \u2013 PROMISSORY ESTOPPEL: The trial court did not err in granting summary judgment in defendant's favor on a breach-of-contract claim where the contract unambiguously absolved defendant of personal financial liability. The trial court did not err by not addressing plaintiff's promissory estoppel claim where the complaint did not allege that defendant had breached an oral promise; rather, because the claim was based on a signed written agreement, promissory estoppel did not apply and plaintiff could not prevail on that claim.", + "case_name_shorts": "Abbott", + "per_curiam": false }, { "case_dates": "2021-12-08", @@ -138,9 +158,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210215", "judges": "Zayas", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4275", "summaries": "CHILDREN \u2013 PERMANENT CUSTODY \u2013 BEST INTEREST \u2013 R.C. 2151.414: The juvenile court did not err in granting permanent custody of mother's children to the Hamilton County Department of Job and Family Services where clear and convincing evidence supported the court's finding that an award of permanent custody was in children's best interest.", - "case_name_shorts": "In re N.M." + "case_name_shorts": "In re N.M.", + "per_curiam": false }, { "case_dates": "2021-12-08", @@ -151,9 +173,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210010", "judges": "Zayas", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4273", "summaries": "RESTITUTION\u2014R.C. 2152.20\u2014JUVENILE: The juvenile court did not abuse its discretion when ordering restitution based on medical bills admitted as evidence where witness testimony supported the amount shown as due on the medical bills as the actual amount owed by the victim.", - "case_name_shorts": "In re A.B." + "case_name_shorts": "In re A.B.", + "per_curiam": false }, { "case_dates": "2021-12-03", @@ -164,9 +188,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210180", "judges": "Winkler", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4217", - "summaries": "ZONING: The trial court did not abuse its discretion in determining that a decision of the board of zoning appeals was unsupported by the preponderance of substantial, reliable, and probative evidence on the record, and ordering the board to grant appellees' conditional-use permit for a proposed soccer field: The board denied the conditional-use permit based on concerns over increased traffic, traffic-safety hazards, and compatibility with the surrounding neighborhood, and appellees presented testimony from a traffic expert who concluded that the proposed field would not present a traffic concern testimony from neighboring residents regarding noise and actions attributed to the soccer-club participants did not indicate that the level of interference with the community was in any way pervasive such that it would rise to the level of being \"disruptive\" to the surrounding area and because the proposed use involves mostly an open, grassy field used by children for recreational purposes, it aligns with permitted uses in the zoning district, such as open space and parks.", - "case_name_shorts": "Kinney" + "summaries": "ZONING: The trial court did not abuse its discretion in determining that a decision of the board of zoning appeals was unsupported by the preponderance of substantial, reliable, and probative evidence on the record, and ordering the board to grant appellees' conditional-use permit for a proposed soccer field: The board denied the conditional-use permit based on concerns over increased traffic, traffic-safety hazards, and compatibility with the surrounding neighborhood, and appellees presented testimony from a traffic expert who concluded that the proposed field would not present a traffic concern; testimony from neighboring residents regarding noise and actions attributed to the soccer-club participants did not indicate that the level of interference with the community was in any way pervasive such that it would rise to the level of being \"disruptive\" to the surrounding area; and because the proposed use involves mostly an open, grassy field used by children for recreational purposes, it aligns with permitted uses in the zoning district, such as open space and parks.", + "case_name_shorts": "Kinney", + "per_curiam": false }, { "case_dates": "2021-12-03", @@ -177,9 +203,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210313", "judges": "Bergeron", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4218", "summaries": "R.C. 1925.04 \u2013 PERSONAL JURISDICTION \u2013 SERVICE \u2013 COMPLAINT \u2013 SMALL CLAIMS COURT \u2013 PROCEDURE/RULES: Plaintiff established personal jurisdiction over defendants by alleging breach of contract and introducing a lease between itself and defendants for real property located in Ohio. The clerk did not err by serving defendants with the magistrate's decision via ordinary mail despite delays in the United States postal system. The magistrate did not err by denying defendants' Civ.R. 60(B) motion when defendants failed to demonstrate that they had a meritorious claim or defense to present if relief were granted. Plaintiff's complaint for breach of contract was not defective under Civ.R. 10(D)(1) for failure to attach the lease to the complaint because Civ.R. 10(D)(1) does not apply to complaints filed in the small claims division.", - "case_name_shorts": "Harvey" + "case_name_shorts": "Harvey", + "per_curiam": false }, { "case_dates": "2021-12-01", @@ -190,9 +218,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-190752, C-190753", "judges": "Crouse", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4197", - "summaries": "CONSTITUTIONAL LAW/CRIMINAL \u2013 COUNSEL \u2013 DUE PROCESS \u2013 COMPULSORY PROCESS \u2013 EXCULPATORY EVIDENCE \u2013 CONFRONTATION CLAUSE \u2013 R.C. 2945.481 \u2013 EXPERT WITNESS \u2013 HEARSAY \u2013 EVID.R. 404(B) \u2013 MISTRIAL \u2013 INDICTMENT \u2013 RAPE \u2013 SEXUAL BATTERY \u2013 GROSS SEXUAL IMPOSITION \u2013 SENTENCING: Defendant was not denied due process or the effective assistance of counsel where, although the assistant prosecutor's search of defendant's legal paperwork was clearly improper, the appointment of a special prosecutor neutralized any possible prejudice resulting from the search. The trial court's denial of defendant's motion to compel and subpoenas requesting surveillance video footage did not violate defendant's right to compulsory process or amount to a suppression of favorable evidence because the video footage was irrelevant to the question of defendant's guilt or punishment. The trial court did not err in allowing a child witness to testify via remote video where the witness qualified as a \"victim\" under R.C. 2945.481, there was competent and credible evidence supporting the court's finding that one of the conditions in 2945.481(E) existed, the witness testified under oath and was subject to cross-examination, and there is no evidence that the witness's demeanor was not observable by the jury. The trial court did not abuse its discretion in allowing a witness qualified as an expert in forensic interviewing to testify that the victim's behaviors were consistent with those of other sexually-abused children. The trial court did not err in admitting text messages sent between defendant and the victim where defendant's text messages represented nonhearsay admissions of a party-opponent, the victim's statements were admissible to provide context, and the victim testified at trial about the text messages and was subject to cross-examination. Testimony that the family had been evicted from their home potentially constituted bad-acts evidence inadmissible under Evid.R. 404(B), but the admission of such testimony was not obvious error that affected the outcome of the trial. The trial court did not abuse its discretion in denying defendant's motion for a mistrial based upon his contention that the jury viewed him being escorted out of the courtroom by sheriff's deputies while wearing handcuffs any viewing that did occur was brief and inadvertent, and the court instructed the jury to decide the case upon the facts and jury instructions and not to be swayed by sympathy or prejudice. Defendant's right to due process was not violated by the time periods alleged in the indictments because the time periods were not so overly broad as to prevent defendant from presenting an effective defense. The trial court did not abuse its discretion in permitting the state to amend the time period alleged in count seven of the indictment in the case numbered B-1800423 because the amendment did not change the identity of the charge or the nature of the conduct alleged and defendant had already been put on notice by the other charges that he would have to defend against allegations of abuse during the amended time period. Defendant's convictions for rape, sexual battery, and gross sexual imposition were based upon sufficient evidence and not against the manifest weight of the evidence where the victim testified to specific, distinguishable instances of sexual conduct and sexual contact with defendant around the time periods alleged in the indictments, and the totality of the evidence shows the jury did not clearly lose its way and create a manifest miscarriage of justice. Defendant failed to demonstrate that his sentences were contrary to law where the trial court made the required consecutive-sentencing findings at the sentencing hearing and in the sentencing entry, and defendant failed to show that the trial court did not comply with R.C. 2929.11 or 2929.12.", - "case_name_shorts": "Svoboda" + "summaries": "CONSTITUTIONAL LAW/CRIMINAL \u2013 COUNSEL \u2013 DUE PROCESS \u2013 COMPULSORY PROCESS \u2013 EXCULPATORY EVIDENCE \u2013 CONFRONTATION CLAUSE \u2013 R.C. 2945.481 \u2013 EXPERT WITNESS \u2013 HEARSAY \u2013 EVID.R. 404(B) \u2013 MISTRIAL \u2013 INDICTMENT \u2013 RAPE \u2013 SEXUAL BATTERY \u2013 GROSS SEXUAL IMPOSITION \u2013 SENTENCING: Defendant was not denied due process or the effective assistance of counsel where, although the assistant prosecutor's search of defendant's legal paperwork was clearly improper, the appointment of a special prosecutor neutralized any possible prejudice resulting from the search. The trial court's denial of defendant's motion to compel and subpoenas requesting surveillance video footage did not violate defendant's right to compulsory process or amount to a suppression of favorable evidence because the video footage was irrelevant to the question of defendant's guilt or punishment. The trial court did not err in allowing a child witness to testify via remote video where the witness qualified as a \"victim\" under R.C. 2945.481, there was competent and credible evidence supporting the court's finding that one of the conditions in 2945.481(E) existed, the witness testified under oath and was subject to cross-examination, and there is no evidence that the witness's demeanor was not observable by the jury. The trial court did not abuse its discretion in allowing a witness qualified as an expert in forensic interviewing to testify that the victim's behaviors were consistent with those of other sexually-abused children. The trial court did not err in admitting text messages sent between defendant and the victim where defendant's text messages represented nonhearsay admissions of a party-opponent, the victim's statements were admissible to provide context, and the victim testified at trial about the text messages and was subject to cross-examination. Testimony that the family had been evicted from their home potentially constituted bad-acts evidence inadmissible under Evid.R. 404(B), but the admission of such testimony was not obvious error that affected the outcome of the trial. The trial court did not abuse its discretion in denying defendant's motion for a mistrial based upon his contention that the jury viewed him being escorted out of the courtroom by sheriff's deputies while wearing handcuffs; any viewing that did occur was brief and inadvertent, and the court instructed the jury to decide the case upon the facts and jury instructions and not to be swayed by sympathy or prejudice. Defendant's right to due process was not violated by the time periods alleged in the indictments because the time periods were not so overly broad as to prevent defendant from presenting an effective defense. The trial court did not abuse its discretion in permitting the state to amend the time period alleged in count seven of the indictment in the case numbered B-1800423 because the amendment did not change the identity of the charge or the nature of the conduct alleged and defendant had already been put on notice by the other charges that he would have to defend against allegations of abuse during the amended time period. Defendant's convictions for rape, sexual battery, and gross sexual imposition were based upon sufficient evidence and not against the manifest weight of the evidence where the victim testified to specific, distinguishable instances of sexual conduct and sexual contact with defendant around the time periods alleged in the indictments, and the totality of the evidence shows the jury did not clearly lose its way and create a manifest miscarriage of justice. Defendant failed to demonstrate that his sentences were contrary to law where the trial court made the required consecutive-sentencing findings at the sentencing hearing and in the sentencing entry, and defendant failed to show that the trial court did not comply with R.C. 2929.11 or 2929.12.", + "case_name_shorts": "Svoboda", + "per_curiam": false }, { "case_dates": "2021-12-01", @@ -203,9 +233,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210178", "judges": "Bergeron", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4199", "summaries": "JUVENILE \u2013 HEARSAY \u2013 EVIDENCE \u2013 R.C. 2925.11 \u2013 DRUGS: An anonymous tip alleging that the juvenile was selling drugs was inadmissible hearsay where the prosecutor conceded that the purpose of introducing the statement was to show that the juvenile had the requisite mental state for the offense of possession of drugs, rather than to provide background on investigatory conduct by the prosecution witnesses, but the admission of this hearsay statement constituted harmless error where the record revealed that the trial court's judgment did not rely on the hearsay statement. The trial court did not abuse its discretion by admitting a photograph of the contents of the juvenile's purse where the photograph was probative of whether the juvenile had actual possession of drugs, did not rise to the level of unduly prejudicial evidence, and was not used as character evidence by the trial court. The trial court's adjudication was not against the weight of the evidence because the trial court could resolve conflicting testimony in favor of the prosecution. The state presented sufficient evidence for a rational trier of fact to conclude beyond a reasonable doubt that the juvenile knowingly possessed drugs when an officer testified that the defendant admitted that she got the drugs \"from someone on the street.\"", - "case_name_shorts": "In re A.K." + "case_name_shorts": "In re A.K.", + "per_curiam": false }, { "case_dates": "2021-11-30", @@ -216,9 +248,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210131", "judges": "Winkler", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4198", - "summaries": "NEW TRIAL: The common pleas court did not abuse its discretion in denying defendant's Crim.R. 33(A)(6) motion for a new trial on the ground of newly discovered evidence: the court denied the motion upon its finding that the newly discovered evidence would not create the possibility of a different outcome if a new trial were granted and that finding was not demonstrably the product of an arbitrary or unconscionable attitude and was supported by a sound reasoning process.", - "case_name_shorts": "Cannon" + "summaries": "NEW TRIAL: The common pleas court did not abuse its discretion in denying defendant's Crim.R. 33(A)(6) motion for a new trial on the ground of newly discovered evidence: the court denied the motion upon its finding that the newly discovered evidence would not create the possibility of a different outcome if a new trial were granted; and that finding was not demonstrably the product of an arbitrary or unconscionable attitude and was supported by a sound reasoning process.", + "case_name_shorts": "Cannon", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -229,9 +263,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-200380", "judges": "Winkler", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4160", "summaries": "NEW TRIAL: The common pleas court did not err in denying defendant's Crim.R. 33(B) motion for leave to file a Crim.R. 33(A)(6) motion for a new trial on the ground of newly discovered evidence, when defendant failed to sustain his burden of presenting clear and convincing evidence demonstrating that he had been unavoidably prevented from timely discovering the evidence upon which his motion depended.", - "case_name_shorts": "Scott" + "case_name_shorts": "Scott", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -242,9 +278,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210124", "judges": "Crouse", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4161", "summaries": "PREMISES LIABILITY \u2013 OPEN AND OBVIOUS: The trial court erred in granting summary judgment in favor defendants property owner and manager on plaintiff's personal-injury claim where the hazard posed by the slabs of pool table slates that caused plaintiff's injury was not open obvious because reasonable minds could differ as to whether the slabs' weight and their potential to fall would have been observable by a reasonable person through ordinary inspection.", - "case_name_shorts": "McClain" + "case_name_shorts": "McClain", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -255,9 +293,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210201", "judges": "Myers", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4163", "summaries": "CIV.R. 12(B)(6) \u2013 MOTION TO DISMISS \u2013 42 U.S.C. 1983: A private attorney appointed to represent an indigent defendant does not act under color of state law for purposes of a 42 U.S.C. 1983 civil-rights action.", - "case_name_shorts": "DeWine" + "case_name_shorts": "DeWine", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -268,9 +308,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210234", "judges": "Bock", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4094", "summaries": "DEATH PENALTY \u2014 SIXTH AMENDMENT \u2014 JURY VERDICT \u2014 SENTENCING \u2014 R.C. 2929.03 \u2014 R.C. 2929.04: Ohio's capital sentencing statute did not violate defendant's Sixth Amendment right to a jury trial, there were no irregularities in defendant's sentencing hearing to warrant a new mitigation hearing where the trial court, prosecutor, and defense counsel accurately described the jury's role under Ohio law.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-17", @@ -281,9 +323,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210200", "judges": "Bock", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4076", "summaries": "JURY TRIAL \u2014 CRIM.R. 23(A) \u2014 JURY DEMAND \u2014 JURISDICTION \u2014R.C. 2945.17: The trial court lacked jurisdiction to conduct a bench trial for misdemeanor offenses that carried the possibility of incarceration, when the defendant filed a timely jury demand in writing and did not waive that right.", - "case_name_shorts": "White" + "case_name_shorts": "White", + "per_curiam": false }, { "case_dates": "2021-11-17", @@ -294,9 +338,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210299, C210300", "judges": "Zayas", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4077", "summaries": "EVIDENCE \u2013 SUFFICIENCY \u2013 MANIFEST WEIGHT \u2013 DOMESTIC VIOLENCE \u2013 COUNSEL \u2013 INEFFECTIVE ASSISTANCE \u2013 CONSECUTIVE SENTENCES: Defendant's conviction for domestic violence was supported by sufficient evidence and was not against the weight of the evidence where credible testimony established that defendant was a household member and intended to cause physical harm to the victim. Defense counsel was not ineffective for failing to move for an acquittal where defendant failed to establish that he was prejudiced because the evidence was sufficient to establish guilt. Defense counsel was not ineffective for initially failing to bring a body-camera recording to court where counsel retrieved the recording, and the recording was admitted into evidence. The trial court did not err in imposing consecutive sentences because the record clearly and convincingly supported the trial court's findings.", - "case_name_shorts": "Roland" + "case_name_shorts": "Roland", + "per_curiam": false }, { "case_dates": "2021-11-17", @@ -307,9 +353,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210109", "judges": "Bock", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4074", - "summaries": "CRIM.R. 32.1\u2014INEFFECTIVE ASSISTANCE OF COUNSEL\u2014JURISDICTION\u2014RES JUDICATA: The municipal court did not abuse its discretion in denying, without a hearing, defendant's postsentence motion under Crim.R. 32.1 to withdraw his guilty plea on the ground that trial counsel had been ineffective concerning the plea: the challenge depended for its resolution upon evidence outside the record of the proceedings leading to his conviction therefore, the motion was not subject to dismissal for lack of jurisdiction under the rule of State ex rel. Special Prosecutors v. Judges, 55 Ohio St.2d 94, 97-98, 378 N.E.2d 162 (1978), and its challenge to trial counsel's effectiveness was not barred under the doctrine of res judicata but defendant failed to sustain his burden of showing that withdrawal of his plea was necessary to correct a manifest injustice, when he did not support the motion with the outside evidence upon which it depended.", - "case_name_shorts": "Harris" + "summaries": "CRIM.R. 32.1\u2014INEFFECTIVE ASSISTANCE OF COUNSEL\u2014JURISDICTION\u2014RES JUDICATA: The municipal court did not abuse its discretion in denying, without a hearing, defendant's postsentence motion under Crim.R. 32.1 to withdraw his guilty plea on the ground that trial counsel had been ineffective concerning the plea: the challenge depended for its resolution upon evidence outside the record of the proceedings leading to his conviction; therefore, the motion was not subject to dismissal for lack of jurisdiction under the rule of State ex rel. Special Prosecutors v. Judges, 55 Ohio St.2d 94, 97-98, 378 N.E.2d 162 (1978), and its challenge to trial counsel's effectiveness was not barred under the doctrine of res judicata; but defendant failed to sustain his burden of showing that withdrawal of his plea was necessary to correct a manifest injustice, when he did not support the motion with the outside evidence upon which it depended.", + "case_name_shorts": "Harris", + "per_curiam": false }, { "case_dates": "2021-11-17", @@ -320,9 +368,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210192", "judges": "Bergeron", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4075", "summaries": "OHIO CONSUMER SALES PRACTICE ACT \u2013 OHIO ADM.CODE 109:4-3-13: The trial court erred in granting a garageman's lien to a mechanic where the mechanic committed a deceptive act pursuant to Ohio Adm.Code 109:4-3-13, thus negating any possessory right the mechanic obtained in the vehicle.", - "case_name_shorts": "Marreez" + "case_name_shorts": "Marreez", + "per_curiam": false }, { "case_dates": "2021-11-17", @@ -333,9 +383,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-190514", "judges": "Bergeron", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4073", "summaries": "SANCTIONS \u2013 R.C. 2323.51 \u2013 FRIVOLOUS CONDUCT: The trial court did not err by determining that plaintiff's conduct in filing duplicative claims constituted frivolous conduct under R.C. 2323.51(A)(2)(a)(II) where no reasonable attorney would have brought the action in light of existing law. The trial court did not abuse its discretion by determining the plaintiff's conduct in filing duplicative claims constituted frivolous conduct under R.C. 2323.51(A)(2)(a)(I) where the claim caused unnecessary delay and a needless increase in the cost of litigation.", - "case_name_shorts": "Bachman" + "case_name_shorts": "Bachman", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -346,9 +398,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210133", "judges": "Winkler", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4003", "summaries": "MUNICIPAL \u2013 TAXATION \u2013 DUE PROCESS \u2013 CONSTITUTIONAL LAW/CIVIL: The assessments set forth in the city's ordinances regulating alarm businesses and alarm users constitute taxes rather than fees under the factors set forth in State ex rel. Petroleum Underground Storage Tank Release Comp. Bd. v. Withrow, 62 Ohio St.3d 111, 579 N.E.2d 705 (1991), and Am. Landfill, Inc. v. Stark/Tuscarawas/Wayne Joint Solid Waste Mgt. Dist., 166 F.3d 835 (6th Cir.1999), because the funds from the assessments are placed in the general fund, not in a specifically-dedicated fund, no services are provided directly to the payers of the assessments that are not provided to all city residents, there is no provision providing that excess funds from the assessments must be used for purposes related to false alarms, the assessments are imposed by city council, which is a legislative body, and the assessments can be expended for general public purposes. The assessments set forth in the city's ordinance regulating alarm business and alarm users violate the Due Process Clauses of the Ohio and United States Constitutions because they do not bear a reasonable relationship to protections, benefits or opportunities provided by the city to those paying the assessments. [See CONCURRENCE: If the city chooses to amend the current ordinance or pass another ordinance regulating alarm systems and false alarms, the ordinance must not interfere with private rights beyond the necessities of the situation, must bear a real and substantial relation to public health, safety and welfare, and must not be unreasonable or arbitrary.]", - "case_name_shorts": "White" + "case_name_shorts": "White", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -359,9 +413,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-200423, C-200424", "judges": "Zayas", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4001", "summaries": "COUNSEL \u2013 INEFFECTIVE ASSISTANCE \u2013 JURY DEMAND \u2013 RIGHT TO COUNSEL \u2013 JUDICIAL BIAS \u2013 MANIFEST WEIGHT OF THE EVIDENCE \u2013 THEFT: Defense counsel was not ineffective for failing to file a jury demand on a petty offense where defendant could not demonstrate that the result of the bench trial would have been different had defense counsel filed a jury demand. The trial court did not deprive defendant of the right to counsel where the trial court required defense counsel to conduct the trial instead of the legal intern. The trial court's comments toward defense counsel did not exhibit judicial bias where the record reflects that the trial court's rulings were based on the trial testimony and not bias or prejudice. Defendant's convictions for theft were not against the manifest weight of the evidence where the trial court determined that the testimony of the witnesses was credible.", - "case_name_shorts": "Escobar" + "case_name_shorts": "Escobar", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -372,9 +428,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210227", "judges": "Winkler", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4004", "summaries": "EVIDENCE \u2014 EVID.R. 404(B): Defendant's conviction for committing domestic violence against the mother of his child was not against the manifest weight of the evidence, where mother's testimony that defendant lashed her with a belt and choked her, corroborated by the physical evidence, was credible. The trial court did not err in admitting evidence of defendant's uncharged acts of domestic violence relating to his child in contravention of Evid.R. 404(B), when such inextricably intertwined acts were an integral part of the immediate context of defendant's perpetration of the charged offense and tended logically to prove defendant committed the charged offense.", - "case_name_shorts": "David" + "case_name_shorts": "David", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -385,9 +443,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-200462", "judges": "Zayas", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4002", "summaries": "EVIDENCE \u2013 SUFFICIENCY \u2013 MANIFEST WEIGHT \u2013 THEFT: Defendant's conviction for theft was supported by sufficient evidence and was not against the weight of the evidence where credible testimony established that defendant placed items in a shopping bag and left the store without paying for them.", - "case_name_shorts": "Champion" + "case_name_shorts": "Champion", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -398,9 +458,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-200417", "judges": "Crouse", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4000", "summaries": "VOYEURISM \u2013 CIRCUMSTANTIAL EVIDENCE \u2013 EVID.R. 404(B) \u2013 EVID.R. 403(A) \u2013 FORFEITURE \u2013 WAIVER: Defendant's conviction for voyeurism was based upon sufficient evidence and was not against the manifest weight of the evidence where his secretive tactics and unusual conduct in filming the victim in a state of undress under the partition of a bathroom stall permitted the jury to infer that he acted with a sexual purpose. The trial court did not violate Evid.R. 404(B) or 403(A) in admitting evidence that defendant had recorded approximately 30 videos of individuals under bathroom stalls because the evidence was probative of defendant's specific intent in recording the videos, which was a material issue at trial. Defendant waived appellate review of the forfeiture of his cell phone where defense counsel stated at sentencing that there was no objection to forfeiture of the cell phone.", - "case_name_shorts": "Armstead" + "case_name_shorts": "Armstead", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -411,9 +473,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210441", "judges": "Crouse", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-4005", "summaries": "CHILDREN \u2013 PERMANENT CUSTODY \u2013 BEST INTEREST \u2013 R.C. 2151.414: The juvenile court did not abuse its discretion by denying mother's motion for a continuance where mother sought to give a relative time to file a custody petition, because no custody petition had been filed, a home study was incomplete, and the relative failed a prior home study for noncompliance. The juvenile court did not err in determining that permanent custody was in the best interest of J.H. where he could not be placed with either of his parents within a reasonable time due to factors in R.C. 2151.414(E), and the court's best-interest analysis was well-supported by the record.", - "case_name_shorts": "In re J.H." + "case_name_shorts": "In re J.H.", + "per_curiam": false }, { "case_dates": "2021-11-03", @@ -424,9 +488,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-200381", "judges": "Crouse", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3920", "summaries": "R.C. 163.21(A) \u2013 R.C. 163.62(A) \u2013 STATUTORY INTERPRETATION \u2013 EMINENT DOMAIN: The trial court did not err in holding that employee-retention bonuses paid by appellant business after appellee Ohio Department of Transportation abandoned its proposed appropriation of appellant's property were not recoverable as \"other actual expenses\" under R.C. 163.21(A)(2) because the bonuses related to the conduct of the business and not the presentation of appellant's case in the appropriation proceeding. [But see CONCURRENCE: Statutory interpretation of R.C. 163.21(A)(2) is unnecessary because a trial court has broad discretion in determining a \"just\" amount of expenses to be charged an appropriating agency after abandonment, and the trial court did not abuse its discretion in determining that it would be unjust to require appellee to repay appellant for expenses it incurred as a result of a business decision to retain employees.] The trial court did not err in holding that employee-retention bonuses paid by appellant were not recoverable under R.C. 163.62(A) because the bonuses related to the conduct of the business and not the presentation of appellant's case in the appropriation proceeding.", - "case_name_shorts": "Wray" + "case_name_shorts": "Wray", + "per_curiam": false }, { "case_dates": "2021-11-03", @@ -437,9 +503,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210158, C-210159", "judges": "Bock", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3915", "summaries": "SUFFICIENCY OF EVIDENCE \u2013 MANIFEST WEIGHT OF THE EVIDENCE \u2013 R.C. 4511.19(A)(1)(a): The trial court's judgment was supported by sufficient evidence because a reasonable person could have found that the state proved beyond a reasonable doubt that defendant operated a motor vehicle while under the influence of alcohol: a witness testified that he saw defendant try to get out of the driver's side of the overturned vehicle, defendant admitted to the officer that she had been driving, defendant admitted to a nurse that she had made a mistake, and defendant admitted that she had been intoxicated. The trial court's judgments were not against the weight of the evidence where the credibility of the witnesses and the evidence was primarily for the trier of fact and the court did not lose its way in arriving at its verdicts.", - "case_name_shorts": "Wildeboer" + "case_name_shorts": "Wildeboer", + "per_curiam": false }, { "case_dates": "2021-11-03", @@ -450,9 +518,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210001", "judges": "Bock", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3918", "summaries": "GUILTY PLEA \u2013 CRIM.R. 11(C) \u2013 R.C. 2929.144 \u2013 SENTENCING: Defendant's guilty plea was not entered knowingly, intelligently, and voluntarily where the trial court failed to comply with Crim.R. 11(C)(2)(a) and R.C. 2929.144 when the court advised defendant of the maximum sentence possible under the former statutory scheme at defendant's plea hearing, and defendant's signed written plea agreement reflected the same, and the court pronounced a sentence under the former statutory scheme at her sentencing hearing, but the court then imposed a sentence under the Reagan Tokes Law in the sentencing entry.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-03", @@ -463,9 +533,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210461, C-200463, C-200464, C-200465", "judges": "Bergeron", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3919", - "summaries": "EVIDENCE \u2013 CONFLICT OF INTEREST \u2013 JURY WAIVER \u2013COUNSEL \u2013 CARRYING A CONCEALED WEAPON \u2013 AGGRAVATED MENACING \u2013 TELECOMMUNICATIONS HARASSMENT \u2013 MENACING BY STALKING: The trial court had a duty to inquire into a potential conflict of interest when defendant sought to substitute counsel complaining that his counsel made a contribution to the victim's political campaign, and the trial court breached its duty to inquire by failing to ask counsel about the amount of any campaign contributions made to the victim or any other involvement counsel had in the victim's campaign but the trial court subsequently conducted an adequate inquiry on limited remand by asking counsel about the extent of his involvement in the victim's campaign and counsel had no actual conflict of interest when he made a $70 donation to the victim's campaign, but otherwise had no connection with the victim. Defendant was not deprived of his right to a jury in light of the suspension of jury trials in Hamilton County because of the COVID-19 pandemic when he waived that right in compliance with all of the statutory and case law requirements. Defendant's conviction for menacing by stalking was not against the weight or sufficiency of the evidence when he left a threatening message on the windshield of the victim's vehicle and sent the victim hundreds of threatening telecommunications. Defendant's conviction for telecommunications harassment was not against the weight or sufficiency of the evidence when he sent the victim over 70 pages of text messages, and conceded that he was \"trying to cause paranoia\" and make the victim's life \"a living hell.\" Defendant's conviction for aggravated menacing was not against the weight or sufficiency of the evidence when he did not directly communicate his threat to the intended victim, but knew, or should have known, that the threat would be communicated to the intended victim. Defendant's conviction for carrying a concealed weapon was not against the weight or sufficiency of the evidence when the arresting officer testified that he identified defendant through his mother's license plate and registration information. Defendant did not receive ineffective assistance of counsel for the carrying a concealed weapon offense when counsel did not argue that defendant had a concealed handgun license (\"CHL\"), an affirmative defense for this charge, because the record did not establish a reasonable probability that his CHL had not expired. The trial court unlawfully forfeited defendant's handgun where the state did not include a forfeiture specification in the complaint or bill of particulars as required by R.C. Chapter 2981.", - "case_name_shorts": "Fisher" + "summaries": "EVIDENCE \u2013 CONFLICT OF INTEREST \u2013 JURY WAIVER \u2013COUNSEL \u2013 CARRYING A CONCEALED WEAPON \u2013 AGGRAVATED MENACING \u2013 TELECOMMUNICATIONS HARASSMENT \u2013 MENACING BY STALKING: The trial court had a duty to inquire into a potential conflict of interest when defendant sought to substitute counsel complaining that his counsel made a contribution to the victim's political campaign, and the trial court breached its duty to inquire by failing to ask counsel about the amount of any campaign contributions made to the victim or any other involvement counsel had in the victim's campaign; but the trial court subsequently conducted an adequate inquiry on limited remand by asking counsel about the extent of his involvement in the victim's campaign and counsel had no actual conflict of interest when he made a $70 donation to the victim's campaign, but otherwise had no connection with the victim. Defendant was not deprived of his right to a jury in light of the suspension of jury trials in Hamilton County because of the COVID-19 pandemic when he waived that right in compliance with all of the statutory and case law requirements. Defendant's conviction for menacing by stalking was not against the weight or sufficiency of the evidence when he left a threatening message on the windshield of the victim's vehicle and sent the victim hundreds of threatening telecommunications. Defendant's conviction for telecommunications harassment was not against the weight or sufficiency of the evidence when he sent the victim over 70 pages of text messages, and conceded that he was \"trying to cause paranoia\" and make the victim's life \"a living hell.\" Defendant's conviction for aggravated menacing was not against the weight or sufficiency of the evidence when he did not directly communicate his threat to the intended victim, but knew, or should have known, that the threat would be communicated to the intended victim. Defendant's conviction for carrying a concealed weapon was not against the weight or sufficiency of the evidence when the arresting officer testified that he identified defendant through his mother's license plate and registration information. Defendant did not receive ineffective assistance of counsel for the carrying a concealed weapon offense when counsel did not argue that defendant had a concealed handgun license (\"CHL\"), an affirmative defense for this charge, because the record did not establish a reasonable probability that his CHL had not expired. The trial court unlawfully forfeited defendant's handgun where the state did not include a forfeiture specification in the complaint or bill of particulars as required by R.C. Chapter 2981.", + "case_name_shorts": "Fisher", + "per_curiam": false }, { "case_dates": "2021-11-03", @@ -476,9 +548,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210407", "judges": "Myers", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3916", "summaries": "CHILDREN \u2013 PERMANENT CUSTODY: The juvenile court did not err in granting permanent custody of mother's child to the Hamilton County Department of Job and Family Services where clear and convincing evidence supported the court's findings that an award of permanent custody was in child's best interest.", - "case_name_shorts": "In re C.E." + "case_name_shorts": "In re C.E.", + "per_curiam": false }, { "case_dates": "2021-11-03", @@ -489,9 +563,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C210420", "judges": "Myers", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3914", "summaries": "CHILDREN \u2013 PERMANENT CUSTODY: The juvenile court did not err in granting permanent custody of father's child to the Hamilton County Department of Job and Family Services where clear and convincing evidence supported the court's findings that an award of permanent custody was in the child's best interest", - "case_name_shorts": "In re A.W." + "case_name_shorts": "In re A.W.", + "per_curiam": false }, { "case_dates": "2021-11-03", @@ -502,9 +578,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210111", "judges": "Zayas", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3917", "summaries": "R.C. 2151.365 \u2013 JUVENILE \u2013 RECORD SEALING: The juvenile court did not err in concluding the juvenile's record of a dismissed charge was not eligible to be sealed under R.C. 2151.365(B)(1)(d). The juvenile court did not err in concluding that it lacked extrastatutory authority to seal the juvenile's record.", - "case_name_shorts": "In re A.J." + "case_name_shorts": "In re A.J.", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -515,9 +593,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-200356", "judges": "Zayas", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3838", "summaries": "EVID.R. 601(A) \u2013 R.C. 2317.01 \u2013 COMPETENCY \u2013 COUNSEL \u2013 INEFFECTIVE ASSISTANCE \u2013 JUDISDICTION/VENUE \u2013 SUFFICIENCY OF EVIDENCE \u2013 MANIFEST WEIGHT OF THE EVIDENCE \u2013 SENTENCING \u2013 CONSECUTIVE SENTENCES: The trial court did not err by allowing a child to testify without sua sponte determining his competence pursuant to Evid.R. 601(A) and R.C. 2317.01 because the child did not testify in such a way as to undermine his ability to accurately observe, recall, and communicate the facts. Defense counsel was not ineffective for failing to challenge the child's competence to testify because the child's testimony did not place his competence into question. The trial court did not err in concluding that a child under ten was competent to testify because the child understood the difference between the truth and a lie and the importance of telling the truth. The trial court did not err in accepting defendant's waiver of a competency hearing where defense counsel withdrew the suggestion of incompetency and assured the court that defendant was competent based upon their interactions and communications. The evidence was insufficient to support defendant's conviction on count four, engaging in fellatio with a child under ten, where the state failed to prove venue beyond a reasonable doubt: the state presented no evidence as to the street name, city, or county where the offense occurred. The trial court's judgment on counts two and six for rape of a child under ten was supported by sufficient evidence where the child testified that the conduct occurred more than once. Defendant's convictions were not against the manifest weight of the evidence where the child witness was competent to testify and the factfinder believed the child's testimony. The trial court did not err in sentencing defendant where the sentence was supported by the record, was not contrary to law, and did not violate the Eight Amendment's prohibition against cruel and unusual punishment. The trial court did not err in imposing consecutive sentences where the court made the requisite findings under R.C. 2919.14, but the court erred by not incorporating the findings in the sentencing entry. The trial court erred by imposing a no-contact order where the defendant was sentenced to life in prison without parole.", - "case_name_shorts": "Kidd" + "case_name_shorts": "Kidd", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -526,11 +606,13 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "C-210142 C-210143 C-210144", + "docket_numbers": "C-210142; C-210143; C-210144", "judges": "Crouse", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3841", "summaries": "DOMESTIC VIOLENCE - CHILD ENDANGERMENT - REASONABLE PARENTAL DISCIPLINE - MERGER: Defendant's conviction for domestic violence was based on sufficient evidence, despite the victim, his son, not suffering physical injuries, because the trier of fact was free to accept the testimony of the police officer who witnessed the encounter. Defendant's conviction for child endangerment was based on sufficient evidence because it is within common knowledge that lifting a small child by his neck to slam him face-first on the trunk of a car creates a substantial risk to the child's health and safety. Defendant's convictions for child endangerment and domestic violence were not against the manifest weight of the evidence because defendant's behavior was not protected by the affirmative defense of reasonable parental discipline considering the totality of the circumstances. The trial court erred when it failed to merge defendant's convictions for domestic violence and child endangerment because the offenses were of similar import and significance, and were not committed separately or with separate animus or motivation.", - "case_name_shorts": "Cook" + "case_name_shorts": "Cook", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -541,9 +623,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-200421", "judges": "Zayas", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3839", "summaries": "NEGLIGENCE\u2014CIV.R. 56(C)\u2014PROXIMATE CAUSE\u2014JOINT ENTERPRISE: In an action brought by plaintiff to recover damages for a fire that occurred in an apartment, the trial court did not err in granting summary judgment in favor of defendant, one of four people who had been smoking on the apartment's balcony, where it would be equally possible, based on the evidence presented, to infer that any one of the four people smoking caused the fire due to improper disposal of their cigarettes, and plaintiff failed to put forth evidence to eliminate any of the other individuals as the proximate cause of the fire. The trial court did not err in granting summary judgment in favor of defendant where there was no evidence of any common enterprise, of the sort that each had the right to direct and control each other movements, between the individuals smoking on the day of the fire.", - "case_name_shorts": "Stites" + "case_name_shorts": "Stites", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -554,9 +638,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210203", "judges": "Myers", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3840", "summaries": "MUNICIPAL \u2013 IMMUNITY \u2013 R.C. CHAPTER 2744 \u2013 CIV.R. 12(B)(6) \u2013 MOTION TO DISMISS: The trial court erred in denying defendant the Cincinnati Metropolitan Housing Authority's motion to dismiss where defendant was entitled to political subdivision immunity under R.C. Chapter 2744 on the claims raised against it in plaintiff's complaint.", - "case_name_shorts": "Holimon" + "case_name_shorts": "Holimon", + "per_curiam": false }, { "case_dates": "2021-10-27", @@ -567,9 +653,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210146", "judges": "Bergeron", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3801", "summaries": "TORTS \u2013 MUNICIPAL \u2013 NEGLIGENCE \u2013 IMMUNITY \u2013 R.C. 2744.02: Under R.C. 2744.02, defendant city was immune from tort liability for an injury allegedly caused by its negligent maintenance of a downtown sidewalk, and thus was entitled to judgment on the pleadings. The maintenance of sidewalks is a governmental function covered by the general grant of immunity in R.C. 2744.01(C), and plaintiff could not invoke the \"public roads\" exception to the general grant of immunity because sidewalks are not public roads under First District precedent and the plain language of R.C. 2744.01(H).", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-10-27", @@ -580,9 +668,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210194, C-210195, C-210196", "judges": "Myers", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3807", "summaries": "SENTENCING \u2013 CONSECUTIVE SENTENCES \u2013 R.C. 2929.14: The trial court erred by imposing consecutive sentences without making all findings required by R.C. 2929.14(C)(4) at the sentencing hearing.", - "case_name_shorts": "Holmes" + "case_name_shorts": "Holmes", + "per_curiam": false }, { "case_dates": "2021-10-27", @@ -593,9 +683,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210489", "judges": "Crouse", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3815", - "summaries": "HABEAS CORPUS \u2013 R.C. 2937.222 \u2013 Crim.R. 46 \u2013 EXCESSIVE BAIL: In an original action petitioning the appellate court for a writ of habeas corpus challenging the amount of pretrial bail as excessive, the appellate court may permit the petitioner to introduce evidence to prove his claim and then exercise its own discretion in imposing an appropriate bail amount therefore, the standard of review of a petition for a writ of habeas corpus is de novo. The $1.5 million bail did not take into account petitioner's financial resources and was therefore excessive and amounted to a denial of bail without following the statutory procedures for denial of bail found in R.C. 2937.222.", - "case_name_shorts": "Dubose" + "summaries": "HABEAS CORPUS \u2013 R.C. 2937.222 \u2013 Crim.R. 46 \u2013 EXCESSIVE BAIL: In an original action petitioning the appellate court for a writ of habeas corpus challenging the amount of pretrial bail as excessive, the appellate court may permit the petitioner to introduce evidence to prove his claim and then exercise its own discretion in imposing an appropriate bail amount; therefore, the standard of review of a petition for a writ of habeas corpus is de novo. The $1.5 million bail did not take into account petitioner's financial resources and was therefore excessive and amounted to a denial of bail without following the statutory procedures for denial of bail found in R.C. 2937.222.", + "case_name_shorts": "Dubose", + "per_curiam": false }, { "case_dates": "2021-10-22", @@ -606,9 +698,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-200212", "judges": "Bock", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3747", "summaries": "POSTCONVICTION\u2014JURISDICTION\u2014COUNSEL: The common pleas court properly denied relief without an evidentiary hearing on the claims of ineffective assistance of counsel presented in the petition under R.C. 2953.21 et seq. for postconviction relief, because the court had no jurisdiction to entertain the claims: the petition was not timely filed, R.C. 2953.21(A)(2), and the petition did not satisfy the R.C. 2953.23 jurisdictional requirements for entertaining a late postconviction petition.", - "case_name_shorts": "Zeigler" + "case_name_shorts": "Zeigler", + "per_curiam": false }, { "case_dates": "2021-10-22", @@ -619,9 +713,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210002", "judges": "Zayas", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3748", "summaries": "CRIM.R. 32.1\u2014 POSTCONVICTION\u2014LAW OF THE CASE: The common pleas court erred in reviewing and dismissing the postsentence motion to withdraw a guilty plea under R.C. 2953.21 et seq., governing the proceedings on a petition for postconviction relief, when the movant unambiguously invoked Crim.R. 32.1 and argued that vacating his conviction upon his unknowing, involuntary, and unintelligent guilty plea was necessary to correct a manifest injustice. The common pleas court properly declined to grant the relief sought in the Crim.R. 32.1 motion to withdraw movant's guilty plea: under the doctrine of the law of the case, the decisions of the court of appeals in the direct appeal and in the appeal from the dismissal of a postconviction petition constrained the common pleas court from granting relief on the grounds advanced in the Crim.R. 32.1 motion.", - "case_name_shorts": "Spurling" + "case_name_shorts": "Spurling", + "per_curiam": false }, { "case_dates": "2021-10-22", @@ -632,9 +728,11 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210119", "judges": "Winkler", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3749", "summaries": "JUV.R. 40 \u2014 OBSTRUCTING: The juvenile court did not err by failing to reference specific facts when ruling on objections to a magistrate's factual findings that it adopted because Juv.R. 40(D)(4)(d) does not impose such a requirement. The evidence was insufficient to support a delinquency adjudication for obstructing official business, where the record did not establish that the juvenile's acts of closing a back door to a house and momentarily retreating from the back room of the house caused any substantial stoppage of an officer's progress in investigating a report of occupants in a house that was supposed to be vacant.", - "case_name_shorts": "In re R.B." + "case_name_shorts": "In re R.B.", + "per_curiam": false }, { "case_dates": "2021-10-20", @@ -645,8 +743,10 @@ "date_filed_is_approximate": false, "docket_numbers": "C-210228, C-210229", "judges": "Bergeron", + "lower_courts": "Hamilton County Court", "citations": "2021-Ohio-3713", "summaries": "DOMESTIC VIOLENCE \u2013 UNAUTHORIZED USE OF A VEHICLE \u2013 EVIDENCE: Defendant's conviction for domestic violence under R.C. 2919.25(C) was not against the weight or sufficiency of the evidence where undisputed testimony established that defendant lunged at his significant other and said to her \"if I were not being held back, you would be sorry.\" The trial court did not err by elevating the severity of the offense to the second degree when the state presented a certified judgment entry establishing that defendant previously pled guilty to domestic violence. Defendant's conviction for unauthorized use of a vehicle under R.C. 2913.03 was not against the weight or sufficiency of the evidence when defendant exceeded the scope of the owner's consent to use that motor vehicle.", - "case_name_shorts": "Stiver" + "case_name_shorts": "Stiver", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohioctapp_2_example.compare.json b/tests/examples/opinions/united_states/ohioctapp_2_example.compare.json index 59fcb436f..54b748cb9 100644 --- a/tests/examples/opinions/united_states/ohioctapp_2_example.compare.json +++ b/tests/examples/opinions/united_states/ohioctapp_2_example.compare.json @@ -8,9 +8,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29181", "judges": "Welbaum", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4501", "summaries": "After conducting an independent review of the record as required by Anders v. California, 386 U.S. 738, 87 S.Ct. 1396, 18 L.Ed.2d 493 (1967), we find no issue with arguable merit for appellant to advance on appeal. Contrary to appellant's suggestion otherwise, the trial court was not required to make the consecutive-sentence findings required by R.C. 2929.14(C)(4) when resentencing appellant to an additional three-year firearm specification pursuant to R.C. 2929.14(B)(1)(g). Judgment affirmed.", - "case_name_shorts": "Howard" + "case_name_shorts": "Howard", + "per_curiam": false }, { "case_dates": "2021-12-22", @@ -21,9 +23,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-24", "judges": "Welbaum", + "lower_courts": "Greene County Court", "citations": "2021-Ohio-4505", "summaries": "The trial court did not abuse its discretion by awarding permanent custody of appellant's children to Greene County Children Services (\"GCCS\"). There was clear and convincing evidence in the record to support the trial court's finding that granting permanent custody to GCCS was in the best interest of the children. The record also supports the trial court's finding that GCCS made reasonable efforts to reunify appellant with his children. Judgment affirmed.", - "case_name_shorts": "In re E.A.J.R." + "case_name_shorts": "In re E.A.J.R.", + "per_curiam": false }, { "case_dates": "2021-12-22", @@ -32,11 +36,13 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "29209 29210", + "docket_numbers": "29209; 29210", "judges": "Tucker", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4504", "summaries": "The trial court awarded permanent custody of two children to a children services agency. Appellants, Father and Mother, assert the trial court erred when it concluded that it was in the children's best interest to grant permanent custody to the agency. The record contains compelling evidence supporting the trial court's best interest conclusion. Judgments affirmed.", - "case_name_shorts": "In re C.P." + "case_name_shorts": "In re C.P.", + "per_curiam": false }, { "case_dates": "2021-12-22", @@ -47,9 +53,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-14", "judges": "Tucker", + "lower_courts": "Greene County Court", "citations": "2021-Ohio-4503", "summaries": "Res judicata bars appellant from making the same allegations in successive affidavits to compel repeated reviews of his attempt to initiate criminal charges against his former wife. Judgment affirmed.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-22", @@ -60,9 +68,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-22", "judges": "Tucker", + "lower_courts": "Greene County Court", "citations": "2021-Ohio-4502", "summaries": "The trial court erred in failing to refer felony allegations in appellant's R.C. 2935.09 affidavit to the prosecutor's office for investigation. The trial court did not err in failing to issue an arrest warrant based on the felony allegations, nor did the trial court err in failing to act on a misdemeanor allegation. Res judicata did not preclude appellant from seeking the initiation of criminal charges via affidavit. Judgment affirmed in part, reversed in part, and remanded.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -73,9 +83,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29053", "judges": "Welbaum", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4339", "summaries": "Appellant's claim that his trial counsel provided ineffective assistance by failing to move for a trial continuance lacks merit because moving for a continuance is a debatable trial strategy that will not be second-guessed on appeal. Appellant's claim that his trial counsel provided ineffective assistance by failing to file a timely jury demand also lacks merit because appellant failed to establish how counsel's alleged deficient performance prejudiced him. Appellant's claim that his right to due process was violated as a result of the State's failure to provide certain video evidence in discovery lacks merit because appellant failed to establish any resulting prejudice. Judgment affirmed.", - "case_name_shorts": "Wilcoxson" + "case_name_shorts": "Wilcoxson", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -86,9 +98,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29170", "judges": "Epley", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4338", "summaries": "State's appeal. The trial court erred in granting appellee's motion to suppress. A police officer responded to a dispatch of a disorderly individual who refused to leave a fitness center when asked by staff members. The officer had reasonable and articulable suspicion of criminal activity to warrant an investigatory detention of appellee, who was leaving the fitness center and matched the provided description. Officers lawfully asked appellee for his identifying information during the Terry stop. Upon running his information, officers lawfully arrested appellee on an outstanding warrant, permitting a search incident to the arrest. The loaded weapon and magazines were lawfully found during that search. Judgment reversed and remanded. (Donovan, J., concurring.)", - "case_name_shorts": "Taylor" + "case_name_shorts": "Taylor", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -99,9 +113,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29092", "judges": "Epley", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4337", "summaries": "The trial court did not abuse its discretion by overruling appellant's post-conviction relief petition because it was untimely and barred by res judicata. Judgment affirmed.", - "case_name_shorts": "McCain" + "case_name_shorts": "McCain", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -112,9 +128,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29107", "judges": "Tucker", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4336", "summaries": "An independent review of the record pursuant to Anders v. California, 386 U.S. 738, 87 S.Ct. 1396, 18 L.Ed.2d 493 (1967), reveals no issues with arguable merit to present on appeal. Judgment affirmed.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -125,9 +143,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-22", "judges": "Tucker", + "lower_courts": "Clark County Court", "citations": "2021-Ohio-4334", "summaries": "An independent review of the record pursuant to Anders v. California, 386 U.S. 738, 87 S.Ct. 1396, 18 L.Ed.2d 493 (1967), reveals no issues with arguable merit to present on appeal. Judgment affirmed.", - "case_name_shorts": "Hutchins" + "case_name_shorts": "Hutchins", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -138,9 +158,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-15", "judges": "Tucker", + "lower_courts": "Champaign County Court", "citations": "2021-Ohio-4335", "summaries": "The trial court did not abuse its discretion when it granted legal custody of a child to the maternal great-grandparents instead of to the child's father. Also, the trial court did not abuse its discretion by limiting the father's visitation to visits supervised by the great-grandparents. Judgment affirmed.", - "case_name_shorts": "In re S.P." + "case_name_shorts": "In re S.P.", + "per_curiam": false }, { "case_dates": "2021-12-03", @@ -151,9 +173,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29123", "judges": "Epley", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4230", "summaries": "The trial court did not err by overruling appellant's motion to suppress identification evidence, as the identification process was neither unreliable nor unduly suggestive. However, the trial court did err by failing to give appellant his right of allocution at sentencing. Judgment affirmed in part, reversed in part, and remanded to the trial court for the sole purpose of resentencing in compliance with Crim.R. 32(A)(1).", - "case_name_shorts": "Shepherd" + "case_name_shorts": "Shepherd", + "per_curiam": false }, { "case_dates": "2021-12-03", @@ -164,9 +188,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29137", "judges": "Donovan", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4229", "summaries": "The State adduced sufficient evidence at trial to support findings of appellant's guilt for felonious assault and domestic violence, and the guilty verdicts were not against the manifest weight of the evidence. Based upon our holding in State v. Wilson, 2d Dist. Clark No. 2018-CA-2, 2020-Ohio-2962, as applied to the facts of this case, the trial court's failure to merge the felonious assault and domestic violence offenses constituted plain error. Judgment affirmed in part, reversed in part, and remanded for resentencing.", - "case_name_shorts": "King" + "case_name_shorts": "King", + "per_curiam": false }, { "case_dates": "2021-12-03", @@ -177,9 +203,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-18", "judges": "Donovan", + "lower_courts": "Champaign County Court", "citations": "2021-Ohio-4228", "summaries": "Ineffective assistance of counsel is not demonstrated by counsel's failure to call an expert witness to opine that appellant's prior surgery rendered him incapable of inflicting injury to the victim in the manner described by her. Even if the victim's testimony that appellant \"goes and gets different surgeries to get prescription medication\" should not have been admitted, the municipal court is presumed to have considered only competent evidence relevant to the domestic violence offense. Judgment affirmed.", - "case_name_shorts": "King" + "case_name_shorts": "King", + "per_curiam": false }, { "case_dates": "2021-12-03", @@ -190,9 +218,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-27", "judges": "Tucker", + "lower_courts": "Clark County Court", "citations": "2021-Ohio-4227", "summaries": "The trial court sentenced appellant to a 30-month prison term for aggravated possession of drugs. Because the record reflects the trial court's consideration of R.C. 2929.11 and R.C. 2929.12, there is no basis upon which to modify or vacate the sentence because it is not supported by R.C. 2929.11 and R.C. 2929.12. Further, appellant's sentence is not subject to modification or vacation based upon a conclusion that the sentence is contrary to law because it is not supported under R.C. 2929.11 or R.C. 2929.12. Finally, there is no merit to appellant's argument that the trial court impermissibly imposed a harsher sentence based upon a conclusion that appellant had been leniently sentenced in previous cases. Judgment affirmed.", - "case_name_shorts": "Evers" + "case_name_shorts": "Evers", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -203,9 +233,11 @@ "date_filed_is_approximate": false, "docket_numbers": "28817", "judges": "Tucker", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4159", "summaries": "Appellate counsel filed an Anders brief concluding that there are no meritorious issues to present on appeal. Neither appellant nor his counsel raised any potential assignments of error having arguable merit for our review. After conducting an independent review of the proceedings, we agree that there are no issues with arguable merit for appeal. Judgment affirmed.", - "case_name_shorts": "Sizemore" + "case_name_shorts": "Sizemore", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -214,11 +246,13 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "29075 29096", + "docket_numbers": "29075; 29096", "judges": "Tucker", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4157", "summaries": "The trial court erred in ordering full disclosure and production of grand-jury testimony from four witnesses for use in appellee's pending federal lawsuit brought under 42 U.S.C. 1983. Appellee demonstrated his entitlement to limited portions of one grand-jury transcript by establishing a particularized need that outweighed the need to maintain grand-jury secrecy. Disclosure and production of specified portions of the transcript shall be limited to the parties and respective counsel solely for use in appellee's federal lawsuit. Judgment affirmed in part and reversed in part. Stay lifted.", - "case_name_shorts": "Gillispie" + "case_name_shorts": "Gillispie", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -229,9 +263,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-46", "judges": "Epley", + "lower_courts": "Clark County Court", "citations": "2021-Ohio-4155", "summaries": "The trial court did not err in denying appellant's motion to \"vacate and set aside his convictions and sentence.\" Appellant's allied-offense argument was barred by res judicata. Even if the issue were not barred, the trial court properly did not merge the felonious assault and having weapons while under disability offenses. Judgment affirmed.", - "case_name_shorts": "Frazier" + "case_name_shorts": "Frazier", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -242,9 +278,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29055", "judges": "Tucker", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4158", "summaries": "This appeal involves the interpretation of an agreed-upon divorce decree provision between appellant/cross-appellee husband (now deceased) and appellee/cross-appellant wife. The husband's estate, for which the parties' daughter serves as executor, has been added as a party to the litigation. The trial court did not err by finding that the contested provision, which defined the assets subject to inclusion into an irrevocable trust for the benefit of the parties' disabled son, was ambiguous. The trial court also did not err by concluding it was the parties' intent that, upon a party's death, the trust would be funded with one-half of the deceased party's total assets, not just the party's probate assets. The trial court also did not err by concluding that neither party, by entering into the agreement, intended to restrict his or her ability, upon the son's death, to convey as desired any residuary trust assets contributed by that party. But, in order to more efficiently implement the parties' intent, the trial court's judgment is modified to order the appellee/cross-appellant to use an already established trust to comply with the agreement, and the husband's estate is ordered to create a new trust to comply with the agreement. Finally, the trial court did not abuse its discretion by not ordering attorney fees to appellee/cross-appellant. Judgment affirmed as modified.", - "case_name_shorts": "McCloskey" + "case_name_shorts": "McCloskey", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -255,9 +293,11 @@ "date_filed_is_approximate": false, "docket_numbers": "28368", "judges": "Donovan", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4107", "summaries": "Appellant committed kidnapping prior to the effective date of Sierah's Law, but pled guilty to and was convicted of kidnapping and other offenses following the statute's effective date. Application of Sierah's Law to appellant did not violate the Retroactivity Clause of Article II, Section 28 of the Ohio Constitution. Although the trial court did not substantially comply with the requirements of R.C. 2903.42(A)(1)(a) at the plea hearing, appellant did not demonstrate that his plea was not made knowingly, intelligently, and voluntarily. The trial court did not completely fail to address Sierah's Law at the plea hearing, and appellant has not demonstrated that he was prejudiced by the deficient advisement at the plea hearing. The trial court complied with its obligations under R.C. 2903.42(C) at sentencing. The trial court never provided the notifications required by R.C. 2903.42(A)(1)(a) prior to sentencing, as required. Due to this failure, the portion of the trial court's judgment imposing appellant's Violent Offender Database duties in accordance with Sierah's Law will be reversed, and the matter will be remanded for the trial court to provide him the notifications under R.C. 2903.42(A)(1)(a), to provide him an opportunity to file a motion to rebut the statutory presumption, and for a new ruling on whether appellant is required to enroll in accordance with R.C. 2903.42. In all other respects, judgment affirmed.", - "case_name_shorts": "Wright" + "case_name_shorts": "Wright", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -268,9 +308,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-CA-17", "judges": "Donovan", + "lower_courts": "Clark County Court", "citations": "2021-Ohio-4106", - "summaries": "Appellant, who had been convicted of multiple sex offenses, filed a pro se motion for leave to file a motion for a new trial, which also sought to conduct discovery, but the motion failed to establish a Brady violation by the State. This Court previously determined that appellant was not entitled to the return of items seized from his home and admitted as exhibits in his trial. For impeachment purposes, he failed to establish the materiality of the victim's medical records to support a \"confabulated memory defense\" or the materiality of church records allegedly reflecting who paid for a camp the victim attended. Appellant further did not establish that the records were ever in the State's possession or that a request for them was denied. Finally, appellant's request that the State obtain witness statements on his behalf from certain witnesses is without merit he himself knew the relevance of these witnesses' observations prior to his trial. Judgment affirmed.", - "case_name_shorts": "Russell" + "summaries": "Appellant, who had been convicted of multiple sex offenses, filed a pro se motion for leave to file a motion for a new trial, which also sought to conduct discovery, but the motion failed to establish a Brady violation by the State. This Court previously determined that appellant was not entitled to the return of items seized from his home and admitted as exhibits in his trial. For impeachment purposes, he failed to establish the materiality of the victim's medical records to support a \"confabulated memory defense\" or the materiality of church records allegedly reflecting who paid for a camp the victim attended. Appellant further did not establish that the records were ever in the State's possession or that a request for them was denied. Finally, appellant's request that the State obtain witness statements on his behalf from certain witnesses is without merit; he himself knew the relevance of these witnesses' observations prior to his trial. Judgment affirmed.", + "case_name_shorts": "Russell", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -281,9 +323,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29158", "judges": "Tucker", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4103", "summaries": "Appellant's conviction for criminal damaging was not against the manifest weight of the evidence. Judgment affirmed.", - "case_name_shorts": "Bittner" + "case_name_shorts": "Bittner", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -294,9 +338,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-9", "judges": "Donovan", + "lower_courts": "Champaign County Court", "citations": "2021-Ohio-4102", "summaries": "The trial court did not err when it denied appellant's motion for jail time credit for the period of time that he was incarcerated in a separate case. Judgment affirmed.", - "case_name_shorts": "Bingham" + "case_name_shorts": "Bingham", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -307,9 +353,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29021", "judges": "Tucker", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4105", "summaries": "Appellee was the beneficiary of a transfer-on-death (TOD) account owned by his mother. Appellant is a long-term care facility to which appellee's mother was admitted shortly before her death. Appellant's bill for the mother's care was not paid, resulting in appellant's filing a cause of action against appellee asserting that the transfer of the TOD account constituted a fraudulent transfer under R.C. 1336.05. After a bench trial, the trial court stayed the cause for many months pending completion of the mother's probate estate. Before the probate estate was completed, the trial court lifted the stay and issued a verdict against appellant. The trial court did not abuse its discretion by lifting the stay. The trial court's verdict was based upon its conclusion that the TOD transfer did not make the mother's estate insolvent. This finding was not against the manifest weight of the evidence. This conclusion rendered appellant's request for a constructive trust moot. Judgment affirmed. (Hall, J., concurring in judgment only.)", - "case_name_shorts": "Jeffery" + "case_name_shorts": "Jeffery", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -320,9 +368,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29139", "judges": "Welbaum", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4104", "summaries": "The trial court did not abuse its discretion by granting legal custody of Mother's daughters to Mother's maternal aunt and legal custody of Mother's son to Mother's maternal cousin, where the trial court considered the relevant factors set forth in R.C. 3109.04(F)(1) and found by a preponderance of the evidence that granting legal custody of the children to those relatives was in the best interest of the children. Judgment affirmed.", - "case_name_shorts": "In re T.F." + "case_name_shorts": "In re T.F.", + "per_curiam": false }, { "case_dates": "2021-11-12", @@ -333,9 +383,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-CA-60", "judges": "Donovan", + "lower_courts": "Clark County Court", "citations": "2021-Ohio-4027", "summaries": "Appellant was sentenced under the Reagan Tokes Act to an indefinite sentence of 10 to 15 years for rape. He failed to establish that the Act violates the separation of powers doctrine, due process, or the right to a trial by jury. In other words, he failed to establish that the Reagan Tokes Act is facially unconstitutional. However, since the trial court failed to notify appellant at sentencing about the rebuttable presumption that he will be released after serving the minimum term of 10 years, as required by R.C. 2929.19(B)(2)(c), his sentence is contrary to law. Judgment affirmed in part, reversed in part, and remanded to the trial court for the sole purpose of resentencing appellant pursuant to R.C. 2929.19(B)(2)(c).", - "case_name_shorts": "Thompson" + "case_name_shorts": "Thompson", + "per_curiam": false }, { "case_dates": "2021-11-12", @@ -346,9 +398,11 @@ "date_filed_is_approximate": false, "docket_numbers": "28974", "judges": "Epley", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4026", "summaries": "Anders appeal. The record reveals no non-frivolous issues regarding the motion to suppress or competency evaluations. Further, no non-frivolous issues exist concerning appellant's plea, plea colloquy, sentence, or sentencing hearing. Finally, an independent review of the record fails to reveal any issue with arguable merit. Judgment affirmed.", - "case_name_shorts": "McElroy" + "case_name_shorts": "McElroy", + "per_curiam": false }, { "case_dates": "2021-11-12", @@ -359,9 +413,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29190", "judges": "Welbaum", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4025", "summaries": "In this case, which involved the shooting death of an individual by police officers, the trial court did not err in dismissing appellant's claims for negligence/recklessness, assault and battery, civil conspiracy, and survivorship. These claims were barred because appellant failed to refile them in state court within the time prescribed by 28 U.S.C. 1367(d) or by R.C. 2305.19(A), after they were dismissed by the federal district court. Furthermore, the trial court correctly found that appellant's remaining claim for wrongful death was barred by issue preclusion, i.e., by the collateral estoppel effect of the prior federal court action. Judgment affirmed.", - "case_name_shorts": "Jordan" + "case_name_shorts": "Jordan", + "per_curiam": false }, { "case_dates": "2021-11-12", @@ -372,9 +428,11 @@ "date_filed_is_approximate": false, "docket_numbers": "28880", "judges": "Welbaum", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4024", "summaries": "The trial court did not abuse its discretion in granting a children services agency permanent custody of a four-year-old child, as the trial court's findings under R.C. 2151.414(B)(1) and R.C. 2151.414(D)(1) were supported by clear and convincing evidence and were not against the manifest weight of the evidence. Father's multiple ineffective assistance of counsel claims lack merit and are also waived for appeal since Father waived his right to counsel at the permanent custody hearing and represented himself at the hearing. Father's claim that his constitutional rights to free speech and due process were violated also lacks merit. Judgment affirmed.", - "case_name_shorts": "In re R.W.H." + "case_name_shorts": "In re R.W.H.", + "per_curiam": false }, { "case_dates": "2021-11-12", @@ -385,9 +443,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29208", "judges": "Welbaum", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-4023", "summaries": "The juvenile court did not err in awarding legal custody of appellant's three children to non-relatives. Judgment affirmed.", - "case_name_shorts": "In re C.T." + "case_name_shorts": "In re C.T.", + "per_curiam": false }, { "case_dates": "2021-11-12", @@ -398,9 +458,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-12", "judges": "Hall", + "lower_courts": "Greene County Court", "citations": "2021-Ohio-4022", "summaries": "The trial court did not err by granting summary judgment for the school district on appellant's claim for wrongful discharge in violation of public policy. There was no evidence that the non-renewal of appellant's administrative contract was caused by his filing of a complaint with the Ohio Department of Education, and the evidence showed ample legitimate business justification for the non-renewal. Judgment affirmed.", - "case_name_shorts": "Hammonds" + "case_name_shorts": "Hammonds", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -411,9 +473,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29121", "judges": "Donovan", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-3948", - "summaries": "The trial court's imposition of a prison term to be served consecutively to a jail term imposed under R.C. 2929.16(A)(2) was contrary to law, and plain error is demonstrated. Appellant's sentence of one year in prison for a felony of the fifth degree was not contrary to law, since she had previously been convicted of a felony and had violated the terms of intervention in lieu of conviction. Judgment affirmed in part and reversed in part remanded for the trial court to issue an amended judgment entry of conviction reflecting concurrent terms.", - "case_name_shorts": "Reid" + "summaries": "The trial court's imposition of a prison term to be served consecutively to a jail term imposed under R.C. 2929.16(A)(2) was contrary to law, and plain error is demonstrated. Appellant's sentence of one year in prison for a felony of the fifth degree was not contrary to law, since she had previously been convicted of a felony and had violated the terms of intervention in lieu of conviction. Judgment affirmed in part and reversed in part; remanded for the trial court to issue an amended judgment entry of conviction reflecting concurrent terms.", + "case_name_shorts": "Reid", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -424,9 +488,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29061", "judges": "Epley", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-3947", - "summaries": "The trial court's verdicts on two counts of domestic violence, menacing, and assault were based on sufficient evidence and were not against the manifest weight of the evidence. Contrary to appellant's assertion, the trial court merged the assault with domestic violence. The State concedes that the trial court erred in failing to merge menacing with domestic violence, in violation of R.C. 2919.25(C). Any deficiencies in counsel's failure to raise allied offenses of similar import at sentencing is moot. Judgment affirmed in part and reversed in part remanded for merger of the menacing and domestic violence (R.C. 2919.25(C)) charges.", - "case_name_shorts": "Peterson" + "summaries": "The trial court's verdicts on two counts of domestic violence, menacing, and assault were based on sufficient evidence and were not against the manifest weight of the evidence. Contrary to appellant's assertion, the trial court merged the assault with domestic violence. The State concedes that the trial court erred in failing to merge menacing with domestic violence, in violation of R.C. 2919.25(C). Any deficiencies in counsel's failure to raise allied offenses of similar import at sentencing is moot. Judgment affirmed in part and reversed in part; remanded for merger of the menacing and domestic violence (R.C. 2919.25(C)) charges.", + "case_name_shorts": "Peterson", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -437,9 +503,11 @@ "date_filed_is_approximate": false, "docket_numbers": "28827", "judges": "Welbaum", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-3946", "summaries": "Appellant's claim that his trial counsel provided ineffective assistance by failing to move for the waiver of court costs at sentencing lacks merit because appellant failed to demonstrate that he was prejudiced by said failure. Judgments affirmed.", - "case_name_shorts": "Parks" + "case_name_shorts": "Parks", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -450,9 +518,11 @@ "date_filed_is_approximate": false, "docket_numbers": "28975", "judges": "Epley", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-3943", "summaries": "Appellant's conviction for assault was supported by sufficient evidence and was not against the manifest weight of the evidence. Her constitutional right to effective assistance of counsel was not violated when trial counsel did not request a self-defense jury instruction, because there was no evidence appellant acted in self-defense. Judgment affirmed.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -463,9 +533,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29120", "judges": "Tucker", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-3941", "summaries": "On remand, the trial court properly followed this court's mandate to impose separate sentences on two three-year firearm specifications. The law-of-the-case doctrine precludes appellant from challenging the correctness of that mandate. In any event, appellant has not demonstrated error in this court's prior order for the trial court to impose separate sentences on two three-year firearm specifications. Judgment affirmed.", - "case_name_shorts": "Davison" + "case_name_shorts": "Davison", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -476,9 +548,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29165", "judges": "Tucker", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-3945", "summaries": "The trial court properly entered summary judgment against appellants on their complaint for uninsured-motorist coverage. One of the appellants was injured when a stray bullet fired from an unidentified vehicle struck her in the head as she sat in her own vehicle. No uninsured-motorist coverage existed under appellants' motor-vehicle policy because (1) the victim's injury did not arise out of the \"ownership, maintenance, or use\" of an uninsured vehicle and (2) the shooter's vehicle did not hit or cause physical injury without hitting the victim. The victim's injury was caused by a firearm, not an uninsured vehicle. Judgment affirmed.", - "case_name_shorts": "McGuire" + "case_name_shorts": "McGuire", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -489,9 +563,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29175", "judges": "Welbaum", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-3944", "summaries": "The trial court did not err in granting summary judgment to appellees based on res judicata. Appellant had filed numerous prior actions in which final judgments were rendered, and appellees were in privity with the prior successful parties. As to the trial court's refusal to disqualify itself, only the Chief Justice of the Supreme Court of Ohio or her designee may hear disqualification matters, and the court of appeals lacks authority to pass on disqualification or to void the trial court's judgment on that ground. In any event, there was no evidence of bias. The trial court also did not err in taking judicial notice of appellant's many prior actions concerning the same claims. Finally, appellant was not denied access to the courts. In fact, appellant failed to even file a response on the merits to appellees' summary judgment motion. Judgment affirmed.", - "case_name_shorts": "Bowman" + "case_name_shorts": "Bowman", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -502,9 +578,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29128", "judges": "Epley", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-3942", "summaries": "A business filed breach of contract and bad faith claims against its insurance company following the denial of its claims based on a ransomware attack. The trial court erred in granting summary judgment to the insurer on the business's claims. Genuine issues of material fact exist as to whether the business's insurance claim fell within the Electronic Equipment\u2013Media endorsement and whether the insurer complied with its duty of good faith in denying the claim. Judgment reversed and remanded. (Tucker, P.J., dissenting.)", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -513,11 +591,13 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "29007 29009", + "docket_numbers": "29007; 29009", "judges": "Tucker", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-3940", "summaries": "The probate court erred by declaring appellee the owner of residential property because the deed purporting to transfer the property to appellee was invalid and ineffective. The grantor did not physically sign the deed. Another person affixed the grantor's signature on the deed, and there was insufficient evidence that the grantor authorized the other to do this. Judgment reversed and remanded.", - "case_name_shorts": "Byars" + "case_name_shorts": "Byars", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -528,9 +608,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29036", "judges": "Epley", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-3939", "summaries": "The trial court erred in granting summary judgment to a bank on its claims based on appellant's unpaid credit card balance. The bank did not properly serve its request for admissions to appellant and, consequently, the trial court erred in deeming the requests for admission admitted due to appellant's failure to respond. In the absence of those deemed facts, genuine issues of material fact exist. Judgment reversed and remanded.", - "case_name_shorts": "Shailer" + "case_name_shorts": "Shailer", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -541,9 +623,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-1", "judges": "Welbaum", + "lower_courts": "Clark County Court", "citations": "2021-Ohio-3850", - "summaries": "The trial court did not err in concluding that appellees established standing under R.C. 303.24 to bring this action. Appellees demonstrated that they would incur special damages if appellant were not required to obtain a conditional use permit before engaging in surface mining. The trial court also did not err in failing to apply res judicata to appellees' claims, based on prior federal litigation between appellant and the County Board of Commissioners. Appellees were not in privity with the parties to that action. In addition, appellees' state action was not an improper collateral attack on the prior federal case. The trial court did not err in excluding a deposition taken in the prior action although the deponent was deceased, the requirements of Evid.R. 804(B)(1) were not met, due to the lack of privity between appellees and the parties to the prior action. Finally, appellant failed to prove that it had a prior legal non-conforming use of the property. And, on the part of the property on which a prior nonconforming use existed when zoning regulations were enacted, the former property owners abandoned or voluntarily discontinued that use. Therefore, appellant must obtain a conditional use permit to engage in surface mining. Judgment affirmed.", - "case_name_shorts": "Verbillion" + "summaries": "The trial court did not err in concluding that appellees established standing under R.C. 303.24 to bring this action. Appellees demonstrated that they would incur special damages if appellant were not required to obtain a conditional use permit before engaging in surface mining. The trial court also did not err in failing to apply res judicata to appellees' claims, based on prior federal litigation between appellant and the County Board of Commissioners. Appellees were not in privity with the parties to that action. In addition, appellees' state action was not an improper collateral attack on the prior federal case. The trial court did not err in excluding a deposition taken in the prior action; although the deponent was deceased, the requirements of Evid.R. 804(B)(1) were not met, due to the lack of privity between appellees and the parties to the prior action. Finally, appellant failed to prove that it had a prior legal non-conforming use of the property. And, on the part of the property on which a prior nonconforming use existed when zoning regulations were enacted, the former property owners abandoned or voluntarily discontinued that use. Therefore, appellant must obtain a conditional use permit to engage in surface mining. Judgment affirmed.", + "case_name_shorts": "Verbillion", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -554,9 +638,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-3", "judges": "Donovan", + "lower_courts": "Miami County Court", "citations": "2021-Ohio-3849", "summaries": "In this appeal pursuant to Anders v. California, 386 U.S. 738, 87 S.Ct. 1396, 18 L.Ed.2d 493 (1967), there are no potential assignments of error having arguable merit. Any challenge to the validity of appellant's guilty pleas is barred by res judicata. Any issue regarding counsel's alleged ineffective assistance during the representation of appellant should have been filed as a petition for post-conviction relief pursuant to R.C. 2953.21, rather than a motion to withdraw guilty pleas pursuant to Crim.R. 32. In any event, even if appellant had properly filed his motion as petition for post-conviction relief, it would have been overruled as untimely because it was not filed within 365 days after the trial transcript was filed with this court in appellant's direct appeal. See R.C. 2953.21(A)(2). Additionally, appellant has failed to submit any evidence to support his claims that he received ineffective assistance of counsel in relation to his decision to plead guilty to three counts of rape. Judgment affirmed.", - "case_name_shorts": "VanWinkle" + "case_name_shorts": "VanWinkle", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -567,9 +653,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29108", "judges": "Welbaum", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-3848", "summaries": "Appellant's conviction for first-degree-misdemeanor assault was supported by sufficient evidence and was not against the manifest weight of the evidence. Judgment affirmed.", - "case_name_shorts": "Shropshire" + "case_name_shorts": "Shropshire", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -580,9 +668,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-5", "judges": "Hall", + "lower_courts": "Darke County Court", "citations": "2021-Ohio-3847", "summaries": "State's appeal. The trial court erred by dismissing the indictment against appellee. The likelihood of an additional, consecutive prison term provided enough reason for prosecution to preclude dismissal. Judgment reversed and remanded.", - "case_name_shorts": "Kauffman" + "case_name_shorts": "Kauffman", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -593,9 +683,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2020-CA-19", "judges": "Donovan", + "lower_courts": "Clark County Court", "citations": "2021-Ohio-3845", - "summaries": "The trial court erred in sentencing appellant to an aggregate 34-month prison term for operating a vehicle under the influence of drugs or alcohol, in failing to specify which portion of appellant's sentence was mandatory, and in failing to properly impose post-release control. The State concedes the errors. Judgment reversed remanded for the trial court to reduce appellant's aggregate prison term to 30 months, to notify appellant of the mandatory portion of his sentence, and for the proper imposition of post-release control.", - "case_name_shorts": "Fields" + "summaries": "The trial court erred in sentencing appellant to an aggregate 34-month prison term for operating a vehicle under the influence of drugs or alcohol, in failing to specify which portion of appellant's sentence was mandatory, and in failing to properly impose post-release control. The State concedes the errors. Judgment reversed; remanded for the trial court to reduce appellant's aggregate prison term to 30 months, to notify appellant of the mandatory portion of his sentence, and for the proper imposition of post-release control.", + "case_name_shorts": "Fields", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -606,9 +698,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29076", "judges": "Donovan", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-3844", "summaries": "The trial court did not err in overruling appellant's motion to suppress. After a valid traffic stop for no headlights and taillights, and after learning that appellant lacked a valid driver's license and that her vehicle had fictitious plates, the vehicle was lawfully towed from the \"trafficway.\" Having been lawfully impounded, and pursuant to Sheriff's Office policy, the vehicle was subject to an inventory search, which included the locked glove box, the key to which was in appellant's possession. Since deputies had probable cause to arrest appellant, the \"threat\" to place her in handcuffs in order obtain the key to the glove box cannot be characterized as coercive. Judgment affirmed.", - "case_name_shorts": "Atkinson" + "case_name_shorts": "Atkinson", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -619,9 +713,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29126", "judges": "Donovan", + "lower_courts": "Montgomery County Court", "citations": "2021-Ohio-3846", "summaries": "The trial court's grant of temporary custody of Father's three sons to a children services agency was neither against the manifest weight of the evidence nor an abuse of discretion. Judgments affirmed.", - "case_name_shorts": "In re J.H." + "case_name_shorts": "In re J.H.", + "per_curiam": false }, { "case_dates": "2021-10-22", @@ -632,9 +728,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-16", "judges": "Donovan", + "lower_courts": "Miami County Court", "citations": "2021-Ohio-3758", "summaries": "Ward's guardian, while having a guardianship of his person only and not his estate, purported to convey the ward's interest in real property to appellant. The trial court did not lack jurisdiction over appellant's complaint for declaratory judgment and to quiet title, and it erred in dismissing the matter. Judgment reversed and remanded.", - "case_name_shorts": "VanDeGrift" + "case_name_shorts": "VanDeGrift", + "per_curiam": false }, { "case_dates": "2021-10-22", @@ -645,8 +743,10 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-16", "judges": "Donovan", + "lower_courts": "Clark County Court", "citations": "2021-Ohio-3751", "summaries": "Appellant pled guilty to one count of attempted rape, and the trial court imposed a mandatory sentence of 8 to 12 years. Appellate counsel filed a brief pursuant to Anders v. California, 386 U.S. 738, 87 S.Ct. 1396, 18 L.Ed.2d 493 (1967), suggesting no potential non-frivolous assignments of error. We have conducted an independent review pursuant to Anders, and we find no potentially meritorious errors for review. Judgment affirmed.", - "case_name_shorts": "Boucher" + "case_name_shorts": "Boucher", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohioctapp_3_example.compare.json b/tests/examples/opinions/united_states/ohioctapp_3_example.compare.json index 3348a23c0..c71297454 100644 --- a/tests/examples/opinions/united_states/ohioctapp_3_example.compare.json +++ b/tests/examples/opinions/united_states/ohioctapp_3_example.compare.json @@ -8,9 +8,11 @@ "date_filed_is_approximate": false, "docket_numbers": "6-21-06", "judges": "Zimmerman", + "lower_courts": "Hardin County Court", "citations": "2021-Ohio-4562", "summaries": "Defendant-appellant's guilty pleas were not unknowing, unintelligent, or involuntary. Defendant-appellant's sentence is authorized by law and is not contrary to law.", - "case_name_shorts": "Summit" + "case_name_shorts": "Summit", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -21,9 +23,11 @@ "date_filed_is_approximate": false, "docket_numbers": "8-21-24", "judges": "Miller", + "lower_courts": "Logan County Court", "citations": "2021-Ohio-4564", "summaries": "The trial court did not abuse its discretion by denying defendant-appellant's petition for postconviction relief without a hearing.", - "case_name_shorts": "Rognon" + "case_name_shorts": "Rognon", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -34,9 +38,11 @@ "date_filed_is_approximate": false, "docket_numbers": "1-21-08, 1-21-09, 1-21-10", "judges": "Zimmerman", + "lower_courts": "Allen County Court", "citations": "2021-Ohio-4558", "summaries": "The defendant-appellant's sentence is not contrary to law. The trial court did not err by convicting defendant-appellant of certain offenses that exist under Ohio law, and thus, the trial court acted with subject-matter jurisdiction. Trial counsel did not render ineffective assistance of counsel. Judgments affirmed.", - "case_name_shorts": "Reeder" + "case_name_shorts": "Reeder", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -47,9 +53,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2-21-13", "judges": "Miller", + "lower_courts": "Auglaize County Court", "citations": "2021-Ohio-4561", "summaries": "Because the trial court continued defendant-appellant's community control sanction, defendant-appellant's challenge to his reserved prison sentence is not ripe for review.", - "case_name_shorts": "Owsley" + "case_name_shorts": "Owsley", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -60,9 +68,11 @@ "date_filed_is_approximate": false, "docket_numbers": "8-20-36", "judges": "Zimmerman", + "lower_courts": "Logan County Court", "citations": "2021-Ohio-4563", "summaries": "The trial court erred by granting defendant-appellee's motion to dismiss his 12-count indictment. Plaintiff-appellant's second assignment of error was rendered moot by our determination of plaintiff-appellant's first assignment of error. Judgment reversed and cause remanded.", - "case_name_shorts": "Lowe" + "case_name_shorts": "Lowe", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -73,9 +83,11 @@ "date_filed_is_approximate": false, "docket_numbers": "1-21-30", "judges": "Miller", + "lower_courts": "Allen County Court", "citations": "2021-Ohio-4559", "summaries": "Defendant-appellant did not receive ineffective assistance of trial counsel.", - "case_name_shorts": "Harris" + "case_name_shorts": "Harris", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -86,9 +98,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2-21-02", "judges": "Miller", + "lower_courts": "Auglaize County Court", "citations": "2021-Ohio-4560", "summaries": "The trial court did not err by not allowing the defendant-appellant to withdraw his plea post-sentence.", - "case_name_shorts": "Good" + "case_name_shorts": "Good", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -99,9 +113,11 @@ "date_filed_is_approximate": false, "docket_numbers": "14-21-05", "judges": "Willamowski", + "lower_courts": "Union County Court", "citations": "2021-Ohio-4566", "summaries": "Misdemeanor charges have a statute of limitations of two years. R.C. 2901.13(E) defines when an offense is committed. R.C. 2901.13(G) can be used to toll the statute of limitations when the corpus delicti of an offense remains undiscovered. R.C. 2901.13(H) tolls the statute of limitations during the time when the accused flees to avoid prosecution.", - "case_name_shorts": "Baldwin" + "case_name_shorts": "Baldwin", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -112,9 +128,11 @@ "date_filed_is_approximate": false, "docket_numbers": "15-21-03", "judges": "Willamowski", + "lower_courts": "Van Wert County Court", "citations": "2021-Ohio-4567", "summaries": "Trial court correctly determined that putative father's consent was not necessary as he did not register with the registry in a timely manner. However, paternity was established prior to the consent hearing and the trial court did not consider whether the father's consent was necessary pursuant to R.C. 3107.07(A).", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -125,9 +143,11 @@ "date_filed_is_approximate": false, "docket_numbers": "9-21-09", "judges": "Willamowski", + "lower_courts": "Marion County Court", "citations": "2021-Ohio-4565", "summaries": "Trial court did not abuse its discretion denying the request for an injunction requiring the removal of encroaching structure when the encroachment was unintentional, de minimis, and the harm of removal greatly exceeded the harm to the land owner.", - "case_name_shorts": "Brady" + "case_name_shorts": "Brady", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -138,9 +158,11 @@ "date_filed_is_approximate": false, "docket_numbers": "17-21-03", "judges": "Willamowski", + "lower_courts": "Shelby County Court", "citations": "2021-Ohio-4473", "summaries": "The Reagan Tokes Law does not run afoul of the separation of powers. The State may establish constructive possession of a controlled substance through circumstantial evidence alone.", - "case_name_shorts": "Silvas" + "case_name_shorts": "Silvas", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -151,9 +173,11 @@ "date_filed_is_approximate": false, "docket_numbers": "1-21-14", "judges": "Zimmerman", + "lower_courts": "Allen County Court", "citations": "2021-Ohio-4475", "summaries": "The trial court did not err by merging defendant-appellant's offenses for the purpose of sentencing. Judgment affirmed.", - "case_name_shorts": "Prince" + "case_name_shorts": "Prince", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -164,9 +188,11 @@ "date_filed_is_approximate": false, "docket_numbers": "6-21-02", "judges": "Zimmerman", + "lower_courts": "Hardin County Court", "citations": "2021-Ohio-4471", "summaries": "The defendant-appellant's convictions are based on sufficient evidence and are not against the manifest weight of the evidence. The trial court erred by not merging Counts One and Two and Counts Three and Four for the purposes of sentencing. Judgment affirmed in part and reversed in part and the matter is remanded to the trial court for further proceedings consistent with our disposition of defendant-appellant's third assignment of error.", - "case_name_shorts": "Morrissey" + "case_name_shorts": "Morrissey", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -177,9 +203,11 @@ "date_filed_is_approximate": false, "docket_numbers": "13-20-14", "judges": "Willamowski", + "lower_courts": "Seneca County Court", "citations": "2021-Ohio-4472", "summaries": "Trial court erred in finding that no gum was chewed during a 20 minute period immediately proceeding a breath test when the parties stipulated that the defendant had been chewing gum and no additional evidence was taken.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -190,9 +218,11 @@ "date_filed_is_approximate": false, "docket_numbers": "8-21-15", "judges": "Shaw", + "lower_courts": "Logan County Court", "citations": "2021-Ohio-4470", "summaries": "Conviction for theft supported by sufficient evidence and was not against the manifest weight of the evidence.", - "case_name_shorts": "Love" + "case_name_shorts": "Love", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -203,9 +233,11 @@ "date_filed_is_approximate": false, "docket_numbers": "15-21-06", "judges": "Shaw", + "lower_courts": "Van Wert County Court", "citations": "2021-Ohio-4476", "summaries": "The trial court did not err in accepting Appellant's guilty plea. Because Appellant's sentence was a stipulated sentence pursuant to a plea agreement, Appellant's sentence is not subject to review.", - "case_name_shorts": "Castro" + "case_name_shorts": "Castro", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -214,11 +246,13 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-21-12 17-21-13", + "docket_numbers": "17-21-12; 17-21-13", "judges": "Willamowski", + "lower_courts": "Shelby County Court", "citations": "2021-Ohio-4474", "summaries": "COVID protocols did not prevent appellant from working the case plan when she had over a year to work it before COVID protocols were enacted and did not do so. The determination of the trial court to grant permanent custody to the Agency was not against the manifest weight of the evidence and was in the best interest of the children.", - "case_name_shorts": "In re K.R." + "case_name_shorts": "In re K.R.", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -229,9 +263,11 @@ "date_filed_is_approximate": false, "docket_numbers": "5-21-14, 5-21-15, 5-21-16", "judges": "Zimmerman", + "lower_courts": "Hancock County Court", "citations": "2021-Ohio-4361", "summaries": "The State did not breach the term of the plea agreement with the defendant-appellant. Thus, we will not say any error occurred in the trial court below, let alone, plain error. Judgment affirmed.", - "case_name_shorts": "Taylor" + "case_name_shorts": "Taylor", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -242,9 +278,11 @@ "date_filed_is_approximate": false, "docket_numbers": "6-21-07", "judges": "Shaw", + "lower_courts": "Hardin County Court", "citations": "2021-Ohio-4368", "summaries": "Because a trial court may not enter a sentence to be served consecutively with a future sentence to be imposed, we vacate the trial court's sentence and remand the cause for further proceedings.", - "case_name_shorts": "Kavanagh" + "case_name_shorts": "Kavanagh", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -255,9 +293,11 @@ "date_filed_is_approximate": false, "docket_numbers": "1-21-32", "judges": "Shaw", + "lower_courts": "Allen County Court", "citations": "2021-Ohio-4362", "summaries": "Trial counsel was ineffective for failing to request waiver of mandatory fines despite being prompted to do so by trial court, and despite defendant having no income and no assets.", - "case_name_shorts": "Holbrook" + "case_name_shorts": "Holbrook", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -268,9 +308,11 @@ "date_filed_is_approximate": false, "docket_numbers": "9-19-04", "judges": "Shaw", + "lower_courts": "Marion County Court", "citations": "2021-Ohio-4367", "summaries": "Sufficient evidence was presented at trial to support convictions and convictions were not against the manifest weight of the evidence.", - "case_name_shorts": "Hinton" + "case_name_shorts": "Hinton", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -281,9 +323,11 @@ "date_filed_is_approximate": false, "docket_numbers": "14-21-02", "judges": "Willamowski", + "lower_courts": "Union County Court", "citations": "2021-Ohio-4363", "summaries": "If a petitioner raises an ineffective assistance of counsel claim based on evidence dehors in a timely-filed petition for post conviction relief, then res judicata will generally not operate as a bar to consideration of the petition.", - "case_name_shorts": "Costell" + "case_name_shorts": "Costell", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -294,9 +338,11 @@ "date_filed_is_approximate": false, "docket_numbers": "15-21-04", "judges": "Shaw", + "lower_courts": "Van Wert County Court", "citations": "2021-Ohio-4366", "summaries": "Presumed prison term imposed by the trial court was not contrary to law when the trial court had considered the purposes and principles of sentencing and the trial court considered the statutory factors.", - "case_name_shorts": "Bernhardt" + "case_name_shorts": "Bernhardt", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -307,9 +353,11 @@ "date_filed_is_approximate": false, "docket_numbers": "13-21-08", "judges": "Zimmerman", + "lower_courts": "Seneca County Court", "citations": "2021-Ohio-4364", "summaries": "The trial court did not err by denying defendant/appellant's motion to vacate or modify the arbitrator's award under R.C. Chapter 2711.", - "case_name_shorts": "Nye" + "case_name_shorts": "Nye", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -320,9 +368,11 @@ "date_filed_is_approximate": false, "docket_numbers": "Case No. 9-21-20", "judges": "Shaw", + "lower_courts": "Marion County Court", "citations": "2021-Ohio-4365", "summaries": "The trial court did not err by granting summary judgment to appellee in appellant's workers' compensation claim where the five-year limitation period found in R.C. 4123.52 had expired. Appellant's motion seeking additional conditions did not toll the statutory expiration of the claim.", - "case_name_shorts": "Chatfield" + "case_name_shorts": "Chatfield", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -333,9 +383,11 @@ "date_filed_is_approximate": false, "docket_numbers": "4-21-08, 4-21-09", "judges": "Miller", + "lower_courts": "Defiance County Court", "citations": "2021-Ohio-4254", "summaries": "The trial court's decision to deny defendant-appellant's request for a continuance did not violate defendant-appellant's right to due process. As the trial court's questioning of the State's witness did not evince bias or prejudice against defendant-appellant, the trial court did not violate defendant-appellant's right to due process. Defendant-appellant failed to establish that he received ineffective assistance of counsel.", - "case_name_shorts": "Urbina" + "case_name_shorts": "Urbina", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -346,9 +398,11 @@ "date_filed_is_approximate": false, "docket_numbers": "5-21-18 & 5-21-19", "judges": "Shaw", + "lower_courts": "Hancock County Court", "citations": "2021-Ohio-4248", - "summaries": "Jury Instructions - robbery grand theft of a motor vehicle because there was not sufficient evidence for jury to find Appellant not guilty of grand theft, or robbery, the trial court did not abuse its discretion in determining not to charge jury on lesser included offense of unauthorized use of a motor vehicle.", - "case_name_shorts": "Stoychoff" + "summaries": "Jury Instructions - robbery; grand theft of a motor vehicle; because there was not sufficient evidence for jury to find Appellant not guilty of grand theft, or robbery, the trial court did not abuse its discretion in determining not to charge jury on lesser included offense of unauthorized use of a motor vehicle.", + "case_name_shorts": "Stoychoff", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -359,9 +413,11 @@ "date_filed_is_approximate": false, "docket_numbers": "9-20-30", "judges": "Miller", + "lower_courts": "Marion County Court", "citations": "2021-Ohio-4249", "summaries": "Defendant-appellant did not receive ineffective assistance of counsel. The trial court did not err by denying defendant-appellant's request for new appointed trial counsel. The trial court did not violate defendant-appellant's right to a jury trial. Defendant-appellant's guilty pleas were knowing, intelligent, and voluntary.", - "case_name_shorts": "Green" + "case_name_shorts": "Green", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -372,9 +428,11 @@ "date_filed_is_approximate": false, "docket_numbers": "5-21-13, 5-21-17", "judges": "Willamowski", + "lower_courts": "Hancock County Court", "citations": "2021-Ohio-4250", "summaries": "A trial court may grant permanent custody to children's services if it is in the best interests of the child and the child cannot be placed with either of the child's parents within a reasonable time.", - "case_name_shorts": "In re B.G." + "case_name_shorts": "In re B.G.", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -385,9 +443,11 @@ "date_filed_is_approximate": false, "docket_numbers": "11-21-04", "judges": "Miller", + "lower_courts": "Paulding County Court", "citations": "2021-Ohio-4251", "summaries": "Appellants cannot demonstrate reversible error with respect to any of the trial court's reasonable-efforts findings. The trial court's decision granting permanent custody of the child to the Agency is not against the manifest weight of the evidence. Appellants failed to demonstrate that they received ineffective assistance of counsel.", - "case_name_shorts": "In re B.F." + "case_name_shorts": "In re B.F.", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -398,9 +458,11 @@ "date_filed_is_approximate": false, "docket_numbers": "10-21-03, 10-21-04", "judges": "Miller", + "lower_courts": "Mercer County Court", "citations": "2021-Ohio-4252", "summaries": "Under the plain language of R.C. 2107.52(A)(3) and (B)(2)(a), the testamentary gift from the testator to his predeceased brother is not one of the types of testamentary gifts entitled to the protections of the anti-lapse statute. Therefore, the trial court erred by finding that a substitute gift is created in favor of the predeceased brother's surviving descendants.", - "case_name_shorts": "Diller" + "case_name_shorts": "Diller", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -411,9 +473,11 @@ "date_filed_is_approximate": false, "docket_numbers": "5-21-12", "judges": "Zimmerman", + "lower_courts": "Hancock County Court", "citations": "2021-Ohio-4253", "summaries": "The trial court did not abuse its discretion by designating defendant/appellee as the residential parent and legal custodian of the parties' children. The trial court's child-support order does not constitute an abuse of discretion.", - "case_name_shorts": "Corson" + "case_name_shorts": "Corson", + "per_curiam": false }, { "case_dates": "2021-11-29", @@ -423,10 +487,12 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "9-21-14", - "judges": "Per Curiam", + "judges": "", + "lower_courts": "Marion County Court", "citations": "2021-Ohio-4183", "summaries": "Sufficient evidence was presented to support convictions and convictions were not against the manifest weight of the evidence. Convictions did not constitute a legal impossibility and appellant did not establish cumulative errors in this matter.", - "case_name_shorts": "Warner" + "case_name_shorts": "Warner", + "per_curiam": true }, { "case_dates": "2021-11-29", @@ -436,10 +502,12 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "9-21-15", - "judges": "Per Curiam", + "judges": "", + "lower_courts": "Marion County Court", "citations": "2021-Ohio-4182", "summaries": "Sufficient evidence was presented to support convictions and convictions were not against the manifest weight of the evidence. Further, trial court did not commit \"repeated\" misconduct in this matter that prejudiced appellant.", - "case_name_shorts": "Warner" + "case_name_shorts": "Warner", + "per_curiam": true }, { "case_dates": "2021-11-22", @@ -450,9 +518,11 @@ "date_filed_is_approximate": false, "docket_numbers": "9-21-07", "judges": "Willamowski", + "lower_courts": "Marion County Court", "citations": "2021-Ohio-4110", "summaries": "For a grant of summary judgment to be appropriate, the record must establish that the moving party must be entitled to judgment as a matter of law.", - "case_name_shorts": "Beair" + "case_name_shorts": "Beair", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -463,9 +533,11 @@ "date_filed_is_approximate": false, "docket_numbers": "9-21-11", "judges": "Willamowski", + "lower_courts": "Marion County Court", "citations": "2021-Ohio-3972", "summaries": "Sentences did not merge when they were committed separately. Trial court did not err in imposing consecutive sentences.", - "case_name_shorts": "Morgan" + "case_name_shorts": "Morgan", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -476,9 +548,11 @@ "date_filed_is_approximate": false, "docket_numbers": "9-21-16", "judges": "Miller", + "lower_courts": "Marion County Court", "citations": "2021-Ohio-3878", "summaries": "The trial court did not err by denying in part and dismissing in part defendant-appellant's motion to withdraw his no-contest plea.", - "case_name_shorts": "Pickens" + "case_name_shorts": "Pickens", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -489,9 +563,11 @@ "date_filed_is_approximate": false, "docket_numbers": "9-20-24, 9-20-26", "judges": "Shaw", + "lower_courts": "Marion County Court", "citations": "2021-Ohio-3875", - "summaries": "Appellant did not establish that consecutive sentences were improperly imposed challenge to Reagan Tokes Law overruled under our prior precedent.", - "case_name_shorts": "Coykendall" + "summaries": "Appellant did not establish that consecutive sentences were improperly imposed; challenge to Reagan Tokes Law overruled under our prior precedent.", + "case_name_shorts": "Coykendall", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -502,9 +578,11 @@ "date_filed_is_approximate": false, "docket_numbers": "1-20-43", "judges": "Willamowski", + "lower_courts": "Allen County Court", "citations": "2021-Ohio-3877", "summaries": "The admission or exclusion of evidence lies within the sound discretion of the trial court. The recent revisions to the self-defense statute do not apply to offenses that were committed before the effective date of the amendment.", - "case_name_shorts": "Cobb" + "case_name_shorts": "Cobb", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -515,9 +593,11 @@ "date_filed_is_approximate": false, "docket_numbers": "9-21-05", "judges": "Miller", + "lower_courts": "Marion County Court", "citations": "2021-Ohio-3879", "summaries": "The trial court erred by denying appellant's name-change application.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -528,9 +608,11 @@ "date_filed_is_approximate": false, "docket_numbers": "12-21-01", "judges": "Willamowski", + "lower_courts": "Putnam County Court", "citations": "2021-Ohio-3876", "summaries": "Trial court did not err in finding that wife's parents intended to gift real estate only to their daughter not to their son-in-law. Trial court erred by failing to consider wife's intent when adding husband's name to the deed. Trial court erred in calculating the property division. Issue of spousal support must be revisited once property division is redone because R.c. 3105.171(C)(3) requires the equitable division of property before the spousal support is calculated.", - "case_name_shorts": "Herman" + "case_name_shorts": "Herman", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -541,9 +623,11 @@ "date_filed_is_approximate": false, "docket_numbers": "8-21-03", "judges": "Zimmerman", + "lower_courts": "Logan County Court", "citations": "2021-Ohio-3784", "summaries": "The trial court did not abuse its discretion by concluding that defendant/appellant violated the terms and conditions of his community-control sanctions.", - "case_name_shorts": "Shamblin" + "case_name_shorts": "Shamblin", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -554,9 +638,11 @@ "date_filed_is_approximate": false, "docket_numbers": "7-21-02", "judges": "Miller", + "lower_courts": "Henry County Court", "citations": "2021-Ohio-3789", "summaries": "Defendant-appellant failed to demonstrate that he received ineffective assistance of counsel. Defendant-appellant's burglary conviction is supported by sufficient evidence.", - "case_name_shorts": "Hahn" + "case_name_shorts": "Hahn", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -567,9 +653,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2-21-06", "judges": "Shaw", + "lower_courts": "Auglaize County Court", "citations": "2021-Ohio-3788", - "summaries": "Trial court did not err by holding hearing regarding juror misconduct following deliberations trial court did not abuse its discretion by denying motion for new trial based on juror misconduct.", - "case_name_shorts": "Fisher" + "summaries": "Trial court did not err by holding hearing regarding juror misconduct following deliberations; trial court did not abuse its discretion by denying motion for new trial based on juror misconduct.", + "case_name_shorts": "Fisher", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -580,9 +668,11 @@ "date_filed_is_approximate": false, "docket_numbers": "4-21-03", "judges": "Willamowski", + "lower_courts": "Defiance County Court", "citations": "2021-Ohio-3790", "summaries": "A trial court is to consider the R.C. 2929.11 and R.C. 2929.12 factors in imposing an original sentence. A trial court does not need to consider these factors when reimposing the balance of a prison term after revoking judicial release.", - "case_name_shorts": "Davis" + "case_name_shorts": "Davis", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -593,9 +683,11 @@ "date_filed_is_approximate": false, "docket_numbers": "13-21-06", "judges": "Shaw", + "lower_courts": "Seneca County Court", "citations": "2021-Ohio-3787", "summaries": "Trial court properly denied Appellant's motion to withdraw plea as it alleged no new evidence and was barred by res judicata.", - "case_name_shorts": "Cartlidge" + "case_name_shorts": "Cartlidge", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -606,9 +698,11 @@ "date_filed_is_approximate": false, "docket_numbers": "15-21-02", "judges": "Zimmerman", + "lower_courts": "Van Wert County Court", "citations": "2021-Ohio-3785", "summaries": "The trial court did not abuse its discretion by granting plaintiff-appellee's motion for default judgment. The trial court did not abuse its discretion by denying defendants-appellants' motion for leave to file an untimely answer.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -619,9 +713,11 @@ "date_filed_is_approximate": false, "docket_numbers": "14-21-04", "judges": "Willamowski", + "lower_courts": "Union County Court", "citations": "2021-Ohio-3783", "summaries": "For a purchaser of land to be bound to a restrictive covenant, the purchaser must have actual or constructive notice of that restriction.", - "case_name_shorts": "Jakse" + "case_name_shorts": "Jakse", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -632,9 +728,11 @@ "date_filed_is_approximate": false, "docket_numbers": "3-21-01, 3-21-02, 3-21-03", "judges": "Zimmerman", + "lower_courts": "Crawford County Court", "citations": "2021-Ohio-3786", "summaries": "The trial court did not err in awarding permanent custody of G.J. to the agency. Appellant lacked standing to appeal the trial court's decision granting permanent custody of K.S. and A.J. to the agency.", - "case_name_shorts": "In re G.J." + "case_name_shorts": "In re G.J.", + "per_curiam": false }, { "case_dates": "2021-10-18", @@ -645,8 +743,10 @@ "date_filed_is_approximate": false, "docket_numbers": "1-20-30", "judges": "Zimmerman", + "lower_courts": "Allen County Court", "citations": "2021-Ohio-3701", "summaries": "The trial court did not err by admitting certain exhibits and witnesses' testimonies. Defendant-appellant's argument that trial counsel is ineffective is not well-taken in light of our determinations in his first assignment of error. Judgment affirmed.", - "case_name_shorts": "Lotzer" + "case_name_shorts": "Lotzer", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohioctapp_4_example.compare.json b/tests/examples/opinions/united_states/ohioctapp_4_example.compare.json index 6a74b6a45..e46c584e5 100644 --- a/tests/examples/opinions/united_states/ohioctapp_4_example.compare.json +++ b/tests/examples/opinions/united_states/ohioctapp_4_example.compare.json @@ -8,9 +8,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA1", "judges": "Hess", + "lower_courts": "Hocking County Court", "citations": "2021-Ohio-4479", - "summaries": "Evid.R. 201 judicial notice Civ.R. 61 harmless error legal custody R.C. 2151.353(A)(3) best interest of the children", - "case_name_shorts": "In re Lu.B." + "summaries": "Evid.R. 201; judicial notice; Civ.R. 61; harmless error; legal custody; R.C. 2151.353(A)(3); best interest of the children", + "case_name_shorts": "In re Lu.B.", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -21,9 +23,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA3737", "judges": "Wilkin", + "lower_courts": "Ross County Court", "citations": "2021-Ohio-4489", - "summaries": "Possession of heroin sufficiency of the evidence manifest weight postrelease control-clerical error and nunc pro tunc entry", - "case_name_shorts": "Walker" + "summaries": "Possession of heroin; sufficiency of the evidence; manifest weight; postrelease control-clerical error; and nunc pro tunc entry", + "case_name_shorts": "Walker", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -34,9 +38,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA2", "judges": "Wilkin", + "lower_courts": "Hocking County Court", "citations": "2021-Ohio-4513", - "summaries": "Abused, neglected, and dependent children--adjudication and disposition--trial court's finding that children are dependent not against the manifest weight of the evidence evidence supported finding that agency used reasonable efforts under the circumstances agency's failure to file and court's failure to adopt and journalize a case plan did not prejudice appellant", - "case_name_shorts": "In re A.K." + "summaries": "Abused, neglected, and dependent children--adjudication and disposition--trial court's finding that children are dependent not against the manifest weight of the evidence; evidence supported finding that agency used reasonable efforts under the circumstances; agency's failure to file and court's failure to adopt and journalize a case plan did not prejudice appellant", + "case_name_shorts": "In re A.K.", + "per_curiam": false }, { "case_dates": "2021-12-15", @@ -47,9 +53,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA9", "judges": "Smith", + "lower_courts": "Highland County Court", "citations": "2021-Ohio-4485", "summaries": "CUSTODY - Trial court did not abuse its discretion in awarding legal custody to paternal grandmother over non-relative temporary custodian where trial court's decision was supported by some competent credible evidence.", - "case_name_shorts": "Rhoads" + "case_name_shorts": "Rhoads", + "per_curiam": false }, { "case_dates": "2021-12-14", @@ -60,9 +68,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA10", "judges": "Hess", + "lower_courts": "Pickaway County Court", "citations": "2021-Ohio-4414", - "summaries": "domestic violence R.C. 2919.25(A) ineffective assistance of counsel opinion testimony ultimate issue sound trial strategy Evid.R. 404(B)", - "case_name_shorts": "Moore" + "summaries": "domestic violence; R.C. 2919.25(A); ineffective assistance of counsel; opinion testimony; ultimate issue; sound trial strategy; Evid.R. 404(B)", + "case_name_shorts": "Moore", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -73,9 +83,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA9", "judges": "Abele", + "lower_courts": "Meigs County Court", "citations": "2021-Ohio-4421", "summaries": "Trial court properly denied appellant's motion for reallocation of parental rights and responsibilites.", - "case_name_shorts": "Robinson" + "case_name_shorts": "Robinson", + "per_curiam": false }, { "case_dates": "2021-12-02", @@ -86,9 +98,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA8", "judges": "Smith", + "lower_courts": "Washington County Court", "citations": "2021-Ohio-4442", - "summaries": "JUVENILE - Because there was some competent, credible evidence supporting all of the elements of the offense of disorderly conduct and because the self-defense statute did not apply, appellant's delinquency adjudication is not against the manifest weight of the evidence because appellant failed to request findings of fact and conclusions of law under Juv.R. 29(F)(3) or Civ.R. 52, the trial court had no obligation to set forth specific factual findings.", - "case_name_shorts": "In re R.N.F." + "summaries": "JUVENILE - Because there was some competent, credible evidence supporting all of the elements of the offense of disorderly conduct and because the self-defense statute did not apply, appellant's delinquency adjudication is not against the manifest weight of the evidence; because appellant failed to request findings of fact and conclusions of law under Juv.R. 29(F)(3) or Civ.R. 52, the trial court had no obligation to set forth specific factual findings.", + "case_name_shorts": "In re R.N.F.", + "per_curiam": false }, { "case_dates": "2021-12-01", @@ -99,9 +113,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA4", "judges": "Hess", + "lower_courts": "Lawrence County Court", "citations": "2021-Ohio-4256", - "summaries": "abuse of discretion paternity name change residential parent shared parenting plan child support R.C. 3109.112 R.C. 3109.051 R.C. 3119.051 findings of fact conclusions of law Civ.R. 52", - "case_name_shorts": "Wilburn" + "summaries": "abuse of discretion; paternity; name change; residential parent; shared parenting plan; child support; R.C. 3109.112; R.C. 3109.051; R.C. 3119.051; findings of fact; conclusions of law; Civ.R. 52", + "case_name_shorts": "Wilburn", + "per_curiam": false }, { "case_dates": "2021-11-29", @@ -112,9 +128,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA8", "judges": "Smith", + "lower_courts": "Meigs County Court", "citations": "2021-Ohio-4386", - "summaries": "CRIMINAL- POSTCONVICTION PETITION-EXTRADITION-REASONABLE DILIGENCE - Appellant's motion for postconviction relief was untimely and should have been dismissed as trial court lacked jurisdiction to consider even if Appellant's speedy trial claims presented in motion for postconviction relief had been timely, appellate court would find no merit to claim that prosecutor's office failed to use reasonable diligence to secure Appellant's presence in Ohio given that Mississippi is not a party to the Interstate Agreement on Detainers (IAD) and Ohio was without power to force Mississippi to turn over Appellant until all parties and agencies agreed for Appellant to be released from Mississippi and transported to Ohio.", - "case_name_shorts": "" + "summaries": "CRIMINAL- POSTCONVICTION PETITION-EXTRADITION-REASONABLE DILIGENCE - Appellant's motion for postconviction relief was untimely and should have been dismissed as trial court lacked jurisdiction to consider; even if Appellant's speedy trial claims presented in motion for postconviction relief had been timely, appellate court would find no merit to claim that prosecutor's office failed to use reasonable diligence to secure Appellant's presence in Ohio given that Mississippi is not a party to the Interstate Agreement on Detainers (IAD) and Ohio was without power to force Mississippi to turn over Appellant until all parties and agencies agreed for Appellant to be released from Mississippi and transported to Ohio.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -125,9 +143,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA17", "judges": "Smith", + "lower_courts": "Washington County Court", "citations": "2021-Ohio-4208", - "summaries": "PROBABLE CAUSE FOR ISSUANCE OF SEARCH WARRANT-When relying upon the tip of a known informant that is part of the criminal milieu in support of the issuance of a search warrant, an affiant must attest to the informant's veracity, reliability, and basis of knowledge, or must independently corroborate the information provided independent police corroboration of a suspect's address and vehicle does not constitute evidence of drug trafficking the unverified tip of a known, criminal informant coupled only with independent police verification of the suspect's address and vehicle and criminal history consisting of only one drug-related conviction from eight years prior and one pending drug-related charge without any information regarding the basis for the pending charge, did not constitute sufficient probable cause for the issuance of a search warrant for the suspect's residence.", - "case_name_shorts": "Siegel" + "summaries": "PROBABLE CAUSE FOR ISSUANCE OF SEARCH WARRANT-When relying upon the tip of a known informant that is part of the criminal milieu in support of the issuance of a search warrant, an affiant must attest to the informant's veracity, reliability, and basis of knowledge, or must independently corroborate the information provided; independent police corroboration of a suspect's address and vehicle does not constitute evidence of drug trafficking; the unverified tip of a known, criminal informant coupled only with independent police verification of the suspect's address and vehicle and criminal history consisting of only one drug-related conviction from eight years prior and one pending drug-related charge without any information regarding the basis for the pending charge, did not constitute sufficient probable cause for the issuance of a search warrant for the suspect's residence.", + "case_name_shorts": "Siegel", + "per_curiam": false }, { "case_dates": "2021-11-22", @@ -138,9 +158,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA4", "judges": "Hess", + "lower_courts": "Hocking County Court", "citations": "2021-Ohio-4164", - "summaries": "Zoning inspector appropriation limited access highway access rights R.C. 519.17", - "case_name_shorts": "Devol" + "summaries": "Zoning inspector; appropriation; limited access highway; access rights; R.C. 519.17", + "case_name_shorts": "Devol", + "per_curiam": false }, { "case_dates": "2021-11-16", @@ -151,9 +173,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA13, 21CA14, 21CA15, 21CA16", "judges": "Abele", + "lower_courts": "Highland County Court", "citations": "2021-Ohio-4146", - "summaries": "Permanent custody-trial court's decision to grant agency permanent custody of four children not against the manifest weight of the evidence mother ignored concerns that father had sexually abused oldest child and did not report her concerns to anyone all children suffered emotional trauma while living with mother and father that resulted in significant behavioral issues that require ongoing counseling children's behaviors improved once court terminated visits with mother children do not have a healthy relationship with mother given mother's past failures to protect them.", - "case_name_shorts": "In re J.M." + "summaries": "Permanent custody-trial court's decision to grant agency permanent custody of four children not against the manifest weight of the evidence; mother ignored concerns that father had sexually abused oldest child and did not report her concerns to anyone; all children suffered emotional trauma while living with mother and father that resulted in significant behavioral issues that require ongoing counseling; children's behaviors improved once court terminated visits with mother; children do not have a healthy relationship with mother given mother's past failures to protect them.", + "case_name_shorts": "In re J.M.", + "per_curiam": false }, { "case_dates": "2021-11-12", @@ -164,9 +188,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA8", "judges": "Hess", + "lower_courts": "Jackson County Court", "citations": "2021-Ohio-4040", "summaries": "allied offenses of similar import, R.C. 2905.01(A)(5), kidnapping, R.C. 2921.31, obstructing official business, separate victims", - "case_name_shorts": "Blackburn" + "case_name_shorts": "Blackburn", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -177,9 +203,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CACA3723, 20CA3725, 20CA3726, 20CA3732", "judges": "Abele", + "lower_courts": "Ross County Court", "citations": "2021-Ohio-4082", "summaries": "The trial court's decision and judgment concerning the administration of a trust did not constitute an abuse of discretion.", - "case_name_shorts": "Bryan" + "case_name_shorts": "Bryan", + "per_curiam": false }, { "case_dates": "2021-11-09", @@ -190,9 +218,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA3749", "judges": "Hess", + "lower_courts": "Ross County Court", "citations": "2021-Ohio-4039", - "summaries": "corpus delicti rule manifest weight of the evidence insufficiency of the evidence ineffective assistance of counsel knowingly serious physical harm prejudice prosecutorial discretion", - "case_name_shorts": "Cutright" + "summaries": "corpus delicti rule; manifest weight of the evidence; insufficiency of the evidence; ineffective assistance of counsel; knowingly; serious physical harm; prejudice; prosecutorial discretion", + "case_name_shorts": "Cutright", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -203,9 +233,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA3739", "judges": "Abele", + "lower_courts": "Ross County Court", "citations": "2021-Ohio-4028", "summaries": "Trial court did not abuse its discretion when it denied appellant's motion to withdraw her plea, but did err when due to the date of the offense the court should have sentenced appellant under previous sentencing guidelines.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -216,9 +248,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA09", "judges": "Abele", + "lower_courts": "Athens County Court", "citations": "2021-Ohio-4081", "summaries": "Trial court properly denied motion to correct void sentence.", - "case_name_shorts": "Boler" + "case_name_shorts": "Boler", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -229,9 +263,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA11 & 21CA12", "judges": "Wilkin", + "lower_courts": "Highland County Court", "citations": "2021-Ohio-4032", - "summaries": "Permanent custody--trial court's permanent custody decision not against the manifest weight of the evidence children are bonded with foster families and recovering from emotional trauma suffered while living with mother children do not wish to live with mother mother does not have appropriate home for children children have been in agency's temporary custody for more than 12 months of a consecutive 22-month period", - "case_name_shorts": "In re A.T." + "summaries": "Permanent custody--trial court's permanent custody decision not against the manifest weight of the evidence; children are bonded with foster families and recovering from emotional trauma suffered while living with mother; children do not wish to live with mother; mother does not have appropriate home for children; children have been in agency's temporary custody for more than 12 months of a consecutive 22-month period", + "case_name_shorts": "In re A.T.", + "per_curiam": false }, { "case_dates": "2021-10-26", @@ -242,9 +278,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA9 & 21CA10", "judges": "Smith", + "lower_courts": "Pickaway County Court", "citations": "2021-Ohio-3874", "summaries": "CIVIL-MOTION TO CONTINUE-ABUSE OF DISCRETION-PERMANENT CUSTODY-LEGAL CUSTODY-MANIFEST WEIGHT-BEST INTERESTS - The trial court did not abuse its discretion in overruling appellant's motion to continue the final hearing where the case had been pending for more than two years and, if granted, the continuance would have been the third continuence granted in the case, and where the trial court determined that granting the motion was not in the best interests of the children. Although a parent's case plan compliance may be a relevant factor, it is not conclusive of which placement option will serve a child's best interest. The trial court's best interest determination was not against the manifest weight of the evidence where the agency presented substantial clear and convincing evidence that placing the child in its permanent custody would serve the child's best interest. The trial court's best interest determination regarding the grant of legal custody of the other child to the paternal grandparents was likewise supported by the evidence and was not against the manifest weight of the evidence.", - "case_name_shorts": "In re Ca.S." + "case_name_shorts": "In re Ca.S.", + "per_curiam": false }, { "case_dates": "2021-10-06", @@ -255,9 +293,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA3947", "judges": "Hess", + "lower_courts": "Scioto County Court", "citations": "2021-Ohio-3609", - "summaries": "petition for postconviction relief untimely jurisdiction R.C. 2953.21 abuse of discretion", - "case_name_shorts": "" + "summaries": "petition for postconviction relief; untimely; jurisdiction; R.C. 2953.21; abuse of discretion", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-10-05", @@ -268,9 +308,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA3940", "judges": "Abele", + "lower_courts": "Scioto County Court", "citations": "2021-Ohio-3660", "summaries": "Permanent custody-trial court did not deprive appellant of due process of law by holding second part of permanent custody hearing in appellant's absence.", - "case_name_shorts": "In re A.B." + "case_name_shorts": "In re A.B.", + "per_curiam": false }, { "case_dates": "2021-10-04", @@ -281,9 +323,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19CA8", "judges": "Smith", + "lower_courts": "Jackson County Court", "citations": "2021-Ohio-3688", "summaries": "SEARCH AND SEIZURE - Trial court erred in denying motion to suppress where law enforcement entered Appellant's home based solely on the consent of Appellant's brother, who was not a resident or co-tenant of the home, and did not have common authority over the home which requires \"mutual use of the property by persons having joint access or control for most purposes.\"", - "case_name_shorts": "Brandau" + "case_name_shorts": "Brandau", + "per_curiam": false }, { "case_dates": "2021-09-23", @@ -294,9 +338,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA9", "judges": "Hess", + "lower_courts": "Lawrence County Court", "citations": "2021-Ohio-3454", - "summaries": "jurisdiction John Doe defendants Civ.R. 15(D) Civ.R. 3(A) summary judgment negligence premises liability invitee breach actual knowledge of the hazard constructive knowledge of the hazard wet spot", - "case_name_shorts": "Stubbs" + "summaries": "jurisdiction; John Doe defendants; Civ.R. 15(D); Civ.R. 3(A); summary judgment; negligence; premises liability; invitee; breach; actual knowledge of the hazard; constructive knowledge of the hazard; wet spot", + "case_name_shorts": "Stubbs", + "per_curiam": false }, { "case_dates": "2021-09-23", @@ -307,9 +353,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA3", "judges": "Smith", + "lower_courts": "Meigs County Court", "citations": "2021-Ohio-3433", - "summaries": "CIVIL-SUMMARY JUDGMENT-PRESENTATION OF CLAIM AGAINST ESTATE-R.C. 2117.06-STRICT COMPLIANCE - The trial court's grant of summary judgment concluding that plaintiff cannot collect from the assets of the estate due to his failure to strictly comply with the requirements of R.C. 2117.06 is affirmed however, to the extent the trial court's order also held that all of plaintiff's claims were completely barred against the estate, as opposed to simply barring collection from the estate, the order exceeded the relief requested in the summary judgment motion and, therefore, must be reversed further, despite failing to properly present a claim against the estate in accordance with R.C. 2117.06, plaintiff was entitled to pursue his personal injury action against the estate for purposes of seeking recovery from assets outside the estate, primarily any insurance coverage available to decedent at the time of the accident.", - "case_name_shorts": "Doczi" + "summaries": "CIVIL-SUMMARY JUDGMENT-PRESENTATION OF CLAIM AGAINST ESTATE-R.C. 2117.06-STRICT COMPLIANCE - The trial court's grant of summary judgment concluding that plaintiff cannot collect from the assets of the estate due to his failure to strictly comply with the requirements of R.C. 2117.06 is affirmed; however, to the extent the trial court's order also held that all of plaintiff's claims were completely barred against the estate, as opposed to simply barring collection from the estate, the order exceeded the relief requested in the summary judgment motion and, therefore, must be reversed; further, despite failing to properly present a claim against the estate in accordance with R.C. 2117.06, plaintiff was entitled to pursue his personal injury action against the estate for purposes of seeking recovery from assets outside the estate, primarily any insurance coverage available to decedent at the time of the accident.", + "case_name_shorts": "Doczi", + "per_curiam": false }, { "case_dates": "2021-09-16", @@ -320,9 +368,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA10", "judges": "Smith", + "lower_courts": "Meigs County Court", "citations": "2021-Ohio-3368", - "summaries": "POSTCONVICTION RELIEF - Prior appeal that resulted in remand for resentencing had no impact on the time requirements for filing of appellant's petitions for postconviction relief and thus did not extend the timely-filing requirement contained in R.C.2953.21(A)(2) because the petitions for postconviction relief were time-barred, the trial court had no duty to issue findings of fact or conclusions of law and the appellant was not entitled to a hearing on his petitions appellant's petitions to vacate or set aside judgments of conviction or sentence were untimely-filed petitions for postconviction relief that should have been dismissed for lack of jurisdiction by the trial court, rather than denied, and the judgment of the trial court is modified accordingly.", - "case_name_shorts": "Daboni" + "summaries": "POSTCONVICTION RELIEF - Prior appeal that resulted in remand for resentencing had no impact on the time requirements for filing of appellant's petitions for postconviction relief and thus did not extend the timely-filing requirement contained in R.C.2953.21(A)(2); because the petitions for postconviction relief were time-barred, the trial court had no duty to issue findings of fact or conclusions of law and the appellant was not entitled to a hearing on his petitions; appellant's petitions to vacate or set aside judgments of conviction or sentence were untimely-filed petitions for postconviction relief that should have been dismissed for lack of jurisdiction by the trial court, rather than denied, and the judgment of the trial court is modified accordingly.", + "case_name_shorts": "Daboni", + "per_curiam": false }, { "case_dates": "2021-09-16", @@ -333,9 +383,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA3919", "judges": "Wilkin", + "lower_courts": "Scioto County Court", "citations": "2021-Ohio-3337", - "summaries": "Express and implied warranties Magnuson Moss Warranty Act damages R.C. 1302.88(B) R.C. 1302.85 de novo manifest weight of the evidence", - "case_name_shorts": "Koons" + "summaries": "Express and implied warranties; Magnuson Moss Warranty Act; damages; R.C. 1302.88(B); R.C. 1302.85; de novo; manifest weight of the evidence", + "case_name_shorts": "Koons", + "per_curiam": false }, { "case_dates": "2021-09-15", @@ -346,9 +398,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19CA3696", "judges": "Abele", + "lower_courts": "Ross County Court", "citations": "2021-Ohio-3390", - "summaries": "Fourth Amendment-search warrant-probable cause-officers had probable cause to search appellant's house search-warrant affidavit described information learned from confidential informant and confidential source regarding appellant's recent and ongoing involvement in drug-related activity, including transporting drugs from other locations in Ohio to his residence facts presented in search-warrant affidavit were not too conclusory, too stale, or too unreliable to establish probable cause search warrant described items to be searched and seized with particularity-disclosure of confidential sources appellant failed to establish that trial court abused its discretion by overruling his request for disclosure of confidential informant's and confidential source's identities when neither helped state establish an element of of the criminal charges against appellant-manifest weight appellant's heroin possession conviction not against the manifest weight of the evidence when heroin located in master bedroom of appellant's residence that also contained document bearing appellant's name and when appellant admitted that items discovered in residence belonged to him.", - "case_name_shorts": "Thompson" + "summaries": "Fourth Amendment-search warrant-probable cause-officers had probable cause to search appellant's house; search-warrant affidavit described information learned from confidential informant and confidential source regarding appellant's recent and ongoing involvement in drug-related activity, including transporting drugs from other locations in Ohio to his residence; facts presented in search-warrant affidavit were not too conclusory, too stale, or too unreliable to establish probable cause; search warrant described items to be searched and seized with particularity-disclosure of confidential sources; appellant failed to establish that trial court abused its discretion by overruling his request for disclosure of confidential informant's and confidential source's identities when neither helped state establish an element of of the criminal charges against appellant-manifest weight; appellant's heroin possession conviction not against the manifest weight of the evidence when heroin located in master bedroom of appellant's residence that also contained document bearing appellant's name and when appellant admitted that items discovered in residence belonged to him.", + "case_name_shorts": "Thompson", + "per_curiam": false }, { "case_dates": "2021-09-15", @@ -359,9 +413,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA36", "judges": "Hess", + "lower_courts": "Washington County Court", "citations": "2021-Ohio-3249", - "summaries": "motion to terminate guardianship temporary guardianship R.C. 2111.46 good cause permanent guardianship R.C. 3109.04(E)(1)(a) best interest of the child clear and convincing evidence", - "case_name_shorts": "" + "summaries": "motion to terminate guardianship; temporary guardianship; R.C. 2111.46; good cause; permanent guardianship; R.C. 3109.04(E)(1)(a); best interest of the child; clear and convincing evidence", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-09-03", @@ -372,9 +428,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19CA3686", "judges": "Smith", + "lower_courts": "Ross County Court", "citations": "2021-Ohio-3147", "summaries": "CRIM.R. 33(B) - Trial court did not abuse its discretion in denying motion for new trial as untimely since a jury veredict is considered rendered when it is announced in open court, not when it is filed. Crim.R. 33(B).", - "case_name_shorts": "Vulgamore" + "case_name_shorts": "Vulgamore", + "per_curiam": false }, { "case_dates": "2021-09-03", @@ -385,9 +443,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA14", "judges": "Smith", + "lower_courts": "Gallia County Court", "citations": "2021-Ohio-3090", - "summaries": "COMPETENCY-WAIVER OF RIGHT TO COUNSEL - Despite Appellant's claim to be a Moorish American National and his defense to first degree felony charges based on faulty syntax, there was not sufficient indicia of incompetency to warrant trial court's sua sponte ordering a competency evaluation rather, Appellant's presence of mind to file documents and request continuances, along with his sometimes polite conduct and at other times uncooperative behavior, indicated a purpose to delay the proceedings and based on de novo review of the record, Appellant's waiver of the right to counsel was voluntary, knowing, and intelligent where trial court attempted to engage uncooperative defendant who refused appointed counsel and refused effective colloquy with the court.", - "case_name_shorts": "Simon" + "summaries": "COMPETENCY-WAIVER OF RIGHT TO COUNSEL - Despite Appellant's claim to be a Moorish American National and his defense to first degree felony charges based on faulty syntax, there was not sufficient indicia of incompetency to warrant trial court's sua sponte ordering a competency evaluation; rather, Appellant's presence of mind to file documents and request continuances, along with his sometimes polite conduct and at other times uncooperative behavior, indicated a purpose to delay the proceedings; and based on de novo review of the record, Appellant's waiver of the right to counsel was voluntary, knowing, and intelligent where trial court attempted to engage uncooperative defendant who refused appointed counsel and refused effective colloquy with the court.", + "case_name_shorts": "Simon", + "per_curiam": false }, { "case_dates": "2021-09-03", @@ -398,9 +458,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA17", "judges": "Wilkin", + "lower_courts": "Pickaway County Court", "citations": "2021-Ohio-3108", - "summaries": "Bail Bonds R.C. 2937.26, Forfeiture Proceedings Surety Liability Show Cause Good Cause Abuse of Discretion", - "case_name_shorts": "" + "summaries": "Bail Bonds; R.C. 2937.26, Forfeiture Proceedings; Surety; Liability; Show Cause; Good Cause; Abuse of Discretion", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-09-03", @@ -411,9 +473,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA3924", "judges": "Wilkin", + "lower_courts": "Scioto County Court", "citations": "2021-Ohio-3110", - "summaries": "Community-control sanction technical and nontechnical violations prison term joint sentence not reviewable on appeal ineffective assistance of counsel court costs\u2014special project fees R.C. 2303.20 R.C. 2929.15(B)(1)(c) R.C. 2947.23 R.C. 2953.08(D)(1) Scioto County Court of Common Pleas Local Rule 13", - "case_name_shorts": "Duckett" + "summaries": "Community-control sanction; technical and nontechnical violations; prison term; joint sentence not reviewable on appeal; ineffective assistance of counsel; court costs\u2014special project fees; R.C. 2303.20; R.C. 2929.15(B)(1)(c); R.C. 2947.23; R.C. 2953.08(D)(1); Scioto County Court of Common Pleas Local Rule 13", + "case_name_shorts": "Duckett", + "per_curiam": false }, { "case_dates": "2021-09-03", @@ -424,9 +488,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA1 & 21CA2", "judges": "Smith", + "lower_courts": "Highland County Court", "citations": "2021-Ohio-3338", "summaries": "CUSTODY-SETTLEMENT AGREEMENTS - Issues about settlement agreement raised by Appellant involved only minor disputes and trial court did not abuse its discretion in signing agreed order and entry where key elements of settlement agreement were read into the record and all parties assented to the agreement on the record.", - "case_name_shorts": "In re K.K." + "case_name_shorts": "In re K.K.", + "per_curiam": false }, { "case_dates": "2021-09-03", @@ -437,9 +503,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA5", "judges": "Wilkin", + "lower_courts": "Jackson County Court", "citations": "2021-Ohio-3109", "summaries": "Juvenile offender registrant\u2014R.C. 2151.83(A)(1)\u2014when a juvenile court commits a 16- or 17-year-old delinquent child to a secure facility, R.C. 2152.83(A)(1) requires the court to defer classifying the child a JOR until the child's release from the secure facility", - "case_name_shorts": "In re D.F." + "case_name_shorts": "In re D.F.", + "per_curiam": false }, { "case_dates": "2021-09-03", @@ -450,9 +518,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA3740", "judges": "Smith", + "lower_courts": "Ross County Court", "citations": "2021-Ohio-3169", - "summaries": "OBJECTIONS-CIV.R. 5(A)-CIV.R. 5(B)(4) - Trial court erred in considering father's objections to magistrate's decision, as father failed to include a certificate of service as required by Civ.R. 5(A) despite this error, trial court reached the correct result, albeit for the wrong reasons, thus the decision of the trial court is not reversed.", - "case_name_shorts": "Goodman" + "summaries": "OBJECTIONS-CIV.R. 5(A)-CIV.R. 5(B)(4) - Trial court erred in considering father's objections to magistrate's decision, as father failed to include a certificate of service as required by Civ.R. 5(A); despite this error, trial court reached the correct result, albeit for the wrong reasons, thus the decision of the trial court is not reversed.", + "case_name_shorts": "Goodman", + "per_curiam": false }, { "case_dates": "2021-09-03", @@ -462,10 +532,12 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20CA3925", - "judges": "Per Curiam", + "judges": "", + "lower_courts": "Scioto County Court", "citations": "2021-Ohio-3141", - "summaries": "CIVIL-ADMINISTRATIVELAW-INSURANCE - Common pleas court did not abuse its discretion by finding Department of Insurance's order revoking Appellant's insurance license was supported by reliable, probative, and substantial evidence where: (1) Appellant stipulated to impersonation of a client and (2) evidence supported finding that Appellant knew or should have known document submitted to support his disability claim was forged also, common pleas court did not abuse its discretion when it determined department's order was in accordance with the law and principles of due process while there must be strict compliance with the administrative hearing process outlined in Chapter 119, Appellant provided no authority in support of his argument that R.C. 119.09 mandates that an order of the Department of Insurance must be mailed to the affected parties and their attorneys or other representatives of record simultaneously.", - "case_name_shorts": "Brisker" + "summaries": "CIVIL-ADMINISTRATIVELAW-INSURANCE - Common pleas court did not abuse its discretion by finding Department of Insurance's order revoking Appellant's insurance license was supported by reliable, probative, and substantial evidence where: (1) Appellant stipulated to impersonation of a client and (2) evidence supported finding that Appellant knew or should have known document submitted to support his disability claim was forged; also, common pleas court did not abuse its discretion when it determined department's order was in accordance with the law and principles of due process; while there must be strict compliance with the administrative hearing process outlined in Chapter 119, Appellant provided no authority in support of his argument that R.C. 119.09 mandates that an order of the Department of Insurance must be mailed to the affected parties and their attorneys or other representatives of record simultaneously.", + "case_name_shorts": "Brisker", + "per_curiam": true }, { "case_dates": "2021-09-01", @@ -476,9 +548,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA1127", "judges": "Hess", + "lower_courts": "Adams County Court", "citations": "2021-Ohio-3127", - "summaries": "allied offenses of similar import merger R.C. 2941.25 consecutive prison terms maximum prison sentence R.C. 2929.14 Marsy's Law no-contact order Regan Tokes Act not ripe for review Crim.R. 11 guilty plea voluntarily and knowingly ineffective assistance of counsel", - "case_name_shorts": "Hughes" + "summaries": "allied offenses of similar import; merger; R.C. 2941.25; consecutive prison terms; maximum prison sentence; R.C. 2929.14; Marsy's Law; no-contact order; Regan Tokes Act; not ripe for review; Crim.R. 11; guilty plea; voluntarily and knowingly; ineffective assistance of counsel", + "case_name_shorts": "Hughes", + "per_curiam": false }, { "case_dates": "2021-09-01", @@ -489,9 +563,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA13", "judges": "Smith", + "lower_courts": "Athens County Court", "citations": "2021-Ohio-3148", - "summaries": "PERMANENT CUSTODY - Because the agency's motion to modify disposition to permanent custody adequately alleged that the child had been in its temporary custody for 12 or more months of a consecutive 22-month period, we reject the appellant's argument that the agency failed to give him adequate notice that it was seeking permanent custody on the basis of R.C. 2151.414(B)(1)(d) and the trial court's decision to grant the agency permanent custody of the child was not against the manifest weight of the evidence where the agency presented clear and convincing evidence that placing the child in the agency's custody was in the child's best interest.", - "case_name_shorts": "In re B.P." + "summaries": "PERMANENT CUSTODY - Because the agency's motion to modify disposition to permanent custody adequately alleged that the child had been in its temporary custody for 12 or more months of a consecutive 22-month period, we reject the appellant's argument that the agency failed to give him adequate notice that it was seeking permanent custody on the basis of R.C. 2151.414(B)(1)(d); and the trial court's decision to grant the agency permanent custody of the child was not against the manifest weight of the evidence where the agency presented clear and convincing evidence that placing the child in the agency's custody was in the child's best interest.", + "case_name_shorts": "In re B.P.", + "per_curiam": false }, { "case_dates": "2021-08-31", @@ -502,9 +578,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA3702", "judges": "Wilkin", + "lower_courts": "Ross County Court", "citations": "2021-Ohio-3075", - "summaries": "Misdemeanor domestic violence felonious assault child endangering speedy-trial right double jeopardy time between municipal charges and indictment superseding indictment tolled time different facts R.C. 2945.71(E) R.C. 2945.72(D) R.C. 2945.72(H)", - "case_name_shorts": "Perdew" + "summaries": "Misdemeanor domestic violence; felonious assault; child endangering; speedy-trial right; double jeopardy; time between municipal charges and indictment; superseding indictment; tolled time; different facts; R.C. 2945.71(E); R.C. 2945.72(D); R.C. 2945.72(H)", + "case_name_shorts": "Perdew", + "per_curiam": false }, { "case_dates": "2021-08-31", @@ -515,9 +593,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA35", "judges": "Smith", + "lower_courts": "Washington County Court", "citations": "2021-Ohio-3149", "summaries": "SENTENCING - Because we found that the trial court properly considered the principles and purposes of felony sentencing as well as the seriousness and recidivism factors, properly applied postrelease control, and imposed a sentence within the statutory range, the appellant has failed to meet his burden of clearly and convincingly demonstrating that the record fails to support the trial court's findings or that his maximum prison sentence was contrary to law.", - "case_name_shorts": "Moore" + "case_name_shorts": "Moore", + "per_curiam": false }, { "case_dates": "2021-08-26", @@ -528,9 +608,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA8", "judges": "Abele", + "lower_courts": "Lawrence County Court", "citations": "2021-Ohio-3389", - "summaries": "Civ.R. 12(B)(6) motion to dismiss-politiical-subdivision immunity-R.C. 2744.02(B)(2), (4), and (5) political-subdivision and employee sued in official capicity entitled to immunity when appellee's complaint failed to allege facts that, if proven, showed that political-subdivision employees engaged in proprietary function instead, all of appellee's allegations related to functions that are integral to the provision of a system of public education such as hiring, retention, and supervision, policies, or procedures appellee's complaint failed to allege facts that, if proved, established that physical defect located on or within school grounds resulted in injuries alleged in the complaint rather, injuries resulted from intentional acts of third party policital subdivisions are not civilly liable under R.C. 2151.421 for failing to report known of suspected abuse political subdivisions are immune from liability for intentional torts", - "case_name_shorts": "Adkins" + "summaries": "Civ.R. 12(B)(6) motion to dismiss-politiical-subdivision immunity-R.C. 2744.02(B)(2), (4), and (5); political-subdivision and employee sued in official capicity entitled to immunity when appellee's complaint failed to allege facts that, if proven, showed that political-subdivision employees engaged in proprietary function; instead, all of appellee's allegations related to functions that are integral to the provision of a system of public education such as hiring, retention, and supervision, policies, or procedures; appellee's complaint failed to allege facts that, if proved, established that physical defect located on or within school grounds resulted in injuries alleged in the complaint; rather, injuries resulted from intentional acts of third party; policital subdivisions are not civilly liable under R.C. 2151.421 for failing to report known of suspected abuse; political subdivisions are immune from liability for intentional torts", + "case_name_shorts": "Adkins", + "per_curiam": false }, { "case_dates": "2021-08-24", @@ -541,9 +623,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA1125", "judges": "Abele", + "lower_courts": "Adams County Court", "citations": "2021-Ohio-3388", "summaries": "Trial court did not abuse its discretion by overruling appellant's motion for leave to file a new trial motion based on newly discovered evidence when evidence existed at the time of trial. Trial court did not abuse its discretion by failing to hold an evidentiary hearing on the motion for leave to file a new trial motion.", - "case_name_shorts": "Chambers" + "case_name_shorts": "Chambers", + "per_curiam": false }, { "case_dates": "2021-08-19", @@ -554,9 +638,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA3930", "judges": "Smith", + "lower_courts": "Scioto County Court", "citations": "2021-Ohio-2898", "summaries": "FINAL APPEALABLE ORDER - Where trial court's entries granting summary judgment on foreclosure complaint did not address interest of county treasurer or Ohio Department of Taxation, entries were not final and appealable and appellate court had no jurisdiction to consider appeal.", - "case_name_shorts": "Osborne" + "case_name_shorts": "Osborne", + "per_curiam": false }, { "case_dates": "2021-08-18", @@ -567,9 +653,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA10", "judges": "Hess", + "lower_courts": "Hocking County Court", "citations": "2021-Ohio-2880", - "summaries": "judicial release community control revocation R.C. 2929.20(K) post-release control R.C. 2929.19(B)(2)(d)", - "case_name_shorts": "Corder" + "summaries": "judicial release; community control; revocation; R.C. 2929.20(K); post-release control; R.C. 2929.19(B)(2)(d)", + "case_name_shorts": "Corder", + "per_curiam": false }, { "case_dates": "2021-08-10", @@ -580,9 +668,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19CA33", "judges": "Smith", + "lower_courts": "Pickaway County Court", "citations": "2021-Ohio-2866", - "summaries": "CONFRONTATION OF WITNESSES-INEFFECTIVE ASSISTANCE OF COUNSEL - Where Appellant was in an adjoining room and able to communicate with his counsel, he was given several chances to control his behavior, his interests were adequately represented by competent counsel, and Appellant failed to explain how his absence hampered his ability to defend, Appellant's voluntarily actions caused his removal and trial court did not err in ordering Appellant's removal from courtroom during evidentiary phase of trial and since operability of a firearm may be proven by circumstantial evidence, Appellant's counsel was not deficient for failing to object to trooper's lay testimony regarding operability.", - "case_name_shorts": "" + "summaries": "CONFRONTATION OF WITNESSES-INEFFECTIVE ASSISTANCE OF COUNSEL - Where Appellant was in an adjoining room and able to communicate with his counsel, he was given several chances to control his behavior, his interests were adequately represented by competent counsel, and Appellant failed to explain how his absence hampered his ability to defend, Appellant's voluntarily actions caused his removal and trial court did not err in ordering Appellant's removal from courtroom during evidentiary phase of trial; and since operability of a firearm may be proven by circumstantial evidence, Appellant's counsel was not deficient for failing to object to trooper's lay testimony regarding operability.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-08-05", @@ -593,9 +683,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19CA18", "judges": "Hess", + "lower_courts": "Lawrence County Court", "citations": "2021-Ohio-2726", - "summaries": "manifest weight of the evidence rape kidnapping abduction speedy trial due process preindictment delay unjustifiable actual prejudice juror misconduct voir dire ineffective assistance of counsel trial strategy leading questions R.C. 2901.07 Evid.R. 611(C) cumulative error", - "case_name_shorts": "Thacker" + "summaries": "manifest weight of the evidence; rape; kidnapping; abduction; speedy trial; due process; preindictment delay; unjustifiable; actual prejudice; juror misconduct; voir dire; ineffective assistance of counsel; trial strategy; leading questions; R.C. 2901.07; Evid.R. 611(C); cumulative error", + "case_name_shorts": "Thacker", + "per_curiam": false }, { "case_dates": "2021-08-05", @@ -606,9 +698,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA3733", "judges": "Smith", + "lower_courts": "Ross County Court", "citations": "2021-Ohio-2752", "summaries": "CRIM.R. 11(C)(2) - Trial court did not err where plea hearing transcript demonstrates that trial court strictly complied with all Crim.R.11 (C) notifications and thus Appellant's plea was entered knowingly, intelligently, and voluntarily.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-08-05", @@ -619,9 +713,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA1118", "judges": "Hess", + "lower_courts": "Adams County Court", "citations": "2021-Ohio-2727", - "summaries": "jurisdiction Crim.R. 12(K) certification App.R. 3(F)(1)", - "case_name_shorts": "Conn" + "summaries": "jurisdiction; Crim.R. 12(K); certification; App.R. 3(F)(1)", + "case_name_shorts": "Conn", + "per_curiam": false }, { "case_dates": "2021-08-04", @@ -632,9 +728,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA9", "judges": "Hess", + "lower_courts": "Pickaway County Court", "citations": "2021-Ohio-2672", - "summaries": "Reagan Tokes Law separation of powers due process not ripe for review ripeness guilty plea Crim.R. 11(C) indefinite sentence R.C. 2929.19 R.C. 2929.14 R.C. 2929.144 R.C. 2967.271", - "case_name_shorts": "Long" + "summaries": "Reagan Tokes Law; separation of powers; due process; not ripe for review; ripeness; guilty plea; Crim.R. 11(C); indefinite sentence; R.C. 2929.19; R.C. 2929.14; R.C. 2929.144; R.C. 2967.271", + "case_name_shorts": "Long", + "per_curiam": false }, { "case_dates": "2021-08-04", @@ -645,8 +743,10 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA19, 20CA20, 20CA21, 20CA22", "judges": "Hess", + "lower_courts": "Washington County Court", "citations": "2021-Ohio-2714", - "summaries": "eminent domain R.C. 163.01 et seq. necessity easements abandonment motion for judgment on the pleadings Civ.R. 12(C) verification R.C. 163.21 R.C. 163.09 Civ.R. 11 Civ.R. 1 R.C. 163.22 trial R.C. 163.14 R.C. 163.12(C) heightened scrutiny appropriations taking", - "case_name_shorts": "Burns" + "summaries": "eminent domain; R.C. 163.01 et seq.; necessity; easements; abandonment; motion for judgment on the pleadings; Civ.R. 12(C); verification; R.C. 163.21; R.C. 163.09; Civ.R. 11; Civ.R. 1; R.C. 163.22; trial; R.C. 163.14; R.C. 163.12(C); heightened scrutiny; appropriations; taking", + "case_name_shorts": "Burns", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohioctapp_5_example.compare.json b/tests/examples/opinions/united_states/ohioctapp_5_example.compare.json index 5e546a162..f683f0abe 100644 --- a/tests/examples/opinions/united_states/ohioctapp_5_example.compare.json +++ b/tests/examples/opinions/united_states/ohioctapp_5_example.compare.json @@ -8,9 +8,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 0068", "judges": "J. Wise", + "lower_courts": "Richland County Court", "citations": "2021-Ohio-4526", - "summaries": "Sentence contrary to law res judicata", - "case_name_shorts": "Lindsay" + "summaries": "Sentence contrary to law; res judicata", + "case_name_shorts": "Lindsay", + "per_curiam": false }, { "case_dates": "2021-12-22", @@ -21,9 +23,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 00076", "judges": "Baldwin", + "lower_courts": "Licking County Court", "citations": "2021-Ohio-4528", "summaries": "Appeal of denial of motion for intervention in lieu of conviction", - "case_name_shorts": "Hempfield" + "case_name_shorts": "Hempfield", + "per_curiam": false }, { "case_dates": "2021-12-22", @@ -34,9 +38,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA00033", "judges": "E. Wise", + "lower_courts": "Stark County Court", "citations": "2021-Ohio-4527", "summaries": "Manifest Weight", - "case_name_shorts": "Barnes" + "case_name_shorts": "Barnes", + "per_curiam": false }, { "case_dates": "2021-12-22", @@ -47,9 +53,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CT2021-0033", "judges": "Baldwin", + "lower_courts": "Muskingum County Court", "citations": "2021-Ohio-4525", "summaries": "Exceptions to required consent for adoption/Deminimis contact/R.C. 3707.07(A)/Final appealable order/Jurisdiction", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -60,9 +68,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21-CA-0007", "judges": "Gwin", + "lower_courts": "Perry County Court", "citations": "2021-Ohio-4484", "summaries": "Consecutive Sentences", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -73,9 +83,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 00036", "judges": "Hoffman", + "lower_courts": "Licking County Court", "citations": "2021-Ohio-4507", - "summaries": "Trial Court properly awarded additional attorney fees in partition action after confirmation of sale Party sufficiently objected to reasonableness and necessity of fees requested", - "case_name_shorts": "Haynes" + "summaries": "Trial Court properly awarded additional attorney fees in partition action after confirmation of sale; Party sufficiently objected to reasonableness and necessity of fees requested", + "case_name_shorts": "Haynes", + "per_curiam": false }, { "case_dates": "2021-12-17", @@ -86,9 +98,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21-CA-00008", "judges": "Hoffman", + "lower_courts": "Perry County Court", "citations": "2021-Ohio-4444", "summaries": "Suppression - Affidavit for Search Warrant - Staleness", - "case_name_shorts": "Stewart" + "case_name_shorts": "Stewart", + "per_curiam": false }, { "case_dates": "2021-12-17", @@ -99,9 +113,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 00029", "judges": "E. Wise", + "lower_courts": "Licking County Court", "citations": "2021-Ohio-4443", - "summaries": "Allied offenses evidence", - "case_name_shorts": "Morgan" + "summaries": "Allied offenses; evidence", + "case_name_shorts": "Morgan", + "per_curiam": false }, { "case_dates": "2021-12-17", @@ -112,9 +128,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21-COA-016", "judges": "Delaney", + "lower_courts": "Ashland County Court", "citations": "2021-Ohio-4483", "summaries": "Writ of Mandamus", - "case_name_shorts": "Forsthoefel" + "case_name_shorts": "Forsthoefel", + "per_curiam": false }, { "case_dates": "2021-12-17", @@ -125,9 +143,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 CA 0040", "judges": "Delaney", + "lower_courts": "Licking County Court", "citations": "2021-Ohio-4512", "summaries": "R.C. 2152.84, Juvenile sex offender registry, declassification", - "case_name_shorts": "In re N.D." + "case_name_shorts": "In re N.D.", + "per_curiam": false }, { "case_dates": "2021-12-17", @@ -138,9 +158,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 CA 0041", "judges": "Delaney", + "lower_courts": "Licking County Court", "citations": "2021-Ohio-4506", "summaries": "R.C. 2152.84, Juvenile sex offender registry, declassification", - "case_name_shorts": "In re N.D." + "case_name_shorts": "In re N.D.", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -151,9 +173,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA00062", "judges": "J. Wise", + "lower_courts": "Stark County Court", "citations": "2021-Ohio-4436", - "summaries": "Breach of contract fraud summary judgment", - "case_name_shorts": "Lapkovitch" + "summaries": "Breach of contract; fraud; summary judgment", + "case_name_shorts": "Lapkovitch", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -164,9 +188,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA00021", "judges": "Baldwin", + "lower_courts": "Stark County Court", "citations": "2021-Ohio-4422", "summaries": "Summary judgment/Substantial aggravation of pre-existing injury/R.C. 2123/Final appealable order/Alternative theory of causation", - "case_name_shorts": "Fowler" + "case_name_shorts": "Fowler", + "per_curiam": false }, { "case_dates": "2021-12-15", @@ -177,9 +203,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA00023", "judges": "Hoffman", + "lower_courts": "Stark County Court", "citations": "2021-Ohio-4415", "summaries": "R.C. 2953.21(A)(2) - PCR - Untimely Filed Petition - Supplementation of the Record with Exhibits", - "case_name_shorts": "Culbertson" + "case_name_shorts": "Culbertson", + "per_curiam": false }, { "case_dates": "2021-12-15", @@ -190,9 +218,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA00087", "judges": "Gwin", + "lower_courts": "Stark County Court", "citations": "2021-Ohio-4418", "summaries": "Adoption", - "case_name_shorts": "In re P.C." + "case_name_shorts": "In re P.C.", + "per_curiam": false }, { "case_dates": "2021-12-14", @@ -203,9 +233,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA00036", "judges": "Hoffman", + "lower_courts": "Stark County Court", "citations": "2021-Ohio-4417", "summaries": "App.R. 16 - Noncompliant Brief", - "case_name_shorts": "Tate" + "case_name_shorts": "Tate", + "per_curiam": false }, { "case_dates": "2021-12-14", @@ -216,9 +248,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 CA 000015", "judges": "Wise", + "lower_courts": "Knox County Court", "citations": "2021-Ohio-4416", "summaries": "Motion to Vacate Default Judgment", - "case_name_shorts": "Durbin" + "case_name_shorts": "Durbin", + "per_curiam": false }, { "case_dates": "2021-12-14", @@ -229,9 +263,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 00009", "judges": "Baldwin", + "lower_courts": "Fairfield County Court", "citations": "2021-Ohio-4396", "summaries": "Alleged failure to merge sentences/Res judicata", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-14", @@ -242,9 +278,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 0002", "judges": "Baldwin", + "lower_courts": "Morrow County Court", "citations": "2021-Ohio-4419", "summaries": "R.C. 2107.03/R.C. 2107.09/R.C. 2107.10/R.C. 2107.24/Will contest/Handwriting expert", - "case_name_shorts": "Flahive" + "case_name_shorts": "Flahive", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -255,9 +293,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA00090", "judges": "Hoffman", + "lower_courts": "Stark County Court", "citations": "2021-Ohio-4395", - "summaries": "PC Finding should not be placed with parent not against manifest weight as parent had lost custody of other children", - "case_name_shorts": "In re D.C.J." + "summaries": "PC; Finding should not be placed with parent not against manifest weight as parent had lost custody of other children", + "case_name_shorts": "In re D.C.J.", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -268,9 +308,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA000014", "judges": "Delaney", + "lower_courts": "Knox County Court", "citations": "2021-Ohio-4379", "summaries": "self-defense, manifest weight, sufficiency of the evidence, sentencing", - "case_name_shorts": "Sarge" + "case_name_shorts": "Sarge", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -281,9 +323,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20-CA-00018", "judges": "Hoffman", + "lower_courts": "Perry County Court", "citations": "2021-Ohio-4377", - "summaries": "5th Amendment - State v. Leach, 102 Ohio St.3d 135 Ineffective Assistance of Counsel Manifest Weight Burglary", - "case_name_shorts": "Gillman" + "summaries": "5th Amendment - State v. Leach, 102 Ohio St.3d 135; Ineffective Assistance of Counsel; Manifest Weight; Burglary", + "case_name_shorts": "Gillman", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -294,9 +338,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA00085", "judges": "Delaney", + "lower_courts": "Stark County Court", "citations": "2021-Ohio-4378", "summaries": "permanent custody", - "case_name_shorts": "In re R.M." + "case_name_shorts": "In re R.M.", + "per_curiam": false }, { "case_dates": "2021-12-08", @@ -307,9 +353,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 CAA 04 0020", "judges": "Hoffman", + "lower_courts": "Delaware County Court", "citations": "2021-Ohio-4376", "summaries": "Consecutive Sentencing - Use of Juvenile Delinquency Adjudications", - "case_name_shorts": "Vinson" + "case_name_shorts": "Vinson", + "per_curiam": false }, { "case_dates": "2021-12-07", @@ -320,9 +368,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 CAE 06 0026", "judges": "Gwin", + "lower_courts": "Delaware County Court", "citations": "2021-Ohio-4268", "summaries": "Commercial Insurance", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -333,9 +383,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 0037", "judges": "Wise", + "lower_courts": "Richland County Court", "citations": "2021-Ohio-4270", "summaries": "Suppression", - "case_name_shorts": "Brunk" + "case_name_shorts": "Brunk", + "per_curiam": false }, { "case_dates": "2021-12-03", @@ -346,9 +398,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 0019", "judges": "Wise", + "lower_courts": "Licking County Court", "citations": "2021-Ohio-4269", - "summaries": "Verdict forms elevation of offense", - "case_name_shorts": "Bush" + "summaries": "Verdict forms; elevation of offense", + "case_name_shorts": "Bush", + "per_curiam": false }, { "case_dates": "2021-12-03", @@ -359,9 +413,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 00046", "judges": "Gwin", + "lower_courts": "Licking County Court", "citations": "2021-Ohio-4226", "summaries": "No reasonable, articulable suspicion for traffic stop", - "case_name_shorts": "Benge" + "case_name_shorts": "Benge", + "per_curiam": false }, { "case_dates": "2021-11-30", @@ -372,9 +428,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CT2021-0009", "judges": "E. Wise", + "lower_courts": "Muskingum County Court", "citations": "2021-Ohio-4203", "summaries": "Self-representation, Reagan Tokes Law, Sentencing", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-30", @@ -385,9 +443,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA00059", "judges": "Baldwin", + "lower_courts": "Stark County Court", "citations": "2021-Ohio-4201", "summaries": "Appeal of judgment granting summary judgment on disability discrimination claim", - "case_name_shorts": "Coco" + "case_name_shorts": "Coco", + "per_curiam": false }, { "case_dates": "2021-11-29", @@ -398,9 +458,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA00016", "judges": "J. Wise", + "lower_courts": "Stark County Court", "citations": "2021-Ohio-4204", - "summaries": "Recreational User Immunity Spoliation", - "case_name_shorts": "Thomas" + "summaries": "Recreational User Immunity; Spoliation", + "case_name_shorts": "Thomas", + "per_curiam": false }, { "case_dates": "2021-11-29", @@ -411,9 +473,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 00014", "judges": "Hoffman", + "lower_courts": "Fairfield County Court", "citations": "2021-Ohio-4200", - "summaries": "Resisting Arrest Obstruction of Official Business Crim.R. 29 - Motion for Acquittal", - "case_name_shorts": "" + "summaries": "Resisting Arrest; Obstruction of Official Business; Crim.R. 29 - Motion for Acquittal", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-29", @@ -424,9 +488,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 00044", "judges": "Hoffman", + "lower_courts": "Licking County Court", "citations": "2021-Ohio-4205", "summaries": "Suppression - Probable Cause for Warrant - Good Faith Exception", - "case_name_shorts": "Quin" + "case_name_shorts": "Quin", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -437,9 +503,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 0014", "judges": "Baldwin", + "lower_courts": "Richland County Court", "citations": "2021-Ohio-4184", "summaries": "Plain error/Demonstrative evidence/Ineffective assistance of counsel/Weight of evidence", - "case_name_shorts": "Davison" + "case_name_shorts": "Davison", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -450,9 +518,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 CAF 05 0022", "judges": "E. Wise", + "lower_courts": "Delaware County Court", "citations": "2021-Ohio-4166", "summaries": "Termination of spousal support due to cohabitation", - "case_name_shorts": "Mengel" + "case_name_shorts": "Mengel", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -463,9 +533,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA00030", "judges": "Baldwin", + "lower_courts": "Stark County Court", "citations": "2021-Ohio-4185", "summaries": "Appeal regarding board of revision valuation of property", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-23", @@ -476,9 +548,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 00001", "judges": "E. Wise", + "lower_courts": "Stark County Court", "citations": "2021-Ohio-4165", "summaries": "Plea Agreements", - "case_name_shorts": "Griffith" + "case_name_shorts": "Griffith", + "per_curiam": false }, { "case_dates": "2021-11-22", @@ -489,9 +563,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 CAE 07 0034", "judges": "E. Wise", + "lower_courts": "Delaware County Court", "citations": "2021-Ohio-4145", "summaries": "Summary Judgment on country club initiation fee", - "case_name_shorts": "Razi" + "case_name_shorts": "Razi", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -502,9 +578,11 @@ "date_filed_is_approximate": false, "docket_numbers": "CT 2021-0001", "judges": "Gwin", + "lower_courts": "Muskingum County Court", "citations": "2021-Ohio-4100", "summaries": "Guilty plea/cruel and unusual punishment/ineffective assistance of counsel", - "case_name_shorts": "Jenkins" + "case_name_shorts": "Jenkins", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -515,9 +593,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA0025", "judges": "Delaney", + "lower_courts": "Licking County Court", "citations": "2021-Ohio-4142", - "summaries": "Manifest weight and sufficiency Regan Tokes Act Felony sentencing", - "case_name_shorts": "Daniels" + "summaries": "Manifest weight and sufficiency; Regan Tokes Act; Felony sentencing", + "case_name_shorts": "Daniels", + "per_curiam": false }, { "case_dates": "2021-11-18", @@ -528,9 +608,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 CAA 03 0018", "judges": "Delaney", + "lower_courts": "Delaware County Court", "citations": "2021-Ohio-4099", "summaries": "telecommunications fraud, identity theft, restitution", - "case_name_shorts": "Staysniak" + "case_name_shorts": "Staysniak", + "per_curiam": false }, { "case_dates": "2021-11-17", @@ -541,9 +623,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA060027", "judges": "Delaney", + "lower_courts": "Delaware County Court", "citations": "2021-Ohio-4087", "summaries": "O.V.I., Reasonable suspicion to stop", - "case_name_shorts": "Myers" + "case_name_shorts": "Myers", + "per_curiam": false }, { "case_dates": "2021-11-16", @@ -554,9 +638,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 CA 04 0019", "judges": "Baldwin", + "lower_courts": "Delaware County Court", "citations": "2021-Ohio-4140", "summaries": "Domestic violence/Manifest weight and sufficiency/Motion for now trial", - "case_name_shorts": "Williamson" + "case_name_shorts": "Williamson", + "per_curiam": false }, { "case_dates": "2021-11-16", @@ -567,9 +653,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021-CA-00009, 2021-CA-00010", "judges": "E. Wise", + "lower_courts": "Perry County Court", "citations": "2021-Ohio-4079", "summaries": "Permanent Custody", - "case_name_shorts": "In re Z.S." + "case_name_shorts": "In re Z.S.", + "per_curiam": false }, { "case_dates": "2021-11-16", @@ -580,9 +668,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA00069, 2021CA00070", "judges": "E. Wise", + "lower_courts": "Stark County Court", "citations": "2021-Ohio-4080", "summaries": "Permanent Custody, Father's Appeal", - "case_name_shorts": "In re J.P." + "case_name_shorts": "In re J.P.", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -593,9 +683,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA00017", "judges": "Baldwin", + "lower_courts": "Licking County Court", "citations": "2021-Ohio-4141", "summaries": "Statute of limitations/Real property/Personal property/R.C. 2305.09/R.C. 2305.10/Contracts", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -606,9 +698,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021CA0012", "judges": "Baldwin", + "lower_courts": "Coshocton County Court", "citations": "2021-Ohio-4139", "summaries": "Ander brief/Sentencing/R.C. 2953.08", - "case_name_shorts": "Wood" + "case_name_shorts": "Wood", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -619,9 +713,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 CAC 03 0013", "judges": "Hoffman", + "lower_courts": "Delaware County Court", "citations": "2021-Ohio-4098", - "summaries": "Restitution Economic Loss Rules of Evidence do no apply Competent, credible evidence supports order", - "case_name_shorts": "Hoy" + "summaries": "Restitution; Economic Loss; Rules of Evidence do no apply; Competent, credible evidence supports order", + "case_name_shorts": "Hoy", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -632,9 +728,11 @@ "date_filed_is_approximate": false, "docket_numbers": "2021 CA 0022", "judges": "J. Wise", + "lower_courts": "Richland County Court", "citations": "2021-Ohio-4021", "summaries": "Summary judgment", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-09", @@ -643,10 +741,12 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21 CA 29 21 CA 30 21 CA 31", + "docket_numbers": "21 CA 29; 21 CA 30; 21 CA 31", "judges": "Wise", + "lower_courts": "Richland County Court", "citations": "2021-Ohio-4008", "summaries": "Permanent Custody", - "case_name_shorts": "In re A.H." + "case_name_shorts": "In re A.H.", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohioctapp_6_example.compare.json b/tests/examples/opinions/united_states/ohioctapp_6_example.compare.json index 4784456e5..20a441e1a 100644 --- a/tests/examples/opinions/united_states/ohioctapp_6_example.compare.json +++ b/tests/examples/opinions/united_states/ohioctapp_6_example.compare.json @@ -8,9 +8,11 @@ "date_filed_is_approximate": false, "docket_numbers": "S-21-003", "judges": "Zmuda", + "lower_courts": "Sandusky County Court", "citations": "2021-Ohio-4510", "summaries": "Appellant's plea was knowingly, voluntarily, and intelligently entered despite trial court's failure to inform him of the potential for consecutive sentences, because Crim.R. 11 does not require such notification prior to accepting a plea of guilty or no contest from a defendant who is pleading to multiple offenses that do not carry mandatory consecutive sentences.", - "case_name_shorts": "Whitman" + "case_name_shorts": "Whitman", + "per_curiam": false }, { "case_dates": "2021-12-22", @@ -21,9 +23,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1065", "judges": "Zmuda", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4509", "summaries": "Appellant's motion to suppress was properly denied where (1) police officers had reasonable suspicion to conduct the traffic stop based upon citizen informant's report of appellant smoking marijuana in her vehicle, (2) officers had reasonable suspicion to conduct field sobriety tests based upon their observation of appellant's condition upon exiting the vehicle, and (3) officers had probable cause to arrest appellant, especially following field sobriety testing.", - "case_name_shorts": "Rasheed" + "case_name_shorts": "Rasheed", + "per_curiam": false }, { "case_dates": "2021-12-22", @@ -34,9 +38,11 @@ "date_filed_is_approximate": false, "docket_numbers": "WD-21-021", "judges": "Duhart", + "lower_courts": "Wood County Court", "citations": "2021-Ohio-4508", "summaries": "Trial court abused its discretion by refusing to declare a mistrial when prosecutor during cross-examination of defendant improperly suggested that there existed other written statements that corroborated the testimony of an opposing witness, where: (1) the additional statements were never put into evidence and (2) the jury ignored the curative instruction that was issued by the trial court", - "case_name_shorts": "Loyd" + "case_name_shorts": "Loyd", + "per_curiam": false }, { "case_dates": "2021-12-17", @@ -47,9 +53,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1110", "judges": "Mayle", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4450", "summaries": "The appellate court will not second-guess the trial court's weighing of factors under R.C. 2929.12.", - "case_name_shorts": "Vancleve" + "case_name_shorts": "Vancleve", + "per_curiam": false }, { "case_dates": "2021-12-17", @@ -60,9 +68,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1137", "judges": "Duhart", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4448", "summaries": "Appellant's claims made in a post-sentence motion to withdraw guilty plea were based entirely on the record from the plea hearing and from the sentencing hearing and, thus, are barred by res judicata.", - "case_name_shorts": "Newsome" + "case_name_shorts": "Newsome", + "per_curiam": false }, { "case_dates": "2021-12-17", @@ -73,9 +83,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1032, L-21-1033", "judges": "Mayle", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4447", "summaries": "Appellate court does not have jurisdiction to address assignments of error related to cases listed on amended notice of appeal that does not comply with App.R. 3, 4, and 5. Trial court abused its discretion by finding that appellant violated community control because appellant did not receive notice of the conduct constituting the alleged violations. Considering the record and factors in Crim.R. 46(C), trial court did not abuse its discretion in setting the amount of appellant's appeal bond.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-17", @@ -86,9 +98,11 @@ "date_filed_is_approximate": false, "docket_numbers": "E-21-003", "judges": "Osowik", + "lower_courts": "Erie County Court", "citations": "2021-Ohio-4449", "summaries": "Availability of remote technology and its recent increased use did not moot or render inapplicable trial court's finding that Erie County was not convenient forum for litigating parties' child-custody dispute. Mother did not waive challenge concerning convenience of litigating custody issues in Erie County and did not engage in forum shopping. Trial court did not abuse its discretion in concluding that Erie County was not convenient forum and that Wayne County, North Carolina was a convenient forum.", - "case_name_shorts": "Pridemore" + "case_name_shorts": "Pridemore", + "per_curiam": false }, { "case_dates": "2021-12-17", @@ -99,9 +113,11 @@ "date_filed_is_approximate": false, "docket_numbers": "F-21-001", "judges": "Osowik", + "lower_courts": "Fulton County Court", "citations": "2021-Ohio-4445", "summaries": "Jury convictions of two violations of personal recognizance bond are supported by sufficient evidence and not against the manifest weight of the evidence. Trial court error, in part, in ordering appointed-counsel fees. Judgment affirmed, in part, and reversed, in part.", - "case_name_shorts": "Connin" + "case_name_shorts": "Connin", + "per_curiam": false }, { "case_dates": "2021-12-17", @@ -112,9 +128,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1090", "judges": "Mayle", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4446", "summaries": "Juvenile court did not abuse its discretion in applying best interest factors under R.C. 3109.051(D) and in denying father's motion for parenting time. Father had long-standing, unaddressed mental health issues and failed to comply with previous order to receive treatment for a minimum of six months in order to be considered for a grant of parenting time.", - "case_name_shorts": "In re H.P." + "case_name_shorts": "In re H.P.", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -125,9 +143,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1046, L-21-1058, L-21-1059, L-21-1060, L-21-1061", "judges": "Osowik", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4343", "summaries": "No consecutive sentencing error found. Judgment affirmed.", - "case_name_shorts": "Lipkins" + "case_name_shorts": "Lipkins", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -138,9 +158,11 @@ "date_filed_is_approximate": false, "docket_numbers": "WD-21-038", "judges": "Mayle", + "lower_courts": "Wood County Court", "citations": "2021-Ohio-4347", "summaries": "The appellate court will not second-guess the trial court's weighing of factors under R.C. 2929.12.", - "case_name_shorts": "Johnston" + "case_name_shorts": "Johnston", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -151,9 +173,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1035", "judges": "Duhart", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4344", "summaries": "Lack of jurisdiction. Untimely appeal. Lack of standing to appeal.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -164,9 +188,11 @@ "date_filed_is_approximate": false, "docket_numbers": "F-20-011", "judges": "Duhart", + "lower_courts": "Fulton County Court", "citations": "2021-Ohio-4346", "summaries": "Motion to suppress statements. Garrity v. New Jersey.", - "case_name_shorts": "Haas" + "case_name_shorts": "Haas", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -177,9 +203,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1130", "judges": "Zmuda", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4342", "summaries": "Judgment affirmed where resentencing challenge asserted unreviewable error under R.C. 2929.11 and no plain error in notice given regarding prohibition on drug/alcohol use in prison or regarding post-release control.", - "case_name_shorts": "El-Amin" + "case_name_shorts": "El-Amin", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -190,9 +218,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1016", "judges": "Mayle", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4345", "summaries": "Civ.R. 60(B)(3) motion untimely where it was filed three years after stipulated dismissal. While stipulation permitted court to retain jurisdiction to enforce terms of settlement, it did not render judgment of dismissal non-final. Court erred in finding that res judicata barred second motion under Civ.R. 60(B)(5) where court had not yet ruled on first motion. Motion was properly denied, however, because movant failed to present operative facts demonstrating fraud by party's insurer.", - "case_name_shorts": "Moccabee" + "case_name_shorts": "Moccabee", + "per_curiam": false }, { "case_dates": "2021-12-10", @@ -203,9 +233,11 @@ "date_filed_is_approximate": false, "docket_numbers": "S-21-002", "judges": "Mayle", + "lower_courts": "Sandusky County Court", "citations": "2021-Ohio-4341", "summaries": "Trial court does not abuse its discretion in denying appellant's request for reimbursement from appellee for his actions that allegedly lowered the sale price of the marital home where appellant's only evidence as to the value and causal connection is an addendum to the purchase agreement.", - "case_name_shorts": "Gerhardstein" + "case_name_shorts": "Gerhardstein", + "per_curiam": false }, { "case_dates": "2021-12-03", @@ -216,9 +248,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1057", "judges": "Osowik", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4235", "summaries": "Trial court did not err in granting summary judgment to appellees on legal malpractice claim arising from counsel's post-discovery, professional determination that there was a lack of evidence to proceed further with appellant's medical malpractice suit and filing a Civ.R. 41(A) voluntary dismissal. Judgment affirmed.", - "case_name_shorts": "Terry" + "case_name_shorts": "Terry", + "per_curiam": false }, { "case_dates": "2021-12-03", @@ -229,9 +263,11 @@ "date_filed_is_approximate": false, "docket_numbers": "OT-21-008", "judges": "Zmuda", + "lower_courts": "Ottawa County Court", "citations": "2021-Ohio-4234", "summaries": "Trial court's findings under R.C. 2929.14(C)(4) were supported by the record, and thus its imposition of consecutive sentences was not contrary to law.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-03", @@ -242,9 +278,11 @@ "date_filed_is_approximate": false, "docket_numbers": "WD-21-035", "judges": "Zmuda", + "lower_courts": "Wood County Court", "citations": "2021-Ohio-4232", "summaries": "Trial court did not commit reversible error in refusing to allow appellant to respond to new information introduced by the state at sentencing, where the trial court did not consider such new information in fashioning its sentence.", - "case_name_shorts": "Gutierrez" + "case_name_shorts": "Gutierrez", + "per_curiam": false }, { "case_dates": "2021-12-03", @@ -255,9 +293,11 @@ "date_filed_is_approximate": false, "docket_numbers": "S-21-010", "judges": "Zmuda", + "lower_courts": "Sandusky County Court", "citations": "2021-Ohio-4231", "summaries": "Judgment affirmed where res judicata barred reconsideration of issue raised in direct appeal, and judgment was not void, subject to collateral attack.", - "case_name_shorts": "Elkins" + "case_name_shorts": "Elkins", + "per_curiam": false }, { "case_dates": "2021-12-03", @@ -268,9 +308,11 @@ "date_filed_is_approximate": false, "docket_numbers": "WD-21-034, WD-21-044, WD-21-045, WD-21-046, WD-21-047, WD-21-048, WD-21-049", "judges": "Osowik", + "lower_courts": "Wood County Court", "citations": "2021-Ohio-4233", "summaries": "Denying appellant's motion to seal his juvenile record, the trial court did not abuse its discretion in finding that appellant had not been satisfactorily rehabilitated. R.C. 2151.356(C).", - "case_name_shorts": "In re C.H." + "case_name_shorts": "In re C.H.", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -281,9 +323,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1052", "judges": "Zmuda", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4399", "summaries": "Verdict and Judgment affirmed where trial court was within its discretion in denying amendment to the answer within a month of trial", - "case_name_shorts": "Zak" + "case_name_shorts": "Zak", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -294,9 +338,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1081", "judges": "Zmuda", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4408", "summaries": "Trial court's order of restitution was not contrary to law. Appellant agreed to pay restitution as ordered as part of plea agreement and therefore waived challenge to amount based on ability to pay. Appellant failed to identify error in sentencing pursuant to R.C. 2929.14(A)(2)(a).", - "case_name_shorts": "White" + "case_name_shorts": "White", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -307,9 +353,11 @@ "date_filed_is_approximate": false, "docket_numbers": "WD-21-036", "judges": "Duhart", + "lower_courts": "Wood County Court", "citations": "2021-Ohio-4406", "summaries": "Domestic violence. Crim.R. 29. Manifest weight of the evidence.", - "case_name_shorts": "McAtee" + "case_name_shorts": "McAtee", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -320,9 +368,11 @@ "date_filed_is_approximate": false, "docket_numbers": "WD-20-082", "judges": "Osowik", + "lower_courts": "Wood County Court", "citations": "2021-Ohio-4402", "summaries": "Motion to suppress properly denied where appellant lacked standing to challenge detention of mail parcel prior to its delivery and the subsequent search of appellant's residence was supported by a valid search warrant.", - "case_name_shorts": "Jordan" + "case_name_shorts": "Jordan", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -333,9 +383,11 @@ "date_filed_is_approximate": false, "docket_numbers": "WD-21-037", "judges": "Zmuda", + "lower_courts": "Wood County Court", "citations": "2021-Ohio-4407", "summaries": "Appeal dismissed where challenge was to the length of the sentence imposed for community control violation of a single count, and sentence served in full, rendering argument regarding merger moot.", - "case_name_shorts": "Gueli" + "case_name_shorts": "Gueli", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -346,9 +398,11 @@ "date_filed_is_approximate": false, "docket_numbers": "WD-20-085", "judges": "Osowik", + "lower_courts": "Wood County Court", "citations": "2021-Ohio-4403", - "summaries": "Appellant's gross sexual imposition convictions are not allied and subject to merger and his consecutive sentences are not clearly and convincingly contrary to law. Jones R.C. 2929.11 and 2929.12 Beasley R.C. 2929.14(C) Ruff R.C. 2945.21.", - "case_name_shorts": "Ford" + "summaries": "Appellant's gross sexual imposition convictions are not allied and subject to merger and his consecutive sentences are not clearly and convincingly contrary to law. Jones; R.C. 2929.11 and 2929.12; Beasley; R.C. 2929.14(C); Ruff; R.C. 2945.21.", + "case_name_shorts": "Ford", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -359,9 +413,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1055", "judges": "Mayle", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4400", "summaries": "The trial court improperly placed on the prosecution\u2014rather than on the defendant-appellee\u2014the burden of showing the character of dashboard and body camera video footage that was deleted because of a computer hardware malfunction. The burden-shifting framework used by the trial court did not apply because appellee did not file a motion to preserve the evidence until after the footage was destroyed.", - "case_name_shorts": "Daoust" + "case_name_shorts": "Daoust", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -372,9 +428,11 @@ "date_filed_is_approximate": false, "docket_numbers": "WD-21-033", "judges": "Duhart", + "lower_courts": "Wood County Court", "citations": "2021-Ohio-4405", - "summaries": "Motion to suppress evidence obtained as a result of traffic stop should have been granted, as the trooper lacked articulable facts that would give rise to a reasonable suspicion that appellant may have been intoxicated therefore, the extension of the scope and duration of the stop was improper.", - "case_name_shorts": "Colby" + "summaries": "Motion to suppress evidence obtained as a result of traffic stop should have been granted, as the trooper lacked articulable facts that would give rise to a reasonable suspicion that appellant may have been intoxicated; therefore, the extension of the scope and duration of the stop was improper.", + "case_name_shorts": "Colby", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -385,9 +443,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1074", "judges": "Zmuda", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4401", "summaries": "Appellant's argument fails as a matter of law. Appellate courts cannot review whether record supports felony sentence based on trial court's consideration of R.C. 2929.11 and 2929.12 as sole basis for error.", - "case_name_shorts": "Bowles" + "case_name_shorts": "Bowles", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -398,9 +458,11 @@ "date_filed_is_approximate": false, "docket_numbers": "H-21-005", "judges": "Duhart", + "lower_courts": "Huron County Court", "citations": "2021-Ohio-4398", "summaries": "In arguing that the trial court erred by inaccurately weighing the evidence relating to the seriousness and recidivism factors enumerated in R.C. 2929.12, appellant seeks review prohibited by Jones and Toles. Regarding the restitution order, appellant failed to show plain error by the court, and he failed to show that he was denied effective assistance of counsel.", - "case_name_shorts": "Allen" + "case_name_shorts": "Allen", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -411,9 +473,11 @@ "date_filed_is_approximate": false, "docket_numbers": "F-21-007", "judges": "Osowik", + "lower_courts": "Fulton County Court", "citations": "2021-Ohio-4397", "summaries": "Appellant waived R.C. 1925.17-based arguments on appeal of the small claims judgment. Further, the corporate member testimony did not constitute structural error, so as to require reversal, regardless of waiver. Judgment affirmed.", - "case_name_shorts": "Lester" + "case_name_shorts": "Lester", + "per_curiam": false }, { "case_dates": "2021-11-19", @@ -424,9 +488,11 @@ "date_filed_is_approximate": false, "docket_numbers": "WD-21-016", "judges": "Mayle", + "lower_courts": "Wood County Court", "citations": "2021-Ohio-4404", "summaries": "Reasonable people could disagree whether compliance with discovery requests was required. Objections were, therefore, substantially justified and trial court was without discretion to award expenses incurred in obtaining order compelling discovery. Additionally, appellee filed its motion to compel before attempting in good faith to obtain discovery without the court's intervention.", - "case_name_shorts": "Koski" + "case_name_shorts": "Koski", + "per_curiam": false }, { "case_dates": "2021-11-17", @@ -437,9 +503,11 @@ "date_filed_is_approximate": false, "docket_numbers": "E-21-007, E-21-008", "judges": "Mayle", + "lower_courts": "Erie County Court", "citations": "2021-Ohio-4085", "summaries": "Because the juvenile court's finding under R.C. 2151.414(D)(1)\u2014that a grant of permanent custody to a children's services agency was in the best interests of the children\u2014was supported by the manifest weight of the evidence, the court's decision to terminate mother's parental rights was affirmed.", - "case_name_shorts": "In re T.J." + "case_name_shorts": "In re T.J.", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -450,9 +518,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1014", "judges": "Mayle", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-3998", "summaries": "Trial court's grant of summary judgment in insurer's favor and against homeowner was affirmed where the record evidence established that the cause of damage to the insured's home\u2014consisting of displacement and cracking to a foundation wall\u2014was due to the long-term effect of hydrostatic and earth pressure, which the homeowner's policy excluded from coverage.", - "case_name_shorts": "Thombre" + "case_name_shorts": "Thombre", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -463,9 +533,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-20-1085", "judges": "Osowik", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-3997", "summaries": "Trial counsel was not ineffective for failing to object to jury instruction on complicity or for failing to object to the admissibility of cell-tower evidence. Convictions were not against the sufficiency or manifest weight of the evidenced despite the fact that accomplice incarcerated for second-degree murder in Michigan testified against appellant.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -476,9 +548,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-20-1156, L-21-1017, L-21-1018", "judges": "Duhart", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-3996", "summaries": "Voluntary plea. Sentencing hearing. Physical presence. Waiver. Fine and costs.", - "case_name_shorts": "Morgan" + "case_name_shorts": "Morgan", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -489,9 +563,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1033", "judges": "Osowik", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-3995", "summaries": "No sentencing error found after conviction of one involuntary manslaughter offense. Judgment affirmed. Contrary to law, dismissed charges.", - "case_name_shorts": "Moore" + "case_name_shorts": "Moore", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -502,9 +578,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1020", "judges": "Osowik", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-3994", "summaries": "Appellant's separation of powers constitutional claim regarding sentencing is not ripe for review. Decision to not file a competency motion for evidentiary reasons was tactical and was not ineffective assistance of counsel. Case is remanded for resentencing due to the failure of the trial court to establish R.C. 2929.144 aggregate sentencing range.", - "case_name_shorts": "Martinez" + "case_name_shorts": "Martinez", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -515,9 +593,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-20-1150", "judges": "Duhart", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4038", - "summaries": "Imposition of increased reserve sentence after violation of community control Waiver of court-appointed counsel fees and costs of confinement Ineffective Assistance of Counsel.", - "case_name_shorts": "Simmons" + "summaries": "Imposition of increased reserve sentence after violation of community control; Waiver of court-appointed counsel fees and costs of confinement; Ineffective Assistance of Counsel.", + "case_name_shorts": "Simmons", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -528,9 +608,11 @@ "date_filed_is_approximate": false, "docket_numbers": "WD-20-060", "judges": "Osowik", + "lower_courts": "Wood County Court", "citations": "2021-Ohio-4037", - "summaries": "Trial court did not err in announcing its intention to impose consecutive sentences before articulating its reasons for doing so. Where appellant stipulated to amount of restitution as part of plea agreement, his stipulation supported amount of award amount was, therefore, not subject to review. Counsel was not ineffective for permitting appellant to stipulate to amount of restitution as part of plea agreement and appellant failed to show prejudice.", - "case_name_shorts": "O'Brien" + "summaries": "Trial court did not err in announcing its intention to impose consecutive sentences before articulating its reasons for doing so. Where appellant stipulated to amount of restitution as part of plea agreement, his stipulation supported amount of award; amount was, therefore, not subject to review. Counsel was not ineffective for permitting appellant to stipulate to amount of restitution as part of plea agreement and appellant failed to show prejudice.", + "case_name_shorts": "O'Brien", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -541,9 +623,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1053", "judges": "Duhart", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4035", "summaries": "Affirming appellant's indefinite sentence. At appellant's request, we certify a conflict of law on the issue of whether a challenge to the Reagan Tokes Act is ripe for review.", - "case_name_shorts": "Davis" + "case_name_shorts": "Davis", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -554,9 +638,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-20-1110", "judges": "Zmuda", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4034", "summaries": "Appellant's conviction for participating in a criminal gang is supported by sufficient evidence. Constitutional challenge to the indefinite sentencing scheme set forth in R.C. 2967.271 is not ripe for review.", - "case_name_shorts": "Brown" + "case_name_shorts": "Brown", + "per_curiam": false }, { "case_dates": "2021-11-05", @@ -567,9 +653,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1040", "judges": "Mayle", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-4036", "summaries": "Domestic relations court properly dismissed intervenor complaint in which abuse victim alleged fraud and sought to invalidate property transfers made pursuant to judgment of divorce in order to satisfy civil judgment she obtained against husband. Domestic relations court lacked jurisdiction under R.C. 3105.011 to determine tort claims of third-party or to award damages, and appellant had no interest in marital property at time of divorce, which had become final five years earlier.", - "case_name_shorts": "Hudson" + "case_name_shorts": "Hudson", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -580,9 +668,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-20-1047", "judges": "Osowik", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-3860", "summaries": "Judgment was not based on insufficient evidence or against the manifest weight of the evidence. Trial court erred in not making necessary findings for imposition of consecutive sentences. Trial court did not impose costs at sentencing. Judgment affirmed in part, reversed in part, and remanded for resentencing.", - "case_name_shorts": "Walker" + "case_name_shorts": "Walker", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -593,9 +683,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1011", "judges": "Duhart", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-3859", "summaries": "Reagan Tokes Act. Not ripe for review. Qualifying felonies. Indefinite prison terms.", - "case_name_shorts": "Soto" + "case_name_shorts": "Soto", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -606,9 +698,11 @@ "date_filed_is_approximate": false, "docket_numbers": "WD-20-079", "judges": "Duhart", + "lower_courts": "Wood County Court", "citations": "2021-Ohio-3856", "summaries": "Appellant's consecutive sentences were supported under R.C. 2929.14(C)(4) and by the record. Pursuant to Gwynne and Jones, appellant failed to assign reviewable error under R.C. 2929.11 or 2929.12.", - "case_name_shorts": "Perz" + "case_name_shorts": "Perz", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -619,9 +713,11 @@ "date_filed_is_approximate": false, "docket_numbers": "L-21-1001", "judges": "Mayle", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-3855", "summaries": "Matter is remanded to the trial court for nunc pro tunc journal entry that accurately reflects the fact that the term of post-release control is to apply to the lesser included offense of count three, involuntary manslaughter. Appellant's challenge to the constitutionality of Reagan Tokes is dismissed as not ripe for review.", - "case_name_shorts": "Perry" + "case_name_shorts": "Perry", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -632,9 +728,11 @@ "date_filed_is_approximate": false, "docket_numbers": "WD-19-090", "judges": "Duhart", + "lower_courts": "Wood County Court", "citations": "2021-Ohio-3854", "summaries": "Denial of appellant's motion to dismiss pursuant to R.C. 2925.50 was proper, where record failed to demonstrate that appellant was ever sentenced in federal court case.", - "case_name_shorts": "Mott" + "case_name_shorts": "Mott", + "per_curiam": false }, { "case_dates": "2021-10-29", @@ -645,8 +743,10 @@ "date_filed_is_approximate": false, "docket_numbers": "L-20-1184", "judges": "Duhart", + "lower_courts": "Lucas County Court", "citations": "2021-Ohio-3853", "summaries": "Appellant's challenge to the constitutionality of the Reagan Tokes Act is not ripe for review.", - "case_name_shorts": "Hodges" + "case_name_shorts": "Hodges", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohioctapp_7_example.compare.json b/tests/examples/opinions/united_states/ohioctapp_7_example.compare.json index 9c4616c07..9e08e693e 100644 --- a/tests/examples/opinions/united_states/ohioctapp_7_example.compare.json +++ b/tests/examples/opinions/united_states/ohioctapp_7_example.compare.json @@ -8,9 +8,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 MA 0125", "judges": "Donofrio", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-4554", - "summaries": "endangering children conviction not against the manifest weight of the evidence", - "case_name_shorts": "Wiggins" + "summaries": "endangering children; conviction not against the manifest weight of the evidence", + "case_name_shorts": "Wiggins", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -21,9 +23,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 MA 0124", "judges": "Donofrio", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-4553", - "summaries": "convictions for criminal trespass, theft, receiving stolen property, and failing to stop after an accident on public roads supported by sufficient evidence R.C. 2701.031 appellant failed to file affidavit to challenge judicial bias no showing of bias", - "case_name_shorts": "Guildoo" + "summaries": "convictions for criminal trespass, theft, receiving stolen property, and failing to stop after an accident on public roads supported by sufficient evidence; R.C. 2701.031; appellant failed to file affidavit to challenge judicial bias; no showing of bias", + "case_name_shorts": "Guildoo", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -34,9 +38,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 MA 0028", "judges": "Donofrio", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-4556", - "summaries": "probation violation initiation before expiration trial court had subject-matter and personal jurisdiction over appellant R.C. 2929(B)(1)", - "case_name_shorts": "Carr" + "summaries": "probation violation; initiation before expiration; trial court had subject-matter and personal jurisdiction over appellant; R.C. 2929(B)(1)", + "case_name_shorts": "Carr", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -47,9 +53,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19 JE 0017", "judges": "Donofrio", + "lower_courts": "Jefferson County Court", "citations": "2021-Ohio-4550", - "summaries": "murder conviction life in prison with the possibility of parole after 15 years offender was juvenile at time of offense State v. Patrick, 164 Ohio St.3d 309, 2020-Ohio-6803, 172 N.E.3d 952 State v. Fuell, 12th Dist. Clermont No. CA2020-02-008, 2021-Ohio-1627, appeal allowed, 164 Ohio St.3d 1419, 2021-Ohio-2923, 172 N.E.3d 1042 court failed to consider issue of youth in trial court no plain error R.C. 2929.02", - "case_name_shorts": "Carlock" + "summaries": "murder conviction; life in prison with the possibility of parole after 15 years; offender was juvenile at time of offense; State v. Patrick, 164 Ohio St.3d 309, 2020-Ohio-6803, 172 N.E.3d 952; State v. Fuell, 12th Dist. Clermont No. CA2020-02-008, 2021-Ohio-1627, appeal allowed, 164 Ohio St.3d 1419, 2021-Ohio-2923, 172 N.E.3d 1042; court failed to consider issue of youth in trial court; no plain error; R.C. 2929.02", + "case_name_shorts": "Carlock", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -60,9 +68,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 MA 0060", "judges": "Donofrio", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-4552", "summaries": "no abuse of discretion in finding appellant in contempt of court's prior order", - "case_name_shorts": "Youngstown" + "case_name_shorts": "Youngstown", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -73,9 +83,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 CA 0949", "judges": "Donofrio", + "lower_courts": "Carroll County Court", "citations": "2021-Ohio-4557", - "summaries": "R.C. 2101.24 R.C. 5802.01 proper notice due process R.C. 5807.04(C) successor trustee", - "case_name_shorts": "" + "summaries": "R.C. 2101.24; R.C. 5802.01; proper notice; due process; R.C. 5807.04(C); successor trustee", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -86,9 +98,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 BE 0006", "judges": "Donofrio", + "lower_courts": "Belmont County Court", "citations": "2021-Ohio-4555", - "summaries": "claims for breach of contract and unjust enrichment unjust enrichment claim supported by competent, credible evidence elements of requirement contract not met", - "case_name_shorts": "Lagowski" + "summaries": "claims for breach of contract and unjust enrichment; unjust enrichment claim supported by competent, credible evidence; elements of requirement contract not met", + "case_name_shorts": "Lagowski", + "per_curiam": false }, { "case_dates": "2021-12-27", @@ -99,9 +113,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 JE 0014", "judges": "Donofrio", + "lower_courts": "Jefferson County Court", "citations": "2021-Ohio-4551", - "summaries": "reallocation of parental rights and responsibilities father designated residential parent Civ.R. 53(D)(4)(d) trial court conducted independent review R.C. 3109.04(E)(1)(a)(iii) evidence supported finding of change in circumstances evidence supported finding that best interest for father to be designated residential parent freedom of speech minimum wage imputed for child support", - "case_name_shorts": "Calhoun" + "summaries": "reallocation of parental rights and responsibilities; father designated residential parent; Civ.R. 53(D)(4)(d); trial court conducted independent review; R.C. 3109.04(E)(1)(a)(iii); evidence supported finding of change in circumstances; evidence supported finding that best interest for father to be designated residential parent; freedom of speech; minimum wage imputed for child support", + "case_name_shorts": "Calhoun", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -111,10 +127,12 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18 CO 0033", - "judges": "Per Curiam", + "judges": "", + "lower_courts": "Columbiana County Court", "citations": "2021-Ohio-4290", - "summaries": "untimely application to reopen appeal App.R. 26(B)", - "case_name_shorts": "Martin" + "summaries": "untimely application to reopen appeal; App.R. 26(B)", + "case_name_shorts": "Martin", + "per_curiam": true }, { "case_dates": "2021-12-06", @@ -125,9 +143,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 MA 0097", "judges": "Donofrio", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-4293", - "summaries": "violating a protection order appellant's conviction supported by sufficiency and manifest weight of evidence circumstantial evidence proved appellant acted \"recklessly\"", - "case_name_shorts": "K.A.T." + "summaries": "violating a protection order; appellant's conviction supported by sufficiency and manifest weight of evidence; circumstantial evidence proved appellant acted \"recklessly\"", + "case_name_shorts": "K.A.T.", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -137,10 +157,12 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20 BE 0031", - "judges": "Per Curiam", + "judges": "", + "lower_courts": "Belmont County Court", "citations": "2021-Ohio-4291", - "summaries": "original action habeas corpus failure to include commitment papers R.C. 2725.04(D)", - "case_name_shorts": "Midgett" + "summaries": "original action; habeas corpus; failure to include commitment papers; R.C. 2725.04(D)", + "case_name_shorts": "Midgett", + "per_curiam": true }, { "case_dates": "2021-12-01", @@ -151,9 +173,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 MA 0033", "judges": "D'Apolito", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-4302", - "summaries": "CIVIL \u2013 administrative decision one-year suspension of lead abatement contractor's license due to noted violations ODH charging letter R.C. Chapter 3742 and O.A.C. Chapter 3701-32 violations three-day administrative hearing hearing examiner Report and Recommendations adjudication order R.C. 119.07 no violation of procedural due process Sixth Amendment Confrontation Clause does not apply in civil proceedings R.C. 3742.03(D) R.C. 3742.05(B)(2) R.C. 3742.16 contrary to Appellant's position, a fine is not an option judgment affirmed", - "case_name_shorts": "Crawford" + "summaries": "CIVIL \u2013 administrative decision; one-year suspension of lead abatement contractor's license due to noted violations; ODH charging letter; R.C. Chapter 3742 and O.A.C. Chapter 3701-32 violations; three-day administrative hearing; hearing examiner; Report and Recommendations; adjudication order; R.C. 119.07; no violation of procedural due process; Sixth Amendment Confrontation Clause does not apply in civil proceedings; R.C. 3742.03(D); R.C. 3742.05(B)(2); R.C. 3742.16; contrary to Appellant's position, a fine is not an option; judgment affirmed", + "case_name_shorts": "Crawford", + "per_curiam": false }, { "case_dates": "2021-11-29", @@ -164,9 +188,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 MA 0024", "judges": "D'Apolito", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-4301", - "summaries": "CIVIL \u2013 disqualification of counsel/law firm final appealable order conflict of interest former client other civil lawsuit interlocutory appeal YOA Operating Agreement Ohio Rules of Professional Conduct, Rule 1.9(a) it is an obvious conflict of interest for an attorney/law firm to represent both sides involving the same matter without a waiver Dana test, three prongs first prong is not contested a past attorney-client relationship existed between the party seeking disqualification (Dr. Musser) and the attorney he wishes to disqualify (Attorney Thomas and the Firm) second prong \"substantially related\" Ohio Rules of Professional Conduct, Rule 1.0(n) the trial court did not abuse its discretion in finding a substantial relationship between the Firm's representation of Dr. Musser in the Other Case and its representation of YOA against Dr. Musser in the Present Case third prong presumption of shared confidences established the trial court was within its discretion in finding that the presumption was not properly rebutted by the Firm judgment affirmed.", - "case_name_shorts": "Musser" + "summaries": "CIVIL \u2013 disqualification of counsel/law firm; final appealable order; conflict of interest; former client; other civil lawsuit; interlocutory appeal; YOA Operating Agreement; Ohio Rules of Professional Conduct, Rule 1.9(a); it is an obvious conflict of interest for an attorney/law firm to represent both sides involving the same matter without a waiver; Dana test, three prongs; first prong is not contested; a past attorney-client relationship existed between the party seeking disqualification (Dr. Musser) and the attorney he wishes to disqualify (Attorney Thomas and the Firm); second prong; \"substantially related\"; Ohio Rules of Professional Conduct, Rule 1.0(n); the trial court did not abuse its discretion in finding a substantial relationship between the Firm's representation of Dr. Musser in the Other Case and its representation of YOA against Dr. Musser in the Present Case; third prong; presumption of shared confidences established; the trial court was within its discretion in finding that the presumption was not properly rebutted by the Firm; judgment affirmed.", + "case_name_shorts": "Musser", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -177,9 +203,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 CO 0025", "judges": "D'Apolito", + "lower_courts": "Columbiana County Court", "citations": "2021-Ohio-4292", - "summaries": "CRIMINAL \u2013 R.C. 2911.11(A)(2) sufficiency and weight challenges to the threat and trespass elements of aggravated burglary statute victims testified that perpetrator was ranting and waving a gun victims locked the door and called law enforcement after perpetrator exited a violent crime immediately terminates the privilege of a guest R.C. 2903.21(A) sufficiency and weight challenges to the subjective \"belie[f] that the offender will cause serious physical harm to the person or property of the other person\" element of the aggravated menacing statute can be satisfied with circumstantial evidence there was no testimony or evidence regarding specific victim's demeanor R.C. 2929.14 \"no single prison term for any of the offenses committed as part of any of the courses of conduct adequately reflects the seriousness of the offender's conduct\" requirement is not violated where the trial court imposes consecutive non-maximum sentences, and the aggregate sentence does not exceed the maximum sentence for a single conviction.", - "case_name_shorts": "White" + "summaries": "CRIMINAL \u2013 R.C. 2911.11(A)(2); sufficiency and weight challenges to the threat and trespass elements of aggravated burglary statute; victims testified that perpetrator was ranting and waving a gun; victims locked the door and called law enforcement after perpetrator exited; a violent crime immediately terminates the privilege of a guest; R.C. 2903.21(A); sufficiency and weight challenges to the subjective \"belie[f] that the offender will cause serious physical harm to the person or property of the other person\" element of the aggravated menacing statute can be satisfied with circumstantial evidence; there was no testimony or evidence regarding specific victim's demeanor; R.C. 2929.14; \"no single prison term for any of the offenses committed as part of any of the courses of conduct adequately reflects the seriousness of the offender's conduct\" requirement is not violated where the trial court imposes consecutive non-maximum sentences, and the aggregate sentence does not exceed the maximum sentence for a single conviction.", + "case_name_shorts": "White", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -190,9 +218,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 MA 0021", "judges": "D'Apolito", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-4300", "summaries": "CIVIL \u2013 Domestic violence civil protection order is supported by preponderance of the evidence where issuance of protective order turned exclusively on credibility of witnesses, and domestic relations court deferred to credibility determinations made by the magistrate who conducted the evidentiary hearing", - "case_name_shorts": "B.L.L." + "case_name_shorts": "B.L.L.", + "per_curiam": false }, { "case_dates": "2021-11-22", @@ -203,9 +233,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 HA 0001", "judges": "D'Apolito", + "lower_courts": "Harrison County Court", "citations": "2021-Ohio-4297", - "summaries": "CRIMINAL LAW \u2013 petty offenses aggravated menacing, a misdemeanor of the first degree resisting arrest, a misdemeanor of the second degree not guilty plea Appellant demanded a trial by jury in writing on three separate occasions the trial court initially set the matter for a trial by jury however, notwithstanding Appellant's demands and the scheduled trial by jury, the trial court conducted a bench trial Appellant was found guilty on both charges and sentenced to jail, which was stayed pending appeal Sixth Amendment a criminally accused is guaranteed the right to a trial by jury Crim.R. 23(A) R.C. 2945.05 the trial court erred in conducting a bench trial because Appellant demanded a trial by jury and Appellant never waived that right the trial court was without jurisdiction to conduct a bench trial Appellant's alternative sufficiency and manifest weight of the evidence assignments of error are moot App.R. 12(A)(1)(c) because Appellant was denied her right to a trial by jury, we vacate Appellant's conviction and sentence, reverse the judgments of the trial court, and remand for a new trial.", - "case_name_shorts": "Krankovich" + "summaries": "CRIMINAL LAW \u2013 petty offenses; aggravated menacing, a misdemeanor of the first degree; resisting arrest, a misdemeanor of the second degree; not guilty plea; Appellant demanded a trial by jury in writing on three separate occasions; the trial court initially set the matter for a trial by jury; however, notwithstanding Appellant's demands and the scheduled trial by jury, the trial court conducted a bench trial; Appellant was found guilty on both charges and sentenced to jail, which was stayed pending appeal; Sixth Amendment; a criminally accused is guaranteed the right to a trial by jury; Crim.R. 23(A); R.C. 2945.05; the trial court erred in conducting a bench trial because Appellant demanded a trial by jury and Appellant never waived that right; the trial court was without jurisdiction to conduct a bench trial; Appellant's alternative sufficiency and manifest weight of the evidence assignments of error are moot; App.R. 12(A)(1)(c); because Appellant was denied her right to a trial by jury, we vacate Appellant's conviction and sentence, reverse the judgments of the trial court, and remand for a new trial.", + "case_name_shorts": "Krankovich", + "per_curiam": false }, { "case_dates": "2021-11-18", @@ -216,9 +248,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 MA 0133", "judges": "D'Apolito", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-4294", - "summaries": "CRIMINAL \u2013 Crim. R. 33 motion for leave to file motion for new trial newly discovered evidence, private communication with juror concerning a matter before the jury.", - "case_name_shorts": "" + "summaries": "CRIMINAL \u2013 Crim. R. 33; motion for leave to file motion for new trial; newly discovered evidence, private communication with juror concerning a matter before the jury.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-18", @@ -229,9 +263,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 JE 0022, 21 JE 0023", "judges": "D'Apolito", + "lower_courts": "Jefferson County Court", "citations": "2021-Ohio-4299", - "summaries": "JUVENILE \u2013 termination of parental rights of Mother, Father No. 1 and Father No. 2 permanent custody of two minor children granted to Agency S.M.J. tested positive for cocaine when he was born and was removed from Mother's care K.J. was also later removed from Mother's care due to concerns relating to lack of housing and drug use in the home Mother, Father No. 1, and Father No. 2 are all incarcerated only Mother challenges the juvenile court's decisions Grandmother received legal custody however, the juvenile court later removed the minor children from Grandmother's care due to neglect and dependency the minor children have had numerous foster placements Grandmother agreed with a grant of permanent custody to Agency there are no other viable relatives as possible placements for the minor children Agency caseworkers testified it is not possible for Agency to maintain temporary custody until Mother's release from prison none of the parents are able to work a reunification plan GAL recommended that permanent custody be granted to Agency R.C. 2151.414(B)(1)(a)-(e), the first prong of the permanent custody to an agency test there is no dispute that the minor children have been in the temporary custody of Agency for at least 12 months of a consecutive 22-month period R.C. 2151.414(D)(1)(a)-(e), the second prong of the permanent custody to an agency test the juvenile court considered and referenced numerous factors in its judgments in determining the best interest of the minor children being placed into the permanent custody of Agency R.C. 2151.414(E)(1)-(16) the records reveal the juvenile court complied with the procedure prescribed by R.C. 2151.414 the court's decisions do not violate Mother's due process rights and do not go against the manifest weight of the evidence the court did not err in finding that it was in the minor children's best interest to terminate Mother's parental rights and grant permanent custody to Agency judgments affirmed.", - "case_name_shorts": "In re K.J." + "summaries": "JUVENILE \u2013 termination of parental rights of Mother, Father No. 1 and Father No. 2; permanent custody of two minor children granted to Agency; S.M.J. tested positive for cocaine when he was born and was removed from Mother's care; K.J. was also later removed from Mother's care due to concerns relating to lack of housing and drug use in the home; Mother, Father No. 1, and Father No. 2 are all incarcerated; only Mother challenges the juvenile court's decisions; Grandmother received legal custody; however, the juvenile court later removed the minor children from Grandmother's care due to neglect and dependency; the minor children have had numerous foster placements; Grandmother agreed with a grant of permanent custody to Agency; there are no other viable relatives as possible placements for the minor children; Agency caseworkers testified it is not possible for Agency to maintain temporary custody until Mother's release from prison; none of the parents are able to work a reunification plan; GAL recommended that permanent custody be granted to Agency; R.C. 2151.414(B)(1)(a)-(e), the first prong of the permanent custody to an agency test; there is no dispute that the minor children have been in the temporary custody of Agency for at least 12 months of a consecutive 22-month period; R.C. 2151.414(D)(1)(a)-(e), the second prong of the permanent custody to an agency test; the juvenile court considered and referenced numerous factors in its judgments in determining the best interest of the minor children being placed into the permanent custody of Agency; R.C. 2151.414(E)(1)-(16); the records reveal the juvenile court complied with the procedure prescribed by R.C. 2151.414; the court's decisions do not violate Mother's due process rights and do not go against the manifest weight of the evidence; the court did not err in finding that it was in the minor children's best interest to terminate Mother's parental rights and grant permanent custody to Agency; judgments affirmed.", + "case_name_shorts": "In re K.J.", + "per_curiam": false }, { "case_dates": "2021-11-18", @@ -242,9 +278,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 BE 0007", "judges": "D'Apolito", + "lower_courts": "Belmont County Court", "citations": "2021-Ohio-4295", - "summaries": "CIVIL \u2013 summary judgment Civ.R. 56 de novo review employment age discrimination claim R.C. 4112.02(A) no direct evidence in order to establish a prima facie case based on indirect evidence, the Barker analysis requires a plaintiff to show the following: (1) that she was a member of the statutorily protected class (2) that she was discharged (3) that she was qualified for the position and (4) that she was replaced by, or the discharge permitted the retention of, a person of substantially younger age Appellant meets the first three prongs under Barker however, Appellant failed to set forth a genuine issue of material fact as to the fourth prong since she was not replaced even if Appellant could demonstrate a prima facie case of age discrimination, she fails to show that Appellee's proffered reason for the termination is a pretext Appellee determined it no longer needed an in-house Marketing Director and that the costs associated with that position outweighed its benefits the trial court properly granted Appellee's motion for summary judgment.", - "case_name_shorts": "Cunningham" + "summaries": "CIVIL \u2013 summary judgment; Civ.R. 56; de novo review; employment; age discrimination claim; R.C. 4112.02(A); no direct evidence; in order to establish a prima facie case based on indirect evidence, the Barker analysis requires a plaintiff to show the following: (1) that she was a member of the statutorily protected class; (2) that she was discharged; (3) that she was qualified for the position; and (4) that she was replaced by, or the discharge permitted the retention of, a person of substantially younger age; Appellant meets the first three prongs under Barker; however, Appellant failed to set forth a genuine issue of material fact as to the fourth prong since she was not replaced; even if Appellant could demonstrate a prima facie case of age discrimination, she fails to show that Appellee's proffered reason for the termination is a pretext; Appellee determined it no longer needed an in-house Marketing Director and that the costs associated with that position outweighed its benefits; the trial court properly granted Appellee's motion for summary judgment.", + "case_name_shorts": "Cunningham", + "per_curiam": false }, { "case_dates": "2021-11-18", @@ -254,10 +292,12 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21 CO 0022", - "judges": "Per Curiam", + "judges": "", + "lower_courts": "Columbiana County Court", "citations": "2021-Ohio-4296", - "summaries": "mandamus R.C. 2969.25 filing requirements inmates dismissal", - "case_name_shorts": "Brown" + "summaries": "mandamus; R.C. 2969.25; filing requirements; inmates; dismissal", + "case_name_shorts": "Brown", + "per_curiam": true }, { "case_dates": "2021-11-18", @@ -268,9 +308,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 JE 0003", "judges": "D'Apolito", + "lower_courts": "Jefferson County Court", "citations": "2021-Ohio-4298", - "summaries": "CIVIL \u2013 Dormant Mineral Act R.C. 5301.56(E) where probate records in the county where the property is located contain out-of-state addresses for holders, surface owners do not conduct reasonably diligent search, and may not serve potential holders by publication, where surface owners fail to extend search to the counties of the holder's last known addresses.", - "case_name_shorts": "Beckett" + "summaries": "CIVIL \u2013 Dormant Mineral Act; R.C. 5301.56(E); where probate records in the county where the property is located contain out-of-state addresses for holders, surface owners do not conduct reasonably diligent search, and may not serve potential holders by publication, where surface owners fail to extend search to the counties of the holder's last known addresses.", + "case_name_shorts": "Beckett", + "per_curiam": false }, { "case_dates": "2021-09-30", @@ -281,9 +323,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 CO 0018", "judges": "Waite", + "lower_courts": "Columbiana County Court", "citations": "2021-Ohio-3589", - "summaries": "R.C. 2311.14(A)(1) translator manifest weight Evid.R. 101(C)(8) municipal court.", - "case_name_shorts": "Watkins" + "summaries": "R.C. 2311.14(A)(1); translator; manifest weight; Evid.R. 101(C)(8); municipal court.", + "case_name_shorts": "Watkins", + "per_curiam": false }, { "case_dates": "2021-09-30", @@ -292,11 +336,13 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20 CO 0032 20 CO 0033", + "docket_numbers": "20 CO 0032; 20 CO 0033", "judges": "Waite", + "lower_courts": "Columbiana County Court", "citations": "2021-Ohio-3590", - "summaries": "Ineffective assistance of counsel Marsy's Law permits a victim to provide a statement at the sentencing hearing the Confrontation Clause does not apply to sentencing hearings.", - "case_name_shorts": "Wilt" + "summaries": "Ineffective assistance of counsel; Marsy's Law permits a victim to provide a statement at the sentencing hearing; the Confrontation Clause does not apply to sentencing hearings.", + "case_name_shorts": "Wilt", + "per_curiam": false }, { "case_dates": "2021-09-30", @@ -307,9 +353,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19 MA 0073", "judges": "Waite", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-3585", - "summaries": "Guilty plea Crim.R. 11(C)(2)(a) maximum penalty double jeopardy R.C. 2941.25 allied offenses of similar import tampering with evidence abuse of a corpse possession of criminal tools merger conviction on only one offense after merger limited remand.", - "case_name_shorts": "Novoa" + "summaries": "Guilty plea; Crim.R. 11(C)(2)(a); maximum penalty; double jeopardy; R.C. 2941.25; allied offenses of similar import; tampering with evidence; abuse of a corpse; possession of criminal tools; merger; conviction on only one offense after merger; limited remand.", + "case_name_shorts": "Novoa", + "per_curiam": false }, { "case_dates": "2021-09-30", @@ -320,9 +368,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 JE 0021", "judges": "Waite", + "lower_courts": "Jefferson County Court", "citations": "2021-Ohio-3591", - "summaries": "Extortion R.C. 2905.11(A)(2) & (B) sufficiency of the evidence threat to commit an offense of violence Evid.R. 801(D)(2) admission by a party opponent Evid.R. 401 Evid.R. 403(B) ineffective assistance of counsel failure to object to admission of evidence reasonable probability of success.", - "case_name_shorts": "Brown" + "summaries": "Extortion; R.C. 2905.11(A)(2) & (B); sufficiency of the evidence; threat to commit an offense of violence; Evid.R. 801(D)(2); admission by a party opponent; Evid.R. 401; Evid.R. 403(B); ineffective assistance of counsel; failure to object to admission of evidence; reasonable probability of success.", + "case_name_shorts": "Brown", + "per_curiam": false }, { "case_dates": "2021-09-30", @@ -333,9 +383,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 NO 0481", "judges": "Robb", + "lower_courts": "Noble County Court", "citations": "2021-Ohio-3638", - "summaries": "Injured party was a social guest for purposes of premises liability Evidence submitted did not create a genuine issue of material fact that the owners had actual or constructive notice of condition of cistern.", - "case_name_shorts": "Saliba" + "summaries": "Injured party was a social guest for purposes of premises liability; Evidence submitted did not create a genuine issue of material fact that the owners had actual or constructive notice of condition of cistern.", + "case_name_shorts": "Saliba", + "per_curiam": false }, { "case_dates": "2021-09-30", @@ -346,9 +398,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 CA 0942", "judges": "Waite", + "lower_courts": "Carroll County Court", "citations": "2021-Ohio-3587", - "summaries": "Taxpayer standing matter is capable of evading review R.C. 3313.46.", - "case_name_shorts": "Rider-Durst" + "summaries": "Taxpayer standing; matter is capable of evading review; R.C. 3313.46.", + "case_name_shorts": "Rider-Durst", + "per_curiam": false }, { "case_dates": "2021-09-30", @@ -359,9 +413,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 JE 0005", "judges": "Waite", + "lower_courts": "Jefferson County Court", "citations": "2021-Ohio-3596", - "summaries": "Insurance policy interpretation of policy limits products completed operations hazard post-judgment interest.", - "case_name_shorts": "Swearengen" + "summaries": "Insurance policy; interpretation of policy limits; products completed operations hazard; post-judgment interest.", + "case_name_shorts": "Swearengen", + "per_curiam": false }, { "case_dates": "2021-09-30", @@ -372,9 +428,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 CA 0945", "judges": "Waite", + "lower_courts": "Carroll County Court", "citations": "2021-Ohio-3588", - "summaries": "Nonconforming brief R.C. 3105.171 commingling and transformation of separate property into marital property Moschella v. Moschella, 7th Dist. No. 05-MA-25, 2006-Ohio-3635 depleted assets spousal support property division attorney fees.", - "case_name_shorts": "Favri" + "summaries": "Nonconforming brief; R.C. 3105.171; commingling and transformation of separate property into marital property; Moschella v. Moschella, 7th Dist. No. 05-MA-25, 2006-Ohio-3635; depleted assets; spousal support; property division; attorney fees.", + "case_name_shorts": "Favri", + "per_curiam": false }, { "case_dates": "2021-09-30", @@ -385,9 +443,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 BE 0035", "judges": "Waite", + "lower_courts": "Belmont County Court", "citations": "2021-Ohio-3586", - "summaries": "Civ.R. 4.4 service of a complaint by publication is proper where the plaintiff is unable to locate an address or names of heirs to a mineral interest reasonable due diligence is demonstrated where the facts and circumstances show that the plaintiff searched all reasonable locations for heirs where a trial court has jurisdiction and properly grants a motion to serve notice of a complaint by publication, Civ. R. 60(B) cannot be used to overturn a default judgment.", - "case_name_shorts": "Hunter" + "summaries": "Civ.R. 4.4; service of a complaint by publication is proper where the plaintiff is unable to locate an address or names of heirs to a mineral interest; reasonable due diligence is demonstrated where the facts and circumstances show that the plaintiff searched all reasonable locations for heirs; where a trial court has jurisdiction and properly grants a motion to serve notice of a complaint by publication, Civ. R. 60(B) cannot be used to overturn a default judgment.", + "case_name_shorts": "Hunter", + "per_curiam": false }, { "case_dates": "2021-09-29", @@ -398,9 +458,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 MA 0080", "judges": "Waite", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-3595", - "summaries": "Oral lease agreement hold-over tenancy statute of frauds R.C. 1335.04 manifest weight.", - "case_name_shorts": "Vaughn" + "summaries": "Oral lease agreement; hold-over tenancy; statute of frauds; R.C. 1335.04; manifest weight.", + "case_name_shorts": "Vaughn", + "per_curiam": false }, { "case_dates": "2021-09-29", @@ -411,9 +473,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 MA 0061", "judges": "Waite", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-3592", - "summaries": "Foreclosure action confirmation of sale nonconforming brief arguments outside the scope of appeal bankruptcy stay personal jurisdiction Civ.R. 25(C) judgment creditor R.C. 2329.091 R.C. 2329.191 R.C. 2329.211 R.C. 2329.26 R.C. 2329.271 trial court not required to hold a hearing where sufficient evidence is before the court.", - "case_name_shorts": "" + "summaries": "Foreclosure action; confirmation of sale; nonconforming brief; arguments outside the scope of appeal; bankruptcy stay; personal jurisdiction; Civ.R. 25(C); judgment creditor; R.C. 2329.091; R.C. 2329.191; R.C. 2329.211; R.C. 2329.26; R.C. 2329.271; trial court not required to hold a hearing where sufficient evidence is before the court.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-09-29", @@ -424,9 +488,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 CO 0002", "judges": "Robb", + "lower_courts": "Columbiana County Court", "citations": "2021-Ohio-3635", - "summaries": "reversal of decision dismissing tort claims against title company and declaratory action for release of escrowed funds complaint sufficiently alleged an actual and justiciable controversy seeking declaratory relief court applied an inapplicable section of bankruptcy law when stating debt to former spouse was non-dischargeable support court improperly considered items outside of the complaint in granting dismissal under Civ.R. 12(B)(6) trial court had subject matter jurisdiction on declaratory action no domestic relations division in Columbiana County.", - "case_name_shorts": "Rimby" + "summaries": "reversal of decision dismissing tort claims against title company and declaratory action for release of escrowed funds; complaint sufficiently alleged an actual and justiciable controversy seeking declaratory relief; court applied an inapplicable section of bankruptcy law when stating debt to former spouse was non-dischargeable support; court improperly considered items outside of the complaint in granting dismissal under Civ.R. 12(B)(6); trial court had subject matter jurisdiction on declaratory action; no domestic relations division in Columbiana County.", + "case_name_shorts": "Rimby", + "per_curiam": false }, { "case_dates": "2021-09-29", @@ -437,9 +503,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 MA 0066", "judges": "Waite", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-3593", - "summaries": "R.C. 1309.611 sale of collateral reasonable notice conversion law of the case doctrine genuine issue of material fact.", - "case_name_shorts": "Manshadi" + "summaries": "R.C. 1309.611; sale of collateral; reasonable notice; conversion; law of the case doctrine; genuine issue of material fact.", + "case_name_shorts": "Manshadi", + "per_curiam": false }, { "case_dates": "2021-09-28", @@ -450,9 +518,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 MA 0004", "judges": "Robb", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-3636", - "summaries": "There was a reasonable articulable suspicion of criminal activity justifying the stop and pat down officer was also engaged in community caretaking function search was performed incident to lawful arrest.", - "case_name_shorts": "Bunn" + "summaries": "There was a reasonable articulable suspicion of criminal activity justifying the stop and pat down; officer was also engaged in community caretaking function; search was performed incident to lawful arrest.", + "case_name_shorts": "Bunn", + "per_curiam": false }, { "case_dates": "2021-09-28", @@ -463,9 +533,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 MA 0015", "judges": "Robb", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-3637", "summaries": "Appellant did not object to the magistrate's decision, and as such, issues raised were not preserved.", - "case_name_shorts": "Grenga" + "case_name_shorts": "Grenga", + "per_curiam": false }, { "case_dates": "2021-09-24", @@ -476,9 +548,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 BE 0009", "judges": "Robb", + "lower_courts": "Belmont County Court", "citations": "2021-Ohio-3634", - "summaries": "Any prejudice resulting from jury pool viewing Appellant in shackles would have been negated by curative instruction Appellant declined curative instruction and invited the error Suppression of second interview is controlled by United States Cobb decision and rape and pandering are two separate offenses under Blockburger test Multiple images admitted did not violate other acts evidence Use of earbuds did not constitute jury conducting its own investigation Evidence was sufficient to support convictions for pandering, rape, and illegal use There was sufficient evidence that depictions of children were of real children Trial counsel was not ineffective for failing to raise real versus virtual children argument Convictions were not against the manifest weight of the evidence Cumulative error doctrine inapplicable because no errors.", - "case_name_shorts": "Gawron" + "summaries": "Any prejudice resulting from jury pool viewing Appellant in shackles would have been negated by curative instruction; Appellant declined curative instruction and invited the error; Suppression of second interview is controlled by United States Cobb decision and rape and pandering are two separate offenses under Blockburger test; Multiple images admitted did not violate other acts evidence; Use of earbuds did not constitute jury conducting its own investigation; Evidence was sufficient to support convictions for pandering, rape, and illegal use; There was sufficient evidence that depictions of children were of real children; Trial counsel was not ineffective for failing to raise real versus virtual children argument; Convictions were not against the manifest weight of the evidence; Cumulative error doctrine inapplicable because no errors.", + "case_name_shorts": "Gawron", + "per_curiam": false }, { "case_dates": "2021-09-23", @@ -489,9 +563,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19 MA 0130", "judges": "Robb", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-3439", - "summaries": "admissibility of other acts evidence where defendant claimed he may have accidentally struck victim earlier in the night and claimed victim slipped and fell before her death sufficiency and weight of the evidence on element of purpose for murder prosecutorial misconduct in closing arguments denial of a mistrial after spectator's outburst during closing arguments and felonious assault did not merge with murder.", - "case_name_shorts": "Hymes" + "summaries": "admissibility of other acts evidence where defendant claimed he may have accidentally struck victim earlier in the night and claimed victim slipped and fell before her death; sufficiency and weight of the evidence on element of purpose for murder; prosecutorial misconduct in closing arguments; denial of a mistrial after spectator's outburst during closing arguments; and felonious assault did not merge with murder.", + "case_name_shorts": "Hymes", + "per_curiam": false }, { "case_dates": "2021-09-20", @@ -502,9 +578,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 CO 0011", "judges": "Robb", + "lower_courts": "Columbiana County Court", "citations": "2021-Ohio-3440", - "summaries": "Record indicates CCDJFS made reasonable efforts to reunify Appellant with her child The record supports the juvenile court's determination that it is in the best interest of the child for Appellant's parental rights to be terminated and for permanent custody to granted to the agency.", - "case_name_shorts": "In re W.W." + "summaries": "Record indicates CCDJFS made reasonable efforts to reunify Appellant with her child; The record supports the juvenile court's determination that it is in the best interest of the child for Appellant's parental rights to be terminated and for permanent custody to granted to the agency.", + "case_name_shorts": "In re W.W.", + "per_curiam": false }, { "case_dates": "2021-09-17", @@ -515,9 +593,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 MA 0128", "judges": "D'Apolito", + "lower_courts": "Mahoning County Court", "citations": "2021-Ohio-3333", - "summaries": "CIVIL \u2013 Open Meeting Act 2020-2021 school year mootness attorney's fees R.C. 121.22(I)(2)(a) abuse of discretion", - "case_name_shorts": "" + "summaries": "CIVIL \u2013 Open Meeting Act; 2020-2021 school year; mootness; attorney's fees; R.C. 121.22(I)(2)(a); abuse of discretion", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-09-17", @@ -528,9 +608,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 BE 0005", "judges": "Robb", + "lower_courts": "Belmont County Court", "citations": "2021-Ohio-3248", - "summaries": "motion to vacate seven-year-old default judgment on grounds it was void for lack of personal jurisdiction landowner served complaint by publication failure to rebut presumption of diligence by merely stating time lived at an address alternatively, plaintiff proved reasonable diligence in attempting to locate addresses for four of the many defendants in suit seeking title to the oil and gas underlying property.", - "case_name_shorts": "Mammone" + "summaries": "motion to vacate seven-year-old default judgment on grounds it was void for lack of personal jurisdiction; landowner served complaint by publication; failure to rebut presumption of diligence by merely stating time lived at an address; alternatively, plaintiff proved reasonable diligence in attempting to locate addresses for four of the many defendants in suit seeking title to the oil and gas underlying property.", + "case_name_shorts": "Mammone", + "per_curiam": false }, { "case_dates": "2021-09-17", @@ -541,9 +623,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 JE 0019", "judges": "Donofrio", + "lower_courts": "Jefferson County Court", "citations": "2021-Ohio-3306", - "summaries": "political subdivision immunity summary judgment improperly granted in favor of motorist washed-out road was \"obstruction\" under R.C. 2744.02(B)(3) township erected signs, barrels, and dirt blockade to protect motorists signs stolen", - "case_name_shorts": "Irwin" + "summaries": "political subdivision immunity; summary judgment improperly granted in favor of motorist; washed-out road was \"obstruction\" under R.C. 2744.02(B)(3); township erected signs, barrels, and dirt blockade to protect motorists; signs stolen", + "case_name_shorts": "Irwin", + "per_curiam": false }, { "case_dates": "2021-09-17", @@ -554,9 +638,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21 BE 0004", "judges": "Robb", + "lower_courts": "Belmont County Court", "citations": "2021-Ohio-3247", - "summaries": "motion to vacate six-year-old default judgment on grounds it was void for lack of personal jurisdiction landowner served complaint by publication failure to rebut presumption of diligence by merely stating time lived at an address proof of reasonable diligence in attempting to locate addresses for four of the many defendants in suit seeking title to the oil and gas underlying property prove of search efforts waiver of various arguments, including staleness of search.", - "case_name_shorts": "Franks" + "summaries": "motion to vacate six-year-old default judgment on grounds it was void for lack of personal jurisdiction; landowner served complaint by publication; failure to rebut presumption of diligence by merely stating time lived at an address; proof of reasonable diligence in attempting to locate addresses for four of the many defendants in suit seeking title to the oil and gas underlying property; prove of search efforts; waiver of various arguments, including staleness of search.", + "case_name_shorts": "Franks", + "per_curiam": false }, { "case_dates": "2021-09-16", @@ -567,9 +653,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21MO0001", "judges": "Donofrio", + "lower_courts": "Monroe County Court", "citations": "2021-Ohio-3310", - "summaries": "R.C. 2953.21 post conviction relief petition timeless jurisdiction res judicata law of the case doctrine", - "case_name_shorts": "Peyatt" + "summaries": "R.C. 2953.21; post conviction relief petition; timeless; jurisdiction; res judicata; law of the case doctrine", + "case_name_shorts": "Peyatt", + "per_curiam": false }, { "case_dates": "2021-09-16", @@ -580,9 +668,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 BE 0019", "judges": "Donofrio", + "lower_courts": "Belmont County Court", "citations": "2021-Ohio-3305", - "summaries": "R.C. 2929.11 R.C. 2929.12 R.C. 2929.13 maximum sentence sentencing factors harsh sentence sentence upheld.", - "case_name_shorts": "Bazar" + "summaries": "R.C. 2929.11; R.C. 2929.12; R.C. 2929.13; maximum sentence; sentencing factors; harsh sentence; sentence upheld.", + "case_name_shorts": "Bazar", + "per_curiam": false }, { "case_dates": "2021-09-16", @@ -592,10 +682,12 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21 CO 0005", - "judges": "Per Curiam", + "judges": "", + "lower_courts": "Columbiana County Court", "citations": "2021-Ohio-3335", - "summaries": "mandamus R.C. 2969.25 filing requirements inmates dismissal", - "case_name_shorts": "Brown" + "summaries": "mandamus; R.C. 2969.25; filing requirements; inmates; dismissal", + "case_name_shorts": "Brown", + "per_curiam": true }, { "case_dates": "2021-09-15", @@ -606,9 +698,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 BE 0023", "judges": "D'Apolito", + "lower_courts": "Belmont County Court", "citations": "2021-Ohio-3328", - "summaries": "CRIMINAL \u2013 felonious assault Crim.R. 15(A) unavailability of a witness prejudice authentication of medical records manifest weight of the evidence cumulative error.", - "case_name_shorts": "Williamson" + "summaries": "CRIMINAL \u2013 felonious assault; Crim.R. 15(A); unavailability of a witness; prejudice; authentication of medical records; manifest weight of the evidence; cumulative error.", + "case_name_shorts": "Williamson", + "per_curiam": false }, { "case_dates": "2021-09-15", @@ -619,9 +713,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20 CO 0022", "judges": "D'Apolito", + "lower_courts": "Columbiana County Court", "citations": "2021-Ohio-3330", - "summaries": "CRIMINAL \u2013 motion to suppress standing hotel room occupant overnight guest ruse warrantless entry plain smell exception raw marijuana exigent circumstances search incident to arrest.", - "case_name_shorts": "" + "summaries": "CRIMINAL \u2013 motion to suppress; standing; hotel room; occupant; overnight guest; ruse; warrantless entry; plain smell exception; raw marijuana; exigent circumstances; search incident to arrest.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-09-15", @@ -632,9 +728,11 @@ "date_filed_is_approximate": false, "docket_numbers": "19 BE 0050", "judges": "D'Apolito", + "lower_courts": "Belmont County Court", "citations": "2021-Ohio-3327", - "summaries": "CRIMINAL LAW \u2013 rape 12-year-old stepdaughter jury trial sentenced to an indefinite term of 25 years to life in prison five years mandatory post-release control Tier III sex offender designation no error in refusing to strike a juror for cause Crim.R. 24(C)(10) R.C. 2313.17(A) and (B)(7) other acts evidence no plain error Evid.R. 403(A) and (B) Evid.R. 404(B) no error in determining that further testimony regarding sperm became irrelevant Evid.R. 611(A) and (B) trial court's jury instruction regarding \"force\" was complete no requirement for trial court to give any further instructions R.C. 2941.1419 R.C. 2907.02(A)(1)(b) no error in prosecutor's closing argument Appellant's sentence is not contrary to law R.C. 2953.08(G)(2)(a)-(b) mandated by R.C. 2971.03(B)(1)(c) no cumulative error no \"potential\" ineffective assistance of counsel judgment affirmed.", - "case_name_shorts": "Hill" + "summaries": "CRIMINAL LAW \u2013 rape; 12-year-old stepdaughter; jury trial; sentenced to an indefinite term of 25 years to life in prison; five years mandatory post-release control; Tier III sex offender designation; no error in refusing to strike a juror for cause; Crim.R. 24(C)(10); R.C. 2313.17(A) and (B)(7); other acts evidence; no plain error; Evid.R. 403(A) and (B); Evid.R. 404(B); no error in determining that further testimony regarding sperm became irrelevant; Evid.R. 611(A) and (B); trial court's jury instruction regarding \"force\" was complete; no requirement for trial court to give any further instructions; R.C. 2941.1419; R.C. 2907.02(A)(1)(b); no error in prosecutor's closing argument; Appellant's sentence is not contrary to law; R.C. 2953.08(G)(2)(a)-(b); mandated by R.C. 2971.03(B)(1)(c); no cumulative error; no \"potential\" ineffective assistance of counsel; judgment affirmed.", + "case_name_shorts": "Hill", + "per_curiam": false }, { "case_dates": "2021-09-15", @@ -644,9 +742,11 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21 BE 0008", - "judges": "Per Curiam", + "judges": "", + "lower_courts": "Belmont County Court", "citations": "2021-Ohio-3334", - "summaries": "original action habeas corpus failure to include commitment papers R.C. 2725.04(D)", - "case_name_shorts": "Perez" + "summaries": "original action; habeas corpus; failure to include commitment papers; R.C. 2725.04(D)", + "case_name_shorts": "Perez", + "per_curiam": true } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohioctapp_8_example.compare.json b/tests/examples/opinions/united_states/ohioctapp_8_example.compare.json index a33694ade..66ad1f469 100644 --- a/tests/examples/opinions/united_states/ohioctapp_8_example.compare.json +++ b/tests/examples/opinions/united_states/ohioctapp_8_example.compare.json @@ -8,9 +8,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110461", "judges": "Celebrezze", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4518", - "summaries": "Summary judgment de novo workers' compensation R.C. 4123.74 immunity R.C. 4123.35 employer staffing agency payment of workers' compensation premiums control over performance of work compliance with workers' compensation statutes direct or indirect payment of premiums. The trial court did not err in granting summary judgment in favor of the customer of the staffing agency. For purposes of workers' compensation, the customer was appellant's employer and was in compliance with R.C. 4123.35 at the time of the accident. Thus, the customer was entitled to immunity on appellant's claims, and appellant's sole assignment of error is overruled.", - "case_name_shorts": "Wilson" + "summaries": "Summary judgment; de novo; workers' compensation; R.C. 4123.74; immunity; R.C. 4123.35; employer; staffing agency; payment of workers' compensation premiums; control over performance of work; compliance with workers' compensation statutes; direct or indirect payment of premiums. The trial court did not err in granting summary judgment in favor of the customer of the staffing agency. For purposes of workers' compensation, the customer was appellant's employer and was in compliance with R.C. 4123.35 at the time of the accident. Thus, the customer was entitled to immunity on appellant's claims, and appellant's sole assignment of error is overruled.", + "case_name_shorts": "Wilson", + "per_curiam": false }, { "case_dates": "2021-12-23", @@ -21,9 +23,11 @@ "date_filed_is_approximate": false, "docket_numbers": "109686, 109687, 109688", "judges": "Kilbane", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4524", - "summaries": "R.C. 2903.41-44 Sierah's Law violent offender database registration retroactive application constitutional intent-effects tests Ohio Constitution Article II, Section 28 U.S. Constitution Article I, Sections 9 and 10 ineffective assistance of counsel not ineffective if objection was trivial. Defendant's requirement to register in the violent offender database pursuant to R.C. 2903.41-44, also known as Sierah's Law, did not violate his rights under the Ohio Constitution Article II, Section 28 U.S. Constitution Article I, Sections 9 and 10. His registration was not a violation of the Retroactivity Clause of the Ohio Constitution or the Ex Post Facto Clause of the U.S. Constitution. Further, trial counsel was not ineffective for failing to object to defendant's registration in the violent offender database given the law's constitutionality any objection would be trivial.", - "case_name_shorts": "Hutchins" + "summaries": "R.C. 2903.41-44; Sierah's Law; violent offender database; registration; retroactive application; constitutional; intent-effects tests; Ohio Constitution Article II, Section 28; U.S. Constitution Article I, Sections 9 and 10; ineffective assistance of counsel; not ineffective if objection was trivial. Defendant's requirement to register in the violent offender database pursuant to R.C. 2903.41-44, also known as Sierah's Law, did not violate his rights under the Ohio Constitution Article II, Section 28; U.S. Constitution Article I, Sections 9 and 10. His registration was not a violation of the Retroactivity Clause of the Ohio Constitution or the Ex Post Facto Clause of the U.S. Constitution. Further, trial counsel was not ineffective for failing to object to defendant's registration in the violent offender database given the law's constitutionality; any objection would be trivial.", + "case_name_shorts": "Hutchins", + "per_curiam": false }, { "case_dates": "2021-12-23", @@ -34,9 +38,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110636", "judges": "Keough", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4521", - "summaries": "Summary judgment expert testimony restriction patio grills claims of financial mismanagement. - Trial court did not err in granting summary judgment to appellees on all of appellants' claims where appellants' claims asserting financial mismanagement by a condominium association and its board with a multimillion dollar yearly operating budget were beyond the general knowledge and experience of mankind and thus required expert opinion testimony, but appellants offered no expert testimony to refute appellees' experts, and where the condominium association's rule prohibiting personal patio grills did not violate appellants' easement to their patios, was reasonable, and did not violate Ohio condominium law.", - "case_name_shorts": "Phillips" + "summaries": "Summary judgment; expert testimony; restriction; patio grills; claims of financial mismanagement. - Trial court did not err in granting summary judgment to appellees on all of appellants' claims where appellants' claims asserting financial mismanagement by a condominium association and its board with a multimillion dollar yearly operating budget were beyond the general knowledge and experience of mankind and thus required expert opinion testimony, but appellants offered no expert testimony to refute appellees' experts, and where the condominium association's rule prohibiting personal patio grills did not violate appellants' easement to their patios, was reasonable, and did not violate Ohio condominium law.", + "case_name_shorts": "Phillips", + "per_curiam": false }, { "case_dates": "2021-12-23", @@ -47,9 +53,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110663", "judges": "Boyle", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4522", - "summaries": "Guardian ad litem delinquency extraordinary fees Cuyahoga C.P. Loc.Juv.R. 15(D) juvenile court fee schedule and Assigned Counsel and GAL Fee Bill Policy abuse of discretion. The juvenile court abused its discretion when it found that the guardian ad litem's services were \"reasonable and necessary\" but nonetheless denied his motion for extraordinary fees without explanation.", - "case_name_shorts": "In re C.P." + "summaries": "Guardian ad litem; delinquency; extraordinary fees; Cuyahoga C.P. Loc.Juv.R. 15(D); juvenile court fee schedule and Assigned Counsel and GAL Fee Bill Policy; abuse of discretion. The juvenile court abused its discretion when it found that the guardian ad litem's services were \"reasonable and necessary\" but nonetheless denied his motion for extraordinary fees without explanation.", + "case_name_shorts": "In re C.P.", + "per_curiam": false }, { "case_dates": "2021-12-23", @@ -60,9 +68,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110503", "judges": "S. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4519", - "summaries": "Permanent custody reasonable efforts legal custodian visitation foster home distance placement ineffective assistance legal custody best interest bond clear and convincing manifest weight R.C. 2151.414(B) R.C. 2151.414(D)(1). Affirmed award of permanent custody to children services agency. The juvenile court did not abuse its discretion in finding reasonable efforts were made in its permanent-custody decisions. The agency provided case-plan services and supportive-visitation services and although the children were placed in a foster home almost three hours away, the record showed the agency made extensive efforts to facilitate visitation with their mother and their former legal custodian. Mother failed to demonstrate that she received ineffective assistance of trial counsel with regard to trial counsel's decision not to pursue legal custody to an interested individual. The juvenile court's determination that an award of permanent custody is in the best interest of each child was supported by clear and convincing evidence in the record and was not against the manifest weight of the evidence. Although the children's former legal custodian completed case-plan services and was reunified with her biological children, the record reflected that the juvenile court considered and weighed all relevant best-interest factors under R.C. 2151.414(D)(1) and other relevant factors in deciding whether to award permanent custody.", - "case_name_shorts": "In re A.F." + "summaries": "Permanent custody; reasonable efforts; legal custodian; visitation; foster home; distance; placement; ineffective assistance; legal custody; best interest; bond; clear and convincing; manifest weight; R.C. 2151.414(B); R.C. 2151.414(D)(1). Affirmed award of permanent custody to children services agency. The juvenile court did not abuse its discretion in finding reasonable efforts were made in its permanent-custody decisions. The agency provided case-plan services and supportive-visitation services and although the children were placed in a foster home almost three hours away, the record showed the agency made extensive efforts to facilitate visitation with their mother and their former legal custodian. Mother failed to demonstrate that she received ineffective assistance of trial counsel with regard to trial counsel's decision not to pursue legal custody to an interested individual. The juvenile court's determination that an award of permanent custody is in the best interest of each child was supported by clear and convincing evidence in the record and was not against the manifest weight of the evidence. Although the children's former legal custodian completed case-plan services and was reunified with her biological children, the record reflected that the juvenile court considered and weighed all relevant best-interest factors under R.C. 2151.414(D)(1) and other relevant factors in deciding whether to award permanent custody.", + "case_name_shorts": "In re A.F.", + "per_curiam": false }, { "case_dates": "2021-12-23", @@ -73,9 +83,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110581", "judges": "Celebrezze", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4520", - "summaries": "Summary judgment Civ.R. 56 negligence slip and fall invitee premises liability open and obvious expert report attendant circumstances. The trial court properly granted summary judgment in favor of defendants in appellant's premises liability negligence action. Any danger posed by the speed bumps upon which appellant tripped and fell was open and obvious, obviating any duty defendants had to warn appellant of the danger. The attendant circumstances exception to the open-and-obvious doctrine is inapplicable in this case. Appellant failed to produce evidence demonstrating the existence of a genuine issue of material fact that precluded judgment as a matter of law in favor of defendants.", - "case_name_shorts": "Ianetta" + "summaries": "Summary judgment; Civ.R. 56; negligence; slip and fall; invitee; premises liability; open and obvious; expert report; attendant circumstances. The trial court properly granted summary judgment in favor of defendants in appellant's premises liability negligence action. Any danger posed by the speed bumps upon which appellant tripped and fell was open and obvious, obviating any duty defendants had to warn appellant of the danger. The attendant circumstances exception to the open-and-obvious doctrine is inapplicable in this case. Appellant failed to produce evidence demonstrating the existence of a genuine issue of material fact that precluded judgment as a matter of law in favor of defendants.", + "case_name_shorts": "Ianetta", + "per_curiam": false }, { "case_dates": "2021-12-23", @@ -86,9 +98,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110290", "judges": "Forbes", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4517", - "summaries": "Commercial lease summary judgment lease renewal holdover tenant breach affidavit based on personal knowledge promissory estoppel. The trial court did not err by granting summary judgment to a tenant on landlord's breach-of-lease claims. Tenant did not renew the lease per the express provision of the document. Therefore, tenant was a holdover tenant on a month-to-month term. Landlord failed to show that tenant breached the lease. The court did not err by striking parts of an affidavit that were not based on personal knowledge and amounted to legal conclusions. A promissory estoppel claim will necessarily fail when there is an enforceable contract between the parties.", - "case_name_shorts": "" + "summaries": "Commercial lease; summary judgment; lease renewal; holdover tenant; breach; affidavit based on personal knowledge; promissory estoppel. The trial court did not err by granting summary judgment to a tenant on landlord's breach-of-lease claims. Tenant did not renew the lease per the express provision of the document. Therefore, tenant was a holdover tenant on a month-to-month term. Landlord failed to show that tenant breached the lease. The court did not err by striking parts of an affidavit that were not based on personal knowledge and amounted to legal conclusions. A promissory estoppel claim will necessarily fail when there is an enforceable contract between the parties.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -99,9 +113,11 @@ "date_filed_is_approximate": false, "docket_numbers": "108333", "judges": "Kilbane", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4523", - "summaries": "App.R. 26(B) application to reopen ineffective assistance of appellate counsel timeliness good cause lack of library resources failure of counsel to send opinion. The court denied an App.R. 26(B) application to reopen as untimely. The failure of an attorney to send a copy of the opinion and the lack of library resources do not state good cause for an untimely filing.", - "case_name_shorts": "" + "summaries": "App.R. 26(B) application to reopen; ineffective assistance of appellate counsel; timeliness; good cause; lack of library resources; failure of counsel to send opinion. The court denied an App.R. 26(B) application to reopen as untimely. The failure of an attorney to send a copy of the opinion and the lack of library resources do not state good cause for an untimely filing.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -112,9 +128,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110391", "judges": "Laster Mays", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4431", "summaries": "Motion for leave to file a motion for a new trial. The trial court erred when it denied the appellant's motion for leave to file a motion for a new trial without an evidentiary hearing because the appellant demonstrated that he was unavoidably prevented from discovering the potential violation during trial and the 120 days following.", - "case_name_shorts": "Thompson" + "case_name_shorts": "Thompson", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -125,9 +143,11 @@ "date_filed_is_approximate": false, "docket_numbers": "109633", "judges": "Groves", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4434", - "summaries": "Manifest weight of the evidence rape Evid.R. 404(B) other acts evidence propensity prejudice admissibility jury instruction ineffective assistance of counsel plain error. Testimony of victim is sufficient, if believed, to support conviction of rape. However, where multiple witnesses corroborate different aspects of witnesses' testimony, appellate court cannot find that convictions were against the manifest weight of the evidence. Further, trial court erred in admitting the testimony of appellant's ex-girlfriend as to his sexual activity where the evidence did not go to modus operandi or plan. Other acts evidence is inadmissible unless it is a) relevant to the nonpropensity purpose for which it is being introduced b) admitted to prove/supporting an issue that is actually in dispute in the case at hand and c) there is evidence that i) the act occurred and ii) the defendant committed the act. Whether the probative value of the other acts evidence outweighs the prejudicial effect of the evidence only becomes an issue if the evidence survives this initial threshold of admissibility. However, the admission of the evidence was harmless beyond a reasonable doubt, where the remaining evidence was strong and there was no reason to believe that the evidence was so bizarre or abhorrent that it caused the jury to convict based on their judgment of the defendant's character rather than weighing the evidence. When other acts are properly admitted, trial courts should introduce a limiting instruction to explain to the jury the permitted use of the evidence. However, a trial court is not required to give the instruction, because there may be strategic reasons that appellant has not requested an instruction. Counsel's failure to request limiting instruction is not ineffective assistance of counsel when trial strategy was to question the credibility of the victim and requesting a limiting instruction would have unnecessarily focused the jury on the other acts evidence possibly to appellant's detriment.", - "case_name_shorts": "Marshall" + "summaries": "Manifest weight of the evidence; rape; Evid.R. 404(B); other acts evidence; propensity; prejudice; admissibility; jury instruction; ineffective assistance of counsel; plain error. Testimony of victim is sufficient, if believed, to support conviction of rape. However, where multiple witnesses corroborate different aspects of witnesses' testimony, appellate court cannot find that convictions were against the manifest weight of the evidence. Further, trial court erred in admitting the testimony of appellant's ex-girlfriend as to his sexual activity where the evidence did not go to modus operandi or plan. Other acts evidence is inadmissible unless it is a) relevant to the nonpropensity purpose for which it is being introduced; b) admitted to prove/supporting an issue that is actually in dispute in the case at hand; and c) there is evidence that i) the act occurred and ii) the defendant committed the act. Whether the probative value of the other acts evidence outweighs the prejudicial effect of the evidence only becomes an issue if the evidence survives this initial threshold of admissibility. However, the admission of the evidence was harmless beyond a reasonable doubt, where the remaining evidence was strong and there was no reason to believe that the evidence was so bizarre or abhorrent that it caused the jury to convict based on their judgment of the defendant's character rather than weighing the evidence. When other acts are properly admitted, trial courts should introduce a limiting instruction to explain to the jury the permitted use of the evidence. However, a trial court is not required to give the instruction, because there may be strategic reasons that appellant has not requested an instruction. Counsel's failure to request limiting instruction is not ineffective assistance of counsel when trial strategy was to question the credibility of the victim and requesting a limiting instruction would have unnecessarily focused the jury on the other acts evidence possibly to appellant's detriment.", + "case_name_shorts": "Marshall", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -138,9 +158,11 @@ "date_filed_is_approximate": false, "docket_numbers": "109699", "judges": "E.T. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4435", - "summaries": "New trial exculpatory material suppressed due process undermine reasonable probability discovery remand perjury testimony. The trial court did not err by expanding the scope of the hearing on remand. In addition, there is no evidence that the state knowingly presented false testimony. However, because the state failed to disclose material, exculpatory evidence in advance of Buehner's trial, due process requires a new trial.", - "case_name_shorts": "Buehner" + "summaries": "New trial; exculpatory; material; suppressed; due process; undermine; reasonable probability; discovery; remand; perjury; testimony. The trial court did not err by expanding the scope of the hearing on remand. In addition, there is no evidence that the state knowingly presented false testimony. However, because the state failed to disclose material, exculpatory evidence in advance of Buehner's trial, due process requires a new trial.", + "case_name_shorts": "Buehner", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -151,9 +173,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110132", "judges": "Laster Mays", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4428", - "summaries": "R.C. 2953.31 eligible offender offense of violence. The trial court erred in determining that the appellee was an eligible offender under R.C. 2953.31(a)(1), where the appellee was statutorily barred from being designated as an eligible offender. The appellee had been convicted of an offense of violence that bars the appellee from sealing their record of convictions.", - "case_name_shorts": "A.G." + "summaries": "R.C. 2953.31; eligible offender; offense of violence. The trial court erred in determining that the appellee was an eligible offender under R.C. 2953.31(a)(1), where the appellee was statutorily barred from being designated as an eligible offender. The appellee had been convicted of an offense of violence that bars the appellee from sealing their record of convictions.", + "case_name_shorts": "A.G.", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -164,9 +188,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110296", "judges": "Sheehan", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4430", - "summaries": "Magistrate decision Crim.R. 19(D) presentence motion to withdraw plea Crim.R. 32.1. Appellant was convicted of misdemeanor assault and criminal damaging after appearing pro se before a magistrate. The magistrate's order accepting appellant's plea and recommending sentence did not conform to Crim.R. 19(D). Before the trial court adopted the magistrate's order, appellant filed a presentence motion to vacate his plea pursuant to Crim.R. 32.1. The trial court did not hold a hearing on that motion and thereafter adopted the magistrate's decision. The convictions for misdemeanor assault and criminal damaging are vacated, and the case remanded to allow appellant leave to file objections to the magistrate's decision accepting his plea and recommending sentence and for the trial court to conduct a hearing on the presentence motion to vacate his plea.", - "case_name_shorts": "Parma" + "summaries": "Magistrate decision; Crim.R. 19(D); presentence motion to withdraw plea; Crim.R. 32.1. Appellant was convicted of misdemeanor assault and criminal damaging after appearing pro se before a magistrate. The magistrate's order accepting appellant's plea and recommending sentence did not conform to Crim.R. 19(D). Before the trial court adopted the magistrate's order, appellant filed a presentence motion to vacate his plea pursuant to Crim.R. 32.1. The trial court did not hold a hearing on that motion and thereafter adopted the magistrate's decision. The convictions for misdemeanor assault and criminal damaging are vacated, and the case remanded to allow appellant leave to file objections to the magistrate's decision accepting his plea and recommending sentence and for the trial court to conduct a hearing on the presentence motion to vacate his plea.", + "case_name_shorts": "Parma", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -177,9 +203,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110095", "judges": "Groves", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4426", - "summaries": "Community control sanctions restriction on parental visitation denial of motion to modify condition scope of appeal res judicate. Appellant timely filed a notice of appeal from an October 14, 2020 judgment denying his motion to modify the condition of community control that restricted visitation with his minor daughter to a specific location. However, the thrust of appellant's sole assignment of error is that the trial court violated his right to due process by imposing a condition of community control that restricted his visitation with his minor daughter. Because the sole assignment of error pertains to a purported due process violation that predates the October 14, 2020 order denying appellant's motion to modify the specific community control condition, the issue is outside the scope of the instant appeal. Further, because appellant's core argument, in the present appeal, pertains to a purported due process violation flowing from the December 2019 imposition of the condition in his sentence, it is now untimely and barred by the doctrine of res judicata. It is well established that res judicata bars the consideration of issues that could have been raised on direct appeal.", - "case_name_shorts": "Sabetta" + "summaries": "Community control sanctions; restriction on parental visitation; denial of motion to modify condition; scope of appeal; res judicate. Appellant timely filed a notice of appeal from an October 14, 2020 judgment denying his motion to modify the condition of community control that restricted visitation with his minor daughter to a specific location. However, the thrust of appellant's sole assignment of error is that the trial court violated his right to due process by imposing a condition of community control that restricted his visitation with his minor daughter. Because the sole assignment of error pertains to a purported due process violation that predates the October 14, 2020 order denying appellant's motion to modify the specific community control condition, the issue is outside the scope of the instant appeal. Further, because appellant's core argument, in the present appeal, pertains to a purported due process violation flowing from the December 2019 imposition of the condition in his sentence, it is now untimely and barred by the doctrine of res judicata. It is well established that res judicata bars the consideration of issues that could have been raised on direct appeal.", + "case_name_shorts": "Sabetta", + "per_curiam": false }, { "case_dates": "2021-12-16", @@ -190,9 +218,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110173", "judges": "Laster Mays", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4429", - "summaries": "Civ.R. 56 summary judgment res judicata issue preclusion collateral estoppel pro se party failure to state cognizable tort claims. The trial court's finding that the appellant's claims are barred by the doctrine of res judicata, issue preclusion, and collateral estoppel are in error. However, the pro se appellant failed to set forth cognizable tort claims under Ohio law. Thus, albeit on other grounds, the trial court properly granted summary judgment and dismissed the complaint.", - "case_name_shorts": "Addleman" + "summaries": "Civ.R. 56; summary judgment; res judicata; issue preclusion; collateral estoppel; pro se party; failure to state cognizable tort claims. The trial court's finding that the appellant's claims are barred by the doctrine of res judicata, issue preclusion, and collateral estoppel are in error. However, the pro se appellant failed to set forth cognizable tort claims under Ohio law. Thus, albeit on other grounds, the trial court properly granted summary judgment and dismissed the complaint.", + "case_name_shorts": "Addleman", + "per_curiam": false }, { "case_dates": "2021-12-14", @@ -203,9 +233,11 @@ "date_filed_is_approximate": false, "docket_numbers": "111093", "judges": "Boyle", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4433", - "summaries": "Mandamus Public Records Act Records Commission R.C. 149.39 R.C. 149.381 Ohio History Connection wrongful destruction of public records subject-matter jurisdiction Civ.R. 12(B)(1) R.C. 149.351 private right of action injunctive relief forfeiture statutory damages. Relator's complaint for writ of mandamus was sua sponte dismissed where R.C. 149.351 provides the exclusive remedy for claims for improper destruction or threatened destruction of public records is to file an action in a common pleas court. Accordingly, this court lacked subject-matter jurisdiction over these claims. Even if subject-matter jurisdiction existed, the complaint must still be dismissed because R.C. 149.351 provides an adequate remedy at law, precluding relief in mandamus.", - "case_name_shorts": "King" + "summaries": "Mandamus; Public Records Act; Records Commission; R.C. 149.39; R.C. 149.381; Ohio History Connection; wrongful destruction of public records; subject-matter jurisdiction; Civ.R. 12(B)(1); R.C. 149.351; private right of action; injunctive relief; forfeiture; statutory damages. Relator's complaint for writ of mandamus was sua sponte dismissed where R.C. 149.351 provides the exclusive remedy for claims for improper destruction or threatened destruction of public records is to file an action in a common pleas court. Accordingly, this court lacked subject-matter jurisdiction over these claims. Even if subject-matter jurisdiction existed, the complaint must still be dismissed because R.C. 149.351 provides an adequate remedy at law, precluding relief in mandamus.", + "case_name_shorts": "King", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -216,9 +248,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110117", "judges": "Sheehan", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4427", - "summaries": "App.R. 26(B) application for reopening ineffective assistance of counsel colorable claim argument in support defective indictment defective bill of particulars speedy trial App.R. 26(B)(2)(d) lack of affidavit. The application for reopening was denied where it did not include any argument in support of the proposed assignments of error and did not include an affidavit required by App.R. 26(B)(2)(d) attesting to the verity of the claims.", - "case_name_shorts": "Wachee" + "summaries": "App.R. 26(B); application for reopening; ineffective assistance of counsel; colorable claim; argument in support; defective indictment; defective bill of particulars; speedy trial; App.R. 26(B)(2)(d); lack of affidavit. The application for reopening was denied where it did not include any argument in support of the proposed assignments of error and did not include an affidavit required by App.R. 26(B)(2)(d) attesting to the verity of the claims.", + "case_name_shorts": "Wachee", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -229,9 +263,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110865", "judges": "Mays", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4432", - "summaries": "Writ of mandamus Public Records Act R.C. 149.43 Sup.R. 47 Sup.R. 44 R.C. 2969.25 incarcerated individual strict compliance affidavit of prior civil actions. The request for writ of mandamus directing respondent clerk of courts to release certain administrative and case records and for statutory damages was denied where the affidavit of prior civil actions failed to strictly comply with the requirements in R.C. 2969.25(A).", - "case_name_shorts": "Byrd" + "summaries": "Writ of mandamus; Public Records Act; R.C. 149.43; Sup.R. 47; Sup.R. 44; R.C. 2969.25; incarcerated individual; strict compliance; affidavit of prior civil actions. The request for writ of mandamus directing respondent clerk of courts to release certain administrative and case records and for statutory damages was denied where the affidavit of prior civil actions failed to strictly comply with the requirements in R.C. 2969.25(A).", + "case_name_shorts": "Byrd", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -242,9 +278,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110137", "judges": "S. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4309", - "summaries": "Frivolous conduct R.C. 2323.51 abuse of discretion. The trial court did not abuse its discretion in denying a motion for sanctions filed under R.C. 2323.51 because there were colorable claims for relief advanced in the complaint.", - "case_name_shorts": "Sworak" + "summaries": "Frivolous conduct; R.C. 2323.51; abuse of discretion. The trial court did not abuse its discretion in denying a motion for sanctions filed under R.C. 2323.51 because there were colorable claims for relief advanced in the complaint.", + "case_name_shorts": "Sworak", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -255,9 +293,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110621", "judges": "Celebrezze", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4320", - "summaries": "Bond bail revocation R.C. 2937.222 hearing felonious assault robbery clear and convincing evidence burden of proof findings standard of review substantial risk serious physical harm conditions of release abuse of discretion. The trial court erred in revoking appellant's bail and denying appellant's request for release. The state failed to meet its burden of proof under R.C. 2937.222(A). The trial court's findings under R.C. 2937.222(B) are not clearly supported by the record. The trial court's judgment revoking appellant's bond and denying appellant's request for release is vacated, and the matter is remanded to the trial court for the purpose of reinstating appellant's bond and ordering appellant's immediate release.", - "case_name_shorts": "" + "summaries": "Bond; bail; revocation; R.C. 2937.222; hearing; felonious assault; robbery; clear and convincing evidence; burden of proof; findings; standard of review; substantial risk; serious physical harm; conditions of release; abuse of discretion. The trial court erred in revoking appellant's bail and denying appellant's request for release. The state failed to meet its burden of proof under R.C. 2937.222(A). The trial court's findings under R.C. 2937.222(B) are not clearly supported by the record. The trial court's judgment revoking appellant's bond and denying appellant's request for release is vacated, and the matter is remanded to the trial court for the purpose of reinstating appellant's bond and ordering appellant's immediate release.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -268,9 +308,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110388", "judges": "Kilbane", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4312", - "summaries": "Felonious assault R.C. 2903.11(A)(1) R.C. 2903.11(A)(2) deadly weapon self-defense sufficiency of the evidence manifest weight of the evidence credibility. The trial court did not err in finding that the defendant was not acting in self-defense where defendant was at fault in creating the situation giving rise to the affray in which force was used. Defendant's convictions were supported by sufficient evidence and were not against the manifest weight of the evidence.", - "case_name_shorts": "Grayson" + "summaries": "Felonious assault; R.C. 2903.11(A)(1); R.C. 2903.11(A)(2); deadly weapon; self-defense; sufficiency of the evidence; manifest weight of the evidence; credibility. The trial court did not err in finding that the defendant was not acting in self-defense where defendant was at fault in creating the situation giving rise to the affray in which force was used. Defendant's convictions were supported by sufficient evidence and were not against the manifest weight of the evidence.", + "case_name_shorts": "Grayson", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -281,9 +323,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110342, 110498, 110499", "judges": "S. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4311", - "summaries": "Rape kidnapping felonious assault aggravated burglary aggravated robbery grand theft 2953.08(D)(1) jointly recommended agreed sentencing range appeal allied offenses R.C. 2941.25 plain error reasonable probability dissimilar import conduct animus harm. Although there was an agreed sentence, because the plea agreement was silent on allied offenses, appellant was not precluded by R.C. 2953.08(D)(1) from raising an allied-offense challenge on appeal. Appellant failed to demonstrate any reasonable probability that his convictions are allied offenses of similar import. Because plain error was not shown, the judgments of the trial court were affirmed.", - "case_name_shorts": "Brown" + "summaries": "Rape; kidnapping; felonious assault; aggravated burglary; aggravated robbery; grand theft; 2953.08(D)(1); jointly recommended; agreed sentencing range; appeal; allied offenses; R.C. 2941.25; plain error; reasonable probability; dissimilar import; conduct; animus; harm. Although there was an agreed sentence, because the plea agreement was silent on allied offenses, appellant was not precluded by R.C. 2953.08(D)(1) from raising an allied-offense challenge on appeal. Appellant failed to demonstrate any reasonable probability that his convictions are allied offenses of similar import. Because plain error was not shown, the judgments of the trial court were affirmed.", + "case_name_shorts": "Brown", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -294,9 +338,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110490", "judges": "Boyle", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4317", - "summaries": "Motion for leave to file delayed motion for new trial Crim.R. 33(B) unavoidably prevented from discovering new evidence motion to retest fingerprint evidence res judicata. The trial court did not err by denying without an evidentiary hearing the defendant's motion for leave to file a delayed motion for a new trial because he did not clearly and convincingly demonstrate that he was unavoidably prevented from timely discovering the evidence on which he relied for his motion. The trial court also did not err by denying the defendant's motion to retest fingerprint evidence because he should have raised the issue in his direct appeal, he filed a previous postconviction petition on this basis, and his argument is barred by the doctrine of res judicata.", - "case_name_shorts": "Briscoe" + "summaries": "Motion for leave to file delayed motion for new trial; Crim.R. 33(B); unavoidably prevented from discovering new evidence; motion to retest fingerprint evidence; res judicata. The trial court did not err by denying without an evidentiary hearing the defendant's motion for leave to file a delayed motion for a new trial because he did not clearly and convincingly demonstrate that he was unavoidably prevented from timely discovering the evidence on which he relied for his motion. The trial court also did not err by denying the defendant's motion to retest fingerprint evidence because he should have raised the issue in his direct appeal, he filed a previous postconviction petition on this basis, and his argument is barred by the doctrine of res judicata.", + "case_name_shorts": "Briscoe", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -307,9 +353,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110624", "judges": "E.T. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4303", - "summaries": "Void voidable postconviction sentence jurisdiction untimely. Because the trial court lacked jurisdiction to consider the defendant's untimely and successive petition for postconviction relief, the court did not err by summarily denying the defendant's motion to correct his sentence.", - "case_name_shorts": "Ali" + "summaries": "Void; voidable; postconviction; sentence; jurisdiction; untimely. Because the trial court lacked jurisdiction to consider the defendant's untimely and successive petition for postconviction relief, the court did not err by summarily denying the defendant's motion to correct his sentence.", + "case_name_shorts": "Ali", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -320,9 +368,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110401", "judges": "Boyle", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4314", - "summaries": "Commercial driver's license Public Utilities Commission of Ohio Bureau of Motor Vehicles Registrar of Motor Vehicles R.C. 119.12 appeal of an administrative order in accordance with the law 49 C.F.R. 392.82(a)(1) use of handheld mobile telephone while operating a commercial motor vehicle R.C. 4923.99 civil forfeiture regulatory fine R.C. 4511.33 Mich.Comp.Laws Ann. 257.642(1) marked lane statute R.C. 4506.01(F) conviction R.C. 4506.01(II) serious traffic violation substantially similar R.C. 4506.16(D) disqualification of commercial driver's license. The Ohio Bureau of Motor Vehicles Registrar's decision to disqualify appellant's commercial driver's license for 60 days was in accordance with the law and is affirmed. Pursuant to R.C. 4506.16(D)(5)(a), the Registrar shall disqualify a commercial driver for 60 days upon conviction of two serious traffic violations that arise from separate incidents while driving a commercial motor vehicle and that occur within a three-year period. Appellant's December 2018 payment of a civil forfeiture to the Public Utilities Commission of Ohio for violation of 49 C.F.R. 392.82(a)(1), use of a handheld mobile telephone while operating a commercial motor vehicle, constituted a conviction under R.C. 4506.01(F) and the first of two serious traffic violations under R.C. 4506.01(II). Appellant's December 2018 citation for improper lane use in violation of Mich.Comp.Laws Ann. 257.642(1), Michigan's marked lane statute, is substantially similar to a violation of R.C. 4511.33, Ohio's marked lane statute, and constituted the second serious traffic violation under R.C. 4506.01(II).", - "case_name_shorts": "Reed" + "summaries": "Commercial driver's license; Public Utilities Commission of Ohio; Bureau of Motor Vehicles; Registrar of Motor Vehicles; R.C. 119.12; appeal of an administrative order; in accordance with the law; 49 C.F.R. 392.82(a)(1); use of handheld mobile telephone while operating a commercial motor vehicle; R.C. 4923.99; civil forfeiture; regulatory fine; R.C. 4511.33; Mich.Comp.Laws Ann. 257.642(1); marked lane statute; R.C. 4506.01(F); conviction; R.C. 4506.01(II); serious traffic violation; substantially similar; R.C. 4506.16(D); disqualification of commercial driver's license. The Ohio Bureau of Motor Vehicles Registrar's decision to disqualify appellant's commercial driver's license for 60 days was in accordance with the law and is affirmed. Pursuant to R.C. 4506.16(D)(5)(a), the Registrar shall disqualify a commercial driver for 60 days upon conviction of two serious traffic violations that arise from separate incidents while driving a commercial motor vehicle and that occur within a three-year period. Appellant's December 2018 payment of a civil forfeiture to the Public Utilities Commission of Ohio for violation of 49 C.F.R. 392.82(a)(1), use of a handheld mobile telephone while operating a commercial motor vehicle, constituted a conviction under R.C. 4506.01(F) and the first of two serious traffic violations under R.C. 4506.01(II). Appellant's December 2018 citation for improper lane use in violation of Mich.Comp.Laws Ann. 257.642(1), Michigan's marked lane statute, is substantially similar to a violation of R.C. 4511.33, Ohio's marked lane statute, and constituted the second serious traffic violation under R.C. 4506.01(II).", + "case_name_shorts": "Reed", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -333,9 +383,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110403", "judges": "E.T. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4315", - "summaries": "Unemployment benefits just cause quit. The Ohio Unemployment Compensation Review Commission properly denied appellant's claim for unemployment benefits where the evidence showed that he quit his employment without just cause.", - "case_name_shorts": "Pryor" + "summaries": "Unemployment benefits; just cause; quit. The Ohio Unemployment Compensation Review Commission properly denied appellant's claim for unemployment benefits where the evidence showed that he quit his employment without just cause.", + "case_name_shorts": "Pryor", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -346,9 +398,11 @@ "date_filed_is_approximate": false, "docket_numbers": "109584", "judges": "Groves", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4308", - "summaries": "Real estate purchase agreement agreement to agree formation of contract essential terms and/or material terms meeting of the minds grant of summary judgment to nonmoving party breach of contract. The trial court granted appellee's motion for summary judgment and denied the appellant's motion for summary judgment, and the appellant appealed. Where parties sign a preliminary agreement that expressly calls for the execution of a subsequent agreement, a question arises as to whether a completely integrated contract exists. When determining whether a complete integration exists, the trial court was permitted to all relevant evidence in order to make its determination. Similarly, the appellate court reviews de novo the existence of a contract. On review, the appellate court, therefore, was permitted to examine all the evidence to determine whether an integrated contract was created. Where subsequent agreement contained essential terms of the contract, appellees were required to agree to its terms before contract formation could be found to have occurred. Therefore, the parties failed to come to a meeting of the minds when they could not agree to the terms of the subsequent agreement. Even though this court disagrees with the trial court's finding that a contract existed, summary judgment was appropriate for appellees where appellant failed to establish the existence of contract.", - "case_name_shorts": "Sanders" + "summaries": "Real estate purchase agreement; agreement to agree; formation of contract; essential terms and/or material terms; meeting of the minds; grant of summary judgment to nonmoving party; breach of contract. The trial court granted appellee's motion for summary judgment and denied the appellant's motion for summary judgment, and the appellant appealed. Where parties sign a preliminary agreement that expressly calls for the execution of a subsequent agreement, a question arises as to whether a completely integrated contract exists. When determining whether a complete integration exists, the trial court was permitted to all relevant evidence in order to make its determination. Similarly, the appellate court reviews de novo the existence of a contract. On review, the appellate court, therefore, was permitted to examine all the evidence to determine whether an integrated contract was created. Where subsequent agreement contained essential terms of the contract, appellees were required to agree to its terms before contract formation could be found to have occurred. Therefore, the parties failed to come to a meeting of the minds when they could not agree to the terms of the subsequent agreement. Even though this court disagrees with the trial court's finding that a contract existed, summary judgment was appropriate for appellees where appellant failed to establish the existence of contract.", + "case_name_shorts": "Sanders", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -359,9 +413,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110524", "judges": "Brogan", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4318", - "summaries": "Civ.R. 12(B)(6)/motion to dismiss R.C. 121.22/Ohio's Open Meetings Act public body executive session. Where the task force members were determined to be public officials, the city, under the permitted exception found in R.C. 121.22(G)(1), was permitted to discuss the addition of potential new members to the task force in executive session.", - "case_name_shorts": "Kanter" + "summaries": "Civ.R. 12(B)(6)/motion to dismiss; R.C. 121.22/Ohio's Open Meetings Act; public body; executive session. Where the task force members were determined to be public officials, the city, under the permitted exception found in R.C. 121.22(G)(1), was permitted to discuss the addition of potential new members to the task force in executive session.", + "case_name_shorts": "Kanter", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -372,9 +428,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110262", "judges": "Boyle", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4310", - "summaries": "Summary judgment Civ.R. 56 residential lease lease term holdover tenancy breach of contract payment of utilities Cleveland Codified Ordinances 375.05 security deposit R.C. 5321.16(B) and (C) motion to compel discovery motion for continuance to oppose summary judgment motion to amend answer. The residential tenant is liable for damages for the eleven days she remained in the apartment beyond the lease term. The landlord did not violate Cleveland Codified Ordinances 375.05 by charging the tenant for water and electricity. The landlord is liable for double damages pursuant to R.C. 5321.16(C) for failing to return the tenant's security deposit under one lease but properly withheld her second security deposit under a separate lease. The trial court did not abuse its discretion in denying the tenant's motions to compel discovery, for a continuance, and to amend her answer.", - "case_name_shorts": "Jones" + "summaries": "Summary judgment; Civ.R. 56; residential lease; lease term; holdover tenancy; breach of contract; payment of utilities; Cleveland Codified Ordinances 375.05; security deposit; R.C. 5321.16(B) and (C); motion to compel discovery; motion for continuance to oppose summary judgment; motion to amend answer. The residential tenant is liable for damages for the eleven days she remained in the apartment beyond the lease term. The landlord did not violate Cleveland Codified Ordinances 375.05 by charging the tenant for water and electricity. The landlord is liable for double damages pursuant to R.C. 5321.16(C) for failing to return the tenant's security deposit under one lease but properly withheld her second security deposit under a separate lease. The trial court did not abuse its discretion in denying the tenant's motions to compel discovery, for a continuance, and to amend her answer.", + "case_name_shorts": "Jones", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -385,9 +443,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110662", "judges": "E.A. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4305", - "summaries": "Best interest of the child R.C. 2151.414 ineffective assistance of counsel. The trial court did not err in determining that the two-year period of temporary custody could not be extended. Further, the trial court did not err in determining that the Mother had a chemical dependency so severe that she was unable to provide an adequate, permanent home. Finally, there was no evidence of any appropriate alternative placement for the children. As a result, Mother could not show that the trial court erred by granting permanent custody to the Agency or that the Mother's counsel was constitutionally ineffective.", - "case_name_shorts": "In re R.D.W." + "summaries": "Best interest of the child; R.C. 2151.414; ineffective assistance of counsel. The trial court did not err in determining that the two-year period of temporary custody could not be extended. Further, the trial court did not err in determining that the Mother had a chemical dependency so severe that she was unable to provide an adequate, permanent home. Finally, there was no evidence of any appropriate alternative placement for the children. As a result, Mother could not show that the trial court erred by granting permanent custody to the Agency or that the Mother's counsel was constitutionally ineffective.", + "case_name_shorts": "In re R.D.W.", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -398,9 +458,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110661", "judges": "E.T. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4304", - "summaries": "Permanent custody substance abuse anger management parenting best interest remedy case plan abuse of discretion termination parental rights clear and convincing evidence. The juvenile court did not err by awarding permanent custody of the father's children to Cuyahoga County Division of Children and Family Services because the juvenile court properly engaged in the two-prong analysis prescribed by R.C. 2151.414 and clear and convincing evidence supported the court's decision granting permanent custody of the child to the agency.", - "case_name_shorts": "In re R.D.W." + "summaries": "Permanent custody; substance abuse; anger management; parenting; best interest; remedy; case plan; abuse of discretion; termination; parental rights; clear and convincing evidence. The juvenile court did not err by awarding permanent custody of the father's children to Cuyahoga County Division of Children and Family Services because the juvenile court properly engaged in the two-prong analysis prescribed by R.C. 2151.414 and clear and convincing evidence supported the court's decision granting permanent custody of the child to the agency.", + "case_name_shorts": "In re R.D.W.", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -411,9 +473,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110394", "judges": "S. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4313", - "summaries": "Serious youth offender invocation of stayed sentence R.C. 2152.14 ineffective assistance of counsel public hearing postrelease control. The trial court did not err by invoking the serious youth offender dispositional sentence upon the appellant's commission of felony weapons charges while on parole from his indefinite term of custody at a Ohio Department of Youth Services facility, and the appellant failed to demonstrate any prejudice to satisfy the second prong of the ineffective assistance of counsel inquiry based on his attorney's conduct at the adult sentencing invocation hearing. Appellant's remaining claims regarding the right to a public hearing, proper imposition of postrelease control and challenges to the pleading requirement are also without merit.", - "case_name_shorts": "In re J.C." + "summaries": "Serious youth offender; invocation of stayed sentence; R.C. 2152.14; ineffective assistance of counsel; public hearing; postrelease control. The trial court did not err by invoking the serious youth offender dispositional sentence upon the appellant's commission of felony weapons charges while on parole from his indefinite term of custody at a Ohio Department of Youth Services facility, and the appellant failed to demonstrate any prejudice to satisfy the second prong of the ineffective assistance of counsel inquiry based on his attorney's conduct at the adult sentencing invocation hearing. Appellant's remaining claims regarding the right to a public hearing, proper imposition of postrelease control and challenges to the pleading requirement are also without merit.", + "case_name_shorts": "In re J.C.", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -424,9 +488,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110534 & 110535", "judges": "Sheehan", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4319", - "summaries": "Permanent custody R.C. 2151.414, best interest of child, R.C. 2151.414(D) guardian ad litem recommendation child's wishes in custody determination appointment of counsel. Even though the court did not have evidence of the best wishes of the children, the record reflects that the juvenile court considered the relevant statutory factors in determining the best interest of the children pursuant to R.C. 2151.414 and did not abuse its discretion in finding that permanent custody would be in the best interests of the children. There was sufficient evidence presented at the hearing to support the juvenile court's decision to grant permanent custody to CCDCFS. Further, under the circumstances of the case and where no evidence was presented that a conflict existed between the GAL's recommendation of permanent custody and the children's wishes, the juvenile court did not err by not appointing individual counsel for either or both of the children.", - "case_name_shorts": "In re B.S." + "summaries": "Permanent custody; R.C. 2151.414, best interest of child, R.C. 2151.414(D); guardian ad litem recommendation; child's wishes in custody determination; appointment of counsel. Even though the court did not have evidence of the best wishes of the children, the record reflects that the juvenile court considered the relevant statutory factors in determining the best interest of the children pursuant to R.C. 2151.414 and did not abuse its discretion in finding that permanent custody would be in the best interests of the children. There was sufficient evidence presented at the hearing to support the juvenile court's decision to grant permanent custody to CCDCFS. Further, under the circumstances of the case and where no evidence was presented that a conflict existed between the GAL's recommendation of permanent custody and the children's wishes, the juvenile court did not err by not appointing individual counsel for either or both of the children.", + "case_name_shorts": "In re B.S.", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -437,9 +503,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110689", "judges": "Celebrezze", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4306", - "summaries": "Permanent custody manifest weight App.R. 3 R.C. 2151.414 best interest abuse of discretion domestic violence. The juvenile court abused its discretion in awarding permanent custody of the child to the Cuyahoga County Division of Children and Family Services. The juvenile court's decision terminating appellant's parental rights and awarding permanent custody of the child to the agency is not supported by clear and convincing evidence in the record. Appellant either completed or had taken significant steps toward completing all of her case plan objectives. Appellant demonstrated her commitment toward the child and her willingness to provide an adequate permanent home for the child. Appellant participated in two parenting programs and demonstrated that she benefitted therefrom. There was no evidence of any contact between appellant and the child's father during the six months leading up to the permanent custody hearing, and appellant did not intend to speak to or remain involved with the child's father moving forward. The record does not contain clear and convincing evidence that permanent custody is in the child's best interest at this time. Based on appellant's failure to file a combined notice of appeal pursuant to App.R. 3(D), this court does not have jurisdiction to review the juvenile court's custody decision regarding the child's younger brother.", - "case_name_shorts": "In re A.T." + "summaries": "Permanent custody; manifest weight; App.R. 3; R.C. 2151.414; best interest; abuse of discretion; domestic violence. The juvenile court abused its discretion in awarding permanent custody of the child to the Cuyahoga County Division of Children and Family Services. The juvenile court's decision terminating appellant's parental rights and awarding permanent custody of the child to the agency is not supported by clear and convincing evidence in the record. Appellant either completed or had taken significant steps toward completing all of her case plan objectives. Appellant demonstrated her commitment toward the child and her willingness to provide an adequate permanent home for the child. Appellant participated in two parenting programs and demonstrated that she benefitted therefrom. There was no evidence of any contact between appellant and the child's father during the six months leading up to the permanent custody hearing, and appellant did not intend to speak to or remain involved with the child's father moving forward. The record does not contain clear and convincing evidence that permanent custody is in the child's best interest at this time. Based on appellant's failure to file a combined notice of appeal pursuant to App.R. 3(D), this court does not have jurisdiction to review the juvenile court's custody decision regarding the child's younger brother.", + "case_name_shorts": "In re A.T.", + "per_curiam": false }, { "case_dates": "2021-12-09", @@ -450,9 +518,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110470", "judges": "Laster Mays", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4316", - "summaries": "Civ.R. 56 denial of summary judgment Civ.R. 36 request for admissions. The trial court's grant of summary judgment was not in error. Appellant was not entitled to summary judgment based on the co-appellee's late response to requests for admissions where the record clearly evidences genuine issues of material fact, appellant did not provide clear proof of payment of the disputed amount, and appellee filed a response to the requests that may be deemed to be a withdrawal of the untimely submissions prior to the filing of the motion for summary judgment. The trial court further determined that appellant's subsequent trial testimony directly conflicted with the admissions and declared the requests withdrawn. The purported failure of the trial court to address the request for admissions in the summary judgment entry advanced by appellant during oral argument was not presented in appellant's brief. Thus, a plain-error analysis does not apply.", - "case_name_shorts": "Besch" + "summaries": "Civ.R. 56; denial of summary judgment; Civ.R. 36; request for admissions. The trial court's grant of summary judgment was not in error. Appellant was not entitled to summary judgment based on the co-appellee's late response to requests for admissions where the record clearly evidences genuine issues of material fact, appellant did not provide clear proof of payment of the disputed amount, and appellee filed a response to the requests that may be deemed to be a withdrawal of the untimely submissions prior to the filing of the motion for summary judgment. The trial court further determined that appellant's subsequent trial testimony directly conflicted with the admissions and declared the requests withdrawn. The purported failure of the trial court to address the request for admissions in the summary judgment entry advanced by appellant during oral argument was not presented in appellant's brief. Thus, a plain-error analysis does not apply.", + "case_name_shorts": "Besch", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -463,9 +533,11 @@ "date_filed_is_approximate": false, "docket_numbers": "109238", "judges": "E.T. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4307", "summaries": "App.R. 26(B) application to reopen, ineffective assistance of trial counsel, timeliness, and post-judgment motions. This court denied an App.R. 26(B) application to reopen as untimely. Post-judgment motions, such as a motion for reconsideration and for en banc consideration, do not toll the time for filing.", - "case_name_shorts": "Thorpe" + "case_name_shorts": "Thorpe", + "per_curiam": false }, { "case_dates": "2021-12-02", @@ -476,9 +548,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110315", "judges": "Groves", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4210", - "summaries": "Court of Claims R.C. 149.43 Ohio Public Records Act R.C. 2743.75 public record complaint alleging denial of access to public records public employee's private email account and clear and convincing evidence. Ohio's Public Records Act, codified in R.C. 149.43, provides that upon request a public office shall make copies of the requested public record available to the requester at cost and within a reasonable period of time. Ohio courts construe the public records act liberally in favor of broad access, with any doubt resolved in favor of disclosure of public records. R.C. 2743.75 provides an expeditious and economical procedure that attempts to resolve disputes alleging a denial of access to public records. A requester must establish entitlement to relief in an action filed in the Court of Claims under R.C. 2743.75 by clear and convincing evidence. In the specific context of public-records-access appeals filed pursuant to R.C. 2743.75(G)(1), Ohio's courts of appeals have applied the standard of appellate review applicable to such mixed questions of law and fact, reviewing the application of a claimed exemption de novo while according due deference to the trial court's factual determinations. Appellant argues that the Court of Claims erred when it dismissed his complaint and specifically contends that the Court of Claims should have ordered the prosecutor's office to conduct an in camera search of a former assistant prosecutor's private email account to uncover email communications appellant believes exists between the former employee and a government witness. However, although an email message in a public office account readily satisfies the first two prongs of the definition of \"record\" in R.C. 149.011(G), as a \"document, device, or item,\" that is \"created or received by or coming under the jurisdiction\" of the office, the emails appellant sought did not meet the third prong of the definition. The sought-after email would have satisfied the definition of a record if the served to \"document the organization, functions, policies, decisions, procedures, operations, or other activities of the public office.\" The prosecutor's office produced 572 pages of email communications, from its email server, responsive to appellant's Request No. 3 and advised appellant that it had no records that were responsive to Request Nos. 1 and 2. In the motion to dismiss, the prosecutor's office attached the affidavit of its former employee, who averred that he had not conducted any business of the prosecutor's office with the email address provided by his then employer and that he had no emails related to his duties as an assistant prosecutor on his personal Yahoo email account. The former employee specifically averred that he searched his private email account, using the criteria appellant provided, but uncovered no emails that relate to any case or matter involving the prosecutor's office or to his employment or duties with that office. A public office has no duty to provide records that do not exist, or that it does not possess. In the absence of evidence to the contrary, the prosecutor's office may be presumed to have performed its duties including public records identification and retrieval regularly and in a lawful manner. After our review, we conclude that appellant failed to meet his burden under R.C. 2743.75 by clear and convincing evidence that sought-after records exist on the former employee's private email account. As such, the Court of Claims did not err when it dismissed appellant's complaint.", - "case_name_shorts": "Viola" + "summaries": "Court of Claims; R.C. 149.43; Ohio Public Records Act; R.C. 2743.75; public record; complaint alleging denial of access to public records; public employee's private email account; and clear and convincing evidence. Ohio's Public Records Act, codified in R.C. 149.43, provides that upon request a public office shall make copies of the requested public record available to the requester at cost and within a reasonable period of time. Ohio courts construe the public records act liberally in favor of broad access, with any doubt resolved in favor of disclosure of public records. R.C. 2743.75 provides an expeditious and economical procedure that attempts to resolve disputes alleging a denial of access to public records. A requester must establish entitlement to relief in an action filed in the Court of Claims under R.C. 2743.75 by clear and convincing evidence. In the specific context of public-records-access appeals filed pursuant to R.C. 2743.75(G)(1), Ohio's courts of appeals have applied the standard of appellate review applicable to such mixed questions of law and fact, reviewing the application of a claimed exemption de novo while according due deference to the trial court's factual determinations. Appellant argues that the Court of Claims erred when it dismissed his complaint and specifically contends that the Court of Claims should have ordered the prosecutor's office to conduct an in camera search of a former assistant prosecutor's private email account to uncover email communications appellant believes exists between the former employee and a government witness. However, although an email message in a public office account readily satisfies the first two prongs of the definition of \"record\" in R.C. 149.011(G), as a \"document, device, or item,\" that is \"created or received by or coming under the jurisdiction\" of the office, the emails appellant sought did not meet the third prong of the definition. The sought-after email would have satisfied the definition of a record if the served to \"document the organization, functions, policies, decisions, procedures, operations, or other activities of the public office.\" The prosecutor's office produced 572 pages of email communications, from its email server, responsive to appellant's Request No. 3 and advised appellant that it had no records that were responsive to Request Nos. 1 and 2. In the motion to dismiss, the prosecutor's office attached the affidavit of its former employee, who averred that he had not conducted any business of the prosecutor's office with the email address provided by his then employer and that he had no emails related to his duties as an assistant prosecutor on his personal Yahoo email account. The former employee specifically averred that he searched his private email account, using the criteria appellant provided, but uncovered no emails that relate to any case or matter involving the prosecutor's office or to his employment or duties with that office. A public office has no duty to provide records that do not exist, or that it does not possess. In the absence of evidence to the contrary, the prosecutor's office may be presumed to have performed its duties including public records identification and retrieval regularly and in a lawful manner. After our review, we conclude that appellant failed to meet his burden under R.C. 2743.75 by clear and convincing evidence that sought-after records exist on the former employee's private email account. As such, the Court of Claims did not err when it dismissed appellant's complaint.", + "case_name_shorts": "Viola", + "per_curiam": false }, { "case_dates": "2021-12-02", @@ -489,9 +563,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110576", "judges": "Forbes", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4213", "summaries": "Court costs, res judicata, successive similar motions, R.C. 2947.23. Under R.C. 2947.23, trial courts retain jurisdiction to review or modify orders requiring offenders to pay court costs. However, appellant's argument that he should be relieved from the trial court's order requiring him to pay court costs is barred by res judicata. Appellant moved the trial court in 2018 to vacate court costs. Subsequently, appellant filed another motion in 2020 seeking to vacate court costs, asserting for the first time that the court's order went dormant in 2016, which was denied. Because appellant could have raised the dormancy argument in his 2018 motion, he is barred by res judicata from raising it in a successive similar motion in 2020.", - "case_name_shorts": "Martin" + "case_name_shorts": "Martin", + "per_curiam": false }, { "case_dates": "2021-12-02", @@ -502,9 +578,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110236", "judges": "Sheehan", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4215", - "summaries": "Construction contract subcontractor arbitration motion to stay proceedings pending arbitration motion to stay arbitration joinder. The trial court properly stayed proceedings pending arbitration pursuant to the arbitration agreement between a property owner and a general contractor. Where the general contractor and the subcontractor had also entered into an arbitration agreement, the question regarding whether the general contractor could join the subcontractor in the arbitration between the property owner and the general contractor is a procedural matter left to the arbitrator.", - "case_name_shorts": "" + "summaries": "Construction contract; subcontractor; arbitration; motion to stay proceedings pending arbitration; motion to stay arbitration; joinder. The trial court properly stayed proceedings pending arbitration pursuant to the arbitration agreement between a property owner and a general contractor. Where the general contractor and the subcontractor had also entered into an arbitration agreement, the question regarding whether the general contractor could join the subcontractor in the arbitration between the property owner and the general contractor is a procedural matter left to the arbitrator.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-02", @@ -515,9 +593,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110267", "judges": "S. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4216", - "summaries": "Landlord tenant nondelegable duty R.C. Chapter 5321 inherently dangerous assisted living facility R.C. Chapter 3721. The trial court did not err in granting summary judgment because the defendants delegated their duty to wax a floor to an independent contractor and none of the exceptions under the nondelegable duty doctrine imputed liability to the independent contractor's employer.", - "case_name_shorts": "Perko" + "summaries": "Landlord; tenant; nondelegable duty; R.C. Chapter 5321; inherently dangerous; assisted living facility; R.C. Chapter 3721. The trial court did not err in granting summary judgment because the defendants delegated their duty to wax a floor to an independent contractor and none of the exceptions under the nondelegable duty doctrine imputed liability to the independent contractor's employer.", + "case_name_shorts": "Perko", + "per_curiam": false }, { "case_dates": "2021-12-02", @@ -528,9 +608,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110341", "judges": "Celebrezze", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4211", - "summaries": "Motion for judgment on the pleadings insurance policy nail salon coronavirus-related business interruption losses executive order closing certain businesses due to state of emergency insurance policy's virus or bacteria exclusion. The trial court did not err in granting insurance company's motion for judgment on the pleadings because the insurance policy's virus or bacteria exclusion precluded coverage for coronavirus-related losses.", - "case_name_shorts": "" + "summaries": "Motion for judgment on the pleadings; insurance policy; nail salon; coronavirus-related business interruption losses; executive order closing certain businesses due to state of emergency; insurance policy's virus or bacteria exclusion. The trial court did not err in granting insurance company's motion for judgment on the pleadings because the insurance policy's virus or bacteria exclusion precluded coverage for coronavirus-related losses.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-02", @@ -541,9 +623,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110608", "judges": "Keough", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4214", - "summaries": "Permanent custody competent and credible evidence R.C. 2151.414 best interest.", - "case_name_shorts": "In re A.N." + "summaries": "Permanent custody; competent and credible evidence; R.C. 2151.414; best interest.", + "case_name_shorts": "In re A.N.", + "per_curiam": false }, { "case_dates": "2021-12-02", @@ -554,9 +638,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110465", "judges": "S. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4212", - "summaries": "State Employment Relations Bureau R.C. 4117.09 collective bargaining agreement discrimination statute of limitations exclusive jurisdiction. The trial court did not err in dismissing all claims based on the appellant's concession that the claims advanced in the complaint that survived the statute of limitations were under the exclusive jurisdiction of State Employment Relations Bureau.", - "case_name_shorts": "Guinn" + "summaries": "State Employment Relations Bureau; R.C. 4117.09; collective bargaining agreement; discrimination; statute of limitations; exclusive jurisdiction. The trial court did not err in dismissing all claims based on the appellant's concession that the claims advanced in the complaint that survived the statute of limitations were under the exclusive jurisdiction of State Employment Relations Bureau.", + "case_name_shorts": "Guinn", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -567,9 +653,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110412", "judges": "Sheehan", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4175", - "summaries": "Jail-time credit community control violation concurrent sentence. The trial court's decision not awarding jail-time credit is affirmed. Appellant argues that the trial court improperly denied him jail-time credit for the days he was held in Cuyahoga County Jail awaiting the disposition of a drug case. The argument lacks merit because appellant was serving time for an unrelated community control violation matter during the pretrial detention in the instant drug case.", - "case_name_shorts": "Jones" + "summaries": "Jail-time credit; community control violation; concurrent sentence. The trial court's decision not awarding jail-time credit is affirmed. Appellant argues that the trial court improperly denied him jail-time credit for the days he was held in Cuyahoga County Jail awaiting the disposition of a drug case. The argument lacks merit because appellant was serving time for an unrelated community control violation matter during the pretrial detention in the instant drug case.", + "case_name_shorts": "Jones", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -580,9 +668,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110423", "judges": "Sheehan", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4168", - "summaries": "Crim.R. 36 nunc pro tunc entry jurisdiction to correct sentence. The trial court sentenced defendant to an 18-month prison sentence in open court, but the journal entry reflecting the sentence stated the court imposed an 8-month prison sentence. After defendant fully served the 8-month sentence, as allowed by Crim.R. 36, the trial court filed a nunc pro tunc entry to correct the error in the term of the sentence. Defendant moved the trial court to vacate the nunc pro tunc entry, which motion was denied. Because the trial court was without jurisdiction to modify defendant's sentence after the defendant fully served the sentence in the original sentencing entry, the judgment of the trial court denying the motion to vacate the nunc pro tunc is reversed.", - "case_name_shorts": "Bishop" + "summaries": "Crim.R. 36; nunc pro tunc entry; jurisdiction to correct sentence. The trial court sentenced defendant to an 18-month prison sentence in open court, but the journal entry reflecting the sentence stated the court imposed an 8-month prison sentence. After defendant fully served the 8-month sentence, as allowed by Crim.R. 36, the trial court filed a nunc pro tunc entry to correct the error in the term of the sentence. Defendant moved the trial court to vacate the nunc pro tunc entry, which motion was denied. Because the trial court was without jurisdiction to modify defendant's sentence after the defendant fully served the sentence in the original sentencing entry, the judgment of the trial court denying the motion to vacate the nunc pro tunc is reversed.", + "case_name_shorts": "Bishop", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -591,11 +681,13 @@ "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "110374 110376", + "docket_numbers": "110374; 110376", "judges": "Celebrezze", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4174", - "summaries": "Civ.R. 56(C)/summary judgment Standing Uniform Commercial Code App.R. 12(A)/mootness of remaining assignments of error R.C. 1303.38/possession of instrument R.C. 1303.31(a)/person entitled to enforce lost note allonge prejudicial error commercial guarantees Civ.R. 8(C)/affirmative defenses mortgage doctrine of equitable subrogation Civ.R. 15(A)/motion for leave to amend the complaint doctrine of res judicata. Appellees sufficiently pled their defenses and it was not error where the trial court found that appellees did not waive their affirmative defenses. Appellant's argument that the trial court erred in determining that this court had not rendered judgment in its prior case had no merit where, in a prior appeal, one assignment of error was dispositive of the remaining nine assignments of error. The remaining nine assignments of error, which challenged the court's grant of summary judgment, were moot but that finding did not overturn the trial court's judgment. In its prior case, appellant failed to show that appellant was in possession of the original notes at the time the complaint was filed. The amendment to R.C. 1308.38 does not apply retroactively. In the instant case, appellant failed to attach the proper allonges to the copy of the notes. The trial court's grant of summary judgment as to the notes was proper, and the trial court did not err in its finding that appellant was unable to enforce the notes. Appellant is unable to enforce the note and is therefore unable to enforce the obligation it secures \u2014 the mortgage. Likewise, appellant is not the party entitled to enforce the notes and therefore is not a party to the guarantees and not entitled to enforce the guarantees securing the notes. Appellant, unable to enforce the notes, is not entitled to an equitable mortgage appellant did not plead mistake. The trial court's finding that equitable subrogation does not apply was proper. Appellant filed its motion to amend the complaint more than a year after the original complaint was filed and was only done so after summary judgment had been granted in appellees' favor. It was not an abuse of discretion where the trial court denied appellant's motion for leave to amend the complaint. Appellant was not deprived of a full opportunity to litigate its claims or issues in this case. A final judgment was granted in the prior case of this consolidated appeal both cases involved the same parties the claims litigated in this case were litigated in the prior case and both cases shared the same operative facts. The trial court did not err when it granted appellees' motion for summary judgment on the grounds of res judicata.", - "case_name_shorts": "" + "summaries": "Civ.R. 56(C)/summary judgment; Standing; Uniform Commercial Code; App.R. 12(A)/mootness of remaining assignments of error; R.C. 1303.38/possession of instrument; R.C. 1303.31(a)/person entitled to enforce; lost note; allonge; prejudicial error; commercial guarantees; Civ.R. 8(C)/affirmative defenses; mortgage doctrine of equitable subrogation; Civ.R. 15(A)/motion for leave to amend the complaint; doctrine of res judicata. Appellees sufficiently pled their defenses and it was not error where the trial court found that appellees did not waive their affirmative defenses. Appellant's argument that the trial court erred in determining that this court had not rendered judgment in its prior case had no merit where, in a prior appeal, one assignment of error was dispositive of the remaining nine assignments of error. The remaining nine assignments of error, which challenged the court's grant of summary judgment, were moot but that finding did not overturn the trial court's judgment. In its prior case, appellant failed to show that appellant was in possession of the original notes at the time the complaint was filed. The amendment to R.C. 1308.38 does not apply retroactively. In the instant case, appellant failed to attach the proper allonges to the copy of the notes. The trial court's grant of summary judgment as to the notes was proper, and the trial court did not err in its finding that appellant was unable to enforce the notes. Appellant is unable to enforce the note and is therefore unable to enforce the obligation it secures \u2014 the mortgage. Likewise, appellant is not the party entitled to enforce the notes and therefore is not a party to the guarantees and not entitled to enforce the guarantees securing the notes. Appellant, unable to enforce the notes, is not entitled to an equitable mortgage; appellant did not plead mistake. The trial court's finding that equitable subrogation does not apply was proper. Appellant filed its motion to amend the complaint more than a year after the original complaint was filed and was only done so after summary judgment had been granted in appellees' favor. It was not an abuse of discretion where the trial court denied appellant's motion for leave to amend the complaint. Appellant was not deprived of a full opportunity to litigate its claims or issues in this case. A final judgment was granted in the prior case of this consolidated appeal; both cases involved the same parties; the claims litigated in this case were litigated in the prior case; and both cases shared the same operative facts. The trial court did not err when it granted appellees' motion for summary judgment on the grounds of res judicata.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -606,9 +698,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110416", "judges": "S. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4167", - "summaries": "Arbitration contract agreement claims compel stay de novo amendment subsequent independent court of law complete agreement. Reversed the trial court's decision granting motions to compel arbitration and to stay the case pending arbitration, and remanded the case for further proceedings. An arbitration clause in an operating agreement executed by the parties did not apply to claims governed by a subsequent stock option agreement that did not include an arbitration clause and provided a right to bring claims arising thereunder in a court of law. Although the Operating Agreement was amended and appellant agreed to be bound by and subject to its terms, the Stock Option Agreement was an independent and complete agreement and was never amended or modified to include any dispute resolution provision or arbitration clause. The appellant did not agree to submit any claims alleged in the complaint to arbitration and could not be compelled to submit to arbitration.", - "case_name_shorts": "Stadtlander" + "summaries": "Arbitration; contract; agreement; claims; compel; stay; de novo; amendment; subsequent; independent; court of law; complete agreement. Reversed the trial court's decision granting motions to compel arbitration and to stay the case pending arbitration, and remanded the case for further proceedings. An arbitration clause in an operating agreement executed by the parties did not apply to claims governed by a subsequent stock option agreement that did not include an arbitration clause and provided a right to bring claims arising thereunder in a court of law. Although the Operating Agreement was amended and appellant agreed to be bound by and subject to its terms, the Stock Option Agreement was an independent and complete agreement and was never amended or modified to include any dispute resolution provision or arbitration clause. The appellant did not agree to submit any claims alleged in the complaint to arbitration and could not be compelled to submit to arbitration.", + "case_name_shorts": "Stadtlander", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -619,9 +713,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110506 & 110553", "judges": "Sheehan", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4170", - "summaries": "Permanent custody R.C. 2151.414(B)(1)(a) best interest of the child. The trial court's decision granting permanent custody of the child is affirmed. The trial court's finding that the child cannot be placed with either parent within a reasonable time or should not be placed with either parent is supported by clear and convincing evidence. Father argues that his efforts to comply with the case plan were hampered by the Covid-19 pandemic, specifically, the virtual visitation lacked the quality of face-to-face interactions and his ability to find housing was hindered by the pandemic. Undoubtedly, the pandemic presented a great challenge to the parents and may have affected their ability to complete their case plan. However, our review of the transcript reflects that the trial court was cognizant of the impact of the pandemic and took it into consideration when granting permanent custody.", - "case_name_shorts": "In re D.B." + "summaries": "Permanent custody; R.C. 2151.414(B)(1)(a); best interest of the child. The trial court's decision granting permanent custody of the child is affirmed. The trial court's finding that the child cannot be placed with either parent within a reasonable time or should not be placed with either parent is supported by clear and convincing evidence. Father argues that his efforts to comply with the case plan were hampered by the Covid-19 pandemic, specifically, the virtual visitation lacked the quality of face-to-face interactions and his ability to find housing was hindered by the pandemic. Undoubtedly, the pandemic presented a great challenge to the parents and may have affected their ability to complete their case plan. However, our review of the transcript reflects that the trial court was cognizant of the impact of the pandemic and took it into consideration when granting permanent custody.", + "case_name_shorts": "In re D.B.", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -632,9 +728,11 @@ "date_filed_is_approximate": false, "docket_numbers": "110431", "judges": "S. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4169", - "summaries": "Frivolous conduct R.C. 2323.51 Civ.R. 11. It cannot be concluded that the appellee or its counsel of record engaged in frivolous or willful misconduct based on the filing of a motion to vacate a dismissal. Appellee believed dismissal was in error base", - "case_name_shorts": "" + "summaries": "Frivolous conduct; R.C. 2323.51; Civ.R. 11. It cannot be concluded that the appellee or its counsel of record engaged in frivolous or willful misconduct based on the filing of a motion to vacate a dismissal. Appellee believed dismissal was in error base", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -645,8 +743,10 @@ "date_filed_is_approximate": false, "docket_numbers": "110168", "judges": "E.T. Gallagher", + "lower_courts": "Cuyahoga County Court", "citations": "2021-Ohio-4173", - "summaries": "Arbitration discovery requests for admissions admitted timely service de novo abuse of discretion merits attorney fees consumer contract prejudice. The trial court abused its discretion by denying the defendants' motion to amend or withdraw their discovery admissions. The defendants have demonstrated that withdrawal or amendment of the admissions would assist in justly resolving this action on its merits, and conversely, the trial court's denial of its motion effectively prevented the defendants from having the case resolved on the merits.", - "case_name_shorts": "Caldwell" + "summaries": "Arbitration; discovery; requests for admissions; admitted; timely; service; de novo; abuse of discretion; merits; attorney fees; consumer; contract; prejudice. The trial court abused its discretion by denying the defendants' motion to amend or withdraw their discovery admissions. The defendants have demonstrated that withdrawal or amendment of the admissions would assist in justly resolving this action on its merits, and conversely, the trial court's denial of its motion effectively prevented the defendants from having the case resolved on the merits.", + "case_name_shorts": "Caldwell", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohioctapp_9_example.compare.json b/tests/examples/opinions/united_states/ohioctapp_9_example.compare.json index 91fde8f2d..38bbcc337 100644 --- a/tests/examples/opinions/united_states/ohioctapp_9_example.compare.json +++ b/tests/examples/opinions/united_states/ohioctapp_9_example.compare.json @@ -8,9 +8,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29803", "judges": "Carr", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4500", "summaries": "forcible entry and detainer, counterclaim, timing, judgment, magistrate's decision, objections", - "case_name_shorts": "Phillips" + "case_name_shorts": "Phillips", + "per_curiam": false }, { "case_dates": "2021-12-22", @@ -21,9 +23,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29987", "judges": "Callahan", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4499", "summaries": "adjudication \u2013 dependent child \u2013 manifest weight of the evidence \u2013 lack of definitive plan \u2013 clear and convincing evidence \u2013 curative measures", - "case_name_shorts": "In re L.T." + "case_name_shorts": "In re L.T.", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -34,9 +38,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA011703", "judges": "Carr", + "lower_courts": "Lorain County Court", "citations": "2021-Ohio-4469", "summaries": "R.C. 2941.401 \u2013 speedy trial \u2013 written notice and request for final disposition \u2013 warden \u2013 outstanding charges \u2013 prosecuting attorney \u2013 appropriate court", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -47,9 +53,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP0021", "judges": "Sutton", + "lower_courts": "Wayne County Court", "citations": "2021-Ohio-4466", "summaries": "void, voidable, res judicata", - "case_name_shorts": "Dyson" + "case_name_shorts": "Dyson", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -60,9 +68,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA011718", "judges": "Callahan", + "lower_courts": "Lorain County Court", "citations": "2021-Ohio-4467", "summaries": "lease\u2014exclusive-use clause\u2014plain and ordinary meaning\u2014ambiguous\u2014context\u2014intent", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-12-20", @@ -73,9 +83,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA011731", "judges": "Hensal", + "lower_courts": "Lorain County Court", "citations": "2021-Ohio-4468", "summaries": "mootness, forcible entry and detainer, stay, bankruptcy, App.R. 7(A)", - "case_name_shorts": "Pretlow" + "case_name_shorts": "Pretlow", + "per_curiam": false }, { "case_dates": "2021-12-15", @@ -86,9 +98,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29915", "judges": "Carr", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4413", "summaries": "legal custody \u2013 case plan \u2013 reunification \u2013 reasonable efforts- due process \u2013 reasonable amount of time to accomplish case plan objectives", - "case_name_shorts": "In re K.J." + "case_name_shorts": "In re K.J.", + "per_curiam": false }, { "case_dates": "2021-12-15", @@ -99,9 +113,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29852", "judges": "Teodosio", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4412", "summaries": "summary judgment \u2013 political subdivision immunity \u2013 R.C. 2744.02(B)(5) \u2013 R.C. 2744.03(A)(6)(b) \u2013 R.C. 2744.03(A)(6)(c) \u2013 R.C. 955.28(B) \u2013 wanton and reckless \u2013 police canine \u2013 verbal warning \u2013 apprehending fleeing suspect \u2013 apartment \u2013 threshold", - "case_name_shorts": "Callaway" + "case_name_shorts": "Callaway", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -112,9 +128,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA011653", "judges": "Hensal", + "lower_courts": "Lorain County Court", "citations": "2021-Ohio-4351", "summaries": "mootness, sale of property, lien priority", - "case_name_shorts": "Warner" + "case_name_shorts": "Warner", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -125,9 +143,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA0044-M", "judges": "Tucker", + "lower_courts": "Medina County Court", "citations": "2021-Ohio-4353", "summaries": "The trial court did not err in entering summary judgment for the City of Medina on a taxpayer complaint for injunctive relief to enjoin the City's performance under a contract authorized by two ordinances. The first ordinance authorized Medina's mayor to enter into a cost-sharing agreement with the Medina County Board of Commissioners for the planning of a proposed joint courthouse. The second ordinance amended the first primarily by increasing the amount authorized to be paid under the cost-sharing agreement. Even if the Medina City Council improperly passed the first ordinance as an emergency measure, it took effect in due course as a regular ordinance. De novo review reveals no substantive or procedural defect invalidating either of the two ordinances. Finally, the present appeal has not been rendered moot by events that transpired after the two ordinances were enacted. Judgment affirmed.", - "case_name_shorts": "Medina" + "case_name_shorts": "Medina", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -138,9 +158,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21AP0004", "judges": "Sutton", + "lower_courts": "Wayne County Court", "citations": "2021-Ohio-4350", "summaries": "civil stalking protection order, Civ.R. 53, Civ.R. 65.1", - "case_name_shorts": "K.T." + "case_name_shorts": "K.T.", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -151,9 +173,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA011701", "judges": "Hensal", + "lower_courts": "Lorain County Court", "citations": "2021-Ohio-4349", "summaries": "attorney-client privilege, bank examination privilege, de novo, legal advice, drafts, predominate purpose", - "case_name_shorts": "Jacobs" + "case_name_shorts": "Jacobs", + "per_curiam": false }, { "case_dates": "2021-12-13", @@ -164,9 +188,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA0039-M", "judges": "Teodosio", + "lower_courts": "Medina County Court", "citations": "2021-Ohio-4348", "summaries": "Divorce, magistrate, terminate, spousal support, failure to pay, contempt, foreign marriage contract, bigamy, admission of evidence, Evid.R. 103(A)(1), no objection, failure to preserve, forfeited, App.R. 16(A)(7), no legal authority, abuse of discretion, competent credible evidence", - "case_name_shorts": "Falah" + "case_name_shorts": "Falah", + "per_curiam": false }, { "case_dates": "2021-12-08", @@ -177,9 +203,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29970", "judges": "Sutton", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4283", "summaries": "permanent custody, R.C. 2151.414(E)(1) and (E)(4)", - "case_name_shorts": "In re J.H." + "case_name_shorts": "In re J.H.", + "per_curiam": false }, { "case_dates": "2021-12-08", @@ -190,9 +218,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29996", "judges": "Hensal", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4282", "summaries": "alternative dispute resolution, signature, arbitration, contract, de novo", - "case_name_shorts": "Gustinski" + "case_name_shorts": "Gustinski", + "per_curiam": false }, { "case_dates": "2021-12-06", @@ -203,9 +233,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA011734", "judges": "Callahan", + "lower_courts": "Lorain County Court", "citations": "2021-Ohio-4239", "summaries": "summary judgment\u2014Civ.R. 56 evidence\u2014nuisance", - "case_name_shorts": "Pietrangelo" + "case_name_shorts": "Pietrangelo", + "per_curiam": false }, { "case_dates": "2021-12-01", @@ -216,9 +248,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29837", "judges": "Carr", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4206", "summaries": "motion to dismiss, absolute privilege, probable cause, malicious prosecution, alternate basis", - "case_name_shorts": "Sweeney" + "case_name_shorts": "Sweeney", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -229,9 +263,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29535", "judges": "Carr", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4153", "summaries": "rape, sexual battery, jury verdict form, carrying a concealed weaopon, substantial impairment, significantly weakened, jury instructions, sufficiency, manifest weight, ineffective assistance of counsel", - "case_name_shorts": "Oliver" + "case_name_shorts": "Oliver", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -242,9 +278,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29660", "judges": "Teodosio", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4154", "summaries": "directed verdict\u2014Civ.R. 61\u2014motion in limine\u2014App.R. 9\u2014jury instruction\u2014adverse inference\u2014Civ.R. 49\u2014interrogatories\u2014manifest weight of the evidence", - "case_name_shorts": "Kister" + "case_name_shorts": "Kister", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -255,9 +293,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29974, 29978", "judges": "Carr", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4156", "summaries": "permanent custody, reasonable reunification efforts need not be found at permanent custody hearing, best interest", - "case_name_shorts": "In re C.W." + "case_name_shorts": "In re C.W.", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -268,9 +308,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29998, 29999", "judges": "Sutton", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4152", "summaries": "permanent custody \u2013 case plan \u2013 reasonable efforts \u2013 plain error \u2013 prejudice", - "case_name_shorts": "In re B.H." + "case_name_shorts": "In re B.H.", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -281,9 +323,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29868", "judges": "Callahan", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4151", "summaries": "small claims court \u2013 answer", - "case_name_shorts": "Burke" + "case_name_shorts": "Burke", + "per_curiam": false }, { "case_dates": "2021-11-24", @@ -294,9 +338,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29882", "judges": "Hensal", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4150", "summaries": "summary judgment, action on an account, unjust enrichment, utility bill, implied in fact contract, breach of contract", - "case_name_shorts": "Baum" + "case_name_shorts": "Baum", + "per_curiam": false }, { "case_dates": "2021-11-17", @@ -307,9 +353,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29951", "judges": "Callahan", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-4078", "summaries": "permanent custody \u2013 appointed counsel \u2013 waiver of counsel \u2013 finding of knowing waiver \u2013 two-part inquiry", - "case_name_shorts": "In re J.S." + "case_name_shorts": "In re J.S.", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -320,9 +368,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP0037", "judges": "Carr", + "lower_courts": "Wayne County Court", "citations": "2021-Ohio-4046", "summaries": "R.C. 4511.21, speeding, manifest weight, radar, Brook Park v. Rodojev", - "case_name_shorts": "White" + "case_name_shorts": "White", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -333,9 +383,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA0005-M", "judges": "Sutton", + "lower_courts": "Medina County Court", "citations": "2021-Ohio-4045", "summaries": "OVI, headlight violation, Fifth Amendment, abuse of discretion, motion to suppress, Evid.R. 403, Crim.R. 12", - "case_name_shorts": "Luntz" + "case_name_shorts": "Luntz", + "per_curiam": false }, { "case_dates": "2021-11-15", @@ -346,9 +398,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP0032", "judges": "Sutton", + "lower_courts": "Wayne County Court", "citations": "2021-Ohio-4044", "summaries": "domestic violence, ineffective assistance of counsel, legal sufficiency, manifest weight, motion for new trial", - "case_name_shorts": "Bullard" + "case_name_shorts": "Bullard", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -359,9 +413,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29943", "judges": "Carr", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-3991", "summaries": "post-conviction motion, void, voidable, final, appealable order", - "case_name_shorts": "Baker" + "case_name_shorts": "Baker", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -372,9 +428,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29988, 29989, 29990", "judges": "Hensal", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-3993", "summaries": "permanent custody, R.C. 2151.414(E)(1) pertains to parent's post-removal reunification efforts during this case, case plan requirements must comply with R.C. 2151.412", - "case_name_shorts": "In re Q.C." + "case_name_shorts": "In re Q.C.", + "per_curiam": false }, { "case_dates": "2021-11-10", @@ -385,9 +443,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29995", "judges": "Callahan", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-3992", "summaries": "permanent custody \u2013 service of summons \u2013 complaint \u2013 due process \u2013 notice \u2013 reasonably calculated to apprise \u2013 last known address \u2013 Juv.R. 16 \u2013 Civ.R. 4.4(A) \u2013 publication by posting and mail \u2013 affidavit", - "case_name_shorts": "In re C.H." + "case_name_shorts": "In re C.H.", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -398,9 +458,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP0018", "judges": "Hensal", + "lower_courts": "Wayne County Court", "citations": "2021-Ohio-3957", "summaries": "unlawful restraint, sufficiency, manifest weight, R.C. 2905.03(A)", - "case_name_shorts": "Bersch" + "case_name_shorts": "Bersch", + "per_curiam": false }, { "case_dates": "2021-11-08", @@ -411,9 +473,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA011667", "judges": "Teodosio", + "lower_courts": "Lorain County Court", "citations": "2021-Ohio-3956", "summaries": "S.B. 231, Sierah's Law, R.C. 2903.41 et seq., violent offender database, notification, rebuttable presumption, duty to enroll, due process, Retroactivity Clause of the Ohio Constitution, State v. Hubbard, State v. Jarvis", - "case_name_shorts": "Barrett" + "case_name_shorts": "Barrett", + "per_curiam": false }, { "case_dates": "2021-11-03", @@ -423,10 +487,12 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "30076", - "judges": "Per Curiam", + "judges": "", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-3909", "summaries": "Mandamus, Civ.R. 12(B)(6)", - "case_name_shorts": "Breaux" + "case_name_shorts": "Breaux", + "per_curiam": true }, { "case_dates": "2021-11-01", @@ -437,9 +503,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA0076-M", "judges": "Carr", + "lower_courts": "Medina County Court", "citations": "2021-Ohio-3869", - "summaries": "driving while under the influence traffic violation, field sobriety testing, reasonable suspicion", - "case_name_shorts": "Won" + "summaries": "driving while under the influence; traffic violation, field sobriety testing, reasonable suspicion", + "case_name_shorts": "Won", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -450,9 +518,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA011728", "judges": "Carr", + "lower_courts": "Lorain County Court", "citations": "2021-Ohio-3868", "summaries": "sealing, former R.C. 2953.36, R.C. 2953.32", - "case_name_shorts": "N.V." + "case_name_shorts": "N.V.", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -463,9 +533,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA011672", "judges": "Teodosio", + "lower_courts": "Lorain County Court", "citations": "2021-Ohio-3867", "summaries": "administrative appeal \u2013 reliable, probative, and substantial evidence \u2013 pharmacist \u2013 license \u2013 marijuana \u2013 THC \u2013 medical marijuana dispensary", - "case_name_shorts": "Jaroscak" + "case_name_shorts": "Jaroscak", + "per_curiam": false }, { "case_dates": "2021-11-01", @@ -476,9 +548,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20CA011623", "judges": "Callahan", + "lower_courts": "Lorain County Court", "citations": "2021-Ohio-3866", "summaries": "true value\u2014vacant-at-transfer rule\u2014arm's-length sale\u2014R.C. 5713.03\u2014Rancho Cincinnati Rivers", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2021-10-27", @@ -489,9 +563,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29865", "judges": "Callahan", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-3809", "summaries": "motion to enforce settlement \u2013 retain jurisdiction \u2013 final appealable order \u2013 Sup.R. 7 \u2013 modify \u2013 vacate \u2013 Civ.R. 60(B) \u2013 sua sponte \u2013 void", - "case_name_shorts": "Bender" + "case_name_shorts": "Bender", + "per_curiam": false }, { "case_dates": "2021-10-25", @@ -502,9 +578,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP0038", "judges": "Callahan", + "lower_courts": "Wayne County Court", "citations": "2021-Ohio-3776", "summaries": "4511.19\u2014ineffective assistance\u2014sufficiency\u2014manifest weight", - "case_name_shorts": "Garver" + "case_name_shorts": "Garver", + "per_curiam": false }, { "case_dates": "2021-10-20", @@ -515,9 +593,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29913", "judges": "Sutton", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-3725", "summaries": "guilty plea, manifest injustice, indictment, ineffective assistance of counsel", - "case_name_shorts": "Guyton" + "case_name_shorts": "Guyton", + "per_curiam": false }, { "case_dates": "2021-10-20", @@ -528,9 +608,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29925", "judges": "Callahan", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-3724", "summaries": "motion to suppress \u2013 parolee \u2013 post-release control \u2013 Fourth Amendment \u2013 vehicle search \u2013 R.C. 2967.131(C)", - "case_name_shorts": "Crandall" + "case_name_shorts": "Crandall", + "per_curiam": false }, { "case_dates": "2021-10-20", @@ -541,9 +623,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29872", "judges": "Callahan", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-3728", "summaries": "objection \u2013 magistrate's decision \u2013 challenge \u2013 declaration \u2013 CDC eviction moratorium", - "case_name_shorts": "Scherer" + "case_name_shorts": "Scherer", + "per_curiam": false }, { "case_dates": "2021-10-20", @@ -554,9 +638,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29861", "judges": "Carr", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-3727", "summaries": "arbitration \u2013 breach of contract \u2013 motion to stay \u2013 contract interpretation \u2013 contract amendment \u2013 de novo - R.C. 2711.01 \u2013 R.C. 2711.02", - "case_name_shorts": "Lavani" + "case_name_shorts": "Lavani", + "per_curiam": false }, { "case_dates": "2021-10-20", @@ -567,9 +653,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29985", "judges": "Carr", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-3726", "summaries": "permanent custody \u2013 manifest weight of the evidence \u2013 cannot or should not be returned to parents' custody \u2013 best interest of the child \u2013 six-month extension of temporary custody \u2013 abuse of discretion \u2013 reasonable belief of reunification \u2013 significant compliance", - "case_name_shorts": "In re P.H." + "case_name_shorts": "In re P.H.", + "per_curiam": false }, { "case_dates": "2021-10-18", @@ -580,9 +668,11 @@ "date_filed_is_approximate": false, "docket_numbers": "20AP0030", "judges": "Callahan", + "lower_courts": "Wayne County Court", "citations": "2021-Ohio-3700", "summaries": "4511.19\u2014motion to suppress\u2014reasonable suspicion\u2014probable cause\u2014totality of the circumstances", - "case_name_shorts": "Iloba" + "case_name_shorts": "Iloba", + "per_curiam": false }, { "case_dates": "2021-10-13", @@ -593,9 +683,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29811", "judges": "Sutton", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-3667", "summaries": "judicial release, recidivism factors, seriousness factors, R.C. 2929.12, R.C. 2929.20, R.C. 2953.08", - "case_name_shorts": "Burns" + "case_name_shorts": "Burns", + "per_curiam": false }, { "case_dates": "2021-10-12", @@ -606,9 +698,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA0033-M", "judges": "Callahan", + "lower_courts": "Medina County Court", "citations": "2021-Ohio-3632", "summaries": "motion to suppress \u2013 canine sniff \u2013 probable cause \u2013 narcotics \u2013 search of person \u2013 particularized suspicion \u2013 process of elimination \u2013 vehicle", - "case_name_shorts": "Dudsak" + "case_name_shorts": "Dudsak", + "per_curiam": false }, { "case_dates": "2021-10-12", @@ -619,9 +713,11 @@ "date_filed_is_approximate": false, "docket_numbers": "21CA0016-M", "judges": "Teodosio", + "lower_courts": "Medina County Court", "citations": "2021-Ohio-3633", "summaries": "permanent custody, best interest, testimony admitted without objection, plain error", - "case_name_shorts": "In re X.N." + "case_name_shorts": "In re X.N.", + "per_curiam": false }, { "case_dates": "2021-10-06", @@ -632,9 +728,11 @@ "date_filed_is_approximate": false, "docket_numbers": "29873", "judges": "Carr", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-3584", "summaries": "motion to suppress, reasonable suspicion, suspension, traffic stop", - "case_name_shorts": "Kleintop" + "case_name_shorts": "Kleintop", + "per_curiam": false }, { "case_dates": "2021-09-30", @@ -645,8 +743,10 @@ "date_filed_is_approximate": false, "docket_numbers": "29108", "judges": "Carr", + "lower_courts": "Summit County Court", "citations": "2021-Ohio-3447", "summaries": "manifest weight \u2013 due process \u2013 jury instructions \u2013 testimony \u2013 abuse of discretion \u2013 consecutive sentencings \u2013 findings", - "case_name_shorts": "Fazenbaker" + "case_name_shorts": "Fazenbaker", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohioctcl_beginningofyear_example.compare.json b/tests/examples/opinions/united_states/ohioctcl_beginningofyear_example.compare.json index a251eeed5..9c0f03004 100644 --- a/tests/examples/opinions/united_states/ohioctcl_beginningofyear_example.compare.json +++ b/tests/examples/opinions/united_states/ohioctcl_beginningofyear_example.compare.json @@ -2,46 +2,49 @@ { "case_dates": "2016-12-14", "case_names": "Hunter v. Bur. of Workers' Comp.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8577.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8577.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2012-05479", "judges": "Crawford", "citations": "2016-Ohio-8577", - "summaries": "Reverse race discrimination tortious spoliation of documents. Reviewing the facts, the court determined that plaintiff failed to demonstrate that defendant's stated reasons for his termination were pretext. Plaintiff had two active suspensions at the time of his pre-termination transgressions and plaintiff was charged with dishonesty. Dishonesty alone was sufficient to terminate plaintiff with or without the compounding disciplinary grid. No other similarly situated, minority employee had two active suspensions, nor did any other employee commit a dishonest act. Thus, the court found that there was no genuine issue of material fact that while defendant took an adverse action with respect to plaintiff's employment, there was no evidence to support the claim that it discriminated against non-minority employees and/or treated plaintiff disparately than other similarly situated employees. Next, plaintiff alleged that his former supervisor kept records of defendant's alleged discriminatory practices in his office desk, including a document purportedly used for tracking disparate treatment that it did not provide these documents to plaintiff in response to a discovery request and that this led to an inference that defendant destroyed these records. Plaintiff provided no evidence to support his belief. Furthermore, the allegedly destroyed records were part of a public records lawsuit in which the Tenth District Court of Appeals found that plaintiff had failed to properly request the records. Because defendant could not produce documents that didn't exist and plaintiff's failure to provide any evidence that the documents in question were intentionally destroyed, the court found no genuine issue of material fact with regard to any documents related to his supervisor. With regard to certain handwritten notes that defendant allegedly destroyed, the court noted that defendant had destroyed the notes according to its retention schedule prior to any requests for preservation. Accordingly, there was no issue of material fact regarding plaintiff's claim for spoliation of evidence. Consequently, the court granted defendant's motion for summary judgment for both claims.", - "case_name_shorts": "Hunter" + "summaries": "Reverse race discrimination; tortious spoliation of documents. Reviewing the facts, the court determined that plaintiff failed to demonstrate that defendant's stated reasons for his termination were pretext. Plaintiff had two active suspensions at the time of his pre-termination transgressions and plaintiff was charged with dishonesty. Dishonesty alone was sufficient to terminate plaintiff with or without the compounding disciplinary grid. No other similarly situated, minority employee had two active suspensions, nor did any other employee commit a dishonest act. Thus, the court found that there was no genuine issue of material fact that while defendant took an adverse action with respect to plaintiff's employment, there was no evidence to support the claim that it discriminated against non-minority employees and/or treated plaintiff disparately than other similarly situated employees. Next, plaintiff alleged that his former supervisor kept records of defendant's alleged discriminatory practices in his office desk, including a document purportedly used for tracking disparate treatment; that it did not provide these documents to plaintiff in response to a discovery request; and that this led to an inference that defendant destroyed these records. Plaintiff provided no evidence to support his belief. Furthermore, the allegedly destroyed records were part of a public records lawsuit in which the Tenth District Court of Appeals found that plaintiff had failed to properly request the records. Because defendant could not produce documents that didn't exist and plaintiff's failure to provide any evidence that the documents in question were intentionally destroyed, the court found no genuine issue of material fact with regard to any documents related to his supervisor. With regard to certain handwritten notes that defendant allegedly destroyed, the court noted that defendant had destroyed the notes according to its retention schedule prior to any requests for preservation. Accordingly, there was no issue of material fact regarding plaintiff's claim for spoliation of evidence. Consequently, the court granted defendant's motion for summary judgment for both claims.", + "case_name_shorts": "Hunter", + "per_curiam": false }, { "case_dates": "2016-12-13", "case_names": "Jutte Elec., Ltd. v. Ohio Facilities Constr. Comm.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8580.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8580.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2014-00318", "judges": "Crawford", "citations": "2016-Ohio-8580", - "summaries": "Construction surety contract. The court found that plaintiffs failed to prove by a preponderance of the evidence that their damages were proximately caused by OSFC. Even if plaintiff Jutte was able to prove damages, the Surety failed to prove that it is entitled to any of Jutte's damages or any of its own damages. Finally, even if plaintiffs proved damages were caused OSFC, any damages related to the claims listed in two Article 8 letters were not timely submitted and plaintiffs waived their right to receive compensation for alleged losses incurred due to those claims. Judgment recommended in favor of defendant.", - "case_name_shorts": "" + "summaries": "Construction; surety; contract. The court found that plaintiffs failed to prove by a preponderance of the evidence that their damages were proximately caused by OSFC. Even if plaintiff Jutte was able to prove damages, the Surety failed to prove that it is entitled to any of Jutte's damages or any of its own damages. Finally, even if plaintiffs proved damages were caused OSFC, any damages related to the claims listed in two Article 8 letters were not timely submitted and plaintiffs waived their right to receive compensation for alleged losses incurred due to those claims. Judgment recommended in favor of defendant.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2016-12-05", "case_names": "Hernandez v. Ohio Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8581.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8581.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2016-00150", "judges": "McGrath", "citations": "2016-Ohio-8581", - "summaries": "Summary judgment Civ.R. 56(C) inmate medical malpractice. The court concluded that plaintiff failed to provide any evidence, much less an affidavit from a medical expert, to controvert the evidence submitted by defendant and demonstrate a genuine issue of material fact. Summary judgment granted in favor of defendant.", - "case_name_shorts": "Hernandez" + "summaries": "Summary judgment; Civ.R. 56(C); inmate; medical malpractice. The court concluded that plaintiff failed to provide any evidence, much less an affidavit from a medical expert, to controvert the evidence submitted by defendant and demonstrate a genuine issue of material fact. Summary judgment granted in favor of defendant.", + "case_name_shorts": "Hernandez", + "per_curiam": false }, { "case_dates": "2016-12-02", "case_names": "Mezey v. Ohio Dev. Servs. Agency", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8578.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8578.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -49,12 +52,13 @@ "judges": "McGrath", "citations": "2016-Ohio-8578", "summaries": "Wrongful termination in violation of public policy. Plaintiff filed objections to a magistrate's decision. Her first objection challenged the magistrate's factual findings, which supported his determination that she had failed to prove her claim of wrongful discharge in violation of public policy. The court noted that pursuant to Ohio law, discharging an employee for consulting an attorney may serve as a basis for the public policy exception to the common law employment-at-will doctrine. Certain exhibits that were part of the record demonstrated that defendant's agent knew that plaintiff had retained counsel prior to her termination. However, because plaintiff did not file a transcript along with her objections to the magistrate's factual findings, under Civ. R. 53, the court was required to accept the magistrate's factual findings and limit its review to the magistrate's legal conclusions. Lastly, with regard to plaintiff's second objection alleging defendant's discharge was based on pretext, the court noted that plaintiff's failure to file a transcript compelled it to again adopt the magistrate's findings of fact. Consequently, upon conducting an independent review, the court adopted the previous magistrate's decision and rendered judgment in defendant's favor.", - "case_name_shorts": "Mezey" + "case_name_shorts": "Mezey", + "per_curiam": false }, { "case_dates": "2016-11-21", "case_names": "Good v. Ohio Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8327.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8327.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -62,25 +66,27 @@ "judges": "McGrath", "citations": "2016-Ohio-8327", "summaries": "Negligence. Defendant filed objections to a magistrate's decision recommending an award of damages to plaintiff, an inmate in defendant's custody and control, for $6,025 for defendant's negligence. Upon review, the court found that the magistrates' determination regarding plaintiff's pain and suffering damages following a fall at one of defendant's facilities was supported by competent and credible evidence. The court concluded that the magistrate should be afforded latitude in calculating pain and suffering damages because no mathematical rule existed to determine them. While the magistrate's exercise of discretion in awarding such damages could have been exercised differently, the court was not persuaded that the magistrate's decision warranted modification. Consequently, the court adopted the magistrate's decision.", - "case_name_shorts": "Good" + "case_name_shorts": "Good", + "per_curiam": false }, { "case_dates": "2016-11-18", "case_names": "Accurate Elec. Constr., Inc. v. Ohio State Univ.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8329.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8329.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2014-00961", "judges": "Crawford", "citations": "2016-Ohio-8329", - "summaries": "Breach of express and implied warranty breach of duty of good faith and fair dealing. Plaintiff alleged that defendant breached various express and implied warranties because defendant failed to provide plaintiff with a site upon which plaintiff could perform its work unreasonably denied plaintiff's legitimate claims for additional compensation failed to promote teamwork, cooperation, and respect amongst all project contractors and failed to schedule and coordinate the project. Upon review of the evidence, the court determined that plaintiff's claims based on express and implied warranties were not distinct from its breach of contract claims, which the court had already previously dismissed. Similarly, the court also dismissed plaintiff's duty of good faith and fair dealing claim as this claim could not stand alone as a separate cause of action distinct from a breach of contract claim. Accordingly, the court found no genuine issue of material fact regarding the warranty and goof faith and fair dealing claims and granted defendant's motion for summary judgment.", - "case_name_shorts": "" + "summaries": "Breach of express and implied warranty; breach of duty of good faith and fair dealing. Plaintiff alleged that defendant breached various express and implied warranties because defendant failed to provide plaintiff with a site upon which plaintiff could perform its work; unreasonably denied plaintiff's legitimate claims for additional compensation; failed to promote teamwork, cooperation, and respect amongst all project contractors; and failed to schedule and coordinate the project. Upon review of the evidence, the court determined that plaintiff's claims based on express and implied warranties were not distinct from its breach of contract claims, which the court had already previously dismissed. Similarly, the court also dismissed plaintiff's duty of good faith and fair dealing claim as this claim could not stand alone as a separate cause of action distinct from a breach of contract claim. Accordingly, the court found no genuine issue of material fact regarding the warranty and goof faith and fair dealing claims and granted defendant's motion for summary judgment.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2016-11-16", "case_names": "Skorvanek v. Ohio Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8328.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8328.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -88,38 +94,41 @@ "judges": "Van Schoyck", "citations": "2016-Ohio-8328", "summaries": "Negligence. Plaintiff, an inmate in defendant's custody and control claimed that defendant was negligent in failing to prevent an attack upon him by another inmate. On November 12, 2013, Creech, another inmate in defendant's custody, filled a mug with water and microwaved it for approximately four minutes. Creech then rolled himself in his wheelchair toward the row of beds where he and plaintiff lived, rolled up to plaintiff's bed and stood up, and poured the hot water in plaintiff's mouth and face, who was still sleeping. Upon reviewing the evidence, the magistrate found that defendant did not have actual or constructive notice that the attack was impending. Plaintiff contended that Creech had a disciplinary history and mental illness sufficient to put defendant on notice of an impending attack, but the magistrate found that it was not supported by evidence. Plaintiff had previously spoken to Creech, had not felt that Creech posed a serious threat, and did not notify a staff member about any concern for his safety. Creech had been disciplined for a variety of infractions, but those infractions were accumulated over more than three decades in prison and nearly all of them were non-violent in nature. Based upon annual reviews of Creech's security classification, he was considered to be at the lowest possible security level. While there were records evidencing that Creech was disciplined in 2002 for fighting with another inmate and was disciplined in 2000 for attempting to strike another inmate with a lock attached to a belt over the theft of some cigarettes, these incidents were remote in time-by more than ten years-from the attack on plaintiff. As such, these did not constitute a pattern of violence that could even arguably confer defendant with notice that the attack by Creech was impending at any moment. Moreover, the evidence presented at trial about Creech having received some mental health care or been diagnosed with depression, was no basis to conclude that his attack was foreseeable. Therefore, the magistrate found that plaintiff failed to prove his claims by a preponderance of the evidence and recommended judgment in favor of defendant.", - "case_name_shorts": "Skorvanek" + "case_name_shorts": "Skorvanek", + "per_curiam": false }, { "case_dates": "2016-11-03", "case_names": "Johnson v. Ohio Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8141.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8141.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2014-00768", "judges": "Van Schoyck", "citations": "2016-Ohio-8141", - "summaries": "Inmate negligence bifurcated. The magistrate determined that defendant failed to honor plaintiff's lower bunk restriction, and also failed to correct the error at any time before plaintiff fell off the top bunk, injuring himself, even though there were lower bunks that became available during that time. However, plaintiff failed to exercise reasonable care for his own well-being by not making a sufficient effort to try and obtain a lower bunk. Judgment recommended in favor of plaintiff with a 25 percent diminishment in an award for compensatory damages.", - "case_name_shorts": "" + "summaries": "Inmate; negligence; bifurcated. The magistrate determined that defendant failed to honor plaintiff's lower bunk restriction, and also failed to correct the error at any time before plaintiff fell off the top bunk, injuring himself, even though there were lower bunks that became available during that time. However, plaintiff failed to exercise reasonable care for his own well-being by not making a sufficient effort to try and obtain a lower bunk. Judgment recommended in favor of plaintiff with a 25 percent diminishment in an award for compensatory damages.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2016-11-01", "case_names": "Cameron v. Univ. of Toledo", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8142.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-8142.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2015-00580", "judges": "McGrath", "citations": "2016-Ohio-8142", - "summaries": "Negligence anti-hazing R.C. 2307.44. The court found that plaintiff, formerly a University of Toledo football player, failed to establish any of the required elements of hazing in the anti-hazing statute he failed to demonstrate that he was coerced into participating in an act of initiation which posed a substantial risk of physical harm and that defendant knew of the occurrence of hazing. With regard to the negligence claim, the court determined that plaintiff assumed the risk of injury associated with playing the sport of football and, as a matter of law, was prevented from recovering damages for an injury sustained while participating in a football related activity. Judgment in favor of defendant.", - "case_name_shorts": "Cameron" + "summaries": "Negligence; anti-hazing; R.C. 2307.44. The court found that plaintiff, formerly a University of Toledo football player, failed to establish any of the required elements of hazing in the anti-hazing statute; he failed to demonstrate that he was coerced into participating in an act of initiation which posed a substantial risk of physical harm and that defendant knew of the occurrence of hazing. With regard to the negligence claim, the court determined that plaintiff assumed the risk of injury associated with playing the sport of football and, as a matter of law, was prevented from recovering damages for an injury sustained while participating in a football related activity. Judgment in favor of defendant.", + "case_name_shorts": "Cameron", + "per_curiam": false }, { "case_dates": "2016-10-20", "case_names": "Colville v. Ohio Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7954.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7954.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -127,25 +136,27 @@ "judges": "Peterson", "citations": "2016-Ohio-7954", "summaries": "Negligence. Plaintiff, an inmate in the custody and control of defendant at the Pickaway Correctional Institution brought an action alleging negligence. On February 27, 2015, around noon, plaintiff returned to his housing unit from the chow hall and slipped on an accumulation of snow and ice on the stairway, fell to the landing, and slipped a second time as a result of the ice that had formed on the landing. The magistrate found that the landing had not been salted during the month of plaintiff's fall. However, the magistrate also found that plaintiff failed to prove that defendant had actual or constructive notice that the stairway posed an unreasonable risk of harm to plaintiff due to the accumulated ice and snow. Plaintiff did not offer any evidence that defendant was aware of the ice and snow and neither did he inform anyone. It was established that it snowed several days prior to plaintiff's accident, followed by a pattern of warm weather causing the snow to melt. The water then froze on the stairway and landing of the entryway to plaintiff's dorm. The magistrate found that the ice and snow accumulation on the stairway and landing did not exist for such length of time to support a finding that defendant had constructive notice of the condition. Finally, the magistrate found that the proximate cause of plaintiff's fall on the stairway was his own failure to take reasonable care for his own safety because he was aware of the open and obvious condition. Accordingly, the magistrate recommended judgment in defendant's favor.", - "case_name_shorts": "Colville" + "case_name_shorts": "Colville", + "per_curiam": false }, { "case_dates": "2016-10-12", "case_names": "Brooks v. Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7810.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7810.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2012-06181", "judges": "Peterson", "citations": "2016-Ohio-7810", - "summaries": "Inmate bifurcated damages negligence. After a trial on the issue of damages, the magistrate recommended that plaintiff be awarded $6,500 in damages for past pain and suffering. The magistrate determined that plaintiff's injuries were temporary and resolved within weeks following an incident with another inmate. Further, there was a lack of evidence to substantiate plaintiff's claims of chronic, severe pain. Judgment recommended in favor of plaintiff.", - "case_name_shorts": "Brooks" + "summaries": "Inmate; bifurcated; damages; negligence. After a trial on the issue of damages, the magistrate recommended that plaintiff be awarded $6,500 in damages for past pain and suffering. The magistrate determined that plaintiff's injuries were temporary and resolved within weeks following an incident with another inmate. Further, there was a lack of evidence to substantiate plaintiff's claims of chronic, severe pain. Judgment recommended in favor of plaintiff.", + "case_name_shorts": "Brooks", + "per_curiam": false }, { "case_dates": "2016-09-23", "case_names": "Welser v. Ohio Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7352.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7352.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -153,25 +164,27 @@ "judges": "Van Schoyck", "citations": "2016-Ohio-7352", "summaries": "Negligence. Plaintiff, an inmate in the custody and control of defendant, brought an action which arose out of an accident he suffered when his left index finger was severed by a perforator in the Ohio Penal Industries print shop at one of defendant's correctional institutions. Upon reviewing the evidence presented at trial, the magistrate found that the perforator had been in use for many years and had some flaws and caused some inconvenience to operators, but it was periodically serviced, was safe to operate, and no one had been injured on it before. The day of the accident, plaintiff determined that the perforator had a mechanical problem and took it upon himself to resolve the issue. He used a wrench to remove the bolts that held the perforator's gear box in place. Ultimately, when plaintiff was unable to resolve the issue, he turned the perforator back on. When he went to turn it off with his right hand, he failed to pay attention to the left hand and inadvertently suck his left index finger in the gears, severing his finger.The magistrate found that the perforator was safe to operate and but for plaintiff's actions, the gear box was shielded by a safety cover that was bolted down to the machine's frame. Plaintiff did not establish that there were any problems with the machine, and in any case, failed to inform a staff member on duty. As such, plaintiff failed to exercise reasonable care for his own safety. Plaintiff also asserted that the staff knew or should have known that inmates operating the perforator were in the practice of removing the cover from the gear box. However, the evidence demonstrated that the removal of the cover was not such a common practice that defendant's agents should have been on notice. Accordingly, the magistrate granted judgment in defendant's favor.", - "case_name_shorts": "Welser" + "case_name_shorts": "Welser", + "per_curiam": false }, { "case_dates": "2016-09-20", "case_names": "Mezey v. Ohio Dev. Servs. Agency", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7236.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7236.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2015-00110", "judges": "Renick", "citations": "2016-Ohio-7236", - "summaries": "Promissory estoppel wrongful termination in violation of public policy. The magistrate determined that plaintiff failed to prove that defendant's director terminated her position because her attorney sent him a letter demanding an appointment to a full-time position as the evidence showed that the job audit of the Film Office, which reviewed plaintiff's position, began before the initial demand letter arrived at defendant. Further, plaintiff could not reasonably rely on a promise made by a person who lacks the statutory authority to make that promise. Judgment recommended in favor of defendant.", - "case_name_shorts": "Mezey" + "summaries": "Promissory estoppel; wrongful termination in violation of public policy. The magistrate determined that plaintiff failed to prove that defendant's director terminated her position because her attorney sent him a letter demanding an appointment to a full-time position as the evidence showed that the job audit of the Film Office, which reviewed plaintiff's position, began before the initial demand letter arrived at defendant. Further, plaintiff could not reasonably rely on a promise made by a person who lacks the statutory authority to make that promise. Judgment recommended in favor of defendant.", + "case_name_shorts": "Mezey", + "per_curiam": false }, { "case_dates": "2016-09-20", "case_names": "Hughes v. Ohio Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7353.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7353.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -179,25 +192,27 @@ "judges": "Van Schoyck", "citations": "2016-Ohio-7353", "summaries": "Negligence. Plaintiff, an inmate in the custody and control of defendant, brought an action alleging that he was injured from wearing handcuffs that were too small for his wrists. He also alleged that defendant was negligent in delaying or otherwise providing inadequate medical care for his injuries. The magistrate found that defendant did not breach its duty of reasonable care to plaintiff. When the handcuffs were applied to plaintiff, they fit appropriately. Although plaintiff testified that indentations formed in his skin as the day went on, some temporary indentations in the wrist commonly occur when one wears handcuffs for a long period of time. To the extent that plaintiff alleged defendant was negligent in delaying or otherwise providing inadequate medical care, he did not show any unreasonable delay in the medical care and treatment plaintiff received. Consequently, the magistrate recommended judgment in defendant's favor.", - "case_name_shorts": "Hughes" + "case_name_shorts": "Hughes", + "per_curiam": false }, { "case_dates": "2016-09-20", "case_names": "Ceglia v. Youngstown State Univ.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7235.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7235.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2013-00454", "judges": "Shaver", "citations": "2016-Ohio-7235", - "summaries": "Age discrimination R.C. 4112.02 bifurcated liability. The magistrate determined that plaintiff stated a prima facie case of age discrimination. Further, defendant met its burden to produce evidence of a legitimate, nondiscriminatory reason for its rejection of plaintiff, as plaintiff was not the best at paperwork, and his students were not prepared for a subsequent class. Plaintiff failed to prove by a preponderance of the evidence that defendant's failure to hire him for an open position was based upon his age. Judgment recommended in favor of defendant.", - "case_name_shorts": "Ceglia" + "summaries": "Age discrimination; R.C. 4112.02; bifurcated; liability. The magistrate determined that plaintiff stated a prima facie case of age discrimination. Further, defendant met its burden to produce evidence of a legitimate, nondiscriminatory reason for its rejection of plaintiff, as plaintiff was not the best at paperwork, and his students were not prepared for a subsequent class. Plaintiff failed to prove by a preponderance of the evidence that defendant's failure to hire him for an open position was based upon his age. Judgment recommended in favor of defendant.", + "case_name_shorts": "Ceglia", + "per_curiam": false }, { "case_dates": "2016-09-16", "case_names": "Stadtler v. Ohio Dept. of Transp.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7665.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7665.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -205,12 +220,13 @@ "judges": "Reed", "citations": "2016-Ohio-7665", "summaries": "Negligence. Plaintiff filed a complaint against defendant alleging defendant negligently maintained a light pole on I-77 S. Plaintiff stated that the light pole fell on top of his van and as a result of the accident, plaintiff alleged he suffered headaches, stiffness, and severe pain in his neck and lower back. Plaintiff sought damages in the amount of $10,000 including pain and suffering and had received $1,000 from his insurance policy. The clerk found that plaintiff did not provide any evidence by which the court could infer that defendant had actual or constructive notice that the light pole in question was faulty. Consequently, the clerk ruled in defendant's favor.", - "case_name_shorts": "Stadtler" + "case_name_shorts": "Stadtler", + "per_curiam": false }, { "case_dates": "2016-09-16", "case_names": "Stadtler v. Ohio Dept. of Transp.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7664.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7664.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -218,25 +234,27 @@ "judges": "Reed", "citations": "2016-Ohio-7664", "summaries": "Negligence. Plaintiff filed a complaint against defendant alleging defendant negligently maintained a light pole on I-77 S. The light pole fell on top of plaintiff's van, completely caving in the rear left side of the van's roof and was deemed unrepairable. The clerk found that plaintiff did not provide any evidence by which the court could infer that defendant had actual or constructive notice that the light pole in question was faulty. Consequently, the clerk ruled in defendant's favor.", - "case_name_shorts": "Stadtler" + "case_name_shorts": "Stadtler", + "per_curiam": false }, { "case_dates": "2016-09-12", "case_names": "Yurkowski v. Univ. of Cincinnati", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7351.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7351.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2007-04311", "judges": "McGrath", "citations": "2016-Ohio-7351", - "summaries": "Wrongful death loss of consortium. Decedent's wife and two children brought wrongful death and loss of consortium claims, alleging that University of Cincinnati (UC) was negligent in decedent's discharge from its hospital. Decedent eventually committed suicide. The only question before the court was whether the UC doctor's decision to release the decedent from the hospital fell below the applicable standard of care. The court found the testimony of UC's experts more persuasive than plaintiffs' expert. Specifically, the evidence demonstrated that UC's doctor performed a suicide assessment prior to decedent's release and weighed the risks of discharging him during his last inpatient stay at the hospital. The doctor also had a long history and relationship with the decedent, was aware of his tendencies, and used his knowledge to properly evaluated whether or not to allow the decedent's discharge. Moreover, even if the UC doctor breached his duty, the court found that plaintiffs failed to establish proximate cause by a preponderance of the evidence. Plaintiffs' own expert testified that he was not able to identify the proximate cause of decedent's death. Consequently, the court rendered judgment in defendant's favor.", - "case_name_shorts": "Yurkowski" + "summaries": "Wrongful death; loss of consortium. Decedent's wife and two children brought wrongful death and loss of consortium claims, alleging that University of Cincinnati (UC) was negligent in decedent's discharge from its hospital. Decedent eventually committed suicide. The only question before the court was whether the UC doctor's decision to release the decedent from the hospital fell below the applicable standard of care. The court found the testimony of UC's experts more persuasive than plaintiffs' expert. Specifically, the evidence demonstrated that UC's doctor performed a suicide assessment prior to decedent's release and weighed the risks of discharging him during his last inpatient stay at the hospital. The doctor also had a long history and relationship with the decedent, was aware of his tendencies, and used his knowledge to properly evaluated whether or not to allow the decedent's discharge. Moreover, even if the UC doctor breached his duty, the court found that plaintiffs failed to establish proximate cause by a preponderance of the evidence. Plaintiffs' own expert testified that he was not able to identify the proximate cause of decedent's death. Consequently, the court rendered judgment in defendant's favor.", + "case_name_shorts": "Yurkowski", + "per_curiam": false }, { "case_dates": "2016-08-18", "case_names": "Williams v. Univ. of Akron", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7209.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7209.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -244,12 +262,13 @@ "judges": "Reed", "citations": "2016-Ohio-7209", "summaries": "Court found that plaintiff, an invitee at a University of Akron men's basketball game, failed to demonstrate that defendant did not exercise ordinary care with respect to the seat plaintiff was injured in during the November 16, 2015 game. The court agreed with defendant that the University of Akron had no notice of any defects, either through an outside company's inspection of the arena, visual inspection by defendant's staff, or patron feedback, with regard to the seat in which plaintiff was allegedly injured. Judgment in favor of defendant.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2016-08-18", "case_names": "Dodge v. Ohio Dept. of Natural Resources", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7206.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7206.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -257,12 +276,13 @@ "judges": "Reed", "citations": "2016-Ohio-7206", "summaries": "Court found that while it appeared that the road plaintiff was required to use to get to his paid campsite at a state park was a charge necessary to utilize the overall benefits of a recreational area, it was not necessary for the court to determine whether plaintiff was a recreational user or not. Even if plaintiff was an invitee and owed a higher standard of care, his case failed because defendant did not have actual or constructive notice of the pothole plaintiff struck on Route 1. Judgment in favor of defendant.", - "case_name_shorts": "Dodge" + "case_name_shorts": "Dodge", + "per_curiam": false }, { "case_dates": "2016-08-18", "case_names": "Byrd v. Supreme Court of Ohio", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7210.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7210.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -270,38 +290,41 @@ "judges": "Reed", "citations": "2016-Ohio-7210", "summaries": "Court found that plaintiff's claim that defendant's Clerk of Court failed to accept a filing submitted by plaintiff was barred by the public duty doctrine. Additionally, to the extent plaintiff's claims could be construed as constitutional or criminal claims, the court did not have jurisdiction over these claims. Judgment in favor of defendant.", - "case_name_shorts": "Byrd" + "case_name_shorts": "Byrd", + "per_curiam": false }, { "case_dates": "2016-08-16", "case_names": "United Young People Assn. v. Ohio Expositions Comm.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7062.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7062.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2015-00262", "judges": "McGrath", "citations": "2016-Ohio-7062", - "summaries": "Civ.R. 56(B) summary judgment breach of contract unjust enrichment. The court determined that plaintiff breached the contract when it failed to properly clean and maintain the restrooms to the satisfaction of OEC, which resulted in CTVs being sent to DAS, and DAS was within its rights under the contract to terminate its relationship with plaintiff for persistent default. The court also found that the parties' relationship was set forth in the contract documents, thus plaintiff's claim for unjust enrichment failed as a matter of law. Defendant's motion for summary judgment was granted.", - "case_name_shorts": "" + "summaries": "Civ.R. 56(B); summary judgment; breach of contract; unjust enrichment. The court determined that plaintiff breached the contract when it failed to properly clean and maintain the restrooms to the satisfaction of OEC, which resulted in CTVs being sent to DAS, and DAS was within its rights under the contract to terminate its relationship with plaintiff for persistent default. The court also found that the parties' relationship was set forth in the contract documents, thus plaintiff's claim for unjust enrichment failed as a matter of law. Defendant's motion for summary judgment was granted.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2016-08-16", "case_names": "Phillips v. Ohio Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7061.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7061.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2014-00644", "judges": "Van Schoyck", "citations": "2016-Ohio-7061", - "summaries": "Inmate bifurcated liability negligence excessive force battery. The magistrate determined that the corrections officer involved in an altercation with plaintiff was justified and privileged to use force based upon plaintiff's refusals to comply with orders, combined with plaintiff's threatening body language and demeanor. The degree of force used by the corrections officer was not excessive and satisfied the duty of reasonable care. Judgment recommended in favor of defendant.", - "case_name_shorts": "Phillips" + "summaries": "Inmate; bifurcated; liability; negligence; excessive force; battery. The magistrate determined that the corrections officer involved in an altercation with plaintiff was justified and privileged to use force based upon plaintiff's refusals to comply with orders, combined with plaintiff's threatening body language and demeanor. The degree of force used by the corrections officer was not excessive and satisfied the duty of reasonable care. Judgment recommended in favor of defendant.", + "case_name_shorts": "Phillips", + "per_curiam": false }, { "case_dates": "2016-08-16", "case_names": "Hohenstein v. Ohio Veterans Home", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7211.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7211.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -309,12 +332,13 @@ "judges": "Reed", "citations": "2016-Ohio-7211", "summaries": "Court found that plaintiff failed to submit any evidence to show that he delivered his dentures to defendant, thereby creating a legal bailment relationship between plaintiff and defendant. Judgment in favor of defendant.", - "case_name_shorts": "Hohenstein" + "case_name_shorts": "Hohenstein", + "per_curiam": false }, { "case_dates": "2016-08-16", "case_names": "Early v. Ohio Dept. of Natural Resources", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7208.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7208.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -322,12 +346,13 @@ "judges": "Reed", "citations": "2016-Ohio-7208", "summaries": "Court found that as a visitor to a state park, plaintiff was a recreational user and defendant owed plaintiff no duty to keep park premises safe for entry and travel. Plaintiff's injury to her left ankle occurred as a result of her use of defendant's premises, not by some direct or indirect act on the part of the state agency. Judgment in favor of defendant.", - "case_name_shorts": "Early" + "case_name_shorts": "Early", + "per_curiam": false }, { "case_dates": "2016-08-16", "case_names": "A&H Grocery, L.L.C. v. Ohio Dept. of Health", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7063.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7063.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -335,12 +360,13 @@ "judges": "McGrath", "citations": "2016-Ohio-7063", "summaries": "Civ.R. 12(C). The court determined that plaintiff's claim for wrongfully withheld moneys to which it was entitled was one for equitable relief over which the court lacked jurisdiction. Defendant's motion for judgment on the pleadings was granted.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2016-08-12", "case_names": "Wood Elec., Inc. v. Ohio Facilities Constr. Comm.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7120.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7120.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -348,12 +374,13 @@ "judges": "Crawford", "citations": "2016-Ohio-7120", "summaries": "Breach of contract. Plaintiff, Wood Electric, Inc. (Wood Electric), contracted with Defendant, Ohio Facilities Construction Commission (OFCC), to do the electrical work on a school project in Dalton, Ohio. Wood Electric's accepted bid was $2,477,414.00. Wood Electric asserted that there were numerous delays in the project caused by the general contractor, which caused it to expend funds in excess of its bid. Wood Electric sought recover $254,027.00. OFCC asserted that while there were delays, they did not proximately cause any damage to Wood Electric. The court found that Wood Electric could seek supplemental damages and damages not contemplated at the time of filing the claim during trial. The court also noted that OFCC had not established their own method for determining home office overhead, and found it reasonable to utilize the HOOP method, which was recognized by the Ohio Department of Transportation. Finally, the court determined that Wood Electric's expert's testimony set forth the damages within a reasonable degree of certainty. Accordingly, it rendered judgment in Wood Electric's favor in the amount of $254,027.00.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2016-08-12", "case_names": "Hendrickson v. Ohio Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7121.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7121.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -361,12 +388,13 @@ "judges": "Van Schoyck", "citations": "2016-Ohio-7121", "summaries": "Negligence. Plaintiff, formerly an inmate in the custody and control of defendant, brought an action for negligence arising from an accident in which he suffered a steam burn in the course of his work assignment in the kitchen at the Marion Correctional Institution (MCI). The issues of liability and damages were bifurcated and the case proceeded to trial on the issue of liability. Upon considering the evidence presented at trial, the magistrate found that plaintiff was familiar with the operation of the two steam kettles in the kitchen, including the fact that each kettle automatically released steam from a release valve when the pressure inside the kettle reached a certain point. By placing his foot underneath the release valve, plaintiff failed to exercise appropriate care for his own safety, and this was the proximate cause of the injury. There was only a small space between the release valve and the floor which plaintiff needed to avoid, and it was not necessary for him to have his foot there in order to perform his clean-up duty of cleaning the wall. Consequently, the magistrate found that plaintiff failed to prove his claims by a preponderance of the evidence and recommended judgment in favor of defendant.", - "case_name_shorts": "Hendrickson" + "case_name_shorts": "Hendrickson", + "per_curiam": false }, { "case_dates": "2016-08-09", "case_names": "Wright v. S.E.A.R.C.H.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7122.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7122.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -374,12 +402,13 @@ "judges": "McGrath", "citations": "2016-Ohio-7122", "summaries": "Negligence. Defendant, North West Community Corrections Center (NWCCC) (which plaintiff incorrectly identified as S.E.A.R.C.H.), filed a motion for summary judgment because it is a community-based corrections facility and is not considered the state or state agency as defined by R.C. 2743.01(A). While defendant receives partial funding from the Ohio Department of Rehabilitation and Correction (ODRC), it is not controlled or operated by ODRC. Consequently, defendant alleged that the Court of Claims did not have subject matter jurisdiction over plaintiff's claims. Viewing the matter in light most favorable to plaintiff, the court found that there was no genuine issue of material fact and that NWCCC was not the state as defined under R.C. 2743.01, and granted defendant's motion.", - "case_name_shorts": "Wright" + "case_name_shorts": "Wright", + "per_curiam": false }, { "case_dates": "2016-08-04", "case_names": "Milburn-Shook v. Ohio State Hwy. Patrol", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7207.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7207.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -387,90 +416,97 @@ "judges": "Reed", "citations": "2016-Ohio-7207", "summaries": "Court found that plaintiff failed to provide enough facts for the court to ascertain that by not checking the box on the BMV 2255 form, defendant's agent breached a duty of care toward plaintiff and that breach proximately caused her injures. Judgment in favor of defendant.", - "case_name_shorts": "Milburn-Shook" + "case_name_shorts": "Milburn-Shook", + "per_curiam": false }, { "case_dates": "2016-08-03", "case_names": "Suburban Maintenance & Constr. v. Ohio Dept. of Transp.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7060.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-7060.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2014-00506", "judges": "McGrath", "citations": "2016-Ohio-7060", - "summaries": "Civ.R. 53 construction breach of contract. Ruling on objections to the referee's decision, the court overruled all of defendant's and plaintiff's objections. The court agreed with the referee's legal conclusions regarding the contract interpretation and any ambiguity. The court determined that any errors or omissions in the bid documents did not emerge until the project was underway, thus plaintiff did not waive any contract ambiguities. The court adopted the referee's decision and recommendation as its own, including conclusions of law contained therein. Judgment rendered for plaintiff in the amount of $88,384.37.", - "case_name_shorts": "" + "summaries": "Civ.R. 53; construction; breach of contract. Ruling on objections to the referee's decision, the court overruled all of defendant's and plaintiff's objections. The court agreed with the referee's legal conclusions regarding the contract interpretation and any ambiguity. The court determined that any errors or omissions in the bid documents did not emerge until the project was underway, thus plaintiff did not waive any contract ambiguities. The court adopted the referee's decision and recommendation as its own, including conclusions of law contained therein. Judgment rendered for plaintiff in the amount of $88,384.37.", + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2016-07-27", "case_names": "Humphrey v. Ohio Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5261.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5261.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2015-00606", "judges": "Peterson", "citations": "2016-Ohio-5261", - "summaries": "Inmate negligence medical negligence trial. The magistrate determined that plaintiff's claim for medical malpractice failed because he failed to present expert medical testimony establishing the standard of care, breach of standard of care, or that any alleged delays in medical treatment violated the standard of care. Finally, even if plaintiff's complaint was for ordinary negligence, there was no evidence that any non-medical staff at SOCF breached any duty of care owed to plaintiff and there was no evidence that Dr. Ahmed's orders were improperly performed. Judgment recommended in favor of defendant.", - "case_name_shorts": "Humphrey" + "summaries": "Inmate; negligence; medical negligence; trial. The magistrate determined that plaintiff's claim for medical malpractice failed because he failed to present expert medical testimony establishing the standard of care, breach of standard of care, or that any alleged delays in medical treatment violated the standard of care. Finally, even if plaintiff's complaint was for ordinary negligence, there was no evidence that any non-medical staff at SOCF breached any duty of care owed to plaintiff and there was no evidence that Dr. Ahmed's orders were improperly performed. Judgment recommended in favor of defendant.", + "case_name_shorts": "Humphrey", + "per_curiam": false }, { "case_dates": "2016-07-27", "case_names": "Burnett v. Ohio Dept. of Transp.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5501.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5501.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2012-01937", "judges": "Van Schoyck", "citations": "2016-Ohio-5501", - "summaries": "Plaintiff brought an action for negligence alleging that while he was operating a tractor-trailer, a metal skid shoe broke off the bottom of a snow plow truck operated by defendant's employee, and, as a result, plaintiff sustained injuries when his tractor-trailer ran over the object. Upon review of the evidence presented at trial, the magistrate found that it was more probably than not that defendant's negligence proximately caused plaintiff to suffer an injury at the L4/L5 level of his spine. As a result of that injury, plaintiff suffered significant pain in his lower back that radiated into his left leg underwent surgery and other medical treatment for which he incurred some expenses out-of-pocket and incurred lost wages while off work from approximately February 23, 2010 to October 16, 2010 or 34 weeks in total. However, plaintiff did not establish that a causal relationship existed between defendant's negligence and any ailments he experienced after October 16, 2010. Consequently, the magistrate calculated plaintiff's damages as follows: (1) lost wages in the amount of $35,345.04, representing 34 weeks of lost work (2) out-of-pocket medical expenses in the amount of $2,489.97, representing medical expenses incurred by plaintiff through October 2010 (3) past pain and suffering in the amount of $35,000 and, (4) the $25 filing fee plaintiff paid to commence this action. Lastly, the magistrate offset plaintiff's recovery by the amount of the settlement in his BWC claim ($40,000) and by the amount of the short-term disability income he received in 2010 ($10,939.20), for a total reduction of $50,939.20.", - "case_name_shorts": "Burnett" + "summaries": "Plaintiff brought an action for negligence alleging that while he was operating a tractor-trailer, a metal skid shoe broke off the bottom of a snow plow truck operated by defendant's employee, and, as a result, plaintiff sustained injuries when his tractor-trailer ran over the object. Upon review of the evidence presented at trial, the magistrate found that it was more probably than not that defendant's negligence proximately caused plaintiff to suffer an injury at the L4/L5 level of his spine. As a result of that injury, plaintiff suffered significant pain in his lower back that radiated into his left leg; underwent surgery and other medical treatment for which he incurred some expenses out-of-pocket; and incurred lost wages while off work from approximately February 23, 2010 to October 16, 2010 or 34 weeks in total. However, plaintiff did not establish that a causal relationship existed between defendant's negligence and any ailments he experienced after October 16, 2010. Consequently, the magistrate calculated plaintiff's damages as follows: (1) lost wages in the amount of $35,345.04, representing 34 weeks of lost work; (2) out-of-pocket medical expenses in the amount of $2,489.97, representing medical expenses incurred by plaintiff through October 2010; (3) past pain and suffering in the amount of $35,000; and, (4) the $25 filing fee plaintiff paid to commence this action. Lastly, the magistrate offset plaintiff's recovery by the amount of the settlement in his BWC claim ($40,000) and by the amount of the short-term disability income he received in 2010 ($10,939.20), for a total reduction of $50,939.20.", + "case_name_shorts": "Burnett", + "per_curiam": false }, { "case_dates": "2016-07-19", "case_names": "Waters v. Ohio State Univ.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5260.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5260.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2015-00457", "judges": "McGrath", "citations": "2016-Ohio-5260", - "summaries": "Civ.R. 12(C) defamation slander per se false light invasion of privacy. The court determined that qualified privilege applied to the Title IX Investigation Report, the press releases cited by plaintiff, and Dr. Drake's comments as cited by plaintiff. The court also found that plaintiff was a limited-purpose public figure. Further, the court concluded that a qualified privilege applied and served as a defense to plaintiff's allegation of false light invasion of privacy. Defendant was entitled to judgment on the pleadings with regard to all of plaintiff's claims.", - "case_name_shorts": "Waters" + "summaries": "Civ.R. 12(C); defamation; slander per se; false light invasion of privacy. The court determined that qualified privilege applied to the Title IX Investigation Report, the press releases cited by plaintiff, and Dr. Drake's comments as cited by plaintiff. The court also found that plaintiff was a limited-purpose public figure. Further, the court concluded that a qualified privilege applied and served as a defense to plaintiff's allegation of false light invasion of privacy. Defendant was entitled to judgment on the pleadings with regard to all of plaintiff's claims.", + "case_name_shorts": "Waters", + "per_curiam": false }, { "case_dates": "2016-07-12", "case_names": "Lill v. Ohio State Univ.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5502.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5502.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2015-00387", "judges": "Crawford", "citations": "2016-Ohio-5502", - "summaries": "Breach of contract conversion. Plaintiff was hired by defendant in 2008 as an associated professor, a tenure track position, in defendant's Department of Pathology in the College of Medicine. Plaintiff began the tenure review process in the summer of 2011. The department chair, college dean, Provost, University President, and the Board of Trustees were all against a tenure decision for plaintiff. Plaintiff appealed the tenure denial to the Committee on Academic Freedom and Responsibility (CAFR). After consideration, the CAFR found reasonable adequate grounds indicating that plaintiff's tenure evaluation was improper and thereby referred plaintiff's appeal to the University Faculty Hearing Committee. The Committee agreed with the CAFR's findings, and reported its findings to the university's then-Provost and the University's then-President. The Provost received the Committee's findings disagreed with them and confirmed his original finding that plaintiff's tenure should be denied, effectively resulting in plaintiff's termination. It is the steps, or lack thereof, taken by the Provost after the Committee issued its findings and recommendations that gave rise to plaintiff's claim for breach of contract and her related conversion claim. Prior to trial, the parties stipulated that plaintiff's employment contract consisted of her offer letter and various faculty incorporated rules, and the 2006 Department of Pathology AP&T Document. Upon review, the court found that the faculty rules did not grant the Provost authority to disregard the Committee's findings and not grant a new, fair and impartial evaluation. While \"new, fair and impartial\" were not defined, there was no evidence that the definition of these three terms were anything different from their common meaning. As the terms were not clear and unambiguous, the court found that defendant's failure to provide her with her contractual right to a new, fair and impartial evaluation constituted a breach of plaintiff's employment contract. However, the court agreed with defendant in that because of the unusual nature of the case, damages could not be proved with reasonable certainty at that juncture. Once the promised evaluation was held, the court could then determine an appropriate damage amount. Lastly, plaintiff claimed that when her employment with defendant university ended, it failed to return to her equipment she possessed and used in her research. The court found that the property in question was either owned by the sponsor or defendant, not by the plaintiff. The only way plaintiff could have a right to possess the equipment was to have the sponsor or defendant give her permission to take control of the property, which plaintiff did not obtain. As such, the court denied plaintiff's conversion claim.", - "case_name_shorts": "Lill" + "summaries": "Breach of contract; conversion. Plaintiff was hired by defendant in 2008 as an associated professor, a tenure track position, in defendant's Department of Pathology in the College of Medicine. Plaintiff began the tenure review process in the summer of 2011. The department chair, college dean, Provost, University President, and the Board of Trustees were all against a tenure decision for plaintiff. Plaintiff appealed the tenure denial to the Committee on Academic Freedom and Responsibility (CAFR). After consideration, the CAFR found reasonable adequate grounds indicating that plaintiff's tenure evaluation was improper and thereby referred plaintiff's appeal to the University Faculty Hearing Committee. The Committee agreed with the CAFR's findings, and reported its findings to the university's then-Provost and the University's then-President. The Provost received the Committee's findings; disagreed with them; and confirmed his original finding that plaintiff's tenure should be denied, effectively resulting in plaintiff's termination. It is the steps, or lack thereof, taken by the Provost after the Committee issued its findings and recommendations that gave rise to plaintiff's claim for breach of contract and her related conversion claim. Prior to trial, the parties stipulated that plaintiff's employment contract consisted of her offer letter and various faculty incorporated rules, and the 2006 Department of Pathology AP&T Document. Upon review, the court found that the faculty rules did not grant the Provost authority to disregard the Committee's findings and not grant a new, fair and impartial evaluation. While \"new, fair and impartial\" were not defined, there was no evidence that the definition of these three terms were anything different from their common meaning. As the terms were not clear and unambiguous, the court found that defendant's failure to provide her with her contractual right to a new, fair and impartial evaluation constituted a breach of plaintiff's employment contract. However, the court agreed with defendant in that because of the unusual nature of the case, damages could not be proved with reasonable certainty at that juncture. Once the promised evaluation was held, the court could then determine an appropriate damage amount. Lastly, plaintiff claimed that when her employment with defendant university ended, it failed to return to her equipment she possessed and used in her research. The court found that the property in question was either owned by the sponsor or defendant, not by the plaintiff. The only way plaintiff could have a right to possess the equipment was to have the sponsor or defendant give her permission to take control of the property, which plaintiff did not obtain. As such, the court denied plaintiff's conversion claim.", + "case_name_shorts": "Lill", + "per_curiam": false }, { "case_dates": "2016-06-22", "case_names": "Bentkowski v. Ohio Lottery Comm.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5222.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5222.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2014-00651", "judges": "McGrath", "citations": "2016-Ohio-5222", - "summaries": "Retaliation R.C. 411.02 trial. The court determined that plaintiff did not establish that his actions during his employment at the Ohio Lottery Commission were protected activity. Even if the court construed plaintiff's actions protected activity, he failed to establish that his alleged opposition was the but-for cause of his termination, as plaintiff's own complaint and affidavit stated that the reason for his termination was the bad media coverage regarding his reporting of crimes committed against him. Judgment rendered in favor of defendant.", - "case_name_shorts": "Bentkowski" + "summaries": "Retaliation; R.C. 411.02; trial. The court determined that plaintiff did not establish that his actions during his employment at the Ohio Lottery Commission were protected activity. Even if the court construed plaintiff's actions protected activity, he failed to establish that his alleged opposition was the but-for cause of his termination, as plaintiff's own complaint and affidavit stated that the reason for his termination was the bad media coverage regarding his reporting of crimes committed against him. Judgment rendered in favor of defendant.", + "case_name_shorts": "Bentkowski", + "per_curiam": false }, { "case_dates": "2016-06-20", "case_names": "Simmons v. Ohio Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5226.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5226.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -478,12 +514,13 @@ "judges": "Peterson", "citations": "2016-Ohio-5226", "summaries": "Negligence. Plaintiff, an inmate in the custody and control of defendant, brought an action for negligence alleging that a lighting fixture detached from the ceiling of his housing unit and fell on him, thereby causing injury. The issues of liability and damages were bifurcated and the case proceeded to trial on the issue of liability. Upon review of the evidence presented at trial, the magistrate determined that plaintiff did not demonstrate that defendant had actual notice that the lighting fixture would detach and fall from the ceiling. Indeed, no one who testified at trial was aware of lighting fixtures falling from the ceiling in the housing unit in question prior to the date of the accident. Plaintiff also failed to prove by a preponderance of the evidence that defendant had constructive notice that the lighting fixture would detach from the ceiling and fall. There was no evidence that the fixture was improperly installed or designed. While the building may have been aging, no witnesses testified that any other fixture appeared loose or that there were other fixtures in plaintiff's dormitory that had fallen prior to the date of the accident. Though plaintiff argued that the doctrine of res ipsa loquitor was applicable to the case, the magistrate found, however, that the fixture was not under the exclusive control of defendant. Instead, inmates would occasionally tamper with fixtures and the metal conduit piping to which the fixtures are attached in order to receive improved television signals. Consequently, the magistrate recommended judgment in defendant's favor.", - "case_name_shorts": "Simmons" + "case_name_shorts": "Simmons", + "per_curiam": false }, { "case_dates": "2016-06-20", "case_names": "Boyd v. Univ. of Toledo Med. Ctr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5225.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5225.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -491,12 +528,13 @@ "judges": "McGrath", "citations": "2016-Ohio-5225", "summaries": "Personal immunity. Plaintiff claimed that he had a brain shunt surgically implanted in his head shortly after his birth. Throughout his life, he experienced issues related to the shunt malfunctioning, which required frequent and ongoing medical treatment. One such issue occurred in summer of 2012, when plaintiff began experiencing severe headaches. A CT was performed and plaintiff alleged that Dr. Elsamaloty, defendant's employee, inaccurately read the CT. Later, the alleged misdiagnosis resulted in plaintiff suffering hemorrhaging, seizures, cardiac and respiratory arrests, all causing permanent injuries. Defendant filed a motion for summary judgment arguing that Dr. Elsamaloty, was entitled to personal immunity, pursuant to R.C. 9.86, because he was defendant's employee and working within the course and scope of his employment at the time he rendered medical care to plaintiff. The court noted that Dr. Elsamaloty was a full-time employee of the University of Toledo College of Medicine & Life Sciences and was working within the course and scope of his employment at the time he rendered care to plaintiff. Moreover, pursuant to the holding in Ries v. Ohio State Univ. Med. Ctr., 137 Ohio St.3d 151, 2013-Ohio-4545, 23, the court noted that it did not need determine whether Dr. Elsamaloty was engaged in teaching a medical student or resident at the time that he rendered medical care to plaintiff. Rather, the court only needed to determine whether his conduct was related to and promoted the state's interests. As such, the court found that based on an affidavit provided by defendant, Dr. Elsamaloty was engaged in conduct that furthered the interests of the University of Toledo at the time that he rendered care to plaintiff. Consequently, the court granted defendant's motion for summary judgment.", - "case_name_shorts": "Boyd" + "case_name_shorts": "Boyd", + "per_curiam": false }, { "case_dates": "2016-06-10", "case_names": "Howard v. Ohio Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5227.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5227.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -504,25 +542,27 @@ "judges": "McGrath", "citations": "2016-Ohio-5227", "summaries": "Negligence. Plaintiff was an inmate in defendant's custody and control. Plaintiff, a diabetic, who walked with the aid of a cane and had his arm in a sling, was walking to inmate health services (IHS) to get his blood checked. On his way to IHS, plaintiff slipped and fell on an accumulation of snow and ice in the walkway. The magistrate issued a judgment in plaintiff's favor and defendant filed objections. The court overruled defendant's first objection, because other than stating multiple times in its objections that there was no evidence that plaintiff was prevented from taking an alternative route to the infirmary, defendant did not provide any evidence contrary to plaintiff's testimony that inmates could only take one path to IHS. Furthermore, no snow removal was completed prior to the time plaintiff fell, and consequently, other routes available to plaintiff were likely snow covered. The court overruled defendant's second objection because the dangerous condition, which defendant had constructive notice of, was not simply an incline or decline in a path. Rather it was a bad spot that was \"swampy\" during wintertime and there was an accumulation of snow on the walk plaintiff was required to use. This posed an unreasonable risk to plaintiff because he ambulated with a cane, had his arm in a sling, and the court agreed with the magistrate that walking across an ice-covered depression posed an unreasonable risk of harm to plaintiff. Lastly, the court also overruled defendant's third objection. The court reviewed plaintiff's legal status and determined that the magistrate did not err in determining that plaintiff was not a traditional \"invitee\" and was not always free, as an invitee would be, to refrain from traversing the accumulation of ice and snow or assume the risk of doing so. Consequently, the court adopted the magistrate's prior decision and recommendation as its own.", - "case_name_shorts": "Howard" + "case_name_shorts": "Howard", + "per_curiam": false }, { "case_dates": "2016-06-10", "case_names": "Edwards v. Ohio Dept. of Transp.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5221.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5221.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2014-00553", "judges": "McGrath", "citations": "2016-Ohio-5221", - "summaries": "Negligence trespass nuisance statute of limitations discretionary immunity public duty surface water underground water indirect trespass. All of defendant's objections were overruled. The court determined that the magistrate was correct in determining that there was an insufficient flow of water in plaintiffs' ditch and ODOT did not adequately maintain the ditch along SR 86 in front of plaintiffs' property. The court adopted the magistrate's decision and recommendation as its own, including findings of fact and conclusions of law. Judgment on the issue of liability was rendered in favor of plaintiffs.", - "case_name_shorts": "Edwards" + "summaries": "Negligence; trespass; nuisance; statute of limitations; discretionary immunity; public duty; surface water; underground water; indirect trespass. All of defendant's objections were overruled. The court determined that the magistrate was correct in determining that there was an insufficient flow of water in plaintiffs' ditch and ODOT did not adequately maintain the ditch along SR 86 in front of plaintiffs' property. The court adopted the magistrate's decision and recommendation as its own, including findings of fact and conclusions of law. Judgment on the issue of liability was rendered in favor of plaintiffs.", + "case_name_shorts": "Edwards", + "per_curiam": false }, { "case_dates": "2016-06-01", "case_names": "Wantage v. Ohio Dev. Servs. Agency", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5224.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5224.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -530,90 +570,97 @@ "judges": "McGrath", "citations": "2016-Ohio-5224", "summaries": "Development Services Agency (ODSA), filed objections to a previous magistrate's decision, which recommended judgment in defendant's favor. The court reviewed plaintiff's objections and found that they did not satisfy the requirements of Civ.R. 53(D)(3)(b)(ii), which states that objections to a magistrate's decision \"shall be specific and state with particularity all grounds for objection.\" Plaintiff also failed to support his objections with a transcript of the proceeding pursuant to Civ.R. 53(D)(3)(b)(iii), despite objecting to the magistrate's factual findings. To the extent plaintiff challenged the magistrate's legal conclusions, the court reviewed the magistrate's decision and found that the conclusions were consistent with the law. Specifically, with regard to plaintiff's wrongful termination in violation of public policy claim, the court found that the \"cat's paw\" theory was not applicable to the case, because plaintiff was not a decision-maker with regard to any adverse employment actions taken at the ODSA. Consequently, the court adopted the magistrate's prior decision and recommendation as its own.", - "case_name_shorts": "Wantage" + "case_name_shorts": "Wantage", + "per_curiam": false }, { "case_dates": "2016-06-01", "case_names": "Ferrell v. Ohio State Hwy. Patrol", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5223.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-5223.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2015-01041", "judges": "McGrath", "citations": "2016-Ohio-5223", - "summaries": "Negligence public duty special relationship Civ.R. 12(C) R.C. 2743.02. The court determined that public duty immunity applied to this case, and plaintiff failed to demonstrate that a special relationship existed between defendant and plaintiff. Specifically, the court found that plaintiff's first amended complaint disclosed no allegation that he had any contact with agents of OSHP until he was located by a trooper. Defendant's motion for judgment on the pleadings was granted.", - "case_name_shorts": "Ferrell" + "summaries": "Negligence; public duty; special relationship; Civ.R. 12(C); R.C. 2743.02. The court determined that public duty immunity applied to this case, and plaintiff failed to demonstrate that a special relationship existed between defendant and plaintiff. Specifically, the court found that plaintiff's first amended complaint disclosed no allegation that he had any contact with agents of OSHP until he was located by a trooper. Defendant's motion for judgment on the pleadings was granted.", + "case_name_shorts": "Ferrell", + "per_curiam": false }, { "case_dates": "2016-05-24", "case_names": "Sheppard v. Ohio Bd. of Regents", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-3477.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-3477.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2015-01053", "judges": "McGrath", "citations": "2016-Ohio-3477", - "summaries": "Motion to dismiss Civ.R. 12(B)(6) employment discrimination R.C. 4112.02(A) defamation negligent supervision intentional infliction of emotional distress sexual harassment. The court determined that plaintiff failed to present sufficient evidence to support an inference of discriminatory intent based on race and gender. Further, plaintiff's complaint failed to support a prima facie case of discrimination because plaintiff did not suffer an adverse employment action - she was not an employee of defendant nor did she have a pending application for employment with defendant. Plaintiff's claim of defamation was barred by the one-year statute of limitations. Defendant's motion to dismiss was granted.", - "case_name_shorts": "Sheppard" + "summaries": "Motion to dismiss; Civ.R. 12(B)(6); employment discrimination; R.C. 4112.02(A); defamation; negligent supervision; intentional infliction of emotional distress; sexual harassment. The court determined that plaintiff failed to present sufficient evidence to support an inference of discriminatory intent based on race and gender. Further, plaintiff's complaint failed to support a prima facie case of discrimination because plaintiff did not suffer an adverse employment action - she was not an employee of defendant nor did she have a pending application for employment with defendant. Plaintiff's claim of defamation was barred by the one-year statute of limitations. Defendant's motion to dismiss was granted.", + "case_name_shorts": "Sheppard", + "per_curiam": false }, { "case_dates": "2016-05-12", "case_names": "Thomas v. Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-3476.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-3476.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2014-00731", "judges": "Van Schoyck", "citations": "2016-Ohio-3476", - "summaries": "Inmate assault battery negligence excessive use of force. The magistrate determined that any force used by defendant's employees on plaintiff was privileged and not excessive. Further, there was no medical records or testimony from medical professionals to substantiate plaintiff's alleged injuries. The magistrate found that plaintiff failed to prove a claim for assault, battery, or negligence based upon his allegations of excessive force. Judgment recommended in favor of defendant.", - "case_name_shorts": "Thomas" + "summaries": "Inmate; assault; battery; negligence; excessive use of force. The magistrate determined that any force used by defendant's employees on plaintiff was privileged and not excessive. Further, there was no medical records or testimony from medical professionals to substantiate plaintiff's alleged injuries. The magistrate found that plaintiff failed to prove a claim for assault, battery, or negligence based upon his allegations of excessive force. Judgment recommended in favor of defendant.", + "case_name_shorts": "Thomas", + "per_curiam": false }, { "case_dates": "2016-05-12", "case_names": "Keny v. Ohio State Univ.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-3475.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-3475.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2013-00711", "judges": "Crawford", "citations": "2016-Ohio-3475", - "summaries": "Summary judgment Civ.R. 56(B) life insurance employee benefit collateral estoppel breach of contract negligence economic loss doctrine. The court found that plaintiffs' claims were barred by collateral estoppel because it was necessary for the common pleas court and court of appeals to first determine that the beneficiary designation did not exist before it could conclude that Anthem did not breach its contract. Additionally, plaintiffs' negligence claims were barred by the economic loss doctrine. Summary judgment granted in favor of defendant.", - "case_name_shorts": "Keny" + "summaries": "Summary judgment; Civ.R. 56(B); life insurance; employee benefit; collateral estoppel; breach of contract; negligence; economic loss doctrine. The court found that plaintiffs' claims were barred by collateral estoppel because it was necessary for the common pleas court and court of appeals to first determine that the beneficiary designation did not exist before it could conclude that Anthem did not breach its contract. Additionally, plaintiffs' negligence claims were barred by the economic loss doctrine. Summary judgment granted in favor of defendant.", + "case_name_shorts": "Keny", + "per_curiam": false }, { "case_dates": "2016-05-10", "case_names": "Russell v. Cleveland State Univ.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-4678.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-4678.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2013-00138 & 2013-00139", "judges": "McGrath", "citations": "2016-Ohio-4678", - "summaries": "Age discrimination. The court found no error in the prior magistrate's decision and recommendation. Initially, the court noted that plaintiffs' objections were too long and exceeded the 15-page limitation pursuant to L.C.C.R. 4(E). Furthermore, the objections did not state with particularity all grounds pursuant to Civ.R. 53(D)(3)(b)(ii). As a result, the court identified three separate objections and ruled on them. With regard to direct evidence of age discrimination, the court held that plaintiffs' statistical evidence was insufficient to establish discriminatory intent. Furthermore, the magistrate properly determined that one plaintiff was a member of a collective bargaining unit and under that agreement, he was not eligible for any of the new positions, and consequently, his claim of age discrimination based on direct evidence failed. With regard to the second plaintiff, the court found that he did not provide any support for the bare allegations that placing a younger employee in a newly created position was direct evidence of age discrimination. While plaintiffs alleged that defendant's agent made discriminatory statements about them, the court found that the agent was only expressing concern that plaintiffs were not keeping with current changes in how a university could best serve its students. Lastly, the court overruled any objections related to indirect evidence and defendant university's legitimate, non-discriminatory reason for reorganization because plaintiffs failed establish how the reorganization decision was not legitimate. Next, the court held that plaintiffs failed provide evidence that defendant's agent made a decision to terminate plaintiffs many weeks prior to the reorganization decision. The court also held that the magistrate properly considered evidence produced at trial when determining that defendant's proposed reasons for termination were not pretexts for age discrimination. Moreover, the court noted that the magistrate properly identified each of the new positions created as a result of the reorganization noted that one plaintiff interviewed for an open position and was not selected and the other had the opportunity enter a new position but chose not to. As such, any objections related to pretext were overruled. Lastly, the court found that one plaintiff, with regard to his FMLA retaliation claim, testified that he \"put in for\" FMLA in early May 2012, but there was no other evidence to support his testimony. The court agreed with the magistrate that the plaintiff contacted a representative to request FMLA leave on August 30, 2012, but then failed to subsequently submit a required medical certification. Furthermore, while his request for FMLA leave and official notice of termination were only five days apart, the termination of his position, based on the evidence, was contemplated for at least four months prior. Consequently, any objections with regard to plaintiff's FMLA rights were overruled.", - "case_name_shorts": "Russell" + "summaries": "Age discrimination. The court found no error in the prior magistrate's decision and recommendation. Initially, the court noted that plaintiffs' objections were too long and exceeded the 15-page limitation pursuant to L.C.C.R. 4(E). Furthermore, the objections did not state with particularity all grounds pursuant to Civ.R. 53(D)(3)(b)(ii). As a result, the court identified three separate objections and ruled on them. With regard to direct evidence of age discrimination, the court held that plaintiffs' statistical evidence was insufficient to establish discriminatory intent. Furthermore, the magistrate properly determined that one plaintiff was a member of a collective bargaining unit and under that agreement, he was not eligible for any of the new positions, and consequently, his claim of age discrimination based on direct evidence failed. With regard to the second plaintiff, the court found that he did not provide any support for the bare allegations that placing a younger employee in a newly created position was direct evidence of age discrimination. While plaintiffs alleged that defendant's agent made discriminatory statements about them, the court found that the agent was only expressing concern that plaintiffs were not keeping with current changes in how a university could best serve its students. Lastly, the court overruled any objections related to indirect evidence and defendant university's legitimate, non-discriminatory reason for reorganization because plaintiffs failed establish how the reorganization decision was not legitimate. Next, the court held that plaintiffs failed provide evidence that defendant's agent made a decision to terminate plaintiffs many weeks prior to the reorganization decision. The court also held that the magistrate properly considered evidence produced at trial when determining that defendant's proposed reasons for termination were not pretexts for age discrimination. Moreover, the court noted that the magistrate properly identified each of the new positions created as a result of the reorganization; noted that one plaintiff interviewed for an open position and was not selected; and the other had the opportunity enter a new position but chose not to. As such, any objections related to pretext were overruled. Lastly, the court found that one plaintiff, with regard to his FMLA retaliation claim, testified that he \"put in for\" FMLA in early May 2012, but there was no other evidence to support his testimony. The court agreed with the magistrate that the plaintiff contacted a representative to request FMLA leave on August 30, 2012, but then failed to subsequently submit a required medical certification. Furthermore, while his request for FMLA leave and official notice of termination were only five days apart, the termination of his position, based on the evidence, was contemplated for at least four months prior. Consequently, any objections with regard to plaintiff's FMLA rights were overruled.", + "case_name_shorts": "Russell", + "per_curiam": false }, { "case_dates": "2016-05-03", "case_names": "Louscher v. Univ. of Akron", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-4679.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-4679.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2015-00212", "judges": "McGrath", "citations": "2016-Ohio-4679", - "summaries": "Defamation intentional infliction of emotional distress negligent supervision and retention. Plaintiff alleged that defendant university's dean of the college of engineering harassed her, obstructed her work, made false statements about her, and subjected her to humiliation, emotional distress, and mental anguish. Defendant filed a motion for summary judgment arguing that plaintiff's defamation claim was barred by the applicable statute of limitations. Defendant further asserted that plaintiff failed to state a claim for both intentional infliction of emotional distress and negligent hiring and retention. Construing the evidence most strongly in plaintiff's favor, the court found that the dean made statements about plaintiff on February 12, 2012 and she did not file her claim until March 17, 2015. Consequently, any claims about the dean's statements were barred by the one-year statute of limitations. However, the court also found that defendant was not entitled to summary judgment for any statements the dean made about plaintiff after March 17, 2014. Next, the court found that reasonable minds could reach different conclusions as to whether the dean knew or should have known that his actions would result in serious emotional distress to plaintiff, and whether his conduct was extreme and outrageous. Therefore, defendant was not entitled to summary judgment on the intentional infliction of emotional distress claim. Lastly, with regard to plaintiff's claim that defendant negligently hired and retained the dean, the court found that plaintiff did not bring forward facts from which a reasonable factfinder could infer that the dean was not competent. Although his actions could be found unprofessional, obstructionist, and adversarial toward plaintiff, the only reasonable conclusion was that he was competent to be a dean of the college of engineering.", - "case_name_shorts": "Louscher" + "summaries": "Defamation; intentional infliction of emotional distress; negligent supervision and retention. Plaintiff alleged that defendant university's dean of the college of engineering harassed her, obstructed her work, made false statements about her, and subjected her to humiliation, emotional distress, and mental anguish. Defendant filed a motion for summary judgment arguing that plaintiff's defamation claim was barred by the applicable statute of limitations. Defendant further asserted that plaintiff failed to state a claim for both intentional infliction of emotional distress and negligent hiring and retention. Construing the evidence most strongly in plaintiff's favor, the court found that the dean made statements about plaintiff on February 12, 2012 and she did not file her claim until March 17, 2015. Consequently, any claims about the dean's statements were barred by the one-year statute of limitations. However, the court also found that defendant was not entitled to summary judgment for any statements the dean made about plaintiff after March 17, 2014. Next, the court found that reasonable minds could reach different conclusions as to whether the dean knew or should have known that his actions would result in serious emotional distress to plaintiff, and whether his conduct was extreme and outrageous. Therefore, defendant was not entitled to summary judgment on the intentional infliction of emotional distress claim. Lastly, with regard to plaintiff's claim that defendant negligently hired and retained the dean, the court found that plaintiff did not bring forward facts from which a reasonable factfinder could infer that the dean was not competent. Although his actions could be found unprofessional, obstructionist, and adversarial toward plaintiff, the only reasonable conclusion was that he was competent to be a dean of the college of engineering.", + "case_name_shorts": "Louscher", + "per_curiam": false }, { "case_dates": "2016-04-22", "case_names": "Smith v. Ohio Dept. of Rehab. & Corr.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-3149.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-3149.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -621,12 +668,13 @@ "judges": "Van Schoyck", "citations": "2016-Ohio-3149", "summaries": "Negligence. Plaintiff brought this action for negligence arising out of allegations that, while he was an inmate in the custody and control of defendant, his hand was injured by a corrections officer (CO) and he did not receive timely medical care. The issues of damages and liability were bifurcated. After reviewing the evidence presented at trial, the magistrate adduced that the CO did use force against plaintiff. Next, the magistrate noted that because video evidence did not establish the exact details of what happened, determining the facts required careful consideration and weighing of plaintiff's and the CO's testimony. In that regard, plaintiff offered a more persuasive, direct, and consistent account of what occurred than the CO, whose testimony came across as somewhat evasive or defensive at times. However, plaintiff did not present enough evidence about his claim that defendant failed to provide him with medical treatment until ten days after the incident. Consequently, the magistrate held that plaintiff proved his negligence claim by a preponderance of the evidence as to the CO's use of force, but did not establish any negligence relative to his claim of delayed or untimely medical care.", - "case_name_shorts": "" + "case_name_shorts": "", + "per_curiam": false }, { "case_dates": "2016-04-20", "case_names": "Nnazor v. Cent. State Univ.", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-3151.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-3151.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, @@ -634,19 +682,21 @@ "judges": "McGrath", "citations": "2016-Ohio-3151", "summaries": "Breach of contract. Plaintiff asserted that defendant breached his contract of employment when it unilaterally reduced his salary. Specifically, he alleged that he was never informed that if he were no longer a dean, his salary as a tenured professor would be reduced. Defendant argued that plaintiff failed to state a claim for breach of contract. Upon review the court found that plaintiff's employment as a professor was governed by a collective bargaining agreement (CBA), the policies of which governed his salary. Plaintiff acknowledged that he knew that the CBA would govern his position as a professor when he resigned from the dean position. Consequently, plaintiff failed to identify any contractual provision that defendant breached and as a result, judgment rendered in defendant's favor.", - "case_name_shorts": "Nnazor" + "case_name_shorts": "Nnazor", + "per_curiam": false }, { "case_dates": "2016-04-15", "case_names": "Patel v. Univ. of Toledo", - "download_urls": "http://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-3153.pdf", + "download_urls": "https://www.supremecourt.ohio.gov/rod/docs/pdf/13/2016/2016-Ohio-3153.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "2015-00228", "judges": "McGrath", "citations": "2016-Ohio-3153", - "summaries": "Breach of contract unjust enrichment/promissory estoppel tort claims breach of fiduciary duty negligent misrepresentation fraud negligence. Plaintiff alleged various claims arising from her enrollment in defendant's Bachelor of Science in Nursing to Doctor of nursing program (BSN-DNP). During this time, the BSN-DNP program was pending accreditation by the national accrediting organization for college nursing programs. Defendant contended that plaintiff's rights as a student in the program were contractual in nature and that the contract did not support any of her claims. The court held that plaintiff failed to prove her breach of contract claim, because she was aware that defendant's BSN-DNP program was not accredited and she did not allege that the terms of defendant's handbook, catalog, or other guideline suggested that the program had been accredited before she enrolled or that it would be accredited before she graduated. Because plaintiff's relationship with defendant was contractual and all of her tort claims arose from the same court of events, she could not sustain those claims. Moreover, the relationship between plaintiff and defendant regarding the accreditation status was purely contractual and no fiduciary relationship existed. Next, plaintiff's unjust enrichment/promissory estoppel and negligent representation claims failed because defendant's agent, even if he made promises or comments to plaintiff that the program would be accredited prior to her graduation, had no authority to do so and plaintiff could not have justifiably relied on those comments. Moreover, her fraud claim failed because she did not offer any proof of fraudulent intent on the part of defendant's agent. Lastly, her negligence claim failed because she could not demonstrate tangible harm to herself though she sought to recover economic loss. In sum, the court found that there were no genuine issues of material fact and granted defendant's motion for summary judgment", - "case_name_shorts": "Patel" + "summaries": "Breach of contract; unjust enrichment/promissory estoppel; tort claims; breach of fiduciary duty; negligent misrepresentation; fraud; negligence. Plaintiff alleged various claims arising from her enrollment in defendant's Bachelor of Science in Nursing to Doctor of nursing program (BSN-DNP). During this time, the BSN-DNP program was pending accreditation by the national accrediting organization for college nursing programs. Defendant contended that plaintiff's rights as a student in the program were contractual in nature and that the contract did not support any of her claims. The court held that plaintiff failed to prove her breach of contract claim, because she was aware that defendant's BSN-DNP program was not accredited and she did not allege that the terms of defendant's handbook, catalog, or other guideline suggested that the program had been accredited before she enrolled or that it would be accredited before she graduated. Because plaintiff's relationship with defendant was contractual and all of her tort claims arose from the same court of events, she could not sustain those claims. Moreover, the relationship between plaintiff and defendant regarding the accreditation status was purely contractual and no fiduciary relationship existed. Next, plaintiff's unjust enrichment/promissory estoppel and negligent representation claims failed because defendant's agent, even if he made promises or comments to plaintiff that the program would be accredited prior to her graduation, had no authority to do so and plaintiff could not have justifiably relied on those comments. Moreover, her fraud claim failed because she did not offer any proof of fraudulent intent on the part of defendant's agent. Lastly, her negligence claim failed because she could not demonstrate tangible harm to herself though she sought to recover economic loss. In sum, the court found that there were no genuine issues of material fact and granted defendant's motion for summary judgment", + "case_name_shorts": "Patel", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ohioctcl_beginningofyear_example.html b/tests/examples/opinions/united_states/ohioctcl_beginningofyear_example.html index 95c08de00..997137aa6 100644 --- a/tests/examples/opinions/united_states/ohioctcl_beginningofyear_example.html +++ b/tests/examples/opinions/united_states/ohioctcl_beginningofyear_example.html @@ -1,7 +1,7 @@ - - + + Opinion Search @@ -108,7 +108,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    Opinion Search Filter Settings
    - Use standard search logic for the Opinion Text Search (full-text search). To search the entire web site click here + Use standard search logic for the Opinion Text Search (full-text search). To search the entire web site click here @@ -413,7 +413,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Hunter v. Bur. of Workers' Comp. @@ -425,7 +425,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Jutte Elec., Ltd. v. Ohio Facilities Constr. Comm. @@ -437,7 +437,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Hernandez v. Ohio Dept. of Rehab. & Corr. @@ -449,7 +449,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Mezey v. Ohio Dev. Servs. Agency @@ -461,7 +461,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Good v. Ohio Dept. of Rehab. & Corr. @@ -473,7 +473,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Accurate Elec. Constr., Inc. v. Ohio State Univ. @@ -485,7 +485,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Skorvanek v. Ohio Dept. of Rehab. & Corr. @@ -497,7 +497,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Johnson v. Ohio Dept. of Rehab. & Corr. @@ -509,7 +509,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Cameron v. Univ. of Toledo @@ -521,7 +521,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Colville v. Ohio Dept. of Rehab. & Corr. @@ -533,7 +533,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Brooks v. Dept. of Rehab. & Corr. @@ -545,7 +545,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Welser v. Ohio Dept. of Rehab. & Corr. @@ -557,7 +557,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Hughes v. Ohio Dept. of Rehab. & Corr. @@ -569,7 +569,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Ceglia v. Youngstown State Univ. @@ -581,7 +581,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Mezey v. Ohio Dev. Servs. Agency @@ -593,7 +593,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Stadtler v. Ohio Dept. of Transp. @@ -605,7 +605,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Stadtler v. Ohio Dept. of Transp. @@ -617,7 +617,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Yurkowski v. Univ. of Cincinnati @@ -629,7 +629,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Williams v. Univ. of Akron @@ -641,7 +641,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Byrd v. Supreme Court of Ohio @@ -653,7 +653,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Dodge v. Ohio Dept. of Natural Resources @@ -665,7 +665,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Early v. Ohio Dept. of Natural Resources @@ -677,7 +677,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Hohenstein v. Ohio Veterans Home @@ -689,7 +689,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Phillips v. Ohio Dept. of Rehab. & Corr. @@ -701,7 +701,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + United Young People Assn. v. Ohio Expositions Comm. @@ -713,7 +713,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + A&H Grocery, L.L.C. v. Ohio Dept. of Health @@ -725,7 +725,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Wood Elec., Inc. v. Ohio Facilities Constr. Comm. @@ -737,7 +737,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Hendrickson v. Ohio Dept. of Rehab. & Corr. @@ -749,7 +749,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Wright v. S.E.A.R.C.H. @@ -761,7 +761,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Milburn-Shook v. Ohio State Hwy. Patrol @@ -773,7 +773,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Suburban Maintenance & Constr. v. Ohio Dept. of Transp. @@ -785,7 +785,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Humphrey v. Ohio Dept. of Rehab. & Corr. @@ -797,7 +797,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Burnett v. Ohio Dept. of Transp. @@ -809,7 +809,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Waters v. Ohio State Univ. @@ -821,7 +821,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Lill v. Ohio State Univ. @@ -833,7 +833,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Bentkowski v. Ohio Lottery Comm. @@ -845,7 +845,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Boyd v. Univ. of Toledo Med. Ctr. @@ -857,7 +857,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Simmons v. Ohio Dept. of Rehab. & Corr. @@ -869,7 +869,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Howard v. Ohio Dept. of Rehab. & Corr. @@ -881,7 +881,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Edwards v. Ohio Dept. of Transp. @@ -893,7 +893,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Ferrell v. Ohio State Hwy. Patrol @@ -905,7 +905,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Wantage v. Ohio Dev. Servs. Agency @@ -917,7 +917,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Sheppard v. Ohio Bd. of Regents @@ -929,7 +929,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Keny v. Ohio State Univ. @@ -941,7 +941,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Thomas v. Dept. of Rehab. & Corr. @@ -953,7 +953,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Russell v. Cleveland State Univ. @@ -965,7 +965,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Louscher v. Univ. of Akron @@ -977,7 +977,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Smith v. Ohio Dept. of Rehab. & Corr. @@ -989,7 +989,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Nnazor v. Cent. State Univ. @@ -1001,7 +1001,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    - + Patel v. Univ. of Toledo @@ -1029,7 +1029,7 @@

    The Supreme Court of Ohio & The Ohio Judicial System

    + + +
    +
    + + + +
    +
    + + + + + +
    +
    + +
    +
    + + + + + +
    +
    + + +
    + + + +
    + +
    + + +
    + +
    + + +
    + + + +
    +
    +
    + +
    +
    + +
    +
    + +
    + + + +
    +

    +
    +
    + +
    +
    + +

    + +

    +
    + + + + +
    + + +
    + +

    + +

    + +
    +
    + + + +
    +
    +
    +
    + +
    + +
    + +
    +

    Opinions

    +
    + + +
    +
    + + + +
    +
    + +
    +
    +
    + + +
    + +
    +
    +
    +
    + +
    +
    + +
    + +
    + + +
    +
    + +
    +
    + +
    +
    +
    +
    + + + + + + + + + + + + + + + + + +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/or_example.compare.json b/tests/examples/opinions/united_states/or_example.compare.json index fc3cde1d7..e9ecfab03 100644 --- a/tests/examples/opinions/united_states/or_example.compare.json +++ b/tests/examples/opinions/united_states/or_example.compare.json @@ -1,562 +1,212 @@ [ { - "case_dates": "2019-02-07", - "case_names": "State v. Taylor", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S062310.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S062310", - "case_name_shorts": "Taylor" - }, - { - "case_dates": "2019-02-07", - "case_names": "State v. Banks", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065180.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065180", - "case_name_shorts": "Banks" - }, - { - "case_dates": "2019-02-07", - "case_names": "Shriners Hospitals for Children v. Cox", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064390.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064390", - "case_name_shorts": "Cox" - }, - { - "case_dates": "2019-01-31", - "case_names": "State v. Vallin", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065957.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065957", - "case_name_shorts": "Vallin" - }, - { - "case_dates": "2019-01-31", - "case_names": "Jackson v. Franke", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064876.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064876", - "case_name_shorts": "Franke" - }, - { - "case_dates": "2019-01-25", - "case_names": "DISH Network Corp. v. Dept. of Rev.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065019.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065019", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-17", - "case_names": "J. M. v. Oregon Youth Authority", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065487.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065487", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-10", - "case_names": "Oregon Trucking Assns. v. Dept. of Transportation", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065529.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065529", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-13", - "case_names": "Uherbelau v. Rosenblum (Ballot Title)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20181213.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066267", - "case_name_shorts": "Uherbelau" - }, - { - "case_dates": "2018-12-13", - "case_names": "State v. Sholedice/Smith", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064787.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064787", - "case_name_shorts": "Sholedice/Smith" - }, - { - "case_dates": "2018-12-13", - "case_names": "State v. Lacey", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064616.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064616", - "case_name_shorts": "Lacey" - }, - { - "case_dates": "2018-12-13", - "case_names": "In re Maurer", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064901.pdf", + "case_dates": "2024-10-03", + "case_names": "Benjamin v. O'Donnell", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/12488/download", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S064901", - "case_name_shorts": "In re Maurer" + "dispositions": "The petition for a writ of habeas corpus is denied.", + "docket_numbers": "S070313", + "judges": "Duncan", + "lower_court_numbers": "", + "citations": "372 Or 764", + "case_name_shorts": "Benjamin", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "State v. Warren", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065338.pdf", + "case_dates": "2024-09-26", + "case_names": "State v. Giron-Cortez", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/12440/download", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S065338", - "case_name_shorts": "Warren" + "dispositions": "The decision of the Court of Appeals is reversed. The judgment of conviction is reversed in part, and the case is remanded to the circuit court for entry of conviction for the lesser-included offense of fourth-degree assault under ORS 163.160(1)(a) and for resentencing consistent with this opinion.", + "docket_numbers": "S069941", + "judges": "Masih", + "lower_court_numbers": "A173814 ; A173815", + "citations": "372 Or 729", + "case_name_shorts": "Giron-Cortez", + "per_curiam": false }, { - "case_dates": "2018-12-06", - "case_names": "State v. Stevens", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065140.pdf", + "case_dates": "2024-09-19", + "case_names": "State v. Herring", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/12405/download", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S065140", - "case_name_shorts": "Stevens" + "dispositions": "The petition for review is allowed.", + "docket_numbers": "S070999", + "judges": "", + "lower_court_numbers": "A174188", + "citations": "372 Or 727", + "case_name_shorts": "Herring", + "per_curiam": true }, { - "case_dates": "2018-12-06", - "case_names": "State v. Kimbrough", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064985.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064985", - "case_name_shorts": "Kimbrough" - }, - { - "case_dates": "2018-12-06", - "case_names": "State v. Jackson", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065372.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065372", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-06", - "case_names": "Dept. of Human Services v. S. J. M.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064763.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064763", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-08", - "case_names": "Work v. Dept. of Rev.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065202.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065202", - "case_name_shorts": "Work" - }, - { - "case_dates": "2018-11-08", - "case_names": "United States v. Lawrence (Certified Questions Accepted)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20181116.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066187", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-08", - "case_names": "State v. Bement", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064956.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064956", - "case_name_shorts": "Bement" - }, - { - "case_dates": "2018-11-08", - "case_names": "Seneca Sustainable Energy, LLC v. Dept. of Rev.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064613.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064613", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-08", - "case_names": "Fredrickson v. Starbucks Corp.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065165.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065165", - "case_name_shorts": "Fredrickson" - }, - { - "case_dates": "2018-10-25", - "case_names": "State v. Miller", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064136A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064136", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-25", - "case_names": "Gist v. Zoan Management, Inc.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064925.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064925", - "case_name_shorts": "Gist" - }, - { - "case_dates": "2018-10-04", - "case_names": "State v. Madden", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064760.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-15", + "case_names": "State v. Blackmon", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/12360/download", + "precedential_statuses": "Unknown", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S064760", - "case_name_shorts": "Madden" + "dispositions": "placeholder disposition", + "docket_numbers": "S070836", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "372 Or 695", + "case_name_shorts": "Blackmon", + "per_curiam": false }, { - "case_dates": "2018-10-04", - "case_names": "Farmer v. Premo", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065259.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-08", + "case_names": "State v. Ortiz", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/12312/download", + "precedential_statuses": "Unknown", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S065259", - "case_name_shorts": "Farmer" + "dispositions": "placeholder disposition", + "docket_numbers": "S070216", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "372 Or 658", + "case_name_shorts": "Ortiz", + "per_curiam": false }, { - "case_dates": "2018-09-20", - "case_names": "State v. Dulfu", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064569.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-08", + "case_names": "In re Flint", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/12279/download", + "precedential_statuses": "Unknown", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S064569", - "case_name_shorts": "Dulfu" + "dispositions": "placeholder disposition", + "docket_numbers": "S071223", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "372 Or", + "case_name_shorts": "In re Flint", + "per_curiam": false }, { - "case_dates": "2018-09-13", - "case_names": "In re Bertoni", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064820.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-07-25", + "case_names": "State v. Davis", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/12204/download", + "precedential_statuses": "Unknown", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S064820", - "case_name_shorts": "In re Bertoni" + "dispositions": "placeholder disposition", + "docket_numbers": "S069688", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "372 Or 618", + "case_name_shorts": "Davis", + "per_curiam": false }, { - "case_dates": "2018-09-13", - "case_names": "Hodges v. Oak Tree Realtors, Inc.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065530.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-07-25", + "case_names": "In re Munn", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/12234/download", + "precedential_statuses": "Unknown", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S065530", - "case_name_shorts": "Hodges" + "dispositions": "placeholder disposition", + "docket_numbers": "S070455", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "372 Or 589", + "case_name_shorts": "In re Munn", + "per_curiam": false }, { - "case_dates": "2018-08-23", - "case_names": "Ransom v. Radiology Specialists of the Northwest", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064309.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-07-11", + "case_names": "State v. Soto", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/12091/download", + "precedential_statuses": "Unknown", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S064309", - "case_name_shorts": "Ransom" + "dispositions": "placeholder disposition", + "docket_numbers": "S069907", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "372 Or 561", + "case_name_shorts": "Soto", + "per_curiam": false }, { - "case_dates": "2018-08-16", - "case_names": "State v. Langley", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S062353.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S062353", - "case_name_shorts": "Langley" - }, - { - "case_dates": "2018-08-16", - "case_names": "Comcast Corp. v. Dept. of Rev.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064698.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064698", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-09", - "case_names": "State v. Bliss", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064926.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064926", - "case_name_shorts": "Bliss" - }, - { - "case_dates": "2018-08-09", - "case_names": "Capital One Auto Finance, Inc. v. Dept. of Rev.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064803.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064803", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-09", - "case_names": "Bogle v. State of Oregon", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065280.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065280", - "case_name_shorts": "Bogle" - }, - { - "case_dates": "2018-08-02", - "case_names": "State v. Anderson", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064633.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064633", - "case_name_shorts": "Anderson" - }, - { - "case_dates": "2018-08-02", - "case_names": "AAA Oregon/Idaho Auto Source v. Dept. of Rev.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065394.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065394", - "case_name_shorts": "" - }, - { - "case_dates": "2018-07-26", - "case_names": "State v. Miller", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064136.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064136", - "case_name_shorts": "" - }, - { - "case_dates": "2018-07-26", - "case_names": "State v. Fonte", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065012.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065012", - "case_name_shorts": "Fonte" - }, - { - "case_dates": "2018-07-26", - "case_names": "Coos Waterkeeper v. Port of Coos Bay", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064934.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064934", - "case_name_shorts": "" - }, - { - "case_dates": "2018-07-19", - "case_names": "State v. Henley", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064494.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064494", - "case_name_shorts": "Henley" - }, - { - "case_dates": "2018-07-05", - "case_names": "Trinity v. Apex Directional Drilling LLC", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065147.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065147", - "case_name_shorts": "Trinity" - }, - { - "case_dates": "2018-07-05", - "case_names": "State v. Hamann", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064546.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064546", - "case_name_shorts": "Hamann" - }, - { - "case_dates": "2018-07-05", - "case_names": "State v. Bray", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064843.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064843", - "case_name_shorts": "Bray" - }, - { - "case_dates": "2018-06-28", - "case_names": "State v. Mansor", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064382.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064382", - "case_name_shorts": "Mansor" - }, - { - "case_dates": "2018-06-28", - "case_names": "Starrett v. Rosenblum (Ballot Title)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20180628.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066010", - "case_name_shorts": "Starrett" - }, - { - "case_dates": "2018-06-27", - "case_names": "Beyer v. Rosenblum", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065981.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065981", - "case_name_shorts": "Beyer" - }, - { - "case_dates": "2018-06-21", - "case_names": "State v. Swan", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064016.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064016", - "case_name_shorts": "Swan" - }, - { - "case_dates": "2018-06-21", - "case_names": "Shearer's Foods v. Hoffnagle", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065049.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065049", - "case_name_shorts": "Hoffnagle" - }, - { - "case_dates": "2018-06-07", - "case_names": "State v. Maximo (Certified Appeal)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20180612.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065957", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-07", - "case_names": "Miller v. Ford Motor Co.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065010.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065010", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-07", - "case_names": "Barrie v. Rosenblum (Ballot Title)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20180612.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-07-05", + "case_names": "State v. Taylor", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/12035/download", + "precedential_statuses": "Unknown", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S065980", - "case_name_shorts": "Barrie" + "dispositions": "placeholder disposition", + "docket_numbers": "S070387", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "372 Or 536", + "case_name_shorts": "Taylor", + "per_curiam": false }, { - "case_dates": "2018-05-24", - "case_names": "In re Webb", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064798.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-20", + "case_names": "Santa Fe Natural Tobacco Co. v. Dept. of Rev.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/11982/download", + "precedential_statuses": "Unknown", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S064798", - "case_name_shorts": "In re Webb" + "dispositions": "placeholder disposition", + "docket_numbers": "S069820", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "372 Or 509", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2018-05-24", - "case_names": "In re Klemp", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064893.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-13", + "case_names": "State v. Meiser", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/11903/download", + "precedential_statuses": "Unknown", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S064893", - "case_name_shorts": "In re Klemp" + "dispositions": "placeholder disposition", + "docket_numbers": "S070059", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "372 Or 438", + "case_name_shorts": "Meiser", + "per_curiam": false }, { - "case_dates": "2018-05-18", - "case_names": "Markley/Lutz v. Rosenblum (Ballot Title)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20180518.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-13", + "case_names": "State v. Autele", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/11924/download", + "precedential_statuses": "Unknown", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S065551/52", - "case_name_shorts": "Markley/Lutz" + "dispositions": "placeholder disposition", + "docket_numbers": "S070046", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "372 Or 489", + "case_name_shorts": "Autele", + "per_curiam": false }, { - "case_dates": "2018-05-10", - "case_names": "Kinkel v. Persson", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S063943.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-06-06", + "case_names": "Chung v. Rosenblum", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll3/id/11851/download", + "precedential_statuses": "Unknown", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "S063943", - "case_name_shorts": "Kinkel" + "dispositions": "placeholder disposition", + "docket_numbers": "S070965", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "372 Or 422", + "case_name_shorts": "Chung", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/or_example.html b/tests/examples/opinions/united_states/or_example.html deleted file mode 100644 index 71049d7e7..000000000 --- a/tests/examples/opinions/united_states/or_example.html +++ /dev/null @@ -1,985 +0,0 @@ - - - - - - - - - - Oregon Judicial Department : Supreme Court Opinions : Supreme Court Opinions : State of Oregon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - Skip to main content - - - - -
    -
    - - - - - - -
    - - - - - - - - - - -
    - - - - - - - - - -
    -
    - - -
    -
    - - -
    - -
    - -

    - - Supreme Court Opinions -

    -
    -
    - - - - - -
    - - - -
    - - - - - - - - - - - -
    -
    -
    -
    -
    View additional Supreme Court opinions in the Opinions Digital Collection.
    - - - - -
    Tips: -
      -
    • Click the page icon to open the opinion immediately in a PDF viewer. (Note this will open a new tab in your web browser).
    • -
    • Click the case number to open the opinion in the State of Oregon Law Library Digital Collection. Search results are based on the case number and will display any documents associated with the case that are available.
    • -
    • Click on the date to access the weekly opinions in the digital collection.
    • -
    -
    - - -

    2019: January - - -

    -

    2018: May, June, July, August, September, October, November, December

    - -

    Advance Sheets 2019 # 04

    - - -

    02/07/2019

    -
      -
    • 364 Or 332 (S065180) State v. Banks
    • - -
    • 364 Or 364 (S062310) State v. Taylor
    • - -
    • 364 Or 394 (S064390) Shriners Hospitals for Children v. Cox
    • -
    - -

    01/31/2019

    -
      -
    • 364 Or 295 (S065957) State v. Vallin
    • - - -
    • 364 Or 312 (S064876) Jackson v. Franke
    • -
    - -
    - -

    Advance Sheets 2019 # 03

    -

    01/25/2019

    -
      -
    • 364 Or 254 (S065019) DISH Network Corp. v. Dept. of Rev.
    • -
    - -
    - -

    01/17/2019

    -
      -
    • 364 Or 232 (S065487) J. M. v. Oregon Youth Authority
    • -
    - -
    - -

    Advance Sheets 2019 # 01

    -

    01/10/2019

    -
      - -
    • 364 Or 210 (S065529) Oregon Trucking Assns. v. Dept. of Transportation
    • -
    - -
    - -

    Advance Sheets 2018 # 27

    -

    12/13/2018

    -
      - -
    • 364 Or 146 (S064787) State v. Sholedice/Smith
    • - -
    • 364 Or 171 (S064616) State v. Lacey
    • - -
    • 364 Or 190 (S064901) In re Maurer
    • - -
    • 364 Or 208 (S066267) Uherbelau v. Rosenblum (Ballot Title)
    • -
    - - -

    12/06/2018

    -
      -
    • 364 Or 1 (S065372) State v. Jackson
    • - -
    • 364 Or 37 (S064763) Dept. of Human Services v. S. J. M.
    • - -
    • 364 Or 66 (S064985) State v. Kimbrough
    • - -
    • 364 Or 91 (S065140) State v. Stevens
    • - -
    • 364 Or 105 (S065338) State v. Warren
    • -
    - -
    - -

    Advance Sheets 2018 # 25

    -

    11/08/2018

    -
      -
    • 363 Or 745 (S065202) Work v. Dept. of Rev.
    • -
    • 363 Or 760 (S064956) State v. Bement
    • -
    • 363 Or 782 (S064613) Seneca Sustainable Energy, LLC v. Dept. of Rev.
    • -
    • 363 Or 810 (S065165) Fredrickson v. Starbucks Corp.
    • -
    • 363 Or 816 (S066187) United States of America v. Lawrence (Certified Questions Accepted)
    • -
    - - -
    - - -

    Advance Sheets 2018 # 24

    - -

    10/25/2018

    -
      -
    • 363 Or 729 (S064925) Gist v. Zoan Management, Inc.
    • - -
    • 363 Or 742 (S064136) State v. Miller
    • -
    - - -
    - -

    Advance Sheets 2018 # 22

    - -

    10/04/2018

    -
      -
    • 363 Or 679 (S065259) Farmer v. Premo
    • - -
    • 363 Or 703 (S064760) State v. Madden
    • -
    - -
    - -

    Advance Sheets 2018 # 21

    - -

    09/20/2018

    - -
      - -
    • 363 Or 647 (S064569) State v. Dulfu
    • -
    - - -

    09/13/2018

    - -
      -
    • 363 Or 601 (S065530) Hodges v. Oak Tree Realtors, Inc.
    • -
    • 363 Or 614 (S064820) In re Bertoni
    • -
    - -
    - -

    Advance Sheets 2018 # 19

    - -

    8/23/2018

    -
      -
    • 363 Or 552 (S064309) Ransom v. Radiology Specialists of the Northwest
    • -
    - -

    8/16/2018

    -
      -
    • 363 Or 482 (S062353) State v. Langley
    • -
    • 363 Or 537 (S064698) Comcast Corp. v. Dept. of Rev.
    • -
    - -
    - -

    Advance Sheets 2018 # 18

    - -

    8/09/2018

    -
      -
    • 363 Or 426 (S064926) State v. Bliss
    • -
    • 363 Or 441 (S064803) Capital One Auto Finance, Inc. v. Dept. of Rev.
    • -
    • 363 Or 455 (S065280) Bogle v. State of Oregon
    • -
    - - - - - -

    8/02/2018

    -
      - -
    • 363 Or 392 (S064633) State v. Anderson
    • - -
    • 363 Or 411 (S065394) AAA Oregon/Idaho Auto Source v. Dept. of Rev.
    • -
    -
    - -

    Advance Sheets 2018 # 17

    - - -

    7/26/2018

    -
      -
    • 363 Or 327 (S065012) State v. Fonte
    • -
    • 363 Or 354 (S064934) Coos Waterkeeper v. Port of Coos Bay
    • -
    • 363 Or 374 (S064136) State v. Miller
    • -
    - - - - - -

    7/19/2018

    -
      -
    • 363 Or 284 (S064494) State v. Henley
    • -
    - - -
    - -

    Advance Sheets 2018 # 16

    - -

    7/05/2018

    -
      -
    • 363 Or 226 (S064843) State v. Bray
    • - -
    • 363 Or 257 (S065147) Trinity v. Apex Directional Drilling LLC
    • - -
    • 363 Or 264 (S064546) State v. Hamann
    • -
    - - -
    - -

    Advance Sheets 2018 # 15

    - -

    6/28/2018

    -
      -
    • 363 Or 185 (S064382) State v. Mansor
    • - - -
    • 363 Or 225 (S066010) Starrett v. Rosenblum (Ballot Title)
    • -
    - - - -

    6/27/2018

    -
      -
    • 363 Or 157 (S065981) Beyer v. Rosenblum
    • -
    - -

    6/21/2018

    -
      -
    • 363 Or 121 (S064016) State v. Swan
    • - -
    • 363 Or 147 (S065049) Shearer's Foods v. Hoffnagle
    • -
    - - - - -
    - -

    Advance Sheets 2018 # 14

    -

    6/07/2018

    - -
      -
    • 363 Or 105 (S065010) Miller v. Ford Motor Co.
    • - -
    • 363 Or 120 (S065957) State v. Maximo (Certified Appeal)
    • - -
    • 363 Or 120 (S065980) Barrie v. Rosenblum (Ballot Title)
    • -
    - - -
    - -

    Advance Sheets 2018 # 13

    -

    5/24/2018

    - -
      -
    • 363 Or 42 (S064798) In re Webb
    • - -
    • 363 Or 62 (S064893) In re Klemp
    • -
    - - -
    - -

    Advance Sheets 2018 # 12

    -

    5/10/2018

    - - -
      -
    • 363 Or 1 (S063943) Kinkel v. Persson
    • -
    - - -

    5/18/2018

    - - - -
      -
    • 363 Or 41 (S065551/52) Markley/Lutz v. Rosenblum (Ballot Title)
    • -
    - - - - -
    - - - - - - - - - - -
    -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    -
    - -
    - - - - - -
    - - - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - -
    -
    - -
    -
    - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - - - -
    - -
    - - - - - - - - - - - - - -
    -

    Your browser is out-of-date! It has known security flaws and may not display all features of this and other websites. Learn how

    -

    ×

    -
    - - - - - - - diff --git a/tests/examples/opinions/united_states/or_example.json b/tests/examples/opinions/united_states/or_example.json new file mode 100644 index 000000000..58c0f4046 --- /dev/null +++ b/tests/examples/opinions/united_states/or_example.json @@ -0,0 +1,1486 @@ +{ + "totalResults": 20, + "browseAllDefaultSortField": "dated", + "searchResultsDefaultSortField": "dated", + "sortFields": [ + { + "name": "Relevance", + "order": "nosort", + "ad": "asc" + }, + { + "name": "Title", + "order": "title", + "ad": "asc" + }, + { + "name": "Title", + "order": "title", + "ad": "desc" + }, + { + "name": "Official case name", + "order": "subjec", + "ad": "asc" + }, + { + "name": "Official case name", + "order": "subjec", + "ad": "desc" + }, + { + "name": "Citation", + "order": "cita", + "ad": "asc" + }, + { + "name": "Citation", + "order": "cita", + "ad": "desc" + }, + { + "name": "Date decided", + "order": "dated", + "ad": "asc" + }, + { + "name": "Date decided", + "order": "dated", + "ad": "desc" + } + ], + "filters": { + "collections": [ + { + "name": "Briefs -- Oregon Court of Appeals", + "selected": false, + "alias": "p17027coll8" + }, + { + "name": "Briefs -- Oregon Supreme Court", + "selected": false, + "alias": "p17027coll7" + }, + { + "name": "Decisions & Orders -- Oregon Tax Court", + "selected": false, + "alias": "p17027coll6" + }, + { + "name": "District Attorney Public Records Orders", + "selected": false, + "alias": "p17027coll4" + }, + { + "name": "Opinions -- Oregon Court of Appeals", + "selected": false, + "alias": "p17027coll5" + }, + { + "name": "Opinions -- Oregon Supreme Court", + "selected": true, + "alias": "p17027coll3" + }, + { + "name": "Oregon Attorney General Public Records Orders", + "selected": false, + "alias": "p17027coll2" + }, + { + "name": "Oregon Chief Justice Orders", + "selected": false, + "alias": "p17027coll10" + }, + { + "name": "Oregon Employment Relations Board Final Orders", + "selected": false, + "alias": "p17027coll9" + }, + { + "name": "Oregon Governor Executive Orders", + "selected": false, + "alias": "p17027coll11" + } + ] + }, + "facets": { + "type": [ + { + "title": "opinion", + "count": 14 + }, + { + "title": "petitions for review", + "count": 5 + }, + { + "title": "miscellaneous dispositions", + "count": 1 + } + ], + "judge": [ + { + "title": "bushong", + "count": 4 + }, + { + "title": "duncan", + "count": 2 + }, + { + "title": "masih", + "count": 2 + }, + { + "title": "dehoog", + "count": 1 + }, + { + "title": "garrett", + "count": 1 + }, + { + "title": "james", + "count": 1 + }, + { + "title": "pc", + "count": 1 + } + ], + "subjec1": [ + { + "title": "state of oregon", + "count": 10 + }, + { + "title": "anthony lee benjamin iv", + "count": 1 + }, + { + "title": "demetrio medina soto", + "count": 1 + }, + { + "title": "dennis giron-cortez", + "count": 1 + }, + { + "title": "department of revenue", + "count": 1 + }, + { + "title": "ellen rosenblum", + "count": 1 + }, + { + "title": "erik joh meiser", + "count": 1 + }, + { + "title": "ervan ronell herring", + "count": 1 + }, + { + "title": "jason p. munn", + "count": 1 + }, + { + "title": "kevin lavin taylor", + "count": 1 + }, + { + "title": "nicole morrisey o'donnell", + "count": 1 + } + ] + }, + "fields": { + "queries": [ + { + "mode": "exact", + "searchTerm": "20240601-20241010", + "field": "dated", + "connector": "and" + } + ], + "order": "dated", + "direction": "desc" + }, + "items": [ + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12488", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12488/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/12488", + "metadataFields": [ + { + "field": "title", + "value": "S070313, Opinion" + }, + { + "field": "subjec", + "value": "Benjamin v. O'Donnell" + }, + { + "field": "cita", + "value": "372 Or 764" + }, + { + "field": "dated", + "value": "2024-10-03" + } + ], + "title": "S070313, Opinion", + "detailJson": { + "requestedId": 12488, + "id": 12465, + "parentId": 12488, + "collectionAlias": "p17027coll3", + "collectionName": "Opinions -- Oregon Supreme Court", + "contentType": "application/pdf", + "filename": "12466.pdfpage", + "title": "S_", + "text": "", + "pageNumber": -1, + "imageWidth": 825, + "imageHeight": 1275, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "S070313 1", + "controlledVocabList": null + } + ], + "fullrsEnabled": false, + "hasPrintPDF": true, + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12465/thumbnail", + "imageUri": "https://ojd.contentdm.oclc.org/iiif/2/p17027coll3:12488/full/730,/0/default.jpg?page=1", + "iiifInfoUri": "/iiif/2/p17027coll3:12465/info.json", + "downloadUri": "/api/collection/p17027coll3/id/12465/download", + "downloadParentUri": "/digital/api/collection/p17027coll3/id/12488/download", + "url": null, + "streamUri": null, + "parent": { + "title": null, + "nodes": null, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "S070313, Opinion", + "controlledVocabList": null + }, + { + "key": "subjec", + "label": "Official case name", + "controlledVocab": false, + "searchable": true, + "value": "Benjamin v. O'Donnell", + "controlledVocabList": null + }, + { + "key": "relispt", + "label": "Case number", + "controlledVocab": false, + "searchable": true, + "value": "S070313", + "controlledVocabList": null + }, + { + "key": "type", + "label": "Type", + "controlledVocab": false, + "searchable": true, + "value": "Opinion", + "controlledVocabList": null + }, + { + "key": "dated", + "label": "Date decided", + "controlledVocab": false, + "searchable": true, + "value": "2024-10-03", + "controlledVocabList": null + }, + { + "key": "subjec1", + "label": "Parties", + "controlledVocab": true, + "searchable": true, + "value": "Anthony Lee Benjamin IV; Nicole Morrisey O'Donnell; State of Oregon", + "controlledVocabList": null + }, + { + "key": "judge", + "label": "Author", + "controlledVocab": false, + "searchable": true, + "value": "Duncan", + "controlledVocabList": null + }, + { + "key": "cita", + "label": "Citation", + "controlledVocab": false, + "searchable": true, + "value": "372 Or 764", + "controlledVocabList": null + }, + { + "key": "descri", + "label": "Notes", + "controlledVocab": false, + "searchable": false, + "value": "The petition for a writ of habeas corpus is denied.", + "controlledVocabList": null + }, + { + "key": "rights", + "label": "Rights", + "controlledVocab": false, + "searchable": true, + "value": "No known copyright restrictions.", + "controlledVocabList": null + }, + { + "key": "identi", + "label": "Identifier", + "controlledVocab": false, + "searchable": true, + "value": "S070313.pdf", + "controlledVocabList": null + } + ], + "children": [ + { + "id": 12465, + "title": "S070313 1", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12465/thumbnail" + }, + { + "id": 12466, + "title": "S070313 2", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12466/thumbnail" + }, + { + "id": 12467, + "title": "S070313 3", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12467/thumbnail" + }, + { + "id": 12468, + "title": "S070313 4", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12468/thumbnail" + }, + { + "id": 12469, + "title": "S070313 5", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12469/thumbnail" + }, + { + "id": 12470, + "title": "S070313 6", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12470/thumbnail" + }, + { + "id": 12471, + "title": "S070313 7", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12471/thumbnail" + }, + { + "id": 12472, + "title": "S070313 8", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12472/thumbnail" + }, + { + "id": 12473, + "title": "S070313 9", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12473/thumbnail" + }, + { + "id": 12474, + "title": "S070313 10", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12474/thumbnail" + }, + { + "id": 12475, + "title": "S070313 11", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12475/thumbnail" + }, + { + "id": 12476, + "title": "S070313 12", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12476/thumbnail" + }, + { + "id": 12477, + "title": "S070313 13", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12477/thumbnail" + }, + { + "id": 12478, + "title": "S070313 14", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12478/thumbnail" + }, + { + "id": 12479, + "title": "S070313 15", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12479/thumbnail" + }, + { + "id": 12480, + "title": "S070313 16", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12480/thumbnail" + }, + { + "id": 12481, + "title": "S070313 17", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12481/thumbnail" + }, + { + "id": 12482, + "title": "S070313 18", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12482/thumbnail" + }, + { + "id": 12483, + "title": "S070313 19", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12483/thumbnail" + }, + { + "id": 12484, + "title": "S070313 20", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12484/thumbnail" + }, + { + "id": 12485, + "title": "S070313 21", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12485/thumbnail" + }, + { + "id": 12486, + "title": "S070313 22", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12486/thumbnail" + }, + { + "id": 12487, + "title": "S070313 23", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12487/thumbnail" + } + ], + "type": null, + "flatCompoundObjectItems": null + }, + "flatCompoundObjects": null + } + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12440", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12440/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/12440", + "metadataFields": [ + { + "field": "title", + "value": "S069941, Opinion" + }, + { + "field": "subjec", + "value": "State v. Giron-Cortez" + }, + { + "field": "cita", + "value": "372 Or 729" + }, + { + "field": "dated", + "value": "2024-09-26" + } + ], + "title": "S069941, Opinion", + "detailJson": { + "requestedId": 12440, + "id": 12406, + "parentId": 12440, + "collectionAlias": "p17027coll3", + "collectionName": "Opinions -- Oregon Supreme Court", + "contentType": "application/pdf", + "filename": "12407.pdfpage", + "title": "S_", + "text": "", + "pageNumber": -1, + "imageWidth": 825, + "imageHeight": 1275, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "S069941 1", + "controlledVocabList": null + } + ], + "fullrsEnabled": false, + "hasPrintPDF": true, + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12406/thumbnail", + "imageUri": "https://ojd.contentdm.oclc.org/iiif/2/p17027coll3:12440/full/730,/0/default.jpg?page=1", + "iiifInfoUri": "/iiif/2/p17027coll3:12406/info.json", + "downloadUri": "/api/collection/p17027coll3/id/12406/download", + "downloadParentUri": "/digital/api/collection/p17027coll3/id/12440/download", + "url": null, + "streamUri": null, + "parent": { + "title": null, + "nodes": null, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "S069941, Opinion", + "controlledVocabList": null + }, + { + "key": "subjec", + "label": "Official case name", + "controlledVocab": false, + "searchable": true, + "value": "State v. Giron-Cortez", + "controlledVocabList": null + }, + { + "key": "relispt", + "label": "Case number", + "controlledVocab": false, + "searchable": true, + "value": "S069941", + "controlledVocabList": null + }, + { + "key": "type", + "label": "Type", + "controlledVocab": false, + "searchable": true, + "value": "Opinion", + "controlledVocabList": null + }, + { + "key": "dated", + "label": "Date decided", + "controlledVocab": false, + "searchable": true, + "value": "2024-09-26", + "controlledVocabList": null + }, + { + "key": "subjec1", + "label": "Parties", + "controlledVocab": true, + "searchable": true, + "value": "State of Oregon; Dennis Giron-Cortez", + "controlledVocabList": null + }, + { + "key": "judge", + "label": "Author", + "controlledVocab": false, + "searchable": true, + "value": "Masih", + "controlledVocabList": null + }, + { + "key": "cita", + "label": "Citation", + "controlledVocab": false, + "searchable": true, + "value": "372 Or 729", + "controlledVocabList": null + }, + { + "key": "descri", + "label": "Notes", + "controlledVocab": false, + "searchable": false, + "value": "The decision of the Court of Appeals is reversed. The judgment of conviction is reversed in part, and the case is remanded to the circuit court for entry of conviction for the lesser-included offense of fourth-degree assault under ORS 163.160(1)(a) and for resentencing consistent with this opinion.", + "controlledVocabList": null + }, + { + "key": "relhapt", + "label": "Additional case number", + "controlledVocab": false, + "searchable": true, + "value": "A173814 ; A173815", + "controlledVocabList": null + }, + { + "key": "rights", + "label": "Rights", + "controlledVocab": false, + "searchable": true, + "value": "No known copyright restrictions.", + "controlledVocabList": null + }, + { + "key": "identi", + "label": "Identifier", + "controlledVocab": false, + "searchable": true, + "value": "S069941.pdf", + "controlledVocabList": null + } + ], + "children": [ + { + "id": 12406, + "title": "S069941 1", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12406/thumbnail" + }, + { + "id": 12407, + "title": "S069941 2", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12407/thumbnail" + }, + { + "id": 12408, + "title": "S069941 3", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12408/thumbnail" + }, + { + "id": 12409, + "title": "S069941 4", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12409/thumbnail" + }, + { + "id": 12410, + "title": "S069941 5", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12410/thumbnail" + }, + { + "id": 12411, + "title": "S069941 6", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12411/thumbnail" + }, + { + "id": 12412, + "title": "S069941 7", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12412/thumbnail" + }, + { + "id": 12413, + "title": "S069941 8", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12413/thumbnail" + }, + { + "id": 12414, + "title": "S069941 9", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12414/thumbnail" + }, + { + "id": 12415, + "title": "S069941 10", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12415/thumbnail" + }, + { + "id": 12416, + "title": "S069941 11", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12416/thumbnail" + }, + { + "id": 12417, + "title": "S069941 12", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12417/thumbnail" + }, + { + "id": 12418, + "title": "S069941 13", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12418/thumbnail" + }, + { + "id": 12419, + "title": "S069941 14", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12419/thumbnail" + }, + { + "id": 12420, + "title": "S069941 15", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12420/thumbnail" + }, + { + "id": 12421, + "title": "S069941 16", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12421/thumbnail" + }, + { + "id": 12422, + "title": "S069941 17", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12422/thumbnail" + }, + { + "id": 12423, + "title": "S069941 18", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12423/thumbnail" + }, + { + "id": 12424, + "title": "S069941 19", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12424/thumbnail" + }, + { + "id": 12425, + "title": "S069941 20", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12425/thumbnail" + }, + { + "id": 12426, + "title": "S069941 21", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12426/thumbnail" + }, + { + "id": 12427, + "title": "S069941 22", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12427/thumbnail" + }, + { + "id": 12428, + "title": "S069941 23", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12428/thumbnail" + }, + { + "id": 12429, + "title": "S069941 24", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12429/thumbnail" + }, + { + "id": 12430, + "title": "S069941 25", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12430/thumbnail" + }, + { + "id": 12431, + "title": "S069941 26", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12431/thumbnail" + }, + { + "id": 12432, + "title": "S069941 27", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12432/thumbnail" + }, + { + "id": 12433, + "title": "S069941 28", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12433/thumbnail" + }, + { + "id": 12434, + "title": "S069941 29", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12434/thumbnail" + }, + { + "id": 12435, + "title": "S069941 30", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12435/thumbnail" + }, + { + "id": 12436, + "title": "S069941 31", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12436/thumbnail" + }, + { + "id": 12437, + "title": "S069941 32", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12437/thumbnail" + }, + { + "id": 12438, + "title": "S069941 33", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12438/thumbnail" + }, + { + "id": 12439, + "title": "S069941 34", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12439/thumbnail" + } + ], + "type": null, + "flatCompoundObjectItems": null + }, + "flatCompoundObjects": null + } + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12405", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12405/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/12405", + "metadataFields": [ + { + "field": "title", + "value": "S070999, Opinion" + }, + { + "field": "subjec", + "value": "State v. Herring" + }, + { + "field": "cita", + "value": "372 Or 727" + }, + { + "field": "dated", + "value": "2024-09-19" + } + ], + "title": "S070999, Opinion", + "detailJson": { + "requestedId": 12405, + "id": 12403, + "parentId": 12405, + "collectionAlias": "p17027coll3", + "collectionName": "Opinions -- Oregon Supreme Court", + "contentType": "application/pdf", + "filename": "12404.pdfpage", + "title": "S_", + "text": "", + "pageNumber": -1, + "imageWidth": 825, + "imageHeight": 1275, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "S070999 1", + "controlledVocabList": null + } + ], + "fullrsEnabled": false, + "hasPrintPDF": true, + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12403/thumbnail", + "imageUri": "https://ojd.contentdm.oclc.org/iiif/2/p17027coll3:12405/full/730,/0/default.jpg?page=1", + "iiifInfoUri": "/iiif/2/p17027coll3:12403/info.json", + "downloadUri": "/api/collection/p17027coll3/id/12403/download", + "downloadParentUri": "/digital/api/collection/p17027coll3/id/12405/download", + "url": null, + "streamUri": null, + "parent": { + "title": null, + "nodes": null, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "S070999, Opinion", + "controlledVocabList": null + }, + { + "key": "subjec", + "label": "Official case name", + "controlledVocab": false, + "searchable": true, + "value": "State v. Herring", + "controlledVocabList": null + }, + { + "key": "relispt", + "label": "Case number", + "controlledVocab": false, + "searchable": true, + "value": "S070999", + "controlledVocabList": null + }, + { + "key": "type", + "label": "Type", + "controlledVocab": false, + "searchable": true, + "value": "Opinion", + "controlledVocabList": null + }, + { + "key": "dated", + "label": "Date decided", + "controlledVocab": false, + "searchable": true, + "value": "2024-09-19", + "controlledVocabList": null + }, + { + "key": "subjec1", + "label": "Parties", + "controlledVocab": true, + "searchable": true, + "value": "State of Oregon; Ervan Ronell Herring", + "controlledVocabList": null + }, + { + "key": "judge", + "label": "Author", + "controlledVocab": false, + "searchable": true, + "value": "PC", + "controlledVocabList": null + }, + { + "key": "cita", + "label": "Citation", + "controlledVocab": false, + "searchable": true, + "value": "372 Or 727", + "controlledVocabList": null + }, + { + "key": "descri", + "label": "Notes", + "controlledVocab": false, + "searchable": false, + "value": "The petition for review is allowed.", + "controlledVocabList": null + }, + { + "key": "relhapt", + "label": "Additional case number", + "controlledVocab": false, + "searchable": true, + "value": "A174188", + "controlledVocabList": null + }, + { + "key": "rights", + "label": "Rights", + "controlledVocab": false, + "searchable": true, + "value": "No known copyright restrictions.", + "controlledVocabList": null + }, + { + "key": "identi", + "label": "Identifier", + "controlledVocab": false, + "searchable": true, + "value": "S070999.pdf", + "controlledVocabList": null + } + ], + "children": [ + { + "id": 12403, + "title": "S070999 1", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12403/thumbnail" + }, + { + "id": 12404, + "title": "S070999 2", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12404/thumbnail" + } + ], + "type": null, + "flatCompoundObjectItems": null + }, + "flatCompoundObjects": null + } + + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12362", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12362/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll3/id/12362", + "metadataFields": [ + { + "field": "title", + "value": "Petitions for review, August 29, 2024" + }, + { + "field": "subjec", + "value": "" + }, + { + "field": "cita", + "value": "372 Or 720" + }, + { + "field": "dated", + "value": "2024-08-29" + } + ], + "title": "Petitions for review, August 29, 2024" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12360", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12360/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/12360", + "metadataFields": [ + { + "field": "title", + "value": "S070836, Opinion" + }, + { + "field": "subjec", + "value": "State v. Blackmon" + }, + { + "field": "cita", + "value": "372 Or 695" + }, + { + "field": "dated", + "value": "2024-08-15" + } + ], + "title": "S070836, Opinion" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12361", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12361/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll3/id/12361", + "metadataFields": [ + { + "field": "title", + "value": "Petitions for review. August 8, 2024" + }, + { + "field": "subjec", + "value": "" + }, + { + "field": "cita", + "value": "372 Or 718; 719" + }, + { + "field": "dated", + "value": "2024-08-08" + } + ], + "title": "Petitions for review. August 8, 2024" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12279", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12279/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/12279", + "metadataFields": [ + { + "field": "title", + "value": "S071223, Opinion" + }, + { + "field": "subjec", + "value": "In re Flint" + }, + { + "field": "cita", + "value": "372 Or" + }, + { + "field": "dated", + "value": "2024-08-08" + } + ], + "title": "S071223, Opinion" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12312", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12312/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/12312", + "metadataFields": [ + { + "field": "title", + "value": "S070216, Opinion" + }, + { + "field": "subjec", + "value": "State v. Ortiz" + }, + { + "field": "cita", + "value": "372 Or 658" + }, + { + "field": "dated", + "value": "2024-08-08" + } + ], + "title": "S070216, Opinion" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12204", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12204/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/12204", + "metadataFields": [ + { + "field": "title", + "value": "S069688, Opinion" + }, + { + "field": "subjec", + "value": "State v. Davis" + }, + { + "field": "cita", + "value": "372 Or 618" + }, + { + "field": "dated", + "value": "2024-07-25" + } + ], + "title": "S069688, Opinion" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12234", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12234/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/12234", + "metadataFields": [ + { + "field": "title", + "value": "S070455, Opinion" + }, + { + "field": "subjec", + "value": "In re Munn" + }, + { + "field": "cita", + "value": "372 Or 589" + }, + { + "field": "dated", + "value": "2024-07-25" + } + ], + "title": "S070455, Opinion" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12092", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12092/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll3/id/12092", + "metadataFields": [ + { + "field": "title", + "value": "Petitions for review, July 18, 2024" + }, + { + "field": "subjec", + "value": "" + }, + { + "field": "cita", + "value": "372 Or 588" + }, + { + "field": "dated", + "value": "2024-07-18" + } + ], + "title": "Petitions for review, July 18, 2024" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12091", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12091/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/12091", + "metadataFields": [ + { + "field": "title", + "value": "S069907, Opinion" + }, + { + "field": "subjec", + "value": "State v. Soto" + }, + { + "field": "cita", + "value": "372 Or 561" + }, + { + "field": "dated", + "value": "2024-07-11" + } + ], + "title": "S069907, Opinion" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12035", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12035/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/12035", + "metadataFields": [ + { + "field": "title", + "value": "S070387, Opinion" + }, + { + "field": "subjec", + "value": "State v. Taylor" + }, + { + "field": "cita", + "value": "372 Or 536" + }, + { + "field": "dated", + "value": "2024-07-05" + } + ], + "title": "S070387, Opinion" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "12010", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/12010/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll3/id/12010", + "metadataFields": [ + { + "field": "title", + "value": "Petitions for review, July 3, 2024" + }, + { + "field": "subjec", + "value": "" + }, + { + "field": "cita", + "value": "372 Or 560" + }, + { + "field": "dated", + "value": "2024-07-03" + } + ], + "title": "Petitions for review, July 3, 2024" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "11982", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/11982/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/11982", + "metadataFields": [ + { + "field": "title", + "value": "S069820, Opinion" + }, + { + "field": "subjec", + "value": "Santa Fe Natural Tobacco Co. v. Dept. of Rev." + }, + { + "field": "cita", + "value": "372 Or 509" + }, + { + "field": "dated", + "value": "2024-06-20" + } + ], + "title": "S069820, Opinion" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "11903", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/11903/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/11903", + "metadataFields": [ + { + "field": "title", + "value": "S070059, Opinion" + }, + { + "field": "subjec", + "value": "State v. Meiser" + }, + { + "field": "cita", + "value": "372 Or 438" + }, + { + "field": "dated", + "value": "2024-06-13" + } + ], + "title": "S070059, Opinion" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "11984", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/11984/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll3/id/11984", + "metadataFields": [ + { + "field": "title", + "value": "Petitions for review, June 13, 2024" + }, + { + "field": "subjec", + "value": "" + }, + { + "field": "cita", + "value": "372 Or 534" + }, + { + "field": "dated", + "value": "2024-06-13" + } + ], + "title": "Petitions for review, June 13, 2024" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "11924", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/11924/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/11924", + "metadataFields": [ + { + "field": "title", + "value": "S070046, Opinion" + }, + { + "field": "subjec", + "value": "State v. Autele" + }, + { + "field": "cita", + "value": "372 Or 489" + }, + { + "field": "dated", + "value": "2024-06-13" + } + ], + "title": "S070046, Opinion" + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "11983", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/11983/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll3/id/11983", + "metadataFields": [ + { + "field": "title", + "value": "Miscellaneous Supreme Court dispositions, June 10 and 13, 2024 " + }, + { + "field": "subjec", + "value": "" + }, + { + "field": "cita", + "value": "372 Or 535" + }, + { + "field": "dated", + "value": "2024-06-10; 2024-06-13" + } + ], + "title": "Miscellaneous Supreme Court dispositions, June 10 and 13, 2024 " + }, + { + "collectionAlias": "p17027coll3", + "index": null, + "itemId": "11851", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll3/id/11851/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll3/id/11851", + "metadataFields": [ + { + "field": "title", + "value": "S070965, Opinion" + }, + { + "field": "subjec", + "value": "Chung v. Rosenblum" + }, + { + "field": "cita", + "value": "372 Or 422" + }, + { + "field": "dated", + "value": "2024-06-06" + } + ], + "title": "S070965, Opinion" + } + ], + "facetFields": { + "type": "Type", + "judge": "Author", + "subjec1": "Parties" + }, + "gridViewEnabled": false +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/or_example_2.compare.json b/tests/examples/opinions/united_states/or_example_2.compare.json deleted file mode 100644 index 7fd24ac89..000000000 --- a/tests/examples/opinions/united_states/or_example_2.compare.json +++ /dev/null @@ -1,862 +0,0 @@ -[ - { - "case_dates": "2019-11-27", - "case_names": "Cascadia Wildlands v. Dept. of State Lands", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S066223.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066223", - "case_name_shorts": "" - }, - { - "case_dates": "2019-11-27", - "case_names": "Baessler v. Rosenblum (Ballot title certified.)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20191127.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S067044", - "case_name_shorts": "Baessler" - }, - { - "case_dates": "2019-11-27", - "case_names": "Baessler v. Rosenblum (Ballot title certified.)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20191127.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S067042", - "case_name_shorts": "Baessler" - }, - { - "case_dates": "2019-11-21", - "case_names": "State v. Hedgpeth", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065921.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065921", - "case_name_shorts": "Hedgpeth" - }, - { - "case_dates": "2019-11-15", - "case_names": "State v. Arreola-Botello", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S066119.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066119", - "case_name_shorts": "Arreola-Botello" - }, - { - "case_dates": "2019-11-15", - "case_names": "Kramer v. City of Lake Oswego", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065014A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065014", - "case_name_shorts": "Kramer" - }, - { - "case_dates": "2019-11-14", - "case_names": "Parrish v. Rosenblum (Ballot Title)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20191114.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066812", - "case_name_shorts": "Parrish" - }, - { - "case_dates": "2019-11-14", - "case_names": "Lubbers v. Shuba (Alternative writ of mandamus issued)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20191114.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066749", - "case_name_shorts": "Lubbers" - }, - { - "case_dates": "2019-11-07", - "case_names": "State v. Kreis", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S066329.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066329", - "case_name_shorts": "Kreis" - }, - { - "case_dates": "2019-10-24", - "case_names": "Tuckenberry v. Board of Parole", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S066213.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066213", - "case_name_shorts": "Tuckenberry" - }, - { - "case_dates": "2019-10-24", - "case_names": "Penn v. Board of Parole", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065950.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065950", - "case_name_shorts": "Penn" - }, - { - "case_dates": "2019-10-10", - "case_names": "Wadsworth v. Talmage", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S066414.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066414", - "case_name_shorts": "Wadsworth" - }, - { - "case_dates": "2019-10-10", - "case_names": "State v. Harrison", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S066132.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066132", - "case_name_shorts": "Harrison" - }, - { - "case_dates": "2019-10-10", - "case_names": "Parrish v. Rosenblum", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S066812.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066812", - "case_name_shorts": "Parrish" - }, - { - "case_dates": "2019-09-12", - "case_names": "McLaughlin v. Wilson", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S066047.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066047", - "case_name_shorts": "McLaughlin" - }, - { - "case_dates": "2019-08-15", - "case_names": "J. O. v. Charles Hare Enterprises, Inc. (Alternative writ of mandamus issued)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20190815.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066615", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-15", - "case_names": "Fletchall v. Rosenblum", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S066460.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066460", - "case_name_shorts": "Fletchall" - }, - { - "case_dates": "2019-08-15", - "case_names": "Botofan-Miller and Miller", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065723.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065723", - "case_name_shorts": "Botofan-Miller and Miller" - }, - { - "case_dates": "2019-08-08", - "case_names": "State v. Carpenter", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065374.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065374", - "case_name_shorts": "Carpenter" - }, - { - "case_dates": "2019-08-08", - "case_names": "Meng v. University of Oregon (Alternative writ of mandamus issued)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20190801.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066780", - "case_name_shorts": "Meng" - }, - { - "case_dates": "2019-08-08", - "case_names": "Caren v. Providence Health System Oregon", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065553.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065553", - "case_name_shorts": "Caren" - }, - { - "case_dates": "2019-08-01", - "case_names": "Troubled Asset Solutions v. Wilcher", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S066097.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066097", - "case_name_shorts": "Wilcher" - }, - { - "case_dates": "2019-08-01", - "case_names": "State v. Savinskiy", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065257A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065257", - "case_name_shorts": "Savinskiy" - }, - { - "case_dates": "2019-08-01", - "case_names": "State v. Langley", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S062353A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S062353", - "case_name_shorts": "Langley" - }, - { - "case_dates": "2019-08-01", - "case_names": "Kramer v. City of Lake Oswego", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065014.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065014", - "case_name_shorts": "Kramer" - }, - { - "case_dates": "2019-08-01", - "case_names": "Friends of Columbia Gorge v. Energy Fac. Siting Coun.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065478.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065478", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-25", - "case_names": "Wieck v. Tucker (Alternative writ of mandamus issued)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20190718.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066707", - "case_name_shorts": "Wieck" - }, - { - "case_dates": "2019-07-25", - "case_names": "State v. Haberstich, Cort Tyler (Peremptory writ of mandamus issued)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20190718.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066753", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-25", - "case_names": "State v. Gensitskiy", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065317.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065317", - "case_name_shorts": "Gensitskiy" - }, - { - "case_dates": "2019-07-25", - "case_names": "Powell Street I v. Multnomah County Assessor", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065290.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065290", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-25", - "case_names": "Eastern Oregon Mining Assoc. v. DEQ", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065097.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065097", - "case_name_shorts": "DEQ" - }, - { - "case_dates": "2019-07-18", - "case_names": "Pilling v. Travelers Ins. Co.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065737.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065737", - "case_name_shorts": "Pilling" - }, - { - "case_dates": "2019-07-18", - "case_names": "Ossanna v. Nike, Inc.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065889.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065889", - "case_name_shorts": "Ossanna" - }, - { - "case_dates": "2019-07-18", - "case_names": "Dept. of Human Services v. J. C.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065492.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065492", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-13", - "case_names": "State v. Toth", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065929.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065929", - "case_name_shorts": "Toth" - }, - { - "case_dates": "2019-06-13", - "case_names": "State v. Moreno-Hernandez", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065930.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065930", - "case_name_shorts": "Moreno-Hernandez" - }, - { - "case_dates": "2019-06-13", - "case_names": "J. O. v. Charles Hare Enterprises, Inc. (Alternative writ of mandamus issued)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20190531.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066615", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-13", - "case_names": "Dept. of Human Services v. T. M. D.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S066066.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066066", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-06", - "case_names": "State v. Sperou", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065471.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065471", - "case_name_shorts": "Sperou" - }, - { - "case_dates": "2019-06-06", - "case_names": "State v. Gutierrez-Medina", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065297.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065297", - "case_name_shorts": "Gutierrez-Medina" - }, - { - "case_dates": "2019-06-06", - "case_names": "Fletchall v. Rosenblum", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S066460.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066460", - "case_name_shorts": "Fletchall" - }, - { - "case_dates": "2019-06-06", - "case_names": "Eugene Water and Electric Board v. PERB", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065686.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065686", - "case_name_shorts": "PERB" - }, - { - "case_dates": "2019-05-31", - "case_names": "White v. Premo (S065223)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065223.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065223", - "case_name_shorts": "White" - }, - { - "case_dates": "2019-05-31", - "case_names": "White v. Premo (S065188)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065188.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065188", - "case_name_shorts": "White" - }, - { - "case_dates": "2019-05-31", - "case_names": "State v. Riley", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065640.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065640", - "case_name_shorts": "Riley" - }, - { - "case_dates": "2019-05-31", - "case_names": "Garcia-Solis v. Farmers Ins. Co.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065956.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065956", - "case_name_shorts": "Garcia-Solis" - }, - { - "case_dates": "2019-05-23", - "case_names": "United States v. Lawrence/Ankeny", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S066187.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066187", - "case_name_shorts": "Lawrence/Ankeny" - }, - { - "case_dates": "2019-05-23", - "case_names": "State v. Savinskiy", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065257.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065257", - "case_name_shorts": "Savinskiy" - }, - { - "case_dates": "2019-05-23", - "case_names": "Sheldon v. US Bank", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064478.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064478", - "case_name_shorts": "Sheldon" - }, - { - "case_dates": "2019-05-09", - "case_names": "State v. Lien/Wilverding", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064826.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064826", - "case_name_shorts": "Lien/Wilverding" - }, - { - "case_dates": "2019-04-25", - "case_names": "LandWatch Lane County v. Lane County", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065917.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065917", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-18", - "case_names": "State v. Uroza-Zuniga", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065368.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065368", - "case_name_shorts": "Uroza-Zuniga" - }, - { - "case_dates": "2019-04-18", - "case_names": "State v. Sparks", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065728.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065728", - "case_name_shorts": "Sparks" - }, - { - "case_dates": "2019-04-18", - "case_names": "Gadalean v. SAIF", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065203.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065203", - "case_name_shorts": "Gadalean" - }, - { - "case_dates": "2019-04-04", - "case_names": "Vasquez v. Double Press Mfg., Inc.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065574.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065574", - "case_name_shorts": "Vasquez" - }, - { - "case_dates": "2019-04-04", - "case_names": "State v. Black", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065729.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065729", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-04", - "case_names": "Sloan v. Providence Health System-Oregon", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064748.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064748", - "case_name_shorts": "Sloan" - }, - { - "case_dates": "2019-04-04", - "case_names": "Chavez v. State of Oregon", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064968.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064968", - "case_name_shorts": "Chavez" - }, - { - "case_dates": "2019-03-28", - "case_names": "State v. Vallin", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065957A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065957", - "case_name_shorts": "Vallin" - }, - { - "case_dates": "2019-03-28", - "case_names": "State v. Sholedice/Smith", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064787A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064787", - "case_name_shorts": "Sholedice/Smith" - }, - { - "case_dates": "2019-03-28", - "case_names": "Foote v. State of Oregon", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065883.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065883", - "case_name_shorts": "Foote" - }, - { - "case_dates": "2019-03-14", - "case_names": "Schutz v. La Costita III, Inc.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065638.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065638", - "case_name_shorts": "Schutz" - }, - { - "case_dates": "2019-02-28", - "case_names": "Stop the Dump Coalition v. Yamhill County", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064894.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064894", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-28", - "case_names": "State v. McColly", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065089.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065089", - "case_name_shorts": "McColly" - }, - { - "case_dates": "2019-02-28", - "case_names": "State v. Edmonds", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065355.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065355", - "case_name_shorts": "Edmonds" - }, - { - "case_dates": "2019-02-28", - "case_names": "Perez-Rodriguez v. State of Oregon", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065022.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065022", - "case_name_shorts": "Perez-Rodriguez" - }, - { - "case_dates": "2019-02-28", - "case_names": "Gutale v. State of Oregon", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065136.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065136", - "case_name_shorts": "Gutale" - }, - { - "case_dates": "2019-02-07", - "case_names": "State v. Taylor", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S062310.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S062310", - "case_name_shorts": "Taylor" - }, - { - "case_dates": "2019-02-07", - "case_names": "State v. Banks", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065180.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065180", - "case_name_shorts": "Banks" - }, - { - "case_dates": "2019-02-07", - "case_names": "Shriners Hospitals for Children v. Cox", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064390.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064390", - "case_name_shorts": "Cox" - }, - { - "case_dates": "2019-01-31", - "case_names": "Wadsworth v. Talmage (Certified question accepted)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20190123.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066414", - "case_name_shorts": "Wadsworth" - }, - { - "case_dates": "2019-01-31", - "case_names": "State v. Vallin", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065957.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065957", - "case_name_shorts": "Vallin" - }, - { - "case_dates": "2019-01-31", - "case_names": "Jackson v. Franke", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064876.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064876", - "case_name_shorts": "Franke" - }, - { - "case_dates": "2019-01-25", - "case_names": "DISH Network Corp. v. Dept. of Rev.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065019.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065019", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-23", - "case_names": "Multnomah County v. Trojan (Certified appeal accepted)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20190123.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066445", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-17", - "case_names": "J. M. v. Oregon Youth Authority", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065487.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065487", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-10", - "case_names": "Oregon Trucking Assns. v. Dept. of Transportation", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065529.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065529", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-13", - "case_names": "Uherbelau v. Rosenblum (Ballot Title)", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=MISC_20181213.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S066267", - "case_name_shorts": "Uherbelau" - }, - { - "case_dates": "2018-12-13", - "case_names": "State v. Sholedice/Smith", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064787.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064787", - "case_name_shorts": "Sholedice/Smith" - }, - { - "case_dates": "2018-12-13", - "case_names": "State v. Lacey", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064616.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064616", - "case_name_shorts": "Lacey" - }, - { - "case_dates": "2018-12-13", - "case_names": "In re Maurer", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064901.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064901", - "case_name_shorts": "In re Maurer" - }, - { - "case_dates": "2018-12-06", - "case_names": "State v. Warren", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065338.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065338", - "case_name_shorts": "Warren" - }, - { - "case_dates": "2018-12-06", - "case_names": "State v. Stevens", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065140.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065140", - "case_name_shorts": "Stevens" - }, - { - "case_dates": "2018-12-06", - "case_names": "State v. Kimbrough", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064985.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064985", - "case_name_shorts": "Kimbrough" - }, - { - "case_dates": "2018-12-06", - "case_names": "State v. Jackson", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S065372.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S065372", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-06", - "case_names": "Dept. of Human Services v. S. J. M.", - "download_urls": "https://cdm17027.contentdm.oclc.org/ui/custom/default/collection/coll_p17027coll3/resources/custompages/OJDRedirect.html?collection=p17027coll3&identifier=S064763.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S064763", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/or_example_2.html b/tests/examples/opinions/united_states/or_example_2.html deleted file mode 100644 index ec30b3ba8..000000000 --- a/tests/examples/opinions/united_states/or_example_2.html +++ /dev/null @@ -1,1152 +0,0 @@ - - - - - - - - - - - Oregon Judicial Department : Supreme Court Opinions : Supreme Court Opinions : State of Oregon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - Skip to main content - - - - -
    -
    - - - -
    - - Oregon Judicial Department Logo - - - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - - - - - -
    - - - - - - - - - -
    -
    - - -
    -
    - - -
    - -
    - -

    - - Supreme Court Opinions -

    -
    -
    - - - - - -
    - - - -
    - - - - - - - - - - - - -
    -
    -
    -
    -
    View additional Supreme Court opinions in the Opinions Digital Collection.
    - - - - -
    Tips: -
      -
    • Click the page icon to open the opinion immediately in a PDF viewer. (Note this will open a new tab in your web browser).
    • -
    • Click the case number to open the opinion in the State of Oregon Law Library Digital Collection. Search results are based on the case number and will display any documents associated with the case that are available.
    • -
    • Click on the date to access the weekly opinions in the digital collection.
    • -
    -
    - - -

    2019: January, February, March, May, June, July, June, August, September, October, November, December

    - -

    2018 December

    - - - - -

    Advance Sheets 2019 # 25

    -

    11/27/2019

    -
      -
    • 365 Or 750 (S066223) Cascadia Wildlands v. Dept. of State Lands
    • - -
    • 365 Or 769 Petitions for Review
    • - - -
    • 365 Or 770 (S067044) Baessler v. Rosenblum (Ballot title certified.)
    • - -
    • 365 Or 770 (S067042) Baessler v. Rosenblum (Ballot title certified.)
    • -
    - -

    11/21/2019

    -
      - -
    • 365 Or 724 (S065921) State v. Hedgpeth
    • -
    - -
    - -

    Advance Sheets 2019 # 24

    -

    11/15/2019

    -
      -
    • 365 Or 691 (S065014) Kramer v. City of Lake Oswego
    • - -
    • 365 Or 695 (S066119) State v. Arreola-Botello
    • -
    - - -

    11/14/2019

    -
      - - - -
    • 365 Or 721 Petitions for Review
    • - - - -
    • 365 Or 723 (S066812) Parrish v. Rosenblum (Ballot Title)
    • - -
    • 365 Or 723 (S066749) Lubbers v. Shuba (Alternative writ of mandamus issued)
    • -
    - - - - -

    11/07/2019

    -
      - -
    • 365 Or 659 (S066329) State v. Kreis
    • -
    - -
    - -

    Advance Sheets 2019 # 23

    -

    10/24/2019

    -
      -
    • 365 Or 607 (S065950) Penn v. Board of Parole
    • - -
    • 365 Or 640 (S066213) Tuckenberry v. Board of Parole
    • - -
    • 365 Or 657 Petitions for Review
    • -
    - -
    - -

    Advance Sheets 2019 # 22

    -

    10/10/2019

    -
      -
    • 365 Or 558 (S066414) Wadsworth v. Talmage
    • - -
    • 365 Or 584 (S066132) State v. Harrison
    • - -
    • 365 Or 597 (S066812) Parrish v. Rosenblum
    • -
    - -
    - - - -

    Advance Sheets 2019 # 21

    -

    10/03/2019

    -
      - - -
    • 365 Or 557 Petitions for Review
    • - -
    -
    - - - - - -

    Advance Sheets 2019 # 20

    -

    09/12/2019

    - - -
      -
    • 365 Or 535 (S066047) McLaughlin v. Wilson
    • - - - -
    • 365 Or 556 Petitions for Review
    • - -
    -
    - - - - -

    Advance Sheets 2019 # 19

    -

    08/29/2019

    -
      - -
    • 365 Or 533 Petitions for Review
    • - -
    -
    - -

    Advance Sheets 2019 # 18

    -

    08/15/2019

    -
      -
    • 365 Or 504 (S065723) Botofan-Miller and Miller
    • - - -
    • 365 Or 527 (S066460) Fletchall v. Rosenblum
    • - - - -
    • 365 Or 531 Petitions for Review
    • - - - -
    • 365 Or 532 (S066615) J. O. v. Charles Hare Enterprises, Inc. (Alternative writ of mandamus issued)
    • -
    - - - -

    Advance Sheets 2019 # 17

    -

    08/08/2019

    -
      - - - -
    • 365 Or 466 (S065553) Caren v. Providence Health System Oregon
    • - -
    • 365 Or 488 (S065374) State v. Carpenter
    • - - -
    • 365 Or 502 Petitions for Review
    • - - -
    • 365 Or 503 (S066780) Meng v. University of Oregon (Alternative writ of mandamus issued)
    • -
    - -

    08/01/2019

    -
      -
    • 365 Or 371 (S065478) Friends of Columbia Gorge v. Energy Fac. Siting Coun.
    • - -
    • 365 Or 397 (S066097) Troubled Asset Solutions v. Wilcher
    • - -
    • 365 Or 418 (S062353) State v. Langley
    • - -
    • 365 Or 422 (S065014) Kramer v. City of Lake Oswego
    • - -
    • 365 Or 463 (S065257) State v. Savinskiy
    • -
    - -
    - -

    Advance Sheets 2019 # 16

    -

    07/25/2019

    -
      - -
    • 365 Or 245 (S065290) Powell Street I v. Multnomah County Assessor
    • - -
    • 365 Or 263 (S065317) State v. Gensitskiy
    • - -
    • 365 Or 313 (S065097) Eastern Oregon Mining Assoc. v. DEQ
    • - - -
    • 365 Or 369 Petitions for Review
    • - - -
    • 365 Or 370 (S066753) State v. Haberstich, Cort Tyler (Peremptory writ of mandamus issued)
    • - -
    • 365 Or 370 (S066707) Wieck v. Tucker (Alternative writ of mandamus issued)
    • -
    - -

    07/18/2019

    -
      -
    • 365 Or 196 (S065889) Ossanna v. Nike, Inc.
    • - -
    • 365 Or 223 (S065492) Dept. of Human Services v. J. C.
    • - -
    • 365 Or 236 (S065737) Pilling v. Travelers Ins. Co.
    • -
    - - -
    - - -

    Advance Sheets 2019 # 15

    -

    07/03/2019

    -
      - -
    • 365 Or 195 Petitions for Review
    • - -
    - - - -
    - -

    Advance Sheets 2019 # 14

    -

    06/20/2019

    -
      - -
    • 365 Or 194 Petitions for Review
    • - -
    -
    - -

    Advance Sheets 2019 # 13

    -

    06/13/2019

    - -
      -
    • 365 Or 143 (S066066) Dept. of Human Services v. T. M. D.
    • - -
    • 365 Or 169 (S065929) State v. Toth
    • - -
    • 365 Or 175 (S065930) State v. Moreno-Hernandez
    • - - -
    • 365 Or 192 Petitions for Review
    • - - - -
    • 365 Or 193 (S066615) J. O. v. Charles Hare Enterprises, Inc. (Alternative writ of mandamus issued)
    • -
    - -

    06/06/2019

    -
      - -
    • 365 Or 59 (S065686) Eugene Water and Electric Board v. PERB
    • - -
    • 365 Or 79 (S065297) State v. Gutierrez-Medina
    • - -
    • 365 Or 98 (S066460) Fletchall v. Rosenblum
    • - -
    • 365 Or 121 (S065471) State v. Sperou
    • -
    - -
    - -

    Advance Sheets 2019 # 12

    -

    05/31/2019

    -
      -
    • 365 Or 1 (S065188) White v. Premo (S065188)
    • -
    • 365 Or 21 (S065223) White v. Premo (S065223)
    • -
    • 365 Or 26 (S065956) Garcia-Solis v. Farmers Ins. Co.
    • -
    • 365 Or 44 (S065640) State v. Riley
    • -
    - - - -

    05/23/2019

    -
      -
    • 364 Or 796 (S066187) United States v. Lawrence/Ankeny
    • - -
    • 364 Or 802 (S065257) State v. Savinskiy
    • - -
    • 364 Or 831 (S064478) Sheldon v. US Bank
    • -
    - - - -
    - -

    Advance Sheets 2019 # 11

    -

    05/09/2019

    -
      - -
    • 364 Or 750 (S064826) State v. Lien/Wilverding
    • -
    - - -
    - -

    Advance Sheets 2019 # 10

    -

    04/25/2019

    -
      - -
    • 364 Or 724 (S065917) LandWatch Lane County v. Lane County
    • -
    - -
    - -

    Advance Sheets 2019 # 09

    -

    04/18/2019

    -
      -
    • 364 Or 682 (S065368) State v. Uroza-Zuniga
    • - -
    • 364 Or 696 (S065728) State v. Sparks
    • - -
    • 364 Or 707 (S065203) Gadalean v. SAIF
    • -
    - - -
    - - -

    Advance Sheets 2019 # 08

    -

    04/04/2019

    -
      - -
    • 364 Or 579 (S065729) State v. Black
    • -
    • 364 Or 609 (S065574) Vasquez v. Double Press Mfg., Inc.
    • -
    • 364 Or 635 (S064748) Sloan v. Providence Health System-Oregon
    • -
    • 364 Or 654 (S064968) Chavez v. State of Oregon
    • -
    - - -

    03/28/2019

    -
      - -
    • 364 Or 558 (S065883) Foote v. State of Oregon
    • - -
    • 364 Or 573 (S065957) State v. Vallin
    • - -
    • 364 Or 575 (S064787) State v. Sholedice/Smith
    • -
    - - - -

    Advance Sheets 2019 # 07

    -

    03/14/2019

    -
      - -
    • 364 Or 536 (S065638) Schutz v. La Costita III, Inc.
    • -
    - -
    - -

    Advance Sheets 2019 # 06

    -

    02/28/2019

    -
      - -
    • 364 Or 410 (S065355) State v. Edmonds
    • - -
    • 364 Or 432 (S064894) Stop the Dump Coalition v. Yamhill County
    • - -
    • 364 Or 464 (S065089) State v. McColly
    • - -
    • 364 Or 489 (S065022) Perez-Rodriguez v. State of Oregon
    • - -
    • 364 Or 502 (S065136) Gutale v. State of Oregon
    • -
    - -
    - -

    Advance Sheets 2019 # 04

    -

    02/07/2019

    -
      -
    • 364 Or 332 (S065180) State v. Banks
    • - -
    • 364 Or 364 (S062310) State v. Taylor
    • - -
    • 364 Or 394 (S064390) Shriners Hospitals for Children v. Cox
    • -
    - -

    01/31/2019

    -
      -
    • 364 Or 295 (S065957) State v. Vallin
    • - - -
    • 364 Or 312 (S064876) Jackson v. Franke
    • - -
    • 364 Or 408 (S066414) Wadsworth v. Talmage (Certified question accepted)
    • -
    - -

    01/23/2019

    -
      -
    • 364 Or 408 (S066445) Multnomah County v. Trojan (Certified appeal accepted)
    • - -
    - -
    - -

    Advance Sheets 2019 # 03

    -

    01/25/2019

    -
      -
    • 364 Or 254 (S065019) DISH Network Corp. v. Dept. of Rev.
    • -
    - -
    - -

    01/17/2019

    -
      -
    • 364 Or 232 (S065487) J. M. v. Oregon Youth Authority
    • -
    - -
    - -

    Advance Sheets 2019 # 01

    -

    01/10/2019

    -
      - -
    • 364 Or 210 (S065529) Oregon Trucking Assns. v. Dept. of Transportation
    • -
    - -
    - -

    Advance Sheets 2018 # 27

    -

    12/13/2018

    -
      - -
    • 364 Or 146 (S064787) State v. Sholedice/Smith
    • - -
    • 364 Or 171 (S064616) State v. Lacey
    • - -
    • 364 Or 190 (S064901) In re Maurer
    • - -
    • 364 Or 208 (S066267) Uherbelau v. Rosenblum (Ballot Title)
    • -
    - - -

    12/06/2018

    -
      -
    • 364 Or 1 (S065372) State v. Jackson
    • - -
    • 364 Or 37 (S064763) Dept. of Human Services v. S. J. M.
    • - -
    • 364 Or 66 (S064985) State v. Kimbrough
    • - -
    • 364 Or 91 (S065140) State v. Stevens
    • - -
    • 364 Or 105 (S065338) State v. Warren
    • -
    - - -
    - - - - - - - - - - - -
    -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    -
    - -
    - - - - - -
    - - - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - -
    -
    - -
    -
    - - -
    - - - - - - - - - - - - - - -
    - - - - - - - - -
    - -
    - - - - - - - - - - - - - -
    -

    Your browser is out-of-date! It has known security flaws and may not display all features of this and other websites. Learn how

    -

    ×

    -
    - - - - - - - diff --git a/tests/examples/opinions/united_states/orctapp_example.compare.json b/tests/examples/opinions/united_states/orctapp_example.compare.json new file mode 100644 index 000000000..a311026ce --- /dev/null +++ b/tests/examples/opinions/united_states/orctapp_example.compare.json @@ -0,0 +1,1487 @@ +[ + { + "case_dates": "2024-10-09", + "case_names": "State v. Wilson", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37196/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180236", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 401", + "case_name_shorts": "Wilson", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "State v. Silver", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37184/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A177928", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 377", + "case_name_shorts": "Silver", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "State v. Miles", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37197/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179755", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 421", + "case_name_shorts": "Miles", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "State v. K. B.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37188/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A182349", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 410", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "State v. Gasperetti", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37185/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180626", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 425", + "case_name_shorts": "Gasperetti", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "State v. England-Ray", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37186/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180191", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 458", + "case_name_shorts": "England-Ray", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "State v. Cordeiro", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37201/download", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed. State v. Le, 327 Or App 129, 534 P3d 1097, rev den, 371 Or 715 (2023).", + "docket_numbers": "A180170", + "judges": "", + "lower_court_numbers": "", + "citations": "335 Or App 457", + "case_name_shorts": "Cordeiro", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "State v. Carmello", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37187/download", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed.", + "docket_numbers": "A179482", + "judges": "Tookey", + "lower_court_numbers": "", + "citations": "335 Or App 373", + "case_name_shorts": "Carmello", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "State v. Brown", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37192/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180171", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 417", + "case_name_shorts": "Brown", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "State v. Brower-Gillpatrick", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37200/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179899", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 448", + "case_name_shorts": "Brower-Gillpatrick", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "State v. Anner", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37183/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179540", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 388", + "case_name_shorts": "Anner", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "Moore v. Dept. of Corrections", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37195/download", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and remanded as to dismissal of defendant Oregon Department of Corrections; otherwise affirmed.", + "docket_numbers": "A181866", + "judges": "Kamins", + "lower_court_numbers": "", + "citations": "335 Or App 396", + "case_name_shorts": "Moore", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "Haverly v. Board of Parole", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37199/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A176473", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 414", + "case_name_shorts": "Haverly", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "Dept. of Human Services v. L. C. B.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37194/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A183675", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 443", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "Dept. of Human Services v. L. B.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37190/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A183680", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 452", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "Dept. of Human Services v. K. K.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37191/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A183710", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 436", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "Dept. of Human Services v. J. D. G.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37198/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A183601", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 429", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "Cort-Wagner v. SAIF", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37193/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A181788", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 455", + "case_name_shorts": "Cort-Wagner", + "per_curiam": false + }, + { + "case_dates": "2024-10-09", + "case_names": "Artunyan v. SAIF", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37189/download", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed.", + "docket_numbers": "A181792", + "judges": "Egan", + "lower_court_numbers": "", + "citations": "335 Or App 407", + "case_name_shorts": "Artunyan", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "State v. Williams", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37175/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180317", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 364", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "State v. Waycaster", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37163/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179051", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 333", + "case_name_shorts": "Waycaster", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "State v. Tuchscherer", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37171/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180128", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 330", + "case_name_shorts": "Tuchscherer", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "State v. Rudolph", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37169/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A178409", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 347", + "case_name_shorts": "Rudolph", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "State v. R. M. S.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37167/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A181940", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 337", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "State v. Potter", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37179/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180409", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 368", + "case_name_shorts": "Potter", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "State v. Partin", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37164/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A178761", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 357", + "case_name_shorts": "Partin", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "State v. Paradiso", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37174/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180573", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 372", + "case_name_shorts": "Paradiso", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "State v. Huff", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37181/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180100", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 326", + "case_name_shorts": "Huff", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "State v. G. B.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37180/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179656", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 289", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "State v. A. M.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37170/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A181716", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 320", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "Sedgwick CMS v. Barreras", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37178/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A178529", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 351", + "case_name_shorts": "Barreras", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "Follansbee v. Ooi", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37173/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A181885", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 305", + "case_name_shorts": "Follansbee", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "Ferguson Creek Investment v. Lane County", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37166/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A184345", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 277", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "Dept. of Human Services v. S. G. W.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37176/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A182707", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 343", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "Dept. of Human Services v. M. R. -C.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37172/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A182184", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 339", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "Dept. of Human Services v. M. A. T.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37168/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A182963", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 294", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "Dept. of Human Services v. J. M. R.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37165/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A183682", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 273", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-10-02", + "case_names": "Dept. of Human Services v. C. S.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37177/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A183333", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 324", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "State v. Thorne", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37138/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A182009", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 245", + "case_name_shorts": "Thorne", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "State v. T. L. B.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37142/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A176794", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 225", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "State v. Sarria", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37136/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180013", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 201", + "case_name_shorts": "Sarria", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "State v. Leinweber", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37143/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179163", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 257", + "case_name_shorts": "Leinweber", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "State v. Hernandez-Marquez", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37133/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A181180", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 253", + "case_name_shorts": "Hernandez-Marquez", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "State v. Hansen", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37140/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180748", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 243", + "case_name_shorts": "Hansen", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "State v. Gonzales-Salcido", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37130/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180237", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 247", + "case_name_shorts": "Gonzales-Salcido", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "State v. Ellis", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37131/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180846", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 267", + "case_name_shorts": "Ellis", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "State v. Day", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37139/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180676", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 238", + "case_name_shorts": "Day", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "State v. Daily", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37132/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A182853", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 198", + "case_name_shorts": "Daily", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "State v. Brookwell", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37135/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A181049", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 270", + "case_name_shorts": "Brookwell", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "State v. Bradford", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37134/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180230", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 264", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "Sanders v. Highberger", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37128/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A183604", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 255", + "case_name_shorts": "Sanders", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "Klemp v. Andrach", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37137/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A178957", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 187", + "case_name_shorts": "Klemp", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "Goff v. Fhuere", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37182/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179830", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 261", + "case_name_shorts": "Goff", + "per_curiam": false + }, + { + "case_dates": "2024-09-25", + "case_names": "Dept. of Land Conservation v. Clackamas County", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37141/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A184663", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 205", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "White v. Reyes", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37109/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A175360", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 124", + "case_name_shorts": "White", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "State v. Moore", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37108/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179759", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 74", + "case_name_shorts": "Moore", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "State v. Martinez", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37120/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179436", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 103", + "case_name_shorts": "Martinez", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "State v. Jones", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37123/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180625", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 79", + "case_name_shorts": "Jones", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "State v. Hoppe", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37112/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179469", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 166", + "case_name_shorts": "Hoppe", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "State v. Goode", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37111/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179474", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 108", + "case_name_shorts": "Goode", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "State v. Britt", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37114/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A178589", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 91", + "case_name_shorts": "Britt", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "State v. Andrews", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37121/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A177140", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 59", + "case_name_shorts": "Andrews", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "State ex rel Rosenblum v. Living Essentials, LLC", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37126/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A163980", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 30", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "Khoshnaw v. Washburn", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37115/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A178454", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 163", + "case_name_shorts": "Khoshnaw", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "Hayward v. High Performance Homes, Inc.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37118/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179286", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 178", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "Flesey v. Columbia Memorial Hospital", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37119/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179813", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 185", + "case_name_shorts": "Flesey", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "Dept. of Human Services v. L. F.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37113/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A183559", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 158", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "Dept. of Human Services v. J. W. H. G.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37124/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A183729", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 183", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "Dept. of Human Services v. G. G.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37116/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A183731", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 168", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "Dept. of Human Services v. E. O.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37117/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A182158", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 172", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "Dept. of Human Services v. C. R.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37122/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A183172", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 150", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "Dept. of Human Services v. C. G.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37125/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A183616", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 155", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "City of Eugene v. Wade", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37110/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A181611", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 186", + "case_name_shorts": "Wade", + "per_curiam": false + }, + { + "case_dates": "2024-09-11", + "case_names": "Washington County v. Sippel", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37069/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180918", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 1", + "case_name_shorts": "Sippel", + "per_curiam": false + }, + { + "case_dates": "2024-09-11", + "case_names": "State v. W. C.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37070/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A182198", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 16", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-11", + "case_names": "State v. H. C.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37067/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A182258", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 20", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-11", + "case_names": "State v. C. M.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37066/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A181341", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 13", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-11", + "case_names": "Printemps-Herget v. Employment Dept.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37071/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A182386", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 24", + "case_name_shorts": "Printemps-Herget", + "per_curiam": false + }, + { + "case_dates": "2024-09-11", + "case_names": "Dept. of Human Services v. C. E. B.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37068/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A183725", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "335 Or App 27", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "VP Real Estate Investment Services v. Naftaniel", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37047/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A181592", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 747", + "case_name_shorts": "Naftaniel", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "Tharp v. Washburn", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37050/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A174187", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 810", + "case_name_shorts": "Tharp", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "Stryffeler v. Jenq", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37056/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A173374", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 788", + "case_name_shorts": "Stryffeler", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "State v. Zarazua", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37052/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180316", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 741", + "case_name_shorts": "Zarazua", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "State v. Y. S. H. -A.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37048/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A181875", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 832", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "State v. W. K. L.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37058/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A178262", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 821", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "State v. Vincent", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37045/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A177705", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 714", + "case_name_shorts": "Vincent", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "State v. Valdovinos-Moreno", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37041/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180950", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 829", + "case_name_shorts": "Valdovinos-Moreno", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "State v. S. L.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37040/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A179744", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 782", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "State v. Kelley", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37042/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A176147", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 802", + "case_name_shorts": "Kelley", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "State v. Antonio", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37059/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A177964", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 778", + "case_name_shorts": "Antonio", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "Roberts v. City of Cannon Beach (A184314)", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37043/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A184314", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 762", + "case_name_shorts": "Roberts", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "Roberts v. City of Cannon Beach (A184309)", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37046/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A184309", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 807", + "case_name_shorts": "Roberts", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "Neice v. Prosper Portland", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37055/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A184437", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 735", + "case_name_shorts": "Neice", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "Meister v. PERB", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37051/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A177870", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 725", + "case_name_shorts": "Meister", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "Marshall v. PricewaterhouseCoopers, LLC", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37057/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A169635", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 751", + "case_name_shorts": "Marshall", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "Harris v. City of Portland", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37044/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180819", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 794", + "case_name_shorts": "Harris", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "Doss v. Farmers Ins. Co. of Oregon", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37049/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A180585", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 826", + "case_name_shorts": "Doss", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "Dept. of Human Services v. N. L.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37053/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A182086", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 795", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "Dept. of Human Services v. A. R. F.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll5/id/37054/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "A182249", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "334 Or App 798", + "case_name_shorts": "", + "per_curiam": false + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/orctapp_example.json b/tests/examples/opinions/united_states/orctapp_example.json new file mode 100644 index 000000000..8bbc986a9 --- /dev/null +++ b/tests/examples/opinions/united_states/orctapp_example.json @@ -0,0 +1,3462 @@ +{ + "totalResults": 99, + "browseAllDefaultSortField": "dated", + "searchResultsDefaultSortField": "dated", + "sortFields": [ + { + "name": "Relevance", + "order": "nosort", + "ad": "asc" + }, + { + "name": "Title", + "order": "title", + "ad": "asc" + }, + { + "name": "Title", + "order": "title", + "ad": "desc" + }, + { + "name": "Official case name", + "order": "subjec", + "ad": "asc" + }, + { + "name": "Official case name", + "order": "subjec", + "ad": "desc" + }, + { + "name": "Citation", + "order": "identia", + "ad": "asc" + }, + { + "name": "Citation", + "order": "identia", + "ad": "desc" + }, + { + "name": "Date decided", + "order": "dated", + "ad": "asc" + }, + { + "name": "Date decided", + "order": "dated", + "ad": "desc" + } + ], + "filters": { + "collections": [ + { + "name": "Briefs -- Oregon Court of Appeals", + "selected": false, + "alias": "p17027coll8" + }, + { + "name": "Briefs -- Oregon Supreme Court", + "selected": false, + "alias": "p17027coll7" + }, + { + "name": "Decisions & Orders -- Oregon Tax Court", + "selected": false, + "alias": "p17027coll6" + }, + { + "name": "District Attorney Public Records Orders", + "selected": false, + "alias": "p17027coll4" + }, + { + "name": "Opinions -- Oregon Court of Appeals", + "selected": true, + "alias": "p17027coll5" + }, + { + "name": "Opinions -- Oregon Supreme Court", + "selected": false, + "alias": "p17027coll3" + }, + { + "name": "Oregon Attorney General Public Records Orders", + "selected": false, + "alias": "p17027coll2" + }, + { + "name": "Oregon Chief Justice Orders", + "selected": false, + "alias": "p17027coll10" + }, + { + "name": "Oregon Employment Relations Board Final Orders", + "selected": false, + "alias": "p17027coll9" + }, + { + "name": "Oregon Governor Executive Orders", + "selected": false, + "alias": "p17027coll11" + } + ] + }, + "facets": { + "type": [ + { + "title": "nonprecedential opinion", + "count": 64 + }, + { + "title": "opinion", + "count": 35 + } + ], + "judge": [ + { + "title": "hellman", + "count": 13 + }, + { + "title": "kamins", + "count": 12 + }, + { + "title": "ortega", + "count": 9 + }, + { + "title": "egan", + "count": 8 + }, + { + "title": "mooney", + "count": 7 + }, + { + "title": "shorr", + "count": 7 + }, + { + "title": "tookey", + "count": 7 + }, + { + "title": "powers", + "count": 6 + }, + { + "title": "joyce", + "count": 5 + }, + { + "title": "lagesen", + "count": 5 + }, + { + "title": "pag�n", + "count": 5 + } + ], + "subjec1": [ + { + "title": "state of oregon", + "count": 52 + }, + { + "title": "department of human services", + "count": 18 + }, + { + "title": "city of cannon beach", + "count": 2 + }, + { + "title": "SAIF Corporation", + "count": 2 + }, + { + "title": "stanley roberts", + "count": 2 + }, + { + "title": "alanna nicole partin", + "count": 1 + }, + { + "title": "alicia hayward", + "count": 1 + }, + { + "title": "alyssa naftaniel", + "count": 1 + }, + { + "title": "anthony damien cordeiro", + "count": 1 + }, + { + "title": "anthony sam white", + "count": 1 + }, + { + "title": "arthur daniel kelley", + "count": 1 + } + ] + }, + "fields": { + "queries": [ + { + "mode": "exact", + "searchTerm": "20240901-20241010", + "field": "dated", + "connector": "and" + } + ], + "order": "dated", + "direction": "desc" + }, + "items": [ + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37201", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37201/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37201", + "metadataFields": [ + { + "field": "title", + "value": "A180170, Opinion" + }, + { + "field": "subjec", + "value": "State v. Cordeiro" + }, + { + "field": "identia", + "value": "335 Or App 457" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A180170, Opinion", + "detailJson": { + "requestedId": 37201, + "id": 37201, + "parentId": -1, + "collectionAlias": "p17027coll5", + "collectionName": "Opinions -- Oregon Court of Appeals", + "contentType": "application/pdf", + "filename": "37195.pdf", + "title": "A_Opinion", + "text": "", + "pageNumber": null, + "imageWidth": 825, + "imageHeight": 1275, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "A180170, Opinion", + "controlledVocabList": null + }, + { + "key": "subjec", + "label": "Official case name", + "controlledVocab": false, + "searchable": true, + "value": "State v. Cordeiro", + "controlledVocabList": null + }, + { + "key": "relispt", + "label": "Case number", + "controlledVocab": false, + "searchable": true, + "value": "A180170", + "controlledVocabList": null + }, + { + "key": "type", + "label": "Type", + "controlledVocab": false, + "searchable": true, + "value": "Nonprecedential opinion", + "controlledVocabList": null + }, + { + "key": "dated", + "label": "Date decided", + "controlledVocab": false, + "searchable": true, + "value": "2024-10-09", + "controlledVocabList": null + }, + { + "key": "subjec1", + "label": "Parties", + "controlledVocab": true, + "searchable": true, + "value": "State of Oregon; Anthony Damien Cordeiro", + "controlledVocabList": null + }, + { + "key": "identia", + "label": "Citation", + "controlledVocab": false, + "searchable": true, + "value": "335 Or App 457", + "controlledVocabList": null + }, + { + "key": "descri", + "label": "Notes", + "controlledVocab": false, + "searchable": false, + "value": "Affirmed. State v. Le, 327 Or App 129, 534 P3d 1097, rev den, 371 Or 715 (2023).", + "controlledVocabList": null + }, + { + "key": "rights", + "label": "Rights", + "controlledVocab": false, + "searchable": true, + "value": "No known copyright restrictions.", + "controlledVocabList": null + }, + { + "key": "identi", + "label": "Identifier", + "controlledVocab": false, + "searchable": true, + "value": "A180170.pdf", + "controlledVocabList": null + } + ], + "fullrsEnabled": false, + "hasPrintPDF": false, + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37201/thumbnail", + "imageUri": "https://ojd.contentdm.oclc.org/iiif/2/p17027coll5:37201/full/730,/0/default.jpg", + "iiifInfoUri": "/iiif/2/p17027coll5:37201/info.json", + "downloadUri": "/api/collection/p17027coll5/id/37201/download", + "downloadParentUri": null, + "url": null, + "streamUri": null, + "parent": null, + "flatCompoundObjects": null + } + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37189", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37189/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37189", + "metadataFields": [ + { + "field": "title", + "value": "A181792, Opinion" + }, + { + "field": "subjec", + "value": "Artunyan v. SAIF" + }, + { + "field": "identia", + "value": "335 Or App 407" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A181792, Opinion", + "detailJson": { + "requestedId": 37189, + "id": 37189, + "parentId": -1, + "collectionAlias": "p17027coll5", + "collectionName": "Opinions -- Oregon Court of Appeals", + "contentType": "application/pdf", + "filename": "37194.pdf", + "title": "A_Opinion", + "text": "", + "pageNumber": null, + "imageWidth": 825, + "imageHeight": 1275, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "A181792, Opinion", + "controlledVocabList": null + }, + { + "key": "subjec", + "label": "Official case name", + "controlledVocab": false, + "searchable": true, + "value": "Artunyan v. SAIF", + "controlledVocabList": null + }, + { + "key": "relispt", + "label": "Case number", + "controlledVocab": false, + "searchable": true, + "value": "A181792", + "controlledVocabList": null + }, + { + "key": "type", + "label": "Type", + "controlledVocab": false, + "searchable": true, + "value": "Nonprecedential opinion", + "controlledVocabList": null + }, + { + "key": "dated", + "label": "Date decided", + "controlledVocab": false, + "searchable": true, + "value": "2024-10-09", + "controlledVocabList": null + }, + { + "key": "subjec1", + "label": "Parties", + "controlledVocab": true, + "searchable": true, + "value": "Svetlana Artunyan; SAIF Corporation", + "controlledVocabList": null + }, + { + "key": "judge", + "label": "Author", + "controlledVocab": false, + "searchable": true, + "value": "Egan ", + "controlledVocabList": null + }, + { + "key": "identia", + "label": "Citation", + "controlledVocab": false, + "searchable": true, + "value": "335 Or App 407", + "controlledVocabList": null + }, + { + "key": "descri", + "label": "Notes", + "controlledVocab": false, + "searchable": false, + "value": "Affirmed.", + "controlledVocabList": null + }, + { + "key": "rights", + "label": "Rights", + "controlledVocab": false, + "searchable": true, + "value": "No known copyright restrictions.", + "controlledVocabList": null + }, + { + "key": "identi", + "label": "Identifier", + "controlledVocab": false, + "searchable": true, + "value": "A181792.pdf", + "controlledVocabList": null + } + ], + "fullrsEnabled": false, + "hasPrintPDF": false, + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37189/thumbnail", + "imageUri": "https://ojd.contentdm.oclc.org/iiif/2/p17027coll5:37189/full/730,/0/default.jpg", + "iiifInfoUri": "/iiif/2/p17027coll5:37189/info.json", + "downloadUri": "/api/collection/p17027coll5/id/37189/download", + "downloadParentUri": null, + "url": null, + "streamUri": null, + "parent": null, + "flatCompoundObjects": null + } + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37190", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37190/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37190", + "metadataFields": [ + { + "field": "title", + "value": "A183680, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. L. B." + }, + { + "field": "identia", + "value": "335 Or App 452" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A183680, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37191", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37191/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37191", + "metadataFields": [ + { + "field": "title", + "value": "A183710, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. K. K." + }, + { + "field": "identia", + "value": "335 Or App 436" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A183710, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37192", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37192/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37192", + "metadataFields": [ + { + "field": "title", + "value": "A180171, Opinion" + }, + { + "field": "subjec", + "value": "State v. Brown" + }, + { + "field": "identia", + "value": "335 Or App 417" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A180171, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37188", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37188/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37188", + "metadataFields": [ + { + "field": "title", + "value": "A182349, Opinion" + }, + { + "field": "subjec", + "value": "State v. K. B." + }, + { + "field": "identia", + "value": "335 Or App 410" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A182349, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37193", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37193/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37193", + "metadataFields": [ + { + "field": "title", + "value": "A181788, Opinion" + }, + { + "field": "subjec", + "value": "Cort-Wagner v. SAIF" + }, + { + "field": "identia", + "value": "335 Or App 455" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A181788, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37197", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37197/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37197", + "metadataFields": [ + { + "field": "title", + "value": "A179755, Opinion" + }, + { + "field": "subjec", + "value": "State v. Miles" + }, + { + "field": "identia", + "value": "335 Or App 421" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A179755, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37183", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37183/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37183", + "metadataFields": [ + { + "field": "title", + "value": "A179540, Opinion" + }, + { + "field": "subjec", + "value": "State v. Anner" + }, + { + "field": "identia", + "value": "335 Or App 388" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A179540, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37199", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37199/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37199", + "metadataFields": [ + { + "field": "title", + "value": "A176473, Opinion" + }, + { + "field": "subjec", + "value": "Haverly v. Board of Parole" + }, + { + "field": "identia", + "value": "335 Or App 414" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A176473, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37200", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37200/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37200", + "metadataFields": [ + { + "field": "title", + "value": "A179899, Opinion" + }, + { + "field": "subjec", + "value": "State v. Brower-Gillpatrick" + }, + { + "field": "identia", + "value": "335 Or App 448" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A179899, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37184", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37184/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37184", + "metadataFields": [ + { + "field": "title", + "value": "A177928, Opinion" + }, + { + "field": "subjec", + "value": "State v. Silver" + }, + { + "field": "identia", + "value": "335 Or App 377" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A177928, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37185", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37185/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37185", + "metadataFields": [ + { + "field": "title", + "value": "A180626, Opinion" + }, + { + "field": "subjec", + "value": "State v. Gasperetti" + }, + { + "field": "identia", + "value": "335 Or App 425" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A180626, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37186", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37186/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37186", + "metadataFields": [ + { + "field": "title", + "value": "A180191, Opinion" + }, + { + "field": "subjec", + "value": "State v. England-Ray" + }, + { + "field": "identia", + "value": "335 Or App 458" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A180191, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37194", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37194/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37194", + "metadataFields": [ + { + "field": "title", + "value": "A183675, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. L. C. B." + }, + { + "field": "identia", + "value": "335 Or App 443" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A183675, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37187", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37187/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37187", + "metadataFields": [ + { + "field": "title", + "value": "A179482, Opinion" + }, + { + "field": "subjec", + "value": "State v. Carmello" + }, + { + "field": "identia", + "value": "335 Or App 373" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A179482, Opinion", + "detailJson":{ + "requestedId": 37187, + "id": 37187, + "parentId": -1, + "collectionAlias": "p17027coll5", + "collectionName": "Opinions -- Oregon Court of Appeals", + "contentType": "application/pdf", + "filename": "37201.pdf", + "title": "A_Opinion", + "text": "", + "pageNumber": null, + "imageWidth": 825, + "imageHeight": 1275, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "A179482, Opinion", + "controlledVocabList": null + }, + { + "key": "subjec", + "label": "Official case name", + "controlledVocab": false, + "searchable": true, + "value": "State v. Carmello", + "controlledVocabList": null + }, + { + "key": "relispt", + "label": "Case number", + "controlledVocab": false, + "searchable": true, + "value": "A179482", + "controlledVocabList": null + }, + { + "key": "type", + "label": "Type", + "controlledVocab": false, + "searchable": true, + "value": "Opinion", + "controlledVocabList": null + }, + { + "key": "dated", + "label": "Date decided", + "controlledVocab": false, + "searchable": true, + "value": "2024-10-09", + "controlledVocabList": null + }, + { + "key": "subjec1", + "label": "Parties", + "controlledVocab": true, + "searchable": true, + "value": "State of Oregon; Carlos Carmello", + "controlledVocabList": null + }, + { + "key": "judge", + "label": "Author", + "controlledVocab": false, + "searchable": true, + "value": "Tookey", + "controlledVocabList": null + }, + { + "key": "identia", + "label": "Citation", + "controlledVocab": false, + "searchable": true, + "value": "335 Or App 373", + "controlledVocabList": null + }, + { + "key": "descri", + "label": "Notes", + "controlledVocab": false, + "searchable": false, + "value": "Affirmed.", + "controlledVocabList": null + }, + { + "key": "relhapt", + "label": "Additional case number", + "controlledVocab": false, + "searchable": true, + "value": "A179501", + "controlledVocabList": null + }, + { + "key": "rights", + "label": "Rights", + "controlledVocab": false, + "searchable": true, + "value": "No known copyright restrictions.", + "controlledVocabList": null + }, + { + "key": "identi", + "label": "Identifier", + "controlledVocab": false, + "searchable": true, + "value": "A179482.pdf", + "controlledVocabList": null + } + ], + "fullrsEnabled": false, + "hasPrintPDF": false, + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37187/thumbnail", + "imageUri": "https://ojd.contentdm.oclc.org/iiif/2/p17027coll5:37187/full/730,/0/default.jpg", + "iiifInfoUri": "/iiif/2/p17027coll5:37187/info.json", + "downloadUri": "/api/collection/p17027coll5/id/37187/download", + "downloadParentUri": null, + "url": null, + "streamUri": null, + "parent": null, + "flatCompoundObjects": null + } + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37195", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37195/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37195", + "metadataFields": [ + { + "field": "title", + "value": "A181866, Opinion" + }, + { + "field": "subjec", + "value": "Moore v. Dept. of Corrections" + }, + { + "field": "identia", + "value": "335 Or App 396" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A181866, Opinion", + "detailJson": { + "requestedId": 37195, + "id": 37195, + "parentId": -1, + "collectionAlias": "p17027coll5", + "collectionName": "Opinions -- Oregon Court of Appeals", + "contentType": "application/pdf", + "filename": "37188.pdf", + "title": "A_Opinion", + "text": "", + "pageNumber": null, + "imageWidth": 825, + "imageHeight": 1275, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "A181866, Opinion", + "controlledVocabList": null + }, + { + "key": "subjec", + "label": "Official case name", + "controlledVocab": false, + "searchable": true, + "value": "Moore v. Dept. of Corrections", + "controlledVocabList": null + }, + { + "key": "relispt", + "label": "Case number", + "controlledVocab": false, + "searchable": true, + "value": "A181866", + "controlledVocabList": null + }, + { + "key": "type", + "label": "Type", + "controlledVocab": false, + "searchable": true, + "value": "Opinion", + "controlledVocabList": null + }, + { + "key": "dated", + "label": "Date decided", + "controlledVocab": false, + "searchable": true, + "value": "2024-10-09", + "controlledVocabList": null + }, + { + "key": "subjec1", + "label": "Parties", + "controlledVocab": true, + "searchable": true, + "value": "Randy Allen Moore; Oregon Department of Corrections; Jane Doe 1-10", + "controlledVocabList": null + }, + { + "key": "judge", + "label": "Author", + "controlledVocab": false, + "searchable": true, + "value": "Kamins", + "controlledVocabList": null + }, + { + "key": "identia", + "label": "Citation", + "controlledVocab": false, + "searchable": true, + "value": "335 Or App 396", + "controlledVocabList": null + }, + { + "key": "descri", + "label": "Notes", + "controlledVocab": false, + "searchable": false, + "value": "Reversed and remanded as to dismissal of defendant Oregon Department of Corrections; otherwise affirmed.", + "controlledVocabList": null + }, + { + "key": "rights", + "label": "Rights", + "controlledVocab": false, + "searchable": true, + "value": "No known copyright restrictions.", + "controlledVocabList": null + }, + { + "key": "identi", + "label": "Identifier", + "controlledVocab": false, + "searchable": true, + "value": "A181866.pdf", + "controlledVocabList": null + } + ], + "fullrsEnabled": false, + "hasPrintPDF": false, + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37195/thumbnail", + "imageUri": "https://ojd.contentdm.oclc.org/iiif/2/p17027coll5:37195/full/730,/0/default.jpg", + "iiifInfoUri": "/iiif/2/p17027coll5:37195/info.json", + "downloadUri": "/api/collection/p17027coll5/id/37195/download", + "downloadParentUri": null, + "url": null, + "streamUri": null, + "parent": null, + "flatCompoundObjects": null + } + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37196", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37196/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37196", + "metadataFields": [ + { + "field": "title", + "value": "A180236, Opinion" + }, + { + "field": "subjec", + "value": "State v. Wilson" + }, + { + "field": "identia", + "value": "335 Or App 401" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A180236, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37198", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37198/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37198", + "metadataFields": [ + { + "field": "title", + "value": "A183601, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. J. D. G." + }, + { + "field": "identia", + "value": "335 Or App 429" + }, + { + "field": "dated", + "value": "2024-10-09" + } + ], + "title": "A183601, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37169", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37169/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37169", + "metadataFields": [ + { + "field": "title", + "value": "A178409, Opinion" + }, + { + "field": "subjec", + "value": "State v. Rudolph" + }, + { + "field": "identia", + "value": "335 Or App 347" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A178409, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37168", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37168/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37168", + "metadataFields": [ + { + "field": "title", + "value": "A182963, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. M. A. T." + }, + { + "field": "identia", + "value": "335 Or App 294" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A182963, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37167", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37167/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37167", + "metadataFields": [ + { + "field": "title", + "value": "A181940, Opinion" + }, + { + "field": "subjec", + "value": "State v. R. M. S." + }, + { + "field": "identia", + "value": "335 Or App 337" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A181940, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37166", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37166/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37166", + "metadataFields": [ + { + "field": "title", + "value": "A184345, Opinion" + }, + { + "field": "subjec", + "value": "Ferguson Creek Investment v. Lane County" + }, + { + "field": "identia", + "value": "335 Or App 277" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A184345, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37165", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37165/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37165", + "metadataFields": [ + { + "field": "title", + "value": "A183682, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. J. M. R." + }, + { + "field": "identia", + "value": "335 Or App 273" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A183682, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37164", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37164/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37164", + "metadataFields": [ + { + "field": "title", + "value": "A178761, Opinion" + }, + { + "field": "subjec", + "value": "State v. Partin" + }, + { + "field": "identia", + "value": "335 Or App 357" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A178761, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37178", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37178/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37178", + "metadataFields": [ + { + "field": "title", + "value": "A178529, Opinion" + }, + { + "field": "subjec", + "value": "Sedgwick CMS v. Barreras" + }, + { + "field": "identia", + "value": "335 Or App 351" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A178529, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37177", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37177/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37177", + "metadataFields": [ + { + "field": "title", + "value": "A183333, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. C. S." + }, + { + "field": "identia", + "value": "335 Or App 324" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A183333, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37176", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37176/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37176", + "metadataFields": [ + { + "field": "title", + "value": "A182707, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. S. G. W." + }, + { + "field": "identia", + "value": "335 Or App 343" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A182707, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37179", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37179/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37179", + "metadataFields": [ + { + "field": "title", + "value": "A180409, Opinion" + }, + { + "field": "subjec", + "value": "State v. Potter" + }, + { + "field": "identia", + "value": "335 Or App 368" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A180409, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37180", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37180/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37180", + "metadataFields": [ + { + "field": "title", + "value": "A179656, Opinion" + }, + { + "field": "subjec", + "value": "State v. G. B." + }, + { + "field": "identia", + "value": "335 Or App 289" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A179656, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37181", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37181/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37181", + "metadataFields": [ + { + "field": "title", + "value": "A180100, Opinion" + }, + { + "field": "subjec", + "value": "State v. Huff" + }, + { + "field": "identia", + "value": "335 Or App 326" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A180100, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37170", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37170/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37170", + "metadataFields": [ + { + "field": "title", + "value": "A181716, Opinion" + }, + { + "field": "subjec", + "value": "State v. A. M." + }, + { + "field": "identia", + "value": "335 Or App 320" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A181716, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37163", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37163/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37163", + "metadataFields": [ + { + "field": "title", + "value": "A179051, Opinion" + }, + { + "field": "subjec", + "value": "State v. Waycaster" + }, + { + "field": "identia", + "value": "335 Or App 333" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A179051, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37175", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37175/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37175", + "metadataFields": [ + { + "field": "title", + "value": "A180317, Opinion" + }, + { + "field": "subjec", + "value": "State v. Williams" + }, + { + "field": "identia", + "value": "335 Or App 364" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A180317, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37174", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37174/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37174", + "metadataFields": [ + { + "field": "title", + "value": "A180573, Opinion" + }, + { + "field": "subjec", + "value": "State v. Paradiso" + }, + { + "field": "identia", + "value": "335 Or App 372" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A180573, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37173", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37173/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37173", + "metadataFields": [ + { + "field": "title", + "value": "A181885, Opinion" + }, + { + "field": "subjec", + "value": "Follansbee v. Ooi" + }, + { + "field": "identia", + "value": "335 Or App 305" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A181885, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37172", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37172/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37172", + "metadataFields": [ + { + "field": "title", + "value": "A182184, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. M. R. -C." + }, + { + "field": "identia", + "value": "335 Or App 339" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A182184, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37171", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37171/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37171", + "metadataFields": [ + { + "field": "title", + "value": "A180128, Opinion" + }, + { + "field": "subjec", + "value": "State v. Tuchscherer" + }, + { + "field": "identia", + "value": "335 Or App 330" + }, + { + "field": "dated", + "value": "2024-10-02" + } + ], + "title": "A180128, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37182", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37182/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37182", + "metadataFields": [ + { + "field": "title", + "value": "A179830, Opinion\n" + }, + { + "field": "subjec", + "value": "Goff v. Fhuere\n" + }, + { + "field": "identia", + "value": "335 Or App 261\n" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A179830, Opinion\n" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37128", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37128/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37128", + "metadataFields": [ + { + "field": "title", + "value": "A183604, Opinion" + }, + { + "field": "subjec", + "value": "Sanders v. Highberger" + }, + { + "field": "identia", + "value": "335 Or App 255" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A183604, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37131", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37131/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37131", + "metadataFields": [ + { + "field": "title", + "value": "A180846, Opinion" + }, + { + "field": "subjec", + "value": "State v. Ellis" + }, + { + "field": "identia", + "value": "335 Or App 267" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A180846, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37132", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37132/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37132", + "metadataFields": [ + { + "field": "title", + "value": "A182853, Opinion" + }, + { + "field": "subjec", + "value": "State v. Daily" + }, + { + "field": "identia", + "value": "335 Or App 198" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A182853, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37133", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37133/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37133", + "metadataFields": [ + { + "field": "title", + "value": "A181180, Opinion" + }, + { + "field": "subjec", + "value": "State v. Hernandez-Marquez" + }, + { + "field": "identia", + "value": "335 Or App 253" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A181180, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37134", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37134/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37134", + "metadataFields": [ + { + "field": "title", + "value": "A180230, Opinion" + }, + { + "field": "subjec", + "value": "State v. Bradford" + }, + { + "field": "identia", + "value": "335 Or App 264" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A180230, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37135", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37135/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37135", + "metadataFields": [ + { + "field": "title", + "value": "A181049, Opinion" + }, + { + "field": "subjec", + "value": "State v. Brookwell" + }, + { + "field": "identia", + "value": "335 Or App 270" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A181049, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37136", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37136/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37136", + "metadataFields": [ + { + "field": "title", + "value": "A180013, Opinion" + }, + { + "field": "subjec", + "value": "State v. Sarria" + }, + { + "field": "identia", + "value": "335 Or App 201" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A180013, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37137", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37137/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37137", + "metadataFields": [ + { + "field": "title", + "value": "A178957, Opinion" + }, + { + "field": "subjec", + "value": "Klemp v. Andrach" + }, + { + "field": "identia", + "value": "335 Or App 187" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A178957, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37138", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37138/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37138", + "metadataFields": [ + { + "field": "title", + "value": "A182009, Opinion" + }, + { + "field": "subjec", + "value": "State v. Thorne" + }, + { + "field": "identia", + "value": "335 Or App 245" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A182009, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37139", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37139/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37139", + "metadataFields": [ + { + "field": "title", + "value": "A180676, Opinion" + }, + { + "field": "subjec", + "value": "State v. Day" + }, + { + "field": "identia", + "value": "335 Or App 238" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A180676, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37140", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37140/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37140", + "metadataFields": [ + { + "field": "title", + "value": "A180748, Opinion" + }, + { + "field": "subjec", + "value": "State v. Hansen" + }, + { + "field": "identia", + "value": "335 Or App 243" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A180748, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37141", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37141/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37141", + "metadataFields": [ + { + "field": "title", + "value": "A184663, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Land Conservation v. Clackamas County" + }, + { + "field": "identia", + "value": "335 Or App 205" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A184663, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37142", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37142/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37142", + "metadataFields": [ + { + "field": "title", + "value": "A176794, Opinion" + }, + { + "field": "subjec", + "value": "State v. T. L. B." + }, + { + "field": "identia", + "value": "335 Or App 225" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A176794, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37143", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37143/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37143", + "metadataFields": [ + { + "field": "title", + "value": "A179163, Opinion" + }, + { + "field": "subjec", + "value": "State v. Leinweber" + }, + { + "field": "identia", + "value": "335 Or App 257" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A179163, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37130", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37130/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37130", + "metadataFields": [ + { + "field": "title", + "value": "A180237, Opinion" + }, + { + "field": "subjec", + "value": "State v. Gonzales-Salcido" + }, + { + "field": "identia", + "value": "335 Or App 247" + }, + { + "field": "dated", + "value": "2024-09-25" + } + ], + "title": "A180237, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37115", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37115/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37115", + "metadataFields": [ + { + "field": "title", + "value": "A178454, Opinion" + }, + { + "field": "subjec", + "value": "Khoshnaw v. Washburn" + }, + { + "field": "identia", + "value": "335 Or App 163" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A178454, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37114", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37114/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37114", + "metadataFields": [ + { + "field": "title", + "value": "A178589, Opinion" + }, + { + "field": "subjec", + "value": "State v. Britt" + }, + { + "field": "identia", + "value": "335 Or App 91" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A178589, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37113", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37113/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37113", + "metadataFields": [ + { + "field": "title", + "value": "A183559, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. L. F." + }, + { + "field": "identia", + "value": "335 Or App 158" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A183559, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37112", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37112/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37112", + "metadataFields": [ + { + "field": "title", + "value": "A179469, Opinion" + }, + { + "field": "subjec", + "value": "State v. Hoppe" + }, + { + "field": "identia", + "value": "335 Or App 166" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A179469, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37111", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37111/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37111", + "metadataFields": [ + { + "field": "title", + "value": "A179474, Opinion" + }, + { + "field": "subjec", + "value": "State v. Goode" + }, + { + "field": "identia", + "value": "335 Or App 108" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A179474, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37110", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37110/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37110", + "metadataFields": [ + { + "field": "title", + "value": "A181611, Opinion" + }, + { + "field": "subjec", + "value": "City of Eugene v. Wade" + }, + { + "field": "identia", + "value": "335 Or App 186" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A181611, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37109", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37109/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37109", + "metadataFields": [ + { + "field": "title", + "value": "A175360, Opinion" + }, + { + "field": "subjec", + "value": "White v. Reyes" + }, + { + "field": "identia", + "value": "335 Or App 124" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A175360, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37126", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37126/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37126", + "metadataFields": [ + { + "field": "title", + "value": "A163980, Opinion" + }, + { + "field": "subjec", + "value": "State ex rel Rosenblum v. Living Essentials, LLC" + }, + { + "field": "identia", + "value": "335 Or App 30" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A163980, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37125", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37125/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37125", + "metadataFields": [ + { + "field": "title", + "value": "A183616, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. C. G." + }, + { + "field": "identia", + "value": "335 Or App 155" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A183616, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37124", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37124/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37124", + "metadataFields": [ + { + "field": "title", + "value": "A183729, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. J. W. H. G." + }, + { + "field": "identia", + "value": "335 Or App 183" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A183729, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37123", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37123/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37123", + "metadataFields": [ + { + "field": "title", + "value": "A180625, Opinion" + }, + { + "field": "subjec", + "value": "State v. Jones" + }, + { + "field": "identia", + "value": "335 Or App 79" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A180625, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37122", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37122/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37122", + "metadataFields": [ + { + "field": "title", + "value": "A183172, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. C. R." + }, + { + "field": "identia", + "value": "335 Or App 150" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A183172, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37121", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37121/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37121", + "metadataFields": [ + { + "field": "title", + "value": "A177140, Opinion" + }, + { + "field": "subjec", + "value": "State v. Andrews" + }, + { + "field": "identia", + "value": "335 Or App 59" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A177140, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37120", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37120/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37120", + "metadataFields": [ + { + "field": "title", + "value": "A179436, Opinion" + }, + { + "field": "subjec", + "value": "State v. Martinez" + }, + { + "field": "identia", + "value": "335 Or App 103" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A179436, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37119", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37119/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37119", + "metadataFields": [ + { + "field": "title", + "value": "A179813, Opinion" + }, + { + "field": "subjec", + "value": "Flesey v. Columbia Memorial Hospital" + }, + { + "field": "identia", + "value": "335 Or App 185" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A179813, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37118", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37118/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37118", + "metadataFields": [ + { + "field": "title", + "value": "A179286, Opinion" + }, + { + "field": "subjec", + "value": "Hayward v. High Performance Homes, Inc." + }, + { + "field": "identia", + "value": "335 Or App 178" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A179286, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37117", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37117/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37117", + "metadataFields": [ + { + "field": "title", + "value": "A182158, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. E. O." + }, + { + "field": "identia", + "value": "335 Or App 172" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A182158, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37116", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37116/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37116", + "metadataFields": [ + { + "field": "title", + "value": "A183731, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. G. G." + }, + { + "field": "identia", + "value": "335 Or App 168" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A183731, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37108", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37108/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37108", + "metadataFields": [ + { + "field": "title", + "value": "A179759, Opinion" + }, + { + "field": "subjec", + "value": "State v. Moore" + }, + { + "field": "identia", + "value": "335 Or App 74" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "A179759, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37071", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37071/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37071", + "metadataFields": [ + { + "field": "title", + "value": "A182386, Opinion" + }, + { + "field": "subjec", + "value": "Printemps-Herget v. Employment Dept." + }, + { + "field": "identia", + "value": "335 Or App 24" + }, + { + "field": "dated", + "value": "2024-09-11" + } + ], + "title": "A182386, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37070", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37070/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37070", + "metadataFields": [ + { + "field": "title", + "value": "A182198, Opinion" + }, + { + "field": "subjec", + "value": "State v. W. C." + }, + { + "field": "identia", + "value": "335 Or App 16" + }, + { + "field": "dated", + "value": "2024-09-11" + } + ], + "title": "A182198, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37069", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37069/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37069", + "metadataFields": [ + { + "field": "title", + "value": "A180918, Opinion" + }, + { + "field": "subjec", + "value": "Washington County v. Sippel" + }, + { + "field": "identia", + "value": "335 Or App 1" + }, + { + "field": "dated", + "value": "2024-09-11" + } + ], + "title": "A180918, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37068", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37068/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37068", + "metadataFields": [ + { + "field": "title", + "value": "A183725, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. C. E. B." + }, + { + "field": "identia", + "value": "335 Or App 27" + }, + { + "field": "dated", + "value": "2024-09-11" + } + ], + "title": "A183725, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37067", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37067/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37067", + "metadataFields": [ + { + "field": "title", + "value": "A182258, Opinion" + }, + { + "field": "subjec", + "value": "State v. H. C." + }, + { + "field": "identia", + "value": "335 Or App 20" + }, + { + "field": "dated", + "value": "2024-09-11" + } + ], + "title": "A182258, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37066", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37066/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37066", + "metadataFields": [ + { + "field": "title", + "value": "A181341, Opinion" + }, + { + "field": "subjec", + "value": "State v. C. M." + }, + { + "field": "identia", + "value": "335 Or App 13" + }, + { + "field": "dated", + "value": "2024-09-11" + } + ], + "title": "A181341, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37042", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37042/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37042", + "metadataFields": [ + { + "field": "title", + "value": "A176147, Opinion" + }, + { + "field": "subjec", + "value": "State v. Kelley" + }, + { + "field": "identia", + "value": "334 Or App 802" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A176147, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37043", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37043/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37043", + "metadataFields": [ + { + "field": "title", + "value": "A184314, Opinion" + }, + { + "field": "subjec", + "value": "Roberts v. City of Cannon Beach (A184314)" + }, + { + "field": "identia", + "value": "334 Or App 762" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A184314, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37044", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37044/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37044", + "metadataFields": [ + { + "field": "title", + "value": "A180819, Opinion" + }, + { + "field": "subjec", + "value": "Harris v. City of Portland" + }, + { + "field": "identia", + "value": "334 Or App 794" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A180819, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37045", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37045/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37045", + "metadataFields": [ + { + "field": "title", + "value": "A177705, Opinion" + }, + { + "field": "subjec", + "value": "State v. Vincent" + }, + { + "field": "identia", + "value": "334 Or App 714" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A177705, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37046", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37046/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37046", + "metadataFields": [ + { + "field": "title", + "value": "A184309, Opinion" + }, + { + "field": "subjec", + "value": "Roberts v. City of Cannon Beach (A184309)" + }, + { + "field": "identia", + "value": "334 Or App 807" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A184309, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37040", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37040/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37040", + "metadataFields": [ + { + "field": "title", + "value": "A179744, Opinion" + }, + { + "field": "subjec", + "value": "State v. S. L." + }, + { + "field": "identia", + "value": "334 Or App 782" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A179744, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37041", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37041/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37041", + "metadataFields": [ + { + "field": "title", + "value": "A180950, Opinion" + }, + { + "field": "subjec", + "value": "State v. Valdovinos-Moreno" + }, + { + "field": "identia", + "value": "334 Or App 829" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A180950, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37056", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37056/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37056", + "metadataFields": [ + { + "field": "title", + "value": "A173374, Opinion" + }, + { + "field": "subjec", + "value": "Stryffeler v. Jenq" + }, + { + "field": "identia", + "value": "334 Or App 788" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A173374, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37057", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37057/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37057", + "metadataFields": [ + { + "field": "title", + "value": "A169635, Opinion" + }, + { + "field": "subjec", + "value": "Marshall v. PricewaterhouseCoopers, LLC" + }, + { + "field": "identia", + "value": "334 Or App 751" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A169635, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37058", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37058/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37058", + "metadataFields": [ + { + "field": "title", + "value": "A178262, Opinion" + }, + { + "field": "subjec", + "value": "State v. W. K. L." + }, + { + "field": "identia", + "value": "334 Or App 821" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A178262, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37059", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37059/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37059", + "metadataFields": [ + { + "field": "title", + "value": "A177964, Opinion" + }, + { + "field": "subjec", + "value": "State v. Antonio" + }, + { + "field": "identia", + "value": "334 Or App 778" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A177964, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37047", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37047/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37047", + "metadataFields": [ + { + "field": "title", + "value": "A181592, Opinion" + }, + { + "field": "subjec", + "value": "VP Real Estate Investment Services v. Naftaniel" + }, + { + "field": "identia", + "value": "334 Or App 747" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A181592, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37048", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37048/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37048", + "metadataFields": [ + { + "field": "title", + "value": "A181875, Opinion" + }, + { + "field": "subjec", + "value": "State v. Y. S. H. -A." + }, + { + "field": "identia", + "value": "334 Or App 832" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A181875, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37049", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37049/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37049", + "metadataFields": [ + { + "field": "title", + "value": "A180585, Opinion" + }, + { + "field": "subjec", + "value": "Doss v. Farmers Ins. Co. of Oregon" + }, + { + "field": "identia", + "value": "334 Or App 826" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A180585, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37050", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37050/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37050", + "metadataFields": [ + { + "field": "title", + "value": "A174187, Opinion" + }, + { + "field": "subjec", + "value": "Tharp v. Washburn" + }, + { + "field": "identia", + "value": "334 Or App 810" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A174187, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37051", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37051/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37051", + "metadataFields": [ + { + "field": "title", + "value": "A177870, Opinion" + }, + { + "field": "subjec", + "value": "Meister v. PERB" + }, + { + "field": "identia", + "value": "334 Or App 725" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A177870, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37052", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37052/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37052", + "metadataFields": [ + { + "field": "title", + "value": "A180316, Opinion" + }, + { + "field": "subjec", + "value": "State v. Zarazua" + }, + { + "field": "identia", + "value": "334 Or App 741" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A180316, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37053", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37053/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37053", + "metadataFields": [ + { + "field": "title", + "value": "A182086, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. N. L." + }, + { + "field": "identia", + "value": "334 Or App 795" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A182086, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37054", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37054/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37054", + "metadataFields": [ + { + "field": "title", + "value": "A182249, Opinion" + }, + { + "field": "subjec", + "value": "Dept. of Human Services v. A. R. F." + }, + { + "field": "identia", + "value": "334 Or App 798" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A182249, Opinion" + }, + { + "collectionAlias": "p17027coll5", + "index": null, + "itemId": "37055", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll5/id/37055/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll5/id/37055", + "metadataFields": [ + { + "field": "title", + "value": "A184437, Opinion" + }, + { + "field": "subjec", + "value": "Neice v. Prosper Portland" + }, + { + "field": "identia", + "value": "334 Or App 735" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "A184437, Opinion" + } + ], + "facetFields": { + "type": "Type", + "judge": "Author", + "subjec1": "Parties" + }, + "gridViewEnabled": false +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ortc_example.compare.json b/tests/examples/opinions/united_states/ortc_example.compare.json new file mode 100644 index 000000000..5180e998b --- /dev/null +++ b/tests/examples/opinions/united_states/ortc_example.compare.json @@ -0,0 +1,287 @@ +[ + { + "case_dates": "2024-10-03", + "case_names": "Oakway Golf, Inc. v. Lane County Assessor", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9852/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC-MD 240038G", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-27", + "case_names": "Mughal v. Dept. of Rev.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9851/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC 5458", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "Mughal", + "per_curiam": false + }, + { + "case_dates": "2024-09-24", + "case_names": "Haney v. Marion County Assessor", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9817/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC-MD 230349N", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "Haney", + "per_curiam": false + }, + { + "case_dates": "2024-09-18", + "case_names": "Murphy v. Dept. of Rev.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9757/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC-MD 230234R", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-16", + "case_names": "Hefflinger v. Dept. of Rev.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9756/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC-MD 240450G", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "Hefflinger", + "per_curiam": false + }, + { + "case_dates": "2024-09-10", + "case_names": "Averett v. Dept. of Rev.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9755/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC-MD 230441G", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "Averett", + "per_curiam": false + }, + { + "case_dates": "2024-09-09", + "case_names": "Anzellotti v. Deschutes County Assessor", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9754/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC-MD 240192G", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "Anzellotti", + "per_curiam": false + }, + { + "case_dates": "2024-09-06", + "case_names": "Stamm v. Dept. of Rev.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9752/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC-MD 240033G", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "Stamm", + "per_curiam": false + }, + { + "case_dates": "2024-09-06", + "case_names": "Broken Trail LLC v. Deschutes County Assessor", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9753/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC-MD 240418N", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-09-05", + "case_names": "Hopson v. Douglas County Assessor", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9751/download", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Defendant's motion for summary judgment denied; parties to appear for a case management conference September 24 at 9:00 a.m.", + "docket_numbers": "TC-MD 230459N", + "judges": "Boomer", + "lower_court_numbers": "", + "citations": "", + "case_name_shorts": "Hopson", + "per_curiam": false + }, + { + "case_dates": "2024-08-29", + "case_names": "Microsoft Corp. v. Dept. of Rev.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9816/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC 5413", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2024-08-27", + "case_names": "Mednansky v. Dept. of Rev.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9748/download", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Plaintiff's motion and affidavit to disqualify is denied.", + "docket_numbers": "TC 5465", + "judges": "Manicke", + "lower_court_numbers": "", + "citations": "", + "case_name_shorts": "Mednansky", + "per_curiam": false + }, + { + "case_dates": "2024-08-19", + "case_names": "Antonick v. Dept. of Rev.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9747/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC-MD 230454R", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "Antonick", + "per_curiam": false + }, + { + "case_dates": "2024-08-01", + "case_names": "Cheremnov v. Dept. of Rev.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9746/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC-MD 230404R", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "Cheremnov", + "per_curiam": false + }, + { + "case_dates": "2024-07-29", + "case_names": "Fisher v. Dept. of Rev.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9745/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC-MD 230472N", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "Fisher", + "per_curiam": false + }, + { + "case_dates": "2024-07-25", + "case_names": "Vasquez v. Washington County Assessor", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9744/download", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Defendant's motion to compel granted. Plaintiffs must allow a site inspection within 30 days of the date of order, or case will be dismissed.", + "docket_numbers": "TC-MD 240109N", + "judges": "Boomer", + "lower_court_numbers": "", + "citations": "", + "case_name_shorts": "Vasquez", + "per_curiam": false + }, + { + "case_dates": "2024-07-24", + "case_names": "Moore v. Jackson County Assessor", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9742/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC-MD 210339N", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "Moore", + "per_curiam": false + }, + { + "case_dates": "2024-07-23", + "case_names": "Mednansky v. Dept. of Rev.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9750/download", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "placeholder disposition", + "docket_numbers": "TC 5465", + "judges": "placeholder judge", + "lower_court_numbers": "placeholder lower court number", + "citations": "", + "case_name_shorts": "Mednansky", + "per_curiam": false + }, + { + "case_dates": "2024-07-15", + "case_names": "Reutov v. Dept. of Rev.", + "download_urls": "https://ojd.contentdm.oclc.org/digital/api/collection/p17027coll6/id/9741/download", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Plaintiffs' basis in the boat was $185,000 in 2015 and they are allowed depreciation deductions accordingly; plaintiffs' basis in the fishing permit was $166,165 in 2016 and they are allowed amortization deductions accordingly; defendant will reduce its adjustment to plaintiffs' 2018 gross income for recaptured prior-year amortization and depreciation consistent with this decision; plaintiffs allowed a per diem deduction for traveling expenses from April 26, 2018 to October 12, 2018; plaintiffs allowed car and truck expenses based on a mileage of 5,930 in 2018; and defendant will reduce its adjustment to plaintiffs' 2018 gross income based on a bank deposit analysis by $3,271.", + "docket_numbers": "TC-MD 220447G", + "judges": "Lundgren", + "lower_court_numbers": "", + "citations": "", + "case_name_shorts": "Reutov", + "per_curiam": false + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ortc_example.json b/tests/examples/opinions/united_states/ortc_example.json new file mode 100644 index 000000000..6e34d858a --- /dev/null +++ b/tests/examples/opinions/united_states/ortc_example.json @@ -0,0 +1,1229 @@ +{ + "totalResults": 19, + "browseAllDefaultSortField": "dated", + "searchResultsDefaultSortField": "nosort", + "sortFields": [ + { + "name": "Relevance", + "order": "nosort", + "ad": "asc" + }, + { + "name": "Title", + "order": "title", + "ad": "asc" + }, + { + "name": "Title", + "order": "title", + "ad": "desc" + }, + { + "name": "Official case name", + "order": "subjec", + "ad": "asc" + }, + { + "name": "Official case name", + "order": "subjec", + "ad": "desc" + }, + { + "name": "Citation", + "order": "cita", + "ad": "asc" + }, + { + "name": "Citation", + "order": "cita", + "ad": "desc" + }, + { + "name": "Date decided", + "order": "dated", + "ad": "asc" + }, + { + "name": "Date decided", + "order": "dated", + "ad": "desc" + } + ], + "filters": { + "collections": [ + { + "name": "Briefs -- Oregon Court of Appeals", + "selected": false, + "alias": "p17027coll8" + }, + { + "name": "Briefs -- Oregon Supreme Court", + "selected": false, + "alias": "p17027coll7" + }, + { + "name": "Decisions & Orders -- Oregon Tax Court", + "selected": true, + "alias": "p17027coll6" + }, + { + "name": "District Attorney Public Records Orders", + "selected": false, + "alias": "p17027coll4" + }, + { + "name": "Opinions -- Oregon Court of Appeals", + "selected": false, + "alias": "p17027coll5" + }, + { + "name": "Opinions -- Oregon Supreme Court", + "selected": false, + "alias": "p17027coll3" + }, + { + "name": "Oregon Attorney General Public Records Orders", + "selected": false, + "alias": "p17027coll2" + }, + { + "name": "Oregon Chief Justice Orders", + "selected": false, + "alias": "p17027coll10" + }, + { + "name": "Oregon Employment Relations Board Final Orders", + "selected": false, + "alias": "p17027coll9" + }, + { + "name": "Oregon Governor Executive Orders", + "selected": false, + "alias": "p17027coll11" + } + ] + }, + "facets": { + "divisi": [ + { + "title": "magistrate", + "count": 15 + }, + { + "title": "regular", + "count": 4 + } + ], + "type": [ + { + "title": "unpublished", + "count": 19 + } + ], + "subjec1": [ + { + "title": "department of revenue", + "count": 13 + }, + { + "title": "curry county assessor", + "count": 2 + }, + { + "title": "david john mednansky", + "count": 2 + }, + { + "title": "deschutes county assessor", + "count": 2 + }, + { + "title": "anthony vasquez", + "count": 1 + }, + { + "title": "broken trail llc", + "count": 1 + }, + { + "title": "cathryn r. hopson", + "count": 1 + }, + { + "title": "christopher s. averett", + "count": 1 + }, + { + "title": "daniel i. reutov", + "count": 1 + }, + { + "title": "donald j. hefflinger", + "count": 1 + }, + { + "title": "douglas county assessor", + "count": 1 + } + ], + "title": [ + { + "title": "tc 5465, unpublished", + "count": 2 + }, + { + "title": "tc 5413, unpublished", + "count": 1 + }, + { + "title": "tc 5458, unpublished", + "count": 1 + }, + { + "title": "tc-md 210339n, unpublished", + "count": 1 + }, + { + "title": "tc-md 220447g, unpublished", + "count": 1 + }, + { + "title": "tc-md 230234r, unpublished", + "count": 1 + }, + { + "title": "tc-md 230349n, unpublished", + "count": 1 + }, + { + "title": "tc-md 230404r, unpublished", + "count": 1 + }, + { + "title": "tc-md 230441g, unpublished", + "count": 1 + }, + { + "title": "tc-md 230454r, unpublished", + "count": 1 + }, + { + "title": "tc-md 230459n, unpublished", + "count": 1 + } + ] + }, + "fields": { + "queries": [ + { + "mode": "exact", + "searchTerm": "20240701-20241010", + "field": "dated", + "connector": "and" + } + ], + "order": "nosort", + "direction": "asc" + }, + "items": [ + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9751", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9751/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9751", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 230459N, Unpublished" + }, + { + "field": "subjec", + "value": "Hopson v. Douglas County Assessor" + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-09-05" + } + ], + "title": "TC-MD 230459N, Unpublished", + "detailJson": { + "requestedId": 9751, + "id": 9751, + "parentId": -1, + "collectionAlias": "p17027coll6", + "collectionName": "Decisions & Orders -- Oregon Tax Court", + "contentType": "application/pdf", + "filename": "9752.pdf", + "title": "TC_MD_N_Unpublished", + "text": "", + "pageNumber": null, + "imageWidth": 1275, + "imageHeight": 1650, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "TC-MD 230459N, Unpublished", + "controlledVocabList": null + }, + { + "key": "subjec", + "label": "Official case name", + "controlledVocab": false, + "searchable": true, + "value": "Hopson v. Douglas County Assessor", + "controlledVocabList": null + }, + { + "key": "relispt", + "label": "Case number", + "controlledVocab": false, + "searchable": true, + "value": "TC-MD 230459N", + "controlledVocabList": null + }, + { + "key": "type", + "label": "Type", + "controlledVocab": false, + "searchable": true, + "value": "Unpublished", + "controlledVocabList": null + }, + { + "key": "dated", + "label": "Date decided", + "controlledVocab": false, + "searchable": true, + "value": "2024-09-05", + "controlledVocabList": null + }, + { + "key": "subjec1", + "label": "Parties", + "controlledVocab": true, + "searchable": true, + "value": "Cathryn R. Hopson; Douglas County Assessor", + "controlledVocabList": null + }, + { + "key": "judge", + "label": "Author", + "controlledVocab": false, + "searchable": true, + "value": "Boomer", + "controlledVocabList": null + }, + { + "key": "descri", + "label": "Notes", + "controlledVocab": false, + "searchable": false, + "value": "Defendant's motion for summary judgment denied; parties to appear for a case management conference September 24 at 9:00 a.m.", + "controlledVocabList": null + }, + { + "key": "rights", + "label": "Rights", + "controlledVocab": false, + "searchable": true, + "value": "No known copyright restrictions.", + "controlledVocabList": null + }, + { + "key": "identi", + "label": "Identifier", + "controlledVocab": false, + "searchable": true, + "value": "230459NHopsonOrder.pdf", + "controlledVocabList": null + }, + { + "key": "divisi", + "label": "Division", + "controlledVocab": true, + "searchable": true, + "value": "Magistrate", + "controlledVocabList": null + } + ], + "fullrsEnabled": false, + "hasPrintPDF": false, + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9751/thumbnail", + "imageUri": "https://ojd.contentdm.oclc.org/iiif/2/p17027coll6:9751/full/730,/0/default.jpg", + "iiifInfoUri": "/iiif/2/p17027coll6:9751/info.json", + "downloadUri": "/api/collection/p17027coll6/id/9751/download", + "downloadParentUri": null, + "url": null, + "streamUri": null, + "parent": null, + "flatCompoundObjects": null + } + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9741", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9741/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9741", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 220447G, Unpublished" + }, + { + "field": "subjec", + "value": "Reutov v. Dept. of Rev." + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-07-15" + } + ], + "title": "TC-MD 220447G, Unpublished", + "detailJson":{ + "requestedId": 9741, + "id": 9741, + "parentId": -1, + "collectionAlias": "p17027coll6", + "collectionName": "Decisions & Orders -- Oregon Tax Court", + "contentType": "application/pdf", + "filename": "9742.pdf", + "title": "TC_MD_G_Unpublished", + "text": "", + "pageNumber": null, + "imageWidth": 1275, + "imageHeight": 1650, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "TC-MD 220447G, Unpublished", + "controlledVocabList": null + }, + { + "key": "subjec", + "label": "Official case name", + "controlledVocab": false, + "searchable": true, + "value": "Reutov v. Dept. of Rev.", + "controlledVocabList": null + }, + { + "key": "relispt", + "label": "Case number", + "controlledVocab": false, + "searchable": true, + "value": "TC-MD 220447G", + "controlledVocabList": null + }, + { + "key": "type", + "label": "Type", + "controlledVocab": false, + "searchable": true, + "value": "Unpublished", + "controlledVocabList": null + }, + { + "key": "dated", + "label": "Date decided", + "controlledVocab": false, + "searchable": true, + "value": "2024-07-15", + "controlledVocabList": null + }, + { + "key": "subjec1", + "label": "Parties", + "controlledVocab": true, + "searchable": true, + "value": "Daniel I. Reutov; Department of Revenue", + "controlledVocabList": null + }, + { + "key": "judge", + "label": "Author", + "controlledVocab": false, + "searchable": true, + "value": "Lundgren", + "controlledVocabList": null + }, + { + "key": "descri", + "label": "Notes", + "controlledVocab": false, + "searchable": false, + "value": "Plaintiffs' basis in the boat was $185,000 in 2015 and they are allowed depreciation deductions accordingly; plaintiffs' basis in the fishing permit was $166,165 in 2016 and they are allowed amortization deductions accordingly; defendant will reduce its adjustment to plaintiffs' 2018 gross income for recaptured prior-year amortization and depreciation consistent with this decision; plaintiffs allowed a per diem deduction for traveling expenses from April 26, 2018 to October 12, 2018; plaintiffs allowed car and truck expenses based on a mileage of 5,930 in 2018; and defendant will reduce its adjustment to plaintiffs' 2018 gross income based on a bank deposit analysis by $3,271.", + "controlledVocabList": null + }, + { + "key": "rights", + "label": "Rights", + "controlledVocab": false, + "searchable": true, + "value": "No known copyright restrictions.", + "controlledVocabList": null + }, + { + "key": "identi", + "label": "Identifier", + "controlledVocab": false, + "searchable": true, + "value": "220447GReutovDE.pdf", + "controlledVocabList": null + }, + { + "key": "divisi", + "label": "Division", + "controlledVocab": true, + "searchable": true, + "value": "Magistrate", + "controlledVocabList": null + } + ], + "fullrsEnabled": false, + "hasPrintPDF": false, + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9741/thumbnail", + "imageUri": "https://ojd.contentdm.oclc.org/iiif/2/p17027coll6:9741/full/730,/0/default.jpg", + "iiifInfoUri": "/iiif/2/p17027coll6:9741/info.json", + "downloadUri": "/api/collection/p17027coll6/id/9741/download", + "downloadParentUri": null, + "url": null, + "streamUri": null, + "parent": null, + "flatCompoundObjects": null + } + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9744", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9744/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9744", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 240109N, Unpublished" + }, + { + "field": "subjec", + "value": "Vasquez v. Washington County Assessor" + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-07-25" + } + ], + "title": "TC-MD 240109N, Unpublished", + "detailJson":{ + "requestedId": 9744, + "id": 9744, + "parentId": -1, + "collectionAlias": "p17027coll6", + "collectionName": "Decisions & Orders -- Oregon Tax Court", + "contentType": "application/pdf", + "filename": "9744.pdf", + "title": "TC_MD_N_Unpublished", + "text": "", + "pageNumber": null, + "imageWidth": 1275, + "imageHeight": 1650, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "TC-MD 240109N, Unpublished", + "controlledVocabList": null + }, + { + "key": "subjec", + "label": "Official case name", + "controlledVocab": false, + "searchable": true, + "value": "Vasquez v. Washington County Assessor", + "controlledVocabList": null + }, + { + "key": "relispt", + "label": "Case number", + "controlledVocab": false, + "searchable": true, + "value": "TC-MD 240109N", + "controlledVocabList": null + }, + { + "key": "type", + "label": "Type", + "controlledVocab": false, + "searchable": true, + "value": "Unpublished", + "controlledVocabList": null + }, + { + "key": "dated", + "label": "Date decided", + "controlledVocab": false, + "searchable": true, + "value": "2024-07-25", + "controlledVocabList": null + }, + { + "key": "subjec1", + "label": "Parties", + "controlledVocab": true, + "searchable": true, + "value": "Anthony Vasquez; Washington County Assessor", + "controlledVocabList": null + }, + { + "key": "judge", + "label": "Author", + "controlledVocab": false, + "searchable": true, + "value": "Boomer", + "controlledVocabList": null + }, + { + "key": "descri", + "label": "Notes", + "controlledVocab": false, + "searchable": false, + "value": "Defendant's motion to compel granted. Plaintiffs must allow a site inspection within 30 days of the date of order, or case will be dismissed.", + "controlledVocabList": null + }, + { + "key": "rights", + "label": "Rights", + "controlledVocab": false, + "searchable": true, + "value": "No known copyright restrictions.", + "controlledVocabList": null + }, + { + "key": "identi", + "label": "Identifier", + "controlledVocab": false, + "searchable": true, + "value": "240109NVasquezOR.pdf", + "controlledVocabList": null + }, + { + "key": "divisi", + "label": "Division", + "controlledVocab": true, + "searchable": true, + "value": "Magistrate", + "controlledVocabList": null + } + ], + "fullrsEnabled": false, + "hasPrintPDF": false, + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9744/thumbnail", + "imageUri": "https://ojd.contentdm.oclc.org/iiif/2/p17027coll6:9744/full/730,/0/default.jpg", + "iiifInfoUri": "/iiif/2/p17027coll6:9744/info.json", + "downloadUri": "/api/collection/p17027coll6/id/9744/download", + "downloadParentUri": null, + "url": null, + "streamUri": null, + "parent": null, + "flatCompoundObjects": null + } + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9745", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9745/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9745", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 230472N, Unpublished" + }, + { + "field": "subjec", + "value": "Fisher v. Dept. of Rev." + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-07-29" + } + ], + "title": "TC-MD 230472N, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9852", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9852/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9852", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 240038G, Unpublished" + }, + { + "field": "subjec", + "value": "Oakway Golf, Inc. v. Lane County Assessor" + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-10-03" + } + ], + "title": "TC-MD 240038G, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9752", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9752/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9752", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 240033G, Unpublished" + }, + { + "field": "subjec", + "value": "Stamm v. Dept. of Rev." + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-09-06" + } + ], + "title": "TC-MD 240033G, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9746", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9746/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9746", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 230404R, Unpublished" + }, + { + "field": "subjec", + "value": "Cheremnov v. Dept. of Rev." + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-08-01" + } + ], + "title": "TC-MD 230404R, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9754", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9754/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9754", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 240192G, Unpublished" + }, + { + "field": "subjec", + "value": "Anzellotti v. Deschutes County Assessor" + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-09-09" + } + ], + "title": "TC-MD 240192G, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9851", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9851/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll6/id/9851", + "metadataFields": [ + { + "field": "title", + "value": "TC 5458, Unpublished" + }, + { + "field": "subjec", + "value": "Mughal v. Dept. of Rev." + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-09-27" + } + ], + "title": "TC 5458, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9755", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9755/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9755", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 230441G, Unpublished" + }, + { + "field": "subjec", + "value": "Averett v. Dept. of Rev." + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-09-10" + } + ], + "title": "TC-MD 230441G, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9747", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9747/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9747", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 230454R, Unpublished" + }, + { + "field": "subjec", + "value": "Antonick v. Dept. of Rev." + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-08-19" + } + ], + "title": "TC-MD 230454R, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9757", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9757/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9757", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 230234R, Unpublished" + }, + { + "field": "subjec", + "value": "Murphy v. Dept. of Rev." + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-09-18" + } + ], + "title": "TC-MD 230234R, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9816", + "filetype": "cpd", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9816/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/compoundobject/collection/p17027coll6/id/9816", + "metadataFields": [ + { + "field": "title", + "value": "TC 5413, Unpublished" + }, + { + "field": "subjec", + "value": "Microsoft Corp. v. Dept. of Rev." + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-08-29" + } + ], + "title": "TC 5413, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9750", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9750/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9750", + "metadataFields": [ + { + "field": "title", + "value": "TC 5465, Unpublished" + }, + { + "field": "subjec", + "value": "Mednansky v. Dept. of Rev." + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-07-23" + } + ], + "title": "TC 5465, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9748", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9748/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9748", + "metadataFields": [ + { + "field": "title", + "value": "TC 5465, Unpublished" + }, + { + "field": "subjec", + "value": "Mednansky v. Dept. of Rev." + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-08-27" + } + ], + "title": "TC 5465, Unpublished", + "detailJson":{ + "requestedId": 9748, + "id": 9748, + "parentId": -1, + "collectionAlias": "p17027coll6", + "collectionName": "Decisions & Orders -- Oregon Tax Court", + "contentType": "application/pdf", + "filename": "9751.pdf", + "title": "TC_Unpublished", + "text": "", + "pageNumber": null, + "imageWidth": 1275, + "imageHeight": 1650, + "fields": [ + { + "key": "title", + "label": "Title", + "controlledVocab": false, + "searchable": true, + "value": "TC 5465, Unpublished", + "controlledVocabList": null + }, + { + "key": "subjec", + "label": "Official case name", + "controlledVocab": false, + "searchable": true, + "value": "Mednansky v. Dept. of Rev.", + "controlledVocabList": null + }, + { + "key": "relispt", + "label": "Case number", + "controlledVocab": false, + "searchable": true, + "value": "TC 5465", + "controlledVocabList": null + }, + { + "key": "type", + "label": "Type", + "controlledVocab": false, + "searchable": true, + "value": "Unpublished", + "controlledVocabList": null + }, + { + "key": "dated", + "label": "Date decided", + "controlledVocab": false, + "searchable": true, + "value": "2024-08-27", + "controlledVocabList": null + }, + { + "key": "subjec1", + "label": "Parties", + "controlledVocab": true, + "searchable": true, + "value": "David John Mednansky; Department of Revenue; Curry County Assessor", + "controlledVocabList": null + }, + { + "key": "judge", + "label": "Author", + "controlledVocab": false, + "searchable": true, + "value": "Manicke", + "controlledVocabList": null + }, + { + "key": "descri", + "label": "Notes", + "controlledVocab": false, + "searchable": false, + "value": "Plaintiff's motion and affidavit to disqualify is denied.", + "controlledVocabList": null + }, + { + "key": "rights", + "label": "Rights", + "controlledVocab": false, + "searchable": true, + "value": "No known copyright restrictions.", + "controlledVocabList": null + }, + { + "key": "identi", + "label": "Identifier", + "controlledVocab": false, + "searchable": true, + "value": "MednanskyTC5465OrderDenyingMotiontodisqualifyJudge08272024.pdf", + "controlledVocabList": null + }, + { + "key": "divisi", + "label": "Division", + "controlledVocab": true, + "searchable": true, + "value": "Regular", + "controlledVocabList": null + } + ], + "fullrsEnabled": false, + "hasPrintPDF": false, + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9748/thumbnail", + "imageUri": "https://ojd.contentdm.oclc.org/iiif/2/p17027coll6:9748/full/730,/0/default.jpg", + "iiifInfoUri": "/iiif/2/p17027coll6:9748/info.json", + "downloadUri": "/api/collection/p17027coll6/id/9748/download", + "downloadParentUri": null, + "url": null, + "streamUri": null, + "parent": null, + "flatCompoundObjects": null + } + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9742", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9742/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9742", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 210339N, Unpublished" + }, + { + "field": "subjec", + "value": "Moore v. Jackson County Assessor" + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-07-24" + } + ], + "title": "TC-MD 210339N, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9753", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9753/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9753", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 240418N, Unpublished" + }, + { + "field": "subjec", + "value": "Broken Trail LLC v. Deschutes County Assessor" + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-09-06" + } + ], + "title": "TC-MD 240418N, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9817", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9817/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9817", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 230349N, Unpublished" + }, + { + "field": "subjec", + "value": "Haney v. Marion County Assessor" + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-09-24" + } + ], + "title": "TC-MD 230349N, Unpublished" + }, + { + "collectionAlias": "p17027coll6", + "index": null, + "itemId": "9756", + "filetype": "pdf", + "thumbnailUri": "/api/singleitem/collection/p17027coll6/id/9756/thumbnail", + "thumbnailEnabled": true, + "itemLink": "/singleitem/collection/p17027coll6/id/9756", + "metadataFields": [ + { + "field": "title", + "value": "TC-MD 240450G, Unpublished" + }, + { + "field": "subjec", + "value": "Hefflinger v. Dept. of Rev." + }, + { + "field": "cita", + "value": "" + }, + { + "field": "dated", + "value": "2024-09-16" + } + ], + "title": "TC-MD 240450G, Unpublished" + } + ], + "facetFields": { + "divisi": "Division", + "type": "Type", + "subjec1": "Parties", + "title": "Title" + }, + "gridViewEnabled": false + } \ No newline at end of file diff --git a/tests/examples/opinions/united_states/pa_example.compare.json b/tests/examples/opinions/united_states/pa_example.compare.json index ec17c7fe6..abfeda15a 100644 --- a/tests/examples/opinions/united_states/pa_example.compare.json +++ b/tests/examples/opinions/united_states/pa_example.compare.json @@ -1,673 +1,50 @@ [ { - "case_dates": "2021-10-20", - "case_names": "Rellick-Smith, S., Aplt. v. Rellick, B.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021oajc - 104928653149485274.pdf", + "case_dates": "2024-08-29", + "case_names": "Velasquez, L., Aplt v. Miranda, L.", + "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-45-2024mo - 106055073279289388.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23 WAP 2020", - "judges": "Justice Debra Todd", - "case_name_shorts": "" + "docket_numbers": "108 MAP 2023", + "judges": "Dougherty, Kevin M.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-20", - "case_names": "Rellick-Smith, S., Aplt. v. Rellick, B.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021do1 - 104928653149485261.pdf", + "case_dates": "2024-08-29", + "case_names": "Velasquez, L., Aplt v. Miranda, L.", + "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-45-2024do - 106055073279289763.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23 WAP 2020", - "judges": "Justice Sallie Mundy", - "case_name_shorts": "" + "docket_numbers": "108 MAP 2023", + "judges": "Brobson, P. Kevin", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-20", - "case_names": "Rellick-Smith, S., Aplt. v. Rellick, B.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021do - 104928653149485169.pdf", + "case_dates": "2024-08-29", + "case_names": "Velasquez, L., Aplt v. Miranda, L.", + "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-45-2024cdo - 106055073279289621.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23 WAP 2020", - "judges": "Chief Justice Max Baer", - "case_name_shorts": "" + "docket_numbers": "108 MAP 2023", + "judges": "Wecht, David N.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-20", - "case_names": "Rellick-Smith, S., Aplt. v. Rellick, B.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021co - 104928653149485198.pdf", + "case_dates": "2024-08-28", + "case_names": "Commonwealth v. Becher, C.", + "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/212WAL2024 - 106052645279039768.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23 WAP 2020", - "judges": "Justice Christine Donohue", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-20", - "case_names": "In the Interest of: T.W. Apl: T.W.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021mo - 104928255149467701.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "22 EAP 2020", - "judges": "Justice Sallie Mundy", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-20", - "case_names": "In the Interest of: T.W. Apl: T.W.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021co - 104928255149468281.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "22 EAP 2020", - "judges": "Justice Kevin Dougherty", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-20", - "case_names": "In the Interest of: T.W. Apl: T.W.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021cdo1 - 104928255149468865.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "22 EAP 2020", - "judges": "Justice David Wecht", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-20", - "case_names": "In the Interest of: T.W. Apl: T.W.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021cdo - 104928255149470225.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "22 EAP 2020", - "judges": "Justice Christine Donohue", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-20", - "case_names": "FOAC v. City of Hbg, Aplts.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020mo - 104928260149467765.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "29 MAP 2020", - "judges": "Justice Sallie Mundy", - "case_name_shorts": "FOAC" - }, - { - "case_dates": "2021-10-20", - "case_names": "FOAC v. City of Hbg, Aplts.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020do1 - 104928260149468030.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "29 MAP 2020", - "judges": "Justice Christine Donohue", - "case_name_shorts": "FOAC" - }, - { - "case_dates": "2021-10-20", - "case_names": "FOAC v. City of Hbg, Aplts.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020do - 104928260149468145.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "29 MAP 2020", - "judges": "Chief Justice Max Baer", - "case_name_shorts": "FOAC" - }, - { - "case_dates": "2021-10-20", - "case_names": "FOAC v. City of Hbg, Aplts.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020co - 104928260149467833.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "29 MAP 2020", - "judges": "Justice David Wecht", - "case_name_shorts": "FOAC" - }, - { - "case_dates": "2021-10-20", - "case_names": "Commonwealth v. Bradley, A., Aplt.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021mo - 104928486149472312.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "37 EAP 2020", - "judges": "Justice Debra Todd", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-20", - "case_names": "Commonwealth v. Bradley, A., Aplt.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021do - 104928486149473099.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "37 EAP 2020", - "judges": "Justice Sallie Mundy", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-20", - "case_names": "Commonwealth v. Bradley, A., Aplt.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021co1 - 104928486149472799.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "37 EAP 2020", - "judges": "Justice David Wecht", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-20", - "case_names": "Commonwealth v. Bradley, A., Aplt.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021co - 104928486149472573.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "37 EAP 2020", - "judges": "Justice Kevin Dougherty", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-19", - "case_names": "Taylor, R. v. PA Dept Labor & Industry", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/48EM2021 - 104927909149430879.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "48 EM 2021", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-19", - "case_names": "Mickman, E. v. White & Williams", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/41EM2021 - 104927983149435352.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "41 EM 2021", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-19", - "case_names": "Green, K. v. Ct. Com Pleas Phila Cty.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/40EM2021 - 104927954149432576.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "40 EM 2021", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-19", - "case_names": "Crenshaw, S. v. Pgh Public Schools", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/95WAL2021 - 104927835149425301.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "95 WAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-19", - "case_names": "Cowher, K. v. Kodali, S.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/259MAL2021 - 104927819149424201.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "259 MAL 2021 (Granted)", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-19", - "case_names": "Commonwealth v. Young, W.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/43EM2021 - 104928045149440010.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "43 EM 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-19", - "case_names": "Commonwealth v. Schmitz, W., Jr.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/266MAL2021 - 104927940149431828.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "266 MAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-19", - "case_names": "Commonwealth v. Roseboro, K., of: Wiseman, M.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/42EM2021 - 104928171149448314.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "42 EM 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-19", - "case_names": "Commonwealth v. McMillan, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/10EAL2021 - 104927444149396331.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10 EAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-19", - "case_names": "Commonwealth v. Jones, T.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/73MM2021 - 104927903149429912.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "73 MM 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-19", - "case_names": "Commonwealth v. Donoughe, M.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/7WAL2021 - 104927443149395959.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "7 WAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-19", - "case_names": "Commonwealth v. Cooke, A.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/244MAL2021 - 104927823149424519.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "244 MAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-19", - "case_names": "Commonwealth v. Colbert of: Vidt", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/35WM2021 - 104927993149435205.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "35 WM 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-19", - "case_names": "Commonwealth v. Abdul-Hakim, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/165EAL2021 - 104927825149425043.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "165 EAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-19", - "case_names": "City of Pittsburgh v. Lanese, M.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/37WM2021 - 104927863149427490.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "37 WM 2021", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-19", - "case_names": "Buxton, A. v. Commonwealth of PA", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/38WM2021 - 104927922149431324.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "38 WM 2021", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-19", - "case_names": "Barr, S. v. WCAB (GMRI, Inc.)", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/260MAL2021 - 104927816149423935.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "260 MAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-19", - "case_names": "Amun Ra-Bey v. Commonwealth of PA", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/47EM2021 - 104928079149441301.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "47 EM 2021", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-18", - "case_names": "U.S. Bank National v. Liott, J.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/309MAL2021 - 104926054149280837.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "309 MAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-18", - "case_names": "PA State System of Higher Ed., Pet v. WCAB (Herb)", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/225MAL2021 - 104926287149299994.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "225 MAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-18", - "case_names": "PA State System of Higher Ed., Pet v. WCAB (Herb)", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/224MAL2021 - 104926286149299994.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "224 MAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-18", - "case_names": "In Re: 1st Judicial District (Phila. County)", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/Order Denying Municipal Court's Request to suspend Pa.R.Cr.P. 600 and 1013 through Nov. 15, 2021.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21 EM 2020", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-18", - "case_names": "Herb, Pet v. WCAB (PA State System of Higher Ed)", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/223MAL2021 - 104926285149299994.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "223 MAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-18", - "case_names": "Herb v. WCAB (PA State System of Higher Ed)", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/222MAL2021 - 104926284149299994.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "222 MAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Herb" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Vazquez, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/306MAL2021 - 104926025149280272.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "306 MAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Smith, W.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/224EAL2021 - 104925992149275420.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "224 EAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Sims, R.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/318MAL2021 - 104926061149281623.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "318 MAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Moffatt, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/134WAL2021 - 104926069149281961.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "134 WAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Meleschuck, W.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/226MAL2021 - 104926001149276918.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "226 MAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. McNeal, A.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/708MAL2020 - 104925965149272162.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "708 MAL 2020", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Luptak, R. Pet", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/15WAL2021 - 104925972149272329.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15 WAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Luptak, R.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/17WAL2021 - 104925974149272329.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17 WAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Luptak, R.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/16WAL2021 - 104925973149272329.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16 WAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Luptak, R.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/14WAL2021 - 104925971149272329.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "14 WAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Johnson, M.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/171WAL2021 - 104926073149283021.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "171 WAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Gist, K.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/243MAL2021 - 104926300149300763.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "243 MAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Fulton, L.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/250EAL2021 - 104925996149276067.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "250 EAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Brooks, M.", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/278MAL2021 - 104926003149277378.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "278 MAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Albert, T., Pet", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/161WAL2021 - 104926343149303352.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "161 WAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Albert, T., Pet", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/160WAL2021 - 104926342149303352.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "160 WAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-18", - "case_names": "Commonwealth v. Albert, T., Pet", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/159WAL2021 - 104926341149303352.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "159 WAL 2021", - "judges": "Per Curiam", - "case_name_shorts": "Commonwealth" - }, - { - "case_dates": "2021-10-14", - "case_names": "ODC v. James David Casale", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/2827DD3 - 104923450149060144.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2827 DD3", - "judges": "Per Curiam", - "case_name_shorts": "ODC" - }, - { - "case_dates": "2021-10-14", - "case_names": "In the Matter of: Randall Pyles", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/63RST2021 - 104923298149049195.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "63 RST 2021", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-14", - "case_names": "In the Matter of: Gerald Hecht", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/2813DD3 - 104923396149057515.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2813 DD3", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-14", - "case_names": "In the Matter of: Adam Luke Brent", - "download_urls": "https://www.pacourts.us/assets/opinions/Supreme/out/2814DD3 - 104923385149057073.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2814 DD3", - "judges": "Per Curiam", - "case_name_shorts": "" + "docket_numbers": "212 WAL 2024", + "judges": "", + "case_name_shorts": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/pa_example.json b/tests/examples/opinions/united_states/pa_example.json new file mode 100644 index 000000000..699c1ed61 --- /dev/null +++ b/tests/examples/opinions/united_states/pa_example.json @@ -0,0 +1,156 @@ +{ + "Items": [ + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Velasquez, L., Aplt v. Miranda, L. - No. 108 MAP 2023", + "CourtDocketNumber": null, + "CourtType": 3, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "M.D. Prothonotary", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 89593, + "AuthorId": "Dougherty, Kevin M.", + "OpinionId": 81227, + "FileName": "J-45-2024mo - 106055073279289388.pdf", + "ProcessedDate": "2024-08-29T00:00:00", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "2024-08-29T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Justice Kevin Dougherty", + "AuthorCode": "Dougherty, Kevin M.", + "Selectable": true, + "SortOrder": 1440 + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": null + }, + { + "Id": 89594, + "AuthorId": "Wecht, David N.", + "OpinionId": 81227, + "FileName": "J-45-2024cdo - 106055073279289621.pdf", + "ProcessedDate": "2024-08-29T00:00:00", + "PostingTypeId": "cd", + "PublicationTypeId": null, + "RenderedDate": "2024-08-29T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Justice David Wecht", + "AuthorCode": "Wecht, David N.", + "Selectable": true, + "SortOrder": 1450 + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "cd", + "PostingTypeId": "Concurring and Dissenting Opinion", + "SortOrder": null + }, + "PublicationType": null + }, + { + "Id": 89595, + "AuthorId": "Brobson, P. Kevin", + "OpinionId": 81227, + "FileName": "J-45-2024do - 106055073279289763.pdf", + "ProcessedDate": "2024-08-29T00:00:00", + "PostingTypeId": "do", + "PublicationTypeId": null, + "RenderedDate": "2024-08-29T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Justice P. Kevin Brobson", + "AuthorCode": "Brobson, P. Kevin", + "Selectable": true, + "SortOrder": 1470 + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "do", + "PostingTypeId": "Dissenting Opinion", + "SortOrder": null + }, + "PublicationType": null + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 81227 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Commonwealth v. Becher, C., Pet. - No. 212 WAL 2024", + "CourtDocketNumber": null, + "CourtType": 3, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "W.D. Prothonotary", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 89581, + "AuthorId": "Per Curiam", + "OpinionId": 81215, + "FileName": "212WAL2024 - 106052645279039768.pdf", + "ProcessedDate": "2024-08-28T00:00:00", + "PostingTypeId": "sd", + "PublicationTypeId": null, + "RenderedDate": "2024-08-28T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": null, + "PostType": { + "Id": 0, + "PostingTypeCode": "sd", + "PostingTypeId": "Summary Disposition", + "SortOrder": null + }, + "PublicationType": null + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 81215 + } + ], + "TotalItems": 2, + "TotalPages": 1, + "PageNumber": 1, + "PageSize": 20, + "HasPrevious": false, + "HasNext": false +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/pa_example.xml b/tests/examples/opinions/united_states/pa_example.xml deleted file mode 100644 index de6be3b5c..000000000 --- a/tests/examples/opinions/united_states/pa_example.xml +++ /dev/null @@ -1,642 +0,0 @@ - - - - - Unified Judicial System of Pennsylvania: Supreme Court Opinions - https://www.pacourts.us/Rss/Opinions/Supreme/ - Unified Judicial System of Pennsylvania: Supreme Court Opinions - Wed, 20 Oct 2021 04:00:00 GMT - en-us - - Rellick-Smith, S., Aplt. v. Rellick, B., et al. - No. 23 WAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021oajc - 104928653149485274.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021oajc - 104928653149485274.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021oajc - 104928653149485274.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice Debra Todd - - - Rellick-Smith, S., Aplt. v. Rellick, B., et al. - No. 23 WAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021co - 104928653149485198.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021co - 104928653149485198.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021co - 104928653149485198.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice Christine Donohue - - - Rellick-Smith, S., Aplt. v. Rellick, B., et al. - No. 23 WAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021do - 104928653149485169.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021do - 104928653149485169.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021do - 104928653149485169.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Chief Justice Max Baer - - - Rellick-Smith, S., Aplt. v. Rellick, B., et al. - No. 23 WAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021do1 - 104928653149485261.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021do1 - 104928653149485261.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-25-2021do1 - 104928653149485261.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice Sallie Mundy - - - FOAC, et al. v. City of Hbg, et al., Aplts. - No. 29 MAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020mo - 104928260149467765.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020mo - 104928260149467765.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020mo - 104928260149467765.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice Sallie Mundy - - - FOAC, et al. v. City of Hbg, et al., Aplts. - No. 29 MAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020co - 104928260149467833.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020co - 104928260149467833.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020co - 104928260149467833.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice David Wecht - - - FOAC, et al. v. City of Hbg, et al., Aplts. - No. 29 MAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020do - 104928260149468145.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020do - 104928260149468145.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020do - 104928260149468145.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Chief Justice Max Baer - - - FOAC, et al. v. City of Hbg, et al., Aplts. - No. 29 MAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020do1 - 104928260149468030.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020do1 - 104928260149468030.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-83-2020do1 - 104928260149468030.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice Christine Donohue - - - In the Interest of: T.W.; Apl: T.W. - No. 22 EAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021mo - 104928255149467701.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021mo - 104928255149467701.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021mo - 104928255149467701.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice Sallie Mundy - - - In the Interest of: T.W.; Apl: T.W. - No. 22 EAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021co - 104928255149468281.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021co - 104928255149468281.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021co - 104928255149468281.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice Kevin Dougherty - - - In the Interest of: T.W.; Apl: T.W. - No. 22 EAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021cdo - 104928255149470225.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021cdo - 104928255149470225.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021cdo - 104928255149470225.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice Christine Donohue - - - In the Interest of: T.W.; Apl: T.W. - No. 22 EAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021cdo1 - 104928255149468865.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021cdo1 - 104928255149468865.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-6-2021cdo1 - 104928255149468865.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice David Wecht - - - Commonwealth v. Bradley, A., Aplt. - No. 37 EAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021mo - 104928486149472312.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021mo - 104928486149472312.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021mo - 104928486149472312.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice Debra Todd - - - Commonwealth v. Bradley, A., Aplt. - No. 37 EAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021co - 104928486149472573.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021co - 104928486149472573.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021co - 104928486149472573.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice Kevin Dougherty - - - Commonwealth v. Bradley, A., Aplt. - No. 37 EAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021co1 - 104928486149472799.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021co1 - 104928486149472799.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021co1 - 104928486149472799.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice David Wecht - - - Commonwealth v. Bradley, A., Aplt. - No. 37 EAP 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021do - 104928486149473099.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021do - 104928486149473099.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/J-44-2021do - 104928486149473099.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Justice Sallie Mundy - - - In Re: Order Amending Rules 1901, 1901.3, 1910.11, 1910.12, 1915.4-2, 1915.4-3, 1920.1, 1920.31, 1920.33, 1920.42, 1920.45, 1920.46, 1920.51, 1920.53, 1920.54, 1920.55-1, 1920.55-2, 1920.55-3, 1920.61, 1920.74, 1920.91, 1930.7, 1931 PA Rules Civ Procedure - No. 721 Civil Procedural Rules Docket - https://www.pacourts.us/assets/opinions/Supreme/out/Attachment - 104928530149474942.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/Attachment - 104928530149474942.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/Attachment - 104928530149474942.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - In Re: Order Amending Rules 1901, 1901.3, 1910.11, 1910.12, 1915.4-2, 1915.4-3, 1920.1, 1920.31, 1920.33, 1920.42, 1920.45, 1920.46, 1920.51, 1920.53, 1920.54, 1920.55-1, 1920.55-2, 1920.55-3, 1920.61, 1920.74, 1920.91, 1930.7, 1931 PA Rules Civ Procedure - No. 721 Civil Procedural Rules Docket - https://www.pacourts.us/assets/opinions/Supreme/out/Order - 104928530149475040.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/Order - 104928530149475040.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/Order - 104928530149475040.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Buxton, A., Pet. v. Commonwealth of PA, Et. al. - No. 38 WM 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/38WM2021 - 104927922149431324.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/38WM2021 - 104927922149431324.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/38WM2021 - 104927922149431324.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - City of Pittsburgh, et al v. Lanese, M., Pet. - No. 37 WM 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/37WM2021 - 104927863149427490.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/37WM2021 - 104927863149427490.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/37WM2021 - 104927863149427490.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Colbert Pet. of: Vidt - No. 35 WM 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/35WM2021 - 104927993149435205.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/35WM2021 - 104927993149435205.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/35WM2021 - 104927993149435205.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Crenshaw, S., Pet. v. Pgh Public Schools - No. 95 WAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/95WAL2021 - 104927835149425301.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/95WAL2021 - 104927835149425301.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/95WAL2021 - 104927835149425301.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Donoughe, M., Pet. - No. 7 WAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/7WAL2021 - 104927443149395959.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/7WAL2021 - 104927443149395959.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/7WAL2021 - 104927443149395959.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Jones, T., Pet. - No. 73 MM 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/73MM2021 - 104927903149429912.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/73MM2021 - 104927903149429912.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/73MM2021 - 104927903149429912.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Cowher, K., Pet. v. Kodali, S. - No. 259 MAL 2021 (Granted) - https://www.pacourts.us/assets/opinions/Supreme/out/259MAL2021 - 104927819149424201.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/259MAL2021 - 104927819149424201.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/259MAL2021 - 104927819149424201.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Schmitz, W., Jr., Pet. - No. 266 MAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/266MAL2021 - 104927940149431828.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/266MAL2021 - 104927940149431828.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/266MAL2021 - 104927940149431828.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Barr, S., Pet. v. WCAB (GMRI, Inc., et al) - No. 260 MAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/260MAL2021 - 104927816149423935.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/260MAL2021 - 104927816149423935.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/260MAL2021 - 104927816149423935.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Cooke, A., Pet. - No. 244 MAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/244MAL2021 - 104927823149424519.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/244MAL2021 - 104927823149424519.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/244MAL2021 - 104927823149424519.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Abdul-Hakim, D., Pet. - No. 165 EAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/165EAL2021 - 104927825149425043.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/165EAL2021 - 104927825149425043.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/165EAL2021 - 104927825149425043.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. McMillan, D., Pet. - No. 10 EAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/10EAL2021 - 104927444149396331.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/10EAL2021 - 104927444149396331.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/10EAL2021 - 104927444149396331.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Roseboro, K., Pet. of: Wiseman, M. - No. 42 EM 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/42EM2021 - 104928171149448314.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/42EM2021 - 104928171149448314.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/42EM2021 - 104928171149448314.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Amun Ra-Bey, Pet. v. Commonwealth of PA et al. - No. 47 EM 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/47EM2021 - 104928079149441301.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/47EM2021 - 104928079149441301.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/47EM2021 - 104928079149441301.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Green, K., Pet. v. Ct. Com Pleas Phila Cty. - No. 40 EM 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/40EM2021 - 104927954149432576.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/40EM2021 - 104927954149432576.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/40EM2021 - 104927954149432576.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Young, W., Pet. - No. 43 EM 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/43EM2021 - 104928045149440010.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/43EM2021 - 104928045149440010.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/43EM2021 - 104928045149440010.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Taylor, R., Pet. v. PA Dept Labor &amp; Industry - No. 48 EM 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/48EM2021 - 104927909149430879.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/48EM2021 - 104927909149430879.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/48EM2021 - 104927909149430879.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Mickman, E., Pet. v. White &amp; Williams - No. 41 EM 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/41EM2021 - 104927983149435352.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/41EM2021 - 104927983149435352.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/41EM2021 - 104927983149435352.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Johnson, M., Pet. - No. 171 WAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/171WAL2021 - 104926073149283021.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/171WAL2021 - 104926073149283021.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/171WAL2021 - 104926073149283021.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Albert, T., Pet - No. 161 WAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/161WAL2021 - 104926343149303352.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/161WAL2021 - 104926343149303352.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/161WAL2021 - 104926343149303352.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Albert, T., Pet - No. 160 WAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/160WAL2021 - 104926342149303352.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/160WAL2021 - 104926342149303352.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/160WAL2021 - 104926342149303352.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Albert, T., Pet - No. 159 WAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/159WAL2021 - 104926341149303352.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/159WAL2021 - 104926341149303352.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/159WAL2021 - 104926341149303352.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Moffatt, D., Pet. - No. 134 WAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/134WAL2021 - 104926069149281961.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/134WAL2021 - 104926069149281961.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/134WAL2021 - 104926069149281961.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Luptak, R., Pet. - No. 17 WAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/17WAL2021 - 104925974149272329.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/17WAL2021 - 104925974149272329.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/17WAL2021 - 104925974149272329.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Luptak, R., Pet. - No. 16 WAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/16WAL2021 - 104925973149272329.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/16WAL2021 - 104925973149272329.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/16WAL2021 - 104925973149272329.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Luptak, R. Pet - No. 15 WAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/15WAL2021 - 104925972149272329.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/15WAL2021 - 104925972149272329.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/15WAL2021 - 104925972149272329.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Luptak, R. Pet. - No. 14 WAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/14WAL2021 - 104925971149272329.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/14WAL2021 - 104925971149272329.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/14WAL2021 - 104925971149272329.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Sims, R., Pet. - No. 318 MAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/318MAL2021 - 104926061149281623.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/318MAL2021 - 104926061149281623.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/318MAL2021 - 104926061149281623.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - U.S. Bank National v. Liott, J., Pet. - No. 309 MAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/309MAL2021 - 104926054149280837.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/309MAL2021 - 104926054149280837.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/309MAL2021 - 104926054149280837.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Vazquez, D., Pet. - No. 306 MAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/306MAL2021 - 104926025149280272.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/306MAL2021 - 104926025149280272.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/306MAL2021 - 104926025149280272.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Brooks, M., Pet. - No. 278 MAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/278MAL2021 - 104926003149277378.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/278MAL2021 - 104926003149277378.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/278MAL2021 - 104926003149277378.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Gist, K., Pet. - No. 243 MAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/243MAL2021 - 104926300149300763.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/243MAL2021 - 104926300149300763.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/243MAL2021 - 104926300149300763.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Meleschuck, W., Pet. - No. 226 MAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/226MAL2021 - 104926001149276918.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/226MAL2021 - 104926001149276918.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/226MAL2021 - 104926001149276918.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - PA State System of Higher Ed., Pet v. WCAB (Herb) - No. 225 MAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/225MAL2021 - 104926287149299994.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/225MAL2021 - 104926287149299994.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/225MAL2021 - 104926287149299994.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - PA State System of Higher Ed., Pet v. WCAB (Herb) - No. 224 MAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/224MAL2021 - 104926286149299994.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/224MAL2021 - 104926286149299994.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/224MAL2021 - 104926286149299994.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Herb, Pet v. WCAB (PA State System of Higher Ed) - No. 223 MAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/223MAL2021 - 104926285149299994.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/223MAL2021 - 104926285149299994.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/223MAL2021 - 104926285149299994.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Herb, Pet. v. WCAB (PA State System of Higher Ed) - No. 222 MAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/222MAL2021 - 104926284149299994.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/222MAL2021 - 104926284149299994.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/222MAL2021 - 104926284149299994.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. McNeal, A., Pet. - No. 708 MAL 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/708MAL2020 - 104925965149272162.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/708MAL2020 - 104925965149272162.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/708MAL2020 - 104925965149272162.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Fulton, L., Pet. - No. 250 EAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/250EAL2021 - 104925996149276067.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/250EAL2021 - 104925996149276067.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/250EAL2021 - 104925996149276067.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - Commonwealth v. Smith, W., Pet. - No. 224 EAL 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/224EAL2021 - 104925992149275420.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/224EAL2021 - 104925992149275420.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/224EAL2021 - 104925992149275420.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - In Re: 1st Judicial District (Phila. County), No. 21 EM 2020 - https://www.pacourts.us/assets/opinions/Supreme/out/Order Denying Municipal Court's Request to suspend Pa.R.Cr.P. 600 and 1013 through Nov. 15, 2021.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/Order Denying Municipal Court's Request to suspend Pa.R.Cr.P. 600 and 1013 through Nov. 15, 2021.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/Order Denying Municipal Court's Request to suspend Pa.R.Cr.P. 600 and 1013 through Nov. 15, 2021.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Per Curiam - - - ODC, Pet. v. James David Casale - No. 2827 DD3 - https://www.pacourts.us/assets/opinions/Supreme/out/2827DD3 - 104923450149060144.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/2827DD3 - 104923450149060144.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/2827DD3 - 104923450149060144.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Per Curiam - - - In the Matter of: Adam Luke Brent - No. 2814 DD3 - https://www.pacourts.us/assets/opinions/Supreme/out/2814DD3 - 104923385149057073.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/2814DD3 - 104923385149057073.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/2814DD3 - 104923385149057073.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Per Curiam - - - In the Matter of: Gerald Hecht - No. 2813 DD3 - https://www.pacourts.us/assets/opinions/Supreme/out/2813DD3 - 104923396149057515.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/2813DD3 - 104923396149057515.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/2813DD3 - 104923396149057515.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Per Curiam - - - In the Matter of: Randall Pyles - No. 63 RST 2021 - https://www.pacourts.us/assets/opinions/Supreme/out/63RST2021 - 104923298149049195.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/63RST2021 - 104923298149049195.pdf - https://www.pacourts.us/assets/opinions/Supreme/out/63RST2021 - 104923298149049195.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Per Curiam - - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/pacommwct_example.compare.json b/tests/examples/opinions/united_states/pacommwct_example.compare.json index eeee4053a..ef780abe1 100644 --- a/tests/examples/opinions/united_states/pacommwct_example.compare.json +++ b/tests/examples/opinions/united_states/pacommwct_example.compare.json @@ -1,552 +1,242 @@ [ { - "case_dates": "2021-10-20", - "case_names": "T. Anderson v. PPB", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1248CD20_10-20-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1248 C.D. 2020", - "judges": "Covey, J.", - "case_name_shorts": "PPB" - }, - { - "case_dates": "2021-10-20", - "case_names": "J. Markham v. T.W. Wolf, in his Official Capacity as Governor of the Com of PA", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/176MD15_10-20-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "176 M.D. 2015", - "judges": "Wojcik, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-20", - "case_names": "G. Geiselman v. Hellam Twp. Bd. of Supers. v. WWBK Real Estate Holding, LLC & W. & W. Hewitt", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/805CD20_10-20-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "805 C.D. 2020", - "judges": "Leadbetter, President Judge Emerita", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-20", - "case_names": "D.L. Harer v. Muncy S.D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1216CD20_10-20-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1216 C.D. 2020", - "judges": "McCullough, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-19", - "case_names": "K.W. Jones v. Bureau of Driver Licensing", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/837CD20_10-19-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "M. Hamilton v. PPB", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/526CD23_8-29-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "837 C.D. 2020", - "judges": "Leavitt, President Judge Emerita", - "case_name_shorts": "" + "docket_numbers": "526 C.D. 2023", + "judges": "Wallace", + "case_name_shorts": "PPB", + "per_curiam": false }, { - "case_dates": "2021-10-18", - "case_names": "Nat'l. Election Defense Coalition v. K. Boockvar, Sec'y. of the Com.", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/674MD19_10-18-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "J.D. Lynn v. The PA DOC", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/168MD23_8-29-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "674 M.D. 2019", - "judges": "Brobson, J. ~ Concurring Opinion by McCullough, J.", - "case_name_shorts": "" + "docket_numbers": "168 M.D. 2023", + "judges": "Wallace", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-18", - "case_names": "J.L. Irvin v. UCBR", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1123CD20_10-18-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "J. Jacob v. PA DOC", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/337MD23_8-29-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1123 C.D. 2020", - "judges": "Brobson, President Judge", - "case_name_shorts": "UCBR" + "docket_numbers": "337 M.D. 2023", + "judges": "Covey", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-15", - "case_names": "PA State Corrections Officers Assoc. v. Com. of PA, DOC", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/380CD21_10-15-21.pdf", + "case_dates": "2024-08-29", + "case_names": "In re: Nom. Papers of C. De la Cruz ~ Obj. of: A. Reber & J. Smucker", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/379MD24_8-29-24.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "380 C.D. 2021", - "judges": "Ceisler, J.", - "case_name_shorts": "" + "docket_numbers": "379 M.D. 2024", + "judges": "Leadbetter", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-15", - "case_names": "New Morgan Landfill Co., Inc. v. Berks County Solid Waste Auth. & County of Berks, PA", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/149CD20_10-15-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "Falls Twp. v. Buckingham Twp. Police Dept.", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/374CD23_8-29-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "149 C.D. 2020", - "judges": "Ceisler, J.", - "case_name_shorts": "" + "docket_numbers": "374 C.D. 2023", + "judges": "Leavitt", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-15", - "case_names": "Bear Staffing v. S. Logan (WCAB)", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/949CD20_10-15-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "A. Cohen v. UCBR", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/716CD23_8-29-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "949 C.D. 2020", - "judges": "McCullough, J.", - "case_name_shorts": "" + "docket_numbers": "716 C.D. 2023", + "judges": "Covey", + "case_name_shorts": "UCBR", + "per_curiam": false }, { - "case_dates": "2021-10-14", - "case_names": "The Hon. W. Scott, Mayor of the City of Reading v. City of Reading Charter Bd.", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1307CD20_10-14-21.pdf", + "case_dates": "2024-08-28", + "case_names": "S.E.N. v. Dept. of Ed. (Professional Standards & Practices Comm.)", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/651CD23_8-28-24.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1307 C.D. 2020", - "judges": "Ceisler, J.", - "case_name_shorts": "" + "docket_numbers": "651 C.D. 2023", + "judges": "Wallace", + "case_name_shorts": "S.E.N.", + "per_curiam": false }, { - "case_dates": "2021-10-14", - "case_names": "PA PT Assoc. & Waterford PT, Inc. v. Hon. W.G. Oleksiak, Sec'y. of L&I", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/2MD20_10-14-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "J. Doyle v. Monroe County Transportation Authority", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/469CD23_8-28-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2 M.D. 2020", - "judges": "Leavitt, President Judge Emerita", - "case_name_shorts": "" + "docket_numbers": "469 C.D. 2023", + "judges": "Dumas", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-14", - "case_names": "O. Herbert & M. Herbert v. W. Reading Borough ZHB & Borough of W. Reading ~ Appeal of: Borough of W. Reading", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1113CD20_10-14-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "E. Ramos v. PPB", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/804CD23_8-28-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1113 C.D. 2020", - "judges": "Fizzano Cannon, J.", - "case_name_shorts": "" + "docket_numbers": "804 C.D. 2023", + "judges": "Wojcik", + "case_name_shorts": "PPB", + "per_curiam": false }, { - "case_dates": "2021-10-14", - "case_names": "M. Rivera v. Lt. Starzynski", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1249CD20_10-14-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "City of Philadelphia v. Abby's Real Estate Investments & Philadelphia Land Bank ~ Appeal of: Abby's Real Estate Investments", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/229CD22_8-28-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1249 C.D. 2020", - "judges": "Covey, J.", - "case_name_shorts": "" + "docket_numbers": "229 C.D. 2022", + "judges": "Ceisler", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-14", - "case_names": "Kuharchik Construction, Inc. v. Com. of PA", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/486FR15_10-14-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "Chester Water Authority v. C. Swiggett (WCAB)", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/824CD23_8-28-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "486 F.R. 2015", - "judges": "Cohn Jubelirer, J.", - "case_name_shorts": "" + "docket_numbers": "824 C.D. 2023", + "judges": "Leavitt", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-14", - "case_names": "K.A. Lundberg v. UCBR", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/29CD21_10-14-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "Baytay, LLC v. Northumberland County TCB", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/264CD22_8-28-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "29 C.D. 2021", - "judges": "Leadbetter, President Judge Emerita", - "case_name_shorts": "UCBR" + "docket_numbers": "264 & 1012 C.D. 2022", + "judges": "Leadbetter", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-14", - "case_names": "J.E. Burkholder d/b/a Whispering Spring Kennel v. Dept. of Ag.", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1067CD20_10-14-21.pdf", + "case_dates": "2024-08-28", + "case_names": "Angels of Care by TLM, LLC v. DHS", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/390CD23_8-28-24.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1067 C.D. 2020", - "judges": "Fizzano Cannon, J.", - "case_name_shorts": "" + "docket_numbers": "390 C.D. 2023", + "judges": "McCullough", + "case_name_shorts": "DHS", + "per_curiam": false }, { - "case_dates": "2021-10-14", - "case_names": "J. Williams v. BPOA, State Real Estate Comm.", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1263CD20_10-14-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-27", + "case_names": "R.C. Culbertson v. PA PUC", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/506CD23_8-27-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1263 C.D. 2020", - "judges": "Fizzano Cannon, J.", - "case_name_shorts": "" + "docket_numbers": "506 C.D. 2023", + "judges": "Covey", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-14", - "case_names": "J. Campitelli v. Tyco Int'l. (US), Inc. (WCAB)", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/300CD21_10-14-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-27", + "case_names": "J.B. Freeman v. PPB", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/791CD23_8-27-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "300 C.D. 2021", - "judges": "Ceisler, J.", - "case_name_shorts": "" + "docket_numbers": "791 C.D. 2023", + "judges": "Covey", + "case_name_shorts": "PPB", + "per_curiam": false }, { - "case_dates": "2021-10-14", - "case_names": "Harrisburg Gardens, Inc. v. Susquehanna Twp. ZHB", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1273CD20_10-14-21.pdf", + "case_dates": "2024-08-27", + "case_names": "J. Page v. Hon. T.P. Rogers", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/164MD23_8-27-24.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1273 C.D. 2020", - "judges": "Leadbetter, President Judge Emerita", - "case_name_shorts": "" + "docket_numbers": "164 M.D. 2023", + "judges": "Covey", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-12", - "case_names": "P.A. Grimsley v. Bureau of Driver Licensing", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/920CD20_10-12-21.pdf", + "case_dates": "2024-08-26", + "case_names": "Goodwill Industries of North Central PA, Inc. v. Centre County Bd. of Assessment Appeals ~ Appeal of: Centre County Bd. of Assessment Appeals", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/44CD23_8-26-24.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "920 C.D. 2020", - "judges": "Covey, J.", - "case_name_shorts": "" + "docket_numbers": "44 C.D. 2023", + "judges": "McCullough. Dumas", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-12", - "case_names": "M.K. Ortiz v. Pa. DOC", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/615MD18ORD_10-12-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "615 M.D. 2018", - "judges": "PER CURIAM", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-12", - "case_names": "G. Dunbar v. J.E. Wetzel, Sec'y. for Pa. DOC", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/337MD19ORD_10-12-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-26", + "case_names": "Com. of PA v. Eight Hundred Thirteen Dollars and Eighty-Three Cents ($813.83) in U.S. Currency ~ Appeal of: W.E. Jones", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/35CD23_8-26-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "337 M.D. 2019", - "judges": "PER CURIAM", - "case_name_shorts": "" + "docket_numbers": "35, 371 & 388 C.D. 2023", + "judges": "Wallace", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-08", - "case_names": "C.A. Carter v. V. Degraffenreid, in her official capacity as the Acting Sec'y. of the Com. of PA", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/132MD21_10-8-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-26", + "case_names": "C.M. Salsman v. Com. of PA, PPB", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/369MD23_8-26-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "132 M.D. 2021", - "judges": "Wojcik, J.", - "case_name_shorts": "" + "docket_numbers": "369 M.D. 2023", + "judges": "Ceisler", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-06", - "case_names": "Mr. A. Sierra, PH.D. v. PA DOC", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/88MD19_10-6-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "88 M.D. 2019", - "judges": "Fizzano Cannon, J. ~ Concurring Opinion by McCullough, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-06", - "case_names": "M.A. Alexander v. UCBR", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1278CD20_10-6-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1278 C.D. 2020", - "judges": "Covey, J.", - "case_name_shorts": "UCBR" - }, - { - "case_dates": "2021-10-06", - "case_names": "J.R. v. PSP", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/127MD19_10-6-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "127 M.D. 2019", - "judges": "Fizzano Cannon, J.", - "case_name_shorts": "J.R." - }, - { - "case_dates": "2021-10-06", - "case_names": "C. Chellis v. Delaware Valley Charter H. S. & Wesco Ins. Co. (WCAB)", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/110CD21_10-6-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "110 C.D. 2021", - "judges": "Fizzano Cannon, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-06", - "case_names": "A. Sierra v. Com. of PA", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/80CD21_10-6-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "80 C.D. 2021", - "judges": "Ceisler, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-05", - "case_names": "AUUE, Inc. v. Borough of Jefferson Hills ZHB v. Borough of Jefferson Hills & Residents of Jefferson Hills", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/871CD20ORD_10-5-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "871 C.D. 2020", - "judges": "PER CURIAM", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-04", - "case_names": "S.A. Looney v. PPB", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/128CD21_10-4-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "128 C.D. 2021", - "judges": "Cohn Jubelirer, J.", - "case_name_shorts": "PPB" - }, - { - "case_dates": "2021-10-04", - "case_names": "R.F.M. v. PSP", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/495MD19_10-4-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "495 M.D. 2019", - "judges": "McCullough, J.", - "case_name_shorts": "R.F.M." - }, - { - "case_dates": "2021-10-01", - "case_names": "In Re: Condemnation by the Com. of PA, DOT v. Bentleyville Garden Inn, Inc. c/o K.B. Gosai, President", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/703CD20_10-1-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "703 C.D. 2020", - "judges": "Leavitt, President Judge Emerita", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-30", - "case_names": "T. Coleman v. K. Kauffman & C. Stone", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/137CD21_9-30-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "137 C.D. 2021", - "judges": "Covey, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-30", - "case_names": "R. Winton v. PA DOC, AG of PA", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/462MD20_9-30-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "462 M.D. 2020", - "judges": "Fizzano Cannon, J. ~ Concurring Opinion by McCullough, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-30", - "case_names": "K.M. Hambright v. Bureau of Driver Licensing", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/782CD20_9-30-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "782 & 783 C.D. 2020", - "judges": "Leadbetter, President Judge Emerita", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-30", - "case_names": "G. Jackson v. PPB", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1322CD20_9-30-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1322 C.D. 2020", - "judges": "Leavitt, President Judge Emerita", - "case_name_shorts": "PPB" - }, - { - "case_dates": "2021-09-30", - "case_names": "E. Maple v. PA DOC", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/107MD20_9-30-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "107 M.D. 2020", - "judges": "McCullough, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-29", - "case_names": "Montgomery County Conservation District v. J. Bydalek", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1103CD19ORD_9-29-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1103 C.D. 2019", - "judges": "PER CURIAM", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-29", - "case_names": "M.A. Salvaggi v. K. Ransom, Super. of SCI Dallas", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/669CD21_9-29-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "669 C.D. 2021", - "judges": "Ceisler, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-29", - "case_names": "J.R. Evans, Small Business Advocate v. PA PUC", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/421CD20_9-29-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "421 & 422 C.D. 2020", - "judges": "Cohn Jubelirer, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-29", - "case_names": "J. Kwaha v. Com. of PA, DOC", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/603MD20_9-29-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "603 M.D. 2020", - "judges": "Crompton, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-29", - "case_names": "C. Toland v. PBPP", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/315MD18_9-29-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "315 M.D. 2018", - "judges": "Cohn Jubelirer, J.", - "case_name_shorts": "PBPP" - }, - { - "case_dates": "2021-09-28", - "case_names": "R. & W. Redinger v. Allegheny County Health Dept. & The Twp. of Upper St. Clair", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/729CD20ORD_9-28-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "729 C.D. 2020", - "judges": "PER CURIAM", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-28", - "case_names": "Duffield House Assocs., L.P. v. City of Philadelphia", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1501CD19ORD_9-28-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1501-1502, 1504-1513, 1516-1517 C.D. 2019", - "judges": "PER CURIAM", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-28", - "case_names": "City of Philadelphia v. WCAB (Thompson)", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/217CD20ORD_9-28-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "217 C.D. 2020", - "judges": "McCullough, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-09-24", - "case_names": "Public Advocate v. Philadelphia Water, Sewer and Storm Water Rate Board", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1070CD19_9-24-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1070 C.D. 2019", - "judges": "Fizzano Cannon, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-07-15", - "case_names": "R. & W. Redinger v. Allegheny County Health Dept. & The Twp. of Upper St. Clair", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/729CD20_9-28-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "729 C.D. 2020", - "judges": "Crompton, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-07-08", - "case_names": "Montgomery County Conservation District v. J. Bydalek", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/1103CD19_9-28-21.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1103 C.D. 2019", - "judges": "Wojcik, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-05-26", - "case_names": "City of Philadelphia v. WCAB (Thompson)", - "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/217CD20_9-28-21.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-23", + "case_names": "D.H. Zimmerman & K.L. Rapp v. A. Schmidt", + "download_urls": "https://www.pacourts.us/assets/opinions/Commonwealth/out/33MD24_8-26-24.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "217 C.D. 2020", - "judges": "McCullough, J.", - "case_name_shorts": "" + "docket_numbers": "33 M.D. 2024", + "judges": "Cohn Jubelirer. McCullough", + "case_name_shorts": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/pacommwct_example.json b/tests/examples/opinions/united_states/pacommwct_example.json new file mode 100644 index 000000000..efce16af5 --- /dev/null +++ b/tests/examples/opinions/united_states/pacommwct_example.json @@ -0,0 +1,1090 @@ +{ + "Items": [ + { + "Author": "Leadbetter, President Judge Emerita", + "BoardDocketNumber": null, + "Caption": "In re: Nom. Papers of C. De la Cruz, et al. ~ Obj. of: A. Reber & J. Smucker - 379 M.D. 2024", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-29T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28487, + "FileName": "379MD24_8-29-24.pdf", + "ProcessedDate": "2024-08-29T19:51:15.12", + "PostingTypeId": "sjo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Leadbetter, President Judge Emerita", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "sjo", + "PostingTypeId": "Single Judge Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28487 + }, + { + "Author": "Covey, J.", + "BoardDocketNumber": null, + "Caption": "A. Cohen v. UCBR - 716 C.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-29T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28486, + "FileName": "716CD23_8-29-24.pdf", + "ProcessedDate": "2024-08-29T13:36:09.06", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Covey, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28486 + }, + { + "Author": "Covey, J.", + "BoardDocketNumber": null, + "Caption": "J. Jacob v. PA DOC - 337 M.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-29T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28485, + "FileName": "337MD23_8-29-24.pdf", + "ProcessedDate": "2024-08-29T13:35:06.75", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Covey, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28485 + }, + { + "Author": "Wallace, J.", + "BoardDocketNumber": null, + "Caption": "M. Hamilton v. PPB - 526 C.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-29T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28484, + "FileName": "526CD23_8-29-24.pdf", + "ProcessedDate": "2024-08-29T13:34:03.083", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Wallace, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28484 + }, + { + "Author": "Wallace, J.", + "BoardDocketNumber": null, + "Caption": "J.D. Lynn, et al. v. The PA DOC - 168 M.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-29T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28483, + "FileName": "168MD23_8-29-24.pdf", + "ProcessedDate": "2024-08-29T13:32:49.48", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Wallace, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28483 + }, + { + "Author": "Leavitt, President Judge Emerita", + "BoardDocketNumber": null, + "Caption": "Falls Twp. v. Buckingham Twp. Police Dept. - 374 C.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-29T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28482, + "FileName": "374CD23_8-29-24.pdf", + "ProcessedDate": "2024-08-29T13:31:03.203", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Leavitt, President Judge Emerita", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28482 + }, + { + "Author": "McCullough, J.", + "BoardDocketNumber": null, + "Caption": "Angels of Care by TLM, LLC v. DHS - 390 C.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-28T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28481, + "FileName": "390CD23_8-28-24.pdf", + "ProcessedDate": "2024-08-28T14:19:34.287", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "McCullough, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28481 + }, + { + "Author": "Wallace, J.", + "BoardDocketNumber": null, + "Caption": "S.E.N. v. Dept. of Ed. (Professional Standards & Practices Comm.) - 651 C.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-28T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28480, + "FileName": "651CD23_8-28-24.pdf", + "ProcessedDate": "2024-08-28T14:18:17.337", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Wallace, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28480 + }, + { + "Author": "Wojcik, J.", + "BoardDocketNumber": null, + "Caption": "E. Ramos v. PPB - 804 C.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-28T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28479, + "FileName": "804CD23_8-28-24.pdf", + "ProcessedDate": "2024-08-28T14:16:45.65", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Wojcik, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28479 + }, + { + "Author": "Ceisler, J.", + "BoardDocketNumber": null, + "Caption": "City of Philadelphia v. Abby's Real Estate Investments & Philadelphia Land Bank ~ Appeal of: Abby's Real Estate Investments - 229 C.D. 2022", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-28T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28478, + "FileName": "229CD22_8-28-24.pdf", + "ProcessedDate": "2024-08-28T14:15:11.677", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Ceisler, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28478 + }, + { + "Author": "Dumas, J.", + "BoardDocketNumber": null, + "Caption": "J. Doyle v. Monroe County Transportation Authority - 469 C.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-28T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28477, + "FileName": "469CD23_8-28-24.pdf", + "ProcessedDate": "2024-08-28T14:13:50.783", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Dumas, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28477 + }, + { + "Author": "Leadbetter, President Judge Emerita", + "BoardDocketNumber": null, + "Caption": "Baytay, LLC v. Northumberland County TCB - 264 & 1012 C.D. 2022", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-28T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28476, + "FileName": "264CD22_8-28-24.pdf", + "ProcessedDate": "2024-08-28T14:12:41.007", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Leadbetter, President Judge Emerita", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28476 + }, + { + "Author": "Leavitt, President Judge Emerita", + "BoardDocketNumber": null, + "Caption": "Chester Water Authority v. C. Swiggett (WCAB) - 824 C.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-28T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28475, + "FileName": "824CD23_8-28-24.pdf", + "ProcessedDate": "2024-08-28T14:11:06.027", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Leavitt, President Judge Emerita", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28475 + }, + { + "Author": "Covey, J.", + "BoardDocketNumber": null, + "Caption": "J. Page v. Hon. T.P. Rogers; et al. - 164 M.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-27T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-27T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28474, + "FileName": "164MD23_8-27-24.pdf", + "ProcessedDate": "2024-08-27T15:04:45.49", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Covey, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28474 + }, + { + "Author": "Covey, J.", + "BoardDocketNumber": null, + "Caption": "R.C. Culbertson v. PA PUC - 506 C.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-27T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-27T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28473, + "FileName": "506CD23_8-27-24.pdf", + "ProcessedDate": "2024-08-27T15:03:24.267", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Covey, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28473 + }, + { + "Author": "Covey, J.", + "BoardDocketNumber": null, + "Caption": "J.B. Freeman v. PPB - 791 C.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-27T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-27T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28472, + "FileName": "791CD23_8-27-24.pdf", + "ProcessedDate": "2024-08-27T15:02:16.07", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Covey, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28472 + }, + { + "Author": "Cohn Jubelirer, President Judge ~ Concurring and Dissenting Opinion by McCullough, J.", + "BoardDocketNumber": null, + "Caption": "D.H. Zimmerman & K.L. Rapp v. A. Schmidt, et al. - 33 M.D. 2024", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-23T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-23T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28466, + "FileName": "33MD24_8-26-24.pdf", + "ProcessedDate": "2024-08-26T16:58:09.217", + "PostingTypeId": "complete", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 2, + "Author": { + "Id": 0, + "AuthorName": "Cohn Jubelirer, President Judge ~ Concurring and Dissenting Opinion by McCullough, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "complete", + "PostingTypeId": "Complete Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28466 + }, + { + "Author": "McCullough, J. ~ Dissenting Opinion by Dumas, J.", + "BoardDocketNumber": null, + "Caption": "Goodwill Industries of North Central PA, Inc. v. Centre County Bd. of Assessment Appeals, et al. ~ Appeal of: Centre County Bd. of Assessment Appeals - 44 C.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-26T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-26T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28470, + "FileName": "44CD23_8-26-24.pdf", + "ProcessedDate": "2024-08-26T12:53:04.57", + "PostingTypeId": "complete", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "McCullough, J. ~ Dissenting Opinion by Dumas, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "complete", + "PostingTypeId": "Complete Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28470 + }, + { + "Author": "Ceisler, J.", + "BoardDocketNumber": null, + "Caption": "C.M. Salsman v. Com. of PA, PPB - 369 M.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-26T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-26T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28469, + "FileName": "369MD23_8-26-24.pdf", + "ProcessedDate": "2024-08-26T12:50:47.657", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Ceisler, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28469 + }, + { + "Author": "Wallace, J.", + "BoardDocketNumber": null, + "Caption": "Com. of PA v. Eight Hundred Thirteen Dollars and Eighty-Three Cents ($813.83) in U.S. Currency ~ Appeal of: W.E. Jones - 35, 371 & 388 C.D. 2023", + "CourtDocketNumber": null, + "CourtType": 0, + "DispositionDate": "2024-08-26T00:00:00", + "Keywords": null, + "UserIdentifier": "Commonwealth Court", + "UploadDate": "2024-08-26T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 0, + "AuthorId": null, + "OpinionId": 28468, + "FileName": "35CD23_8-26-24.pdf", + "ProcessedDate": "2024-08-26T12:49:16.427", + "PostingTypeId": "mo", + "PublicationTypeId": null, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 0, + "AuthorName": "Wallace, J.", + "AuthorCode": null, + "Selectable": false, + "SortOrder": null + }, + "PostType": { + "Id": 0, + "PostingTypeCode": "mo", + "PostingTypeId": "Majority Opinion", + "SortOrder": null + }, + "PublicationType": { + "Id": 0, + "Description": "Non-Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 28468 + } + ], + "TotalItems": 23, + "TotalPages": 2, + "PageNumber": 1, + "PageSize": 20, + "HasPrevious": false, + "HasNext": true +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/pacommwct_example.xml b/tests/examples/opinions/united_states/pacommwct_example.xml deleted file mode 100644 index 2d38ef1bf..000000000 --- a/tests/examples/opinions/united_states/pacommwct_example.xml +++ /dev/null @@ -1,512 +0,0 @@ - - - - - Unified Judicial System of Pennsylvania: Commonwealth Court Opinions - https://www.pacourts.us/Rss/Opinions/Commonwealth/ - Unified Judicial System of Pennsylvania: Commonwealth Court Opinions - Wed, 20 Oct 2021 16:32:51 GMT - en-us - - T. Anderson v. PPB - 1248 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/1248CD20_10-20-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1248CD20_10-20-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1248CD20_10-20-21.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Covey, J. - - - D.L. Harer v. Muncy S.D. - 1216 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/1216CD20_10-20-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1216CD20_10-20-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1216CD20_10-20-21.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - McCullough, J. - - - J. Markham, et al. v. T.W. Wolf, in his Official Capacity as Governor of the Com of PA, et al. - 176 M.D. 2015 - https://www.pacourts.us/assets/opinions/Commonwealth/out/176MD15_10-20-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/176MD15_10-20-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/176MD15_10-20-21.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Wojcik, J. - - - G. Geiselman, et al. v. Hellam Twp. Bd. of Supers. v. WWBK Real Estate Holding, LLC &amp; W. &amp; W. Hewitt - 805 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/805CD20_10-20-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/805CD20_10-20-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/805CD20_10-20-21.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Leadbetter, President Judge Emerita - - - K.W. Jones v. Bureau of Driver Licensing - 837 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/837CD20_10-19-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/837CD20_10-19-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/837CD20_10-19-21.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Leavitt, President Judge Emerita - - - Nat'l. Election Defense Coalition, et al. v. K. Boockvar, Sec'y. of the Com. - 674 M.D. 2019 - https://www.pacourts.us/assets/opinions/Commonwealth/out/674MD19_10-18-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/674MD19_10-18-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/674MD19_10-18-21.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Brobson, J. ~ Concurring Opinion by McCullough, J. - - - J.L. Irvin v. UCBR - 1123 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/1123CD20_10-18-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1123CD20_10-18-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1123CD20_10-18-21.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Brobson, President Judge - - - Bear Staffing v. S. Logan (WCAB) - 949 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/949CD20_10-15-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/949CD20_10-15-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/949CD20_10-15-21.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - McCullough, J. - - - New Morgan Landfill Co., Inc. v. Berks County Solid Waste Auth. &amp; County of Berks, PA - 149 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/149CD20_10-15-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/149CD20_10-15-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/149CD20_10-15-21.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - Ceisler, J. - - - PA State Corrections Officers Assoc. v. Com. of PA, DOC - 380 C.D. 2021 - https://www.pacourts.us/assets/opinions/Commonwealth/out/380CD21_10-15-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/380CD21_10-15-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/380CD21_10-15-21.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - Ceisler, J. - - - Kuharchik Construction, Inc. v. Com. of PA - 486 F.R. 2015 - https://www.pacourts.us/assets/opinions/Commonwealth/out/486FR15_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/486FR15_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/486FR15_10-14-21.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Cohn Jubelirer, J. - - - PA PT Assoc. &amp; Waterford PT, Inc. v. Hon. W.G. Oleksiak, Sec'y. of L&amp;I, et al. - 2 M.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/2MD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/2MD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/2MD20_10-14-21.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Leavitt, President Judge Emerita - - - J.E. Burkholder d/b/a Whispering Spring Kennel v. Dept. of Ag. - 1067 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/1067CD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1067CD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1067CD20_10-14-21.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Fizzano Cannon, J. - - - M. Rivera v. Lt. Starzynski - 1249 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/1249CD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1249CD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1249CD20_10-14-21.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Covey, J. - - - O. Herbert &amp; M. Herbert v. W. Reading Borough ZHB &amp; Borough of W. Reading ~ Appeal of: Borough of W. Reading - 1113 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/1113CD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1113CD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1113CD20_10-14-21.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Fizzano Cannon, J. - - - J. Williams v. BPOA, State Real Estate Comm. - 1263 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/1263CD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1263CD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1263CD20_10-14-21.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Fizzano Cannon, J. - - - The Hon. W. Scott, Mayor of the City of Reading v. City of Reading Charter Bd. - 1307 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/1307CD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1307CD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1307CD20_10-14-21.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Ceisler, J. - - - J. Campitelli v. Tyco Int'l. (US), Inc. (WCAB) - 300 C.D. 2021 - https://www.pacourts.us/assets/opinions/Commonwealth/out/300CD21_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/300CD21_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/300CD21_10-14-21.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Ceisler, J. - - - Harrisburg Gardens, Inc. v. Susquehanna Twp. ZHB - 1273 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/1273CD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1273CD20_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1273CD20_10-14-21.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Leadbetter, President Judge Emerita - - - K.A. Lundberg v. UCBR - 29 C.D. 2021 - https://www.pacourts.us/assets/opinions/Commonwealth/out/29CD21_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/29CD21_10-14-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/29CD21_10-14-21.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Leadbetter, President Judge Emerita - - - G. Dunbar v. J.E. Wetzel, Sec'y. for Pa. DOC, et al. - 337 M.D. 2019 (RECONSIDERATION ORDER) - https://www.pacourts.us/assets/opinions/Commonwealth/out/337MD19ORD_10-12-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/337MD19ORD_10-12-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/337MD19ORD_10-12-21.pdf - - Tue, 12 Oct 2021 04:00:00 GMT - - PER CURIAM - - - M.K. Ortiz v. Pa. DOC, et al. - 615 M.D. 2018 (REARGUMENT ORDER) - https://www.pacourts.us/assets/opinions/Commonwealth/out/615MD18ORD_10-12-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/615MD18ORD_10-12-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/615MD18ORD_10-12-21.pdf - - Tue, 12 Oct 2021 04:00:00 GMT - - PER CURIAM - - - P.A. Grimsley v. Bureau of Driver Licensing - 920 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/920CD20_10-12-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/920CD20_10-12-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/920CD20_10-12-21.pdf - - Tue, 12 Oct 2021 04:00:00 GMT - - Covey, J. - - - C.A. Carter; et al. v. V. Degraffenreid, in her official capacity as the Acting Sec'y. of the Com. of PA; et al. - 132 M.D. 2021 - https://www.pacourts.us/assets/opinions/Commonwealth/out/132MD21_10-8-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/132MD21_10-8-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/132MD21_10-8-21.pdf - - Fri, 08 Oct 2021 04:00:00 GMT - - Wojcik, J. - - - M.A. Alexander v. UCBR - 1278 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/1278CD20_10-6-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1278CD20_10-6-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1278CD20_10-6-21.pdf - - Wed, 06 Oct 2021 04:00:00 GMT - - Covey, J. - - - Mr. A. Sierra, PH.D. v. PA DOC - 88 M.D. 2019 - https://www.pacourts.us/assets/opinions/Commonwealth/out/88MD19_10-6-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/88MD19_10-6-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/88MD19_10-6-21.pdf - - Wed, 06 Oct 2021 04:00:00 GMT - - Fizzano Cannon, J. ~ Concurring Opinion by McCullough, J. - - - J.R. v. PSP - 127 M.D. 2019 - https://www.pacourts.us/assets/opinions/Commonwealth/out/127MD19_10-6-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/127MD19_10-6-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/127MD19_10-6-21.pdf - - Wed, 06 Oct 2021 04:00:00 GMT - - Fizzano Cannon, J. - - - C. Chellis v. Delaware Valley Charter H. S. &amp; Wesco Ins. Co. (WCAB) - 110 C.D. 2021 - https://www.pacourts.us/assets/opinions/Commonwealth/out/110CD21_10-6-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/110CD21_10-6-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/110CD21_10-6-21.pdf - - Wed, 06 Oct 2021 04:00:00 GMT - - Fizzano Cannon, J. - - - A. Sierra v. Com. of PA - 80 C.D. 2021 - https://www.pacourts.us/assets/opinions/Commonwealth/out/80CD21_10-6-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/80CD21_10-6-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/80CD21_10-6-21.pdf - - Wed, 06 Oct 2021 04:00:00 GMT - - Ceisler, J. - - - AUUE, Inc. v. Borough of Jefferson Hills ZHB v. Borough of Jefferson Hills &amp; Residents of Jefferson Hills - 871 C.D. 2020 (REARGUMENT ORDER) - https://www.pacourts.us/assets/opinions/Commonwealth/out/871CD20ORD_10-5-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/871CD20ORD_10-5-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/871CD20ORD_10-5-21.pdf - - Tue, 05 Oct 2021 04:00:00 GMT - - PER CURIAM - - - S.A. Looney v. PPB - 128 C.D. 2021 - https://www.pacourts.us/assets/opinions/Commonwealth/out/128CD21_10-4-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/128CD21_10-4-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/128CD21_10-4-21.pdf - - Mon, 04 Oct 2021 04:00:00 GMT - - Cohn Jubelirer, J. - - - R.F.M. v. PSP - 495 M.D. 2019 - https://www.pacourts.us/assets/opinions/Commonwealth/out/495MD19_10-4-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/495MD19_10-4-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/495MD19_10-4-21.pdf - - Mon, 04 Oct 2021 04:00:00 GMT - - McCullough, J. - - - In Re: Condemnation by the Com. of PA, DOT, et al. v. Bentleyville Garden Inn, Inc. c/o K.B. Gosai, President - 703 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/703CD20_10-1-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/703CD20_10-1-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/703CD20_10-1-21.pdf - - Fri, 01 Oct 2021 04:00:00 GMT - - Leavitt, President Judge Emerita - - - R. Winton v. PA DOC, AG of PA - 462 M.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/462MD20_9-30-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/462MD20_9-30-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/462MD20_9-30-21.pdf - - Thu, 30 Sep 2021 04:00:00 GMT - - Fizzano Cannon, J. ~ Concurring Opinion by McCullough, J. - - - G. Jackson v. PPB - 1322 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/1322CD20_9-30-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1322CD20_9-30-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1322CD20_9-30-21.pdf - - Thu, 30 Sep 2021 04:00:00 GMT - - Leavitt, President Judge Emerita - - - E. Maple v. PA DOC - 107 M.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/107MD20_9-30-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/107MD20_9-30-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/107MD20_9-30-21.pdf - - Thu, 30 Sep 2021 04:00:00 GMT - - McCullough, J. - - - T. Coleman v. K. Kauffman &amp; C. Stone - 137 C.D. 2021 - https://www.pacourts.us/assets/opinions/Commonwealth/out/137CD21_9-30-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/137CD21_9-30-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/137CD21_9-30-21.pdf - - Thu, 30 Sep 2021 04:00:00 GMT - - Covey, J. - - - K.M. Hambright v. Bureau of Driver Licensing - 782 &amp; 783 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/782CD20_9-30-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/782CD20_9-30-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/782CD20_9-30-21.pdf - - Thu, 30 Sep 2021 04:00:00 GMT - - Leadbetter, President Judge Emerita - - - Montgomery County Conservation District v. J. Bydalek, et al. - 1103 C.D. 2019 (AMENDING ORDER REPORTING OPINION) - https://www.pacourts.us/assets/opinions/Commonwealth/out/1103CD19ORD_9-29-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1103CD19ORD_9-29-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1103CD19ORD_9-29-21.pdf - - Wed, 29 Sep 2021 04:00:00 GMT - - PER CURIAM - - - C. Toland v. PBPP - 315 M.D. 2018 - https://www.pacourts.us/assets/opinions/Commonwealth/out/315MD18_9-29-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/315MD18_9-29-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/315MD18_9-29-21.pdf - - Wed, 29 Sep 2021 04:00:00 GMT - - Cohn Jubelirer, J. - - - J.R. Evans, Small Business Advocate v. PA PUC - 421 &amp; 422 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/421CD20_9-29-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/421CD20_9-29-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/421CD20_9-29-21.pdf - - Wed, 29 Sep 2021 04:00:00 GMT - - Cohn Jubelirer, J. - - - M.A. Salvaggi v. K. Ransom, Super. of SCI Dallas - 669 C.D. 2021 - https://www.pacourts.us/assets/opinions/Commonwealth/out/669CD21_9-29-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/669CD21_9-29-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/669CD21_9-29-21.pdf - - Wed, 29 Sep 2021 04:00:00 GMT - - Ceisler, J. - - - J. Kwaha v. Com. of PA, DOC - 603 M.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/603MD20_9-29-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/603MD20_9-29-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/603MD20_9-29-21.pdf - - Wed, 29 Sep 2021 04:00:00 GMT - - Crompton, J. - - - R. &amp; W. Redinger v. Allegheny County Health Dept. &amp; The Twp. of Upper St. Clair - 729 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/729CD20_9-28-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/729CD20_9-28-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/729CD20_9-28-21.pdf - - Thu, 15 Jul 2021 04:00:00 GMT - - Crompton, J. - - - City of Philadelphia v. WCAB (Thompson) - 217 C.D. 2020 - https://www.pacourts.us/assets/opinions/Commonwealth/out/217CD20_9-28-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/217CD20_9-28-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/217CD20_9-28-21.pdf - - Wed, 26 May 2021 04:00:00 GMT - - McCullough, J. - - - City of Philadelphia v. WCAB (Thompson) - 217 C.D. 2020 (ORDER REPORTING OPINION) - https://www.pacourts.us/assets/opinions/Commonwealth/out/217CD20ORD_9-28-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/217CD20ORD_9-28-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/217CD20ORD_9-28-21.pdf - - Tue, 28 Sep 2021 04:00:00 GMT - - McCullough, J. - - - R. &amp; W. Redinger v. Allegheny County Health Dept. &amp; The Twp. of Upper St. Clair - 729 C.D. 2020 (ORDER REPORTING OPINION) - https://www.pacourts.us/assets/opinions/Commonwealth/out/729CD20ORD_9-28-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/729CD20ORD_9-28-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/729CD20ORD_9-28-21.pdf - - Tue, 28 Sep 2021 04:00:00 GMT - - PER CURIAM - - - Montgomery County Conservation District v. J. Bydalek, et al. - 1103 C.D. 2019 - https://www.pacourts.us/assets/opinions/Commonwealth/out/1103CD19_9-28-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1103CD19_9-28-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1103CD19_9-28-21.pdf - - Thu, 08 Jul 2021 04:00:00 GMT - - Wojcik, J. - - - Duffield House Assocs., L.P. v. City of Philadelphia - 1501-1502, 1504-1513, 1516-1517 C.D. 2019 (REARGUMENT ORDER) - https://www.pacourts.us/assets/opinions/Commonwealth/out/1501CD19ORD_9-28-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1501CD19ORD_9-28-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1501CD19ORD_9-28-21.pdf - - Tue, 28 Sep 2021 04:00:00 GMT - - PER CURIAM - - - Public Advocate v. Philadelphia Water, Sewer and Storm Water Rate Board - 1070 C.D. 2019 - https://www.pacourts.us/assets/opinions/Commonwealth/out/1070CD19_9-24-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1070CD19_9-24-21.pdf - https://www.pacourts.us/assets/opinions/Commonwealth/out/1070CD19_9-24-21.pdf - - Fri, 24 Sep 2021 04:00:00 GMT - - Fizzano Cannon, J. - - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/pasuperct_example.compare.json b/tests/examples/opinions/united_states/pasuperct_example.compare.json index b05fec0e1..dfb92d772 100644 --- a/tests/examples/opinions/united_states/pasuperct_example.compare.json +++ b/tests/examples/opinions/united_states/pasuperct_example.compare.json @@ -1,497 +1,254 @@ [ { - "case_dates": "2021-10-20", - "case_names": "Thomas, R. v. Thomas, J.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A24025-21jo - 104929315149528138.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "378 EDA 2021", - "judges": "Dubow, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-20", - "case_names": "Selectdecks, LLC v. Pittsburgh Stone", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A20031-21m - 104929555149552250.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "243 WDA 2021", - "judges": "McCaffery, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-20", - "case_names": "Meadows Landing v. Scuvotti, M.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A18020-21m - 104929752149575100.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1279 WDA 2020", - "judges": "Nichols, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-20", - "case_names": "In Re: L.J.J., Appeal of: H.A.E.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A20038-21m - 104929408149539589.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "223 WDA 2021", - "judges": "McCaffery, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-20", - "case_names": "Frisch, A. v. James River Ins.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A17009-21o - 104929311149527205.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1520 EDA 2020", - "judges": "King, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-20", - "case_names": "Frazer, J. v. McEntire, S.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A20036-21o - 104929356149536130.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "118 WDA 2021", - "judges": "McCaffery, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-20", - "case_names": "Com. v. West, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A20045-21m - 104929499149547954.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "292 WDA 2021", - "judges": "McCaffery, J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-20", - "case_names": "Com. v. Soto Jr., H.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S22023-21m - 104929490149546620.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "Egli, C. v. Radnor Studio 21", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S31014-24m - 106054182279196077.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "25 MDA 2021", - "judges": "McCaffery, J.", - "case_name_shorts": "Com." + "docket_numbers": "796 EDA 2024", + "judges": "Bowes", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-20", - "case_names": "Com. v. Riley, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S21022-21m - 104929575149554721.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "Com. v. Wise,T.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S31007-24m - 106054179279195532.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1818 EDA 2020", - "judges": "Olson, J.", - "case_name_shorts": "Com." + "docket_numbers": "254 EDA 2024", + "judges": "Bowes", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-20", - "case_names": "Com. v. Rannels, C.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S06024-21m - 104929681149566238.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "Com. v. Robertson, K.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A27007-23m - 106054383279217773.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "3106 EDA 2019", - "judges": "Nichols, J.", - "case_name_shorts": "Com." + "docket_numbers": "9 MDA 2023", + "judges": "Lazarus", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-20", - "case_names": "Com. v. Miller, O.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S31034-21m - 104929327149530782.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "Com. v. Moore, A.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S09001-24m - 106054174279194120.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1036 EDA 2021", - "judges": "Pellegrini, J.", - "case_name_shorts": "Com." + "docket_numbers": "650 EDA 2023", + "judges": "Beck", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-20", - "case_names": "Com. v. McClennan, J.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S30027-21m - 104929494149546992.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "Com. v. Moore, A.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S09001-24dm - 106054174279194449.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "357 MDA 2021", - "judges": "McCaffery, J.", - "case_name_shorts": "Com." + "docket_numbers": "650 EDA 2023", + "judges": "Panella", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-20", - "case_names": "Com. v. Dejesus, J.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-E01006-21o - 104929304149525413.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "Com. v. Kaminski, J.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A12005-24m - 106054426279221677.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "883 EDA 2018", - "judges": "Dubow, J.", - "case_name_shorts": "Com." + "docket_numbers": "1285 MDA 2023", + "judges": "Panella", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-20", - "case_names": "C.W.E.R.S.F. Golf v. Linde, E.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A17019-21m - 104929308149526177.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "Com. v. Jackson, W.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S44040-23m - 106054170279192261.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1371 EDA 2020", - "judges": "King, J.", - "case_name_shorts": "" + "docket_numbers": "2466 EDA 2022", + "judges": "Colins", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-19", - "case_names": "Jordan, K. v. Jordan, A., Jr.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A16011-21m - 104927436149393108.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "Com. v. Gass, S.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A17038-24m - 106054260279203013.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "74 MDA 2021", - "judges": "Kunselman, J.", - "case_name_shorts": "" + "docket_numbers": "1980 EDA 2023", + "judges": "Sullivan", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-19", - "case_names": "Green, T. v. The Trustees of the Univ. of Penn.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A15006-21o - 104927967149433737.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "Com. v. Forsythe, R.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S22007-24m - 106054385279220021.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2160 EDA 2020", - "judges": "Bowes, J.", - "case_name_shorts": "" + "docket_numbers": "1134 WDA 2023", + "judges": "Panella", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-19", - "case_names": "Com. v. Mumaw, E.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A07005-21m - 104927980149434950.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-29", + "case_names": "Alexis, J. v. Taylor, D.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A19005-24jo.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "234 MDA 2020", - "judges": "Bowes, J.", - "case_name_shorts": "Com." + "docket_numbers": "345 MDA 2024", + "judges": "Panella", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-19", - "case_names": "Com. v. Bowens, T.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-E03006-20o - 104928109149444071.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "Vurimindi, V. v. Schaheen, M.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S12001-24m - 106052857279061047.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "341 MDA 2018", - "judges": "Bowes, J.", - "case_name_shorts": "Com." + "docket_numbers": "612 EDA 2023", + "judges": "Dubow", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-19", - "case_names": "Com. v. Atkinson, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-E03001-20o - 104927859149426889.pdf", + "case_dates": "2024-08-28", + "case_names": "Kreamer, P. v. Klinger, D.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S19013-24o - 106052767279052591.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1562 EDA 2016", - "judges": "Lazarus, J.", - "case_name_shorts": "Com." + "docket_numbers": "1652 MDA 2023", + "judges": "Dubow", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-19", - "case_names": "Com. v. Atkinson, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-E03001-20do - 104927859149427686.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "In Re: D.R.S., Appeal of: J.S.S.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S06015-24m - 106052883279062994.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1562 EDA 2016", - "judges": "Olson, J.", - "case_name_shorts": "Com." + "docket_numbers": "2581 EDA 2023", + "judges": "Dubow", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2021-10-18", - "case_names": "Torres, K. v. Torres, T.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S25016-21m - 104925921149266086.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "Com. v. Zuber, T.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S21038-24m - 106052865279061950.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "831 EDA 2021", - "judges": "McLaughlin, J.", - "case_name_shorts": "" + "docket_numbers": "1710 EDA 2023", + "judges": "Murray", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-18", - "case_names": "Tenth Presbyterian Church v. Snyder, P.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A15038-21m - 104926276149299130.pdf", + "case_dates": "2024-08-28", + "case_names": "Com. v. Taylor-Dixon, M.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S22009-24o - 106052509279014807.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "849 EDA 2020", - "judges": "Musmanno, J.", - "case_name_shorts": "" + "docket_numbers": "1244 WDA 2023", + "judges": "Panella", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-18", - "case_names": "State Farm Mutual v. Palmer, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S28034-21m - 104926434149309210.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "Com. v. Spencer, J.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S20027-24m - 106052868279061816.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "398 EDA 2021", - "judges": "Pellegrini, J.", - "case_name_shorts": "" + "docket_numbers": "1205 MDA 2023", + "judges": "Kunselman", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-18", - "case_names": "Grezak-Sklodowska, G. v. Grezak, W.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A19013-21m - 104926192149292836.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "Com. v. Smith, L.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S24030-24m - 106053142279086500.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2311 EDA 2020", - "judges": "Dubow, J.", - "case_name_shorts": "" + "docket_numbers": "1205 WDA 2023", + "judges": "Sullivan", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-18", - "case_names": "Graves, D. v. Graves, M.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S13001-21o - 104926077149335496.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "Com. v. Singer, N.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S19004-24m - 106052772279053766.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1787 EDA 2020", - "judges": "Olson, J.", - "case_name_shorts": "" + "docket_numbers": "1171 MDA 2023", + "judges": "Dubow", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-18", - "case_names": "Com. v. Miranda, E.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A24044-21m - 104926340149303182.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "Com. v. Ruch, E.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S44037-23m - 106052840279059447.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2196 EDA 2020", - "judges": "Pellegrini, J.", - "case_name_shorts": "Com." + "docket_numbers": "60 EDA 2023", + "judges": "Colins", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-18", - "case_names": "Com. v. Beck, A.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S18040-21m - 104926124149287850.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "Com. v. Powell, D.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S28024-24m - 106052959279069206.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "958 EDA 2019", - "judges": "Colins, J.", - "case_name_shorts": "Com." + "docket_numbers": "18 EDA 2024", + "judges": "Murray", + "case_name_shorts": "Com.", + "per_curiam": false }, { - "case_dates": "2021-10-15", - "case_names": "W.O., IV v. J.N.B.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S26034-21m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "518 MDA 2021", - "judges": "Musmanno, J.", - "case_name_shorts": "J.N.B." - }, - { - "case_dates": "2021-10-15", - "case_names": "Noll, H. v. Abeln, P.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A24008-21m - 104924538149161084.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "228 EDA 2021", - "judges": "Lazarus, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-15", - "case_names": "In Re: J.R.L., Appeal of: S.L. and M.L.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A20010-21m - 104924607149168045.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "200 WDA 2021", - "judges": "Panella, P.J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-15", - "case_names": "Connelly, L., C. v. Connelly, T., P., Jr.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A10017-21m - 104924490149154924.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2341 EDA 2020", - "judges": "Olson, J.", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-15", - "case_names": "Com. v. Young, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A19012-21m - 104924568149164333.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2088 EDA 2020", - "judges": "Dubow, J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-15", - "case_names": "Com. v. Wylie, J.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S31020-21m - 104924609149167858.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "629 EDA 2021", - "judges": "King, J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-15", - "case_names": "Com. v. Stokes, J.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S23044-21m - 104924674149171882.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1240 EDA 2019", - "judges": "Colins, J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-15", - "case_names": "Com. v. Singleton, M.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S22001-21m - 104925017149193679.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1577 MDA 2020", - "judges": "Panella, P.J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-15", - "case_names": "Com. v. Marshall, J.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S23042-21m - 104924475149152493.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1 EDA 2020", - "judges": "Colins, J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-15", - "case_names": "Com. v. Lawson, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S19009-21m - 104924778149176718.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "193 WDA 2021", - "judges": "Dubow, J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-15", - "case_names": "Com. v. Lawson, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S19008-21m - 104924667149171364.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "192 WDA 2021", - "judges": "Dubow, J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-15", - "case_names": "Com. v. Harbst, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S26027-21m.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "812 MDA 2020", - "judges": "Murray, J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-14", - "case_names": "Com. v. Rivers, G.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S28042-21m - 104923174149025476.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1703 EDA 2020", - "judges": "Pellegrini, J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-14", - "case_names": "Com. v. Powell, C.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S23041-21m - 104923170149025250.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1678 EDA 2020", - "judges": "Colins, J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-14", - "case_names": "Com. v. Hakes, C.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S05033-20m - 104923413149058139.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1575 MDA 2019", - "judges": "Musmanno, J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-14", - "case_names": "Com. v. Banko, D.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S26002-21jo - 104923433149058491.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "1564 MDA 2020", - "judges": "Stabile, J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-14", - "case_names": "Com. v. Andrews, M.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S26011-21m - 104923436149058777.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "261 MDA 2021", - "judges": "Stabile, J.", - "case_name_shorts": "Com." - }, - { - "case_dates": "2021-10-13", - "case_names": "Howard, D., Jr. v. Blair, N.", - "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-A22004-21m - 104921827148929732.pdf", - "precedential_statuses": "Published", + "case_dates": "2024-08-28", + "case_names": "Com. v. Galbraith, H.", + "download_urls": "https://www.pacourts.us/assets/opinions/Superior/out/J-S29023-24m - 106053005279073746.pdf", + "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1455 MDA 2020", - "judges": "Bowes, J.", - "case_name_shorts": "" + "docket_numbers": "270 WDA 2024", + "judges": "King", + "case_name_shorts": "Com.", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/pasuperct_example.json b/tests/examples/opinions/united_states/pasuperct_example.json new file mode 100644 index 000000000..d5129f08e --- /dev/null +++ b/tests/examples/opinions/united_states/pasuperct_example.json @@ -0,0 +1,1120 @@ +{ + "Items": [ + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Jackson, W.\r\nNo. 2466 EDA 2022", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 72460, + "AuthorId": "38", + "OpinionId": 64804, + "FileName": "J-S44040-23m - 106054170279192261.pdf", + "ProcessedDate": "2024-08-29T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 38, + "AuthorName": "Colins, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 7810 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64804 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Moore, A.\r\nNo. 650 EDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 72459, + "AuthorId": "46", + "OpinionId": 64803, + "FileName": "J-S09001-24m - 106054174279194120.pdf", + "ProcessedDate": "2024-08-29T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 46, + "AuthorName": "Beck, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1983 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + }, + { + "Id": 72461, + "AuthorId": "49", + "OpinionId": 64803, + "FileName": "J-S09001-24dm - 106054174279194449.pdf", + "ProcessedDate": "2024-08-29T00:00:00", + "PostingTypeId": "14", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 49, + "AuthorName": "Panella, P.J.E.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1564 + }, + "PostType": { + "Id": 14, + "PostingTypeCode": "Dissenting Memorandum", + "PostingTypeId": "14", + "SortOrder": 14 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64803 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Gass, S.\r\nNo. 1980 EDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 72458, + "AuthorId": "45", + "OpinionId": 64802, + "FileName": "J-A17038-24m - 106054260279203013.pdf", + "ProcessedDate": "2024-08-29T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 45, + "AuthorName": "Sullivan, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1982 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64802 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Egli, C. v. Radnor Studio 21\r\nNo. 796 EDA 2024", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 72457, + "AuthorId": "5", + "OpinionId": 64801, + "FileName": "J-S31014-24m - 106054182279196077.pdf", + "ProcessedDate": "2024-08-29T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 5, + "AuthorName": "Bowes, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1563 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64801 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Wise,T.\r\nNo. 254 EDA 2024", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 72456, + "AuthorId": "5", + "OpinionId": 64800, + "FileName": "J-S31007-24m - 106054179279195532.pdf", + "ProcessedDate": "2024-08-29T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 5, + "AuthorName": "Bowes, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1563 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64800 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Alexis, J. v. Taylor, D.\nNo. 345 MDA 2024", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 72455, + "AuthorId": "49", + "OpinionId": 64799, + "FileName": "J-A19005-24jo.pdf", + "ProcessedDate": "2024-08-29T00:00:00", + "PostingTypeId": "6", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 2, + "Author": { + "Id": 49, + "AuthorName": "Panella, P.J.E.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1564 + }, + "PostType": { + "Id": 6, + "PostingTypeCode": "Judgment Order", + "PostingTypeId": "6", + "SortOrder": 6 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64799 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Robertson, K.\r\nNo. 9 MDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 72454, + "AuthorId": "48", + "OpinionId": 64798, + "FileName": "J-A27007-23m - 106054383279217773.pdf", + "ProcessedDate": "2024-08-29T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 48, + "AuthorName": "Lazarus, P.J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 110 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64798 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Kaminski, J.\r\nNo. 1285 MDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 72453, + "AuthorId": "49", + "OpinionId": 64797, + "FileName": "J-A12005-24m - 106054426279221677.pdf", + "ProcessedDate": "2024-08-29T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 49, + "AuthorName": "Panella, P.J.E.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1564 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64797 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Forsythe, R.\r\nNo. 1134 WDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-29T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": true, + "Postings": [ + { + "Id": 72452, + "AuthorId": "49", + "OpinionId": 64796, + "FileName": "J-S22007-24m - 106054385279220021.pdf", + "ProcessedDate": "2024-08-29T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 49, + "AuthorName": "Panella, P.J.E.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1564 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64796 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Kreamer, P. v. Klinger, D.\r\nNo. 1652 MDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 72448, + "AuthorId": "26", + "OpinionId": 64794, + "FileName": "J-S19013-24o - 106052767279052591.pdf", + "ProcessedDate": "2024-08-28T00:00:00", + "PostingTypeId": "1", + "PublicationTypeId": 2, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 26, + "AuthorName": "Dubow, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1967 + }, + "PostType": { + "Id": 1, + "PostingTypeCode": "Opinion", + "PostingTypeId": "1", + "SortOrder": 1 + }, + "PublicationType": { + "Id": 2, + "Description": "Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64794 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Taylor-Dixon, M.\r\nNo. 1244 WDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 72447, + "AuthorId": "49", + "OpinionId": 64793, + "FileName": "J-S22009-24o - 106052509279014807.pdf", + "ProcessedDate": "2024-08-28T00:00:00", + "PostingTypeId": "1", + "PublicationTypeId": 2, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 49, + "AuthorName": "Panella, P.J.E.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1564 + }, + "PostType": { + "Id": 1, + "PostingTypeCode": "Opinion", + "PostingTypeId": "1", + "SortOrder": 1 + }, + "PublicationType": { + "Id": 2, + "Description": "Precedential", + "SortOrder": null + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64793 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Ruch, E.\r\nNo. 60 EDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 72446, + "AuthorId": "38", + "OpinionId": 64792, + "FileName": "J-S44037-23m - 106052840279059447.pdf", + "ProcessedDate": "2024-08-28T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 38, + "AuthorName": "Colins, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 7810 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64792 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Powell, D.\r\nNo. 18 EDA 2024", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 72445, + "AuthorId": "35", + "OpinionId": 64791, + "FileName": "J-S28024-24m - 106052959279069206.pdf", + "ProcessedDate": "2024-08-28T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 35, + "AuthorName": "Murray, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1974 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64791 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Zuber, T.\r\nNo. 1710 EDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 72444, + "AuthorId": "35", + "OpinionId": 64790, + "FileName": "J-S21038-24m - 106052865279061950.pdf", + "ProcessedDate": "2024-08-28T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 35, + "AuthorName": "Murray, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1974 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64790 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "In Re: D.R.S., Appeal of: J.S.S.\r\nNo. 2581 EDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 72443, + "AuthorId": "26", + "OpinionId": 64789, + "FileName": "J-S06015-24m - 106052883279062994.pdf", + "ProcessedDate": "2024-08-28T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 26, + "AuthorName": "Dubow, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1967 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64789 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Vurimindi, V. v. Schaheen, M.\r\nNo. 612 EDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 72442, + "AuthorId": "26", + "OpinionId": 64788, + "FileName": "J-S12001-24m - 106052857279061047.pdf", + "ProcessedDate": "2024-08-28T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 26, + "AuthorName": "Dubow, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1967 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64788 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Spencer, J.\r\nNo. 1205 MDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 72441, + "AuthorId": "33", + "OpinionId": 64787, + "FileName": "J-S20027-24m - 106052868279061816.pdf", + "ProcessedDate": "2024-08-28T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 33, + "AuthorName": "Kunselman, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1972 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64787 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Singer, N.\r\nNo. 1171 MDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 72440, + "AuthorId": "26", + "OpinionId": 64786, + "FileName": "J-S19004-24m - 106052772279053766.pdf", + "ProcessedDate": "2024-08-28T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 26, + "AuthorName": "Dubow, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1967 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64786 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Smith, L.\r\nNo. 1205 WDA 2023", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 72439, + "AuthorId": "45", + "OpinionId": 64785, + "FileName": "J-S24030-24m - 106053142279086500.pdf", + "ProcessedDate": "2024-08-28T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 45, + "AuthorName": "Sullivan, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1982 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64785 + }, + { + "Author": null, + "BoardDocketNumber": null, + "Caption": "Com. v. Galbraith, H.\r\nNo. 270 WDA 2024", + "CourtDocketNumber": null, + "CourtType": 2, + "DispositionDate": "2024-08-28T00:00:00", + "Keywords": null, + "UserIdentifier": "The Superior Court Reporter", + "UploadDate": "0001-01-01T00:00:00", + "PostedToday": false, + "Postings": [ + { + "Id": 72438, + "AuthorId": "42", + "OpinionId": 64784, + "FileName": "J-S29023-24m - 106053005279073746.pdf", + "ProcessedDate": "2024-08-28T00:00:00", + "PostingTypeId": "5", + "PublicationTypeId": 1, + "RenderedDate": "0001-01-01T00:00:00", + "SortOrder": 0, + "FileVersion": 1, + "Author": { + "Id": 42, + "AuthorName": "King, J.", + "AuthorCode": null, + "Selectable": true, + "SortOrder": 1980 + }, + "PostType": { + "Id": 5, + "PostingTypeCode": "Memorandum", + "PostingTypeId": "5", + "SortOrder": 5 + }, + "PublicationType": { + "Id": 1, + "Description": "Non-Precedential", + "SortOrder": 1 + } + } + ], + "CreatedById": null, + "DeletedById": null, + "UpdatedById": null, + "CreatedOn": null, + "DeletedOn": null, + "UpdatedOn": null, + "CreatedBy": null, + "DeletedBy": null, + "UpdatedBy": null, + "Id": 64784 + } + ], + "TotalItems": 63, + "TotalPages": 4, + "PageNumber": 1, + "PageSize": 20, + "HasPrevious": false, + "HasNext": true +} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/pasuperct_example.xml b/tests/examples/opinions/united_states/pasuperct_example.xml deleted file mode 100644 index c67fd9ef5..000000000 --- a/tests/examples/opinions/united_states/pasuperct_example.xml +++ /dev/null @@ -1,628 +0,0 @@ - - - - - Unified Judicial System of Pennsylvania: Superior Court Opinions - https://www.pacourts.us/Rss/Opinions/Superior/ - Unified Judicial System of Pennsylvania: Superior Court Opinions - Wed, 20 Oct 2021 19:36:46 GMT - en-us - - Meadows Landing v. Scuvotti, M. -No. 1279 WDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-A18020-21m - 104929752149575100.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A18020-21m - 104929752149575100.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A18020-21m - 104929752149575100.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Nichols, J. - - - In Re: L.J.J., Appeal of: H.A.E. -No. 223 WDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-A20038-21m - 104929408149539589.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A20038-21m - 104929408149539589.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A20038-21m - 104929408149539589.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - McCaffery, J. - - - Selectdecks, LLC v. Pittsburgh Stone -No. 243 WDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-A20031-21m - 104929555149552250.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A20031-21m - 104929555149552250.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A20031-21m - 104929555149552250.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - McCaffery, J. - - - Com. v. West, D. -No. 292 WDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-A20045-21m - 104929499149547954.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A20045-21m - 104929499149547954.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A20045-21m - 104929499149547954.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - McCaffery, J. - - - Com. v. Soto Jr., H. -No. 25 MDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-S22023-21m - 104929490149546620.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S22023-21m - 104929490149546620.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S22023-21m - 104929490149546620.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - McCaffery, J. - - - Com. v. McClennan, J. -No. 357 MDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-S30027-21m - 104929494149546992.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S30027-21m - 104929494149546992.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S30027-21m - 104929494149546992.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - McCaffery, J. - - - Com. v. Riley, D. -No. 1818 EDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-S21022-21m - 104929575149554721.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S21022-21m - 104929575149554721.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S21022-21m - 104929575149554721.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Olson, J. - - - Com. v. Rannels, C. -No. 3106 EDA 2019 - https://www.pacourts.us/assets/opinions/Superior/out/J-S06024-21m - 104929681149566238.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S06024-21m - 104929681149566238.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S06024-21m - 104929681149566238.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Nichols, J. - - - C.W.E.R.S.F. Golf v. Linde, E. -No. 1371 EDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-A17019-21m - 104929308149526177.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A17019-21m - 104929308149526177.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A17019-21m - 104929308149526177.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - King, J. - - - Com. v. Miller, O. -No. 1036 EDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-S31034-21m - 104929327149530782.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S31034-21m - 104929327149530782.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S31034-21m - 104929327149530782.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Pellegrini, J. - - - Thomas, R. v. Thomas, J. -No. 378 EDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-A24025-21jo - 104929315149528138.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A24025-21jo - 104929315149528138.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A24025-21jo - 104929315149528138.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Dubow, J. - - - Frazer, J. v. McEntire, S. -No. 118 WDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-A20036-21o - 104929356149536130.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A20036-21o - 104929356149536130.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A20036-21o - 104929356149536130.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - McCaffery, J. - - - Com. v. Dejesus, J. -No. 883 EDA 2018 - https://www.pacourts.us/assets/opinions/Superior/out/J-E01006-21o - 104929304149525413.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-E01006-21o - 104929304149525413.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-E01006-21o - 104929304149525413.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - Dubow, J. - - - Frisch, A. v. James River Ins. -No. 1520 EDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-A17009-21o - 104929311149527205.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A17009-21o - 104929311149527205.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A17009-21o - 104929311149527205.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - King, J. - - - Judgment Lists - https://www.pacourts.us/assets/opinions/Superior/out/102021e.pdf - https://www.pacourts.us/assets/opinions/Superior/out/102021e.pdf - https://www.pacourts.us/assets/opinions/Superior/out/102021e.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - - - - Judgment Lists - https://www.pacourts.us/assets/opinions/Superior/out/102021m.pdf - https://www.pacourts.us/assets/opinions/Superior/out/102021m.pdf - https://www.pacourts.us/assets/opinions/Superior/out/102021m.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - - - - Judgment Lists - https://www.pacourts.us/assets/opinions/Superior/out/102021w.pdf - https://www.pacourts.us/assets/opinions/Superior/out/102021w.pdf - https://www.pacourts.us/assets/opinions/Superior/out/102021w.pdf - - Wed, 20 Oct 2021 04:00:00 GMT - - - - - Com. v. Mumaw, E. -No. 234 MDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-A07005-21m - 104927980149434950.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A07005-21m - 104927980149434950.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A07005-21m - 104927980149434950.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Bowes, J. - - - Jordan, K. v. Jordan, A., Jr. -No. 74 MDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-A16011-21m - 104927436149393108.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A16011-21m - 104927436149393108.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A16011-21m - 104927436149393108.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Kunselman, J. - - - Green, T. v. The Trustees of the Univ. of Penn. -No. 2160 EDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-A15006-21o - 104927967149433737.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A15006-21o - 104927967149433737.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A15006-21o - 104927967149433737.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Bowes, J. - - - Com. v. Atkinson, D. -No. 1562 EDA 2016 - https://www.pacourts.us/assets/opinions/Superior/out/J-E03001-20o - 104927859149426889.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-E03001-20o - 104927859149426889.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-E03001-20o - 104927859149426889.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Lazarus, J. - - - Com. v. Atkinson, D. -No. 1562 EDA 2016 - https://www.pacourts.us/assets/opinions/Superior/out/J-E03001-20do - 104927859149427686.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-E03001-20do - 104927859149427686.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-E03001-20do - 104927859149427686.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Olson, J. - - - Com. v. Bowens, T. -No. 341 MDA 2018 - https://www.pacourts.us/assets/opinions/Superior/out/J-E03006-20o - 104928109149444071.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-E03006-20o - 104928109149444071.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-E03006-20o - 104928109149444071.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - Bowes, J. - - - Judgment Lists - https://www.pacourts.us/assets/opinions/Superior/out/101921e.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101921e.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101921e.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - - - - Judgment Lists - https://www.pacourts.us/assets/opinions/Superior/out/101921m.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101921m.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101921m.pdf - - Tue, 19 Oct 2021 04:00:00 GMT - - - - - Grezak-Sklodowska, G. v. Grezak, W. -No. 2311 EDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-A19013-21m - 104926192149292836.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A19013-21m - 104926192149292836.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A19013-21m - 104926192149292836.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Dubow, J. - - - Torres, K. v. Torres, T. -No. 831 EDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-S25016-21m - 104925921149266086.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S25016-21m - 104925921149266086.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S25016-21m - 104925921149266086.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - McLaughlin, J. - - - Tenth Presbyterian Church v. Snyder, P. -No. 849 EDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-A15038-21m - 104926276149299130.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A15038-21m - 104926276149299130.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A15038-21m - 104926276149299130.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Musmanno, J. - - - Com. v. Beck, A. -No. 958 EDA 2019 - https://www.pacourts.us/assets/opinions/Superior/out/J-S18040-21m - 104926124149287850.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S18040-21m - 104926124149287850.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S18040-21m - 104926124149287850.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Colins, J. - - - Com. v. Miranda, E. -No. 2196 EDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-A24044-21m - 104926340149303182.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A24044-21m - 104926340149303182.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A24044-21m - 104926340149303182.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Pellegrini, J. - - - State Farm Mutual v. Palmer, D. -No. 398 EDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-S28034-21m - 104926434149309210.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S28034-21m - 104926434149309210.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S28034-21m - 104926434149309210.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Pellegrini, J. - - - Graves, D. v. Graves, M. -No. 1787 EDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-S13001-21o - 104926077149335496.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S13001-21o - 104926077149335496.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S13001-21o - 104926077149335496.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - Olson, J. - - - Judgment Lists - https://www.pacourts.us/assets/opinions/Superior/out/101821e.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101821e.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101821e.pdf - - Mon, 18 Oct 2021 04:00:00 GMT - - - - - Reargument Table - https://www.pacourts.us/assets/opinions/Superior/out/WestReport101521.pdf - https://www.pacourts.us/assets/opinions/Superior/out/WestReport101521.pdf - https://www.pacourts.us/assets/opinions/Superior/out/WestReport101521.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - - - - In Re: J.R.L., Appeal of: S.L. and M.L. -No. 200 WDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-A20010-21m - 104924607149168045.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A20010-21m - 104924607149168045.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A20010-21m - 104924607149168045.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - Panella, P.J. - - - Com. v. Lawson, D. -No. 193 WDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-S19009-21m - 104924778149176718.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S19009-21m - 104924778149176718.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S19009-21m - 104924778149176718.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - Dubow, J. - - - Com. v. Lawson, D. -No. 192 WDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-S19008-21m - 104924667149171364.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S19008-21m - 104924667149171364.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S19008-21m - 104924667149171364.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - Dubow, J. - - - Com. v. Singleton, M. -No. 1577 MDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-S22001-21m - 104925017149193679.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S22001-21m - 104925017149193679.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S22001-21m - 104925017149193679.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - Panella, P.J. - - - Com. v. Harbst, D. -No. 812 MDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-S26027-21m.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S26027-21m.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S26027-21m.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - Murray, J. - - - W.O., IV v. J.N.B. -No. 518 MDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-S26034-21m.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S26034-21m.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S26034-21m.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - Musmanno, J. - - - Noll, H. v. Abeln, P. -No. 228 EDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-A24008-21m - 104924538149161084.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A24008-21m - 104924538149161084.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A24008-21m - 104924538149161084.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - Lazarus, J. - - - Connelly, L., C. v. Connelly, T., P., Jr., -No. 2341 EDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-A10017-21m - 104924490149154924.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A10017-21m - 104924490149154924.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A10017-21m - 104924490149154924.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - Olson, J. - - - Com. v. Young, D. -No. 2088 EDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-A19012-21m - 104924568149164333.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A19012-21m - 104924568149164333.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A19012-21m - 104924568149164333.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - Dubow, J. - - - Com. v. Wylie, J. -No. 629 EDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-S31020-21m - 104924609149167858.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S31020-21m - 104924609149167858.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S31020-21m - 104924609149167858.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - King, J. - - - Com. v. Stokes, J. -No. 1240 EDA 2019 - https://www.pacourts.us/assets/opinions/Superior/out/J-S23044-21m - 104924674149171882.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S23044-21m - 104924674149171882.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S23044-21m - 104924674149171882.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - Colins, J. - - - Com. v. Marshall, J. -No. 1 EDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-S23042-21m - 104924475149152493.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S23042-21m - 104924475149152493.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S23042-21m - 104924475149152493.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - Colins, J. - - - Judgment Lists - https://www.pacourts.us/assets/opinions/Superior/out/101521e.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101521e.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101521e.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - - - - Judgment Lists - https://www.pacourts.us/assets/opinions/Superior/out/101521m.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101521m.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101521m.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - - - - Judgment Lists - https://www.pacourts.us/assets/opinions/Superior/out/101521w.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101521w.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101521w.pdf - - Fri, 15 Oct 2021 04:00:00 GMT - - - - - Com. v. Andrews, M. -No. 261 MDA 2021 - https://www.pacourts.us/assets/opinions/Superior/out/J-S26011-21m - 104923436149058777.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S26011-21m - 104923436149058777.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S26011-21m - 104923436149058777.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Stabile, J. - - - Com. v. Hakes, C. -No. 1575 MDA 2019 - https://www.pacourts.us/assets/opinions/Superior/out/J-S05033-20m - 104923413149058139.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S05033-20m - 104923413149058139.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S05033-20m - 104923413149058139.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Musmanno, J. - - - Com. v. Banko, D. -No. 1564 MDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-S26002-21jo - 104923433149058491.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S26002-21jo - 104923433149058491.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S26002-21jo - 104923433149058491.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Stabile, J. - - - Com. v. Powell, C. -No. 1678 EDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-S23041-21m - 104923170149025250.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S23041-21m - 104923170149025250.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S23041-21m - 104923170149025250.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Colins, J. - - - Com. v. Rivers, G. -No. 1703 EDA 2020 - https://www.pacourts.us/assets/opinions/Superior/out/J-S28042-21m - 104923174149025476.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S28042-21m - 104923174149025476.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-S28042-21m - 104923174149025476.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - Pellegrini, J. - - - Judgment Lists - https://www.pacourts.us/assets/opinions/Superior/out/101421e.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101421e.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101421e.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - - - - Judgment Lists - https://www.pacourts.us/assets/opinions/Superior/out/101421m.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101421m.pdf - https://www.pacourts.us/assets/opinions/Superior/out/101421m.pdf - - Thu, 14 Oct 2021 04:00:00 GMT - - - - - Howard, D., Jr. v. Blair, N. -No. 1455 MDA 2020 -Reargument Filed 10-18-21 - https://www.pacourts.us/assets/opinions/Superior/out/J-A22004-21m - 104921827148929732.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A22004-21m - 104921827148929732.pdf - https://www.pacourts.us/assets/opinions/Superior/out/J-A22004-21m - 104921827148929732.pdf - - Wed, 13 Oct 2021 04:00:00 GMT - - Bowes, J. - - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/pr_example.compare.json b/tests/examples/opinions/united_states/pr_example.compare.json deleted file mode 100644 index 09e23d431..000000000 --- a/tests/examples/opinions/united_states/pr_example.compare.json +++ /dev/null @@ -1,222 +0,0 @@ -[ - { - "case_dates": "2022-12-28", - "case_names": "In re: Enmiendas al Reglamento para la Asignaci\u00f3n de Abogados y Abogadas de Oficio de Puerto Rico", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr154.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "ER-2022-03", - "citations": "2022TSPR154", - "case_name_shorts": "" - }, - { - "case_dates": "2022-12-23", - "case_names": "In re: Yolanda D\u00edaz Rivera", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr153.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "TS-14,092", - "citations": "2022TSPR153", - "case_name_shorts": "" - }, - { - "case_dates": "2022-12-21", - "case_names": "In re: Extensi\u00f3n de t\u00e9rminos por motivo de concesi\u00f3n del d\u00eda 30 de diciembre de 2022 sin cargo a licencia", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr151.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "EM-2022-09", - "citations": "2022TSPR151", - "case_name_shorts": "" - }, - { - "case_dates": "2022-12-21", - "case_names": "In re: Alberto J. Rafols Van Derdys", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr152.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CP-2018-12", - "citations": "2022TSPR152", - "case_name_shorts": "" - }, - { - "case_dates": "2022-10-12", - "case_names": "In re: Anthony John Medina Flores", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr122.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "TS-8,857", - "citations": "2022TSPR122", - "case_name_shorts": "" - }, - { - "case_dates": "2022-10-07", - "case_names": "In re: Anabelle Qui\u00f1ones Rodr\u00edguez", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr121.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "TS-14,206", - "citations": "2022TSPR121", - "case_name_shorts": "" - }, - { - "case_dates": "2022-09-28", - "case_names": "In re: Francisco Joubert Lugo", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr120.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "TS-10,698", - "citations": "2022TSPR120", - "case_name_shorts": "" - }, - { - "case_dates": "2022-09-26", - "case_names": "Ex parte: Diego Ram\u00edrez Bigott", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr119.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "TS-14,686", - "citations": "2022TSPR119", - "case_name_shorts": "" - }, - { - "case_dates": "2022-09-23", - "case_names": "In re: Medidas Judiciales ante situaci\u00f3n de emergencia tras el paso del Hurac\u00e1n Fiona", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr118.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "EM-2022-007", - "citations": "2022TSPR118", - "case_name_shorts": "" - }, - { - "case_dates": "2022-09-23", - "case_names": "In re: Medidas Judiciales ante situaci\u00f3n de emergencia tras el paso del Hurac\u00e1n Fiona", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr117.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "EM-2022-006", - "citations": "2022TSPR117", - "case_name_shorts": "" - }, - { - "case_dates": "2022-09-18", - "case_names": "In re: Extensi\u00f3n de T\u00e9rminos ante el paso del Hurac\u00e1n Fiona", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr116.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "EM-2022-005", - "citations": "2022TSPR116", - "case_name_shorts": "" - }, - { - "case_dates": "2022-09-16", - "case_names": "In re: Rosana M. Gonz\u00e1lez Rosa", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr115.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "TS-13,101", - "citations": "2022TSPR115", - "case_name_shorts": "" - }, - { - "case_dates": "2022-09-16", - "case_names": "El Pueblo v. Salamanca Corchado", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr114.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CC-2020-168", - "citations": "2022TSPR114", - "case_name_shorts": "" - }, - { - "case_dates": "2022-09-14", - "case_names": "Colegio de M\u00e9dicos Veterinarios de Puerto Rico v.Veterinario Express y otros", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr113.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "AC-2021-108", - "citations": "2022TSPR113", - "case_name_shorts": "" - }, - { - "case_dates": "2022-09-02", - "case_names": "Cruz Flores v. Hospital Ryder Memorial Inc.", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr112.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CC-2019-445", - "citations": "2022TSPR112", - "case_name_shorts": "" - }, - { - "case_dates": "2022-08-30", - "case_names": "In re: Virgilio J. Gonz\u00e1lez P\u00e9rez", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr111.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "TS-15,218", - "citations": "2022TSPR111", - "case_name_shorts": "" - }, - { - "case_dates": "2022-08-26", - "case_names": "Ex parte: Rebecca M. Rivera Castro", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr110.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "TS-14,461", - "citations": "2022TSPR110", - "case_name_shorts": "" - }, - { - "case_dates": "2022-08-24", - "case_names": "In re: Elba N. Villalba Ojeda", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr109.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "TS-9,463", - "citations": "2022TSPR109", - "case_name_shorts": "" - }, - { - "case_dates": "2022-08-19", - "case_names": "Fulano de Tal v. Demandada A, Demandada B", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr108.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "CC-2021-97", - "citations": "2022TSPR108", - "case_name_shorts": "" - }, - { - "case_dates": "2022-08-16", - "case_names": "In re: Heyda D. Torres Rivera", - "download_urls": "https://dts.poderjudicial.pr/ts/2022/2022tspr107.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "TS-18,006", - "citations": "2022TSPR107", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/pr_example.html b/tests/examples/opinions/united_states/pr_example.html deleted file mode 100644 index 7d7af54a0..000000000 --- a/tests/examples/opinions/united_states/pr_example.html +++ /dev/null @@ -1,2620 +0,0 @@ - - - - - - - - - - - Decisiones del Tribunal Supremo 2022 - Poder Judicial de Puerto Rico - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - -
    -
    -
    - - - - - - -
    -
    - - - - -
    - - - - -

     (787) 641-6263 | buzon@poderjudicial.pr

    -
    -
    - - - - - -
    - - - - -
    - - -
    - - - - - - -
    -
    - - - - - -
    - - - - -
    - - -
    -
    -
    - -
    - - - -
    - - -
    -
    -
    -
    - - - - - - -
    -
    - - - - -
    - - - - -

    Decisiones del Tribunal Supremo

    -
    -
    - - - - -
    -
    - - - - -
    - - - - -

    Admisiones por Cortesía del
    Tribunal Supremo

    -
    -
    - - - - -
    - - -
    - - - - - - -
    -
    - - - - -
    - - - - -

    Decisiones del Tribunal Supremo 2022

    -
    - - - - -

    Inicio / Tribunal Supremo / Índice de Decisiones del Tribunal Supremo / Decisiones del Tribunal Supremo 2022

    -
    -
    - - - - -
    - Buscar -
    -
    - - - - -
    - - -
    - - - - - - -
    - - - - - -
    - - -
    - - - - - - -
    -
    - - - - -
    - - - - -

    Diciembre

    -
    -
    - - - - -
    -
    - - - - -
    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NUMERO TSPRMATERIANUMERO CASOPARTESFECHA DE DECISIÓNJUEZ
    PONENTE
    2022TSPR154 Enmiendas al Reglamento para la Asignación de Abogados y Abogadas de Oficio de Puerto Rico ER-2022-03In re: Enmiendas al Reglamento para la Asignación de Abogados y Abogadas de Oficio de Puerto Rico28 diciembre  2022Resolución del Tribunal
    2022TSPR153 Reinstalación al ejercicio de la abogacíaTS-14,092In re: Yolanda Díaz Rivera23 diciembre  2022Resolución del Tribunal
    2022TSPR152Conducta Profesional – Suspensión inmediata del ejercicio de la abogacía por el término de seis (6) meses por infracción a los Artículos 2, 56 y 57 de la Ley Notarial, a las Reglas 29, 65 y 67 del Reglamento Notarial y a los Cánones 18, 35 y 38 del Código de Ética Profesional.CP-2018-12In re: Alberto J. Rafols Van Derdys21 diciembre 2022Per Curiam
    2022TSPR151Extensión de términos por motivo de concesión del día 30 de diciembre de 2022 sin cargo a licenciaEM-2022-09In re: Extensión de términos por motivo de concesión del día 30 de diciembre de 2022 sin cargo a licencia21 diciembre 2022Resolución del Tribunal
    2022TSPR122 Reinstalación al ejercicio de la abogacíaTS-8,857In re: Anthony John Medina Flores12 octubre 2022Resolución del Tribunal
    2022TSPR121 Reinstalación al ejercicio de la abogacíaTS-14,206In re: Anabelle Quiñones Rodríguez7 octubre 2022Resolución del Tribunal
    -
    -
    - - - - -
    -
    - - - - -
    - - - - -

    Septiembre

    -
    -
    - - - - -
    -
    - - - - -
    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NUMERO TSPRMATERIANUMERO CASOPARTESFECHA DE DECISIÓNPONENTE
    2022TSPR120 Reinstalación al ejercicio de la abogacíaTS-10,698In re: Francisco Joubert Lugo28 septiembre 2022Resolución del Tribunal
    2022TSPR119 Readmisión al ejercicio de la abogacíaTS-14,686Ex parte: Diego Ramírez Bigott26 septiembre 2022Resolución del Tribunal
    2022TSPR118 Medidas Judiciales ante situación de emergencia tras el paso del Huracán Fiona (Extensión de Términos Judiciales)EM-2022-007In re: Medidas Judiciales ante situación de emergencia tras el paso del Huracán Fiona23 septiembre 2022Resolución del Tribunal
    2022TSPR117 Medidas Judiciales ante situación de emergencia tras el paso del Huracán Fiona (Programa de Educación Jurídica Continua)EM-2022-006In re: Medidas Judiciales ante situación de emergencia tras el paso del Huracán Fiona23 septiembre 2022Resolución del Tribunal
    2022TSPR116 Extensión de Términos ante el paso del Huracán FionaEM-2022-005In re: Extensión de Términos ante el paso del Huracán Fiona18 septiembre 2022Resolución del Tribunal
    2022TSPR115 Readmisión al ejercicio de la abogacíaTS-13,101In re: Rosana M. González Rosa16 septiembre 2022Resolución del Tribunal
    2022TSPR114Constitucional y Procedimiento Criminal: Una orden en la que no surja la causa probable sobre el lugar en particular donde probablemente se encuentre un objeto ilegal constituye una omisión de fundamentos que activa la regla de exclusión de evidencia.CC-2020-168El Pueblo v. Salamanca Corchado16 septiembre 2022Hon. Kolthoff Caraballo
    2022TSPR113Sentencia del Tribunal con Opinión de Conformidad, Opinión Concurrente y Opinión DisidenteAC-2021-108Colegio de Médicos Veterinarios de Puerto Rico v.Veterinario Express y otros14 septiembre 2022Sentencia del Tribunal con Opinión de Conformidad, Opinión Concurrente y Opinión Disidente
    2022TSPR112Responsabilidad Civil Extracontractual – Deber de los hospitales de formular, adoptar y hacer cumplir aquellas políticas institucionales que garanticen la salud y bienestar de los pacientes, exigibles a la luz de la buena práctica de la medicina y que satisfacen las exigencias generalmente reconocidas por la profesión.CC-2019-445Cruz Flores, et al. v. Hospital Ryder Memorial Inc., et al.2 septiembre 2022Hon. Rivera García
    -
    -
    - - - - -
    -
    - - - - -
    - - - - -

    Agosto

    -
    -
    - - - - -
    -
    - - - - -
    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NUMERO TSPRMATERIANUMERO CASOPARTESFECHA DE DECISIÓNPONENTE
    2022TSPR111Reinstalación al ejercicio de la abogacíaTS-15,218In re: Virgilio J. González Pérez30 agosto 2022Resolución del Tribunal
    2022TSPR110Reactivación al ejercicio de la abogacíaTS-14,461Ex parte: Rebecca M. Rivera Castro26 agosto 2022Resolución del Tribunal
    2022TSPR109Reinstalación al ejercicio de la abogacía.TS-9,463In re: Elba N. Villalba Ojeda24 agosto 2022Resolución del Tribunal
    2022TSPR108Sentencia con Voto Particular de ConformidadCC-2021-97Fulano de Tal v. Demandada A, Demandada B19 agosto 2022Sentencia con Voto Particular de Conformidad
    2022TSPR107Conducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría por incumplir con las órdenes del Tribunal.TS-18,006In re: Heyda D. Torres Rivera16 agosto 2022Per Curiam
    -
    -
    - - - - -
    - - -
    -
    -
    - - -
    - - - -
    - - -
    - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tests/examples/opinions/united_states/prsupreme_example.compare.json b/tests/examples/opinions/united_states/prsupreme_example.compare.json new file mode 100644 index 000000000..e7ab0ec96 --- /dev/null +++ b/tests/examples/opinions/united_states/prsupreme_example.compare.json @@ -0,0 +1,1135 @@ +[ + { + "case_dates": "2023-10-18", + "case_names": "In re: \u00c1ngel L. Monta\u00f1ez Morales", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr131.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AB-2020-0146", + "citations": "2023 TSPR 131", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-17", + "case_names": "Ex parte: Miguel A. Serrano Urdaz", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr130.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-15,822", + "citations": "2023 TSPR 130", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-17", + "case_names": "Ex Parte: Aprobaci\u00f3n de Cambio de Estatus Inactivo de septiembre de 2023", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr129.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "EM-2023-0012", + "citations": "2023 TSPR 129", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-13", + "case_names": "In re: Mar\u00eda I. Torres Alvarado", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr128.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-17,837", + "citations": "2023 TSPR 128", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-12", + "case_names": "P\u00e9rez R\u00edos y otros v. Estado Libre Asociado de Puerto Rico y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr127.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC-2023-0001", + "citations": "2023 TSPR 127", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-12", + "case_names": "In re: Roberto Rivera Irizarry", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr126.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AB-2023-0013 cons. con AB-2023-0076", + "citations": "2023 TSPR 126", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-06", + "case_names": "In re: Juan E. C\u00e1tala Su\u00e1rez", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr125.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-17,953", + "citations": "2023 TSPR 125", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-04", + "case_names": "In re: Roberto O. Maldonado Nieves", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr123.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AB-2022-0099", + "citations": "2023 TSPR 123", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-03", + "case_names": "Puerto Rico Fast Ferries, LLC v. Autoridad de Alianzas P\u00fablico-Privadas y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr121.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0764", + "citations": "2023 TSPR 121", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-03", + "case_names": "Ex parte: Carolina Toledo Mel\u00e9ndez", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr122.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-20,533", + "citations": "2023 TSPR 122", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-03", + "case_names": "Birriel Col\u00f3n v. Supermercado Los Colobos (Econo Rial, Inc.) e Integrand Assurance Company", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr120.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0660", + "citations": "2023 TSPR 120", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-02", + "case_names": "Delucca Jim\u00e9nez v. Colegio de M\u00e9dicos Cirujanos de Puerto Rico y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr119.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC-2022-0083", + "citations": "2023 TSPR 119", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-29", + "case_names": "Serrano Pic\u00f3n v. Multinational Life Insurance Company", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr118.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC-2022-0069", + "citations": "2023 TSPR 118", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-26", + "case_names": "In re: Elaine Santos Negr\u00f3n", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr116.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-9,614", + "citations": "2023 TSPR 116", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-26", + "case_names": "Ex Parte:", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr117.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "EM-2023-0011", + "citations": "2023 TSPR 117", + "case_name_shorts": "Ex Parte:" + }, + { + "case_dates": "2023-09-25", + "case_names": "El Pueblo v. Toro V\u00e9lez", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr115.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC-2022-0102", + "citations": "2023 TSPR 115", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-22", + "case_names": "El Pueblo v. Maldonado De Jes\u00fas y otro", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr114.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2023-0318", + "citations": "2023 TSPR 114", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-19", + "case_names": "Ex parte: Yaznery Ortiz Navedo", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr113.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-13,997", + "citations": "2023 TSPR 113", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-14", + "case_names": "In re: \u00c1ngel L. Quintana Pab\u00f3n", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr112.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AB-2021-0084", + "citations": "2023 TSPR 112", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-12", + "case_names": "Mitsubishi Motor Sales of Caribbean, Inc. v. Lunor, Inc. y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr110.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC-2020-0082", + "citations": "2023 TSPR 110", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-12", + "case_names": "In re: Laura A. Dahdah de Surillo", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr124.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AB-2022-0221", + "citations": "2023 TSPR 124", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-11", + "case_names": "In re: \u00c1ngel L. Monta\u00f1ez Morales", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr111.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AB-2020-0146", + "citations": "2023 TSPR 111", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-07", + "case_names": "Ex parte: Carmen Lugo Luciano", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr109.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-13,089", + "citations": "2023 TSPR 109", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-23", + "case_names": "Oriental Bank v. Caballero Garc\u00eda", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr103.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0566", + "citations": "2023 TSPR 103", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-22", + "case_names": "Ex parte: Luis R. Viera Zayas", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr102.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-4,149", + "citations": "2023 TSPR 102", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-14", + "case_names": "In re: Armando A. Cardona Estelritz", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr100.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CP-2018-0004", + "citations": "2023 TSPR 100", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-09", + "case_names": "In re: David W. Rom\u00e1n Rodr\u00edguez", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr99.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-6,321", + "citations": "2023 TSPR 99", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-08", + "case_names": "In re: Norberto Col\u00f3n Alvarado", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr98.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AB-2021-0201", + "citations": "2023 TSPR 98", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-04", + "case_names": "Ex parte: Wendy Sue O'Neill", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr101.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-10,661", + "citations": "2023 TSPR 101", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-03", + "case_names": "In re: Walter Pierluisi Isern", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr97.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-9,621", + "citations": "2023 TSPR 97", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-01", + "case_names": "In re: Plan de Retribuci\u00f3n del Poder Judicial", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr96.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "EM-2023-0009", + "citations": "2023 TSPR 96", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-24", + "case_names": "Gonz\u00e1lez Mel\u00e9ndez v. Municipio Aut\u00f3nomo de San Juan y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr95.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0703", + "citations": "2023 TSPR 95", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-21", + "case_names": "Ex parte: Nelson H. Valle Mil\u00e1n", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr94.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-12,486", + "citations": "2023 TSPR 94", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-18", + "case_names": "Ex parte: Pedro A. V\u00e9lez Baerga", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr93.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-12,059", + "citations": "2023 TSPR 93", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-14", + "case_names": "Ex parte: Aprobaci\u00f3n de Cambio de Estatus Inactivo de junio de 2023", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr92.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "EM-2023-0008", + "citations": "2023 TSPR 92", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-10", + "case_names": "In re: Carmen T.Saliceti Maldonado", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr91.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AB-2021-0189", + "citations": "2023 TSPR 91", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-06", + "case_names": "In re: Alberto J. Rafols Van Derdys", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr90.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-11,694", + "citations": "2023 TSPR 90", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-05", + "case_names": "In re: \u00c1ngel L. Ortiz L\u00f3pez", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr88.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-18,057", + "citations": "2023 TSPR 88", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-05", + "case_names": "Ex parte: Wanda I. Resto Torres", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr89.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-8,588", + "citations": "2023 TSPR 89", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-30", + "case_names": "Uni\u00f3n General de Trabajadores v. Centro M\u00e9dico del Turabo, Inc. h/n/c HIMA San Pablo Caguas", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr86.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0585", + "citations": "2023 TSPR 86", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-30", + "case_names": "Rom\u00e1n Negr\u00f3n y otros v. Colegio de Contadores P\u00fablicos Autorizados y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr87.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC-2022-0026", + "citations": "2023 TSPR 87", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-30", + "case_names": "In re: Mar\u00eda I. Torres Alvarado", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr84.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CP-2019-0007", + "citations": "2023 TSPR 84", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-30", + "case_names": "In re: Gloria E. Marrero Mart\u00ednez", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr85.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-10,702", + "citations": "2023 TSPR 85", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-28", + "case_names": "Santos Iglesias v. Lugo Oliveras", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr83.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC-2023-0013", + "citations": "2023 TSPR 83", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-28", + "case_names": "In re: Carlos E. Rivera Justiniano", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr82.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CP-2018-0014", + "citations": "2023 TSPR 82", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-27", + "case_names": "Fideicomiso de Conservaci\u00f3n de Puerto Rico y Para la Naturaleza, Inc. y otros v. Oficina de Gerencia de Permisos del Departamento de Desarrollo Econ\u00f3mico y Comercio de Puerto Rico y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr81.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2021-0418", + "citations": "2023 TSPR 81", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-26", + "case_names": "Acevedo Arocho y otros v. Departamento de Hacienda de Puerto Rico y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr80.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC-2020-0037", + "citations": "2023 TSPR 80", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-23", + "case_names": "V\u00e9lez Col\u00f3n y otros v. Colegio de Opt\u00f3metras de Puerto Rico y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr78.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC-2022-0059", + "citations": "2023 TSPR 78", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-23", + "case_names": "Ex parte: Aprobaci\u00f3n de Cambio de Estatus Inactivo de mayo 2023", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr79.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "EM-2023-0007", + "citations": "2023 TSPR 79", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-16", + "case_names": "Mart\u00ednez Fern\u00e1ndez y otros v. Oficina de Gerencia de Permisos y otro", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr75.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC-2022-0033 cons. con AC-2022-0034", + "citations": "2023 TSPR 75", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-14", + "case_names": "In re:", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr74.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "ER-2023-0001", + "citations": "2023 TSPR 74", + "case_name_shorts": "In re:" + }, + { + "case_dates": "2023-06-09", + "case_names": "In re: Comit\u00e9 Asesor Permanente de Reglamento Notarial", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr76.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "EN-2023-0003", + "citations": "2023 TSPR 76", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-07", + "case_names": "In re: Juan Carlos L\u00f3pez Sep\u00falveda", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr73.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-15,108", + "citations": "2023 TSPR 73", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-30", + "case_names": "In re: Luis D. M\u00e9ndez Cordero", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr72.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-17,061", + "citations": "2023 TSPR 72", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-22", + "case_names": "Ex Parte: Aprobaci\u00f3n de Cambio de Estatus Inactivo de abril de 2023", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr71.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "EM-2023-0005", + "citations": "2023 TSPR 71", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-19", + "case_names": "Integraci\u00f3n de Salas de Verano", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr70.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "ES-2023-0001", + "citations": "2023 TSPR 70", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-19", + "case_names": "In re: Jos\u00e9 E. Arzola M\u00e9ndez", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr69.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AB-2022-0244", + "citations": "2023 TSPR 69", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-19", + "case_names": "Ex parte: Jos\u00e9 Carlos Gonz\u00e1lez Bonilla", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr68.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-11,624", + "citations": "2023 TSPR 68", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-09", + "case_names": "In re: Carlos L. Gonz\u00e1lez Reyes", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr67.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-7,445", + "citations": "2023 TSPR 67", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-08", + "case_names": "Rivera G\u00f3mez y otros v. Arcos Dorados Puerto Rico, Inc. y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr65.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0425", + "citations": "2023 TSPR 65", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-08", + "case_names": "El Pueblo v. V\u00e9lez Torres", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr66.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0210", + "citations": "2023 TSPR 66", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-05", + "case_names": "In re: Junta de Educaci\u00f3n Jur\u00eddica Continua", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr63.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "EN-2023-0001", + "citations": "2023 TSPR 63", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-05", + "case_names": "In re: Designaci\u00f3n de Miembro de la Comisi\u00f3n de Disciplina Judicial", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr64.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "EN-2023-0002", + "citations": "2023 TSPR 64", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-04", + "case_names": "Reyes Sorto y otros v. Estado Libre Asociado de Puerto Rico y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr62.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC-2021-0072", + "citations": "2023 TSPR 62", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-04", + "case_names": "In re: Azahary de las Nieves Wilamo Guzm\u00e1n", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr61.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AB-2022-0208", + "citations": "2023 TSPR 61", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-03", + "case_names": "In re: Jorge Mel\u00e9ndez Artau", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr60.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-6,951", + "citations": "2023 TSPR 60", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-02", + "case_names": "Cintr\u00f3n Rom\u00e1n v. Jim\u00e9nez Echevarr\u00eda y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr59.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2023-0049", + "citations": "2023 TSPR 59", + "case_name_shorts": "" + }, + { + "case_dates": "2023-04-28", + "case_names": "Ex parte: Aprobaci\u00f3n de Cambio de Estatus Inactivo de marzo de 2023", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr58.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "EM-2023-0004", + "citations": "2023 TSPR 58", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-30", + "case_names": "V\u00e9lez Arroyo v. HPM Foundation, Inc. y otro", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr38.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2021-0480", + "citations": "2023 TSPR 38", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-24", + "case_names": "Miranda Santos v. Sistema de Retiro para Maestros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr39.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0699", + "citations": "2023 TSPR 39", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-23", + "case_names": "Pueblo v. P\u00e9rez Delgado", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr35.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2020-0477", + "citations": "2023 TSPR 35", + "case_name_shorts": "Pueblo" + }, + { + "case_dates": "2023-03-23", + "case_names": "In re: Richard A. Garc\u00eda P\u00e9rez", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr36.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-21,132 Ref. CC-2022-0295", + "citations": "2023 TSPR 36", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-21", + "case_names": "In re: Luis Aponte Morales", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr33.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-10,336", + "citations": "2023 TSPR 33", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-21", + "case_names": "In re: Jorge C. Venegas Mart\u00ednez", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr32.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-19,203", + "citations": "2023 TSPR 32", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-16", + "case_names": "In re: Omar A. Gonz\u00e1lez Soto", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr29.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-19,927", + "citations": "2023 TSPR 29", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-16", + "case_names": "Ex parte: Aprobaci\u00f3n de Cambio de Estatus Inactivo de febrero de 2023", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr30.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "EM-2023-0003", + "citations": "2023 TSPR 30", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-14", + "case_names": "Fideicomiso de Conservaci\u00f3n de Puerto Rico y Para la Naturaleza, Inc. v. Oficina de Gerencia de Permisos del Departamento de Desarrollo Econ\u00f3mico y Comercio de Puerto Rico y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr26.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2021-0418", + "citations": "2023 TSPR 26", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-14", + "case_names": "Col\u00f3n Vega v. D\u00edaz Lebr\u00f3n", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr27.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0257", + "citations": "2023 TSPR 27", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-13", + "case_names": "In re: Carlos E. Crespo Pend\u00e1s", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr31.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CP-2018-0003", + "citations": "2023 TSPR 31", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-08", + "case_names": "American Federation Musicians, Local 555 (Uni\u00f3n) v. Corporaci\u00f3n Sinf\u00f3nica de Puerto Rico (Patrono)", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr25.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0146", + "citations": "2023 TSPR 25", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-07", + "case_names": "Universal Insurance Company y otro v. Estado Libre Asociado de Puerto Rico y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr24.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0172", + "citations": "2023 TSPR 24", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-06", + "case_names": "Ramos Soto v. Departamento de Correcci\u00f3n y Rehabilitaci\u00f3n", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr23.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2021-0294", + "citations": "2023 TSPR 23", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-01", + "case_names": "In re: Roberto Rodr\u00edguez Cintr\u00f3n", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr22.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-17,928", + "citations": "2023 TSPR 22", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-28", + "case_names": "In re: Ram\u00f3n Col\u00f3n Olivo", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr21.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-9,069", + "citations": "2023 TSPR 21", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-28", + "case_names": "In re: Edwin H. Sep\u00falveda Valent\u00edn", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr20.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CP-2018-0007", + "citations": "2023 TSPR 20", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-24", + "case_names": "In re: Harry Carrasquillo Ortiz", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr19.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-13,710", + "citations": "2023 TSPR 19", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-16", + "case_names": "In re: Walter Alomar Santiago", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr16.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AB-2022-0019", + "citations": "2023TSPR16", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-16", + "case_names": "Amadeo Ocasio y otros v. Pierluisi Urrutia y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr17.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC-2022-0070", + "citations": "2023TSPR17", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-15", + "case_names": "Semidey Ramos y otros v. Farmacia Belmonte y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr15.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2021-0883", + "citations": "2023TSPR15", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-13", + "case_names": "Silva Soto v. Suiza Dairy Corporation", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr14.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0252", + "citations": "2023TSPR14", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-10", + "case_names": "Ex parte: Aprobaci\u00f3n de Cambio de Estatus Inactivo de enero de 2023", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr12.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "EM-2023-0002", + "citations": "2023TSPR12", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-08", + "case_names": "In re: Elaine Santos Negr\u00f3n", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr11.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-9,614", + "citations": "2023TSPR11", + "case_name_shorts": "" + }, + { + "case_dates": "2023-02-01", + "case_names": "In re: Jorge L. Armenteros Chervoni", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr10.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-12,153", + "citations": "2023TSPR10", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-31", + "case_names": "Ex Parte: Aprobaci\u00f3n de Cambio de Estatus Inactivo de octubre de 2020 a diciembre de 2022", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr09.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "EM-2023-0001", + "citations": "2023TSPR9", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-30", + "case_names": "In re: Luis Aponte Morales", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr13.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CP-2018-0015", + "citations": "2023TSPR13", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-25", + "case_names": "Rial v. Comisionado de Seguros de Puerto Rico", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr07.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0452", + "citations": "2023 TSPR 7", + "case_name_shorts": "Rial" + }, + { + "case_dates": "2023-01-25", + "case_names": "MCS Advantage, Inc. v. Fossas Blanco y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr08.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2021-0806", + "citations": "2023 TSPR 8", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-20", + "case_names": "Hern\u00e1ndez Feliciano v. Municipio de Quebradillas", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr06.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "CC-2022-0305", + "citations": "2023 TSPR 6", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-20", + "case_names": "Eagle Security Police, Inc. v. Efr\u00f3n Dorado, S.E. y otros", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr05.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AC-2022-0023", + "citations": "2023 TSPR 5", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-18", + "case_names": "Ex parte: Jessenia A. Seda Cab\u00e1n", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr04.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-20,549", + "citations": "2023 TSPR 4", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-17", + "case_names": "In re: Orlando Torres Trinidad", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr03.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "AB-2022-0059", + "citations": "2023 TSPR 3", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-11", + "case_names": "In re: Roxanna Soto Aguil\u00fa", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr01.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-15,968", + "citations": "2023 TSPR 1", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-11", + "case_names": "In re: Ram\u00f3n Col\u00f3n Olivo", + "download_urls": "https://dts.poderjudicial.pr/ts/2023/2023tspr02.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "TS-9,069", + "citations": "2023 TSPR 2", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/prsupreme_example.html b/tests/examples/opinions/united_states/prsupreme_example.html new file mode 100644 index 000000000..f754fa2d8 --- /dev/null +++ b/tests/examples/opinions/united_states/prsupreme_example.html @@ -0,0 +1,5048 @@ + + + + + + + + + + + Decisiones del Tribunal Supremo 2023 - Poder Judicial de Puerto Rico + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    +
    +
    + + + + + + +
    +
    + + + + +
    + + + + +

     (787) 641-6263 | buzon@poderjudicial.pr

    +
    +
    + + + + + +
    + + + + +
    + + +
    + + + + + + +
    +
    + + + + + +
    + + + + +
    + + +
    +
    +
    + +
    + + + +
    + + +
    +
    +
    +
    + + + + + + +
    +
    + + + + +
    + + + + +

    Decisiones del Tribunal Supremo

    +
    +
    + + + + +
    +
    + + + + +
    + + + + +

    Admisiones por Cortesía del
    Tribunal Supremo

    +
    +
    + + + + +
    + + +
    + + + + + + +
    +
    + + + + +
    + + + + +

    Decisiones del Tribunal Supremo 2023

    +
    + + + + +
    / Tribunal Supremo / Índice de Decisiones del Tribunal Supremo / Decisiones del Tribunal Supremo 2023
    +
    +
    + + + + +
    + Buscar +
    +
    + + + + +
    + + +
    + + + + + + +
    + + + + + +
    + + +
    + + + + + + +
    +
    + + + + +
    + + + + +

    Octubre

    +
    +
    + + + + +
    +
    + + + + +
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    2023 TSPR 133
    Núm.AB-2022-0227, AB-2023-0006
    PartesIn re: Gilberto Cuevas Vélez
    PonentePer Curiam
    Fecha24 de octubre de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría por infringir el Canon 9 del Código de Ética Profesional.
    2023 TSPR 132
    Núm.TS-10,045
    Partes In re: Miguel A. Montes Díaz
    PonenteResolución del Tribunal
    Fecha 20 de octubre de 2023
    MateriaReinstalación al ejercicio de la abogacía.
    2023 TSPR 131
    Núm.AB-2020-0146
    PartesIn re: Ángel L. Montañez Morales
    PonenteResolución del Tribunal
    Fecha18 de octubre de 2023
    MateriaReinstalación al ejercicio de la abogacía.
    2023 TSPR 130
    Núm.TS-15,822
    PartesEx parte: Miguel A. Serrano Urdaz
    PonenteResolución del Tribunal
    Fecha17 de octubre de 2023
    MateriaReadmisión al ejercicio de la abogacía.
    2023 TSPR 129
    Núm.EM-2023-0012
    PartesEx Parte: Aprobación de Cambio de Estatus Inactivo de septiembre de 2023
    PonenteResolución del Tribunal
    Fecha17 de octubre de 2023
    MateriaAprobación de Cambio de Estatus Inactivo de septiembre de 2023.
    2023 TSPR 128
    Núm.TS-17,837
    PartesIn re: María I. Torres Alvarado
    PonenteResolución del Tribunal
    Fecha13 de octubre de 2023
    MateriaReinstalación al ejercicio de la abogacía.
    2023 TSPR 127
    Núm.AC-2023-0001
    PartesPérez Ríos y otros v. Estado Libre Asociado de Puerto Rico y otros
    PonenteHon. Pabón Charneco
    Fecha12 de octubre de 2023
    Materia Derecho Constitucional – Inconstitucionalidad de la colegiación compulsoria estatuida en la Ley de la Junta Examinadora de Técnicos de Refrigeración y Aire Acondicionado.
    2023 TSPR 126
    Núm.AB-2023-0013 cons. con AB-2023-0076
    PartesIn re: Roberto Rivera Irizarry
    PonentePer Curiam
    Fecha 12 de octubre de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría por el reiterado incumplimiento  con las órdenes de este Tribunal.
    2023 TSPR 125
    Núm.TS-17,953
    PartesIn re: Juan E. Cátala Suárez
    PonentePer Curiam
    Fecha6 de octubre de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía por resultar convicto en el foro estatal por ciertos delitos en conexión con el ejercicio de la profesión.
    2023 TSPR 124
    Núm.AB-2022-0221
    PartesIn re: Laura A. Dahdah de Surillo
    PonentePer Curiam
    Fecha12 de septiembre de 2023
    MateriaConducta Profesional – Suspensión del ejercicio de la notaría por infracción al Art. 2 de la Ley Notarial de Puerto Rico; el Art. 131 de la Ley de Registro de la Propiedad Inmobiliaria y los Cánones 18, 35 y 38 del Código de Ética Profesional.
    2023 TSPR 123
    Núm.AB-2022-0099
    PartesIn re: Roberto O. Maldonado Nieves
    PonentePer Curiam
    Fecha 4 de octubre de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría por infracción a los Cánones 9 y 12 del Código de Ética Profesional.
    2023 TSPR 122
    Núm. TS-20,533
    Partes Ex parte: Carolina Toledo Meléndez
    Ponente Resolución del Tribunal
    Fecha3 de octubre de 2023
    MateriaReadmisión al Ejercicio de la Abogacía
    2023 TSPR 121
    Núm.CC-2022-0764
    PartesPuerto Rico Fast Ferries, LLC v. Autoridad de Alianzas Público-Privadas y otros
    PonenteHon. Feliberti Cintrón
    Fecha3 de octubre de 2023
    Materia Ley de Alianzas Público-Privadas – Gastos a ser sufragados en el contexto de una revisión judicial al amparo de la ley especial no incluyen el pago de honorarios de abogado.
    2023 TSPR 120
    Núm.CC-2022-0660
    PartesBirriel Colón v. Supermercado Los Colobos (Econo Rial, Inc.) e Integrand Assurance Company
    PonenteHon. Feliberti Cintrón
    Fecha3 de octubre de 2023
    MateriaDaños y perjuicios y Derecho de Seguros – Efecto sobre la interrupción del término prescriptivo contra un asegurado por el uso de prácticas engañosas que no se ajustan al principio de buena fe.
    2023 TSPR 119
    Núm.AC-2022-0083
    PartesDelucca Jiménez v. Colegio de Médicos Cirujanos de Puerto Rico y otros
    PonenteHon. Martínez Torres
    Fecha2 de octubre de 2023
    MateriaDerecho Constitucional – Inconstitucionalidad de la colegiación compulsoria para poder ejercer la medicina en Puerto Rico.
    +
    +
    + + + + +
    +
    + + + + +
    + + + + +

    Septiembre

    +
    +
    + + + + +
    +
    + + + + +
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    2023 TSPR 118
    Núm.AC-2022-0069
    PartesSerrano Picón v. Multinational Life Insurance Company
    PonenteHon. Feliberti Cintrón
    Fecha29 de septiembre de 2023
    MateriaDerecho de Seguros – Alcance de la cláusula de exclusión de un contrato de seguro de incapacidad que establece que la aseguradora no pagará por los beneficios cubiertos mientras el asegurado esté en una cárcel, prisión o de otra forma bajo la custodia de las autoridades legales.
    2023 TSPR 117
    Núm.EM-2023-0011
    PartesEx Parte:
    + Aprobación de Cambio de Estatus Inactivo de agosto de 2023
    PonenteResolución del Tribunal
    Fecha 26 de septiembre de 2023
    MateriaAprobación de Cambio de Estatus Inactivo de agosto de 2023.
    2023 TSPR 116
    Núm.TS-9,614
    PartesIn re: Elaine Santos Negrón
    PonentePer Curiam
    Fecha26 de septiembre de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía por violación a los Cánones 9, 33, 35 y 38 del Código de Ética Profesional.
    2023 TSPR 115
    Núm.AC-2022-0102
    Partes El Pueblo v. Toro Vélez
    PonenteSentencia con Opinión de Conformidad y Opinión Disidente.
    Fecha25 de septiembre de 2023
    Materia Sentencia con Opinión de Conformidad y Opinión Disidente.
    2023 TSPR 114
    Núm.CC-2023-0318
    PartesEl Pueblo v. Maldonado De Jesús y otro
    PonenteHon. Feliberti Cintrón
    Fecha 22 de septiembre de 2023
    Materia Ley para crear la Oficina del Panel sobre el Fiscal Especial Independiente – Jurisdicción de los Fiscales Especiales Independientes en casos en los que únicamente se presentan cargos criminales contra individuos particulares cuya presunta conducta delictiva es descubierta como resultado de la investigación encomendada por el Panel sobre el Fiscal Especial Independiente.
    2023 TSPR 113
    Núm.TS-13,997
    PartesEx parte: Yaznery Ortiz Navedo
    PonenteResolución del Tribunal
    Fecha19 de septiembre de 2023
    MateriaReactivación al ejercicio de la abogacía.
    2023 TSPR 112
    Núm.AB-2021-0084
    Partes In re: Ángel L. Quintana Pabón
    PonenteResolución del Tribunal
    Fecha 14 de septiembre de 2023
    Materia Conducta
    + Profesional – Suspensión inmediata del ejercicio de la notaría por un término de tres (3) meses.
    2023 TSPR 111
    Núm. AB-2020-0146
    Partes In re: Ángel L. Montañez Morales
    Ponente Per Curiam
    Fecha 11 de septiembre de 2023
    Materia Conducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría por incumplir con las órdenes del Tribunal Supremo.
    2023 TSPR 110
    Núm. AC-2020-0082
    Partes Mitsubishi Motor Sales of Caribbean, Inc. v. Lunor, Inc. y otros
    Ponente Hon. Kolthoff Caraballo
    Fecha 12 de septiembre de 2023
    Materia Procedimiento Civil – Si la sanción de la eliminación de las alegaciones que dispone la Regla 34.3 (b) (3) de Procedimiento Civil permite que la parte demandada sancionada presente prueba en el juicio para refutar los méritos de las alegaciones de la parte demandante.
    2023 TSPR 109
    Núm. TS-13,089
    Partes Ex parte: Carmen Lugo Luciano
    Ponente Resolución del Tribunal
    Fecha 7 de septiembre de 2023
    Materia Reinstalación al ejercicio de la abogacía.
    2023 TSPR 108
    +
    Núm.CC-2022-0689 cons. con CC-2022-0695
    PartesSucesión José Emanuel Mena Pamias y otros v. Jiménez Meléndez y otros
    PonenteHon. Colón Pérez
    Fecha5 de septiembre de 2023
    MateriaResponsabilidad Civil Extracontractual – Alcance de lo resuelto por el Tribunal Supremo en Santiago Montañez v. Fresenius Medical, 195 DPR 476 (2016), para la valorización de los daños.
    2023 TSPR 107
    +
    Núm.CC-2022-0671
    PartesDivisión de Empleados Públicos de la Unión General de Trabajadores v. Cuerpo de Emergencias Médicas de Puerto Rico
    PonenteHon. Pabón Charneco
    Fecha5 de septiembre de 2023
    MateriaProcedimiento Civil – Efecto sobre el término para recurrir al Tribunal de Apelaciones de una moción de reconsideración que no se notificó a la parte contraria.
    2023 TSPR 106
    +
    Núm.CC-2022-0669
    PartesTous Rodríguez v. Sucesión Guillermo Tous Oliver y otros
    PonenteHon. Oronoz Rodríguez
    Fecha1 de septiembre de 2023
    MateriaDerecho de Sucesiones – Duplicidad de funciones entre un comisionado especial y un contador partidor ya designado por la albacea de la Sucesión.
    2023 TSPR 105
    +
    Núm.CC-2022-0476
    PartesMuñoz Barrientos v. Estado Libre Asociado de Puerto Rico y otros
    PonenteHon. Colón Pérez
    Fecha1 de septiembre de 2023
    MateriaDerecho Administrativo – Jurisdicción del Tribunal de Primera Instancia sobre una reclamación extracontractual instada por un miembro de la población correccional.
    +
    +
    + + + + +
    +
    + + + + +
    + + + + +

    Agosto

    +
    +
    + + + + +
    +
    + + + + +
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    2023 TSPR 104
    +
    Núm.EM-2023-0010
    PartesEx Parte: Aprobación de Cambio de Estatus Inactivo de julio de 2023
    PonenteResolución del Tribunal
    Fecha31 de agosto de2023
    Materia Aprobación de Cambio de Estatus Inactivo de julio de 2023.
    2023 TSPR 103
    Núm.CC-2022-0566
    PartesOriental Bank v. Caballero García
    PonenteHon. Pabón Charneco
    Fecha23 de agosto de 2023
    MateriaLey de Mediación Compulsoria – Alcance y requisitos del proceso de mediación compulsoria estatuido en la Ley Núm. 184-2012, para que los tribunales puedan dictar Sentencia u ordenar la ejecución de una hipoteca.
    2023 TSPR 102
    Núm.TS-4,149
    PartesEx parte: Luis R. Viera Zayas
    PonenteResolución del Tribunal
    Fecha22 de agosto de 2023
    MateriaReadmisión al ejercicio de la abogacía.
    2023 TSPR 101
    Núm.TS-10,661
    Partes Ex parte: Wendy Sue O’Neill
    PonenteResolución del Tribunal
    Fecha4 de agosto de 2023
    MateriaReadmisión al ejercicio de la abogacía.
    2023 TSPR 100
    Núm.CP-2018-0004
    PartesIn re: Armando A. Cardona Estelritz
    PonentePer Curiam
    Fecha14 de agosto de 2023
    MateriaConducta Profesional – Censura enérgica por violación a los Cánones 9, 12, 18, 35 y 38 de Ética Profesional.
    2023 TSPR 99
    Núm.TS-6,321
    PartesIn re: David W. Román Rodríguez
    PonentePer Curiam
    Fecha9 de agosto de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría por el incumplimiento reiterado con los requerimientos de la Oficina de Inspección de Notarías y las órdenes del Tribunal Supremo.
    2023 TSPR 98
    Núm.AB-2021-0201
    PartesIn re: Norberto Colón Alvarado
    PonentePer Curiam
    Fecha8 de agosto de 2023
    MateriaConducta Profesional – Suspensión indefinida e inmediata del ejercicio de la notaría
    +por violación a los Arts. 12, 56 y 57 de la Ley Notarial; las Reglas 12, 29, 65 y 67 del Reglamento Notarial, y los Cánones 18, 35 y 38 de Ética Profesional.
    2023 TSPR 97
    Núm.TS-9,621
    PartesIn re: Walter Pierluisi Isern
    PonenteResolución del Tribunal
    Fecha3 de agosto de 2023
    Materia Conducta Profesional – Suspensión provisional e inmediata del ejercicio de la abogacía y la
    +notaría.
    2023 TSPR 96
    Núm.EM-2023-0009
    PartesIn re: Plan de Retribución del Poder Judicial
    PonenteResolución del Tribunal
    Fecha1 de agosto de 2023
    MateriaPlan de Retribución del Poder Judicial
    +
    +
    + + + + +
    +
    + + + + +
    + + + + +

    Julio

    +
    +
    + + + + +
    +
    + + + + +
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    2023 TSPR 95
    Núm.CC-2022-0703
    PartesGonzález Meléndez v. Municipio Autónomo de San Juan y otros
    PonenteHon. Feliberti Cintrón
    Fecha24 de julio de 2023
    MateriaDaños y Perjuicios – Si los municipios responden por las reclamaciones de daños y perjuicios instadas en su contra por accidentes ocurridos en las carreteras o aceras pertenecientes al Gobierno estatal, pero que transcurren dentro de los límites territoriales de la demarcación geográfica municipal.
    2023 TSPR 94
    Núm.TS-12,486
    PartesEx parte: Nelson H. Valle Milán
    PonenteResolución del Tribunal
    Fecha21 de julio de 2023
    MateriaReadmisión al ejercicio de la abogacía
    2023 TSPR 93
    Núm.TS-12,059
    PartesEx parte: Pedro A. Vélez Baerga
    PonenteResolución del Tribunal
    Fecha18 de julio de 2023
    MateriaReadmisión al ejercicio de la abogacía.
    2023 TSPR 92
    Núm.EM-2023-0008
    PartesEx parte: Aprobación de Cambio de Estatus Inactivo de junio de 2023
    PonenteResolución del Tribunal
    Fecha14 de julio de 2023
    MateriaAprobación de
    Cambio de Estatus Inactivo de junio de 2023.
    2023 TSPR 91
    Núm.AB-2021-0189
    PartesIn re: Carmen T.
    Saliceti Maldonado
    PonentePer Curiam
    Fecha10 de julio de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida de la práctica de la notaría por incumplir con los Arts. 2, 14 y 15(f) de la Ley Notarial de Puerto Rico; las reglas análogas del Reglamento Notarial; los Arts. 130, 131 y 240 de la Ley de Registro de la Propiedad Inmobiliaria del Estado Libre Asociado de Puerto Rico, y los Cánones 18 y 35 del Código de Ética Profesional.
    2023 TSPR 90
    Núm. TS-11,694
    Partes In re: Alberto J. Rafols Van Derdys
    Ponente Resolución del Tribunal
    Fecha 6 de julio de 2023
    Materia Reinstalación al ejercicio de la abogacía
    2023 TSPR 89
    Núm. TS-8,588
    Partes Ex parte: Wanda I. Resto Torres
    Ponente Resolución del Tribunal
    Fecha 5 de julio de 2023
    Materia Readmisión al ejercicio de la notaría
    2023 TSPR 88
    Núm. TS-18,057
    Partes In re: Ángel L. Ortiz López
    Ponente Resolución del Tribunal
    Fecha 5 de julio de 2023
    Materia Reinstalación al ejercicio de la notaría
    +
    +
    + + + + +
    +
    + + + + +
    + + + + +

    Junio

    +
    +
    + + + + +
    +
    + + + + +
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    2023 TSPR  87
    Núm. AC-2022-0026
    Partes Román Negrón y otros v. Colegio de Contadores Públicos Autorizados y otros
    Ponente Sentencia con Opiniones de conformidad y Opinión disidente
    Fecha 30 de junio de 2023
    Materia Sentencia con Opiniones de conformidad y Opinión disidente
    2023 TSPR 86
    Núm. CC-2022-0585
    Partes Unión General de Trabajadores v. Centro Médico del Turabo, Inc. h/n/c HIMA San Pablo Caguas
    Ponente Hon. Martínez Torres
    Fecha 30 de junio de 2023
    Materia Derecho Laboral – La exoneración estatutaria por ausencia o insuficiencia de ganancias para sufragar el bono de navidad no abarca a aquellos empleados que el Departamento del Trabajo y Recursos Humanos exceptuó expresamente de su aplicación.
    2023 TSPR 85
    Núm. TS-10,702
    Partes In re: Gloria E. Marrero Martínez
    Ponente Per Curiam
    Fecha 30 de junio de 2023
    Materia Conducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría por no mantener al día sus datos personales en el Registro Único de Abogados y por reiterado incumplimiento con los requerimientos de la Oficina de Inspección de Notarías y las órdenes del Tribunal.
    2023 TSPR 84
    Núm. CP-2019-0007
    Partes In re: María I. Torres Alvarado
    Ponente Per Curiam
    Fecha 30 de junio de 2023
    Materia Conducta Profesional – Suspensión inmediata del ejercicio de la profesión legal por el término de tres meses por infracción a los Cánones 9, 12, 18, 19 y 20 de Ética Profesional.
    2023 TSPR 83
    Núm.AC-2023-0013
    PartesSantos Iglesias v. Lugo Oliveras
    PonenteResolución del Tribunal
    Fecha28 de junio de 2023
    MateriaResolución del Tribunal con Voto Particular de Conformidad y Votos Particulares Disidentes
    2023 TSPR 82
    Núm.CP-2018-0014
    PartesIn re: Carlos E. Rivera Justiniano
    PonentePer Curiam
    Fecha28 de junio de 2023
    MateriaConducta Profesional – Suspensión inmediata del ejercicio de la abogacía y la notaría por un término de tres meses por quebrantar los Cánones 18 y 19 del Código de Ética Profesional.
    2023 TSPR 81
    Núm.CC-2021-0418
    PartesFideicomiso de Conservación de Puerto Rico y Para la Naturaleza, Inc. y otros v. Oficina de Gerencia de Permisos del Departamento de Desarrollo Económico y Comercio de Puerto Rico y otros
    PonenteResolución del Tribunal
    Fecha27 de junio de 2023
    MateriaResolución del Tribunal con Voto Particular Disidente
    2023 TSPR 80
    Núm.AC-2020-0037
    PartesAcevedo Arocho y otros v. Departamento de Hacienda de Puerto Rico y otros
    PonenteHon. Colón Pérez
    Fecha26 de junio de 2023
    MateriaDerecho Laboral – Término prescriptivo para que los empleados o las empleadas gubernamentales presenten una reclamación salarial, y la inexistencia de plazo para su retroactividad.
    2023 TSPR 79
    Núm.EM-2023-0007
    PartesEx parte: Aprobación de Cambio de Estatus Inactivo de mayo 2023
    PonenteResolución del Tribunal
    Fecha23 de junio de 2023
    MateriaAprobación de Cambio de Estatus Inactivo de mayo de 2023
    2023 TSPR 78
    Núm.AC-2022-0059
    PartesVélez Colón y otros v. Colegio de Optómetras de Puerto Rico y otros
    PonenteHon. Martínez Torres
    Fecha23 de junio de 2023
    MateriaDerecho Constitucional – Inconstitucionalidad de la colegiación compulsoria del Colegio de Optómetras de Puerto Rico.
    2023 TSPR 77
    Núm.
    +
    TS-15,556
    Partes
    +
    In re: Bárbara Y. Villalona Viera
    Ponente
    +
    Resolución del Tribunal
    Fecha
    +
    20 de junio de 2023
    Materia
    +
    Reinstalación al ejercicio de la abogacía
    2023 TSPR 76
    Núm.EN-2023-0003
    PartesIn re: Comité Asesor Permanente de Reglamento Notarial
    Ponente Resolución del Tribunal
    Fecha9 de junio de 2023
    MateriaComité Asesor Permanente de Reglamento Notarial
    2023 TSPR 75
    Núm.AC-2022-0033 cons. con AC-2022-0034
    PartesMartínez Fernández y otros v. Oficina de Gerencia de Permisos y otro
    Ponente Per Curiam
    Fecha16 de junio de 2023
    MateriaDerecho Administrativo – Nulidad del Reglamento Conjunto de 2019 y Reglamento Conjunto de 2020, así como el efecto prospectivo de la determinación.
    2023 TSPR 74
    Núm.ER-2023-0001
    PartesIn re:
    +Aprobación de enmiendas al Reglamento del Tribunal Supremo
    PonenteResolución del Tribunal con Voto particular de conformidad y Voto particular
    Fecha14 de junio de 2023
    MateriaAprobación de enmiendas al Reglamento del Tribunal Supremo
    2023 TSPR 73
    Núm.TS-15,108
    Partes In re: Juan Carlos López Sepúlveda
    Ponente Resolución del Tribunal
    Fecha 7 de junio de 2023
    MateriaReadmisión al ejercicio de la abogacía
    +
    +
    + + + + +
    +
    + + + + +
    + + + + +

    Mayo

    +
    +
    + + + + +
    +
    + + + + +
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    2023 TSPR 72
    Núm.TS-17,061
    PartesIn re: Luis D. Méndez Cordero
    PonenteResolución del Tribunal
    Fecha30 de mayo de 2023
    Materia Reinstalación al ejercicio de la abogacía
    2023 TSPR 71
    Núm.EM-2023-0005
    PartesEx Parte: Aprobación de Cambio de Estatus Inactivo de abril de 2023
    PonenteResolución del Tribunal
    Fecha22 de mayo de 2023
    Materia Aprobación de Cambio de Estatus Inactivo de abril de 2023
    2023 TSPR 70
    Núm.ES-2023-0001
    PartesIntegración de Salas de Verano
    PonenteResolución del Tribunal
    Fecha19 de mayo de 2023
    Materia Integración de Salas de Verano
    2023 TSPR 69
    Núm.AB-2022-0244
    PartesIn re: José E. Arzola Méndez
    PonentePer Curiam
    Fecha19 de mayo de 2023
    Materia Conducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría por no mantener al día los datos personales en el Registro Único de Abogados y Abogadas, así como por incumplimiento con las órdenes del Tribunal Supremo.
    2023 TSPR 68
    Núm.TS-11,624
    PartesEx parte: José Carlos González Bonilla
    PonenteResolución del Tribunal
    Fecha19 de mayo de 2023
    Materia Reinstalación al ejercicio de la abogacía y la notaría
    2023 TSPR 67
    Núm.
    TS-7,445
    Partes
    In re: Carlos L. González Reyes
    Ponente
    Per Curiam
    Fecha
    9 de mayo de 2023
    Materia
    Conducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía por incumplimiento con las órdenes del Tribunal Supremo y no mantener actualizados sus datos en el Registro Único de Abogados y Abogadas.
    2023 TSPR 66
    Núm.
    CC-2022-0210
    Partes
    El Pueblo v. Vélez Torres
    Ponente
    Hon. Pabón Charneco
    Fecha
    8 de mayo de 2023
    Materia
    Derecho Penal – Facultad de un tribunal sentenciador para decretar la consecutividad de una pena estatal con un término de reclusión federal que aún no ha sido dictado.
    2023 TSPR 65
    Núm.CC-2022-0425
    PartesRivera Gómez y otros v. Arcos Dorados Puerto Rico, Inc. y otros
    PonenteHon. Feliberti Cintrón
    Fecha8 de mayo de 2023
    Materia Procedimiento Civil – Si procede denegar, como primera sanción, la utilización de un perito cuando el descubrimiento de prueba no ha concluido en un caso sobre daños y perjuicios.
    2023 TSPR 64
    Núm.EN-2023-0002
    PartesIn re: Designación de Miembro de la Comisión de Disciplina Judicial
    PonenteResolución del Tribunal
    Fecha5 de mayo de 2023
    Materia Designación de miembro de la Comisión de Disciplina Judicial
    2023 TSPR 63
    Núm.EN-2023-0001
    PartesIn re: Junta de Educación Jurídica Continua
    PonenteResolución del Tribunal
    Fecha5 de mayo de 2023
    Materia Designación de miembro de la Junta de Educación Jurídica Continua
    2023 TSPR 62
    Núm.AC-2021-0072
    PartesReyes Sorto y otros v. Estado Libre Asociado de Puerto Rico y otros
    PonenteSentencia con Opiniones de conformidad y Opinión disidente
    Fecha4 de mayo de 2023
    MateriaSentencia con Opiniones de conformidad y Opinión disidente
    2023 TSPR 61
    Núm.AB-2022-0208
    PartesIn re: Azahary de las Nieves Wilamo Guzmán
    PonentePer Curiam
    Fecha4 de mayo de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría por quebrantar el Canon 9 del Código de Ética Profesional.
    2023 TSPR 60
    Núm.TS-6,951
    PartesIn re: Jorge Meléndez Artau
    PonentePer Curiam
    Fecha3 de mayo de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía por incumplir con los requerimientos de la Oficina de Inspección de Notarías y las órdenes del Tribunal Supremo.
    2023 TSPR 59
    Núm.CC-2023-0049
    PartesCintrón Román v. Jiménez Echevarría y otros
    PonenteResolución del Tribunalcon Votos Particulares de Conformidad y Votos Particulares Disidentes
    Fecha2 de mayo de 2023
    MateriaResolución del Tribunalcon Votos Particulares de Conformidad y Votos Particulares Disidentes
    +
    +
    + + + + +
    +
    + + + + +
    + + + + +

    Abril

    +
    +
    + + + + +
    +
    + + + + +
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    2023 TSPR 58
    Núm.EM-2023-0004
    PartesEx parte: Aprobación de Cambio de Estatus Inactivo de marzo de 2023
    Ponente Resolución del Tribunal
    Fecha28 de abril de 2023
    MateriaAprobación de Cambio de Estatus Inactivo de marzo de 2023.
    2023 TSPR 57
    Núm.TS-5,739
    PartesIn re: Máximo Molina Fragosa
    PonenteResolución del Tribunal
    Fecha27 de abril de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía por craso incumplimiento con los requisitos del Programa de Educación Jurídica Continua.
    2023 TSPR 56
    Núm.TS-8,719
    PartesIn re: Osvaldo Ortiz Medina
    PonenteResolución del Tribunal
    Fecha27 de abril de 2023
    MateriaReinstalación al ejercicio de la abogacía.
    2023 TSPR 55
    Núm.TS-15,040
    PartesIn re: Luis Jesús Marín Rodríguez
    PonenteResolución del Tribunal
    Fecha27 de abril de 2023
    MateriaReactivación al ejercicio de la abogacía.
    2023 TSPR 54
    Núm.TS-7,654
    PartesIn re: Jesús M. Malavé León
    PonentePer Curiam
    Fecha27 de abril de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría por el reiterado incumplimiento con los requerimientos de la Oficina de Inspección de Notarías y las órdenes del Tribunal Supremo.
    2023 TSPR 53
    Núm.TS-13,415
    PartesIn re: Javier Abendaño Ezquerro
    PonenteResolución del Tribunal
    Fecha24 de abril de 2023
    MateriaReinstalación al ejercicio de la abogacía
    2023 TSPR 52
    Núm.TS-16,507
    PartesIn re: Michelle H. Fuster Santana
    PonenteResolución del Tribunal
    Fecha24 de abril de2023
    MateriaReinstalación al ejercicio de la abogacía
    2023 TSPR 51
    Núm.TS-14,201
    PartesIn re: Yuri J. Valenzuela Flores
    PonentePer Curiam
    Fecha18 de abril de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida de la práctica de la notaría por la reiterada indiferencia ante los requerimientos de la Oficina de Inspección de Notarías.
    2023 TSPR 50
    Núm.CC-2022-0300
    PartesPueblo v. Torres Medina
    PonenteHon. Estrella Martínez
    Fecha21 de abril de 2023
    MateriaProcedimiento Criminal – Momento en que comienza a transcurrir el término jurisdiccional de treinta (30) días que tiene una persona para acudir al Tribunal de Apelaciones cuando no se dictó sentencia y le fue concedida la libertad a prueba al amparo de una legislación penal especial.
    2023 TSPR 49
    Núm.TS-20,283
    PartesIn re: Iris M. González Ruiz
    PonentePer Curiam
    Fecha20 de abril de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría por craso incumplimiento con las órdenes del Tribunal.
    2023 TSPR 48
    Núm.CC-2022-0126
    PartesW.M.M. y otros v. Puerto Rico Christian School, Inc. y otros
    PonenteHon. Feliberti Cintrón
    Fecha17 de abril de 2023
    MateriaDerecho de Seguros – Interpretación y aplicabilidad de una cláusula de exclusión de actos criminales en una póliza de seguro de directores y oficiales.
    2023 TSPR 47
    Núm.CC-2023-0080
    PartesJusino González v. Norat Santiago
    PonenteHon. Kolthoff Caraballo
    Fecha13 de abril de 2023
    MateriaDerecho de Familia – Ante una solicitud de traslado de un menor, el tribunal debe contar con los elementos necesarios para llegar a una determinación que salvaguarde el mejor interés y bienestar del menor. Esto, a la luz de los criterios estatuidos en la Ley de la Guía Uniforme para Casos de Relocalización del Padre Custodio.
    2023 TSPR 46
    Núm.CC-2023-0056
    PartesTorres González v. Zaragoza Meléndez
    Ponente
    Hon. Feliberti Cintrón
    Fecha12 de abril de 2023
    MateriaDerecho de Familia y Procedimiento Civil – Si procede un descubrimiento de prueba con carácter liquidatorio y patrimonial en un caso de divorcio por ruptura irreparable de un matrimonio que no tiene hijos en común y otorgó capitulaciones con régimen económico de separación de bienes.
    2023 TSPR 45
    Núm.TS-10,002
    PartesIn re: Ismael E. Jusino Torres
    PonenteResolución del Tribunal
    Fecha10 de abril de 2023
    MateriaReinstalación al ejercicio de la abogacía
    2023 TSPR 44
    Núm.CC-2022-0379
    PartesArzuaga Monserrate y otro v. Empresas Ortiz Brunet y otros
    PonenteHon. Pabón Charneco
    Fecha10 de abril de 2023
    Materia Responsabilidad Civil Extracontractual – Efecto de la desestimación por inactividad de una acción de subrogación presentada por la Corporación del Fondo del Seguro del Estado al amparo de la Ley del Sistema de Compensaciones por Accidentes del Trabajo.
    2023 TSPR 43
    Núm.CC-2021-0681
    PartesOrtiz Zayas y otros v. Estado Libre Asociado de Puerto Rico
    PonenteHon. Colón Pérez
    Fecha5 de abril de 2023
    MateriaDerecho Real – Si procede la acción de expropiación forzosa a la inversa cuando cierta dependencia gubernamental se mantiene ocupando una propiedad, luego de vencido determinado contrato de arrendamiento, y tras un requerimiento formal y con premura dirigido a desocupar el inmueble en cuestión.
    2023 TSPR 42
    Núm.TS-12,654
    PartesIn re: Derrick J. Rodríguez Morales
    PonenteResolución del Tribunal
    Fecha 5 de abril de 2023
    MateriaReinstalación al ejercicio de la abogacía
    2023 TSPR 41
    Núm.CC-2022-0694
    PartesPellot Arce v. Infosys BPM Limited Corp.; Aseguradora A, B, C
    PonenteResolución de Sala de Despacho con Voto Particular Disidente
    Fecha4 de abril de 2023
    MateriaResolución de Sala de Despacho con Voto Particular Disidente
    2023 TSPR 40
    Núm.CC-2022-0494
    PartesMiranda Corrada v. Departamento de Desarrollo Económico y Comercio y otros
    PonenteHon. Martínez Torres
    Fecha3 de abril de 2023
    MateriaDerecho Administrativo – Los permisos concedidos al amparo de la Ley Núm. 161-2009 son una determinación administrativa final susceptible de revisión judicial.
    +
    +
    + + + + +
    +
    + + + + +
    + + + + +

    Marzo

    +
    +
    + + + + +
    +
    + + + + +
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    2023 TSPR 39
    Núm.CC-2022-0699
    PartesMiranda Santos v. Sistema de Retiro para Maestros
    PonenteResolución de Sala Especial de Despacho con Voto Particular Disidente
    Fecha24 de marzo de 2023
    MateriaResolución de Sala Especial de Despacho con Voto Particular Disidente
    2023 TSPR 38
    Núm.CC-2021-0480
    PartesVélez Arroyo v. HPM Foundation, Inc. y otro
    PonenteSentencia con Opinión de Conformidad en parte y Disidente en parte
    Fecha30 de marzo de 2023
    MateriaSentencia con Opinión de Conformidad en parte y Disidente en parte
    2023 TSPR 37
    Núm.TS-8,243
    PartesIn re: Magdalena Caratini Soto
    PonentePer Curiam
    Fecha
    27 de marzo de 2023
    Materia Regla 15 – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría como medida de protección social al amparo de la Regla 15 del Reglamento del Tribunal Supremo.
    2023 TSPR 36
    Núm.TS-21,132  Ref. CC-2022-0295
    PartesIn re: Richard A. García Pérez
    PonentePer Curiam
    Fecha
    23 de marzo de 2023
    Materia
    Conducta Profesional – Suspensión inmediata por un término de seis (6) meses del ejercicio de la abogacía y la notaría por quebrantar el Canon 9 del Código de Ética Profesional al utilizar en sus escritos apelativos un lenguaje indecoroso y ofensivo a la dignidad y respeto que debe permear hacia los tribunales.
    2023 TSPR 35
    Núm. CC-2020-0477
    Partes Pueblo v. Pérez Delgado
    PonenteHon. Rivera García
    Fecha
    23 de marzo de 2023
    MateriaDerecho Penal – Naturaleza del delito de Restricción de comunicaciones tipificado en el Art. 2 de la Ley Núm. 15-2011, frente al delito de Posesión e introducción de objetos a un establecimiento penal estatuido en el Art. 277 del Código Penal de Puerto Rico, enmarcado desde el principio de especialidad.
    2023 TSPR 34
    Núm. AB-2022-0172
    Partes In re: José A. Bauzá Tirado
    Ponente Per Curiam
    Fecha 23 de marzo de 2023
    Materia Conducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría por quebrantar el Canon 9 del Código de Ética Profesional.
    2023 TSPR 33
    Núm. TS-10,336
    Partes In re: Luis Aponte Morales
    Ponente Resolución del Tribunal
    Fecha 21 de marzo de 2023
    Materia Reinstalación al ejercicio de la abogacía
    2023 TSPR 32
    Núm. TS-19,203
    Partes In re: Jorge C. Venegas Martínez
    Ponente Resolución del Tribunal
    Fecha 21 de marzo de 2023
    Materia Reinstalación al ejercicio de la abogacía
    2023 TSPR 31
    Núm. CP-2018-0003
    Partes In re: Carlos E. Crespo Pendás
    Ponente Per Curiam
    Fecha 13 de marzo de 2023
    Materia Conducta Profesional – Extensión de la suspensión para que sea indefinida por infringir los Cánones 18, 19, 35 y 38 del Código de Ética Profesional
    2023 TSPR 30
    Núm.EM-2023-0003
    PartesEx parte: Aprobación de Cambio de Estatus Inactivo de febrero de 2023
    PonenteResolución del Tribunal
    Fecha
    16 de marzo de 2023
    Materia
    Aprobación de Cambio de Estatus Inactivo de febrero de 2023
    2023 TSPR 29
    Núm. TS-19,927
    PartesIn re: Omar A. González Soto
    Ponente Per Curiam
    Fecha16 de marzo de 2023
    Materia Conducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía y la notaría por no mantener al día los datos personales en el Registro Único de Abogados y Abogadas, así como el incumplimiento reiterado con los requerimientos de la Oficina de Inspección de Notarías y las órdenes del Tribunal Supremo.
    2023 TSPR 28
    Núm.CC-2021-0249
    PartesLa Comisión de los Puertos de Mayagüez v. González Freyre y otros
    PonenteHon. Kolthoff Caraballo
    Fecha15 de marzo de 2023
    MateriaProcedimiento Civil – Inaplicabilidad de la doctrina de cosa juzgada federal al amparo de los criterios esbozados en Taylor v. Sturgell, 553 U.S. 880 (2008), ante la ausencia de identidad de partes o privity en un procedimiento adversativo entre el Síndico de Quiebras y un acreedor.
    2023 TSPR 27
    Núm.CC-2022-0257
    PartesColón Vega v. Díaz Lebrón
    PonenteHon. Martínez Torres
    Fecha14 de marzo de 2023
    MateriaProcedimiento Civil – Procede convalidar una sentencia emitida por un tribunal del estado de la Florida mediante el procedimiento de exequátur, ya que ese foro tenía jurisdicción, observó el debido proceso de ley y  la sentencia no estuvo viciada por fraude.
    2023 TSPR 26
    Núm.CC-2021-0418
    PartesFideicomiso de Conservación de Puerto Rico y Para la Naturaleza, Inc. v. Oficina de Gerencia de Permisos del Departamento de Desarrollo Económico y Comercio de Puerto Rico y otros
    PonenteHon. Oronoz Rodríguez
    Fecha14 de marzo de 2023
    MateriaDerecho Administrativo y Procedimiento Civil – La Oficina de Gerencia de Permisos del Departamento de Desarrollo Económico no es parte indispensable en el procedimiento de impugnación de su faz del Reglamento Conjunto de 2020.
    2023 TSPR 25
    Núm.CC-2022-0146
    PartesAmerican Federation Musicians, Local 555 (Unión) v. Corporación Sinfónica de Puerto Rico (Patrono)
    PonenteSentencia con Opinión de Conformidad y Opinión Disidente
    Fecha8 de marzo de 2023
    MateriaSentencia con Opinión de Conformidad y Opinión Disidente
    2023 TSPR 24
    Núm. CC-2022-0172
    Partes Universal Insurance Company y otro v. Estado Libre Asociado de Puerto Rico y otros
    Ponente Hon. Rivera García
    Fecha 7 de marzo de 2023
    Materia Confiscaciones – Ausentes las circunstancias contempladas en la Ley Uniforme de Confiscaciones de 2011, según enmendada por la Ley Núm. 287-2018, la figura del impedimento colateral por sentencia no puede ser invocada en un procedimiento de impugnación de confiscación como fundamento para obtener un dictamen sumario contra el Estado.
    2023 TSPR 23
    Núm.CC-2021-0294
    PartesRamos Soto v. Departamento de Corrección y Rehabilitación
    PonenteResolución del Tribunal con Voto Particular Disidente
    Fecha6 de marzo de 2023
    MateriaResolución del Tribunal con Voto Particular Disidente
    2023 TSPR 22
    Núm.TS-17,928
    PartesIn re: Roberto Rodríguez Cintrón
    PonenteResolución del Tribunal
    Fecha1 de marzo de 2023
    MateriaReinstalación al ejercicio de la abogacía
    +
    +
    + + + + +
    +
    + + + + +
    + + + + +

    Febrero

    +
    +
    + + + + +
    +
    + + + + +
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    2023 TSPR 21
    Núm.TS-9,069
    PartesIn re: Ramón Colón Olivo
    PonenteResolución del Tribunal
    Fecha28 de febrero de 2023
    MateriaReinstalación al ejercicio de la abogacía
    2023 TSPR 20
    Núm.CP-2018-0007
    PartesIn re: Edwin H. Sepúlveda Valentín
    PonentePer Curiam
    Fecha28 de febrero de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía por infringir los Cánones 19, 23, 35 y 38 del Código de Ética Profesional.
    2023 TSPR 19
    Núm.TS-13,710
    PartesIn re: Harry Carrasquillo Ortiz
    PonenteResolución del Tribunal
    Fecha24 de febrero de 2023
    MateriaReinstalación al ejercicio de la abogacía
    2023TSPR18
    Núm.RG-2020-0006 cons. con RG-2020-0007 y RG-2020-0008
    PartesServicios Legales de Puerto Rico, Inc. y otro v. Registradora de la Propiedad
    PonenteHon. Kolthoff Caraballo
    Fecha
    +
    22 de febrero de 2023
    MateriaDerecho Registral Inmobiliario – No se requiere la presentación física ante el Registro de la Propiedad de una copia certificada original del documento objeto del recurso cuando este último se presentó de forma personal. Exención del pago de aranceles de presentación e inscripción al Registro de la Propiedad a clientes de Servicios Legales de Puerto Rico, Inc.
    2023TSPR17
    Núm.AC-2022-0070
    PartesAmadeo Ocasio y otros v. Pierluisi Urrutia y otros
    PonenteSentencia con Opiniones de Conformidad
    Fecha16 de febrero de 2023
    MateriaSentencia con Opiniones de Conformidad
    2023TSPR16
    Núm.AB-2022-0019
    PartesIn re: Walter Alomar Santiago
    PonentePer Curiam
    Fecha16 de febrero de 2023
    MateriaConducta Profesional – Suspensión inmediata de la práctica de la notaría por el término de seis meses por infringir los Arts. 2, 12 y 39 de la Ley Notarial; las Reglas 12 y 49 del Reglamento Notarial y los Cánones 18, 35 y 38 del Código de Ética Profesional.
    2023TSPR15
    Núm.CC-2021-0883
    PartesSemidey Ramos y otros v. Farmacia Belmonte y otros
    PonenteSentencia con Opinión Disidente
    Fecha15 de febrero de 2023
    MateriaSentencia con Opinión Disidente
    2023TSPR14
    Núm.CC-2022-0252
    PartesSilva Soto v. Suiza Dairy Corporation
    PonenteHon. Martínez Torres
    Fecha13 de febrero de 2023
    MateriaDerecho Laboral – Conforme a la doctrina de fuente colateral, los beneficios por discapacidad recibidos del Programa de Seguro por Incapacidad del Seguro Social no deben ser deducidos de la paga atrasada por concepto de despido injustificado.
    2023TSPR13
    Núm.CP-2018-0015
    PartesIn re: Luis Aponte Morales
    PonentePer Curiam
    Fecha30 de enero de 2023
    MateriaConducta Profesional – Suspensión del ejercicio de la abogacía por el término de treinta (30) días por violación a los Cánones 9, 12, 17, 18, 20, 35 y 38 del Código de Ética Profesional.
    2023TSPR12
    Núm. EM-2023-0002
    Partes Ex parte: Aprobación de Cambio de Estatus Inactivo de enero de 2023
    Ponente Resolución del Tribunal
    Fecha 10 de febrero de 2023
    Materia Aprobación de Cambio de Estatus Inactivo de enero de 2023
    2023TSPR11
    Núm. TS-9,614
    Partes In re: Elaine Santos Negrón
    Ponente Per Curiam
    Fecha 8 de febrero de 2023
    Materia Conducta Profesional – Suspensión inmediata e indefinida del ejercicio de la notaría por múltiples infracciones a la Ley Notarial de Puerto Rico y por quebrantar el principio de la fe pública notarial.
    2023TSPR10
    Núm. TS-12,153
    Partes In re: Jorge L. Armenteros Chervoni
    Ponente Resolución del Tribunal
    Fecha 1 de febrero de 2023
    Materia Conducta Profesional – Suspensión inmediata y provisional del ejercicio de la abogacía por ser hallado culpable de un delito que implica depravación moral.
    +
    +
    + + + + +
    +
    + + + + +
    + + + + +

    Enero

    +
    +
    + + + + +
    +
    + + + + +
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    2023TSPR9
    Núm. EM-2023-0001
    Partes Ex Parte: Aprobación de Cambio de Estatus Inactivo de octubre de 2020 a diciembre de 2022
    Ponente Resolución del Tribunal
    Fecha 31 de enero de 2023
    Materia Aprobación de Cambio de Estatus Inactivo de octubre de 2020 a diciembre de 2022
    2023 TSPR 8
    Núm. CC-2021-0806
    Partes MCS Advantage, Inc. v. Fossas Blanco y otros
    PonenteHon. Colón Pérez
    Fecha25 de enero de 2023
    MateriaDerecho Administrativo – Jurisdicción primaria exclusiva de la Oficina del Comisionado de Seguros para atender una controversia relacionada con el rembolso de determinadas reclamaciones pagadas en exceso.
    2023 TSPR 7
    Núm. CC-2022-0452
    Partes Rial v. Comisionado de Seguros de Puerto Rico
    PonenteSentencia con Opinión de Conformidad
    Fecha25 de enero de 2023
    MateriaSentencia con Opinión de Conformidad
    2023 TSPR 6
    Núm. CC-2022-0305
    Partes Hernández Feliciano v. Municipio de Quebradillas
    Ponente Hon. Feliberti Cintrón
    Fecha 20 de enero de 2023
    Materia Derecho Laboral – La cuantía por concepto de salarios y haberes dejados de percibir por una empleada municipal durante el periodo de su destitución no está sujeta al límite de responsabilidad que establecía la Ley de Municipios Autónomos de Puerto Rico para las reclamaciones de daños y perjuicios.
    2023 TSPR 5
    Núm. AC-2022-0023
    Partes Eagle Security Police, Inc. v. Efrón Dorado, S.E. y otros
    PonenteHon. Feliberti Cintrón
    Fecha20 de enero de 2023
    MateriaDerecho Corporativo – El cambio de nombre de una entidad corporativa no afecta sus derechos o intereses propietarios para reclamar cualquier acreencia.
    2023 TSPR 4
    Núm. TS-20,549
    Partes Ex parte: Jessenia A. Seda Cabán
    PonenteResolución del Tribunal
    Fecha18 de enero de 2023
    MateriaReadmisión al ejercicio de la abogacía
    2023 TSPR 3
    Núm.AB-2022-0059
    PartesIn re: Orlando Torres Trinidad
    PonentePer Curiam
    Fecha17 de enero de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía por infringir el Canon 9 del Código de Ética Profesional.
    2023 TSPR 2
    Núm.TS-9,069
    PartesIn re: Ramón Colón Olivo
    PonentePer Curiam
    Fecha11 de enero de 2023
    MateriaConducta Profesional – Suspensión inmediata e indefinida del ejercicio de la abogacía por incumplir con los requerimientos de la Oficina de Inspección de Notarías y con las órdenes del Tribunal Supremo.
    2023 TSPR 1
    Núm.TS-15,968
    PartesIn re: Roxanna Soto Aguilú
    PonenteResolución del Tribunal
    Fecha11 de enero de 2023
    MateriaReinstalación al ejercicio de la notaría
    +
    +
    + + + + +
    + + +
    +
    +
    + + +
    + + + +
    + + +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ri_example.compare.json b/tests/examples/opinions/united_states/ri_example.compare.json new file mode 100644 index 000000000..4a75aa0bb --- /dev/null +++ b/tests/examples/opinions/united_states/ri_example.compare.json @@ -0,0 +1,57 @@ +[ + { + "case_dates": "2024-07-01", + "case_names": "State v. Nicholas Finnigan", + "download_urls": "https://www.courts.ri.gov/Opinions/Supreme-22-136.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2022-0136-C.A.", + "summaries": "The defendant, Nicholas Finnigan, appealed from a Superior Court judgment of conviction following a jury-waived trial at which he was found guilty of one count of second-degree child molestation and received a sentence of ten years, with fifty-four months to serve and the remainder suspended, and ten years of probation. On appeal, the defendant argued that the trial justice overlooked or misconceived material testimony regarding the actual date of the alleged incident. The Supreme Court concluded that the trial justice did not overlook or misconceive evidence, but rather, acknowledged the inconsistent testimony in the record and determined that it was inconsequential in this particular case. Accordingly, the Supreme Court affirmed the judgment of the Superior Court.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-01", + "case_names": "State v. Lydia Alicea", + "download_urls": "https://www.courts.ri.gov/Opinions/Supreme-23-43.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0043-C.A.", + "summaries": "The defendant, Lydia Alicea (defendant or Alicea), pled nolo contendere to the charges brought against her by way of information pursuant to violating G.L. 1956 \u00a7 11-41-4. Upon the defendant's plea, the Superior Court imposed a two-year deferred sentence and ordered $1,800 in restitution. The defendant entered into a deferred-sentence agreement with the Office of the Attorney General, thereby agreeing to the terms of her sentence set forth by the Superior Court. The defendant failed to satisfy her restitution obligation of $1,800 by the expiration of her deferred-sentence agreement. Accordingly, a magistrate of the Superior Court declared defendant a violator of her deferred-sentence agreement, imposed a sentence of three years of probation, and ordered that defendant pay $36.15 in monthly installments toward the outstanding restitution amount. The defendant filed a timely notice of appeal of the magistrate's decision to a justice of the Superior Court. On November 18, 2022, the trial justice issued a written decision denying the appeal; the stay was vacated, and restitution payments were ordered to resume on December 1, 2022. Thereafter, this timely appeal ensued. On appeal, defendant argued that the trial justice erred in affirming the magistrate's decision\u2014declaring defendant a violator of the deferred-sentence agreement\u2014because the Superior Court did not conduct an adequate hearing concerning whether she had the ability to pay the restitution in accordance with G.L. 1956 \u00a7 12-19-19. The defendant also argued that the trial justice improperly applied State v. Regan, 273 A.3d 116 (R.I. 2022). After examining the record and the parties' arguments, the Supreme Court concluded that defendant was not provided a full evidentiary hearing to determine her ability to pay the court-ordered restitution and vacated the judgment of the Superior Court declaring Alicea to be a violator of her deferred-sentence agreement.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-06-28", + "case_names": "Newport School Committee v. Rhode Island Department of Education", + "download_urls": "https://www.courts.ri.gov/Opinions/Supreme-21-37.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2021-0037-M.P. and 2021-0038-M.P.", + "summaries": "In these consolidated administrative appeals, the defendant, the Department of Children, Youth, and Families (DCYF), filed petitions for writ of certiorari seeking review of a Superior Court judgment in favor of the plaintiffs, Newport School Committee (Newport) and Cumberland School Committee (Cumberland). The Superior Court reviewed two decisions of the Council on Elementary and Secondary Education (Council) that required each municipality to pay the per-pupil special-education rate to DCYF for the cost of educational services provided to students who were placed by DCYF in residential treatment programs but who were not receiving special-education services. The Council upheld a decision of the Commissioner of Elementary and Secondary Education that determined that the municipalities were required to pay the per-pupil special-education rate pursuant to the unambiguous language of G.L. 1956 \u00a7\u00a7 16-64-1.1 and 16-64-1.2. The Superior Court disagreed, granting Newport and Cumberland's appeal and finding that the clear and unambiguous language of \u00a7 16-64-1.1(c) required the designated city or town to pay no more than \"its share of the cost of educational services to DCYF\" which in these cases, was the per-pupil general-education rate. Reviewing the statute de novo, the Supreme Court determined that \u00a7 16-64-1.1 and \u00a7 16-64-1.2 are devoid of language requiring municipalities to reimburse DCYF at the per-pupil special-education rate when the child in question is not actually receiving special-education services. Instead, the statutes use the term \"per-pupil special-education cost\" which, by its plain meaning, refers to the amount given in exchange for services rendered. Therefore, because there were no special-education services rendered, the municipalities were not required to reimburse at the special-education rate. The Supreme Court reasoned, however, that supplemental briefing was necessary to determine what reimbursements, if any, DCYF should receive for the educational cost of non-special-education students placed in residential treatment programs that include the delivery of educational services. Therefore, the Supreme Court directed the parties to file supplemental briefs to resolve this issue.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-06-28", + "case_names": "John Armour, Individually and as Personal Representative of the Estate of Judith Armour v. David Bader, M.D.", + "download_urls": "https://www.courts.ri.gov/Opinions/Supreme-23-5.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0005-Appeal.", + "summaries": "The plaintiff, John Armour, individually and as personal representative of the Estate of Judith Armour, appealed from the denial of his motion for a new trial following a verdict for the defendants David Bader, M.D., Neil Brandon, M.D., and South County Hospital Healthcare System d.b.a. South County Cardiology in a medical negligence case. The plaintiff challenged the trial justice's refusal to give a jury instruction pursuant to the instruction affirmed by this Court in Oliveira v. Jacobson, 846 A.2d 822 (R.I. 2004). The plaintiff also claimed that the trial justice erred in permitting the defendants' standard-of-care expert to utilize a referring doctor's records as a basis for his opinions and in limiting cross-examination of that expert regarding a particular study. The Supreme Court held that the trial justice erred in denying the plaintiff's motion for a new trial because (1) the jury should have been instructed that it would be improper to consider the nonparty referring physician's conduct in assessing the defendants' negligence in this case; (2) allowing the defendants' standard-of-care expert to rely on the specific content of the referring physician's records, a primary-care provider, to support the defendant-cardiologists' actions on the date of the decedent's stress test, when they were admittedly not available to the defendants, was an abuse of discretion; and (3) it was an error to preclude the plaintiff's attorney from referencing a particular study by name on cross-examination of the defendants' expert because, although outside the scope of direct examination, it would have tended to contradict the expert's testimony that the decedent was stable on the date of her stress echocardiogram. Accordingly, the Court vacated the judgment of the Superior Court and remanded the case for a new trial.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-06-27", + "case_names": "Marcia Sallum Glassie v. Paul Doucette, in his capacity as of the Estate of Donelson C. Glassie", + "download_urls": "https://www.courts.ri.gov/Opinions/Supreme-23-163.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023-0163-Appeal.", + "summaries": "The plaintiff, Marcia Sallum Glassie, appealed from a Superior Court judgment in favor of the defendant, Paul Doucette, in his capacity as Executor of the Estate of Donelson C. Glassie. The Superior Court affirmed the Newport Probate Court's denial of the plaintiff's 2019 petition for leave to file a claim out of time against the estate. The statute governing such claims is G.L. 1956 \u00a7 33-11-5, which permits claims out of time against an estate when the claimant failed to make a timely claim by reason of excusable neglect, among other grounds. Relevant to the appeal, the trial justice found that the plaintiff had notice of her claim in 2012 and that it was not excusable neglect for her to wait seven years before seeking to file that claim. On appeal, the plaintiff argued that the trial justice incorrectly found that her claim accrued in 2012; she also contended that, even if her claim accrued in 2012, it was subject to the general ten-year statute of limitations and not \u00a7 33-11-5. The Supreme Court not only held that the plaintiff had notice of her claim in 2012 and that \u00a7 33-11-5 applied to her claim, but also declined to disturb the factual findings of the trial justice concerning the issue of excusable neglect. Accordingly, the Court affirmed the judgment of the Superior Court.", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ri_example.json b/tests/examples/opinions/united_states/ri_example.json new file mode 100644 index 000000000..65bc123fb --- /dev/null +++ b/tests/examples/opinions/united_states/ri_example.json @@ -0,0 +1,632 @@ +[ + { + "SchemaVersion": "15.0.0.0", + "LibraryVersion": "16.0.10388.20004", + "ErrorInfo": null, + "TraceCorrelationId": "022138a1-8af0-a0d3-9c5d-39c5e35a2cd0" + }, + 598, + { + "IsNull": false + }, + 603, + { + "IsNull": false + }, + 606, + { + "IsNull": false + }, + 615, + { + "IsNull": false + }, + 620, + { + "IsNull": false + }, + 627, + { + "IsNull": false + }, + 647, + { + "IsNull": false + }, + 652, + { + "0e5a1158-d281-44df-aa6c-2a734804a382Default": { + "_ObjectType_": "Microsoft.SharePoint.Client.Search.Query.ResultTableCollection", + "ElapsedTime": 44, + "Properties": { + "RowLimit": 5, + "SourceId": "/Guid(8413cd39-2156-4e00-b54d-11efd9abdb89)/", + "CorrelationId": "/Guid(022138a1-8af0-a0d3-9c5d-39c5e35a2cd0)/", + "WasGroupRestricted": false, + "IsPartial": false, + "HasParseException": false, + "WordBreakerLanguage": "en", + "IsPartialUpnDocIdMapping": false, + "EnableInterleaving": true, + "piPageImpression": "301528_-1_1033", + "IsMissingUnifiedGroups": false, + "Constellation": "029608", + "SerializedQuery": "" + }, + "QueryErrors": null, + "QueryId": "4e36a682-d246-4c55-be14-576411bf0525", + "SpellingSuggestion": "", + "TriggeredRules": [], + "ResultTables": [ + { + "_ObjectType_": "Microsoft.SharePoint.Client.Search.Query.ResultTable", + "GroupTemplateId": null, + "ItemTemplateId": null, + "Properties": { + "GenerationId": 9223372036854775806, + "indexSystem": "", + "ExecutionTimeMs": 31, + "QueryModification": "(ContentType:\"RIJOpinion\" OR ContentType:\"RIJAdministrativeOrder\" OR ContentType:\"RIJExecutiveOrder\" OR ContentType:\"RIJDecision\" OR ContentType:\"RIJMicellaneousOrder\" OR ContentType:\"RIJPublishedOrder\") -ContentClass=urn:content-class:SPSPeople", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Group_Default.js", + "StartRecord": 0, + "IsLastBlockInSubstrate": true, + "IsFirstBlockInSubstrate": false, + "IsFirstPinnedResultBlock": false, + "IsLastPinnedResultBlock": false, + "IsFirstRankedResultBlock": true, + "IsLastRankedResultBlock": true + }, + "QueryId": "4e36a682-d246-4c55-be14-576411bf0525", + "QueryRuleId": "00000000-0000-0000-0000-000000000000", + "ResultRows": [ + { + "Rank": 0, + "DocId": 287, + "Path": "https://www.courts.ri.gov/Opinions/Supreme-23-43.pdf", + "RIJDateOWSDATE": "7/1/2024 4:00:00 AM;2024-07-01T04:00:00Z", + "RIJCaseSummaryOWSMTXT": "The defendant, Lydia Alicea (defendant or Alicea), pled nolo contendere to the charges brought against her by way of information pursuant to violating G.L. 1956 \u00a7 11-41-4. Upon the defendant\u2019s plea, the Superior Court imposed a two-year deferred sentence and ordered $1,800 in restitution. The defendant entered into a deferred-sentence agreement with the Office of the Attorney General, thereby agreeing to the terms of her sentence set forth by the Superior Court. \nThe defendant failed to satisfy her restitution obligation of $1,800 by the expiration of her deferred-sentence agreement. Accordingly, a magistrate of the Superior Court declared defendant a violator of her deferred-sentence agreement, imposed a sentence of three years of probation, and ordered that defendant pay $36.15 in monthly installments toward the outstanding restitution amount. The defendant filed a timely notice of appeal of the magistrate\u2019s decision to a justice of the Superior Court. On November 18, 2022, the trial justice issued a written decision denying the appeal; the stay was vacated, and restitution payments were ordered to resume on December 1, 2022. Thereafter, this timely appeal ensued. \nOn appeal, defendant argued that the trial justice erred in affirming the magistrate\u2019s decision\u2014declaring defendant a violator of the deferred-sentence agreement\u2014because the Superior Court did not conduct an adequate hearing concerning whether she had the ability to pay the restitution in accordance with G.L. 1956 \u00a7 12-19-19. The defendant also argued that the trial justice improperly applied State v. Regan, 273 A.3d 116 (R.I. 2022). After examining the record and the parties\u2019 arguments, the Supreme Court concluded that defendant was not provided a full evidentiary hearing to determine her ability to pay the court-ordered restitution and vacated the judgment of the Superior Court declaring Alicea to be a violator of her deferred-sentence agreement.", + "OriginalPath": "https://www.courts.ri.gov/Opinions/Supreme-23-43.pdf", + "RIJLongTitleOWSMTXT": "State v. Lydia Alicea", + "RIJLongNumberOWSMTXT": "2023-0043-C.A.", + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "ResultTypeId": 0, + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "Rank": 0, + "DocId": 289, + "Path": "https://www.courts.ri.gov/Opinions/Supreme-22-136.pdf", + "RIJDateOWSDATE": "7/1/2024 4:00:00 AM;2024-07-01T04:00:00Z", + "RIJCaseSummaryOWSMTXT": "The defendant, Nicholas Finnigan, appealed from a Superior Court judgment of conviction following a jury-waived trial at which he was found guilty of one count of second-degree child molestation and received a sentence of ten years, with fifty-four months to serve and the remainder suspended, and ten years of probation. On appeal, the defendant argued that the trial justice overlooked or misconceived material testimony regarding the actual date of the alleged incident. The Supreme Court concluded that the trial justice did not overlook or misconceive evidence, but rather, acknowledged the inconsistent testimony in the record and determined that it was inconsequential in this particular case. Accordingly, the Supreme Court affirmed the judgment of the Superior Court.", + "OriginalPath": "https://www.courts.ri.gov/Opinions/Supreme-22-136.pdf", + "RIJLongTitleOWSMTXT": "State v. Nicholas Finnigan", + "RIJLongNumberOWSMTXT": "2022-0136-C.A.", + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "ResultTypeId": 0, + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "Rank": 0, + "DocId": 531, + "Path": "https://www.courts.ri.gov/Opinions/Supreme-23-5.pdf", + "RIJDateOWSDATE": "6/28/2024 4:00:00 AM;2024-06-28T04:00:00Z", + "RIJCaseSummaryOWSMTXT": "The plaintiff, John Armour, individually and as personal representative of the Estate of Judith Armour, appealed from the denial of his motion for a new trial following a verdict for the defendants David Bader, M.D., Neil Brandon, M.D., and South County Hospital Healthcare System d.b.a. South County Cardiology in a medical negligence case. The plaintiff challenged the trial justice\u2019s refusal to give a jury instruction pursuant to the instruction affirmed by this Court in Oliveira v. Jacobson, 846 A.2d 822 (R.I. 2004). The plaintiff also claimed that the trial justice erred in permitting the defendants\u2019 standard-of-care expert to utilize a referring doctor\u2019s records as a basis for his opinions and in limiting cross-examination of that expert regarding a particular study. \nThe Supreme Court held that the trial justice erred in denying the plaintiff\u2019s motion for a new trial because (1) the jury should have been instructed that it would be improper to consider the nonparty referring physician\u2019s conduct in assessing the defendants\u2019 negligence in this case; (2) allowing the defendants\u2019 standard-of-care expert to rely on the specific content of the referring physician\u2019s records, a primary-care provider, to support the defendant-cardiologists\u2019 actions on the date of the decedent\u2019s stress test, when they were admittedly not available to the defendants, was an abuse of discretion; and (3) it was an error to preclude the plaintiff\u2019s attorney from referencing a particular study by name on cross-examination of the defendants\u2019 expert because, although outside the scope of direct examination, it would have tended to contradict the expert\u2019s testimony that the decedent was stable on the date of her stress echocardiogram. Accordingly, the Court vacated the judgment of the Superior Court and remanded the case for a new trial. ", + "OriginalPath": "https://www.courts.ri.gov/Opinions/Supreme-23-5.pdf", + "RIJLongTitleOWSMTXT": "John Armour, Individually and as Personal Representative of the Estate of Judith Armour v. David Bader, M.D., et al.", + "RIJLongNumberOWSMTXT": "2023-0005-Appeal.", + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "ResultTypeId": 0, + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "Rank": 0, + "DocId": 532, + "Path": "https://www.courts.ri.gov/Opinions/Supreme-21-37.pdf", + "RIJDateOWSDATE": "6/28/2024 4:00:00 AM;2024-06-28T04:00:00Z", + "RIJCaseSummaryOWSMTXT": "In these consolidated administrative appeals, the defendant, the Department of Children, Youth, and Families (DCYF), filed petitions for writ of certiorari seeking review of a Superior Court judgment in favor of the plaintiffs, Newport School Committee (Newport) and Cumberland School Committee (Cumberland). The Superior Court reviewed two decisions of the Council on Elementary and Secondary Education (Council) that required each municipality to pay the per-pupil special-education rate to DCYF for the cost of educational services provided to students who were placed by DCYF in residential treatment programs but who were not receiving special-education services. The Council upheld a decision of the Commissioner of Elementary and Secondary Education that determined that the municipalities were required to pay the per-pupil special-education rate pursuant to the unambiguous language of G.L. 1956 \u00a7\u00a7 16-64-1.1 and 16-64-1.2. The Superior Court disagreed, granting Newport and Cumberland\u2019s appeal and finding that the clear and unambiguous language of \u00a7 16-64-1.1(c) required the designated city or town to pay no more than \u201cits share of the cost of educational services to DCYF\u201d which in these cases, was the per-pupil general-education rate. \n Reviewing the statute de novo, the Supreme Court determined that \u00a7 16-64-1.1 and \u00a7 16-64-1.2 are devoid of language requiring municipalities to reimburse DCYF at the per-pupil special-education rate when the child in question is not actually receiving special-education services. Instead, the statutes use the term \u201cper-pupil special-education cost\u201d which, by its plain meaning, refers to the amount given in exchange for services rendered. Therefore, because there were no special-education services rendered, the municipalities were not required to reimburse at the special-education rate. The Supreme Court reasoned, however, that supplemental briefing was necessary to determine what reimbursements, if any, DCYF should receive for the educational cost of non-special-education students placed in residential treatment programs that include the delivery of educational services. Therefore, the Supreme Court directed the parties to file supplemental briefs to resolve this issue. ", + "OriginalPath": "https://www.courts.ri.gov/Opinions/Supreme-21-37.pdf", + "RIJLongTitleOWSMTXT": "Newport School Committee v. Rhode Island Department of Education, et al.", + "RIJLongNumberOWSMTXT": "2021-0037-M.P. and 2021-0038-M.P.", + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "ResultTypeId": 0, + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "Rank": 0, + "DocId": 526, + "Path": "https://www.courts.ri.gov/Opinions/Supreme-23-163.pdf", + "RIJDateOWSDATE": "6/27/2024 4:00:00 AM;2024-06-27T04:00:00Z", + "RIJCaseSummaryOWSMTXT": "The plaintiff, Marcia Sallum Glassie, appealed from a Superior Court judgment in favor of the defendant, Paul Doucette, in his capacity as Executor of the Estate of Donelson C. Glassie. The Superior Court affirmed the Newport Probate Court\u2019s denial of the plaintiff\u2019s 2019 petition for leave to file a claim out of time against the estate. The statute governing such claims is G.L. 1956 \u00a7 33-11-5, which permits claims out of time against an estate when the claimant failed to make a timely claim by reason of excusable neglect, among other grounds. Relevant to the appeal, the trial justice found that the plaintiff had notice of her claim in 2012 and that it was not excusable neglect for her to wait seven years before seeking to file that claim.\n On appeal, the plaintiff argued that the trial justice incorrectly found that her claim accrued in 2012; she also contended that, even if her claim accrued in 2012, it was subject to the general ten-year statute of limitations and not \u00a7 33-11-5. The Supreme Court not only held that the plaintiff had notice of her claim in 2012 and that \u00a7 33-11-5 applied to her claim, but also declined to disturb the factual findings of the trial justice concerning the issue of excusable neglect. Accordingly, the Court affirmed the judgment of the Superior Court.", + "OriginalPath": "https://www.courts.ri.gov/Opinions/Supreme-23-163.pdf", + "RIJLongTitleOWSMTXT": "Marcia Sallum Glassie v. Paul Doucette, in his capacity as Executor of the Estate of Donelson C. Glassie", + "RIJLongNumberOWSMTXT": "2023-0163-Appeal.", + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "ResultTypeId": 0, + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + } + ], + "ResultTitle": null, + "ResultTitleUrl": null, + "RowCount": 5, + "TableType": "RelevantResults", + "TotalRows": 3604, + "TotalRowsIncludingDuplicates": 3604 + }, + { + "_ObjectType_": "Microsoft.SharePoint.Client.Search.Query.ResultTable", + "GroupTemplateId": null, + "ItemTemplateId": null, + "Properties": { + "ExecutionTimeMs": 31, + "QueryModification": "(ContentType:\"RIJOpinion\" OR ContentType:\"RIJAdministrativeOrder\" OR ContentType:\"RIJExecutiveOrder\" OR ContentType:\"RIJDecision\" OR ContentType:\"RIJMicellaneousOrder\" OR ContentType:\"RIJPublishedOrder\") -ContentClass=urn:content-class:SPSPeople", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Group_Default.js", + "StartRecord": 0, + "IsLastBlockInSubstrate": false, + "IsFirstBlockInSubstrate": false, + "IsFirstPinnedResultBlock": false, + "IsLastPinnedResultBlock": false, + "IsFirstRankedResultBlock": false, + "IsLastRankedResultBlock": false + }, + "QueryId": "4e36a682-d246-4c55-be14-576411bf0525", + "QueryRuleId": "00000000-0000-0000-0000-000000000000", + "ResultRows": [ + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "string;#", + "RefinementValue": "string;#", + "RefinementToken": "\"\u01c2\u01c2737472696e673b23\"", + "RefinementCount": 5, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2024.00000000000", + "RefinementValue": "float;#2024.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323032342e3030303030303030303030\"", + "RefinementCount": 58, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2023.00000000000", + "RefinementValue": "float;#2023.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323032332e3030303030303030303030\"", + "RefinementCount": 91, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2022.00000000000", + "RefinementValue": "float;#2022.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323032322e3030303030303030303030\"", + "RefinementCount": 81, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2021.00000000000", + "RefinementValue": "float;#2021.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323032312e3030303030303030303030\"", + "RefinementCount": 100, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2020.00000000000", + "RefinementValue": "float;#2020.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323032302e3030303030303030303030\"", + "RefinementCount": 72, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2019.00000000000", + "RefinementValue": "float;#2019.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323031392e3030303030303030303030\"", + "RefinementCount": 125, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2018.00000000000", + "RefinementValue": "float;#2018.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323031382e3030303030303030303030\"", + "RefinementCount": 114, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2017.00000000000", + "RefinementValue": "float;#2017.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323031372e3030303030303030303030\"", + "RefinementCount": 118, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2016.00000000000", + "RefinementValue": "float;#2016.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323031362e3030303030303030303030\"", + "RefinementCount": 112, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2015.00000000000", + "RefinementValue": "float;#2015.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323031352e3030303030303030303030\"", + "RefinementCount": 109, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2014.00000000000", + "RefinementValue": "float;#2014.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323031342e3030303030303030303030\"", + "RefinementCount": 158, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2013.00000000000", + "RefinementValue": "float;#2013.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323031332e3030303030303030303030\"", + "RefinementCount": 163, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2012.00000000000", + "RefinementValue": "float;#2012.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323031322e3030303030303030303030\"", + "RefinementCount": 161, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJYear", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJYear", + "Score": 1.53117907047272, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 1.53117908157014, + "Sum": 0, + "RefinementName": "float;#2011.00000000000", + "RefinementValue": "float;#2011.00000000000", + "RefinementToken": "\"\u01c2\u01c2666c6f61743b23323031312e3030303030303030303030\"", + "RefinementCount": 150, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "ContentType", + "DisplayName": "", + "Type": "String", + "Modifier": "ContentType", + "Score": 0.479819685220718, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 0.479819692142398, + "Sum": 0, + "RefinementName": "RIJOpinion", + "RefinementValue": "RIJOpinion", + "RefinementToken": "\"\u01c2\u01c252494a4f70696e696f6e\"", + "RefinementCount": 2935, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "ContentType", + "DisplayName": "", + "Type": "String", + "Modifier": "ContentType", + "Score": 0.479819685220718, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 0.479819692142398, + "Sum": 0, + "RefinementName": "RIJPublishedOrder", + "RefinementValue": "RIJPublishedOrder", + "RefinementToken": "\"\u01c2\u01c252494a5075626c69736865644f72646572\"", + "RefinementCount": 669, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + }, + { + "RefinerName": "RIJCourt", + "DisplayName": "", + "Type": "String", + "Modifier": "RIJCourt", + "Score": 0, + "UniqueCount": 0, + "HitCount": 3604, + "NonZeroCount": 3604, + "Ratio": 1, + "Min": 0, + "Max": 0, + "Mean": 0, + "Entropy": 0, + "Sum": 0, + "RefinementName": "Supreme", + "RefinementValue": "Supreme", + "RefinementToken": "\"\u01c2\u01c253757072656d65\"", + "RefinementCount": 3604, + "PartitionId": "/Guid(0c37852b-34d0-418e-91c6-2ac25af4be5b)/", + "UrlZone": 0, + "Culture": "en-US", + "RenderTemplateId": "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js" + } + ], + "ResultTitle": null, + "ResultTitleUrl": null, + "RowCount": 18, + "TableType": "RefinementResults", + "TotalRows": 3604, + "TotalRowsIncludingDuplicates": 0 + } + ] + } + }, + 648, + { + "HasException": false, + "ErrorInfo": null + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ri_p_example.compare.json b/tests/examples/opinions/united_states/ri_p_example.compare.json deleted file mode 100644 index dd138e6ba..000000000 --- a/tests/examples/opinions/united_states/ri_p_example.compare.json +++ /dev/null @@ -1,332 +0,0 @@ -[ - { - "case_dates": "2022-05-02", - "case_names": "State v. Geoffrey A. Regan", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/21-47.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21-47", - "summaries": "The defendant appealed from an order of the Superior Court declaring him a probation violator. The defendant asserted that the trial justice erred in finding him in violation of his probation for not satisfying his restitution payments by the time his sentence was to expire and erred in extending his sentence by delaying imposition of the sentence for the violation in order to monitor his payment progress.

    The Supreme Court concluded that the trial justice's finding that the defendant was a probation violator for failure to pay restitution in full, without an assessment of the defendant's ability to pay or whether the defendant's failure to pay the full amount of restitution was willful, deliberate, or in defiance of his obligations, was arbitrary and capricious. The Supreme Court acknowledged that a restitution payment obligation, such as the defendant's obligation, need not be linked to the duration of a sentence and, rather, becomes a civil judgment after expiration of a sentence. Thus, the Supreme Court concluded that the Superior Court was without authority to extend the defendant's sentence in order to oversee his payment progress and that the defendant only remained civilly liable to pay restitution. Accordingly, the Supreme Court vacated the order of the Superior Court.
    ", - "case_name_shorts": "" - }, - { - "case_dates": "2022-04-27", - "case_names": "State v. Trearra Hudgen", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/19-281.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-281", - "summaries": "The defendant, Tre'arra Hudgen, appealed from a Superior Court judgment of conviction for first-degree murder, discharge of a firearm when committing a crime of violence that caused death, conspiracy to assault with a firearm, felony assault with a firearm, first-degree robbery, and carrying a revolver without a license or permit. On appeal, the defendant alleged that the trial justice erred in (1) denying her motions to suppress the evidence found at her apartment, (2) denying her motion to suppress the evidence found in her vehicle, and (3) violating her right to confront a witness about promises, rewards, and inducements.

    The Supreme Court held that the defendant waived her claim that the search warrant for her apartment lacked particularity, because she did not raise it before the trial justice nor did it fall within the exception to the raise-or-waive rule there was a substantial basis in the affidavit to establish probable cause to issue the warrant and the trial justice did not err in denying her request for a Franks hearing. Because the Supreme Court concluded the warrant was valid, the Court did not consider defendant's argument that the trial justice erred in relying on the good-faith exception.

    The Supreme Court then determined that the warrantless vehicle seizure did not violate defendant's rights under the collective-knowledge doctrine, Connecticut law enforcement officers properly relied on information provided by the Pawtucket Police Department to establish probable cause that the defendant's vehicle contained evidence of a crime.

    Lastly, the Supreme Court determined that the defendant failed to preserve a Confrontation Clause issue for appeal because defendant did not raise the argument before the trial justice.

    Accordingly, the Supreme Court affirmed the judgment of conviction of the Superior Court.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-04-27", - "case_names": "State v. Madison Hansen", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/19-22.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-22", - "summaries": "The defendant appealed from a judgment of conviction of one count of possession of child pornography, following a bench trial in the Superior Court. The defendant asserted that the conviction violated his right to free speech because the images he possessed did not constitute child pornography within the meaning of G.L. 1956 \u00a7 11-9-1.3.

    In following an independent, de novo review, the Supreme Court concluded that the images fit within the meaning of the statute prohibiting the possession of child pornography. The Supreme Court concluded that the intent of the Legislature in enacting the statute, specifically to safeguard the well-being of children by preventing sexual exploitation, gives meaning to the phrase \"lascivious exhibition.\" The Supreme Court declined to adopt the Dost factors set forth in United States v. Dost, 636 F. Supp. 828 (S.D. Cal. 1986). However, in reviewing the factors and considering the purpose of the statute, the Supreme Court concluded that each image constituted a lascivious exhibition of the pubic area of each minor subject therein, within the meaning of \u00a7 11-9-1.3(c)(6)(v), and, thus, was considered child pornography.

    Accordingly, the Supreme Court affirmed the Superior Court's judgment of conviction.

    ", - "case_name_shorts": "" - }, - { - "case_dates": "2022-04-27", - "case_names": "James Lacera v. Department of Children, Youth, and Families", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/21-193.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21-193", - "summaries": "The plaintiff, James Lacera, appealed from a final order of the Family Court dismissing his verified miscellaneous petition for declaratory judgment.

    The action stemmed from an investigation by the Department of Children, Youth, and Families into the maltreatment of the plaintiff's biological grandchild through his son. DCYF took Mr. Lacera's biological grandchild into custody and placed the child with a nonrelative foster family. Mr. Lacera commenced efforts to secure placement of the child. After efforts were unsuccessful, Mr. Lacera filed a petition for declaratory judgment seeking declaration that DCYF violated his statutory rights to priority placement and adoption of the child as a fit and willing relative pursuant to G.L. 1956 \u00a7 14 1 27(c). By the time Mr. Lacera filed the petition, however, the Family Court had terminated Mr. Lacera's son's parental rights to the child.

    DCYF moved to dismiss the petition on the pleadings. The hearing justice determined that Mr. Lacera lacked standing to bring the petition and granted DCYF's motion to dismiss. Mr. Lacera appealed, maintaining that he had standing to pursue his declaratory-judgment petition. The Supreme Court held that Mr. Lacera lacked standing to bring the petition because any statutory rights Mr. Lacera had with respect to his biological grandchild were derivative of his son's, and they therefore were extinguished when his son's parental rights were terminated.

    Accordingly, the Supreme Court affirmed the order of the Family Court.

    ", - "case_name_shorts": "" - }, - { - "case_dates": "2022-04-26", - "case_names": "Cynthia Boss v. Christine Chamberland, in her capacity as Finance Director for the City of Woonsocket and the Woonsocket School Department", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/21-12.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21-12", - "summaries": "The plaintiff, Cynthia Boss, appealed from the Superior Court's entry of final judgment in favor of the defendants, which motion was granted on the basis that the plaintiff had failed to comply with her discovery obligations. On appeal, the plaintiff averred that the hearing justice: (1) erred in not allowing her to \"discuss or present either of her two [recent filings]\" and (2) \"exhibited extreme bias\" in favor of the defendants.

    The Supreme Court held that the hearing justice did not abuse her discretion in conducting the hearing on the motion for entry of final judgment or in granting that motion. Moreover, the Court held that there was not the slightest indication of bias on the part of the hearing justice. Accordingly, the Supreme Court affirmed the judgment of the Superior Court.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-04-25", - "case_names": "EdgengG (Private), Ltd. v. Fiberglass Fabricators, Inc.", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/21-17.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21-17", - "summaries": "The plaintiff, EdgengG (Private), Ltd., appealed from a Superior Court judgment in favor of the defendants, following the dismissal of the complaint filed by the plaintiffs and entry of judgment in favor of defendants based on plaintiffs' failure to comply with discovery orders.

    On appeal, EdgengG argued that the trial justice abused his discretion when he entered judgment in favor of defendants. EdgengG also marshaled numerous additional arguments in asserting that the dismissal of the plaintiffs' complaint and grant of final judgment for defendants was in error. The Supreme Court determined that the trial justice did not abuse his discretion in so entering judgment and that EdgengG's further contentions were meritless.

    Accordingly, the Supreme Court affirmed the judgment of the Superior Court.
    ", - "case_name_shorts": "" - }, - { - "case_dates": "2022-04-14", - "case_names": "Family Dollar Stores of Rhode Island, Inc. v. Justin B. Araujo", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-163.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-163", - "summaries": "The plaintiff, Family Dollar Stores of Rhode Island, Inc., appealed from the Superior Court's denial of its motion for summary judgment and the grant of summary judgment in favor of a former employee, one Justin Araujo. On appeal,
    the only issue requiring resolution by the Supreme Court was the validity vel non of a particular release, which Family Dollar contended was all-encompassing in scope.

    The Supreme Court held that the release at issue unambiguously constituted a waiver by Mr. Araujo of his right to pursue all claims that he might choose to make against Family Dollar. Accordingly, the Supreme Court reversed the judgment of the Superior Court.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-04-12", - "case_names": "Steven Dulong v. Merrimack Mutual Fire Insurance Company d/b/a The Andover Companies", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-173.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-173", - "summaries": "The plaintiff, Steven Dulong, appealed from a Superior Court judgment denying his request for declaratory judgment and granting summary judgment in favor of the defendant, Merrimack Mutual Fire Insurance Company, doing business as The Andover Companies. On appeal, the plaintiff submitted that the hearing justice erred by finding that an endorsement that did not include as an insured a particular household driver, as well as entrustment of vehicles to that household driver, from personal umbrella liability coverage was valid and binding at the time of an accident between that driver and the plaintiff.

    The Supreme Court held that the hearing justice did not err in denying the plaintiff's request for declaratory judgment and granting summary judgment in favor of the defendant because the limiting endorsement was properly incorporated by reference to the underlying policy and therefore it was valid and binding at the time of the accident. Accordingly, the Supreme Court affirmed the judgment of the Superior Court.
    ", - "case_name_shorts": "" - }, - { - "case_dates": "2022-04-12", - "case_names": "In re Lucas D.", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-24.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-24", - "summaries": "The respondent mother, Kaitlyn D., appealed from an October 31, 2019 decree of the Family Court terminating her parental rights to her son, Lucas D. Kaitlyn contended on appeal that \"[t]he Trial Justice erred in deciding that [the Department of Children, Youth, and Families] established by clear and convincing evidence that [she had] committed or allowed to be committed cruel and abusive conduct towards Lucas while in her care, and [was] unfit to parent Lucas.\"

    The Supreme Court held that the trial justice did not overlook or misconceive material evidence and was not otherwise clearly wrong in terminating Kaitlyn's parental rights. Accordingly, the Court affirmed the decree of the Family Court.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-04-11", - "case_names": "The Smile of the Child v. The Estate of Matoula Papadopouli", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-29.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-29", - "summaries": "The plaintiff, To Hamogelo Toy Paidiou, a/k/a The Smile of the Child, appealed from a Superior Court judgment affirming an \"order of the Middletown Probate Court regarding the Estate of Matoula Papadopouli and denying the appeal of [the plaintiff].\" On appeal before the Supreme Court, the plaintiff asserted that the Superior Court trial justice erred in (1) determining that a true conflict exists between Rhode Island and Greek law (2) applying Rhode Island law rather than Greek law (3) allowing the payment of fees and costs incurred in a foreign will dispute as administrative costs payable from assets of the estate and (4) determining that Rhode Island law does not allow for disgorgement.

    After concluding that a true conflict existed between Rhode Island law and Greek law, the Supreme Court determined that Rhode Island law bore the most significant relationship to the probate court dispute. The Supreme Court further held that the Superior Court judgment was consistent with Rhode Island law because it was supported by competent evidence in the record. Accordingly, the Supreme Court affirmed the judgment of the Superior Court.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-04-06", - "case_names": "Kenneth Leon v. Marysol Krikorian", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-28.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-28", - "summaries": "The defendant, Marysol Krikorian, appeals from a Family Court decision and order denying her motion for relocation with the parties' minor child. The defendant asserted that the trial justice overlooked or misconceived material evidence in coming to his decision. The Supreme Court concluded that the trial justice weighed each of the relevant factors in arriving at his decision and pointed to the evidence that prompted that decision. The Supreme Court concluded that, in light of the deference accorded to the trial justice, who is in the best position to determine what factors are relevant to the case and to weigh the credibility of the parties, there was no error in the decision denying the motion to relocate. The Supreme Court also directed that the issue of child support, which is not a bartering tool but for the care of the child, be addressed by the Family Court.

    Accordingly, the Supreme Court affirmed the order of the Family Court and remanded the case for further proceedings.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-03-30", - "case_names": "Daniel Houle v. Liberty Insurance Corporation, Alias, A/K/A Liberty Mutual Group, A/K/A Liberty Mutual, A/K/A Liberty Mutual Insurance", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/21-30.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21-30", - "summaries": "The plaintiffs, Daniel Houle and Karen Houle, appealed from a decision and order of the Superior Court granting the motion for judgment on the pleadings by the defendant, Liberty Mutual Insurance Company. On appeal, the plaintiffs argued that the motion justice erred in granting judgment on the pleadings in favor of defendant because, they contended, the pleadings established the facts necessary to support claims for breach of contract and bad faith.

    The Supreme Court concluded that the Superior Court erred in granting judgment on the pleadings in favor of the defendant because the motion justice overlooked the implied covenant of good faith and fair dealing that is inherent in every insurance contract, and it could not be said that the allegations as pled, and under any set of facts that may be proven at trial, would not support a claim for breach of contract or breach of the implied covenant of good faith and fair dealing. Accordingly, the Supreme Court vacated the order of the Superior Court.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-03-22", - "case_names": "State v. Michael Burkinshaw", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/19-153.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-153", - "summaries": "The defendant appealed from a Superior Court judgment of conviction on one count of resisting arrest. The defendant assigned three errors with respect to the trial proceedings, and the Supreme Court affirmed on each.

    First, the defendant challenged the trial justice's decision not to instruct the jury on self-defense as a defense to resisting arrest. He maintained that the record evinced evidence that the arresting officer employed excessive force in effectuating the arrest, entitling him to a full instruction on self-defense. The Supreme Court held that the record did not contain such evidence, and that therefore the trial justice did not err in his instructions to the jury.

    Second, the defendant challenged the trial justice's decision not to pass the case following the state's inclusion of certain remarks in its opening statement, which he maintained created incurable prejudice because the prosecutor alluded to the arresting officer's familiarity with Mr. Burkinshaw. The Supreme Court held that the trial justice did not clearly err by refusing to pass the case rather, the trial justice properly evaluated the prejudice created by the comment and determined that the prejudice could be cured by a cautionary instruction.

    Finally, the defendant challenged the trial justice's refusal to allow a certain line of questioning on cross-examination of the arresting officer regarding his occupational status as disabled. The Supreme Court held that the trial justice properly concluded that the evidence was not relevant and therefore was inadmissible.

    Therefore, the Supreme Court affirmed the Superior Court judgment of conviction.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-03-15", - "case_names": "America Condominium Association, Inc. v. Stefania M. Mardo, as Trustee of the Constellation Trust-2011", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/19-412, 413.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-412, 413", - "summaries": "The plaintiffs, America Condominium Association, Inc. and Capella South Condominium Association, Inc., appealed from a September 18, 2019 final judgment issued in Newport County Superior Court awarding attorneys' fees and costs in their favor in the total amount of $25,472.33. On appeal, they contended that: (1) \"[t]he Superior Court erroneously held that it could only award fees and costs that were directly and solely related to the contract claim [at issue]\" and (2) the Superior Court erroneously held that it would not award fees that the plaintiffs' witness, who testified with respect to the reasonableness of attorneys' fees, \"incurred in rendering his opinions, or for the affidavits of [Diane S.] Vanden Dorpel and [Sandra M.] Conca, or for other relevant work.\"

    The defendant, Stefania M. Mardo, as Trustee of the Constellation Trust-2011 (the Trust), cross-appealed from the same September 18, 2019 final judgment. She averred on appeal that \"[t]he Trial Court erred as a matter of law by awarding\" attorneys' fees to the plaintiffs for their efforts to recover attorneys' fees in the underlying case (fees on fees). She contended that: (1) plaintiffs waived their claim for fees on fees and (2) the Goat Island South Condominium Second Amended and Restated Declaration of Condominium (GIS SAR) \"[did] not permit or authorize such an award.\"

    The Supreme Court held that the trial justice correctly followed this Court's mandate in America Condominium Association, Inc. v. Stefania M. Mardo, as Trustee of the Constellation Trust-2011, 140 A.3d 106 (R.I. 2016), by awarding only those attorneys' fees which directly related to the breach of contract claim. The Court indicated that it could not perceive any error in her determination as to what constituted reasonable attorneys' fees and costs on the underlying matter. It further held that the GIS SAR provided a valid basis for the trial justice's award of fees on fees. Accordingly, the Supreme Court affirmed the judgment of the Superior Court.



    ", - "case_name_shorts": "" - }, - { - "case_dates": "2022-03-08", - "case_names": "Sandra Tiernan v. Seth Magaziner, in his capacity as General Treasurer of the State of Rhode Island", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/19-101, 306.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-101, 306", - "summaries": "The plaintiff, Sandra Tiernan, appealed from and sought review on certiorari of a judgment of the Superior Court in favor of the defendants, Seth Magaziner and Frank J. Karpinski, in their capacities as General Treasurer of the State of Rhode Island and Executive Director of the Employees' Retirement System of the State of Rhode Island, respectively (collectively ERSRI). Ms. Tiernan challenged a decision of ERSRI which, pursuant to G.L. 1956 \u00a7 36 10 31, offset a workers' compensation award against her accidental disability pension amounts paid pursuant to G.L. 1956 \u00a7 28 33 45.

    In March 2009, Ms. Tiernan, a state employee, retired as a member of ERSRI on an accidental disability pension. Prior to her retirement, Ms. Tiernan had received workers' compensation benefits. Upon her retirement, she petitioned the Workers' Compensation Court for a \"coordinated benefit\" under \u00a7 28-33-45. Because Ms. Tiernan's accidental disability pension was less than the amount of workers' compensation she was receiving prior to her retirement, the Workers' Compensation Court supplemented Ms. Tiernan's retirement by awarding a coordinated benefit.

    Based on this new workers' compensation award, ERSRI notified Ms. Tiernan that it would offset the coordinated benefit against her accidental disability pension, as required by \u00a7 36 10 31.

    Ms. Tiernan contested this decision, ultimately exhausting her administrative remedies and appealing the agency action to the Superior Court, which affirmed. Before the Supreme Court, Ms. Tiernan maintained that she was entitled to both her full accidental disability pension and her coordinated benefit without a corresponding reduction to her pension. Ms. Tiernan argued that the legislative intent expressed in the coordinated-benefits provision, \u00a7 28-33-45, should control.

    The Supreme Court affirmed the judgment of the Superior Court and ultimately the decision of ERSRI to offset the amounts she received as a coordinated benefit against Ms. Tiernan's accidental disability retirement pension. The Supreme Court reasoned that both \u00a7 36-10-31 and \u00a7 28-33-45 related to the same subject matter\u2014the treatment of workers' compensation benefits at the time an employee retires\u2014and so they must be construed together and harmonized so that both could stand and be operative. Applying principles of statutory construction, the Supreme Court held that \u00a7 36-10-31 applied to a more narrow classification of retirees and therefore should control in this case, a construction which allowed the intent of the Legislature as expressed in \u00a7 28-33-45 to stand with respect to non-ERSRI retirees.

    Therefore, the Supreme Court affirmed the Superior Court judgment.
    ", - "case_name_shorts": "" - }, - { - "case_dates": "2022-03-08", - "case_names": "Maria C. Rosa v. PJC of Rhode Island, Inc. formerly Rite Aid of Rhode Island, Inc. a/k/a Rite Aid Pharmacy a/k/a Rite Aid Corporation", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-246.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-246", - "summaries": "The plaintiff, Maria Rosa, appealed from a March 10, 2020 judgment entered following a bench decision in Providence County Superior Court granting the motion for summary judgment filed by the defendant, Belltower Acquisitions, LLC (Belltower Acquisitions). Ms. Rosa argued on appeal that the Superior Court erred in granting Belltower Acquisitions's motion for summary judgment because, she contended, it had not fully complied with the certificate provision of G.L. 1956 \u00a7 34-36.1-3.01 and so was jointly and severally liable for the injuries which she allegedly sustained as a result of a slip and fall incident on a sidewalk adjacent to Belltower Acquisitions's property.

    The Supreme Court held that the Superior Court did not err when it concluded that the certificate requirement in \u00a7 34-36.1-3.01 was directory (and not mandatory)
    and when it consequently granted summary judgment to Belltower Acquisitions. Accordingly, the Supreme Court affirmed the judgment of the Superior Court.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-03-04", - "case_names": "Gloria Nerney v. Town of Smithfield", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-138.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-138", - "summaries": "The plaintiff, Gloria Nerney, appealed from a March 17, 2020 judgment of the Providence County Superior Court dismissing her amended complaint, in which she sought a writ of mandamus directing the defendant, the Town of Smithfield, to remove certain trees and plants that were planted by certain non-defendant neighbors on a municipally owned right of way. On appeal, the plaintiff averred that the hearing justice erred in determining that she did not satisfy the criteria for the issuance of a writ of mandamus.

    The Supreme Court held that the hearing justice did not err in granting the Town's motion to dismiss since the decision as to how to deal with the matters at issue falls within the discretionary authority of the Town, thereby making relief in the form of a writ of mandamus unavailable. Accordingly, the Supreme Court affirmed the judgment of the Superior Court.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-03-02", - "case_names": "Shirley P. Morgan, in her capacity as the Administratrix for the Estate of Lisa A. Bicknell v. Richard C. Bicknell", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-238.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-238", - "summaries": "The defendant, Richard C. Bicknell, appealed from a final judgment entered in favor of the plaintiff, Shirley P. Morgan, in her capacity as Administratrix for the Estate of Lisa A. Bicknell, following the grant of summary judgment in accordance with Rule 56 of the Superior Court Rules of Civil Procedure. The defendant argued that the trial justice erred in granting summary judgment because a genuine issue of material fact remained as to whether the decedent's failure to change the beneficiary on her retirement plan constituted a waiver of the defendant's waiver of his interest in the retirement account under a Property Settlement Agreement (PSA) entered into in the Family Court in a divorce matter.

    The Supreme Court concluded that the decedent's failure to remove the defendant as the beneficiary of the retirement plan was of no moment because this would not affect the defendant's waiver contained in the PSA. Therefore, the Court held that this was a matter of contract interpretation and, thus, the PSA controlled the merits of this appeal.

    The Supreme Court held that the PSA clearly and unambiguously stated that the defendant waived \"any and all interest\" in the retirement plan and that there was no evidence of any modification or waiver of the PSA in writing as required by the PSA. Accordingly, the Court held that no genuine issue of material fact remained in dispute and that the trial justice properly granted summary judgment in favor of the plaintiff.

    Therefore, the Court affirmed the judgment of the Superior Court.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-03-02", - "case_names": "Cody-Allen Zab v. Rhode Island Department of Corrections Jose R. Rivera v. State of Rhode Island Department of Corrections, by and through its Director, Patricia Coyne-Fague, in her official capacity", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/19-459, 462.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-459, 462", - "summaries": "The plaintiffs, Cody-Allen Zab and Jose R. Rivera, appealed from Superior Court judgments entered in favor of the Rhode Island Department of Corrections, Director Patricia Coyne-Fague in her official capacity, and Global TelLink Corporation. Before the Supreme Court, the plaintiffs argued that the trial court erred in finding that it did not have jurisdiction to hear the plaintiffs' claims based on G.L. 1956 \u00a7 13-6-1, Rhode Island's civil death statute.

    The Supreme Court first addressed Zab's claim that the civil death statute violates the Supremacy Clause of the United States Constitution and concluded that the hearing justice properly dismissed Zab's federal claim on the merits. The Supreme Court recognized that, under the relevant federal statute, the DOC and the DOC Director were not \"persons\" and Zab had no right of action against them.

    The Supreme Court then addressed plaintiffs' contentions that the civil death statute unconstitutionally divested the Superior Court of authority to hear their negligence claims. The Supreme Court concluded that the civil death statute violates article 1, section 5 of the Rhode Island Constitution because it denies plaintiffs of their fundamental right of access to the courts. The Supreme Court applied strict scrutiny and concluded that the state failed to demonstrate a compelling reason to override the right of access to the courts that is textually guaranteed by the Rhode Island Constitution.

    The Supreme Court ultimately determined that the entirety of the civil death statute is unconstitutional and in clear contravention of the provisions of article 1, section 5, of the Rhode Island Constitution because it deprives those persons imprisoned at the Adult Correctional Institutions for life of their right to bring civil actions in our state courts.

    ", - "case_name_shorts": "" - }, - { - "case_dates": "2022-03-01", - "case_names": "Thomas Shannahan v. Rhode Island Interlocal Risk Management Trust", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-81.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-81", - "summaries": "The plaintiffs appealed from a Superior Court judgment in favor of the defendant, following the grant of the defendant's motion for summary judgment pursuant to Rule 56 of the Superior Court Rules of Civil Procedure. After this Court had affirmed summary judgment relative to the plaintiffs' underlying claims against the City of Central Falls in a prior case, the defendant filed a motion for summary judgment to dismiss plaintiffs' bad-faith insurance claim against the defendant. The trial justice granted its motion, and the plaintiffs appealed.

    The Supreme Court concluded that the plaintiffs were not the insureds under defendant's insurance policy, nor assignees for purposes of a bad-faith claim. As third-party claimants, the plaintiffs did not obtain any judgment in their favor under the insurance policy\u2014let alone a judgment in excess of the insurance policy limits\u2014both of which are required to properly assign a bad-faith claim to a third party. Lastly, the Court held that, even if the plaintiffs were assignees to the City of Central Falls under the defendant's insurance policy, they did not meet their burden for a bad-faith action by showing an absence of a reasonable basis for denial of their claims, or by establishing that the defendant intentionally or recklessly failed to properly investigate their claims.

    The Supreme Court therefore affirmed the judgment of the Superior Court.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-03-01", - "case_names": "Elida Mezini v. Leart Mezini", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-49, 50.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-49, 50", - "summaries": "In these consolidated cross-appeals, the defendant, Leart Mezini, challenged the trial justice's equitable distribution of property, contending that the trial justice either erred in his designation of property as marital or abused his discretion in awarding the plaintiff, Elida Mezini, certain property. The plaintiff contended that the trial justice erred in failing to award her one-half of the value of the reduction of the mortgage on the marital domicile.

    The Supreme Court held that the trial justice did not err in any of his designations or distributions of property. The Supreme Court determined that the trial justice did not overlook or misconceive material evidence because he assessed the parties' credibility and thoroughly examined the factors set forth in G.L. 1956 \u00a7 15-5-16.1(a) in making the distributions. Because the Supreme Court concluded that the trial justice had properly determined the extent and value of the marital estate and then equitably distributed those assets between the parties, the Court declined to address whether the increase in value of an asset acquired by a spouse prior to marriage, and solely titled in that spouse's name, includes the reduction of a mortgage paid with marital funds.

    Accordingly, the Supreme Court affirmed the decision pending entry of final judgment of the Family Court.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-02-22", - "case_names": "Katherine Baker and Morgan McCarthy, Individually & p.p.a. Autumn McCarthy v. Women & Infants Hospital of Rhode Island", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/19-489.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-489", - "summaries": "The plaintiffs appealed from a Superior Court order denying their motion for a new trial following a jury verdict in favor of the defendant, Women & Infants Hospital of Rhode Island, in this medical negligence action. Before the Supreme Court, the plaintiffs contended that the trial justice erred in denying their motion for a new trial because, they maintained, the defendant's closing argument was plainly improper, incurably prejudiced the plaintiffs, and produced a tainted verdict.

    The Supreme Court concluded that the comments made by the defendant exceeded the proper bounds of closing argument and were plainly improper because the defendant directed the jury to send a message by their verdict. The Supreme Court also held that the trial justice was clearly wrong in finding that the defendant's closing argument did not result in prejudice to the plaintiffs. Lastly, the Supreme Court concluded that the trial justice's admonitions to the jury were insufficient to neutralize the prejudicial effect of defense counsel's comments.

    Accordingly, the Supreme Court reversed the order of the Superior Court and remanded the case to the Superior Court for a new trial.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-02-16", - "case_names": "Webster Bank, National Association v. Arnold S. Rosenbaum", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-117.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-117", - "summaries": "The defendants, Arnold S. Rosenbaum and Judith A. Rosenbaum, appealed from of a Superior Court judgment in favor of the plaintiff, Webster Bank, National Association, following the trial justice's decision on the parties' cross-motions for summary judgment. The defendants contended that the trial justice erred in applying the Rhode Island ten-year statute of limitations pursuant to G.L. 1956 \u00a7 9-1-13, rather than the Connecticut six-year statute of limitations under Connecticut General Statutes \u00a7 52-576, which would have barred plaintiff's civil action against them for breach of a loan agreement. The defendants based their argument upon a governing-law provision in the loan agreement.

    The Supreme Court concluded that, because the loan agreement did not clearly specify either the choice of forum or the statute of limitations that would apply to an action arising from a breach of the loan agreement, the Court was bound to apply its interest-weighing approach to determine which state's statute of limitations would apply. The Supreme Court held that the trial justice did not err in finding that the Rhode Island statute of limitations applied under the interest-weighing test and that plaintiff's claim was thus not barred.

    Accordingly, the Supreme Court affirmed the judgment of the Superior Court.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-02-11", - "case_names": "Sebastian Wells Atryzek v. State of Rhode Island", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/19-215.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-215", - "summaries": "The respondent, the State of Rhode Island, sought review on certiorari of a Superior Court judgment granting an application for postconviction relief by the applicant, Sebastian Atryzek, and an order vacating four convictions for failure to register as a sexual offender in violation of G.L. 1956 chapter 37.1 of title 11. The state asserted that the trial justice erred in (1) limiting the scope of this Court's remand in Atryzek v. State, 197 A.3d 334 (R.I. 2018) (2) concluding that the applicant had no duty to register as a sexual offender because, the state contended, the applicant had an obligation to register that arose from his convictions for failure to register and (3) vacating Atryzek's failure-to-register convictions.

    The Supreme Court concluded that the trial justice erred in vacating two of the four convictions, that the trial justice did not err in limiting the scope of remand, and that the applicant is no longer required to register as a sex offender in Rhode Island. The Supreme Court concluded that two of the applicant's failure-to-register offenses occurred while he had an obligation to register, and thus, the trial justice erred in vacating those convictions on the basis that the applicant had no duty to register when he pled nolo contendere to the offenses. The Supreme Court concluded that the state's theory, that the applicant had a new obligation to register arising from his failure-to-register convictions, was outside the scope of the Court's remand because it was a significant legal issue that was not raised in the initial postconviction-relief proceedings and was, thus, barred by the raise-or-waive rule.

    Accordingly, the Supreme Court affirmed in part and quashed in part the judgment of the Superior Court and declared that the applicant is no longer required to register as a sexual offender in Rhode Island.



    ", - "case_name_shorts": "" - }, - { - "case_dates": "2022-02-10", - "case_names": "Maureen Mowry v. Allstate Insurance Company", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/19-297.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-297", - "summaries": "The defendant, Allstate Insurance Company, appealed from a judgment entered in favor of the plaintiff, Maureen Mowry, granting the plaintiff's motion for additur. On appeal, the defendant asserted that the trial justice erred in granting the additur because the jury's determination of damages was not against the weight of the evidence, and because the trial justice erroneously found that the damage award was not truly responsive and failed to provide substantial justice between the parties. Additionally, the defendant took issue with a comment made by the trial justice in rendering his decision on the plaintiff's motion for a new trial and/or additur regarding an award the plaintiff received in a settlement with the tortfeasor's insurance carrier.

    The Supreme Court carefully reviewed the trial justice's analysis in granting the plaintiff's motion for additur and concluded that the trial justice did not overlook material evidence or commit clear error. The Supreme Court held that there was sufficient evidence relating to the plaintiff's injuries that reasonably warranted the granting of an additur. Furthermore, the Supreme Court dismissed the defendant's contention with respect to the comment made by the trial justice concerning the settlement between the plaintiff and the tortfeasor's insurance carrier. Accordingly, the Supreme Court affirmed the judgment of the Superior Court.

    ", - "case_name_shorts": "" - }, - { - "case_dates": "2022-02-09", - "case_names": "Verizon New England Inc. v. Neena S. Savage, in her capacity as Tax Administrator for the State of Rhode Island", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-40.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-40", - "summaries": "The movants, the City of Pawtucket and the City of Cranston, sought review by way of writ of certiorari of a District Court decision and order denying movants' motions to intervene in an appeal brought by the plaintiff, Verizon New England Inc., to challenge the defendant state tax administrator's assessment of tangible personal property tax. The movants asserted that the trial judge erred in concluding that the City of Providence adequately represented the movants' interests in the action by focusing too narrowly on the comparative litigation positions, rather than the distinctive interests of the cities.

    The Supreme Court concluded that the trial judge did not err in denying the motions. The Supreme Court concluded that the trial judge's assessment of the four requisites for intervention of right, in accordance with Rule 24 of the District Court Civil Rules, as interpreted by caselaw, was proper and that the movants were required to overcome a presumption of adequate representation and failed to do so. Additionally, because the movants failed to demonstrate a tangible basis and to provide an adequate explanation as to why the City of Providence did not adequately represent the movants' interests, the Supreme Court concluded that the trial judge's reliance on the respective positions was appropriate. Accordingly, the Supreme Court affirmed the order of the District Court.


    ", - "case_name_shorts": "" - }, - { - "case_dates": "2022-02-02", - "case_names": "State v. Erik Valdez", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-89.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-89", - "summaries": "The defendant, Erik Valdez, appealed from a Superior Court judgment of conviction for second-degree sexual assault, breaking and entering, and disorderly conduct. At trial, the defendant moved for a judgment of acquittal on all charges pursuant to Rule 29 of the Superior Court Rules of Criminal Procedure. After his conviction, the defendant moved for a new trial on all convicted counts pursuant to Rule 33 of the Superior Court Rules of Criminal Procedure. The trial justice denied both motions.

    On appeal, the defendant assigned error to the trial justice's denial of his motion for judgment of acquittal on the charge of disorderly conduct and denial of his motion for new trial. In appealing the trial justice's denial of his motion for judgment of acquittal, the defendant argued that the state failed to produce sufficient evidence to establish that he engaged in tumultuous behavior. The Supreme Court held that the state produced sufficient evidence to establish that the defendant engaged in tumultuous behavior when he entered the complaining witness's apartment uninvited and resisted her vigorous attempts to remove him.

    In appealing the denial of his motion for new trial, the defendant maintained that the weight of the evidence was insufficient to support a conviction, asserting that the trial justice overlooked and misconceived material evidence, failed to assess the credibility of the state's witnesses and the weight of the evidence, and inadequately explained his decision concerning the count of disorderly conduct. The Supreme Court determined that the trial justice properly exercised his judgment in analyzing the evidence presented and the credibility of the witnesses, did not overlook or misconceive material evidence, and sufficiently articulated his reasons for his decision.

    Thus, the Supreme Court affirmed the judgment of conviction of the Superior Court.
    ", - "case_name_shorts": "" - }, - { - "case_dates": "2022-02-01", - "case_names": "Paul R. Boisse v. Joseph R. Miller, Jr. d/b/a Joseph Miller Construction", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/20-78.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-78", - "summaries": "The defendants appealed from a Superior Court judgment arising from their sale of real property with improvements that encroached upon an adjacent lot. The trial justice found that the defendants were liable for the plaintiffs' damages arising from that sale and that defendant Joseph Miller's insurer was not liable for his intentional acts. The defendants asserted that the insurer's liability in a separate and unrelated matter should have been accounted for in determining its liability in this matter the defendants also raised issues with an amended pleading, trial events as reflected on the docket, language used in the judgment, and defendant Lynne Miller's counsel's lack of communication with her regarding trial outcomes.

    The Supreme Court concluded that the issues raised by the defendants regarding the insurer's liability in another action, the amended pleading, and the language in the judgment were all precluded for review by the Court according to the raise-or-waive rule. The Supreme Court addressed the defendants' concerns about the events as reflected in the docket, concluding that those events were ordinary trial practice and procedure. The Court declined to review the defendants' issue with counsel, as it was not properly before the Court, having not first been raised in the trial court. Accordingly, the Supreme Court affirmed the judgment of the Superior Court.


    ", - "case_name_shorts": "" - }, - { - "case_dates": "2022-01-25", - "case_names": "State v. Juan P. Benitez", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/18-240.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "18-240", - "summaries": "The defendant, Juan P. Benitez, appealed from a July 28, 2017 judgment of conviction and commitment on one count of second-degree child molestation entered following a jury trial . On appeal, the defendant contended that: (1) \"the trial court erred when it permitted [a physician testifying as an expert witness] to testify to hearsay statements unrelated to medical diagnosis or treatment\" and (2) \"the trial court impermissibly allowed the state to mislead the jury by impeaching a witness with a statement he did not author, sign, or review .\"

    The Supreme Court held that the trial justice did not abuse his discretion in admitting certain hearsay statements pursuant to the medical diagnosis or treatment exception to the hearsay rule. The Court further opined that, even if it had been an abuse of discretion to allow the testimony at issue, the testimony was cumulative and harmless . The Supreme Court further held that the defendant's contentions with respect to the purported impeachment of a certain witness were waived . Consequently, the Court affirmed the judgment of the Superior Court.", - "case_name_shorts": "" - }, - { - "case_dates": "2022-01-25", - "case_names": "Providence Place Group Limited, Partnership v. State of Rhode Island, acting by and through Division of Taxation", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOpinions/19-298.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-298", - "summaries": "The state sought, by way of certiorari, review of a District Court judgment in favor of the plaintiffs, Providence Place Group Limited, Partnership and Rouse Providence LLC. The state contended that the District Court judge erred by improperly weighing evidence failing to address the issue of assignability or transferability of tax exemptions and failing to construe and apply the tax-exemption provisions of the Rhode Island Commerce Corporation Act, G.L. 1956 chapter 64 of title 42, so as to not violate the nondelegation doctrine of the Rhode Island Constitution.

    The Supreme Court held that there were no material facts in dispute that were outcome-determinative and that the plaintiffs were entitled to judgment as a matter of law. The Supreme Court determined that the General Assembly clearly and unambiguously indicated that the Providence Place Mall was to remain a project of the Economic Development Corporation post-construction. The Supreme Court further concluded that \u00a7 42-64-20(c) exempted the mall from imposition of a real estate conveyance tax and that the delegation of powers to the Economic Development Corporation was constitutionally permissible because the standards accompanying the delegation were clear. The Supreme Court therefore affirmed the judgment of the District Court.", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ri_p_example.json b/tests/examples/opinions/united_states/ri_p_example.json deleted file mode 100644 index dc6c8c09b..000000000 --- a/tests/examples/opinions/united_states/ri_p_example.json +++ /dev/null @@ -1,820 +0,0 @@ -{ - "Row": [ - { - "ID": "713", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "State v. Geoffrey A. Regan, No. 21-47 (May 2, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/21-47.pdf", - "FileLeafRef": "21-47.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "1", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The defendant appealed from an order of the Superior Court declaring him a probation violator.  The defendant asserted that the trial justice erred in finding him in violation of his probation for not satisfying his restitution payments by the time his sentence was to expire and erred in extending his sentence by delaying imposition of the sentence for the violation in order to monitor his payment progress.
     
    The Supreme Court concluded that the trial justice’s finding that the defendant was a probation violator for failure to pay restitution in full, without an assessment of the defendant’s ability to pay or whether the defendant’s failure to pay the full amount of restitution was willful, deliberate, or in defiance of his obligations, was arbitrary and capricious.  The Supreme Court acknowledged that a restitution payment obligation, such as the defendant’s obligation, need not be linked to the duration of a sentence and, rather, becomes a civil judgment after expiration of a sentence.  Thus, the Supreme Court concluded that the Superior Court was without authority to extend the defendant’s sentence in order to oversee his payment progress and that the defendant only remained civilly liable to pay restitution.  Accordingly, the Supreme Court vacated the order of the Superior Court.
    ", - "Published_x0020_Date": "5/2/2022 10:53 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "712", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "State v. Trearra Hudgen, No. 19-281 (April 27, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/19-281.pdf", - "FileLeafRef": "19-281.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The defendant, Tre’arra Hudgen, appealed from a Superior Court judgment of conviction for first-degree murder, discharge of a firearm when committing a crime of violence that caused death, conspiracy to assault with a firearm, felony assault with a firearm, first-degree robbery, and carrying a revolver without a license or permit.  On appeal, the defendant alleged that the trial justice erred in (1) denying her motions to suppress the evidence found at her apartment, (2) denying her motion to suppress the evidence found in her vehicle, and (3) violating her right to confront a witness about promises, rewards, and inducements.

    The Supreme Court held that the defendant waived her claim that the search warrant for her apartment lacked particularity, because she did not raise it before the trial justice nor did it fall within the exception to the raise-or-waive rule; there was a substantial basis in the affidavit to establish probable cause to issue the warrant; and the trial justice did not err in denying her request for a Franks hearing.  Because the Supreme Court concluded the warrant was valid, the Court did not consider defendant’s argument that the trial justice erred in relying on the good-faith exception.
      
    The Supreme Court then determined that the warrantless vehicle seizure did not violate defendant’s rights; under the collective-knowledge doctrine, Connecticut law enforcement officers properly relied on information provided by the Pawtucket Police Department to establish probable cause that the defendant’s vehicle contained evidence of a crime.
     
    Lastly, the Supreme Court determined that the defendant failed to preserve a Confrontation Clause issue for appeal because defendant did not raise the argument before the trial justice.

    Accordingly, the Supreme Court affirmed the judgment of conviction of the Superior Court. ", - "Published_x0020_Date": "4/27/2022 2:37 PM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "711", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "James Lacera v. Department of Children, Youth, and Families, No. 21-193 (April 27, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/21-193.pdf", - "FileLeafRef": "21-193.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiff, James Lacera, appealed from a final order of the Family Court dismissing his verified miscellaneous petition for declaratory judgment.

    The action stemmed from an investigation by the Department of Children, Youth, and Families into the maltreatment of the plaintiff’s biological grandchild through his son.  DCYF took Mr. Lacera’s biological grandchild into custody and placed the child with a nonrelative foster family.  Mr. Lacera commenced efforts to secure placement of the child.  After efforts were unsuccessful, Mr. Lacera filed a petition for declaratory judgment seeking declaration that DCYF violated his statutory rights to priority placement and adoption of the child as a fit and willing relative pursuant to G.L. 1956 § 14 1 27(c).  By the time Mr. Lacera filed the petition, however, the Family Court had terminated Mr. Lacera’s son’s parental rights to the child.

    DCYF moved to dismiss the petition on the pleadings.  The hearing justice determined that Mr. Lacera lacked standing to bring the petition and granted DCYF’s motion to dismiss.  Mr. Lacera appealed, maintaining that he had standing to pursue his declaratory-judgment petition.  The Supreme Court held that Mr. Lacera lacked standing to bring the petition because any statutory rights Mr. Lacera had with respect to his biological grandchild were derivative of his son’s, and they therefore were extinguished when his son’s parental rights were terminated.
     
    Accordingly, the Supreme Court affirmed the order of the Family Court.

    ", - "Published_x0020_Date": "4/27/2022 10:53 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "710", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "State v. Madison Hansen, No. 19-22 (April 27, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/19-22.pdf", - "FileLeafRef": "19-22.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The defendant appealed from a judgment of conviction of one count of possession of child pornography, following a bench trial in the Superior Court.  The defendant asserted that the conviction violated his right to free speech because the images he possessed did not constitute child pornography within the meaning of G.L. 1956 § 11-9-1.3.

    In following an independent, de novo review, the Supreme Court concluded that the images fit within the meaning of the statute prohibiting the possession of child pornography.  The Supreme Court concluded that the intent of the Legislature in enacting the statute, specifically to safeguard the well-being of children by preventing sexual exploitation, gives meaning to the phrase “lascivious exhibition.”  The Supreme Court declined to adopt the Dost factors set forth in United States v. Dost, 636 F. Supp. 828 (S.D. Cal. 1986).  However, in reviewing the factors and considering the purpose of the statute, the Supreme Court concluded that each image constituted a lascivious exhibition of the pubic area of each minor subject therein, within the meaning of § 11-9-1.3(c)(6)(v), and, thus, was considered child pornography.

    Accordingly, the Supreme Court affirmed the Superior Court’s judgment of conviction.

    ", - "Published_x0020_Date": "4/27/2022 10:52 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "709", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Cynthia Boss v. Christine Chamberland, in her capacity as Finance Director for the City of Woonsocket and the Woonsocket School Department, et al., No. 21-12 (April 26, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/21-12.pdf", - "FileLeafRef": "21-12.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiff, Cynthia Boss, appealed from the Superior Court’s entry of final judgment in favor of the defendants, which motion was granted on the basis that the plaintiff had failed to comply with her discovery obligations. On appeal, the plaintiff averred that the hearing justice: (1) erred in not allowing her to “discuss or present either of her two [recent filings];” and (2) “exhibited extreme bias” in favor of the defendants.

    The Supreme Court held that the hearing justice did not abuse her discretion in conducting the hearing on the motion for entry of final judgment or in granting that motion. Moreover, the Court held that there was not the slightest indication of bias on the part of the hearing justice. Accordingly, the Supreme Court affirmed the judgment of the Superior Court.", - "Published_x0020_Date": "4/26/2022 10:54 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "708", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "EdgengG (Private), Ltd., et al. v. Fiberglass Fabricators, Inc., et al., No. 21-17 (April 25, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/21-17.pdf", - "FileLeafRef": "21-17.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiff, EdgengG (Private), Ltd., appealed from a Superior Court judgment in favor of the defendants, following the dismissal of the complaint filed by the plaintiffs and entry of judgment in favor of defendants based on plaintiffs’ failure to comply with discovery orders.

    On appeal, EdgengG argued that the trial justice abused his discretion when he entered judgment in favor of defendants.  EdgengG also marshaled numerous additional arguments in asserting that the dismissal of the plaintiffs’ complaint and grant of final judgment for defendants was in error.  The Supreme Court determined that the trial justice did not abuse his discretion in so entering judgment and that EdgengG’s further contentions were meritless.
     
    Accordingly, the Supreme Court affirmed the judgment of the Superior Court.
    ", - "Published_x0020_Date": "4/25/2022 11:10 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "707", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Family Dollar Stores of Rhode Island, Inc. v. Justin B. Araujo et al., No. 20-163 (April 14, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-163.pdf", - "FileLeafRef": "20-163.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiff, Family Dollar Stores of Rhode Island, Inc., appealed from the Superior Court’s denial of its motion for summary judgment and the grant of summary judgment in favor of a former employee, one Justin Araujo. On appeal,
    the only issue requiring resolution by the Supreme Court was the validity vel non of a particular release, which Family Dollar contended was all-encompassing in scope.

    The Supreme Court held that the release at issue unambiguously constituted a waiver by Mr. Araujo of his right to pursue all claims that he might choose to make against Family Dollar. Accordingly, the Supreme Court reversed the judgment of the Superior Court.", - "Published_x0020_Date": "4/14/2022 11:01 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "705", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "In re Lucas D., No. 20-24 (April 12, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-24.pdf", - "FileLeafRef": "20-24.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The respondent mother, Kaitlyn D., appealed from an October 31, 2019 decree of the Family Court terminating her parental rights to her son, Lucas D. Kaitlyn contended on appeal that “[t]he Trial Justice erred in deciding that [the Department of Children, Youth, and Families] established by clear and convincing evidence that [she had] committed or allowed to be committed cruel and abusive conduct towards Lucas while in her care, and [was] unfit to parent Lucas.”

    The Supreme Court held that the trial justice did not overlook or misconceive material evidence and was not otherwise clearly wrong in terminating Kaitlyn’s parental rights. Accordingly, the Court affirmed the decree of the Family Court.", - "Published_x0020_Date": "4/12/2022 11:13 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "706", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Steven Dulong v. Merrimack Mutual Fire Insurance Company d/b/a The Andover Companies, No. 20-173 (April 12, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-173.pdf", - "FileLeafRef": "20-173.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiff, Steven Dulong, appealed from a Superior Court judgment denying his request for declaratory judgment and granting summary judgment in favor of the defendant, Merrimack Mutual Fire Insurance Company, doing business as The Andover Companies.  On appeal, the plaintiff submitted that the hearing justice erred by finding that an endorsement that did not include as an insured a particular household driver, as well as entrustment of vehicles to that household driver, from personal umbrella liability coverage was valid and binding at the time of an accident between that driver and the plaintiff.

    The Supreme Court held that the hearing justice did not err in denying the plaintiff’s request for declaratory judgment and granting summary judgment in favor of the defendant because the limiting endorsement was properly incorporated by reference to the underlying policy and therefore it was valid and binding at the time of the accident.  Accordingly, the Supreme Court affirmed the judgment of the Superior Court.
     ", - "Published_x0020_Date": "4/12/2022 11:13 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "704", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "The Smile of the Child v. The Estate of Matoula Papadopouli, No. 20-29 (April 11, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-29.pdf", - "FileLeafRef": "20-29.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiff, To Hamogelo Toy Paidiou, a/k/a The Smile of the Child, appealed from a Superior Court judgment affirming an “order of the Middletown Probate Court regarding the Estate of Matoula Papadopouli * * * and denying the appeal of [the plaintiff].”  On appeal before the Supreme Court, the plaintiff asserted that the Superior Court trial justice erred in (1) determining that a true conflict exists between Rhode Island and Greek law; (2) applying Rhode Island law rather than Greek law; (3) allowing the payment of fees and costs incurred in a foreign will dispute as administrative costs payable from assets of the estate; and (4) determining that Rhode Island law does not allow for disgorgement.

    After concluding that a true conflict existed between Rhode Island law and Greek law, the Supreme Court determined that Rhode Island law bore the most significant relationship to the probate court dispute.  The Supreme Court further held that the Superior Court judgment was consistent with Rhode Island law because it was supported by competent evidence in the record.  Accordingly, the Supreme Court affirmed the judgment of the Superior Court. ", - "Published_x0020_Date": "4/11/2022 10:56 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "703", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Kenneth Leon v. Marysol Krikorian, No. 20-28 (April 6, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-28.pdf", - "FileLeafRef": "20-28.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The defendant, Marysol Krikorian, appeals from a Family Court decision and order denying her motion for relocation with the parties’ minor child.  The defendant asserted that the trial justice overlooked or misconceived material evidence in coming to his decision.  The Supreme Court concluded that the trial justice weighed each of the relevant factors in arriving at his decision and pointed to the evidence that prompted that decision.  The Supreme Court concluded that, in light of the deference accorded to the trial justice, who is in the best position to determine what factors are relevant to the case and to weigh the credibility of the parties, there was no error in the decision denying the motion to relocate.  The Supreme Court also directed that the issue of child support, which is not a bartering tool but for the care of the child, be addressed by the Family Court.

    Accordingly, the Supreme Court affirmed the order of the Family Court and remanded the case for further proceedings.", - "Published_x0020_Date": "4/6/2022 11:57 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "702", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Daniel Houle et al. v. Liberty Insurance Corporation, Alias, A/K/A Liberty Mutual Group, A/K/A Liberty Mutual, A/K/A Liberty Mutual Insurance, No. 21-30 (March 30, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/21-30.pdf", - "FileLeafRef": "21-30.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiffs, Daniel Houle and Karen Houle, appealed from a decision and order of the Superior Court granting the motion for judgment on the pleadings by the defendant, Liberty Mutual Insurance Company. On appeal, the plaintiffs argued that the motion justice erred in granting judgment on the pleadings in favor of defendant because, they contended, the pleadings established the facts necessary to support claims for breach of contract and bad faith.

    The Supreme Court concluded that the Superior Court erred in granting judgment on the pleadings in favor of the defendant because the motion justice overlooked the implied covenant of good faith and fair dealing that is inherent in every insurance contract, and it could not be said that the allegations as pled, and under any set of facts that may be proven at trial, would not support a claim for breach of contract or breach of the implied covenant of good faith and fair dealing. Accordingly, the Supreme Court vacated the order of the Superior Court.", - "Published_x0020_Date": "3/30/2022 11:04 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "701", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "State v. Michael Burkinshaw, No. 19-153 (March 22, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/19-153.pdf", - "FileLeafRef": "19-153.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The defendant appealed from a Superior Court judgment of conviction on one count of resisting arrest.  The defendant assigned three errors with respect to the trial proceedings, and the Supreme Court affirmed on each.
      
    First, the defendant challenged the trial justice’s decision not to instruct the jury on self-defense as a defense to resisting arrest.  He maintained that the record evinced evidence that the arresting officer employed excessive force in effectuating the arrest, entitling him to a full instruction on self-defense.  The Supreme Court held that the record did not contain such evidence, and that therefore the trial justice did not err in his instructions to the jury.
     
    Second, the defendant challenged the trial justice’s decision not to pass the case following the state’s inclusion of certain remarks in its opening statement, which he maintained created incurable prejudice because the prosecutor alluded to the arresting officer’s familiarity with Mr. Burkinshaw.  The Supreme Court held that the trial justice did not clearly err by refusing to pass the case; rather, the trial justice properly evaluated the prejudice created by the comment and determined that the prejudice could be cured by a cautionary instruction.
     
    Finally, the defendant challenged the trial justice’s refusal to allow a certain line of questioning on cross-examination of the arresting officer regarding his occupational status as disabled.  The Supreme Court held that the trial justice properly concluded that the evidence was not relevant and therefore was inadmissible.

    Therefore, the Supreme Court affirmed the Superior Court judgment of conviction.", - "Published_x0020_Date": "3/22/2022 11:16 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "700", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "America Condominium Association, Inc., et al. v. Stefania M. Mardo, as Trustee of the Constellation Trust-2011, et al., Nos. 19-412, 413 (March 15, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/19-412, 413.pdf", - "FileLeafRef": "19-412, 413.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiffs, America Condominium Association, Inc. and Capella South Condominium Association, Inc., appealed from a September 18, 2019 final judgment issued in Newport County Superior Court awarding attorneys’ fees and costs in their favor in the total amount of $25,472.33.  On appeal, they contended that: (1) “[t]he Superior Court erroneously held that it could only award fees and costs that were directly and solely related to the contract claim [at issue];” and (2) the Superior Court erroneously held that it would not award fees that the plaintiffs’ witness, who testified with respect to the reasonableness of attorneys’ fees, “incurred in rendering his opinions, or for the affidavits of [Diane S.] Vanden Dorpel and [Sandra M.] Conca, or for other relevant work.” 

    The defendant, Stefania M. Mardo, as Trustee of the Constellation Trust-2011 (the Trust), cross-appealed from the same September 18, 2019 final judgment.  She averred on appeal that “[t]he Trial Court erred as a matter of law by awarding”  attorneys’ fees to the plaintiffs for their efforts to recover attorneys’ fees in the underlying case (fees on fees).  She contended that: (1) plaintiffs waived their claim for fees on fees; and (2) the Goat Island South Condominium Second Amended and Restated Declaration of Condominium (GIS SAR) “[did] not permit or authorize such an award.”

    The Supreme Court held that the trial justice correctly followed this Court’s mandate in America Condominium Association, Inc. v. Stefania M. Mardo, as Trustee of the Constellation Trust-2011, 140 A.3d 106 (R.I. 2016), by awarding only those attorneys’ fees which directly related to the breach of contract claim.  The Court indicated that it could not perceive any error in her determination as to what constituted reasonable attorneys’ fees and costs on the underlying matter.  It further held that the GIS SAR provided a valid basis for the trial justice’s award of fees on fees.  Accordingly, the Supreme Court affirmed the judgment of the Superior Court.



    ", - "Published_x0020_Date": "3/15/2022 10:56 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "698", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Sandra Tiernan v. Seth Magaziner, in his capacity as General Treasurer of the State of Rhode Island, et al., Nos. 19-101, 19-306 March 8, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/19-101, 306.pdf", - "FileLeafRef": "19-101, 306.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiff, Sandra Tiernan, appealed from and sought review on certiorari of a judgment of the Superior Court in favor of the defendants, Seth Magaziner and Frank J. Karpinski, in their capacities as General Treasurer of the State of Rhode Island and Executive Director of the Employees’ Retirement System of the State of Rhode Island, respectively (collectively ERSRI).  Ms. Tiernan challenged a decision of ERSRI which, pursuant to G.L. 1956 § 36 10 31, offset a workers’ compensation award against her accidental disability pension amounts paid pursuant to G.L. 1956 § 28 33 45.

    In March 2009, Ms. Tiernan, a state employee, retired as a member of ERSRI on an accidental disability pension.  Prior to her retirement, Ms. Tiernan had received workers’ compensation benefits.  Upon her retirement, she petitioned the Workers’ Compensation Court for a “coordinated benefit” under § 28-33-45.  Because Ms. Tiernan’s accidental disability pension was less than the amount of workers’ compensation she was receiving prior to her retirement, the Workers’ Compensation Court supplemented Ms. Tiernan’s retirement by awarding a coordinated benefit.

    Based on this new workers’ compensation award, ERSRI notified Ms. Tiernan that it would offset the coordinated benefit against her accidental disability pension, as required by § 36 10 31.

    Ms. Tiernan contested this decision, ultimately exhausting her administrative remedies and appealing the agency action to the Superior Court, which affirmed.  Before the Supreme Court, Ms. Tiernan maintained that she was entitled to both her full accidental disability pension and her coordinated benefit without a corresponding reduction to her pension.  Ms. Tiernan argued that the legislative intent expressed in the coordinated-benefits provision, § 28-33-45, should control.

    The Supreme Court affirmed the judgment of the Superior Court and ultimately the decision of ERSRI to offset the amounts she received as a coordinated benefit against Ms. Tiernan’s accidental disability retirement pension.  The Supreme Court reasoned that both § 36-10-31 and § 28-33-45 related to the same subject matter—the treatment of workers’ compensation benefits at the time an employee retires—and so they must be construed together and harmonized so that both could stand and be operative.  Applying principles of statutory construction, the Supreme Court held that § 36-10-31 applied to a more narrow classification of retirees and therefore should control in this case, a construction which allowed the intent of the Legislature as expressed in § 28-33-45 to stand with respect to non-ERSRI retirees.
     
    Therefore, the Supreme Court affirmed the Superior Court judgment. 
    ", - "Published_x0020_Date": "3/8/2022 11:10 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "699", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Maria C. Rosa v. PJC of Rhode Island, Inc. formerly Rite Aid of Rhode Island, Inc. a/k/a Rite Aid Pharmacy a/k/a Rite Aid Corporation, et al., No. 20-246 (March 8, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-246.pdf", - "FileLeafRef": "20-246.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiff, Maria Rosa, appealed from a March 10, 2020 judgment entered following a bench decision in Providence County Superior Court granting the motion for summary judgment filed by the defendant, Belltower Acquisitions, LLC (Belltower Acquisitions). Ms. Rosa argued on appeal that the Superior Court erred in granting Belltower Acquisitions’s motion for summary judgment because, she contended, it had not fully complied with the certificate provision of G.L. 1956 § 34-36.1-3.01 and so was jointly and severally liable for the injuries which she allegedly sustained as a result of a slip and fall incident on a sidewalk adjacent to Belltower Acquisitions’s property.

    The Supreme Court held that the Superior Court did not err when it concluded that the certificate requirement in § 34-36.1-3.01 was directory (and not mandatory)
    and when it consequently granted summary judgment to Belltower Acquisitions. Accordingly, the Supreme Court affirmed the judgment of the Superior Court.", - "Published_x0020_Date": "3/8/2022 11:10 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "697", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Gloria Nerney v. Town of Smithfield, No. 20-138 (March 4, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-138.pdf", - "FileLeafRef": "20-138.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiff, Gloria Nerney, appealed from a March 17, 2020 judgment of the Providence County Superior Court dismissing her amended complaint, in which she sought a writ of mandamus directing the defendant, the Town of Smithfield, to remove certain trees and plants that were planted by certain non-defendant neighbors on a municipally owned right of way.  On appeal, the plaintiff averred that the hearing justice erred in determining that she did not satisfy the criteria for the issuance of a writ of mandamus.

    The Supreme Court held that the hearing justice did not err in granting the Town’s motion to dismiss since the decision as to how to deal with the matters at issue falls within the discretionary authority of the Town, thereby making relief in the form of a writ of mandamus unavailable.  Accordingly, the Supreme Court affirmed the judgment of the Superior Court.", - "Published_x0020_Date": "3/4/2022 11:04 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "696", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Cody-Allen Zab v. Rhode Island Department of Corrections et al.; Jose R. Rivera\tv. State of Rhode Island Department of Corrections, by and through its Director, Patricia Coyne-Fague, in her official capacity, Nos. 19-459, 19-462 (March 2, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/19-459, 462.pdf", - "FileLeafRef": "19-459, 462.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiffs, Cody-Allen Zab and Jose R. Rivera, appealed from Superior Court judgments entered in favor of the Rhode Island Department of Corrections, Director Patricia Coyne-Fague in her official capacity, and Global Tel*Link Corporation.  Before the Supreme Court, the plaintiffs argued that the trial court erred in finding that it did not have jurisdiction to hear the plaintiffs’ claims based on G.L. 1956 § 13-6-1, Rhode Island’s civil death statute.

    The Supreme Court first addressed Zab’s claim that the civil death statute violates the Supremacy Clause of the United States Constitution and concluded that the hearing justice properly dismissed Zab’s federal claim on the merits.  The Supreme Court recognized that, under the relevant federal statute, the DOC and the DOC Director were not “persons” and Zab had no right of action against them.

    The Supreme Court then addressed plaintiffs’ contentions that the civil death statute unconstitutionally divested the Superior Court of authority to hear their negligence claims.  The Supreme Court concluded that the civil death statute violates article 1, section 5 of the Rhode Island Constitution because it denies plaintiffs of their fundamental right of access to the courts.  The Supreme Court applied strict scrutiny and concluded that the state failed to demonstrate a compelling reason to override the right of access to the courts that is textually guaranteed by the Rhode Island Constitution.

    The Supreme Court ultimately determined that the entirety of the civil death statute is unconstitutional and in clear contravention of the provisions of article 1, section 5, of the Rhode Island Constitution because it deprives those persons imprisoned at the Adult Correctional Institutions for life of their right to bring civil actions in our state courts. 
    \t
    ", - "Published_x0020_Date": "3/2/2022 11:03 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "695", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Shirley P. Morgan, in her capacity as the Administratrix for the Estate of Lisa A. Bicknell v. Richard C. Bicknell, No. 20-238 (March 2, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-238.pdf", - "FileLeafRef": "20-238.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The defendant, Richard C. Bicknell, appealed from a final judgment entered in favor of the plaintiff, Shirley P. Morgan, in her capacity as Administratrix for the Estate of Lisa A. Bicknell, following the grant of summary judgment in accordance with Rule 56 of the Superior Court Rules of Civil Procedure.  The defendant argued that the trial justice erred in granting summary judgment because a genuine issue of material fact remained as to whether the decedent’s failure to change the beneficiary on her retirement plan constituted a waiver of the defendant’s waiver of his interest in the retirement account under a Property Settlement Agreement (PSA) entered into in the Family Court in a divorce matter.
      
    The Supreme Court concluded that the decedent’s failure to remove the defendant as the beneficiary of the retirement plan was of no moment because this would not affect the defendant’s waiver contained in the PSA.  Therefore, the Court held that this was a matter of contract interpretation and, thus, the PSA controlled the merits of this appeal.
     
    The Supreme Court held that the PSA clearly and unambiguously stated that the defendant waived “any and all interest” in the retirement plan and that there was no evidence of any modification or waiver of the PSA in writing as required by the PSA.  Accordingly, the Court held that no genuine issue of material fact remained in dispute and that the trial justice properly granted summary judgment in favor of the plaintiff.

    Therefore, the Court affirmed the judgment of the Superior Court.", - "Published_x0020_Date": "3/2/2022 11:02 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "694", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Elida Mezini v. Leart Mezini, No. 20-49, 50 (March 1, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-49, 50.pdf", - "FileLeafRef": "20-49, 50.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "In these consolidated cross-appeals, the defendant, Leart Mezini, challenged the trial justice’s equitable distribution of property, contending that the trial justice either erred in his designation of property as marital or abused his discretion in awarding the plaintiff, Elida Mezini, certain property. The plaintiff contended that the trial justice erred in failing to award her one-half of the value of the reduction of the mortgage on the marital domicile.

    The Supreme Court held that the trial justice did not err in any of his designations or distributions of property. The Supreme Court determined that the trial justice did not overlook or misconceive material evidence because he assessed the parties’ credibility and thoroughly examined the factors set forth in G.L. 1956 § 15-5-16.1(a) in making the distributions. Because the Supreme Court concluded that the trial justice had properly determined the extent and value of the marital estate and then equitably distributed those assets between the parties, the Court declined to address whether the increase in value of an asset acquired by a spouse prior to marriage, and solely titled in that spouse’s name, includes the reduction of a mortgage paid with marital funds.

    Accordingly, the Supreme Court affirmed the decision pending entry of final judgment of the Family Court. ", - "Published_x0020_Date": "3/1/2022 11:03 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "693", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Thomas Shannahan et al. v. Rhode Island Interlocal Risk Management Trust, No. 20-81 (March 1, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-81.pdf", - "FileLeafRef": "20-81.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiffs appealed from a Superior Court judgment in favor of the defendant, following the grant of the defendant’s motion for summary judgment pursuant to Rule 56 of the Superior Court Rules of Civil Procedure.  After this Court had affirmed summary judgment relative to the plaintiffs’ underlying claims against the City of Central Falls in a prior case, the defendant filed a motion for summary judgment to dismiss plaintiffs’ bad-faith insurance claim against the defendant.  The trial justice granted its motion, and the plaintiffs appealed.
      
    The Supreme Court concluded that the plaintiffs were not the insureds under defendant’s insurance policy, nor assignees for purposes of a bad-faith claim.  As third-party claimants, the plaintiffs did not obtain any judgment in their favor under the insurance policy—let alone a judgment in excess of the insurance policy limits—both of which are required to properly assign a bad-faith claim to a third party.  Lastly, the Court held that, even if the plaintiffs were assignees to the City of Central Falls under the defendant’s insurance policy, they did not meet their burden for a bad-faith action by showing an absence of a reasonable basis for denial of their claims, or by establishing that the defendant intentionally or recklessly failed to properly investigate their claims.

    The Supreme Court therefore affirmed the judgment of the Superior Court.", - "Published_x0020_Date": "3/1/2022 11:02 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "692", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Katherine Baker and Morgan McCarthy, Individually & p.p.a. Autumn McCarthy v. Women & Infants Hospital of Rhode Island, No. 19-489 (February 22, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/19-489.pdf", - "FileLeafRef": "19-489.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The plaintiffs appealed from a Superior Court order denying their motion for a new trial following a jury verdict in favor of the defendant, Women & Infants Hospital of Rhode Island, in this medical negligence action.  Before the Supreme Court, the plaintiffs contended that the trial justice erred in denying their motion for a new trial because, they maintained, the defendant’s closing argument was plainly improper, incurably prejudiced the plaintiffs, and produced a tainted verdict.

    The Supreme Court concluded that the comments made by the defendant exceeded the proper bounds of closing argument and were plainly improper because the defendant directed the jury to send a message by their verdict.  The Supreme Court also held that the trial justice was clearly wrong in finding that the defendant’s closing argument did not result in prejudice to the plaintiffs.  Lastly, the Supreme Court concluded that the trial justice’s admonitions to the jury were insufficient to neutralize the prejudicial effect of defense counsel’s comments.

    Accordingly, the Supreme Court reversed the order of the Superior Court and remanded the case to the Superior Court for a new trial.", - "Published_x0020_Date": "2/22/2022 1:09 PM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "691", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Webster Bank, National Association v. Arnold S. Rosenbaum et al., No. 20-117 (February 16, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-117.pdf", - "FileLeafRef": "20-117.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The defendants, Arnold S. Rosenbaum and Judith A. Rosenbaum, appealed from of a Superior Court judgment in favor of the plaintiff, Webster Bank, National Association, following the trial justice’s decision on the parties’ cross-motions for summary judgment.  The defendants contended that the trial justice erred in applying the Rhode Island ten-year statute of limitations pursuant to G.L. 1956 § 9-1-13, rather than the Connecticut six-year statute of limitations under Connecticut General Statutes § 52-576, which would have barred plaintiff’s civil action against them for breach of a loan agreement.  The defendants based their argument upon a governing-law provision in the loan agreement.

    The Supreme Court concluded that, because the loan agreement did not clearly specify either the choice of forum or the statute of limitations that would apply to an action arising from a breach of the loan agreement, the Court was bound to apply its interest-weighing approach to determine which state’s statute of limitations would apply.  The Supreme Court held that the trial justice did not err in finding that the Rhode Island statute of limitations applied under the interest-weighing test and that plaintiff’s claim was thus not barred.

    Accordingly, the Supreme Court affirmed the judgment of the Superior Court.", - "Published_x0020_Date": "2/16/2022 11:12 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "690", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Sebastian Wells Atryzek v. State of Rhode Island, No. 19-215, (February 11, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/19-215.pdf", - "FileLeafRef": "19-215.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The respondent, the State of Rhode Island, sought review on certiorari of a Superior Court judgment granting an application for postconviction relief by the applicant, Sebastian Atryzek, and an order vacating four convictions for failure to register as a sexual offender in violation of G.L. 1956 chapter 37.1 of title 11.  The state asserted that the trial justice erred in (1) limiting the scope of this Court’s remand in Atryzek v. State, 197 A.3d 334 (R.I. 2018); (2) concluding that the applicant had no duty to register as a sexual offender because, the state contended, the applicant had an obligation to register that arose from his convictions for failure to register; and (3) vacating Atryzek’s failure-to-register convictions.

    The Supreme Court concluded that the trial justice erred in vacating two of the four convictions, that the trial justice did not err in limiting the scope of remand, and that the applicant is no longer required to register as a sex offender in Rhode Island.  The Supreme Court concluded that two of the applicant’s failure-to-register offenses occurred while he had an obligation to register, and thus, the trial justice erred in vacating those convictions on the basis that the applicant had no duty to register when he pled nolo contendere to the offenses.  The Supreme Court concluded that the state’s theory, that the applicant had a new obligation to register arising from his failure-to-register convictions, was outside the scope of the Court’s remand because it was a significant legal issue that was not raised in the initial postconviction-relief proceedings and was, thus, barred by the raise-or-waive rule.

    Accordingly, the Supreme Court affirmed in part and quashed in part the judgment of the Superior Court and declared that the applicant is no longer required to register as a sexual offender in Rhode Island.



    ", - "Published_x0020_Date": "2/11/2022 11:09 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "689", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Maureen Mowry v. Allstate Insurance Company, No. 19-297 (February 10, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/19-297.pdf", - "FileLeafRef": "19-297.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The defendant, Allstate Insurance Company, appealed from a judgment entered in favor of the plaintiff, Maureen Mowry, granting the plaintiff’s motion for additur.  On appeal, the defendant asserted that the trial justice erred in granting the additur because the jury’s determination of damages was not against the weight of the evidence, and because the trial justice erroneously found that the damage award was not truly responsive and failed to provide substantial justice between the parties.  Additionally, the defendant took issue with a comment made by the trial justice in rendering his decision on the plaintiff’s motion for a new trial and/or additur regarding an award the plaintiff received in a settlement with the tortfeasor’s insurance carrier.

    The Supreme Court carefully reviewed the trial justice’s analysis in granting the plaintiff’s motion for additur and concluded that the trial justice did not overlook material evidence or commit clear error.  The Supreme Court held that there was sufficient evidence relating to the plaintiff’s injuries that reasonably warranted the granting of an additur.  Furthermore, the Supreme Court dismissed the defendant’s contention with respect to the comment made by the trial justice concerning the settlement between the plaintiff and the tortfeasor’s insurance carrier.  Accordingly, the Supreme Court affirmed the judgment of the Superior Court. 

    ", - "Published_x0020_Date": "2/10/2022 11:03 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "688", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Verizon New England Inc. v. Neena S. Savage, in her capacity as Tax Administrator for the State of Rhode Island, No. 20-40 (February 9, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-40.pdf", - "FileLeafRef": "20-40.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The movants, the City of Pawtucket and the City of Cranston, sought review by way of writ of certiorari of a District Court decision and order denying movants’ motions to intervene in an appeal brought by the plaintiff, Verizon New England Inc., to challenge the defendant state tax administrator’s assessment of tangible personal property tax.  The movants asserted that the trial judge erred in concluding that the City of Providence adequately represented the movants’ interests in the action by focusing too narrowly on the comparative litigation positions, rather than the distinctive interests of the cities.
      
    The Supreme Court concluded that the trial judge did not err in denying the motions.  The Supreme Court concluded that the trial judge’s assessment of the four requisites for intervention of right, in accordance with Rule 24 of the District Court Civil Rules, as interpreted by caselaw, was proper and that the movants were required to overcome a presumption of adequate representation and failed to do so.  Additionally, because the movants failed to demonstrate a tangible basis and to provide an adequate explanation as to why the City of Providence did not adequately represent the movants’ interests, the Supreme Court concluded that the trial judge’s reliance on the respective positions was appropriate.  Accordingly, the Supreme Court affirmed the order of the District Court.
    \t

    ", - "Published_x0020_Date": "2/9/2022 10:52 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "687", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "State v. Erik Valdez, No. 20-89 (February 2, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-89.pdf", - "FileLeafRef": "20-89.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The defendant, Erik Valdez, appealed from a Superior Court judgment of conviction for second-degree sexual assault, breaking and entering, and disorderly conduct.  At trial, the defendant moved for a judgment of acquittal on all charges pursuant to Rule 29 of the Superior Court Rules of Criminal Procedure.  After his conviction, the defendant moved for a new trial on all convicted counts pursuant to Rule 33 of the Superior Court Rules of Criminal Procedure.  The trial justice denied both motions.
     
    On appeal, the defendant assigned error to the trial justice’s denial of his motion for judgment of acquittal on the charge of disorderly conduct and denial of his motion for new trial.  In appealing the trial justice’s denial of his motion for judgment of acquittal, the defendant argued that the state failed to produce sufficient evidence to establish that he engaged in tumultuous behavior.  The Supreme Court held that the state produced sufficient evidence to establish that the defendant engaged in tumultuous behavior when he entered the complaining witness’s apartment uninvited and resisted her vigorous attempts to remove him.

    In appealing the denial of his motion for new trial, the defendant maintained that the weight of the evidence was insufficient to support a conviction, asserting that the trial justice overlooked and misconceived material evidence, failed to assess the credibility of the state’s witnesses and the weight of the evidence, and inadequately explained his decision concerning the count of disorderly conduct. The Supreme Court determined that the trial justice properly exercised his judgment in analyzing the evidence presented and the credibility of the witnesses, did not overlook or misconceive material evidence, and sufficiently articulated his reasons for his decision.
      
    Thus, the Supreme Court affirmed the judgment of conviction of the Superior Court.
    ", - "Published_x0020_Date": "2/2/2022 11:47 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "686", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Paul R. Boisse et al. v. Joseph R. Miller, Jr. d/b/a Joseph Miller Construction et al., No. 20-78 (February 1, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/20-78.pdf", - "FileLeafRef": "20-78.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The defendants appealed from a Superior Court judgment arising from their sale of real property with improvements that encroached upon an adjacent lot.  The trial justice found that the defendants were liable for the plaintiffs’ damages arising from that sale and that defendant Joseph Miller’s insurer was not liable for his intentional acts.  The defendants asserted that the insurer’s liability in a separate and unrelated matter should have been accounted for in determining its liability in this matter; the defendants also raised issues with an amended pleading, trial events as reflected on the docket, language used in the judgment, and defendant Lynne Miller’s counsel’s lack of communication with her regarding trial outcomes.
     
    The Supreme Court concluded that the issues raised by the defendants regarding the insurer’s liability in another action, the amended pleading, and the language in the judgment were all precluded for review by the Court according to the raise-or-waive rule.  The Supreme Court addressed the defendants’ concerns about the events as reflected in the docket, concluding that those events were ordinary trial practice and procedure.  The Court declined to review the defendants’ issue with counsel, as it was not properly before the Court, having not first been raised in the trial court.  Accordingly, the Supreme Court affirmed the judgment of the Superior Court.

     
    ", - "Published_x0020_Date": "2/1/2022 11:10 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "685", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "Providence Place Group Limited, Partnership, et al. v. State of Rhode Island, acting by and through Division of Taxation, No. 19-298 (January 25, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/19-298.pdf", - "FileLeafRef": "19-298.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The state sought, by way of certiorari, review of a District Court judgment in favor of the plaintiffs, Providence Place Group Limited, Partnership and Rouse Providence LLC. The state contended that the District Court judge erred by improperly weighing evidence; failing to address the issue of assignability or transferability of tax exemptions; and failing to construe and apply the tax-exemption provisions of the Rhode Island Commerce Corporation Act, G.L. 1956 chapter 64 of title 42, so as to not violate the nondelegation doctrine of the Rhode Island Constitution.

    The Supreme Court held that there were no material facts in dispute that were outcome-determinative and that the plaintiffs were entitled to judgment as a matter of law. The Supreme Court determined that the General Assembly clearly and unambiguously indicated that the Providence Place Mall was to remain a project of the Economic Development Corporation post-construction. The Supreme Court further concluded that § 42-64-20(c) exempted the mall from imposition of a real estate conveyance tax and that the delegation of powers to the Economic Development Corporation was constitutionally permissible because the standards accompanying the delegation were clear. The Supreme Court therefore affirmed the judgment of the District Court.", - "Published_x0020_Date": "1/25/2022 11:09 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "684", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "Title": "State v. Juan P. Benitez, No. 18-240 (January 25, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOpinions/18-240.pdf", - "FileLeafRef": "18-240.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Created_x0020_Date.ifnew": "", - "ContentTypeId": "0x0101007380AA89542B794A8F1AC1A97FA338D1", - "Description0": "The defendant, Juan P. Benitez, appealed from a July 28, 2017 judgment of conviction and commitment on one count of second-degree child molestation entered following a jury trial .  On appeal, the defendant contended that: (1) “the trial court erred when it permitted [a physician testifying as an expert witness] to testify to hearsay statements unrelated to medical diagnosis or treatment;” and (2) “the trial court impermissibly allowed the state to mislead the jury by impeaching a witness with a statement he did not author, sign, or review .”

    The Supreme Court held that the trial justice did not abuse his discretion in admitting certain hearsay statements pursuant to the medical diagnosis or treatment exception to the hearsay rule.  The Court further opined that, even if it had been an abuse of discretion to allow the testimony at issue, the testimony was cumulative and harmless .  The Supreme Court further held that the defendant’s contentions with respect to the purported impeachment of a certain witness were waived .  Consequently, the Court affirmed the judgment of the Superior Court. ", - "Published_x0020_Date": "1/25/2022 11:08 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - } - ], - "FirstRow": 1, - "LastRow": 30, - "NextHref": "?Paged=TRUE&p_SortBehavior=0&p_Published_x0020_Date=20220125%2016%3a08%3a00&p_ID=684&PageFirstRow=31&View=13a71099-9ab2-4894-8d79-be0983f66d3b", - "FilterLink": "?", - "ForceNoHierarchy": "1", - "HierarchyHasIndention": "" -} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ri_u_example.compare.json b/tests/examples/opinions/united_states/ri_u_example.compare.json deleted file mode 100644 index de11d1d60..000000000 --- a/tests/examples/opinions/united_states/ri_u_example.compare.json +++ /dev/null @@ -1,79 +0,0 @@ -[ - { - "case_dates": "2022-03-16", - "case_names": "Maria Rosa v. Wakefern Food Corporation a.k.a. Price Rite of Cranston", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOrders/20-255.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-255", - "summaries": "", - "case_name_shorts": "" - }, - { - "case_dates": "2022-03-04", - "case_names": "State v. Brian Smith", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOrders/20-139.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-139", - "summaries": "", - "case_name_shorts": "" - }, - { - "case_dates": "2022-03-04", - "case_names": "Amber Preston v. Town of Hopkinton", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOrders/20-223.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-223", - "summaries": "", - "case_name_shorts": "" - }, - { - "case_dates": "2022-02-16", - "case_names": "Terry Ann Smith v. Andrew Smith", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOrders/21-42.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21-42", - "summaries": "", - "case_name_shorts": "" - }, - { - "case_dates": "2021-11-24", - "case_names": "In re K.S.", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOrders/20-221.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-221", - "summaries": "", - "case_name_shorts": "In re K.S." - }, - { - "case_dates": "2021-11-10", - "case_names": "Clean Harbors Environmental Services, Inc. v. 96-108 Pine Street LLC v. J.R. Vinagro Corporation J.R. Vinagro Corporation v. 96-108 Pine Street LLC", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOrders/19-164, 165.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-164, 165", - "summaries": "", - "case_name_shorts": "" - }, - { - "case_dates": "2021-10-15", - "case_names": "In the Matter of Miriam Gordon Cauley", - "download_urls": "https://www.courts.ri.gov/Courts/SupremeCourt/SupremeOrders/21-162.pdf", - "precedential_statuses": "Unpublished", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "21-162", - "summaries": "", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/ri_u_example.json b/tests/examples/opinions/united_states/ri_u_example.json deleted file mode 100644 index 07869318f..000000000 --- a/tests/examples/opinions/united_states/ri_u_example.json +++ /dev/null @@ -1,184 +0,0 @@ -{ - "Row": [ - { - "ID": "134", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "DocumentLibraryTitleLink": "Maria Rosa v. Wakefern Food Corporation a.k.a. Price Rite of Cranston, No. 20-255 (March 16, 2022)", - "Title": "Maria Rosa v. Wakefern Food Corporation a.k.a. Price Rite of Cranston, No. 20-255 (March 16, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOrders/20-255.pdf", - "FileLeafRef": "20-255.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Published_x0020_Date": "3/16/2022 11:16 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "133", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "DocumentLibraryTitleLink": "Amber Preston v. Town of Hopkinton et al., No. 20-223 (March 4, 2022)", - "Title": "Amber Preston v. Town of Hopkinton et al., No. 20-223 (March 4, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOrders/20-223.pdf", - "FileLeafRef": "20-223.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Published_x0020_Date": "3/4/2022 11:08 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "132", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "DocumentLibraryTitleLink": "State v. Brian Smith, No. 20-139 (March 4, 2022)", - "Title": "State v. Brian Smith, No. 20-139 (March 4, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOrders/20-139.pdf", - "FileLeafRef": "20-139.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Published_x0020_Date": "3/4/2022 11:07 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "131", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "DocumentLibraryTitleLink": "Terry Ann Smith v. Andrew Smith, No 21-42 (February 16, 2022)", - "Title": "Terry Ann Smith v. Andrew Smith, No 21-42 (February 16, 2022)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOrders/21-42.pdf", - "FileLeafRef": "21-42.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Published_x0020_Date": "2/16/2022 11:14 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "130", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "DocumentLibraryTitleLink": "In re K.S., 20-221 (November 24, 2021) ", - "Title": "In re K.S., 20-221 (November 24, 2021) ", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOrders/20-221.pdf", - "FileLeafRef": "20-221.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Published_x0020_Date": "11/24/2021 11:53 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "129", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "DocumentLibraryTitleLink": "Clean Harbors Environmental Services, Inc. v. 96-108 Pine Street LLC v. J.R. Vinagro Corporation; J.R. Vinagro Corporation v. 96-108 Pine Street LLC, 19-164, 165 (November 10, 2021)", - "Title": "Clean Harbors Environmental Services, Inc. v. 96-108 Pine Street LLC v. J.R. Vinagro Corporation; J.R. Vinagro Corporation v. 96-108 Pine Street LLC, 19-164, 165 (November 10, 2021)", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOrders/19-164, 165.pdf", - "FileLeafRef": "19-164, 165.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Published_x0020_Date": "11/10/2021 11:32 AM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - }, - { - "ID": "128", - "PermMask": "0x1000031041", - "FSObjType": "0", - "HTML_x0020_File_x0020_Type": "", - "DocumentLibraryTitleLink": "In the Matter of Miriam Gordon Cauley, No. 21-162, October 15, 2021 ", - "Title": "In the Matter of Miriam Gordon Cauley, No. 21-162, October 15, 2021 ", - "File_x0020_Type": "pdf", - "File_x0020_Type.mapapp": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapcon": "", - "HTML_x0020_File_x0020_Type.File_x0020_Type.mapico": "icpdf.png", - "serverurl.progid": "", - "ServerRedirectedEmbedUrl": "", - "File_x0020_Type.progid": "", - "File_x0020_Type.url": "FALSE", - "FileRef": "/Courts/SupremeCourt/SupremeOrders/21-162.pdf", - "FileLeafRef": "21-162.pdf", - "CheckoutUser": "", - "CheckedOutUserId": "", - "IsCheckedoutToLocal": "0", - "Published_x0020_Date": "10/15/2021 12:37 PM", - "Published_x0020_Date.FriendlyDisplay": "", - "Item_x002f_Page": "Item", - "Term": "2021-2022" - } - ], - "FirstRow": 1, - "LastRow": 7, - "FilterLink": "?", - "ForceNoHierarchy": "1", - "HierarchyHasIndention": "" -} \ No newline at end of file diff --git a/tests/examples/opinions/united_states/sc_example.compare.json b/tests/examples/opinions/united_states/sc_example.compare.json index f287cd7e9..67e07b83f 100644 --- a/tests/examples/opinions/united_states/sc_example.compare.json +++ b/tests/examples/opinions/united_states/sc_example.compare.json @@ -1,13 +1,90 @@ [ { - "case_dates": "2014-05-14", - "case_names": "York County v. SCDHEC", - "download_urls": "/opinions/HTMLFiles/SC/27387.pdf", + "case_dates": "2024-08-21", + "case_names": "Jolly v. Fisher Controls International, LLC and Crosby Valve, LLC", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/SC/28233.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "27387", - "summaries": "This case is dismissed as improvidently granted.", - "case_name_shorts": "SCDHEC" + "docket_numbers": "28233", + "summaries": "The primary issues in this case involve a civil trial court's power to grant a motion for a new trial nisi. We find the trial court applied the correct standard for decision in granting the plaintiffs' motion for a new trial nisi additur, acted within its discretion in finding the jury verdict inadequate, and followed the proper procedure by permitting the non-moving party to reject the nisi amount in favor of a new trial. We also find the trial court acted within its discretion in allocating the proceeds of pretrial settlements for the purpose of setoff. We affirm.", + "case_name_shorts": "Jolly" + }, + { + "case_dates": "2024-08-21", + "case_names": "In the Matter of Everett Joseph Mercer", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/SC/28232.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "28232", + "summaries": "In this attorney disciplinary matter, the Court imposes a public reprimand.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-21", + "case_names": "Alvetta L. Massenberg v. Clarendon County Treasurer", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/SC/28234.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "28234", + "summaries": "Alvetta Massenberg appeals the master-in-equity's refusal to set aside a delinquent tax sale of her real property. She argues the sale was invalid because the statutory notice was not posted in a \"conspicuous\" place as required by subsection 12-51-40(c) of the South Carolina Code (Supp. 2023). The court of appeals affirmed. Massenberg v. Clarendon Cnty. Treasurer, Op. No. 2022-UP-410 (S.C. Ct. App. filed Nov. 16, 2022). We find the required notice was not posted in a conspicuous place and reverse.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-14", + "case_names": "State v. Gregg Pickrell", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/SC/28229.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "28229", + "summaries": "We affirm as modified the decision of the court of appeals in State v. Pickrell, 435 S.C. 417, 867 S.E.2d 465 (Ct. App. 2021).", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-14", + "case_names": "Justin R. Cone v. State", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/SC/28230.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "28230", + "summaries": "Justin Ryan Cone was convicted of first-degree criminal sexual conduct with a minor. The trial court refused the State's request for a jury instruction that, under section 16-3-657 of the South Carolina Code (2015), the testimony of an alleged victim of criminal sexual conduct need not be corroborated. However, over Cone's objection, the trial court allowed the State to cite and quote the statute during its closing argument. The court of appeals affirmed Cone's conviction, holding the issue of whether the State could argue section 16-3-657 was unpreserved. We granted Cone's petition for a writ of certiorari and now reverse the court of appeals and remand for a new trial.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-14", + "case_names": "In the Matter of Jeffrey Alton Phillips", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/SC/28231.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "28231", + "summaries": "In this attorney disciplinary matter, the Court accepts the agreement for discipline and imposes a six-month definite suspension.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-07", + "case_names": "State v. Olandio R. Workman", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/SC/28227.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "28227", + "summaries": "The Court affirms in part and reverses in part the court of appeals' decision in State v. Workman, 437 S.C. 62, 876 S.E.2d 151 (Ct. App. 2022).", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-07", + "case_names": "E.G. and J.J. v. SCDSS", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/SC/28228.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "28228", + "summaries": "The sole question we address in this appeal is whether the provision in subsection 63-9-780(C) of the South Carolina Code (2010) requiring that \"All files and records pertaining to the adoption proceedings in the State Department of Social Services . . . are confidential and must be withheld from inspection except upon court order for good cause shown\" insulates those files and records from discovery in a civil action. The answer is \"No.\" Categorically, if any such files or records meet the criteria for civil discovery under Rules 26 to 37 of the South Carolina Rules of Civil Procedure, then \"good cause\" exists under section 63-9-780 as to those files or records. We have no concern that civil discovery of the files or records will jeopardize their confidentiality because the circuit or family court can and must preserve that confidentiality through the use of an appropriate protective order under Rule 26(c). We reverse the court of appeals' decision affirming the trial court's refusal to require disclosure of the documents.", + "case_name_shorts": "SCDSS" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/sc_example.html b/tests/examples/opinions/united_states/sc_example.html index 13aee4617..af40ac2f9 100644 --- a/tests/examples/opinions/united_states/sc_example.html +++ b/tests/examples/opinions/united_states/sc_example.html @@ -1,1274 +1,985 @@ - - - - - - - - - - - - - - - - SC Judicial Department - - - - - - - - - - - - - - - - - + + + Supreme Court - South Carolina Judicial Branch + + + + + + + + + + + + + + + + + + + + + + + + + + + + }); - + - - - - -
    - Supreme Court Seal
    - -
    - South Carolina -
    - -
    - JUDICIAL DEPARTMENT -
    - - - - - - - - - - - - - - - - - - -
    - Supreme Court Published Opinions - - May 2014 -
    - - -
    - -

    Note: Beginning in June 2012, opinions will be posted as Adobe PDFs. You can download a free - copy of Adobe Reader here.

    - -

    The summary following each opinion is prepared to offer lawyers and the public a general overview - of what a particular opinion decides. The summary is not necessarily a full description of the - issues discussed in an opinion.

    - - - 5-14-2014 - Opinions

    - -

    - - 27387 - - York County v. SCDHEC
    -

    This case is dismissed as improvidently granted.
    - -

    - - -

    - - - - - - -
    - -
    - -
    - + + + -
    -
    2013
    -
    - - - January
    - - - February
    - - - March
    - - - April
    - - - May
    - - - June
    - - - July
    - - - August
    - - - September
    - - - October
    - - - November
    - - - December
    - + +
    + +
    + + +
    +

    Published Opinions

    -
    - -
    -
    2012
    - + +
    +
    +
    +
    +

    Supreme Court

    +

    The summary following each opinion is prepared to offer lawyers and the public a general overview of what a particular opinion decides. The summary is not necessarily a full description of the issues discussed in an opinion.

    +
    +
    + +
    -
    - -
    + + + +
    +
    +
    +
    + Prev +
    +
    +

    August 2024

    +
    +
    + Next +
    -
    - -
    -
    2010
    -
    - - January
    - - - February
    - - - March
    - - - April
    - - - May
    - - - June
    - - - July
    - - - August
    - - - September
    - - - October
    - - - November
    - - - December
    +
    +
    +

    August 7, 2024

    +
    +
    +
    +

    28227

    +

    The State v. Olandio R. Workman

    + +
    + +
    +

    The Court affirms in part and reverses in part the court of appeals' decision in State v. Workman, 437 S.C. 62, 876 S.E.2d 151 (Ct. App. 2022).

    +
    + Download +
    +
    +
    +

    28228

    +

    E.G. and J.J. v. SCDSS

    + +
    + +
    +

    The sole question we address in this appeal is whether the provision in subsection 63-9-780(C) of the South Carolina Code (2010) requiring that "All files and records pertaining to the adoption proceedings in the State Department of Social Services . . . are confidential and must be withheld from inspection except upon court order for good cause shown" insulates those files and records from discovery in a civil action. The answer is "No." Categorically, if any such files or records meet the criteria for civil discovery under Rules 26 to 37 of the South Carolina Rules of Civil Procedure, then "good cause" exists under section 63-9-780 as to those files or records. We have no concern that civil discovery of the files or records will jeopardize their confidentiality because the circuit or family court can and must preserve that confidentiality through the use of an appropriate protective order under Rule 26(c). We reverse the court of appeals' decision affirming the trial court's refusal to require disclosure of the documents.

    +
    + Download +
    +
    +

    August 14, 2024

    +
    +
    +
    +

    28229

    +

    The State v. Gregg Pickrell

    + +
    + +
    +

    We affirm as modified the decision of the court of appeals in State v. Pickrell, 435 S.C. 417, 867 S.E.2d 465 (Ct. App. 2021).

    +
    + Download +
    +
    +
    +

    28230

    +

    Justin R. Cone v. State

    + +
    + +
    +

    Justin Ryan Cone was convicted of first-degree criminal sexual conduct with a minor. The trial court refused the State's request for a jury instruction that, under section 16-3-657 of the South Carolina Code (2015), the testimony of an alleged victim of criminal sexual conduct need not be corroborated. However, over Cone's objection, the trial court allowed the State to cite and quote the statute during its closing argument. The court of appeals affirmed Cone's conviction, holding the issue of whether the State could argue section 16-3-657 was unpreserved. We granted Cone's petition for a writ of certiorari and now reverse the court of appeals and remand for a new trial.

    +
    + Download +
    +
    +
    +

    28231

    +

    In the Matter of Jeffrey Alton Phillips

    + +
    + +
    +

    In this attorney disciplinary matter, the Court accepts the agreement for discipline and imposes a six-month definite suspension.

    +
    + Download +
    +
    +

    August 21, 2024

    +
    +
    +
    +

    28232

    +

    In the Matter of Everett Joseph Mercer

    + +
    + +
    +

    In this attorney disciplinary matter, the Court imposes a public reprimand.

    +
    + Download +
    +
    +
    +

    28233

    +

    Jolly v. Fisher Controls International, LLC and Crosby Valve, LLC

    + +
    + +
    +

    The primary issues in this case involve a civil trial court's power to grant a motion for a new trial nisi. We find the trial court applied the correct standard for decision in granting the plaintiffs' motion for a new trial nisi additur, acted within its discretion in finding the jury verdict inadequate, and followed the proper procedure by permitting the non-moving party to reject the nisi amount in favor of a new trial. We also find the trial court acted within its discretion in allocating the proceeds of pretrial settlements for the purpose of setoff. We affirm.

    +
    + Download +
    +
    +
    +

    28234

    +

    Alvetta L. Massenberg v. Clarendon County Treasurer

    + +
    + +
    +

    Alvetta Massenberg appeals the master-in-equity's refusal to set aside a delinquent tax sale of her real property. She argues the sale was invalid because the statutory notice was not posted in a "conspicuous" place as required by subsection 12-51-40(c) of the South Carolina Code (Supp. 2023). The court of appeals affirmed. Massenberg v. Clarendon Cnty. Treasurer, Op. No. 2022-UP-410 (S.C. Ct. App. filed Nov. 16, 2022). We find the required notice was not posted in a conspicuous place and reverse.

    +
    + Download +
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - +
    + + + + + + + + diff --git a/tests/examples/opinions/united_states/sc_example_2.compare.json b/tests/examples/opinions/united_states/sc_example_2.compare.json deleted file mode 100644 index bcdeff7ae..000000000 --- a/tests/examples/opinions/united_states/sc_example_2.compare.json +++ /dev/null @@ -1,68 +0,0 @@ -[ - { - "case_dates": "2019-01-30", - "case_names": "State v. Herrera", - "download_urls": "/opinions/HTMLFiles/SC/27861.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "27861", - "summaries": "The Court reverses the court of appeals and remands to the trial court for a new trial, finding it was an abuse of discretion to permit the State's expert, Detective Hunnicutt, to testify to the weight of the marijuana.", - "case_name_shorts": "Herrera" - }, - { - "case_dates": "2019-01-23", - "case_names": "State v. Cardwell", - "download_urls": "/opinions/HTMLFiles/SC/27860.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "27860", - "summaries": "The Court granted certiorari to review the Court of Appeals's decision in State v. Cardwell, 414 S.C. 416, 778 S.E.2d 483 (Ct. App. 2015), wherein the Court of Appeals upheld the circuit court's denial of a motion to suppress a video file seized from Cardwell's computer. We affirm as modified.", - "case_name_shorts": "Cardwell" - }, - { - "case_dates": "2019-01-16", - "case_names": "In the Matter of Snow", - "download_urls": "/opinions/HTMLFiles/SC/27858.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "27858", - "summaries": "Daryl Snow appeals his commitment as a sexually violent predator under the Sexually Violent Predator Act. He argues his diagnosis of Other Specified Personality Disorder is legally insufficient to meet the constitutional and statutory requirements for commitment under the Act, and thus the trial court erred when it denied his motions for a directed verdict and judgment notwithstanding the verdict (JNOV). The court of appeals affirmed his commitment in an unpublished opinion. We affirm the court of appeals.", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-16", - "case_names": "In the Matter of Meehan", - "download_urls": "/opinions/HTMLFiles/SC/27859.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "27859", - "summaries": "The Court found disbarment was the appropriate sanction to impose upon respondent as reciprocal discipline following her resignation in lieu of discipline from the Texas State Bar.", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-04", - "case_names": "SC Public Interest Foundation v. SC House", - "download_urls": "/opinions/HTMLFiles/SC/27857.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "27857", - "summaries": "The Court certified an appeal to the court of appeals to review the trial court's dismissal of Appellant's case, alleging Act 275 of 2016 violated article III, section 17 of the South Carolina Constitution (the One Subject Rule). We hold Act 275 complies with the One Subject Rule.", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-04", - "case_names": "Lawrence v. General Panel Corp.", - "download_urls": "/opinions/HTMLFiles/SC/27856.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "27856", - "summaries": "The Court answers the certified question from the United States District Court for the District of South Carolina, \"The 2005 amendments to section 15-3-640 of the South Carolina Code (Supp. 2018) did not supersede the Supreme Court of South Carolina's decision in Ocean Winds Corp. of Johns Island v. Lane, 347 S.C. 416, 556 S.E.2d 377 (2001).\"", - "case_name_shorts": "Lawrence" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/sc_example_2.html b/tests/examples/opinions/united_states/sc_example_2.html deleted file mode 100644 index cbdee865e..000000000 --- a/tests/examples/opinions/united_states/sc_example_2.html +++ /dev/null @@ -1,1504 +0,0 @@ - - - - - - - -SC Judicial Department - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - Supreme Court Seal -
    - -
    - -
    - Supreme Court Seal -
    South Carolina
    Judicial Department
    -
    -
    - -
    -
    - - - - -
    -
    -
    -
    - - - - -
    -
    - - - -
    - Supreme Court Published Opinions - - January 2019
    - - -

    Note: Beginning in June 2012, opinions will be posted as Adobe PDFs. You can download a free copy of Adobe Reader here.

    - -

    The summary following each opinion is prepared to offer lawyers and the public a general overview of what a particular opinion decides. The summary is not necessarily a full description of the -issues discussed in an opinion.


    - - - 1-4-2019 - Opinions

    - -

    - - 27856 - Lawrence v. General Panel Corp.
    -

    The Court answers the certified question from the United States District Court for the District of South Carolina, "The 2005 amendments to section 15-3-640 of the South Carolina Code (Supp. 2018) did not supersede the Supreme Court of South Carolina's decision in Ocean Winds Corp. of Johns Island v. Lane, 347 S.C. 416, 556 S.E.2d 377 (2001)."
    - -

    - -

    - - 27857 - SC Public Interest Foundation v. SC House
    -

    The Court certified an appeal to the court of appeals to review the trial court's dismissal of Appellant's case, alleging Act 275 of 2016 violated article III, section 17 of the South Carolina Constitution (the One Subject Rule). We hold Act 275 complies with the One Subject Rule.
    - -

    - - 1-16-2019 - Opinions

    - -

    - - 27858 - In the Matter of Snow
    -

    Daryl Snow appeals his commitment as a sexually violent predator under the Sexually Violent Predator Act. He argues his diagnosis of Other Specified Personality Disorder is legally insufficient to meet the constitutional and statutory requirements for commitment under the Act, and thus the trial court erred when it denied his motions for a directed verdict and judgment notwithstanding the verdict (JNOV). The court of appeals affirmed his commitment in an unpublished opinion. We affirm the court of appeals.
    - -

    - -

    - - 27859 - In the Matter of Meehan
    -

    The Court found disbarment was the appropriate sanction to impose upon respondent as reciprocal discipline following her resignation in lieu of discipline from the Texas State Bar.
    - -

    - - 1-23-2019 - Opinions

    - -

    - - 27860 - State v. Cardwell
    -

    The Court granted certiorari to review the Court of Appeals's decision in State v. Cardwell, 414 S.C. 416, 778 S.E.2d 483 (Ct. App. 2015), wherein the Court of Appeals upheld the circuit court's denial of a motion to suppress a video file seized from Cardwell's computer. We affirm as modified.
    - -

    - - 1-30-2019 - Opinions

    - -

    - - 27861 - State v. Herrera
    -

    The Court reverses the court of appeals and remands to the trial court for a new trial, finding it was an abuse of discretion to permit the State's expert, Detective Hunnicutt, to testify to the weight of the marijuana.
    - -

    - - -
    - -

    -

    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - -
    - - -
    - - diff --git a/tests/examples/opinions/united_states/sc_example_3.compare.json b/tests/examples/opinions/united_states/sc_example_3.compare.json deleted file mode 100644 index 452d4cea1..000000000 --- a/tests/examples/opinions/united_states/sc_example_3.compare.json +++ /dev/null @@ -1,79 +0,0 @@ -[ - { - "case_dates": "2014-05-28", - "case_names": "Tant v. SCDOC", - "download_urls": "/opinions/HTMLFiles/SC/27392.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "27392", - "summaries": "The Court holds when the Department of Corrections must give an inmate formal notice when it decides to amend its original recordation of his sentence and advise him of his opportunity to be heard through the grievance procedure. It further holds the Department is confined to the face of the sentencing sheets in determining the length of a sentence, but may refer to the sentencing transcript if there is an ambiguity in the sentencing sheets.", - "case_name_shorts": "Tant" - }, - { - "case_dates": "2014-05-28", - "case_names": "State v. Cheeks", - "download_urls": "/opinions/HTMLFiles/SC/27390.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "27390", - "summaries": "", - "case_name_shorts": "Cheeks" - }, - { - "case_dates": "2014-05-28", - "case_names": "In the Matter of David Swanner", - "download_urls": "/opinions/HTMLFiles/SC/27389.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "27389", - "summaries": "This is an opinion definitely suspending a lawyer.", - "case_name_shorts": "" - }, - { - "case_dates": "2014-05-28", - "case_names": "In the Matter of Bruce Hoffman", - "download_urls": "/opinions/HTMLFiles/SC/27388.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "27388", - "summaries": "This is an opinion publicly reprimanding a lawyer.", - "case_name_shorts": "" - }, - { - "case_dates": "2014-05-28", - "case_names": "Allegro v. Scully", - "download_urls": "/opinions/HTMLFiles/SC/27391.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "27391", - "summaries": "The Court remanded the case to the Court of Appeals to consider the defendants' argument that the trial judge erred in denying the defendants' directed verdict and JNOV motions.", - "case_name_shorts": "Allegro" - }, - { - "case_dates": "2014-05-21", - "case_names": "In the Matter of Edwin Donald Givens", - "download_urls": "/courtOrders/displayOrder.cfm?orderNo=2014-05-15-01", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "The Office of Disciplinary Counsel asks this Court to place respondent on interim suspension pursuant to Rule 17 of the Rules for Lawyer Disciplinary Enforcement (RLDE) contained in Rule 413 of the South Carolina Appellate Court Rules (SCACR).", - "case_name_shorts": "" - }, - { - "case_dates": "2014-05-14", - "case_names": "York County v. SCDHEC", - "download_urls": "/opinions/HTMLFiles/SC/27387.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "27387", - "summaries": "This case is dismissed as improvidently granted.", - "case_name_shorts": "SCDHEC" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/sc_example_3.html b/tests/examples/opinions/united_states/sc_example_3.html deleted file mode 100644 index 897a1a15d..000000000 --- a/tests/examples/opinions/united_states/sc_example_3.html +++ /dev/null @@ -1,1506 +0,0 @@ - - - - - - - -SC Judicial Department - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - Supreme Court Seal -
    - -
    - -
    - Supreme Court Seal -
    South Carolina
    Judicial Department
    -
    -
    - -
    -
    - - - - -
    -
    -
    -
    - - - - -
    -
    - - - -
    - Supreme Court Published Opinions - - May 2014
    - - -

    Note: Beginning in June 2012, opinions will be posted as Adobe PDFs. You can download a free copy of Adobe Reader here.

    - -

    The summary following each opinion is prepared to offer lawyers and the public a general overview of what a particular opinion decides. The summary is not necessarily a full description of the -issues discussed in an opinion.


    - - - 5-14-2014 - Opinions

    - -

    - - 27387 - York County v. SCDHEC
    -

    This case is dismissed as improvidently granted.
    - -

    - - - 5-21-2014 - Orders

    - - ORDER - In the Matter of Edwin Donald Givens
    -
    The Office of Disciplinary Counsel asks this Court to place respondent on interim suspension pursuant to Rule 17 of the Rules for Lawyer Disciplinary Enforcement (RLDE) contained in Rule 413 of the South Carolina Appellate Court Rules (SCACR).
    - - 5-28-2014 - Opinions

    - -

    - - 27388 - In the Matter of Bruce Hoffman
    -

    This is an opinion publicly reprimanding a lawyer.
    - -

    - -

    - - 27389 - In the Matter of David Swanner
    -

    This is an opinion definitely suspending a lawyer.
    - -

    - -

    - - 27390 - State v. Cheeks
    -

    - -

    - -

    - - 27391 - Allegro v. Scully
    -

    The Court remanded the case to the Court of Appeals to consider the defendants' argument that the trial judge erred in denying the defendants' directed verdict and JNOV motions.
    - -

    - -

    - - 27392 - Tant v. SCDOC
    -

    The Court holds when the Department of Corrections must give an inmate formal notice when it decides to amend its original recordation of his sentence and advise him of his opportunity to be heard through the grievance procedure. It further holds the Department is confined to the face of the sentencing sheets in determining the length of a sentence, but may refer to the sentencing transcript if there is an ambiguity in the sentencing sheets.
    - -

    - - -
    - -

    -

    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - -
    - - -
    - - diff --git a/tests/examples/opinions/united_states/sc_example_4.compare.json b/tests/examples/opinions/united_states/sc_example_4.compare.json deleted file mode 100644 index 12acca1b2..000000000 --- a/tests/examples/opinions/united_states/sc_example_4.compare.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "case_dates": "2019-06-05", - "case_names": "In the Matter of Howard B. Hammer", - "download_urls": "/courtOrders/displayOrder.cfm?orderNo=2019-06-03-01", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "", - "summaries": "", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/sc_example_4.html b/tests/examples/opinions/united_states/sc_example_4.html deleted file mode 100644 index 8f2a68d7c..000000000 --- a/tests/examples/opinions/united_states/sc_example_4.html +++ /dev/null @@ -1,1462 +0,0 @@ - - - - - - - -SC Judicial Department - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - Supreme Court Seal -
    - -
    - -
    - Supreme Court Seal -
    South Carolina
    Judicial Department
    -
    -
    - -
    -
    - - - - -
    -
    -
    - - - - - -
    -
    - - - -
    - Supreme Court Published Opinions - - June 2019
    - - -

    Note: Beginning in June 2012, opinions will be posted as Adobe PDFs. You can download a free copy of Adobe Reader here.

    - -

    The summary following each opinion is prepared to offer lawyers and the public a general overview of what a particular opinion decides. The summary is not necessarily a full description of the -issues discussed in an opinion.


    - - - - 6-5-2019 - Orders

    - - 6-5-2019
    - - ORDER - In the Matter of Howard B. Hammer, Petitioner.
    -
    - - -
    - -

    -

    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - - - -
    - - -
    - - diff --git a/tests/examples/opinions/united_states/sc_u_example.compare.json b/tests/examples/opinions/united_states/sc_u_example.compare.json new file mode 100644 index 000000000..4e91064bd --- /dev/null +++ b/tests/examples/opinions/united_states/sc_u_example.compare.json @@ -0,0 +1,46 @@ +[ + { + "case_dates": "2024-07-31", + "case_names": "Ron O'Neal Finklea v. State", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/SC/2024-MO-019.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-MO-019", + "summaries": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-10", + "case_names": "Mathes Auto Sales v. Dixon Automotive", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/SC/2024-MO-018.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-MO-018", + "summaries": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-03", + "case_names": "Steven M. Bernard v. 3 Chisolm Street", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/SC/2024-MO-016.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-MO-016", + "summaries": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-03", + "case_names": "Ex Parte Patrick Booker v. State of South Carolina", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/SC/2024-MO-017.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-MO-017", + "summaries": "", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/sc_u_example.html b/tests/examples/opinions/united_states/sc_u_example.html new file mode 100644 index 000000000..ee9c1a2c5 --- /dev/null +++ b/tests/examples/opinions/united_states/sc_u_example.html @@ -0,0 +1,938 @@ + + + + + + + + + + + + Supreme Court - South Carolina Judicial Branch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Skip to content + +
    +
    + +

    Problem with display of website? Try clearing your cache by holding SHIFT + press F5 OR Go to browser menu and clear browsing history.

    +
    +
    + +
    +
    +
    +
    +

    Supreme Court

    +

    The summary following each opinion is prepared to offer lawyers and the public a general overview of what a particular opinion decides. The summary is not necessarily a full description of the issues discussed in an opinion.

    +
    +
    + +
    +
    +
    +
    + + + +
    +
    +
    +
    + Prev +
    +
    +

    July 2024

    +
    +
    + Next +
    +
    + + +
    +
    +

    July 3, 2024

    +
    +
    +
    +

    2024-MO-016

    +

    Steven M. Bernard v. 3 Chisolm Street

    + +
    + +
    +

    +
    + Download +
    +
    +
    +

    2024-MO-017

    +

    Ex Parte Patrick Booker v. State of South Carolina, et al.

    + +
    + +
    +

    +
    + Download +
    +
    +

    July 10, 2024

    +
    +
    +
    +

    2024-MO-018

    +

    Mathes Auto Sales v. Dixon Automotive

    + +
    + +
    +

    +
    + Download +
    +
    +

    July 31, 2024

    +
    +
    +
    +

    2024-MO-019

    +

    Ron O'Neal Finklea v. The State

    + +
    + +
    +

    +
    + Download +
    +
    +
    +
    + + + + + + + + + + + + diff --git a/tests/examples/opinions/united_states/scctapp_example.compare.json b/tests/examples/opinions/united_states/scctapp_example.compare.json index 63cb4e4a3..a2044e4dc 100644 --- a/tests/examples/opinions/united_states/scctapp_example.compare.json +++ b/tests/examples/opinions/united_states/scctapp_example.compare.json @@ -1,68 +1,101 @@ [ { - "case_dates": "2019-07-03", - "case_names": "State v. Owens", - "download_urls": "/opinions/HTMLFiles/COA/5663.pdf", + "case_dates": "2024-08-28", + "case_names": "State v. Gleaton", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/COA/6086.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5663", - "summaries": "In criminal law, the defense of accident is a recluse: it is seldom seen and often misunderstood. This appeal requires us to examine in full light the defense and the language trial courts use when explaining it to juries, focusing on when a defendant who is engaged in unlawful conduct may still be entitled to the defense. While we conclude the charge given here was sufficient, we propose a recommended charge for future cases. We also hold the trial court erred by admitting a family photograph of Jarrod Howard (Victim) in violation of Rule 403 of the South Carolina Rules of Evidence (SCRE), but find the error harmless. We therefore affirm appellant Ahshaad Mykiel Owens' convictions.", - "case_name_shorts": "Owens" + "docket_numbers": "6086", + "summaries": "Kenneth R. Gleaton appeals his life sentence and convictions for murder, second degree arson, illegal possession of a firearm, and desecration of human remains. He claims numerous trial errors, including the circuit court's denial of his motion to bifurcate and the handling of certain evidentiary matters. Gleaton further challenges the circuit court's conduct of the trial, such as its refusal to recess late on a Friday afternoon before proceeding with closing arguments and the charge to the jury, as well as the court's failure to hold a proper sentencing proceeding to allow the presentation of mitigation evidence. Finally, Gleaton contends these cumulative errors require that he be granted a new trial. Although the circuit court erred in certain respects during this week-long trial, we find these errors harmless based on our review of the entire record. Thus, we affirm Gleaton's convictions and life sentence.", + "case_name_shorts": "Gleaton" }, { - "case_dates": "2019-07-03", - "case_names": "State v. Finley", - "download_urls": "/opinions/HTMLFiles/COA/5665.pdf", + "case_dates": "2024-08-21", + "case_names": "State v. Rowland", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/COA/6084.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5665", - "summaries": "In this criminal appeal, Michael Jay Finley appeals the circuit court's denial of his pro se motion to reconsider his sentence pursuant to Aiken v. Byars, 410 S.C. 534, 765 S.E.2d 572 (2014). Finley argues his mandatory sentence of life imprisonment with the possibility of parole upon the service of thirty years' imprisonment is functionally equivalent to a sentence of life imprisonment without the possibility of parole (LWOP), which violates the Eighth Amendment's prohibition of cruel and unusual punishments. We affirm.", - "case_name_shorts": "Finley" + "docket_numbers": "6084", + "summaries": "Nathaniel D. Rowland (Appellant) appeals his convictions and sentences for murder, kidnapping, and possession of a weapon during the commission of a violent crime. Appellant argues the trial court erred by: (1) denying Appellant's motion to suppress evidence obtained as a product of the traffic stop because law enforcement did not have probable cause that a traffic violation had occurred or reasonable suspicion that the occupants of the car were engaged in criminal activity; (2) admitting expert testimony from the State's document examiner that it was \"probable\" the person who wrote the inscription on the back of an envelope found in Appellant's car was the same person whose handwriting appears on Appellant's personnel records obtained from previous employers; and (3) admitting testimony from the State's expert DNA analyst concerning Appellant's inclusion in a mixture of DNA found on a multi-tool, cuttings from a roll of paper towels, and a sample from a pair of pants. We affirm.", + "case_name_shorts": "Rowland" }, { - "case_dates": "2019-07-03", - "case_names": "IN RE: Deborah Dereede Living Trust v. Karp", - "download_urls": "/opinions/HTMLFiles/COA/5639.pdf", + "case_dates": "2024-08-21", + "case_names": "Kari Lynn Bristol v. Geoffrey M. Lipnevicius", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/COA/6085.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5639", - "summaries": "After a bench trial, the trial court ruled that Courtney Feely Karp breached her fiduciary duty as Trustee of a trust created by her late mother by not timely distributing certain trust proceeds to Hugh Dereede (Hugh), Karp's stepfather, and to Tyre Dealer Network Consultants, Inc. (Tyre), Hugh's company. The trial court also awarded Hugh attorney's fees and held Karp personally liable for the verdict. Karp appeals these rulings, which we now affirm.", - "case_name_shorts": "Karp" + "docket_numbers": "6085", + "summaries": "Geoffrey M. Lipnevicius (Father) appeals the family court's order dismissing as moot his counterclaim for attorney's fees made in response to Kari Bristol's (Mother's) action for modification of visitation, his four pending contempt actions, and his request to register an August 2018 foreign order for enforcement. Father argues the family court erred by finding these issues were rendered moot on the ground that the child who was the subject of the underlying modification action turned eighteen before the court was able to hold a final hearing on the modification and contempt actions. We affirm in part and reverse and remand in part.", + "case_name_shorts": "" }, { - "case_dates": "2019-07-03", - "case_names": "Hagood v. Hagood", - "download_urls": "/opinions/HTMLFiles/COA/5664.pdf", + "case_dates": "2024-08-14", + "case_names": "State v. Kierin M. Dennis", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/COA/6082.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5664", - "summaries": "In this appeal from a divorce action, Melissa Hagood (Wife) argues the family court erred in (1) characterizing the majority of the estate as the nonmarital property of James Hagood (Husband), (2) equitably apportioning the majority of the marital property to Husband, and (3) refusing to award her alimony. We affirm in part, reverse in part, and remand.", - "case_name_shorts": "Hagood" + "docket_numbers": "6082", + "summaries": "Kierin Marcellus Dennis appeals his conviction for murder, arguing the trial court erred in (1) relying on evidence from a prior immunity hearing and mistrial; (2) denying him immunity under the Protection of Persons and Property Act (the Act); (3) finding he had a duty to retreat under the Act; (4) finding self-defense was a jury issue; (5) finding he had a duty to avoid going to a place he had the right to be; (6) admitting an aerial photograph; and (7) admitting a model car door that was misleading. We reverse and remand.", + "case_name_shorts": "" }, { - "case_dates": "2019-07-03", - "case_names": "Ex parte: The Travelers Home and Marine Insurance Company", - "download_urls": "/opinions/HTMLFiles/COA/5666.pdf", + "case_dates": "2024-08-14", + "case_names": "Palmetto Construction Group, LLC v. Restoration Specialists, LLC", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/COA/6083.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5666", - "summaries": "This appeal follows the trial of a wrongful death and survival action. Sixteen-year-old John Corey Stringfellow (Corey) died from injuries sustained as a passenger in a family car being driven by his older brother, Cameron. The jury found Corey 51% negligent, barring his Estate from any recovery. Immediately after the verdict was published--and while the jury was still in the jury box--the trial court asked for any post-trial motions. The Estate moved for, among other things, a new trial under the thirteenth juror doctrine. After a hearing several weeks later on the Estate's motion, the trial court invoked the thirteenth juror doctrine and granted the motion for a new trial on the wrongful death portion of the Estate's claim. Travelers appeals, arguing the Estate's motion for a new trial was untimely under Rule 59(b), SCRE, and that the trial court erred in invoking the thirteenth juror doctrine. We affirm.", + "docket_numbers": "6083", + "summaries": "Restoration Specialists, LLC, Reuben Mark Ward, and Lynette Pennington Ward (collectively Appellants), appeal the master-in-equity's denial of their motions for relief from the entry of default and to compel arbitration. Appellants also appeal the master's award of damages. We affirm as modified.", "case_name_shorts": "" }, { - "case_dates": "2019-07-03", - "case_names": "Byrd v. McLeod Physician Associates II", - "download_urls": "/opinions/HTMLFiles/COA/5662.pdf", + "case_dates": "2024-08-07", + "case_names": "McMillan Pazdan Smith, LLC v. Donza H. Mattison (2)", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/COA/6080.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "5662", - "summaries": "Christy Byrd, as next friend of Julia B., a minor, appeals a trial court order denying her motion for a new trial and/or judgment notwithstanding the verdict, arguing the trial court erred in not finding the obstetric emergency statute inapplicable to this case as a matter of law. We affirm.", - "case_name_shorts": "Byrd" + "docket_numbers": "6080", + "summaries": "In this declaratory judgement action, Donza H. Mattison appeals the circuit court's order granting summary judgment in favor of McMillan Pazdan Smith, LLC (MPS). On appeal, Mattison argues the circuit court erred by (1) refusing to stay proceedings in the declaratory judgment action pending the appeal of her derivative action, (2) disregarding the key sentence in her severance agreement regarding the valuation of her membership units, (3) refusing to allow her to conduct critical discovery, (4) allowing MPS to apply a discount to the value of her membership units for lack of control and marketability, and (5) failing to award her prejudgment interest. We reverse and remand.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-07", + "case_names": "McMillan Pazdan Smith, LLC v. Donza H. Mattison (1)", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/COA/6079.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "6079", + "summaries": "Donza H. Mattison, on behalf of McMillan Pazdan Smith, LLC (MPS), appeals the circuit court's grant of summary judgment dismissing her derivative action against Ronald G. Smith, Joseph M. Pazdan, Brad B. Smith, and Chad C. Cousins (collectively, Majority Members). Mattison argues the circuit court erred by (1) assigning her the burden of proof and disregarding many of the applicable factors when determining whether she was a fair and adequate representative for the derivative action; (2) accepting unsworn, boilerplate statements for affidavits; (3) ascribing her with an improper motive for filing the derivative action; (4) considering confidential settlement negotiations that were inadmissible under Rule 408, SCRE; (5) failing to view the facts in the light most favorable to her as required on Majority Members' motion for summary judgment; (6) refusing to consider her \"class of one\" argument; (7) limiting the scope of discovery; and (8) refusing to address the conflict of interest that arose due to the same law firm representing MPS, Majority Members, and the minority members of MPS. We affirm.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-07", + "case_names": "Maybank 2754, LLC v. Eugene J. Zurlo", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/COA/6081.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "6081", + "summaries": "Appellant Maybank 2754, LLC (Maybank) argues the circuit court erred by: (1) referring the underlying matter to the master in equity, (2) granting Respondents' motions for summary judgment, and (3) denying Maybank's motion to amend its complaint. Maybank also argues that the circuit court did not have subject matter jurisdiction over the motions for summary judgment because Maybank had appealed the order referring the matter to the master and that appeal was pending. We reverse the order of reference and the order granting summary judgment and denying the motion to amend. We remand for further proceedings.", + "case_name_shorts": "" + }, + { + "case_dates": "2024-08-07", + "case_names": "Chandelle Property Owners Association v. James Douglas Armstrong", + "download_urls": "https://www.sccourts.org/media/opinions/HTMLFiles/COA/6078.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "6078", + "summaries": "This case stems from several disputes within the Chandelle Subdivision (Chandelle), a residential aviation community in Spartanburg County. Appellants contend the circuit court erred in granting Respondent Chandelle Property Owners Association's (the POA) motion for partial summary judgment; they assert association bylaws prohibited the POA from incurring debt in excess of $50,000 without a vote of the association and argue the declaration of covenants, conditions, and restrictions (the Restrictive Covenants) allow annual assessments only for maintenance. Appellants challenge the circuit court's award of the back assessments claimed in the POA's debt collection action; award of \"equitable relief\" before a jury could hear their compulsory legal counterclaims; and failure to require the POA to exhaust other legal remedies. They further argue the circuit court erred in awarding the back assessments before discovery was complete and failed to recognize the claimed assessments are \"ostensibly attorney's fees\" in disguise. We affirm the circuit court's order granting partial summary judgment.", + "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/scctapp_example.html b/tests/examples/opinions/united_states/scctapp_example.html index cd1051c35..cafd1bdc8 100644 --- a/tests/examples/opinions/united_states/scctapp_example.html +++ b/tests/examples/opinions/united_states/scctapp_example.html @@ -1,1501 +1,1002 @@ - - - - - -SC Judicial Department - - - - - - - - - - - - - - - - - - - - - - - - - - + + + Court of Appeals - South Carolina Judicial Branch + + + + + + + + + + + + + + + + + + + + + + + + + + + - - -
    -
    -
    -
    -
    - - Supreme Court Seal -
    - -
    - -
    - Supreme Court Seal -
    South Carolina
    Judicial Department
    -
    -
    - -
    -
    - - - -
    -
    - - - - -
    -
    - - - -
    - Court of Appeals Published Opinions - - July 2019
    - - -

    Note: Beginning in June 2012, opinions will be posted as Adobe PDFs. You can download a free copy of Adobe Reader here.

    - -

    The summary following each opinion is prepared to offer lawyers and the public a general overview -of what a particular opinion decides. The summary is not necessarily a full description of the -issues discussed in an opinion.


    - - - 7-3-2019 - Opinions

    - -

    - - 5639 - IN RE: Deborah Dereede Living Trust v. Karp
    -

    After a bench trial, the trial court ruled that Courtney Feely Karp breached her fiduciary duty as Trustee of a trust created by her late mother by not timely distributing certain trust proceeds to Hugh Dereede (Hugh), Karp's stepfather, and to Tyre Dealer Network Consultants, Inc. (Tyre), Hugh's company. The trial court also awarded Hugh attorney's fees and held Karp personally liable for the verdict. Karp appeals these rulings, which we now affirm.
    - -

    - -

    - - 5662 - Byrd v. McLeod Physician Associates II
    -

    Christy Byrd, as next friend of Julia B., a minor, appeals a trial court order denying her motion for a new trial and/or judgment notwithstanding the verdict, arguing the trial court erred in not finding the obstetric emergency statute inapplicable to this case as a matter of law. We affirm.
    - -

    - - 7-10-2019 - Opinions

    - -

    - - 5663 - State v. Owens
    -

    In criminal law, the defense of accident is a recluse: it is seldom seen and often misunderstood. This appeal requires us to examine in full light the defense and the language trial courts use when explaining it to juries, focusing on when a defendant who is engaged in unlawful conduct may still be entitled to the defense. While we conclude the charge given here was sufficient, we propose a recommended charge for future cases. We also hold the trial court erred by admitting a family photograph of Jarrod Howard (Victim) in violation of Rule 403 of the South Carolina Rules of Evidence (SCRE), but find the error harmless. We therefore affirm appellant Ahshaad Mykiel Owens' convictions.
    - -

    - - 7-17-2019 - Opinions

    - -

    - - 5664 - Hagood v. Hagood
    -

    In this appeal from a divorce action, Melissa Hagood (Wife) argues the family court erred in (1) characterizing the majority of the estate as the nonmarital property of James Hagood (Husband), (2) equitably apportioning the majority of the marital property to Husband, and (3) refusing to award her alimony. We affirm in part, reverse in part, and remand.
    - -

    - -

    - - 5665 - State v. Finley
    -

    In this criminal appeal, Michael Jay Finley appeals the circuit court's denial of his pro se motion to reconsider his sentence pursuant to Aiken v. Byars, 410 S.C. 534, 765 S.E.2d 572 (2014). Finley argues his mandatory sentence of life imprisonment with the possibility of parole upon the service of thirty years' imprisonment is functionally equivalent to a sentence of life imprisonment without the possibility of parole (LWOP), which violates the Eighth Amendment's prohibition of cruel and unusual punishments. We affirm.
    - -

    - -

    - - 5666 - Ex parte: The Travelers Home and Marine Insurance Company
    -

    This appeal follows the trial of a wrongful death and survival action. Sixteen-year-old John Corey Stringfellow (Corey) died from injuries sustained as a passenger in a family car being driven by his older brother, Cameron. The jury found Corey 51% negligent, barring his Estate from any recovery. Immediately after the verdict was published--and while the jury was still in the jury box--the trial court asked for any post-trial motions. The Estate moved for, among other things, a new trial under the thirteenth juror doctrine. After a hearing several weeks later on the Estate's motion, the trial court invoked the thirteenth juror doctrine and granted the motion for a new trial on the wrongful death portion of the Estate's claim. Travelers appeals, arguing the Estate's motion for a new trial was untimely under Rule 59(b), SCRE, and that the trial court erred in invoking the thirteenth juror doctrine. We affirm.
    - -

    - - -

    - -

    -

    -
    -
    -
    -
    2019
    - +
    + +
    +
    +
    +
    + + + - - - - - - - - -
    -
    1997
    -
    - - - January
    - - - February
    - - - March
    + +
    + +
    + + +
    +

    Published Opinions

    +
    +
    + +
    + +
    +
    +
    +
    +

    Court of Appeals

    +

    The summary following each opinion is prepared to offer lawyers and the public a general overview of what a particular opinion decides. The summary is not necessarily a full description of the issues discussed in an opinion.

    +
    +
    + +
    +
    +
    +
    + + + +
    +
    +
    +
    + Prev +
    +
    +

    August 2024

    +
    +
    + Next +
    +
    - - April
    - - May
    +
    +
    +

    August 7, 2024

    +
    +
    +
    +

    6078

    +

    Chandelle Property Owners Association v. James Douglas Armstrong

    + +
    - - June
    +
    +

    This case stems from several disputes within the Chandelle Subdivision (Chandelle), a residential aviation community in Spartanburg County. Appellants contend the circuit court erred in granting Respondent Chandelle Property Owners Association's (the POA) motion for partial summary judgment; they assert association bylaws prohibited the POA from incurring debt in excess of $50,000 without a vote of the association and argue the declaration of covenants, conditions, and restrictions (the Restrictive Covenants) allow annual assessments only for maintenance. Appellants challenge the circuit court's award of the back assessments claimed in the POA's debt collection action; award of "equitable relief" before a jury could hear their compulsory legal counterclaims; and failure to require the POA to exhaust other legal remedies. They further argue the circuit court erred in awarding the back assessments before discovery was complete and failed to recognize the claimed assessments are "ostensibly attorney's fees" in disguise. We affirm the circuit court's order granting partial summary judgment.

    +
    + Download +
    +
    +
    +

    6079

    +

    McMillan Pazdan Smith, LLC v. Donza H. Mattison (1)

    + +
    - - July
    +
    +

    Donza H. Mattison, on behalf of McMillan Pazdan Smith, LLC (MPS), appeals the circuit court's grant of summary judgment dismissing her derivative action against Ronald G. Smith, Joseph M. Pazdan, Brad B. Smith, and Chad C. Cousins (collectively, Majority Members). Mattison argues the circuit court erred by (1) assigning her the burden of proof and disregarding many of the applicable factors when determining whether she was a fair and adequate representative for the derivative action; (2) accepting unsworn, boilerplate statements for affidavits; (3) ascribing her with an improper motive for filing the derivative action; (4) considering confidential settlement negotiations that were inadmissible under Rule 408, SCRE; (5) failing to view the facts in the light most favorable to her as required on Majority Members' motion for summary judgment; (6) refusing to consider her "class of one" argument; (7) limiting the scope of discovery; and (8) refusing to address the conflict of interest that arose due to the same law firm representing MPS, Majority Members, and the minority members of MPS. We affirm.

    +
    + Download +
    +
    +
    +

    6080

    +

    McMillan Pazdan Smith, LLC v. Donza H. Mattison (2)

    + +
    - - August
    +
    +

    In this declaratory judgement action, Donza H. Mattison appeals the circuit court's order granting summary judgment in favor of McMillan Pazdan Smith, LLC (MPS). On appeal, Mattison argues the circuit court erred by (1) refusing to stay proceedings in the declaratory judgment action pending the appeal of her derivative action, (2) disregarding the key sentence in her severance agreement regarding the valuation of her membership units, (3) refusing to allow her to conduct critical discovery, (4) allowing MPS to apply a discount to the value of her membership units for lack of control and marketability, and (5) failing to award her prejudgment interest. We reverse and remand.

    +
    + Download +
    +
    +
    +

    6081

    +

    Maybank 2754, LLC v. Eugene J. Zurlo

    + +
    - - September
    +
    +

    Appellant Maybank 2754, LLC (Maybank) argues the circuit court erred by: (1) referring the underlying matter to the master in equity, (2) granting Respondents' motions for summary judgment, and (3) denying Maybank's motion to amend its complaint. Maybank also argues that the circuit court did not have subject matter jurisdiction over the motions for summary judgment because Maybank had appealed the order referring the matter to the master and that appeal was pending. We reverse the order of reference and the order granting summary judgment and denying the motion to amend. We remand for further proceedings.

    +
    + Download +
    +
    +

    August 14, 2024

    +
    +
    +
    +

    6082

    +

    The State v. Kierin M. Dennis

    + +
    - - October
    +
    +

    Kierin Marcellus Dennis appeals his conviction for murder, arguing the trial court erred in (1) relying on evidence from a prior immunity hearing and mistrial; (2) denying him immunity under the Protection of Persons and Property Act (the Act); (3) finding he had a duty to retreat under the Act; (4) finding self-defense was a jury issue; (5) finding he had a duty to avoid going to a place he had the right to be; (6) admitting an aerial photograph; and (7) admitting a model car door that was misleading. We reverse and remand.

    +
    + Download +
    +
    +
    +

    6083

    +

    Palmetto Construction Group, LLC v. Restoration Specialists, LLC

    + +
    - - November
    +
    +

    Restoration Specialists, LLC, Reuben Mark Ward, and Lynette Pennington Ward (collectively Appellants), appeal the master-in-equity's denial of their motions for relief from the entry of default and to compel arbitration. Appellants also appeal the master's award of damages. We affirm as modified.

    +
    + Download +
    +
    +

    August 21, 2024

    +
    +
    +
    +

    6084

    +

    State v. Rowland

    + +
    - - December
    +
    +

    Nathaniel D. Rowland (Appellant) appeals his convictions and sentences for murder, kidnapping, and possession of a weapon during the commission of a violent crime. Appellant argues the trial court erred by: (1) denying Appellant's motion to suppress evidence obtained as a product of the traffic stop because law enforcement did not have probable cause that a traffic violation had occurred or reasonable suspicion that the occupants of the car were engaged in criminal activity; (2) admitting expert testimony from the State's document examiner that it was "probable" the person who wrote the inscription on the back of an envelope found in Appellant's car was the same person whose handwriting appears on Appellant's personnel records obtained from previous employers; and (3) admitting testimony from the State's expert DNA analyst concerning Appellant's inclusion in a mixture of DNA found on a multi-tool, cuttings from a roll of paper towels, and a sample from a pair of pants. We affirm.

    +
    + Download +
    +
    +
    +

    6085

    +

    Kari Lynn Bristol v. Geoffrey M. Lipnevicius

    + +
    -
    -
    -
    -
    +
    +

    Geoffrey M. Lipnevicius (Father) appeals the family court's order dismissing as moot his counterclaim for attorney's fees made in response to Kari Bristol's (Mother's) action for modification of visitation, his four pending contempt actions, and his request to register an August 2018 foreign order for enforcement. Father argues the family court erred by finding these issues were rendered moot on the ground that the child who was the subject of the underlying modification action turned eighteen before the court was able to hold a final hearing on the modification and contempt actions. We affirm in part and reverse and remand in part.

    +
    + Download +
    +
    +

    August 28, 2024

    +
    +
    +
    +

    6086

    +

    State v. Gleaton

    + +
    +
    +

    Kenneth R. Gleaton appeals his life sentence and convictions for murder, second degree arson, illegal possession of a firearm, and desecration of human remains. He claims numerous trial errors, including the circuit court's denial of his motion to bifurcate and the handling of certain evidentiary matters. Gleaton further challenges the circuit court's conduct of the trial, such as its refusal to recess late on a Friday afternoon before proceeding with closing arguments and the charge to the jury, as well as the court's failure to hold a proper sentencing proceeding to allow the presentation of mitigation evidence. Finally, Gleaton contends these cumulative errors require that he be granted a new trial. Although the circuit court erred in certain respects during this week-long trial, we find these errors harmless based on our review of the entire record. Thus, we affirm Gleaton's convictions and life sentence.

    +
    + Download +
    +
    +
    + + + + -
    + + + -
    + diff --git a/tests/examples/opinions/united_states/scctapp_u_example.compare.json b/tests/examples/opinions/united_states/scctapp_u_example.compare.json new file mode 100644 index 000000000..4cec1c01a --- /dev/null +++ b/tests/examples/opinions/united_states/scctapp_u_example.compare.json @@ -0,0 +1,145 @@ +[ + { + "case_dates": "2024-09-11", + "case_names": "Saint Luke Baptist Church v. Terry", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/COA/2024-UP-309.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-UP-309", + "summaries": "", + "case_name_shorts": "Terry" + }, + { + "case_dates": "2024-09-11", + "case_names": "Livingston v. The Regional Medical Center", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/COA/2024-UP-311.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-UP-311", + "summaries": "", + "case_name_shorts": "Livingston" + }, + { + "case_dates": "2024-09-11", + "case_names": "Jefferson v. SCDOT", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/COA/2024-UP-312.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-UP-312", + "summaries": "", + "case_name_shorts": "Jefferson" + }, + { + "case_dates": "2024-09-11", + "case_names": "A.D. and J.D. v. Richland County School District Two", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/COA/2024-UP-310.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-UP-310", + "summaries": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-10", + "case_names": "SCDSS v. Stewart", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/COA/2024-UP-314.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-UP-314", + "summaries": "", + "case_name_shorts": "SCDSS" + }, + { + "case_dates": "2024-09-10", + "case_names": "SCDSS v. Snell", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/COA/2024-UP-313.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-UP-313", + "summaries": "", + "case_name_shorts": "SCDSS" + }, + { + "case_dates": "2024-09-04", + "case_names": "State v. Rodney S. Kelley", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/COA/2024-UP-302.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-UP-302", + "summaries": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-04", + "case_names": "State v. Latoya D. Rivers", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/COA/2024-UP-304.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-UP-304", + "summaries": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-04", + "case_names": "State v. Detavious L. Cunningham", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/COA/2024-UP-305.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-UP-305", + "summaries": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-04", + "case_names": "State v. Darrell D. Land", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/COA/2024-UP-303.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-UP-303", + "summaries": "", + "case_name_shorts": "" + }, + { + "case_dates": "2024-09-04", + "case_names": "SCDSS v. Prescott", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/COA/2024-UP-307.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-UP-307", + "summaries": "", + "case_name_shorts": "SCDSS" + }, + { + "case_dates": "2024-09-04", + "case_names": "SCDSS v. Pablo A. Ramos", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/COA/2024-UP-308.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-UP-308", + "summaries": "", + "case_name_shorts": "SCDSS" + }, + { + "case_dates": "2024-09-04", + "case_names": "Cary E. Fetcher v. Leon Martnin Ortner 2", + "download_urls": "https://www.sccourts.org/media/opinions/unpublishedopinions/HTMLFiles/COA/2024-UP-306.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024-UP-306", + "summaries": "", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/scctapp_u_example.html b/tests/examples/opinions/united_states/scctapp_u_example.html new file mode 100644 index 000000000..8bf839513 --- /dev/null +++ b/tests/examples/opinions/united_states/scctapp_u_example.html @@ -0,0 +1,1046 @@ + + + + + + + + + + + + Court of Appeals - South Carolina Judicial Branch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Skip to content + +
    +
    + +

    Problem with display of website? Try clearing your cache by holding SHIFT + press F5 OR Go to browser menu and clear browsing history.

    +
    +
    + +
    +
    +
    +
    +

    Court of Appeals

    +

    The summary following each opinion is prepared to offer lawyers and the public a general overview of what a particular opinion decides. The summary is not necessarily a full description of the issues discussed in an opinion.

    +
    +
    + +
    +
    +
    +
    + + + +
    +
    +
    +
    + Prev +
    +
    +

    September 2024

    +
    +
    + Next +
    +
    + + +
    +
    +

    September 4, 2024

    +
    +
    +
    +

    2024-UP-302

    +

    The State v. Rodney S. Kelley

    + +
    + +
    +

    +
    + Download +
    +
    +
    +

    2024-UP-303

    +

    The State v. Darrell D. Land

    + +
    + +
    +

    +
    + Download +
    +
    +
    +

    2024-UP-304

    +

    The State v. Latoya D. Rivers

    + +
    + +
    +

    +
    + Download +
    +
    +
    +

    2024-UP-305

    +

    The State v. Detavious L. Cunningham

    + +
    + +
    +

    +
    + Download +
    +
    +
    +

    2024-UP-306

    +

    Cary E. Fetcher v. Leon Martnin Ortner 2

    + +
    + +
    +

    +
    + Download +
    +
    +
    +

    2024-UP-307

    +

    SCDSS v. Prescott

    + +
    + +
    +

    +
    + Download +
    +
    +
    +

    2024-UP-308

    +

    SCDSS v. Pablo A. Ramos

    + +
    + +
    +

    +
    + Download +
    +
    +

    September 11, 2024

    +
    +
    +
    +

    2024-UP-309

    +

    Saint Luke Baptist Church v. Terry

    + +
    + +
    +

    +
    + Download +
    +
    +
    +

    2024-UP-310

    +

    A.D. and J.D. v. Richland County School District Two

    + +
    + +
    +

    +
    + Download +
    +
    +
    +

    2024-UP-311

    +

    Livingston v. The Regional Medical Center

    + +
    + +
    +

    +
    + Download +
    +
    +
    +

    2024-UP-312

    +

    Jefferson v. SCDOT

    + +
    + +
    +

    +
    + Download +
    +
    +

    September 10, 2024

    +
    +
    +
    +

    2024-UP-313

    +

    SCDSS v. Snell

    + +
    + +
    +

    +
    + Download +
    +
    +
    +

    2024-UP-314

    +

    SCDSS v. Stewart

    + +
    + +
    +

    +
    + Download +
    +
    +
    +
    + + + + + + + + + + + + diff --git a/tests/examples/opinions/united_states/scotus_slip_example.compare.json b/tests/examples/opinions/united_states/scotus_slip_example.compare.json index cf7e87131..010e4e38e 100644 --- a/tests/examples/opinions/united_states/scotus_slip_example.compare.json +++ b/tests/examples/opinions/united_states/scotus_slip_example.compare.json @@ -1,233 +1,698 @@ [ { - "case_dates": "2016-02-09", - "case_names": "Campbell-Ewald v. Gomez", - "download_urls": "/opinions/15pdf/14-857diff_2924.pdf", + "case_dates": "2023-06-30", + "case_names": "Department of Education v. Brown", + "download_urls": "/opinions/22pdf/600us1r57_o7kq.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-857", - "judges": "Ruth Bader Ginsburg", - "case_name_shorts": "Campbell-Ewald" + "docket_numbers": "22-535", + "judges": "Samuel Alito", + "citations": "600 U.S. 551", + "case_name_shorts": "Brown" + }, + { + "case_dates": "2023-06-30", + "case_names": "Biden v. Nebraska", + "download_urls": "/opinions/22pdf/600us1r56_1o13.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-506", + "judges": "John G. Roberts", + "citations": "600 U.S. 477", + "case_name_shorts": "Biden" }, { - "case_dates": "2016-01-28", - "case_names": "FERC v. Electric Power Supply Assn.", - "download_urls": "/opinions/15pdf/14-840_diff_pok0.pdf", + "case_dates": "2023-06-30", + "case_names": "303 Creative LLC v. Elenis", + "download_urls": "/opinions/22pdf/600us1r58_7khn.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-840", + "docket_numbers": "21-476", + "judges": "Neil Gorsuch", + "citations": "600 U.S. 570", + "case_name_shorts": "Elenis" + }, + { + "case_dates": "2023-06-29", + "case_names": "Students for Fair Admissions, Inc. v. President and Fellows of Harvard College", + "download_urls": "/opinions/22pdf/600us1r53_4g15.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "20-1199", + "judges": "John G. Roberts", + "citations": "600 U.S. 181", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-29", + "case_names": "Groff v. DeJoy", + "download_urls": "/opinions/22pdf/600us1r55_3dq4.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-174", + "judges": "Samuel Alito", + "citations": "600 U.S. 447", + "case_name_shorts": "Groff" + }, + { + "case_dates": "2023-06-29", + "case_names": "Abitron Austria GmbH v. Hetronic Int'l, Inc.", + "download_urls": "/opinions/22pdf/600us1r54_g3bi.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1043", + "judges": "Samuel Alito", + "citations": "600 U.S. 412", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-27", + "case_names": "Moore v. Harper", + "download_urls": "/opinions/22pdf/600us1r50_h3ci.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1271", + "judges": "John G. Roberts", + "citations": "600 U.S. 1", + "case_name_shorts": "Moore" + }, + { + "case_dates": "2023-06-27", + "case_names": "Mallory v. Norfolk Southern R. Co", + "download_urls": "/opinions/22pdf/600us1r52_p86b.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1168", + "judges": "Neil Gorsuch", + "citations": "600 U.S. 122", + "case_name_shorts": "Mallory" + }, + { + "case_dates": "2023-06-27", + "case_names": "Counterman v. Colorado", + "download_urls": "/opinions/22pdf/600us1r51_g3bi.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-138", "judges": "Elana Kagan", - "case_name_shorts": "FERC" + "citations": "600 U.S. 66", + "case_name_shorts": "Counterman" }, { - "case_dates": "2016-01-27", - "case_names": "Montgomery v. Louisiana", - "download_urls": "/opinions/15pdf/14-280_diff_ifkn.pdf", + "case_dates": "2023-06-23", + "case_names": "United States v. Texas", + "download_urls": "/opinions/22pdf/599us1r47_8m58.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-280", - "judges": "Anthony Kennedy", + "docket_numbers": "22-58", + "judges": "Brett Kavanaugh", + "citations": "599 U.S. 670", "case_name_shorts": "" }, { - "case_dates": "2016-01-25", - "case_names": "Musacchio v. United States", - "download_urls": "/opinions/15pdf/14-1095_2d8f.pdf", + "case_dates": "2023-06-23", + "case_names": "United States v. Hansen", + "download_urls": "/opinions/22pdf/599us1r49_jgkn.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-1095", + "docket_numbers": "22-179", + "judges": "Amy Coney Barrett", + "citations": "599 U.S. 762", + "case_name_shorts": "Hansen" + }, + { + "case_dates": "2023-06-23", + "case_names": "Samia v. United States", + "download_urls": "/opinions/22pdf/599us1r46_dc8f.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-196", "judges": "Clarence Thomas", - "case_name_shorts": "Musacchio" + "citations": "599 U.S. 635", + "case_name_shorts": "Samia" + }, + { + "case_dates": "2023-06-23", + "case_names": "Coinbase, Inc. v. Bielski", + "download_urls": "/opinions/22pdf/599us1r48_986b.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-105", + "judges": "Brett Kavanaugh", + "citations": "599 U.S. 736", + "case_name_shorts": "Bielski" }, { - "case_dates": "2016-01-25", - "case_names": "Montgomery v. Louisiana", - "download_urls": "/opinions/15pdf/14-280_3204.pdf", + "case_dates": "2023-06-22", + "case_names": "Yegiazaryan v. Smagin", + "download_urls": "/opinions/22pdf/599us1r43_jhek.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-280", - "judges": "Anthony Kennedy", + "docket_numbers": "22-381", + "judges": "Sonia Sotomayor", + "citations": "599 U.S. 533", + "case_name_shorts": "Yegiazaryan" + }, + { + "case_dates": "2023-06-22", + "case_names": "Pugin v. Garland", + "download_urls": "/opinions/22pdf/599us1r45_6khn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-23", + "judges": "Brett Kavanaugh", + "citations": "599 U.S. 600", + "case_name_shorts": "Pugin" + }, + { + "case_dates": "2023-06-22", + "case_names": "Jones v. Hendrix", + "download_urls": "/opinions/22pdf/599us1r42_3314.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-857", + "judges": "Clarence Thomas", + "citations": "599 U.S. 465", + "case_name_shorts": "Jones" + }, + { + "case_dates": "2023-06-22", + "case_names": "Arizona v. Navajo Nation", + "download_urls": "/opinions/22pdf/599us1r44_54l8.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1484", + "judges": "Brett Kavanaugh", + "citations": "599 U.S. 555", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-16", + "case_names": "United States ex rel. Polansky v. Executive Health Resources, Inc.", + "download_urls": "/opinions/22pdf/599us1r40_q8l1.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1052", + "judges": "Elana Kagan", + "citations": "599 U.S. 419", "case_name_shorts": "" }, { - "case_dates": "2016-01-25", - "case_names": "Menominee Tribe of Wis. v. United States", - "download_urls": "/opinions/15pdf/14-510_pm02.pdf", + "case_dates": "2023-06-16", + "case_names": "Lora v. United States", + "download_urls": "/opinions/22pdf/599us1r41_2bo2.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-49", + "judges": "Ketanji Brown Jackson", + "citations": "599 U.S. 453", + "case_name_shorts": "Lora" + }, + { + "case_dates": "2023-06-15", + "case_names": "Smith v. United States", + "download_urls": "/opinions/22pdf/599us1r37_8m59.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-510", + "docket_numbers": "21-1576", "judges": "Samuel Alito", + "citations": "599 U.S. 236", "case_name_shorts": "" }, { - "case_dates": "2016-01-25", - "case_names": "James v. Boise", - "download_urls": "/opinions/15pdf/15-493_5h26.pdf", + "case_dates": "2023-06-15", + "case_names": "Lac du Flambeau Band of Lake Superior Chippewa Indians v. Coughlin", + "download_urls": "/opinions/22pdf/599us1r39_3204.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-493", - "judges": "Per Curiam", - "case_name_shorts": "James" + "docket_numbers": "22-227", + "judges": "Ketanji Brown Jackson", + "citations": "599 U.S. 382", + "case_name_shorts": "Coughlin" + }, + { + "case_dates": "2023-06-15", + "case_names": "Haaland v. Brackeen", + "download_urls": "/opinions/22pdf/599us1r38_i42k.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-376", + "judges": "Amy Coney Barrett", + "citations": "599 U.S. 255", + "case_name_shorts": "Haaland" }, { - "case_dates": "2016-01-25", - "case_names": "FERC v. Electric Power Supply Assn.", - "download_urls": "/opinions/15pdf/14-840- new_o75q.pdf", + "case_dates": "2023-06-08", + "case_names": "Jack Daniel's Properties, Inc. v. VIP Products LLC", + "download_urls": "/opinions/22pdf/599us1r35_7m58.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-840", + "docket_numbers": "22-148", "judges": "Elana Kagan", - "case_name_shorts": "FERC" + "citations": "599 U.S. 140", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-08", + "case_names": "Health and Hospital Corporation of Marion Cty. v. Talevski", + "download_urls": "/opinions/22pdf/599us1r36_k536.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-806", + "judges": "Ketanji Brown Jackson", + "citations": "599 U.S. 166", + "case_name_shorts": "Talevski" + }, + { + "case_dates": "2023-06-08", + "case_names": "Dubin v. United States", + "download_urls": "/opinions/22pdf/599us1r34_p86b.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-10", + "judges": "Sonia Sotomayor", + "citations": "599 U.S. 110", + "case_name_shorts": "Dubin" + }, + { + "case_dates": "2023-06-08", + "case_names": "Allen v. Milligan", + "download_urls": "/opinions/22pdf/599us1r33_3f14.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1086", + "judges": "John G. Roberts", + "citations": "599 U.S. 1", + "case_name_shorts": "Allen" + }, + { + "case_dates": "2023-06-01", + "case_names": "United States ex rel. Schutte v. Supervalu Inc.", + "download_urls": "/opinions/22pdf/598us2r30_g2bh.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1326", + "judges": "Clarence Thomas", + "citations": "598 U.S. 739", + "case_name_shorts": "" }, { - "case_dates": "2016-01-25", - "case_names": "Amgen Inc. v. Harris", - "download_urls": "/opinions/15pdf/15-278_2co3.pdf", + "case_dates": "2023-06-01", + "case_names": "Slack Technologies, LLC v. Pirani", + "download_urls": "/opinions/22pdf/598us2r31_5h26.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-278", + "docket_numbers": "22-200", + "judges": "Neil Gorsuch", + "citations": "598 U.S. 759", + "case_name_shorts": "Pirani" + }, + { + "case_dates": "2023-06-01", + "case_names": "Glacier Northwest, Inc. v. Teamsters", + "download_urls": "/opinions/22pdf/598us2r32_ca7d.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1449", + "judges": "Amy Coney Barrett", + "citations": "598 U.S. 771", + "case_name_shorts": "Teamsters" + }, + { + "case_dates": "2023-05-25", + "case_names": "Tyler v. Hennepin County", + "download_urls": "/opinions/22pdf/598us2r27_aplc.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-166", + "judges": "John G. Roberts", + "citations": "598 U.S. 631", + "case_name_shorts": "Tyler" + }, + { + "case_dates": "2023-05-25", + "case_names": "Sackett v. EPA", + "download_urls": "/opinions/22pdf/598us2r28_5h26.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-454", + "judges": "Samuel Alito", + "citations": "598 U.S. 651", + "case_name_shorts": "Sackett" + }, + { + "case_dates": "2023-05-25", + "case_names": "Dupree v. Younger", + "download_urls": "/opinions/22pdf/598us2r29_k5fm.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-210", + "judges": "Amy Coney Barrett", + "citations": "598 U.S. 729", + "case_name_shorts": "Dupree" + }, + { + "case_dates": "2023-05-22", + "case_names": "Calcutt v. FDIC", + "download_urls": "/opinions/22pdf/598us2r26_feag.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-714", "judges": "Per Curiam", - "case_name_shorts": "Harris" + "citations": "598 U.S. 623", + "case_name_shorts": "Calcutt" }, { - "case_dates": "2016-01-20", - "case_names": "Montanile v. Board of Trustees of Nat. Elevator Industry Health Benefit Plan", - "download_urls": "/opinions/15pdf/14-723_1bn2.pdf", + "case_dates": "2023-05-18", + "case_names": "Twitter, Inc. v. Taamneh", + "download_urls": "/opinions/22pdf/598us2r22_hejm.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-723", + "docket_numbers": "21-1496", "judges": "Clarence Thomas", - "case_name_shorts": "Montanile" + "citations": "598 U.S. 471", + "case_name_shorts": "Taamneh" + }, + { + "case_dates": "2023-05-18", + "case_names": "Polselli v. IRS", + "download_urls": "/opinions/22pdf/598us2r20_b07d.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1599", + "judges": "John G. Roberts", + "citations": "598 U.S. 432", + "case_name_shorts": "Polselli" }, { - "case_dates": "2016-01-20", - "case_names": "Kansas v. Carr", - "download_urls": "/opinions/15pdf/14-449_9o7d.pdf", + "case_dates": "2023-05-18", + "case_names": "Ohio Adjutant General's Dept. v. FLRA", + "download_urls": "/opinions/22pdf/598us2r21_5425.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-449", - "judges": "Antonin Scalia", - "case_name_shorts": "Carr" + "docket_numbers": "21-1454", + "judges": "Clarence Thomas", + "citations": "598 U.S. 449", + "case_name_shorts": "FLRA" }, { - "case_dates": "2016-01-20", - "case_names": "Duncan v. Owens", - "download_urls": "/opinions/15pdf/14-1516_2co3.pdf", + "case_dates": "2023-05-18", + "case_names": "Gonzalez v. Google LLC", + "download_urls": "/opinions/22pdf/598us2r25_i32j.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-1516", + "docket_numbers": "21-1333", "judges": "Per Curiam", - "case_name_shorts": "Duncan" + "citations": "598 U.S. 617", + "case_name_shorts": "Gonzalez" + }, + { + "case_dates": "2023-05-18", + "case_names": "Andy Warhol Foundation for Visual Arts, Inc. v. Goldsmith", + "download_urls": "/opinions/22pdf/598us2r23_6k47.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-869", + "judges": "Sonia Sotomayor", + "citations": "598 U.S. 508", + "case_name_shorts": "Goldsmith" + }, + { + "case_dates": "2023-05-18", + "case_names": "Amgen Inc. v. Sanofi", + "download_urls": "/opinions/22pdf/598us2r24_m6hn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-757", + "judges": "Neil Gorsuch", + "citations": "598 U.S. 594", + "case_name_shorts": "Sanofi" + }, + { + "case_dates": "2023-05-11", + "case_names": "Santos-Zacaria v. Garland", + "download_urls": "/opinions/22pdf/598us2r19_dc8f.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1436", + "judges": "Ketanji Brown Jackson", + "citations": "598 U.S. 411", + "case_name_shorts": "Santos-Zacaria" + }, + { + "case_dates": "2023-05-11", + "case_names": "Percoco v. United States", + "download_urls": "/opinions/22pdf/598us2r16_4gdj.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1158", + "judges": "Samuel Alito", + "citations": "598 U.S. 319", + "case_name_shorts": "Percoco" }, { - "case_dates": "2016-01-20", - "case_names": "Campbell-Ewald v. Gomez", - "download_urls": "/opinions/15pdf/14-857 - new_gfbi.pdf", + "case_dates": "2023-05-11", + "case_names": "National Pork Producers Council v. Ross", + "download_urls": "/opinions/22pdf/598us2r18_g2bh.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-857", - "judges": "Ruth Bader Ginsburg", - "case_name_shorts": "Campbell-Ewald" + "docket_numbers": "21-468", + "judges": "Neil Gorsuch", + "citations": "598 U.S. 356", + "case_name_shorts": "Ross" }, { - "case_dates": "2016-01-12", - "case_names": "Hurst v. Florida", - "download_urls": "/opinions/15pdf/14-7505_5ie6.pdf", + "case_dates": "2023-05-11", + "case_names": "Financial Oversight and Management Bd. for P. R. v. Centro De Periodismo Investigativo, Inc.", + "download_urls": "/opinions/22pdf/598us2r17_c0nd.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-7505", + "docket_numbers": "22-96", + "judges": "Elana Kagan", + "citations": "598 U.S. 339", + "case_name_shorts": "" + }, + { + "case_dates": "2023-05-11", + "case_names": "Ciminelli v. United States", + "download_urls": "/opinions/22pdf/598us2r15_d1o2.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1170", + "judges": "Clarence Thomas", + "citations": "598 U.S. 306", + "case_name_shorts": "Ciminelli" + }, + { + "case_dates": "2023-04-19", + "case_names": "Turkiye Halk Bankasi A.S. v. United States", + "download_urls": "/opinions/22pdf/598us1r13_3e04.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1450", + "judges": "Brett Kavanaugh", + "citations": "598 U.S. 264", + "case_name_shorts": "" + }, + { + "case_dates": "2023-04-19", + "case_names": "Reed v. Goertz", + "download_urls": "/opinions/22pdf/598us1r12_l5gm.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-442", + "judges": "Brett Kavanaugh", + "citations": "598 U.S. 230", + "case_name_shorts": "Reed" + }, + { + "case_dates": "2023-04-19", + "case_names": "MOAC Mall Holdings LLC v. Transform Holdco LLC", + "download_urls": "/opinions/22pdf/598us1r14_3e04.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1270", + "judges": "Ketanji Brown Jackson", + "citations": "598 U.S. 288", + "case_name_shorts": "" + }, + { + "case_dates": "2023-04-18", + "case_names": "New York v. New Jersey", + "download_urls": "/opinions/22pdf/598us1r11_ca7d.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "156, Orig.", + "judges": "Brett Kavanaugh", + "citations": "598 U.S. 218", + "case_name_shorts": "" + }, + { + "case_dates": "2023-04-14", + "case_names": "Axon Enterprise, Inc. v. FTC", + "download_urls": "/opinions/22pdf/598us1r10_febh.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-86", + "judges": "Elana Kagan", + "citations": "598 U.S. 175", + "case_name_shorts": "" + }, + { + "case_dates": "2023-03-28", + "case_names": "Wilkins v. United States", + "download_urls": "/opinions/22pdf/598us1r9_8mjp.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-1164", "judges": "Sonia Sotomayor", - "case_name_shorts": "Hurst" + "citations": "598 U.S. 152", + "case_name_shorts": "Wilkins" }, { - "case_dates": "2016-01-12", - "case_names": "Bruce v. Samuels", - "download_urls": "/opinions/15pdf/14-844_21ok.pdf", + "case_dates": "2023-03-21", + "case_names": "Luna Perez v. Sturgis Public Schools", + "download_urls": "/opinions/22pdf/598us1r8_limq.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-844", - "judges": "Ruth Bader Ginsburg", - "case_name_shorts": "Bruce" + "docket_numbers": "21-887", + "judges": "Neil Gorsuch", + "citations": "598 U.S. 142", + "case_name_shorts": "" }, { - "case_dates": "2015-12-14", - "case_names": "White v. Wheeler", - "download_urls": "/opinions/15pdf/14-1372_1p23.pdf", + "case_dates": "2023-02-28", + "case_names": "Delaware v. Pennsylvania", + "download_urls": "/opinions/22pdf/598us1r7_3dq4.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-1372", - "judges": "Per Curiam", - "case_name_shorts": "White" + "docket_numbers": "145, Orig.", + "judges": "Ketanji Brown Jackson", + "citations": "598 U.S. 115", + "case_name_shorts": "" }, { - "case_dates": "2015-12-14", - "case_names": "DIRECTV, Inc. v. Imburgia", - "download_urls": "/opinions/15pdf/14-462_2co3.pdf", + "case_dates": "2023-02-28", + "case_names": "Bittner v. United States", + "download_urls": "/opinions/22pdf/598us1r6_0813.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-462", - "judges": "Stephen Breyer", - "case_name_shorts": "Imburgia" + "docket_numbers": "21-1195", + "judges": "Neil Gorsuch", + "citations": "598 U.S. 85", + "case_name_shorts": "Bittner" }, { - "case_dates": "2015-12-08", - "case_names": "Shapiro v. McManus", - "download_urls": "/opinions/15pdf/14-990_10n2.pdf", + "case_dates": "2023-02-22", + "case_names": "Helix Energy Solutions Group, Inc. v. Hewitt", + "download_urls": "/opinions/22pdf/598us1r4_1a7d.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-990", - "judges": "Antonin Scalia", - "case_name_shorts": "Shapiro" + "docket_numbers": "21-984", + "judges": "Elana Kagan", + "citations": "598 U.S. 39", + "case_name_shorts": "Hewitt" }, { - "case_dates": "2015-12-01", - "case_names": "OBB Personenverkehr AG v. Sachs", - "download_urls": "/opinions/15pdf/13-1067_onkq.pdf", + "case_dates": "2023-02-22", + "case_names": "Cruz v. Arizona", + "download_urls": "/opinions/22pdf/598us1r3_j4ek.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "13-1067", - "judges": "John G. Roberts", - "case_name_shorts": "Sachs" + "docket_numbers": "21-846", + "judges": "Sonia Sotomayor", + "citations": "598 U.S. 17", + "case_name_shorts": "Cruz" }, { - "case_dates": "2015-11-09", - "case_names": "Mullenix v. Luna", - "download_urls": "/opinions/15pdf/14-1143_f20h.pdf", + "case_dates": "2023-02-22", + "case_names": "Bartenwerfer v. Buckley", + "download_urls": "/opinions/22pdf/598us1r5_1b72.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-1143", - "judges": "Per Curiam", - "case_name_shorts": "Mullenix" + "docket_numbers": "21-908", + "judges": "Amy Coney Barrett", + "citations": "598 U.S. 69", + "case_name_shorts": "Bartenwerfer" }, { - "case_dates": "2015-10-05", - "case_names": "Maryland v. Kulbicki", - "download_urls": "/opinions/15pdf/14-848_pok0.pdf", + "case_dates": "2023-01-23", + "case_names": "In re Grand Jury", + "download_urls": "/opinions/22pdf/598us1r2_d18e.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-848", + "docket_numbers": "21-1397", "judges": "Per Curiam", - "case_name_shorts": "Kulbicki" + "citations": "598 U.S. 15", + "case_name_shorts": "" + }, + { + "case_dates": "2023-01-23", + "case_names": "Arellano v. McDonough", + "download_urls": "/opinions/22pdf/598us1r1_3e04.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "21-432", + "judges": "Amy Coney Barrett", + "citations": "598 U.S. 1", + "case_name_shorts": "Arellano" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/scotus_slip_example.html b/tests/examples/opinions/united_states/scotus_slip_example.html index c9af54491..052f7c18e 100644 --- a/tests/examples/opinions/united_states/scotus_slip_example.html +++ b/tests/examples/opinions/united_states/scotus_slip_example.html @@ -3,545 +3,1035 @@ - - - - - - - - - - - - - - - - - - - - - - - - - 2015 Term Opinions of the Court - -
    -
    - - - - -
    - - - - - - - - - - - + -
    - - -
    -
    -
    + +
    +
    -
    -
    - Supreme Court of the United States -
    -
    - - + +
    + + +
    -
    -
    + +
    +
    +
    +
    +
    + Skip Navigation LinksHome > Opinions > Opinions of the Court - 2022 +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    + + + -
    -
    -
    -

    2015 Term Opinions of the Court

    -
    -
    -

    Slip Opinions, Per Curiams (PC), and Original Case Decrees -(D)

    - -

    The "slip" opinion is the second version of an opinion. It is sent to the printer later in the day -on which the "bench" opinion is released by the Court. Each slip opinion has the same elements as the -bench opinion--majority or plurality opinion, concurrences or dissents, and a prefatory syllabus--but -may contain corrections not appearing in the bench opinion. The slip opinions collected here are those -issued during October Term 2015 (October 5, 2015, through October 2, 2016). These opinions are posted on the Website -within minutes after the bench opinions are issued and will remain posted until the opinions for the -entire Term are published in the bound volumes of the United States Reports. For further information, -see Column Header Definitions and -Information About Opinions.

    - -

    Caution: These electronic opinions may contain computer-generated errors or other deviations -from the official printed slip opinion pamphlets. Moreover, a slip opinion is replaced by a paginated -version of the case in the preliminary print, and, subsequently, by the final version of the case in -a U. S. Reports bound volume. In case of discrepancies -between the print and electronic versions of a slip opinion, the print version controls. However, where -the electronic version has been designated “revised,” the electronic version controls to the extent that -it differs from the print version with regard to the noted revision. In case of discrepancies between the -slip opinion and any later official version of the opinion—i.e., the preliminary print or bound volume version—the later version controls.

    -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    R-DateDocketNameRevisedJ.Pt.
    181/25/1615-278Amgen Inc. v. Harris PC577/2
    171/25/1615-493James v. Boise PC577/2
    161/25/1614-840FERC v. Electric Power Supply Assn.1/28/16EK577/2
    151/25/1614-510Menominee Tribe of Wis. v. United States A577/2
    141/25/1614-1095Musacchio v. United States T577/2
    131/25/1614-280Montgomery v. Louisiana1/27/16K577/2
    121/20/1614-1516Duncan v. Owens PC577/1
    111/20/1614-857Campbell-Ewald v. Gomez2/09/16G577/1
    101/20/1614-723Montanile v. Board of Trustees of Nat. Elevator Industry Health Benefit Plan T577/1
    91/20/1614-449Kansas v. Carr AS577/1
    81/12/1614-7505Hurst v. Florida SS577/1
    71/12/1614-844Bruce v. Samuels G577/1
    612/14/1514-1372White v. Wheeler PC577/1
    512/14/1514-462DIRECTV, Inc. v. Imburgia B577/1
    412/08/1514-990Shapiro v. McManus AS577/1
    312/01/1513-1067OBB Personenverkehr AG v. Sachs R577/1
    211/09/1514-1143Mullenix v. Luna PC577/1
    110/05/1514-848Maryland v. Kulbicki PC577/1
    - - -
    - -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - -
    February 11, 2016 - | Version 2014.1
    -
    - Home - | - Help - | - Site Map - | - Contact Us - | - About Us - | - FAQ - | - Jobs - | - Links - | - Building Regulations
    - - Website Policies and Notices - | - Privacy Policy - | - USA.GOV
    - - Supreme Court of the United States -
    - -
    -
    -
    +
    + +
    + + +
    +

    Opinions of the Court - 2022

    +
    +
    + + + +

    The opinions collected here are those issued during October Term 2022 (October 3, 2022, through October 1, 2023). Opinions are posted on the website upon + release in slip opinion format. Slip opinions remain posted until replaced with opinions edited to reflect the usual publication style of the United States + Reports, including final pagination that will carry forward unchanged in the corresponding preliminary prints and the bound volumes of the United States + Reports.

    + + + + +
    +
    + + + +
    + + +
    +
    +
    + +
    +
    + + 2023 + + 2022 + + 2021 + + 2020 + + 2019 + + 2018 + + 2017 + + See Earlier Opinions +
    +
    + + +
    +
     
    +
    +
    +
    Term Year: 2022 +      + Table Information +
    +
    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    R-DateDocketNameJ.Citation
    586/30/2321-476303 Creative LLC v. ElenisNG600 U.S. 570
    576/30/2322-535Department of Education v. BrownA600 U.S. 551
    566/30/2322-506Biden v. NebraskaR600 U.S. 477
    556/29/2322-174Groff v. DeJoyA600 U.S. 447
    546/29/2321-1043Abitron Austria GmbH v. Hetronic Int’l, Inc.A600 U.S. 412
    536/29/2320-1199Students for Fair Admissions, Inc. v. President and Fellows of Harvard CollegeR600 U.S. 181
    526/27/2321-1168Mallory v. Norfolk Southern R. CoNG600 U.S. 122
    516/27/2322-138Counterman v. ColoradoEK600 U.S. 66
    506/27/2321-1271Moore v. HarperR600 U.S. 1
    496/23/2322-179United States v. HansenAB599 U.S. 762
    +
    + +
    +
    +
    + +
    +
    +

    + + + More +

    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    R-DateDocketNameJ.Citation
    486/23/2322-105Coinbase, Inc. v. BielskiBK599 U.S. 736
    476/23/2322-58United States v. TexasBK599 U.S. 670
    466/23/2322-196Samia v. United StatesT599 U.S. 635
    456/22/2322-23Pugin v. GarlandBK599 U.S. 600
    446/22/2321-1484Arizona v. Navajo NationBK599 U.S. 555
    436/22/2322-381Yegiazaryan v. SmaginSS599 U.S. 533
    426/22/2321-857Jones v. HendrixT599 U.S. 465
    416/16/2322-49Lora v. United StatesKJ599 U.S. 453
    406/16/2321-1052United States ex rel. Polansky v. Executive Health Resources, Inc.EK599 U.S. 419
    396/15/2322-227Lac du Flambeau Band of Lake Superior Chippewa Indians v. CoughlinKJ599 U.S. 382
    386/15/2321-376Haaland v. BrackeenAB599 U.S. 255
    376/15/2321-1576Smith v. United StatesA599 U.S. 236
    366/08/2321-806Health and Hospital Corporation of Marion Cty. v. TalevskiKJ599 U.S. 166
    356/08/2322-148Jack Daniel’s Properties, Inc. v. VIP Products LLCEK599 U.S. 140
    346/08/2322-10Dubin v. United StatesSS599 U.S. 110
    336/08/2321-1086Allen v. MilliganR599 U.S. 1
    326/01/2321-1449Glacier Northwest, Inc. v. TeamstersAB598 U.S. 771
    316/01/2322-200Slack Technologies, LLC v. PiraniNG598 U.S. 759
    306/01/2321-1326United States ex rel. Schutte v. Supervalu Inc.T598 U.S. 739
    295/25/2322-210Dupree v. YoungerAB598 U.S. 729
    285/25/2321-454Sackett v. EPAA598 U.S. 651
    275/25/2322-166Tyler v. Hennepin CountyR598 U.S. 631
    265/22/2322-714Calcutt v. FDICPC598 U.S. 623
    255/18/2321-1333Gonzalez v. Google LLCPC598 U.S. 617
    245/18/2321-757Amgen Inc. v. SanofiNG598 U.S. 594
    235/18/2321-869Andy Warhol Foundation for Visual Arts, Inc. v. GoldsmithSS598 U.S. 508
    225/18/2321-1496Twitter, Inc. v. TaamnehT598 U.S. 471
    215/18/2321-1454Ohio Adjutant General’s Dept. v. FLRAT598 U.S. 449
    205/18/2321-1599Polselli v. IRSR598 U.S. 432
    195/11/2321-1436Santos-Zacaria v. GarlandKJ598 U.S. 411
    185/11/2321-468National Pork Producers Council v. RossNG598 U.S. 356
    175/11/2322-96Financial Oversight and Management Bd. for P. R. v. Centro De Periodismo Investigativo, Inc.EK598 U.S. 339
    165/11/2321-1158Percoco v. United StatesA598 U.S. 319
    155/11/2321-1170Ciminelli v. United StatesT598 U.S. 306
    144/19/2321-1270MOAC Mall Holdings LLC v. Transform Holdco LLCKJ598 U.S. 288
    134/19/2321-1450Turkiye Halk Bankasi A.S. v. United StatesBK598 U.S. 264
    124/19/2321-442Reed v. GoertzBK598 U.S. 230
    114/18/23156, Orig.New York v. New JerseyBK598 U.S. 218
    104/14/2321-86Axon Enterprise, Inc. v. FTCEK598 U.S. 175
    93/28/2321-1164Wilkins v. United StatesSS598 U.S. 152
    83/21/2321-887Luna Perez v. Sturgis Public SchoolsNG598 U.S. 142
    72/28/23145, Orig.Delaware v. PennsylvaniaKJ598 U.S. 115
    62/28/2321-1195Bittner v. United StatesNG598 U.S. 85
    52/22/2321-908Bartenwerfer v. BuckleyAB598 U.S. 69
    42/22/2321-984Helix Energy Solutions Group, Inc. v. HewittEK598 U.S. 39
    32/22/2321-846Cruz v. ArizonaSS598 U.S. 17
    21/23/2321-1397In re Grand JuryPC598 U.S. 15
    11/23/2321-432Arellano v. McDonoughAB598 U.S. 1
    +
    + +
    +
    + +
    +
    + +
    +


    + + + +
    +

     

    + + +
    + + + +
    + +
    +
    +
    + SUPREME COURT OF THE UNITED STATES + + 1 First Street, NE + + Washington, DC 20543 +
    + +
    + - + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/scotus_slip_example_2.compare.json b/tests/examples/opinions/united_states/scotus_slip_example_2.compare.json deleted file mode 100644 index 005b5e513..000000000 --- a/tests/examples/opinions/united_states/scotus_slip_example_2.compare.json +++ /dev/null @@ -1,640 +0,0 @@ -[ - { - "case_dates": "2018-06-14", - "case_names": "Minnesota Voters Alliance v. Mansky", - "download_urls": "/opinions/17pdf/16-1435_2co3.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1435", - "judges": "John G. Roberts", - "case_name_shorts": "Mansky" - }, - { - "case_dates": "2018-06-14", - "case_names": "Animal Science Products, Inc. v. Hebei Welcome Pharmaceutical Co.", - "download_urls": "/opinions/17pdf/16-1220_3e04.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1220", - "judges": "Ruth Bader Ginsburg", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-13", - "case_names": "Masterpiece Cakeshop, Ltd. v. Colorado Civil Rights Comm'n", - "download_urls": "/opinions/17pdf/16-111diff2_e1pf.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-111", - "judges": "Anthony Kennedy", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-11", - "case_names": "Washington v. United States", - "download_urls": "/opinions/17pdf/17-269_3eb4.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-269", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-11", - "case_names": "Sveen v. Melin", - "download_urls": "/opinions/17pdf/16-1432_7j8b.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1432", - "judges": "Elana Kagan", - "case_name_shorts": "Sveen" - }, - { - "case_dates": "2018-06-11", - "case_names": "Husted v. A. Philip Randolph Institute", - "download_urls": "/opinions/17pdf/16-980_f2q3.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-980", - "judges": "Samuel Alito", - "case_name_shorts": "Husted" - }, - { - "case_dates": "2018-06-11", - "case_names": "China Agritech, Inc. v. Resh", - "download_urls": "/opinions/17pdf/17-432_08m1.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-432", - "judges": "Ruth Bader Ginsburg", - "case_name_shorts": "Resh" - }, - { - "case_dates": "2018-06-05", - "case_names": "Hughes v. United States", - "download_urls": "/opinions/17pdf/17-155diff_6h78.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-155", - "judges": "Anthony Kennedy", - "case_name_shorts": "Hughes" - }, - { - "case_dates": "2018-06-04", - "case_names": "Masterpiece Cakeshop, Ltd. v. Colorado Civil Rights Comm'n", - "download_urls": "/opinions/17pdf/16-111diff_868c.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-111", - "judges": "Anthony Kennedy", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-04", - "case_names": "Masterpiece Cakeshop, Ltd. v. Colorado Civil Rights Comm'n", - "download_urls": "/opinions/17pdf/16-111_new2_22p3.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-111", - "judges": "Anthony Kennedy", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-04", - "case_names": "Lamar, Archer & Cofrin, LLP v. Appling", - "download_urls": "/opinions/17pdf/16-1215_gdhk.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1215", - "judges": "Sonia Sotomayor", - "case_name_shorts": "Appling" - }, - { - "case_dates": "2018-06-04", - "case_names": "Koons v. United States", - "download_urls": "/opinions/17pdf/17-5716_jhek.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-5716", - "judges": "Samuel Alito", - "case_name_shorts": "Koons" - }, - { - "case_dates": "2018-06-04", - "case_names": "Hughes v. United States", - "download_urls": "/opinions/17pdf/17-155_new_4f15.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-155", - "judges": "Anthony Kennedy", - "case_name_shorts": "Hughes" - }, - { - "case_dates": "2018-06-04", - "case_names": "Azar v. Garza", - "download_urls": "/opinions/17pdf/17-654_5j3b.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-654", - "judges": "Per Curiam", - "case_name_shorts": "Azar" - }, - { - "case_dates": "2018-05-29", - "case_names": "Lagos v. United States", - "download_urls": "/opinions/17pdf/16-1519_o7jp.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1519", - "judges": "Stephen Breyer", - "case_name_shorts": "Lagos" - }, - { - "case_dates": "2018-05-29", - "case_names": "Collins v. Virginia", - "download_urls": "/opinions/17pdf/16-1027_7lio.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1027", - "judges": "Sonia Sotomayor", - "case_name_shorts": "Collins" - }, - { - "case_dates": "2018-05-29", - "case_names": "City of Hays v. Vogt", - "download_urls": "/opinions/17pdf/16-1495_e1pf.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1495", - "judges": "Per Curiam", - "case_name_shorts": "Vogt" - }, - { - "case_dates": "2018-05-21", - "case_names": "Upper Skagit Tribe v. Lundgren", - "download_urls": "/opinions/17pdf/17-387_ap6c.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-387", - "judges": "Neil Gorsuch", - "case_name_shorts": "Lundgren" - }, - { - "case_dates": "2018-05-21", - "case_names": "Epic Systems Corp. v. Lewis", - "download_urls": "/opinions/17pdf/16-285_q8l1.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-285", - "judges": "Neil Gorsuch", - "case_name_shorts": "Lewis" - }, - { - "case_dates": "2018-05-14", - "case_names": "United States v. Sanchez-Gomez", - "download_urls": "/opinions/17pdf/17-312_i426.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-312", - "judges": "John G. Roberts", - "case_name_shorts": "Sanchez-Gomez" - }, - { - "case_dates": "2018-05-14", - "case_names": "Murphy v. National Collegiate Athletic Assn.", - "download_urls": "/opinions/17pdf/16-476_dbfi.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-476", - "judges": "Samuel Alito", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-14", - "case_names": "McCoy v. Louisiana", - "download_urls": "/opinions/17pdf/16-8255_i4ek.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-8255", - "judges": "Ruth Bader Ginsburg", - "case_name_shorts": "McCoy" - }, - { - "case_dates": "2018-05-14", - "case_names": "Dahda v. United States", - "download_urls": "/opinions/17pdf/17-43_m648.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-43", - "judges": "Stephen Breyer", - "case_name_shorts": "Dahda" - }, - { - "case_dates": "2018-05-14", - "case_names": "Byrd v. United States", - "download_urls": "/opinions/17pdf/16-1371_1bn2.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1371", - "judges": "Anthony Kennedy", - "case_name_shorts": "Byrd" - }, - { - "case_dates": "2018-04-30", - "case_names": "Jesner v. Arab Bank, PLC", - "download_urls": "/opinions/17pdf/16-499diff_868c.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-499", - "judges": "Anthony Kennedy", - "case_name_shorts": "Jesner" - }, - { - "case_dates": "2018-04-24", - "case_names": "SAS Institute Inc. v. Iancu", - "download_urls": "/opinions/17pdf/16-969_f2qg.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-969", - "judges": "Neil Gorsuch", - "case_name_shorts": "Iancu" - }, - { - "case_dates": "2018-04-24", - "case_names": "Oil States Energy Services, LLC v. Greene's Energy Group, LLC", - "download_urls": "/opinions/17pdf/16-712_87ad.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-712", - "judges": "Clarence Thomas", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-24", - "case_names": "Jesner v. Arab Bank, PLC", - "download_urls": "/opinions/17pdf/16-499_new_7648.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-499", - "judges": "Anthony Kennedy", - "case_name_shorts": "Jesner" - }, - { - "case_dates": "2018-04-17", - "case_names": "Wilson v. Sellers", - "download_urls": "/opinions/17pdf/16-6855_c18e.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-6855", - "judges": "Stephen Breyer", - "case_name_shorts": "Wilson" - }, - { - "case_dates": "2018-04-17", - "case_names": "United States v. Microsoft Corp.", - "download_urls": "/opinions/17pdf/17-2_1824.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-2", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-17", - "case_names": "Sessions v. Dimaya", - "download_urls": "/opinions/17pdf/15-1498_1b8e.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1498", - "judges": "Elana Kagan", - "case_name_shorts": "Dimaya" - }, - { - "case_dates": "2018-04-02", - "case_names": "Kisela v. Hughes", - "download_urls": "/opinions/17pdf/17-467_bqm1.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-467", - "judges": "Per Curiam", - "case_name_shorts": "Kisela" - }, - { - "case_dates": "2018-04-02", - "case_names": "Encino Motorcars, LLC v. Navarro", - "download_urls": "/opinions/17pdf/16-1362_gfbh.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1362", - "judges": "Clarence Thomas", - "case_name_shorts": "Navarro" - }, - { - "case_dates": "2018-03-27", - "case_names": "Hall v. Hall", - "download_urls": "/opinions/17pdf/16-1150_3ebh.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1150", - "judges": "John G. Roberts", - "case_name_shorts": "Hall" - }, - { - "case_dates": "2018-03-21", - "case_names": "Marinello v. United States", - "download_urls": "/opinions/17pdf/16-1144_p8k0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1144", - "judges": "Stephen Breyer", - "case_name_shorts": "Marinello" - }, - { - "case_dates": "2018-03-21", - "case_names": "Ayestas v. Davis", - "download_urls": "/opinions/17pdf/16-6795_c9dh.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-6795", - "judges": "Samuel Alito", - "case_name_shorts": "Ayestas" - }, - { - "case_dates": "2018-03-20", - "case_names": "Cyan, Inc. v. Beaver County Employees Retirement Fund", - "download_urls": "/opinions/17pdf/15-1439_8njq.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1439", - "judges": "Elana Kagan", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-05", - "case_names": "U. S. Bank N. A. v. Village at Lakeridge, LLC", - "download_urls": "/opinions/17pdf/15-1509_4fbi.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1509", - "judges": "Elana Kagan", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-05", - "case_names": "Texas v. New Mexico", - "download_urls": "/opinions/17pdf/141orig_f204.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "141, Orig.", - "judges": "Neil Gorsuch", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-27", - "case_names": "Patchak v. Zinke", - "download_urls": "/opinions/17pdf/16-498_l5gm.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-498", - "judges": "Clarence Thomas", - "case_name_shorts": "Patchak" - }, - { - "case_dates": "2018-02-27", - "case_names": "Merit Management Group, LP v. FTI Consulting, Inc.", - "download_urls": "/opinions/17pdf/16-784_gdhk.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-784", - "judges": "Sonia Sotomayor", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-27", - "case_names": "Jennings v. Rodriguez", - "download_urls": "/opinions/17pdf/15-1204_f29g.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1204", - "judges": "Samuel Alito", - "case_name_shorts": "Jennings" - }, - { - "case_dates": "2018-02-21", - "case_names": "Rubin v. Islamic Republic of Iran", - "download_urls": "/opinions/17pdf/16-534_6jfm.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-534", - "judges": "Sonia Sotomayor", - "case_name_shorts": "Rubin" - }, - { - "case_dates": "2018-02-21", - "case_names": "Murphy v. Smith", - "download_urls": "/opinions/17pdf/16-1067_q86b.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1067", - "judges": "Neil Gorsuch", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-21", - "case_names": "Digital Realty Trust, Inc. v. Somers", - "download_urls": "/opinions/17pdf/16-1276_b0nd.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1276", - "judges": "Ruth Bader Ginsburg", - "case_name_shorts": "Somers" - }, - { - "case_dates": "2018-02-21", - "case_names": "Class v. United States", - "download_urls": "/opinions/17pdf/16-424_g2bh.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-424", - "judges": "Stephen Breyer", - "case_name_shorts": "Class" - }, - { - "case_dates": "2018-02-20", - "case_names": "Montana v. Wyoming", - "download_urls": "/opinions/17pdf/137origdiff_87be.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "137, Orig", - "judges": "Decree", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-20", - "case_names": "Montana v. Wyoming", - "download_urls": "/opinions/17pdf/137orig_new_2cp3.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "137, Orig", - "judges": "Decree", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-20", - "case_names": "CNH Industrial N. V. v. Reese", - "download_urls": "/opinions/17pdf/17-515_2c83.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-515", - "judges": "Per Curiam", - "case_name_shorts": "Reese" - }, - { - "case_dates": "2018-01-22", - "case_names": "National Assn. of Mfrs. v. Department of Defense", - "download_urls": "/opinions/17pdf/16-299_8nk0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-299", - "judges": "Sonia Sotomayor", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-22", - "case_names": "District of Columbia v. Wesby", - "download_urls": "/opinions/17pdf/15-1485diff_758b.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1485", - "judges": "Clarence Thomas", - "case_name_shorts": "Wesby" - }, - { - "case_dates": "2018-01-22", - "case_names": "District of Columbia v. Wesby", - "download_urls": "/opinions/17pdf/15-1485_new_8n59.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1485", - "judges": "Clarence Thomas", - "case_name_shorts": "Wesby" - }, - { - "case_dates": "2018-01-22", - "case_names": "Artis v. District of Columbia", - "download_urls": "/opinions/17pdf/16-460_bqm2.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-460", - "judges": "Ruth Bader Ginsburg", - "case_name_shorts": "Artis" - }, - { - "case_dates": "2018-01-08", - "case_names": "Tharpe v. Sellers", - "download_urls": "/opinions/17pdf/17-6075_p8k0.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-6075", - "judges": "Per Curiam", - "case_name_shorts": "Tharpe" - }, - { - "case_dates": "2017-12-20", - "case_names": "In Re United States", - "download_urls": "/opinions/17pdf/17-801_6jgm.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-801", - "judges": "Per Curiam", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-08", - "case_names": "Hamer v. Neighborhood Housing Servs. of Chicago", - "download_urls": "/opinions/17pdf/16-658_p86b.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-658", - "judges": "Ruth Bader Ginsburg", - "case_name_shorts": "Hamer" - }, - { - "case_dates": "2017-11-06", - "case_names": "Kernan v. Cuero", - "download_urls": "/opinions/17pdf/16-1468_1a72.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-1468", - "judges": "Per Curiam", - "case_name_shorts": "Kernan" - }, - { - "case_dates": "2017-11-06", - "case_names": "Dunn v. Madison", - "download_urls": "/opinions/17pdf/17-193_6j37.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "17-193", - "judges": "Per Curiam", - "case_name_shorts": "Dunn" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/scotus_slip_example_2.html b/tests/examples/opinions/united_states/scotus_slip_example_2.html deleted file mode 100644 index 430ccfa89..000000000 --- a/tests/examples/opinions/united_states/scotus_slip_example_2.html +++ /dev/null @@ -1,1439 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Opinions of the Court - 2017 - - -
    -
    - - - - -
    - - - - - - - - - - - - - -
    - - - -
    -
    - - -
    - -
    -
    -
    -
    -
    - Supreme Court of the United States -
    -
    - -
    - -
    - Search -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - Skip Navigation LinksHome > Opinions > Opinions of the Court - 2017 -
    -
    -
    -
    -
    -
    - - - -
    - - -
    -

    Opinions of the Court - 2017

    -
    -
    -
    - -

    “Slip” opinions are the first version of the Court’s opinions posted on this website. A “slip” opinion consists of the majority or principal opinion, any concurring or dissenting opinions written by the Justices, and a prefatory syllabus prepared by the Reporter’s Office that summarizes the decision. The slip opinions collected here are those issued during October Term 2017 (October 2, 2017, through September 30, 2018). These opinions are posted on the website within minutes after the opinions are issued and will remain posted until the opinions for the entire Term are published in the bound volumes of the United States Reports. For further information, see Column Header Definitions and Information About Opinions.

    - -

    Caution: These electronic opinions may contain computer-generated errors or other deviations from the official printed slip opinion pamphlets. Moreover, a slip opinion is replaced by a paginated version of the case in the preliminary print, and, subsequently, by the final version of the case in a U. S. Reports bound volume. In case of discrepancies between the print and electronic versions of a slip opinion, the print version controls. However, where the electronic version has been designated “revised,” the electronic version controls to the extent that it differs from the print version with regard to the noted revision. In case of discrepancies between the slip opinion and any later official version of the opinion–i.e., the preliminary print or bound volume version–the later version controls.

    - -
    - - -
    -
    -
    - -
    -
    - - 2017 - - 2016 - - 2015 - - 2014 - - 2013 - - 2012 - - - See Earlier Opinions -
    -
    - - -
    -
     
    -
    -
    -
    Term Year: 2017     Expand All   |   Collapse All
    - -
    - -
    -
    -

    - - - - June -

    -
    -
    - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    R-DateDocketNameRevisedJ.Pt.
    526/14/1816-1220Animal Science Products, Inc. v. Hebei Welcome Pharmaceutical Co. G585/1
    516/14/1816-1435Minnesota Voters Alliance v. Mansky R585/1
    506/11/1817-269Washington v. United States PC584/2
    496/11/1816-1432Sveen v. Melin EK584/2
    486/11/1816-980Husted v. A. Philip Randolph Institute A584/2
    476/11/1817-432China Agritech, Inc. v. Resh G584/2
    466/04/1817-654Azar v. Garza PC584/2
    456/04/1816-1215Lamar, Archer & Cofrin, LLP v. Appling SS584/2
    446/04/1817-5716Koons v. United States A584/2
    436/04/1817-155Hughes v. United States6/05/18K584/2
    426/04/1816-111Masterpiece Cakeshop, Ltd. v. Colorado Civil Rights Comm’n6/04/18
    6/13/18
    K584/2
    -
    - -
    -
    -
    - - -
    -
    -

    - - - - May -

    -
    -
    - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    R-DateDocketNameRevisedJ.Pt.
    415/29/1816-1495City of Hays v. Vogt PC584/2
    405/29/1816-1027Collins v. Virginia SS584/2
    395/29/1816-1519Lagos v. United States B584/2
    385/21/1817-387Upper Skagit Tribe v. Lundgren NG584/2
    375/21/1816-285Epic Systems Corp. v. Lewis NG584/2
    365/14/1816-476Murphy v. National Collegiate Athletic Assn. A584/2
    355/14/1817-43Dahda v. United States B584/2
    345/14/1816-8255McCoy v. Louisiana G584/2
    335/14/1816-1371Byrd v. United States K584/2
    325/14/1817-312United States v. Sanchez-Gomez R584/2
    -
    - -
    -
    -
    - - -
    -
    -

    - - - - April -

    -
    -
    - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    R-DateDocketNameRevisedJ.Pt.
    314/24/1816-969SAS Institute Inc. v. Iancu NG584/1
    304/24/1816-712Oil States Energy Services, LLC v. Greene’s Energy Group, LLC T584/1
    294/24/1816-499Jesner v. Arab Bank, PLC4/30/18K584/1
    284/17/1817-2United States v. Microsoft Corp. PC584/1
    274/17/1815-1498Sessions v. Dimaya EK584/1
    264/17/1816-6855Wilson v. Sellers B584/1
    254/02/1817-467Kisela v. Hughes PC584/1
    244/02/1816-1362Encino Motorcars, LLC v. Navarro T584/1
    -
    - -
    -
    -
    - - -
    -
    -

    - - - - March -

    -
    -
    - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    R-DateDocketNameRevisedJ.Pt.
    233/27/1816-1150Hall v. Hall R584/1
    223/21/1816-6795Ayestas v. Davis A584/1
    213/21/1816-1144Marinello v. United States B584/1
    203/20/1815-1439Cyan, Inc. v. Beaver County Employees Retirement Fund EK583/2
    193/05/18141, Orig.Texas v. New Mexico NG583/2
    183/05/1815-1509U. S. Bank N. A. v. Village at Lakeridge, LLC EK583/2
    -
    - -
    -
    -
    - - -
    - -
    - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    R-DateDocketNameRevisedJ.Pt.
    172/27/1816-784Merit Management Group, LP v. FTI Consulting, Inc. SS583/2
    162/27/1815-1204Jennings v. Rodriguez A583/2
    152/27/1816-498Patchak v Zinke T583/2
    142/21/1816-1067Murphy v. Smith NG583/2
    132/21/1816-534Rubin v. Islamic Republic of Iran SS583/2
    122/21/1816-424Class v. United States B583/2
    112/21/1816-1276Digital Realty Trust, Inc. v. Somers G583/2
    102/20/18137, OrigMontana v Wyoming2/20/18D583/2
    92/20/1817-515CNH Industrial N. V. v. Reese PC583/2
    -
    - -
    -
    -
    - - -
    - -
    - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    R-DateDocketNameRevisedJ.Pt.
    81/22/1816-299National Assn. of Mfrs. v. Department of Defense SS583/1
    71/22/1816-460Artis v. District of Columbia G583/1
    61/22/1815-1485District of Columbia v. Wesby1/22/18T583/1
    51/08/1817-6075Tharpe v. Sellers PC583/1
    -
    - -
    -
    -
    - - -
    - -
    - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    R-DateDocketNameRevisedJ.Pt.
    412/20/1717-801In Re United States PC583/1
    -
    - -
    -
    -
    - - -
    - -
    - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    R-DateDocketNameRevisedJ.Pt.
    311/08/1716-658Hamer v. Neighborhood Housing Servs. of Chicago G583/1
    211/06/1717-193Dunn v. Madison PC583/1
    111/06/1716-1468Kernan v. Cuero PC583/1
    -
    - -
    -
    -
    - - -
    - - - -
    -


    - - - -
    -

     

    - - -
    - - - -
    - -
    -
    -
    - SUPREME COURT OF THE UNITED STATES - - 1 First Street, NE - - Washington, DC 20543 -
    - -
    - - - - - - - - -
    - - - diff --git a/tests/examples/opinions/united_states/scotus_slip_example_3.compare.json b/tests/examples/opinions/united_states/scotus_slip_example_3.compare.json deleted file mode 100644 index be0e32ebf..000000000 --- a/tests/examples/opinions/united_states/scotus_slip_example_3.compare.json +++ /dev/null @@ -1,398 +0,0 @@ -[ - { - "case_dates": "2021-02-05", - "case_names": "South Bay United Pentecostal Church v. Newsom", - "download_urls": "/opinions/20pdf/20a136_bq7c.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A136", - "judges": "Neil Gorsuch", - "case_name_shorts": "Newsom" - }, - { - "case_dates": "2021-02-05", - "case_names": "South Bay United Pentecostal Church v. Newsom", - "download_urls": "/opinions/20pdf/20a136_bq7c.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A136", - "judges": "John G. Roberts", - "case_name_shorts": "Newsom" - }, - { - "case_dates": "2021-02-05", - "case_names": "South Bay United Pentecostal Church v. Newsom", - "download_urls": "/opinions/20pdf/20a136_bq7c.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A136", - "judges": "Elana Kagan", - "case_name_shorts": "Newsom" - }, - { - "case_dates": "2021-02-05", - "case_names": "South Bay United Pentecostal Church v. Newsom", - "download_urls": "/opinions/20pdf/20a136_bq7c.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A136", - "judges": "Amy Coney Barrett", - "case_name_shorts": "Newsom" - }, - { - "case_dates": "2021-01-25", - "case_names": "Silver v. United States", - "download_urls": "/opinions/20pdf/20-60_h315.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-60", - "judges": "Neil Gorsuch", - "case_name_shorts": "Silver" - }, - { - "case_dates": "2021-01-22", - "case_names": "Francois v. Wilkinson", - "download_urls": "/opinions/20pdf/20a111_8nj9.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A111", - "judges": "Sonia Sotomayor", - "case_name_shorts": "Francois" - }, - { - "case_dates": "2021-01-15", - "case_names": "United States v. Higgs", - "download_urls": "/opinions/20pdf/20-927_i42k.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-927", - "judges": "Stephen Breyer", - "case_name_shorts": "Higgs" - }, - { - "case_dates": "2021-01-15", - "case_names": "United States v. Higgs", - "download_urls": "/opinions/20pdf/20-927_i42k.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-927", - "judges": "Sonia Sotomayor", - "case_name_shorts": "Higgs" - }, - { - "case_dates": "2021-01-12", - "case_names": "FDA v. American College of Obstetricians and Gynecologists", - "download_urls": "/opinions/20pdf/20a34_3f14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A34", - "judges": "Sonia Sotomayor", - "case_name_shorts": "FDA" - }, - { - "case_dates": "2021-01-12", - "case_names": "FDA v. American College of Obstetricians and Gynecologists", - "download_urls": "/opinions/20pdf/20a34_3f14.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A34", - "judges": "John G. Roberts", - "case_name_shorts": "FDA" - }, - { - "case_dates": "2021-01-11", - "case_names": "Bruni v. City of Pittsburgh", - "download_urls": "/opinions/20pdf/19-1184_heil.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-1184", - "judges": "Clarence Thomas", - "case_name_shorts": "Bruni" - }, - { - "case_dates": "2020-12-17", - "case_names": "Danville Christian Academy, Inc. v. Beshear", - "download_urls": "/opinions/20pdf/20a96_e29g.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A96", - "judges": "Samuel Alito", - "case_name_shorts": "Beshear" - }, - { - "case_dates": "2020-12-17", - "case_names": "Danville Christian Academy, Inc. v. Beshear", - "download_urls": "/opinions/20pdf/20a96_e29g.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A96", - "judges": "Neil Gorsuch", - "case_name_shorts": "Beshear" - }, - { - "case_dates": "2020-12-15", - "case_names": "High Plains Harvest Church v. Polis", - "download_urls": "/opinions/20pdf/20a105_p860.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A105", - "judges": "Elana Kagan", - "case_name_shorts": "Polis" - }, - { - "case_dates": "2020-12-11", - "case_names": "Bourgeois v. Watson", - "download_urls": "/opinions/20pdf/20a104_l537.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A104", - "judges": "Sonia Sotomayor", - "case_name_shorts": "Bourgeois" - }, - { - "case_dates": "2020-12-10", - "case_names": "Bernard v. United States", - "download_urls": "/opinions/20pdf/20a110_1972.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A110", - "judges": "Sonia Sotomayor", - "case_name_shorts": "Bernard" - }, - { - "case_dates": "2020-11-17", - "case_names": "Valentine v. Collier", - "download_urls": "/opinions/20pdf/20a70diff_nko1.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A70", - "judges": "Sonia Sotomayor", - "case_name_shorts": "Valentine" - }, - { - "case_dates": "2020-11-16", - "case_names": "Valentine v. Collier", - "download_urls": "/opinions/20pdf/20a70_new_086c.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A70", - "judges": "Sonia Sotomayor", - "case_name_shorts": "Valentine" - }, - { - "case_dates": "2020-11-02", - "case_names": "National Football League v. Ninth Inning, Inc.", - "download_urls": "/opinions/20pdf/19-1098_j426.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-1098", - "judges": "Brett Kavanaugh", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-28", - "case_names": "Republican Party of Pennsylvania v. Boockvar", - "download_urls": "/opinions/20pdf/20-542_i3dj.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-542", - "judges": "Samuel Alito", - "case_name_shorts": "Boockvar" - }, - { - "case_dates": "2020-10-28", - "case_names": "Moore v. Circosta", - "download_urls": "/opinions/20pdf/20a72_5hek.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A72", - "judges": "Neil Gorsuch", - "case_name_shorts": "Moore" - }, - { - "case_dates": "2020-10-28", - "case_names": "Democratic National Committee v. Wisconsin State Legislature", - "download_urls": "/opinions/20pdf/20a66wdiff_20e4.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A66", - "judges": "Brett Kavanaugh", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-26", - "case_names": "Democratic National Committee v. Wisconsin State Legislature", - "download_urls": "/opinions/20pdf/20a66_new_m6io.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A66", - "judges": "Neil Gorsuch", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-26", - "case_names": "Democratic National Committee v. Wisconsin State Legislature", - "download_urls": "/opinions/20pdf/20a66_new_m6io.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A66", - "judges": "John G. Roberts", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-26", - "case_names": "Democratic National Committee v. Wisconsin State Legislature", - "download_urls": "/opinions/20pdf/20a66_new_m6io.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A66", - "judges": "Elana Kagan", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-26", - "case_names": "Democratic National Committee v. Wisconsin State Legislature", - "download_urls": "/opinions/20pdf/20a66_new_m6io.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A66", - "judges": "Brett Kavanaugh", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-21", - "case_names": "Merrill v. People First of Alabama", - "download_urls": "/opinions/20pdf/20a67_3e04.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A67", - "judges": "Sonia Sotomayor", - "case_name_shorts": "Merrill" - }, - { - "case_dates": "2020-10-19", - "case_names": "Rogers County Board of Tax Roll Corrections v. Video Gaming Technologies, Inc.", - "download_urls": "/opinions/20pdf/19-1298_g314.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-1298", - "judges": "Clarence Thomas", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-19", - "case_names": "Bovat v. Vermont", - "download_urls": "/opinions/20pdf/19-1301_5iel.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-1301", - "judges": "Neil Gorsuch", - "case_name_shorts": "Bovat" - }, - { - "case_dates": "2020-10-13", - "case_names": "Ross v. National Urban League", - "download_urls": "/opinions/20pdf/20a62_n7ip.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A62", - "judges": "Sonia Sotomayor", - "case_name_shorts": "Ross" - }, - { - "case_dates": "2020-10-13", - "case_names": "Malwarebytes, Inc. v. Enigma Software Group USA, LLC", - "download_urls": "/opinions/20pdf/19-1284_869d.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-1284", - "judges": "Clarence Thomas", - "case_name_shorts": "" - }, - { - "case_dates": "2020-10-08", - "case_names": "FDA v. American College of Obstetricians and Gynecologists", - "download_urls": "/opinions/20pdf/20a34_nmjp.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A34(1)", - "judges": "Samuel Alito", - "case_name_shorts": "FDA" - }, - { - "case_dates": "2020-10-05", - "case_names": "Kaur v. Maryland", - "download_urls": "/opinions/20pdf/19-1045_d1pf.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-1045", - "judges": "Sonia Sotomayor", - "case_name_shorts": "Kaur" - }, - { - "case_dates": "2020-10-05", - "case_names": "Henness v. DeWine", - "download_urls": "/opinions/20pdf/20-5243_n6io.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20-5243", - "judges": "Sonia Sotomayor", - "case_name_shorts": "Henness" - }, - { - "case_dates": "2020-10-05", - "case_names": "Davis v. Ermold", - "download_urls": "/opinions/20pdf/19-926_5hdk.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "19-926", - "judges": "Clarence Thomas", - "case_name_shorts": "Davis" - }, - { - "case_dates": "2020-10-05", - "case_names": "Andino v. Middleton", - "download_urls": "/opinions/20pdf/20a55_dc8e.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "20A55", - "judges": "Brett Kavanaugh", - "case_name_shorts": "Andino" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/scotus_slip_example_3.html b/tests/examples/opinions/united_states/scotus_slip_example_3.html deleted file mode 100644 index 628647916..000000000 --- a/tests/examples/opinions/united_states/scotus_slip_example_3.html +++ /dev/null @@ -1,1014 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Opinions Relating to Orders - 2020 - - -
    - - - - - - - -
    - -
    - -
    -
    -
    -
    -
    - Supreme Court of the United States -
    -
    - -
    - -
    - Search -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - Skip Navigation LinksHome > Opinions > Opinions Relating to Orders - 2020 -
    -
    -
    -
    -
    -
    - - - -
    - - -
    -

    Opinions Relating to Orders - 2020

    -
    -
    -
    - -

    Opinions may be written by Justices to comment on the summary disposition of cases by orders, e.g., if a Justice wants to dissent from the denial of certiorari or concur in that denial. Any opinions written during October Term 2020 (October 5, 2020, through October 3, 2021), will be posted here on the day they are issued. They will remain posted until the opinions for the entire Term are published in the bound volumes of the United States Reports. For further information, see Column Header Definitions.


    - -
    - - - -
    -
    - -
    -
    - - 2020 - - 2019 - - 2018 - - 2017 - - 2016 - - 2015 - - 2014 - - See Earlier Opinions -
    -
    - - -
    -
     
    -
    - -
    -
    Term Year: 2020     Expand All   |   Collapse All
    - -
    - -
    - -
    - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    DateDocketNameRevisedJ.Pt.
    2/05/2120A136South Bay United Pentecostal Church v. Newsom EK592/1
    2/05/2120A136South Bay United Pentecostal Church v. Newsom NG592/1
    2/05/2120A136South Bay United Pentecostal Church v. Newsom AB592/1
    2/05/2120A136South Bay United Pentecostal Church v. Newsom R592/1
    -
    - -
    -
    -
    - - -
    - -
    - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    DateDocketNameRevisedJ.Pt.
    1/25/2120-60Silver v. United States NG592/1
    1/22/2120A111Francois v. Wilkinson SS592/1
    1/15/2120-927United States v. Higgs SS592/1
    1/15/2120-927United States v. Higgs B592/1
    1/12/2120A34FDA v. American College of Obstetricians and Gynecologists SS592/1
    1/12/2120A34FDA v. American College of Obstetricians and Gynecologists R592/1
    1/11/2119-1184Bruni v. City of Pittsburgh T592/1
    -
    - -
    -
    -
    - - -
    - -
    - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    DateDocketNameRevisedJ.Pt.
    12/17/2020A96Danville Christian Academy, Inc. v. Beshear NG592/1
    12/17/2020A96Danville Christian Academy, Inc. v. Beshear A592/1
    12/15/2020A105High Plains Harvest Church v. Polis EK592/1
    12/11/2020A104Bourgeois v. Watson SS592/1
    12/10/2020A110Bernard v. United States SS592/1
    -
    - -
    -
    -
    - - -
    - -
    - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    DateDocketNameRevisedJ.Pt.
    11/16/2020A70Valentine v. Collier11/17/20SS592/1
    11/02/2019-1098National Football League v. Ninth Inning, Inc. BK592/1
    -
    - -
    -
    -
    - - -
    - -
    - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    DateDocketNameRevisedJ.Pt.
    10/28/2020A72Moore v. Circosta NG592/1
    10/28/2020-542Republican Party of Pennsylvania v. Boockvar A592/1
    10/26/2020A66Democratic National Committee v. Wisconsin State Legislature EK592/1
    10/26/2020A66Democratic National Committee v. Wisconsin State Legislature10/28/20BK592/1
    10/26/2020A66Democratic National Committee v. Wisconsin State Legislature NG592/1
    10/26/2020A66Democratic National Committee v. Wisconsin State Legislature R592/1
    10/21/2020A67Merrill v. People First of Alabama SS592/1
    10/19/2019-1298Rogers County Board of Tax Roll Corrections v. Video Gaming Technologies, Inc. T592/1
    10/19/2019-1301Bovat v. Vermont NG592/1
    10/13/2020A62Ross v. National Urban League SS592/1
    10/13/2019-1284Malwarebytes, Inc. v. Enigma Software Group USA, LLC T592/1
    10/08/2020A34(1)FDA v. American College of Obstetricians and Gynecologists A592/1
    10/05/2020-5243Henness v. DeWine SS592/1
    10/05/2019-1045Kaur v. Maryland SS592/1
    10/05/2019-926Davis v. Ermold T592/1
    10/05/2020A55Andino v. Middleton BK592/1
    -
    - -
    -
    -
    - - -
    - -
    - -


    - - -
    -

     

    - - -
    - - - -
    - -
    -
    -
    - SUPREME COURT OF THE UNITED STATES - - 1 First Street, NE - - Washington, DC 20543 -
    - -
    - - - - -
    - - - diff --git a/tests/examples/opinions/united_states/tax_example.html b/tests/examples/opinions/united_states/tax_example.html deleted file mode 100644 index 35bd273ad..000000000 --- a/tests/examples/opinions/united_states/tax_example.html +++ /dev/null @@ -1,101 +0,0 @@ -[{ - "eventCode": "TCOP", - "isStricken": false, - "numberOfPages": 23, - "documentType": "T.C. Opinion", - "filingDate": "2021-12-08T19:33:04.910Z", - "docketEntryId": "919cb4ce-fb26-4cb3-a0f3-a1a2f0e6927b", - "signedJudgeName": "Weiler", - "documentTitle": "T.C. Opinion Judge Weiler 157 T.C. No. 12. (An appropriate order will be issued).", - "isFileAttached": true, - "docketNumber": "21580-19", - "_score": null, - "isSealed": false, - "caseCaption": "Alice J. Coggin, Petitioner", - "docketNumberWithSuffix": "21580-19", - "irsPractitioners": [{ - "serviceIndicator": "Electronic", - "role": "irsPractitioner", - "barNumber": "KA0402", - "entityName": "IrsPractitioner", - "contact": { - "address3": "4905 Koger Blvd., Suite 102", - "address2": "Alamance Building, Mail Stop 2", - "city": "Greensboro", - "phone": "336-690-6315", - "address1": "Office of Chief Counsel, SB/SE", - "postalCode": "27407-2734", - "state": "NC", - "countryType": "domestic" - }, - "name": "Ashley M. Bender", - "sk": "irsPractitioner|02fe2002-a119-4a1d-bb79-11cfe058678d", - "pk": "case|21580-19", - "userId": "02fe2002-a119-4a1d-bb79-11cfe058678d", - "indexedTimestamp": 1626686345253, - "email": "ashley.m.bender@irscounsel.treas.gov" - }, { - "serviceIndicator": "Electronic", - "role": "irsPractitioner", - "barNumber": "HO0056", - "entityName": "IrsPractitioner", - "contact": { - "address3": "Alamance Building, MS 24", - "address2": "4905 Koger Blvd., Suite 102", - "city": "Greensboro", - "phone": "336-690-6326", - "address1": "IRS, Office of Chief Counsel", - "postalCode": "27407-2734", - "state": "NC", - "countryType": "domestic" - }, - "name": "Olivia H. Rembach", - "sk": "irsPractitioner|5a09197b-1500-4918-9c42-546950581a23", - "pk": "case|21580-19", - "userId": "5a09197b-1500-4918-9c42-546950581a23", - "indexedTimestamp": 1626686082009, - "email": "olivia.h.rembach@irscounsel.treas.gov" - }], - "privatePractitioners": [{ - "role": "privatePractitioner", - "representing": ["6E2B3BBD-167C-45AB-BD82-609B1A04D339"], - "userId": "a4b5234a-b345-45a9-881d-3fa8044208f8", - "serviceIndicator": "Electronic", - "barNumber": "BB0450", - "entityName": "PrivatePractitioner", - "contact": { - "address3": null, - "address2": "Suite 405", - "city": "Charlotte", - "phone": "704-833-8181", - "address1": "521 E. Morehead Street", - "postalCode": "28209", - "state": "NC", - "countryType": "domestic" - }, - "name": "Brian C. Bernhardt", - "sk": "privatePractitioner|a4b5234a-b345-45a9-881d-3fa8044208f8", - "firmName": "Forrest Firm, P.C.", - "pk": "case|21580-19", - "indexedTimestamp": 1626686081881, - "email": "brian.bernhardt@forrestfirm.com" - }], - "petitioners": [{ - "isAddressSealed": false, - "country": "U.S.A.", - "address2": "Apt. 120", - "city": "Burlington", - "contactId": "6E2B3BBD-167C-45AB-BD82-609B1A04D339", - "address1": "1880 Brookwood Ave.", - "postalCode": "27215", - "contactType": "petitioner", - "sealedAndUnavailable": false, - "countryType": "domestic", - "serviceIndicator": "None", - "phone": "No Phone", - "entityName": "Petitioner", - "name": "Alice J. Coggin", - "state": "NC" - }] -}] - diff --git a/tests/examples/opinions/united_states/tax_example.json b/tests/examples/opinions/united_states/tax_example.json new file mode 100644 index 000000000..6b90f0349 --- /dev/null +++ b/tests/examples/opinions/united_states/tax_example.json @@ -0,0 +1,111 @@ +[ + { + "eventCode": "TCOP", + "isStricken": false, + "numberOfPages": 23, + "documentType": "T.C. Opinion", + "filingDate": "2021-12-08T19:33:04.910Z", + "docketEntryId": "919cb4ce-fb26-4cb3-a0f3-a1a2f0e6927b", + "signedJudgeName": "Weiler", + "documentTitle": "T.C. Opinion Judge Weiler 157 T.C. No. 12. (An appropriate order will be issued).", + "isFileAttached": true, + "docketNumber": "21580-19", + "_score": null, + "isSealed": false, + "caseCaption": "Alice J. Coggin, Petitioner", + "docketNumberWithSuffix": "21580-19", + "irsPractitioners": [ + { + "serviceIndicator": "Electronic", + "role": "irsPractitioner", + "barNumber": "KA0402", + "entityName": "IrsPractitioner", + "contact": { + "address3": "4905 Koger Blvd., Suite 102", + "address2": "Alamance Building, Mail Stop 2", + "city": "Greensboro", + "phone": "336-690-6315", + "address1": "Office of Chief Counsel, SB/SE", + "postalCode": "27407-2734", + "state": "NC", + "countryType": "domestic" + }, + "name": "Ashley M. Bender", + "sk": "irsPractitioner|02fe2002-a119-4a1d-bb79-11cfe058678d", + "pk": "case|21580-19", + "userId": "02fe2002-a119-4a1d-bb79-11cfe058678d", + "indexedTimestamp": 1626686345253, + "email": "ashley.m.bender@irscounsel.treas.gov" + }, + { + "serviceIndicator": "Electronic", + "role": "irsPractitioner", + "barNumber": "HO0056", + "entityName": "IrsPractitioner", + "contact": { + "address3": "Alamance Building, MS 24", + "address2": "4905 Koger Blvd., Suite 102", + "city": "Greensboro", + "phone": "336-690-6326", + "address1": "IRS, Office of Chief Counsel", + "postalCode": "27407-2734", + "state": "NC", + "countryType": "domestic" + }, + "name": "Olivia H. Rembach", + "sk": "irsPractitioner|5a09197b-1500-4918-9c42-546950581a23", + "pk": "case|21580-19", + "userId": "5a09197b-1500-4918-9c42-546950581a23", + "indexedTimestamp": 1626686082009, + "email": "olivia.h.rembach@irscounsel.treas.gov" + } + ], + "privatePractitioners": [ + { + "role": "privatePractitioner", + "representing": [ + "6E2B3BBD-167C-45AB-BD82-609B1A04D339" + ], + "userId": "a4b5234a-b345-45a9-881d-3fa8044208f8", + "serviceIndicator": "Electronic", + "barNumber": "BB0450", + "entityName": "PrivatePractitioner", + "contact": { + "address3": null, + "address2": "Suite 405", + "city": "Charlotte", + "phone": "704-833-8181", + "address1": "521 E. Morehead Street", + "postalCode": "28209", + "state": "NC", + "countryType": "domestic" + }, + "name": "Brian C. Bernhardt", + "sk": "privatePractitioner|a4b5234a-b345-45a9-881d-3fa8044208f8", + "firmName": "Forrest Firm, P.C.", + "pk": "case|21580-19", + "indexedTimestamp": 1626686081881, + "email": "brian.bernhardt@forrestfirm.com" + } + ], + "petitioners": [ + { + "isAddressSealed": false, + "country": "U.S.A.", + "address2": "Apt. 120", + "city": "Burlington", + "contactId": "6E2B3BBD-167C-45AB-BD82-609B1A04D339", + "address1": "1880 Brookwood Ave.", + "postalCode": "27215", + "contactType": "petitioner", + "sealedAndUnavailable": false, + "countryType": "domestic", + "serviceIndicator": "None", + "phone": "No Phone", + "entityName": "Petitioner", + "name": "Alice J. Coggin", + "state": "NC" + } + ] + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/tenn_example.compare.json b/tests/examples/opinions/united_states/tenn_example.compare.json index 22ca3f0c8..fc29fd84a 100644 --- a/tests/examples/opinions/united_states/tenn_example.compare.json +++ b/tests/examples/opinions/united_states/tenn_example.compare.json @@ -1,184 +1,352 @@ [ { - "case_dates": "2013-08-20", - "case_names": "William H. Mansell v. Bridgestone Firestone North American Tire, LLC", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/mansellwilliamopn_0.pdf", + "case_dates": "2023-09-29", + "case_names": "State of Tennessee v. Ebony Robinson", + "download_urls": "/sites/default/files/OpinionsPDFVersion/ROBINSON%20-%20Majority%20Opinion.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M2012-02394-WC-R3-WC", - "judges": "Chief Justice Gary R. Wade", - "lower_courts": "Smith County", - "lower_court_judges": "Judge John D. Wootten, Jr.", - "summaries": "After a benefit review conference in the Department of Labor and Workforce Development failed to produce a settlement, the employee filed suit for workers' compensation benefits. Because the suit had already been filed, the trial court denied a request by the employer for an independent medical examination pursuant to the medical impairment rating (\"MIR\") process in Tennessee Code Annotated section 50-6-204(d)(5) (2008 & Supp. 2012). After hearing all other proof relating to the claim, the trial court awarded compensation to the employee and questioned the constitutionality of the MIR process. The employer appealed the Attorney General filed a brief as amicus curiae and this Court vacated the judgment and remanded the cause for additional proceedings. On remand, the AttorneyGeneral was added as a defendant to address the constitutional issue. The trial court considered additional evidence, which included an MIR report by an independent medical examiner, and ruled that section 50-6-204(d)(5), which requires our courts to consider the opinion of an independent medical examiner appointed under that section as presumptively accurate, is an unconstitutional infringement upon the powers of the judiciary. In the alternative, the trial court held that the statutory presumption of the accuracy of the report, if compliant with constitutional principles, was overcome by the other medical evidence, and that the employee was entitled to a 10% permanent impairment rating rather than the 7% rating in the MIR report. In this appeal, the employer and the Attorney General argue that the statute meets constitutional standards. We hold that the MIR process does not violate constitutional principles, and we further find that the evidence did not clearly and convincingly rebut the statutory presumption. The judgment of the trial court is, therefore, reversed in part, and affirmed and modified in part. The cause is remanded for additional proceedings consistent with this opinion.", - "case_name_shorts": "" + "docket_numbers": "M2021-01539SC-R11-CD", + "judges": "Chief Justice Roger A. Page", + "lower_courts": "Davidson", + "summaries": "In 2020, Ebony Robinson (\"Defendant\") pleaded guilty to vehicular homicide by intoxication, aggravated assault, resisting arrest, and driving without a license. The trial court imposed a ten-year sentence largely suspended to probation with periodic weeks of confinement for the first three years. The State appealed the sentence, arguing that a 2017 amendment to the probation eligibility statute, Tennessee Code Annotated section 40-35- 303, prohibits defendants who are convicted of vehicular homicide by intoxication from receiving any form of probation. The Court of Criminal Appeals agreed with the State and reversed the trial court, ordering Defendant to serve the full sentence in confinement. The intermediate court concluded that the amended probation statute expressly prohibits probation of any kind, including periodic or split confinement, for criminal defendants convicted of vehicular homicide by intoxication. After reviewing the relevant statutes, this Court affirms the Court of Criminal Appeals and holds that the clear and precise language of the 2017 amendment to the probation eligibility statute prohibits all forms of probation for a defendant convicted of vehicular homicide by intoxication. Accordingly, we affirm the decision of the Court of Criminal Appeals.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-19", - "case_names": "Velda J. Shore v. Maple Lane Farms, LLC", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/shorevjopn_1.pdf", + "case_dates": "2023-09-29", + "case_names": "Robert Crotty v. Mark Flora, M.D. (Concur in Part and Dissent in Part)", + "download_urls": "/sites/default/files/OpinionsPDFVersion/CROTTY%20-%20Separate%20Opinion.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2011-00158-SC-R11-CV", - "judges": "Justice William C. Koch, Jr.", - "lower_courts": "Blount County", - "lower_court_judges": "Chancellor Telford E. Forgety, Jr.", - "summaries": "This appeal involves a dispute over the noise from amplified music concerts being conducted on farm land in rural Blount County. After the business owners who hosted the concerts defied the county zoning authority's order limiting the concerts to one per year, a neighboring property owner filed suit in the Chancery Court for Blount County seeking to abate the concerts as a common-law nuisance and to enforce the decision of the county board of zoning appeals. The trial court granted the defendants' motion for an involuntary dismissal at the close of the plaintiff's proof, finding that the Tennessee Right to Farm Act, Tenn. Code Ann. \u00a7\u00a7 43-26-101 to -104 (2007), precluded nuisance liability and that the concerts were exempted from the local land use regulations because they qualified as \"agriculture.\" The Court of Appeals affirmed. Shore v. Maple Lane Farms, LLC, No. E2011-00158-COA-R3-CV, 2012 WL 1245606 (Tenn. Ct. App. Apr. 11, 2012). We granted the plaintiff homeowner permission to appeal. We hold that the trial court erred by granting the motion to dismiss because the plaintiff homeowner presented a prima facie case of common-law nuisance and because the concerts are not \"agriculture\" for the purpose of the zoning laws.", - "case_name_shorts": "" + "docket_numbers": "M2021-01193-SC-R11-CV", + "judges": "Chief Justice Roger A. Page", + "lower_courts": "Davidson", + "summaries": "This interlocutory appeal involves two pretrial orders. I concur with the holding and analysis of the majority as to the first pretrial order involving Rule 8.03 and George v. Alexander, 931 S.W.2d 517 (Tenn. 1996). However, I respectfully dissent from the majority's holding and analysis as to the second pretrial order involving Tennessee Code Annotated section 29-26-119 and the collateral source rule. This issue requires the Court to interpret the meaning of section 29-26-119. I would hold that, when section 29-26-119 governs damages in a health care liability action, the statute's clear language contemplates only \"actual economic losses suffered . . . paid or payable,\" thereby abrogating the collateral source rule. Thus, I would reverse the trial court's pretrial order.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-16", - "case_names": "State of Tennessee v. Angela M. Merriman", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/merrimanopn.pdf", + "case_dates": "2023-09-29", + "case_names": "Robert Crotty v. Mark Flora, M.D.", + "download_urls": "/sites/default/files/OpinionsPDFVersion/CROTTY%20-%20Majority%20Opinion.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M2011-01682-SC-R11-CD", - "judges": "Justice Janice M. Holder", - "lower_courts": "Warren County", - "lower_court_judges": "Judge Larry B. Stanley, Jr.", - "summaries": "The defendant was arrested for driving under the influence, reckless endangerment with amotor vehicle, reckless driving, driving on a suspended license, and violation of the impliedconsent law. The arresting officer recorded his pursuit and stop of the defendant's vehicleusing video recording equipment installed in his patrol vehicle, but the video recording wassubsequently lost. The defendant filed a motion to dismiss alleging that the State's failureto preserve potentially exculpatory evidence would deprive her of a fair trial. Following apre-trial evidentiary hearing, the trial court conducted an analysis under State v. Ferguson,2 S.W.3d 912 (Tenn. 1999), and dismissed several of the charges. The Court of CriminalAppeals affirmed the trial court's judgment, concluding that the trial court did not abuse itsdiscretion in dismissing the charges. State v. Merriman, No. M2011-01682-CCA-R3-CD,2012 WL 524474, at 3 (Tenn. Crim. App. Feb. 17, 2012). We granted the State permissionto appeal. We apply a de novo standard of review and determine that, based on this record,the trial court did not err by finding that it would be fundamentally unfair to require thedefendant to go to trial without the video recording. We also conclude that the trial court didnot abuse its discretion in choosing dismissal as an appropriate remedy for the State's lossof the video recording.", - "case_name_shorts": "" + "docket_numbers": "M2021-01193-SC-R11-CV", + "judges": "Justice Holly Kirby", + "lower_courts": "Davidson", + "summaries": "In this interlocutory appeal, the defendant physician in a health care liability action asks us to review two pretrial orders. In the first, the trial court excludes evidence that a nonparty physician was the cause-in-fact of the claimant's injuries because the defendant never amended his answer to include that allegation, as required under Rule 8.03 of the Tennessee Rules of Civil Procedure as applied in George v. Alexander, 931 S.W.2d 517 (Tenn. 1996). Because he does not allege that the nonparty physician was negligent, the defendant asks us to modify our holding in George and reverse the trial court's order. We respectfully decline to do so. In the second pretrial order on appeal, the trial court considered Tennessee Code Annotated section 29-26-119, a provision that partially abrogates the common law collateral source rule in health care liability actions. It held that section 29-26-119 does not abrogate the collateral source rule under the facts of this case. We agree with the trial court that the collateral source rule remains in effect in this case. We affirm both of the trial court's pretrial rulings.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-13", - "case_names": "Jim Hammond, Sheriff of Hamilton County v. Chris Harvey", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/hammondjim.opn_.pdf", + "case_dates": "2023-09-28", + "case_names": "Roger Baskin v. Pierce & Allred Construction, Inc.", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2021-00144-SC-R11-CV%20%28Corrected%29.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2011-01700-SC-R11-CV", + "docket_numbers": "M2021-00144-SC-R11-CV", + "judges": "Justice Jeffrey S. Bivins", + "lower_courts": "Davidson", + "summaries": "In this appeal, we address whether a Tennessee resident may sue an Alabama corporation in a Tennessee court for alleged breach of contract and breach of warranty pertaining to its construction of a custom lake house in Alabama. Tennessee resident Roger Baskin hired Pierce & Allred Construction, an Alabama corporation with its principal place of business in Alabama, to build a house on a parcel of land in Alabama. Mr. Baskin supplied the architectural plans and some of the materials, all sourced from Tennessee, and the parties communicated throughout the project from their respective states. However, all of Pierce & Allred Construction's activities on the project occurred in Alabama. Mr. Baskin ultimately became dissatisfied with the quality and expense of the construction work, and he filed suit in the Davidson County Chancery Court. Pierce & Allred Construction moved to dismiss the complaint for lack of personal jurisdiction, arguing that the corporation lacked the \"minimum contacts\" with Tennessee that due process protections require. Int'l Shoe Co. v. Washington, 326 U.S. 310, 316 (1945). The trial court granted the motion, finding that the events relevant to the claims occurred in Alabama and that the corporation's contacts with Tennessee were minor and attenuated. The Court of Appeals reversed, looking to recent decisions from this Court, see Crouch Ry. Consulting, LLC v. LS Energy Fabrication, LLC, 610 S.W.3d 460 (Tenn. 2020), and the United States Supreme Court, see Ford Motor Co. v. Mont. Eighth Jud. Dist. Ct., 141 S. Ct. 1017 (2021) (explaining that the exercise of specific personal jurisdiction requires that a plaintiff's claim arise out of or relate to the defendant's forum contacts). We granted permission to appeal. Based on our review, we have determined that Pierce & Allred Construction's contacts with Tennessee were not such that the corporation reasonably should have anticipated being haled into a Tennessee court to answer this suit. In making this determination, we conclude that certain contacts with Tennessee did not reflect that the corporation purposefully availed itself of the privilege of conducting business activities in Tennessee, while certain other contacts were not sufficiently related to Mr. Baskin's claims to support the exercise of specific personal jurisdiction. Thus, we hold that Mr. Baskin failed to establish a prima facie case of the minimum contacts necessary for a Tennessee court to exercise specific personal jurisdiction over the Alabama corporation. Accordingly, we reverse the decision of the Court of Appeals and reinstate the judgment of the trial court dismissing Mr. Baskin's complaint.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-09-28", + "case_names": "Commercial Painting Company, Inc. v. The Weitz Company, LLC (Dissent)", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Separate%20Dissent%20Opinion%20%28Campbell%2C%20J%3B%20Bivins%2C%20J.%20joins%29.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "W2019-02089-SC-R11-CV", + "judges": "Justice Sarah K. Campbell; Justice Jeffrey S. Bivins joins", + "lower_courts": "Shelby", + "summaries": "economic-loss doctrine bars recovery in tort for purely economic losses in certain situations. In this case, the Court is asked to apply that doctrine to bar tort claims brought by a subcontractor against a general contractor, where the relationship between the subcontractor and general contractor is governed by a contract. The majority opinion cabins the economic-loss doctrine to products liability cases and refuses to extend it to contracts for services for fear that doing so would require that we also create various exceptions. I respectfully disagree with that holding. The core rationale underlying the economic-loss doctrine\u2014to create a boundary line between tort and contract law to ensure that parties can allocate risks and responsibilities as they see fit\u2014applies equally to cases involving contracts for services. And to the extent that any exceptions to the rule would be needed, their creation would not be nearly as difficult or messy as the majority predicts. I would hold that the economic-loss doctrine applies here and precludes the subcontractor from recovering punitive damages and pre-judgment interest.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-09-28", + "case_names": "Commercial Painting Company, Inc. v. The Weitz Company, LLC", + "download_urls": "/sites/default/files/OpinionsPDFVersion/COMMERCIAL-Majority%20Opinion.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "W2019-02089-SC-R11-CV", + "judges": "Justice Sharon G. Lee", + "lower_courts": "Shelby", + "summaries": "The economic loss doctrine generally precludes a contracting party who suffers only economic losses from recovering damages in tort. In Tennessee, the application of this doctrine is limited to products liability cases. In this appeal, we consider whether the economic loss doctrine should be expanded to apply outside the products liability context. A jury awarded compensatory and punitive damages to a drywall subcontractor in a suit against a general contractor under theories of breach of contract and tort. The Court of Appeals applied the economic loss doctrine to preclude the recovery of damages in tort in a suit between sophisticated commercial entities. The intermediate court, in part, affirmed the award of compensatory damages for breach of contract, dismissed the tort claim, and reversed the award for punitive damages. We hold the economic loss doctrine only applies in products liability cases and should not be extended to other claims.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-08-31", + "case_names": "James A. Welch v. Oaktree Health and Rehabilitation Center LLC d/b/a Christian Care Centers of Memphis", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20W2020-00917-SC-R11-CV.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "W2020-00917-SC-R11-CV", + "judges": "Justice Holly Kirby", + "lower_courts": "Shelby", + "summaries": "Tennessee's Durable Power of Attorney for Health Care Act, Tennessee Code Annotated sections 34-6-201 to -218, includes a provision for limited statutory immunity from civil liability, under certain conditions, for health care providers who rely in good faith on health care decisions made by an apparent agent on a principal's behalf. Id. \u00a7 -208. Tennessee's Health Care Decisions Act, Tennessee Code Annotated sections 68-11-1801 to -1815, includes a similar provision for limited statutory immunity from civil liability, under certain conditions, for health care providers who comply in good faith with health care decisions made by an apparent agent on a principal's behalf. Id. \u00a7 -1810. The health care decision in this case is the execution of an arbitration agreement with admission to a nursing home. The agreement was signed by an agent under a durable power of attorney for health care executed several years earlier. After the resident's death, his estate filed a wrongful death lawsuit against the nursing home on negligence theories. On appeal from the trial court's denial of the defendant nursing home's motion to compel arbitration, we hold that the nursing home does not meet the requirements for limited statutory immunity from civil liability under either the Durable Power of Attorney for Health Care Act or the Health Care Decisions Act. Consequently, the trial court did not err in considering evidence on whether the principal had the requisite mental capacity to execute the durable power of attorney for health care. We overrule the holding on the immunity provision in the Durable Power of Attorney for Health Care Act, Tennessee Code Annotated section 34-6-208, in Owens v. National Health Corporation, 263 S.W.3d 876, 889 n.4 (Tenn. 2007), to the extent it is inconsistent with this opinion. We affirm the trial court, reverse the Court of Appeals, and remand to the Court of Appeals.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-07-21", + "case_names": "Ben C. Adams v. Buchanan D. Dunavant v. Watson Burns PLLC", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Corrected%20Majority%20Opinion.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "W2023-00304-SC-T10B-CV", + "judges": "", + "lower_courts": "Shelby", + "summaries": "Before his election to the bench, the probate judge in this interpleader action served as an expert witness in a 2017 case involving one of the defendants, Watson Burns, PLLC. In the current case, Watson Burns, PLLC and another law firm defendant moved for the probate judge's recusal based on the expert opinions the judge expressed in the 2017 case. The probate judge denied the motion, and the law firms filed an accelerated interlocutory appeal as of right to the Court of Appeals pursuant to Tennessee Supreme Court Rule 10B. The Court of Appeals reversed, ordered the probate judge's recusal, and remanded for assignment of another judge. Two other parties to the interpleader action then filed an accelerated application for permission to appeal in this Court pursuant to Rule 10B, section 2.07. We ordered the parties prevailing in the Court of Appeals to file a response to the application. Having thoroughly reviewed the Rule 10B application for permission to appeal, the response, all appendices, and the applicable law, we grant the Rule 10B application, dispense with additional briefing and oral argument, and hold that the probate judge's denial of the recusal motion was appropriate in this case. Therefore, we reverse the judgment of the Court of Appeals and remand for further proceedings consistent with this decision.", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2023-07-21", + "case_names": "Ben C. Adams v. Buchanan D. Dunavant v. Watson Burns PLLC", + "download_urls": "/sites/default/files/OpinionsPDFVersion/ADAMS-%20Corrected%20Majority%20Opinion%20-%20FILED.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "W2023-00304-SC-T10B-CV", + "judges": "", + "lower_courts": "Shelby", + "summaries": "Before his election to the bench, the probate judge in this interpleader action served as an expert witness in a 2017 case involving one of the defendants, Watson Burns, PLLC. In the current case, Watson Burns, PLLC and another law firm defendant moved for the probate judge's recusal based on the expert opinions the judge expressed in the 2017 case. The probate judge denied the motion, and the law firms filed an accelerated interlocutory appeal as of right to the Court of Appeals pursuant to Tennessee Supreme Court Rule 10B. The Court of Appeals reversed, ordered the probate judge's recusal, and remanded for assignment of another judge. Two other parties to the interpleader action then filed an accelerated application for permission to appeal in this Court pursuant to Rule 10B, section 2.07. We ordered the parties prevailing in the Court of Appeals to file a response to the application. Having thoroughly reviewed the Rule 10B application for permission to appeal, the response, all appendices, and the applicable law, we grant the Rule 10B application, dispense with additional briefing and oral argument, and hold that the probate judge's denial of the recusal motion was appropriate in this case. Therefore, we reverse the judgment of the Court of Appeals and remand for further proceedings consistent with this decision", + "case_name_shorts": "", + "per_curiam": true + }, + { + "case_dates": "2023-07-20", + "case_names": "Dennis Harold Ultsch v. HTI Memorial Hospital Corporation (Dissent)", + "download_urls": "/sites/default/files/OpinionsPDFVersion/ULTSCH-Separate%20Dissent%20Opinion%20%28J.Bivins%29.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2020-00341-SC-R11-CV", + "judges": "Justice Jeffrey S. Bivins", + "lower_courts": "Davidson", + "summaries": "This appeal presents issues similar to those in Ultsch v. HTI Memorial Hospital Corp., No. M2020-00341-SC-R11-CV, ___ S.W.3d ___ (Tenn. 2023). In that case, I dissented from the result reached by a majority of the Court, which held that provisions of the statutory scheme commonly referred to as the Health Care Liability Act (\"HCLA\") abrogated the common law vicarious liability principle known as the operation-of-law exception. I reach the same conclusion here and respectfully dissent from the result reached by the majority in this case.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-07-20", + "case_names": "Dennis Harold Ultsch v. HTI Memorial Hospital Corporation (Concur)", + "download_urls": "/sites/default/files/OpinionsPDFVersion/ULTSCH-Separate%20Concur%20Opinion%20%28J.Lee%29.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2020-00341-SC-R11-CV", "judges": "Justice Sharon G. Lee", - "lower_courts": "Hamilton County", - "lower_court_judges": "Chancellor W. Frank Brown, III", - "summaries": "The issue presented in this case is whether a county civil service board was authorized to order the county sheriff to equalize the pay of all sergeants employed within the sheriff's office. A group of sergeants, who were paid varying amounts within an established pay range, filed a grievance regarding pay disparities among sergeants in the sheriff's office. When the sheriff rejected the grievance, the sergeants filed a grievance with the sheriff's department civil service board. The board upheld the grievance and ordered the sheriff to equalize the pay of all sergeants in the sheriff's office. The sheriff and the county appealed to the Hamilton County Chancery Court, which held that the board did not have the authority to order pay equalization and declared the board's ruling null and void. The Court of Appeals ruled that the board exceeded its statutory authority, but remanded the case to the board so it could direct the sheriff to take the necessary steps to eliminate the pay disparity. Pursuant to Tenn. Code Ann. \u00a7 8-8-409(3) (2011), we hold that the board had the authority to hear the grievance, but in the absence of proof that the sheriff violated state law or the sheriff's department civil service manual, the board lacked the power to order the remedy of salary equalization. There was no proof that the sheriff violated state law, and the civil service manual specifically gave the sheriff the authority to make individual pay determinations. The judgment of the Court of Appeals is reversed, and the case is remanded to the Chancery Court for further proceedings as are necessary.", - "case_name_shorts": "" + "lower_courts": "Davidson", + "summaries": "This case presents a simple issue: Whether the Tennessee Health Care Liability Act's statute of limitation extension prevails over the common law rule that a plaintiff cannot pursue a vicarious liability claim against a principal when the plaintiff's claim against the agent is procedurally barred by operation of law before the plaintiff asserts the vicarious liability claim against the principal. This common law rule is known as the operation-of-law exception. Here, the Plaintiff filed a vicarious liability suit against the principal, TriStar Skyline Medical Center, after the one-year statute of limitations had expired as to Skyline's agents but within the Act's 120-day extension of the statute of limitations as to Skyline. Was the suit timely filed? Yes\u2014the Act's provisions prevail over the common law operation-of-law exception.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-07-20", + "case_names": "Dennis Harold Ultsch v. HTI Memorial Hospital Corporation", + "download_urls": "/sites/default/files/OpinionsPDFVersion/ULTSCH%20-%20Majority%20Opinion.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2020-00341-SC-R11-CV", + "judges": "Justice Sarah K. Campbell", + "lower_courts": "Davidson", + "summaries": "\"When there is a conflict between the common law and a statute, the provision of the statute must prevail.\" Graves v. Ill. Cent. R.R. Co., 148 S.W. 239, 242 (Tenn. 1912). That longstanding rule is the key to resolving this case, which pits a common-law rule governing vicarious liability claims against certain procedural provisions of Tennessee's Health Care Liability Act. The defendant in this case moved to dismiss the plaintiff's claims under the common-law rule. The trial court granted that motion, but the Court of Appeals reversed after concluding that application of the common-law rule would conflict with the Act. We agree that the Act necessarily implies an intent to abrogate the common-law rule in the circumstances of this case and affirm the Court of Appeals' decision.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-07-20", + "case_names": "Beverly Gardner v. Saint Thomas Midtown Hospital (Dissent)", + "download_urls": "/sites/default/files/OpinionsPDFVersion/GARDNER-Separate%20DISSENT%20Opinion%20%28J.Bivins%29.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2019-02237-SC-R11-CV", + "judges": "Justice Jeffrey S. Bivins", + "lower_courts": "Davidson", + "summaries": "This appeal presents issues similar to those in Ultsch v. HTI Memorial Hospital Corp., No. M2020-00341-SC-R11-CV, ___ S.W.3d ___ (Tenn. 2023). In that case, I dissented from the result reached by a majority of the Court, which held that provisions of the statutory scheme commonly referred to as the Health Care Liability Act (\"HCLA\") abrogated the common law vicarious liability principle known as the operation-of-law exception. I reach the same conclusion here and respectfully dissent from the result reached by the majority in this case.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-12", - "case_names": "State of Tennessee v. Terrance Antonio Cecil", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/cecilterranceopn_1.pdf", + "case_dates": "2023-07-20", + "case_names": "Beverly Gardner v. Saint Thomas Midtown Hospital (Concur)", + "download_urls": "/sites/default/files/OpinionsPDFVersion/GARDNER%20-%20Separate%20CONCUR%20IN%20PART%20Opinion%20%28J.Lee%29.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M2011-01210-SC-R11-CD", - "judges": "Chief Justice Gary R.Wade", - "lower_courts": "Maury County", - "lower_court_judges": "Judge Robert L. Jones", - "summaries": "The defendant was convicted of false imprisonment and assault. The trial court imposed concurrent sentences of six months, with all but sixty days suspended to probation. More than one year after the trial but while the defendant's case was pending in the Court of Criminal Appeals, this Court filed its opinion in State v. White, 362 S.W.3d 559 (Tenn. 2012), which requires, on grounds of due process, trial courts to provide a more specific instruction on kidnapping charges as to whether the removal or confinement of a victim is essentially incidental to any accompanying offense. The Court of Criminal Appeals held in this instance that, although the White instruction was not provided at trial, the jury was correctly instructed and the evidence was sufficient to support both convictions. We granted review to determine whether the absence of the White instruction warrants a new trial. Because the omission of the instruction required by White cannot be classified as harmless beyond a reasonable doubt, the conviction for false imprisonment is reversed and the cause remanded for a new trial.", - "case_name_shorts": "" + "docket_numbers": "M2019-02237-SC-R11-CV", + "judges": "Justice Sharon G. Lee", + "lower_courts": "Davidson", + "summaries": "This case presents a simple issue: Whether the Tennessee Health Care Liability Act's statute of limitation extension prevails over the common law rule that a plaintiff cannot pursue a vicarious liability claim against a principal when the plaintiff's claim against the agent is procedurally barred by operation of law before the plaintiff asserts the vicarious liability claim against the principal. This common law rule is known as the operation-of-law exception. Here, the Plaintiff filed a vicarious liability suit against the principal, Saint Thomas Midtown Hospital, after the one-year statute of limitations had expired as to the Hospital's agents but within the Act's 120-day extension of the statute of limitations as to the Hospital. Was the suit timely filed? Yes\u2014the Act's provisions prevail over the common law operation-of-law exception.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-12", - "case_names": "State of Tennessee v. Dewayne Collier a/k/a Patrick Collier", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/collierdewayneopn_0.pdf", + "case_dates": "2023-07-20", + "case_names": "Beverly Gardner v. Saint Thomas Midtown Hospital", + "download_urls": "/sites/default/files/OpinionsPDFVersion/GARDNER%20-%20Majority%20Opinion.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "W2010-01606-SC-R11-CD", - "judges": "Chief Justice Gary R. Wade", - "lower_courts": "Shelby County", - "lower_court_judges": "Judge John T. Fowlkes, Jr.", - "summaries": "A Shelby County jury convicted the defendant of aggravated statutory rape, and the trial court imposed a sentence of four years. On appeal, the defendant, who was forty-two years old at the time of the offense, argued that the evidence was insufficient to support his conviction because the testimony of the fourteen-year-old female victim, a consenting accomplice in the crime, was not adequately corroborated by other proof. The Court of Criminal Appeals found that the victim qualified as an accomplice to the crime but affirmed the conviction, holding that her testimony was sufficiently corroborated by the evidence in the record. This Court granted review to determine whether a victim of statutory rape qualifies as an accomplice such that his or her testimony must be corroborated in order to support a conviction. We hold that the testimony of a victim of statutory rape does not require corroboration. Because the evidence is sufficient to sustain the conviction, the judgment of the Court of Criminal Appeals is affirmed.", - "case_name_shorts": "" + "docket_numbers": "M2019-02237-SC-R11-CV", + "judges": "Justice Sarah K. Campbell", + "lower_courts": "Davidson", + "summaries": "\"When there is a conflict between the common law and a statute, the provision of the statute must prevail.\" Graves v. Ill. Cent. R.R. Co., 148 S.W. 239, 242 (Tenn. 1912). That longstanding rule is the key to resolving this case, which pits a common-law rule governing vicarious liability claims against certain procedural provisions of Tennessee's Health Care Liability Act. The defendant in this case moved for summary judgment under the common-law rule. The trial court granted that motion, but the Court of Appeals reversed after concluding that application of the common-law rule would conflict with the Act. We agree that the Act necessarily implies an intent to abrogate the common-law rule in the circumstances of this case and affirm the Court of Appeals' decision.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-09", - "case_names": "H. Owen Maddux v. Board of Professional Responsibility Of The Supreme Court Of Tennessee", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/madduxho_opn.pdf", + "case_dates": "2023-07-14", + "case_names": "State of Tennessee v. Dashun Shackleford", + "download_urls": "/sites/default/files/OpinionsPDFVersion/SHACKLEFORD%20-%20Majority%20Opinion_0.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2012-01809-SC-R3-BP", - "judges": "Justice Cornelia A. Clark", - "lower_courts": "Hamilton County", - "lower_court_judges": "Special Judge Donald P. Harris", - "summaries": "This direct appeal involves a disciplinary proceeding against a Chattanooga lawyer arising out of his representation of two clients. With one member dissenting, a hearing panel of the Board of Professional Responsibility determined that the lawyer should be suspended from the practice of law for nine months. The lawyer appealed to the Chancery Court for Hamilton County, and the trial court upheld the nine-month suspension, concluding that the evidence supported the finding of the hearing panel's majority that the lawyer's misconduct caused potential injury to one of his clients. In this appeal, the lawyer argues that (1) the hearing panel erred by refusing to set aside the default judgment entered against him based on his failure to respond to the petition for discipline (2) the record contains no evidence of potential injury resulting from his misconduct and (3) the hearing panel ascribed too much weight to his prior history of discipline when considering aggravating and mitigating circumstances. Based on our review of the record, we, like the trial court, affirm the hearing panel's decision to suspend the lawyer's license to practice law for nine months.", - "case_name_shorts": "" + "docket_numbers": "E2020-01712-SC-R11-CD", + "judges": "Chief Justice Roger A. Page", + "lower_courts": "Knox", + "summaries": "This appeal concerns the criminal gang-enhancement statute, Tennessee Code Annotated section 40-35-121, and specifically what is required in an indictment to sufficiently plead and provide notice under the statute. Dashun Shackleford (\"Defendant\") was arrested for aggravated robbery as to four individuals in September 2016, along with his friend and fellow gang member, Jalon Copeland. Defendant's indictment contained twenty counts: four alternative counts each of aggravated robbery against four victims and four corresponding counts of criminal gang offense enhancement. The gang-enhancement statute requires the State to give notice in separate counts of the indictment of the enhancement applicable under the statute. The indictment also alleged that Defendant was a \"Crips\" gang member and listed the convictions of fifteen alleged fellow Crips members to prove Defendant's gang had a \"pattern of criminal gang activity,\" as also required by the gang-enhancement statute. A Knox County jury convicted Defendant as charged. The trial court merged the aggravated robbery convictions into four counts and imposed a total effective sentence of twenty years to be served at eighty-five percent. In this case, the gang- enhancement conviction increased Defendant's aggravated robbery convictions from Class B felonies to Class A felonies. Defendant appealed, arguing, among other things, that the evidence at trial was insufficient to support his gang-enhancement conviction. The Court of Criminal Appeals agreed, taking particular issue with the allegation in the indictment that Defendant and the other gang members listed therein were plain Crips. In the gang-enhancement phase of trial, the proof established that the majority of the gang members listed in the indictment, including Defendant, were members of several different subsets of the Crips gang, with only one of the listed men identified as a plain Crip. The intermediate court concluded that the State failed to prove that Defendant's subset gang had engaged in a pattern of criminal gang activity and failed to comply with the notice requirements of the gang-enhancement statute. In doing so, the court also, sua sponte, determined that a fatal variance existed between the indictment and proof at trial. The Court of Criminal Appeals, therefore, reverted Defendant's aggravated robbery convictions to a classification lower in the absence of the gang enhancement. After review, we conclude that the Court of Criminal Appeals erred in its decision. The gang-enhancement statute is worded broadly and does not require the State to specify in the indictment a criminal defendant's gang subset nor that the defendant is in the same gang subset as the individuals whose criminal activity establishes the gang's \"pattern of criminal gang activity.\" Defendant waived all other issues by failing to properly raise them before the trial court or on appeal. Therefore, the decision of the Court of Criminal Appeals is reversed and the trial court's judgments are reinstated.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-06-28", - "case_names": "Eddie C. Pratcher, Jr. v. Methodist Healthcare Memphis Hospitals - DISSENT", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/pratchereddie.dis_.pdf", + "case_dates": "2023-07-11", + "case_names": "Gerald D. Waggoner, Jr. v. Board of Professional Responsibility of the Supreme Court of Tennessee", + "download_urls": "/sites/default/files/OpinionsPDFVersion/WAGGONER%20-%20Majority%20Opinion%20Filed.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "W2011-01576-SC-S09-CV", - "judges": "Justice William C. Koch, Jr.", - "lower_courts": "Shelby County", - "lower_court_judges": "Judge Donna M. Fields", - "summaries": "This case has gone unresolved for far too long. It was finally tried more than six years after Ms. Pratcher's death and after the filing of four amended complaints. After the jury returned a defendant's verdict, the trial court granted a new trial because of a perceived shortcoming in the verdict form and because of its disagreementwith the jury's verdict. With the second trial pending, one of the defendants sought to amend its answer to include a substantively meritorious defense based on the statute of repose in Tenn. Code Ann. \u00a7 29-26116(a)(3) (2012). With little explanation or analysis, the trial court denied the motion to amend on the ground of waiver.", - "case_name_shorts": "" + "docket_numbers": "W2022-01294-SC-R3-BP", + "judges": "Justice Sharon G. Lee", + "lower_courts": "Shelby", + "summaries": "A Board of Professional Responsibility hearing panel found that a Shelby County attorney's law license should be suspended for four years based on multiple violations of the Rules of Professional Conduct (RPCs), including RPC 5.5(a). The attorney appealed part of the hearing panel's decision, and the trial court affirmed in part, reversed in part, and modified the sanction to one year. The Board appeals the trial court's decision that the attorney did not violate RPC 5.5(a) by practicing law while his license was suspended. We find that the attorney violated RPC 5.5(a) by continuing to manage and market his law practice; by directly or indirectly communicating with office staff, attorneys, and former clients; and by recruiting and hiring attorneys while his law license was suspended. The hearing panel's decision that the attorney violated RPC 5.5(a) is supported by substantial and material evidence. We hold that the attorney's law license shall be suspended for two years, with eighteen months served on active suspension. This sanction is based on the RPC 5.5(a) violation, as well as the hearing panel's findings that he violated additional RPCs, which he did not appeal, the American Bar Association's Standards for Imposing Lawyer Sanctions (ABA Standards), five aggravating factors, and no mitigating factors. The attorney shall also make appropriate restitution, obtain additional continuing education as ordered by the trial court, and engage a practice monitor during his probated suspension.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-06-28", - "case_names": "Eddie C. Pratcher, Jr. v. Methodist Healthcare Memphis Hospitals", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/pratchereddie.opn_1.pdf", + "case_dates": "2023-07-07", + "case_names": "Jessie Dotson v. State of Tennessee", + "download_urls": "/sites/default/files/OpinionsPDFVersion/J.DOTSON-Majority%20Opinion.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "W2011-01576-SC-S09-CV", + "docket_numbers": "W2019-01059-SC-R11-PD", "judges": "Justice Sharon G. Lee", - "lower_courts": "Shelby County", - "lower_court_judges": "Judge Donna M. Fields", - "summaries": "The primary issue in this interlocutory appeal is whether the Tennessee health care liability statute of repose, Tenn. Code Ann. \u00a7 29-26-116(a)(3) (2012) (\"the statute of repose\"), is an affirmative defense under Tenn. R. Civ. P. 8.03, that is waived if not raised in a timely manner. Sandra Y. Jones Pratcher died following complications that arose on December 4, 1999, when she received anesthesia before undergoing a cesarean section. On December 1, 2000, her husband, Eddie C. Pratcher, Jr., (\"Plaintiff\") filed suit against various health care providers, including Consultants in Anesthesia, Inc. (\"Defendant\") and one of its nurse anesthetists. Plaintiff alleged that Defendant, which contracted with the hospital to provide anesthesia services to its obstetric patients, was vicariously liable for the negligent acts of its nurse anesthetist. Plaintiff amended his complaint on March 3, 2006, to assert that Defendant was also vicariously liable for the negligent actions of its corporate owner and president, Dr. Chauhan, who was on call on December 4, 1999, but failed to come to the hospital to administer anesthesia to Plaintiff's wife. Plaintiff amended his complaint two more times and each time asserted that Defendant was vicariously liable for the negligent acts of Dr. Chauhan. Defendant did not raise the statute of repose as a defense to the vicarious liability claim based on Dr. Chauhan's alleged negligence. After the jury returned a verdict for all defendants, the trial court set aside the verdict based on an error in the verdict form and its disapproval of the verdict as thirteenth juror. After the trial court granted a new trial as to all parties, Defendant moved to dismiss the case based on the statute of repose and to amend its answer to assert a statute of repose defense. The trial court ruled that Defendant had waived the statute of repose defense and denied the motions. We hold that (1) the running of the statute of repose does not deprive the trial court of subject matter jurisdiction and (2) as Rule 8.03 explicitly states, the statute of repose is an affirmative defense. Defendant failed to timely raise the statute of repose as an affirmative defense. Therefore, the trial court did not abuse its discretion by denying Defendant's posttrial motion to amend its answer to assert the statute of repose as a defense. The judgment of the trial court is affirmed.", - "case_name_shorts": "" + "lower_courts": "Shelby", + "summaries": "This appeal involves a capital post-conviction petitioner's expert funding requests under Tennessee Supreme Court Rule 13. A jury convicted the Petitioner, Jessie Dotson, of six counts of premeditated first-degree murder and sentenced him to death. This Court affirmed the jury's verdict. The Petitioner filed for post-conviction relief, alleging several grounds of ineffective assistance of counsel. He requested funds under Tennessee Supreme Court Rule 13 to hire expert witnesses to assist in establishing his claims of ineffective assistance of counsel. The post-conviction court authorized the funds, but the Director of the Administrative Office of the Courts (AOC) and the Chief Justice denied approval for some of the Petitioner's requested experts. After an evidentiary hearing, the post-conviction court denied relief. The Court of Criminal Appeals affirmed the ruling without deciding the Petitioner's Rule 13 constitutional challenges. We granted review to consider the Petitioner's constitutional issues regarding Rule 13. We hold the provisions of Rule 13 are constitutional as applied; the Petitioner was not unconstitutionally denied appellate review of the denial of his request for expert funds; and the Petitioner was not deprived of a full and fair post-conviction hearing due to the denial of expert funds.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-06-24", - "case_names": "Walter Ray Culp, III v. Board of Professional Responsibility for the Supreme Court of Tennessee", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/culpwalterrayiii.opn_.pdf", + "case_dates": "2023-06-30", + "case_names": "In Re: James Ralph Hickman, Jr., BPR 020125", + "download_urls": "/sites/default/files/OpinionsPDFVersion/HICKMAN%20-%20Majority%20Opinion%20%28BPR%29.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M2012-01816-SC-R3-BP", + "docket_numbers": "M2022-00755-SC-BAR-BP", + "judges": "Justice Sarah K. Campbell", + "lower_courts": "Sevier", + "summaries": "In this case, we consider the appropriate discipline for Tennessee attorney James Ralph Hickman, Jr. The Board of Professional Responsibility filed a petition for discipline against Hickman alleging that he violated the Rules of Professional Conduct while representing an estate in probate proceedings. A hearing panel of the Board adjudicated the petition and recommended a one-year suspension, with \"at least\" ninety days served as an active suspension and the rest on probation. Any violation of the conditions of probation would result in \"reversion to active suspension.\" The hearing panel also directed Hickman to obtain a practice monitor during the probationary period, complete fifteen additional hours of estate-management continuing legal education (\"CLE\") and three additional hours of ethics CLE, and pay the costs of the matter. Neither Hickman nor the Board appealed. The Board petitioned this Court for an order enforcing the hearing panel's judgment. Exercising our authority under Tennessee Supreme Court Rule 9, section 15.4, we determined that the punishment imposed by the hearing panel appeared too lenient and proposed to increase it. After carefully considering the entire record, \"with a view to attaining uniformity of punishment throughout the State and appropriateness of punishment under the circumstances of each particular case,\" Tenn. Sup. Ct. R. 9, \u00a7 15.4(b), we affirm the hearing panel's one-year suspension but modify the judgment to impose six months of active suspension followed by six months on probation. We also clarify that the period of probation imposed should be fixed rather than indefinite and that violation of a condition of probation does not automatically result in reversion of the probationary period to active suspension. We affirm the decision of the hearing panel in all other respects.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-06-29", + "case_names": "Ernest Falls v. Mark Goins (Dissent)", + "download_urls": "/sites/default/files/OpinionsPDFVersion/FALLS-Separate%20Opinion-Filed.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2020-01510-SC-R11-CV", "judges": "Justice Sharon G. Lee", - "lower_courts": "Williamson County", - "lower_court_judges": "Judge Walter C. Kurtz", - "summaries": "In this appeal, we review the denial of an attorney's petition for reinstatement of his law license. The attorney was suspended from the practice of law for five years after he pleaded guilty to attempted extortion in federal court. The extortion arose out of the attorney's attempt to broker the testimony of a witness in a civil trial for a substantial fee. After serving a nineteen-month prison sentence and a five-year suspension from the practice of law, the attorney petitioned for reinstatement. A hearing panel of the Board of Professional Responsibility denied the attorney's request, finding that the attorney failed to carry his burden of proof by clear and convincing evidence that he had the moral qualifications, competency and learning in law, and that reinstatement would not be detrimental to the integrity and standing of the bar, the administration of justice and subversive to the public interest. The panel considered, among other things, the nature of the crime, that the extortion involved several million dollars, the attorney's unwillingness to take responsibility for his actions, and his lack of credibility. The attorney appealed to the Chancery Court for Williamson County. The trial court affirmed the hearing panel's decision. We affirm the decision of the trial court.", - "case_name_shorts": "" + "lower_courts": "Davidson", + "summaries": "Ernest Falls' right to vote is guaranteed under the Tennessee Constitution. Tenn. Const. art. I, \u00a7 5.1 In 1986, almost forty years ago, Mr. Falls was convicted of an infamous crime in Virginia. He completed his sentence in 1987. In 2018, Mr. Falls moved to Tennessee. In February 2020, the Governor of Virginia gave him an individualized grant of clemency, fully restoring his rights to vote, hold public office, serve on a jury, and be a notary public. With his voting rights fully restored, Mr. Falls tried to register to vote in Tennessee; he disclosed his previous conviction and verified the restoration of his right to vote. His application was denied because he provided no evidence that he did not owe restitution or court costs in Virginia from his 1986 conviction and that he was current on any child support obligations. See Tenn. Code Ann. \u00a7 40-29-202(b)\u2013(c) (2018). Yet, under Tennessee Code Annotated section 2-19-143(3), Mr. Falls was not prohibited from voting because his right to vote had been restored by the grant of clemency. The requirement regarding restitution, court costs, and child support under section 40-29-202 does not apply to Mr. Falls because he had no need to have his voting rights restored.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-06-29", + "case_names": "Ernest Falls v. Mark Goins", + "download_urls": "/sites/default/files/OpinionsPDFVersion/FALLS-Majority%20Opinion-Filed.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2020-01510-SC-R11-CV", + "judges": "Justice Jeffrey S. Bivins", + "lower_courts": "Davidson", + "summaries": "In this appeal, we consider the interplay and applicability of two statutes that relate to suffrage rights of Tennessee residents previously convicted of infamous crimes in other states. Although the Tennessee Constitution recognizes the importance of the right of its residents to vote, the Constitution also allows the General Assembly to restrict the right of a person to vote \"upon a conviction by a jury of some infamous crime, previously ascertained and declared by law, and judgment thereon by court of competent jurisdiction.\" Tenn. Const. art. I, \u00a7 5. Ernest Falls, a resident of Tennessee since 2018, was convicted of involuntary manslaughter in Virginia in 1986, an infamous crime under the laws of Tennessee. In 2020, Mr. Falls was granted clemency in Virginia by then-Governor Ralph Northam. The grant of clemency reinstated Mr. Falls' rights of citizenship in Virginia, including his right to vote. Subsequently, Mr. Falls attempted to register to vote in Grainger County, Tennessee, in June of 2020. The Grainger County Election Commission denied his restoration of voting rights request and cited \"Incomplete/Insufficient Document(s)\" as the reasoning for the denial. Mr. Falls and a co-plaintiff, who was left off the voter rolls under similar circumstances, filed a lawsuit in the Chancery Court for Davidson County, arguing that Tennessee Code Annotated section 2-19-143(3) requires the state to re-enfranchise persons convicted of out-of-state infamous crimes as soon as said persons are \"pardoned or restored to the rights of citizenship by the governor or other appropriate authority of such other state.\" Tenn. Code Ann. \u00a7 2-19-143(3) (2014). Respondents, three public employees sued in their official capacity, countered that Mr. Falls also is required to comply with requirements set forth in another statutory provision, Tennessee Code Annotated section 40-29-202, which requires that persons convicted of infamous crimes pay outstanding court costs, restitution, and child support obligations before they can be re-enfranchised. Tenn. Code Ann. \u00a7 40-29-202 (2018). The Chancery Court granted summary judgment in favor of the three state officials, and the Court of Appeals affirmed the grant of summary judgment with Mr. Falls acting as the sole remaining plaintiff. Like the Court of Appeals, we affirm the grant of summary judgment and conclude that, in order to regain the right of suffrage in Tennessee, Mr. Falls and other similarly situated individuals must comply with both section 2-19-143(3) and the additional requirements set forth in section 40-29-202.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-06-08", + "case_names": "State of Tennessee v. Joseph Gevedon (Concur)", + "download_urls": "/sites/default/files/OpinionsPDFVersion/GEVEDON%20-%20Filed%20Separate%20Opn.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2020-00359-SC-R11-CD", + "judges": "Justice Sarah K. Campbell", + "lower_courts": "Giles", + "summaries": "I concur in the Court's judgment reversing the Court of Criminal Appeals, and I agree with much of the majority opinion's analysis, including its determination that the trial court abused its discretion by failing to consider Joseph Gevedon's ability to pay when setting the amount of restitution.1 I also agree with the majority's conclusion that the restitution order here was final and appealable, but I reach that conclusion by way of a slightly different analysis. I write separately to explain how my reasoning differs from that of the majority. While the majority asks whether the trial court's judgment satisfied the statutory requirements for restitution orders, I would focus instead on whether the record shows that the trial court thought it was finished with the case. In my view, the restitution order here was final because nothing in the record or on the face of the order suggests that the trial court had any intention of setting the time for payment, not because the trial court did everything it was supposed to do.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-06-24", - "case_names": "State of Tennessee v. Michael Shane Springer", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/springermichael.opn_.pdf", + "case_dates": "2023-06-08", + "case_names": "State of Tennessee v. Joseph Gevedon", + "download_urls": "/sites/default/files/OpinionsPDFVersion/GEVEDON%20-%20Filed%20Majority%20Opn.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "W2010-02153-SC-R11-CD", + "docket_numbers": "M2020-00359-SC-R11-CD", "judges": "Justice Sharon G. Lee", - "lower_courts": "Gibson County", - "lower_court_judges": "Judge Clayburn Peeples", - "summaries": "In this appeal, we interpret the meaning of the phrase \"term of imprisonment\" in Articles III and IV of the Interstate Agreement on Detainers (\"IAD\"), Tenn. Code Ann. \u00a7\u00a7 40-31-101 to -108 (2006), and determine whether the defendant is entitled to relief under the IAD. The IAD, a compact between state and federal jurisdictions, provides cooperative procedures for the exchange of prisoners between state and federal jurisdictions so that prisoners can be brought to trial on untried indictments or complaints. Under Article III of the IAD, a prisoner serving a term of imprisonment may request a trial within 180 days after being delivered to another state. Under Article IV of the IAD, an official of one jurisdiction may seek custody of a prisoner serving a term of imprisonment in another jurisdiction, but the prisoner must be tried within 120 days of arrival in that jurisdiction and cannot be \"shuttled\" back to the original place of imprisonment before the trial. The IAD mandates a dismissal of the indictment for a violation of either Article III or IV. The defendant in this case was arrested on related federal and state charges and taken into federal custody. After the defendant was tried and convicted in federal court, he was indicted by the grand jury in Gibson County on the related state charges. Before being sentenced in federal court, the defendant filed a demand for speedy disposition of the state charges under Article III of the IAD. While the defendant was confined at a federal temporary detention facility after his sentencing in federal court, the Gibson County Sheriff filed a detainer and transported the defendant to Gibson County for an arraignment. After counsel was appointed and the defendant was arraigned, he was transferred back into federal custody. The defendant filed a motion to dismiss the state indictment for violations of Articles III and IV of the IAD. The trial court denied the motion. The defendant entered a conditional guilty plea pursuant to Tenn. R. Crim. P. 11 and reserved a certified question of law seeking appellate review of the denial of the motion to dismiss because of the alleged violation of the IAD. The Court of Criminal Appeals, in a divided opinion, affirmed the trial court's denial of the defendant's motion to dismiss. See State v. Springer, No. W2010-02153-CCA-R3-CD, 2012 WL 603820, at 1 (Tenn. Crim. App. Feb. 16, 2012). We hold that for purposes of the IAD, a prisoner who is incarcerated after sentencing is serving a \"term of imprisonment.\" We further hold that the defendant properly reserved his issues for appeal in the certified question that the defendant was a federal pretrial detainee at the time he filed a procedurally deficient demand for speedy disposition and is not entitled to relief under Article III and that the defendant was serving a term of imprisonment when he was transferred, pursuant to a detainer, from the federal temporary detention facility to Gibson County for his arraignment and back to federal custody on the same day. Article IV of the IAD was violated when the defendant was transferred back to the federal detention center before being tried for the state charges. The judgment of the Court of Criminal Appeals is reversed, the conviction is vacated, and the indictment against the defendant is dismissed with prejudice.", - "case_name_shorts": "" + "lower_courts": "Giles", + "summaries": "A trial court ordered a defendant to pay a set amount of criminal restitution but did not state payment terms or consider the defendant's ability to pay. The Court of Criminal Appeals dismissed the appeal, ruling the restitution order was not a final order because it did not include payment terms. We hold the restitution order was a final order even though it did not include payment terms. See State v. Cavin, No. E2020-01333-SC-R11-CD, ___ S.W.3d ____, 2023 WL _________ (Tenn. ______, 2023). The date for payment of the restitution was, by default, the expiration of the defendant's sentence based on Tennessee Code Annotated section 40-35-304(g). The trial court erred by failing to consider the defendant's financial resources and ability to pay when setting the amount of restitution as required by Tennessee Code Annotated section 40-35-304(d). We reverse the judgment of the Court of Criminal Appeals, vacate the trial court's restitution order, and remand to the trial court for further proceedings consistent with this opinion.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-06-20", - "case_names": "State of Tennessee v. Ledarren S. Hawkins", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/hawkinsl_opn.pdf", + "case_dates": "2023-06-08", + "case_names": "State of Tennessee v. Johnny Summers Cavin (Concur)", + "download_urls": "/sites/default/files/OpinionsPDFVersion/CAVIN%20-%20FILED%20Separate%20Opn.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "W2010-01687-SC-R11-CD", - "judges": "Justice William C. Koch, Jr.", - "lower_courts": "Madison County", - "lower_court_judges": "Judge Roy B. Morgan, Jr.", - "summaries": "The defendant was convicted in the Circuit Court for Madison County of first degree murder and tampering with physical evidence. On this appeal, the defendant seeks reversal of his first degree murder conviction on the ground that the trial court declined his request for a jury instruction on defense of a third person. He also seeks reversal of his evidence-tampering conviction on the ground that his abandonment of the murder weapon did not amount to tampering with physical evidence. The Court of Criminal Appeals upheld his convictions and sentences. State v. Hawkins, No.W2010-01687-CCA-R3-CD, 2012 WL 543048 (Tenn. Crim. App. Feb. 16, 2012). Based on this record, we have determined that the trial court properly denied the defendant's request for an instruction on defense of a third person. However, we have also determined that the defendant did not tamper with physical evidence in violation of Tenn.Code Ann.\u00a7 39-16-503(a)(1)(2010) by tossing the murder weapon over a short fence where it could be easily observed and recovered. Accordingly, we affirm the defendant's conviction and sentence for first degree murder and reverse his conviction and sentence for tampering with physical evidence.", - "case_name_shorts": "" + "docket_numbers": "E2020-01333-SC-R11-CD", + "judges": "Justice Sarah K. Campbell", + "lower_courts": "Sullivan", + "summaries": "I concur in the Court's judgment reversing the Court of Criminal Appeals, and I agree with much of the majority opinion's analysis, including its determination that the trial court did not err in ordering Johnny Cavin to pay restitution. I also agree with the majority's conclusion that the restitution order here was final and appealable, but I reach that conclusion by way of a slightly different analysis. I write separately to explain how my reasoning differs from that of the majority. While the majority asks whether the trial court's judgment satisfied the statutory requirements for restitution orders, I would focus instead on whether the record shows that the trial court thought it was finished with the case. In my view, the restitution order here was final because nothing in the record or on the face of the order suggests that the trial court believed there was more to be done, not because it did everything it was supposed to do.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-05-24", - "case_names": "Herbert S. Moncier v. Board of Professional Responsibility", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/moncierhs_opn_2.pdf", + "case_dates": "2023-06-08", + "case_names": "State of Tennessee v. Johnny Summers Cavin", + "download_urls": "/sites/default/files/OpinionsPDFVersion/CAVIN%20-%20FILED%20Majority%20Opn.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2012-00340-SC-R3-BP", - "judges": "Justice Cornelia A. Clark", - "lower_courts": "", - "lower_court_judges": "", - "summaries": "An attorney suspended from the practice of law for eleven months and twenty-nine days,with all but forty-five days of the suspension probated, was assessed costs associated with the proceedings that resulted in his suspension pursuant to Tennessee Supreme Court Rule 9, section 24.3. The attorney timely filed a petition seeking relief from costs, and a panel of the Board of Professional Responsibility convened and conducted a hearing on the petition. The panel denied the petition, and the attorney has appealed to this Court, as permitted by Rule 9, section 24.3. Having carefully and thoroughly considered the record and each of the nine issues raised, we affirm the panel's decision denying the petition for relief from costs.", - "case_name_shorts": "" + "docket_numbers": "E2020-01333-SC-R11-CD", + "judges": "Justice Sharon G. Lee", + "lower_courts": "Sullivan", + "summaries": "The primary issue presented is whether a criminal restitution order is a final and appealable order under Tennessee Rule of Appellate Procedure 3 when the order directs a defendant to pay a set amount of restitution without payment terms. A trial court ordered the defendant who had pleaded guilty to burglary and theft to pay $5,500 in restitution during his probationary period. The Court of Criminal Appeals dismissed the appeal, holding that the restitution order was not a final and appealable order because it lacked payment terms. We hold that the restitution order was a final order. Tennessee's criminal restitution statute, Tennessee Code Annotated section 40-35-304, allows\u2014but does not require\u2014trial courts to specify payment terms. Here, the trial court's restitution order resolved all issues, was reasonable, and appropriately considered the victim's pecuniary loss and the defendant's ability to pay.", + "case_name_shorts": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/tenn_example.html b/tests/examples/opinions/united_states/tenn_example.html index fd513a8bb..6621d9edf 100644 --- a/tests/examples/opinions/united_states/tenn_example.html +++ b/tests/examples/opinions/united_states/tenn_example.html @@ -1,525 +1,1989 @@ - - - - - - - Supreme Court Opinions | Tennessee Administrative Office of the Courts - - - - - - - - - - - - - - - - - - - - -
    - -
    - -
    -
    -

    - Tennessee Administrative Office of the Courts

    - -
    - - - + + + + + + + + + + + -
    -
    + +
    +
    +
    + +
    +
    +
    +
    +
    + + + + +
    +

     

    +
    + +

     

    -
    -
    -
    - -
    -
    -
    - -
    Format: 08/30/2013
    + +
    +

    + SUPREME COURT OPINIONS + +

    + +
    +
    +
    + +
    + + + + + + + +
    +
    + +
    +
    + + +
    +
    +
    +
    + + + +
    + + + +
    +
    + + + + + + + +
    +
    + + + + + + + +
    +
    + + + + + + + +
    +
    + + + + + + + +
    +
    + + + + + + + +
    +
    + + + + + + + +
    +
    + + + + + + + +
    +
    + + + +
    + + + +
    +
    + + + +
    + + + +
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + State of Tennessee v. Ebony Robinson +
    M2021-01539SC-R11-CD +
    Authoring Judge: Chief Justice Roger A. Page +
    Trial Court Judge: Judge Mark J. Fishburn +

    In 2020, Ebony Robinson (“Defendant”) pleaded guilty to vehicular homicide by
    +intoxication, aggravated assault, resisting arrest, and driving without a license. The trial
    +court imposed a ten-year sentence largely suspended to probation with periodic weeks of
    +confinement for the first three years. The State appealed the sentence, arguing that a 2017
    +amendment to the probation eligibility statute, Tennessee Code Annotated section 40-35-
    +303, prohibits defendants who are convicted of vehicular homicide by intoxication from
    +receiving any form of probation. The Court of Criminal Appeals agreed with the State and
    +reversed the trial court, ordering Defendant to serve the full sentence in confinement. The
    +intermediate court concluded that the amended probation statute expressly prohibits
    +probation of any kind, including periodic or split confinement, for criminal defendants
    +convicted of vehicular homicide by intoxication. After reviewing the relevant statutes, this
    +Court affirms the Court of Criminal Appeals and holds that the clear and precise language
    +of the 2017 amendment to the probation eligibility statute prohibits all forms of probation
    +for a defendant convicted of vehicular homicide by intoxication. Accordingly, we affirm
    +the decision of the Court of Criminal Appeals.

    + +

    Davidson Supreme Court +

    + Robert Crotty, et al. v. Mark Flora, M.D. +
    M2021-01193-SC-R11-CV +
    Authoring Judge: Justice Holly Kirby +
    Trial Court Judge: Judge Joe P. Binkley, Jr. +

    In this interlocutory appeal, the defendant physician in a health care liability action asks us
    +to review two pretrial orders. In the first, the trial court excludes evidence that a nonparty
    +physician was the cause-in-fact of the claimant’s injuries because the defendant never
    +amended his answer to include that allegation, as required under Rule 8.03 of the Tennessee
    +Rules of Civil Procedure as applied in George v. Alexander, 931 S.W.2d 517 (Tenn. 1996).
    +Because he does not allege that the nonparty physician was negligent, the defendant asks
    +us to modify our holding in George and reverse the trial court’s order. We respectfully
    +decline to do so. In the second pretrial order on appeal, the trial court considered Tennessee
    +Code Annotated section 29-26-119, a provision that partially abrogates the common law
    +collateral source rule in health care liability actions. It held that section 29-26-119 does
    +not abrogate the collateral source rule under the facts of this case. We agree with the trial
    +court that the collateral source rule remains in effect in this case. We affirm both of the
    +trial court’s pretrial rulings.

    + +

    Davidson Supreme Court +

    + Robert Crotty, et al. v. Mark Flora, M.D. (Concur in Part and Dissent in Part) +
    M2021-01193-SC-R11-CV +
    Authoring Judge: Chief Justice Roger A. Page +
    Trial Court Judge: Judge Joe P. Binkley, Jr. +

    This interlocutory appeal involves two pretrial orders. I concur with the holding
    +and analysis of the majority as to the first pretrial order involving Rule 8.03 and George v.
    +Alexander, 931 S.W.2d 517 (Tenn. 1996). However, I respectfully dissent from the
    +majority’s holding and analysis as to the second pretrial order involving Tennessee Code
    +Annotated section 29-26-119 and the collateral source rule. This issue requires the Court
    +to interpret the meaning of section 29-26-119. I would hold that, when section 29-26-119
    +governs damages in a health care liability action, the statute’s clear language contemplates
    +only “actual economic losses suffered . . . paid or payable,” thereby abrogating the
    +collateral source rule. Thus, I would reverse the trial court’s pretrial order.

    + +

    Davidson Supreme Court +

    + Commercial Painting Company, Inc. v. The Weitz Company, LLC, et al. +
    W2019-02089-SC-R11-CV +
    Authoring Judge: Justice Sharon G. Lee +
    Trial Court Judge: Judge JoeDae L. Jenkins +

    The economic loss doctrine generally precludes a contracting party who suffers only
    +economic losses from recovering damages in tort. In Tennessee, the application of this
    +doctrine is limited to products liability cases. In this appeal, we consider whether the
    +economic loss doctrine should be expanded to apply outside the products liability context.
    +A jury awarded compensatory and punitive damages to a drywall subcontractor in a suit
    +against a general contractor under theories of breach of contract and tort. The Court of
    +Appeals applied the economic loss doctrine to preclude the recovery of damages in tort in
    +a suit between sophisticated commercial entities. The intermediate court, in part, affirmed
    +the award of compensatory damages for breach of contract, dismissed the tort claim, and
    +reversed the award for punitive damages. We hold the economic loss doctrine only applies
    +in products liability cases and should not be extended to other claims.

    + +

    Shelby Supreme Court +

    + Roger Baskin v. Pierce & Allred Construction, Inc. +
    M2021-00144-SC-R11-CV +
    Authoring Judge: Justice Jeffrey S. Bivins +
    Trial Court Judge: Chancellor Russell T. Perkins +

    In this appeal, we address whether a Tennessee resident may sue an Alabama corporation in a Tennessee court for alleged breach of contract and breach of warranty pertaining to its construction of a custom lake house in Alabama. Tennessee resident Roger Baskin hired Pierce & Allred Construction, an Alabama corporation with its principal place of business in Alabama, to build a house on a parcel of land in Alabama. Mr. Baskin supplied the architectural plans and some of the materials, all sourced from Tennessee, and the parties communicated throughout the project from their respective states. However, all of Pierce & Allred Construction’s activities on the project occurred in Alabama. Mr. Baskin ultimately became dissatisfied with the quality and expense of the construction work, and he filed suit in the Davidson County Chancery Court. Pierce & Allred Construction moved to dismiss the complaint for lack of personal jurisdiction, arguing that the corporation lacked the “minimum contacts” with Tennessee that due process protections require. Int’l Shoe Co. v. Washington, 326 U.S. 310, 316 (1945). The trial court granted the motion, finding that the events relevant to the claims occurred in Alabama and that the corporation’s contacts with Tennessee were minor and attenuated. The Court of Appeals reversed, looking to recent decisions from this Court, see Crouch Ry. Consulting, LLC v. LS Energy Fabrication, LLC, 610 S.W.3d 460 (Tenn. 2020), and the United States Supreme Court, see Ford Motor Co. v. Mont. Eighth Jud. Dist. Ct., 141 S. Ct. 1017 (2021) (explaining that the exercise of specific personal jurisdiction requires that a plaintiff’s claim arise out of or relate to the defendant’s forum contacts). We granted permission to appeal. Based on our review, we have determined that Pierce & Allred Construction’s contacts with Tennessee were not such that the corporation reasonably should have anticipated being haled into a Tennessee court to answer this suit. In making this determination, we conclude that certain contacts with Tennessee did not reflect that the corporation purposefully availed itself of the privilege of conducting business activities in Tennessee, while certain other contacts were not sufficiently related to Mr. Baskin’s claims to support the exercise of specific personal jurisdiction. Thus, we hold that Mr. Baskin failed to establish a prima facie case of the minimum contacts necessary for a Tennessee court to exercise specific personal jurisdiction over the Alabama corporation. Accordingly, we reverse the decision of the Court of Appeals and reinstate the judgment of the trial court dismissing Mr. Baskin’s complaint.

    + +

    Davidson Supreme Court +

    + Commercial Painting Company, Inc. v. The Weitz Company, LLC, et al. (Dissent) +
    W2019-02089-SC-R11-CV +
    Authoring Judge: Justice Sarah K. Campbell; Justice Jeffrey S. Bivins joins +
    Trial Court Judge: Judge JoeDae L. Jenkins +

    economic-loss doctrine bars recovery in tort for purely economic losses in certain
    +situations. In this case, the Court is asked to apply that doctrine to bar tort claims brought
    +by a subcontractor against a general contractor, where the relationship between the
    +subcontractor and general contractor is governed by a contract. The majority opinion cabins
    +the economic-loss doctrine to products liability cases and refuses to extend it to contracts
    +for services for fear that doing so would require that we also create various exceptions. I
    +respectfully disagree with that holding. The core rationale underlying the economic-loss
    +doctrine—to create a boundary line between tort and contract law to ensure that parties can
    +allocate risks and responsibilities as they see fit—applies equally to cases involving
    +contracts for services. And to the extent that any exceptions to the rule would be needed,
    +their creation would not be nearly as difficult or messy as the majority predicts. I would
    +hold that the economic-loss doctrine applies here and precludes the subcontractor from
    +recovering punitive damages and pre-judgment interest.

    + +

    Shelby Supreme Court +

    + James A. Welch et al. v. Oaktree Health and Rehabilitation Center LLC d/b/a Christian Care Centers of Memphis et al. +
    W2020-00917-SC-R11-CV +
    Authoring Judge: Justice Holly Kirby +
    Trial Court Judge: Judge Jerry Stokes +

    Tennessee’s Durable Power of Attorney for Health Care Act, Tennessee Code Annotated sections 34-6-201 to -218, includes a provision for limited statutory immunity from civil liability, under certain conditions, for health care providers who rely in good faith on health care decisions made by an apparent agent on a principal’s behalf. Id. § -208. Tennessee’s Health Care Decisions Act, Tennessee Code Annotated sections 68-11-1801 to -1815, includes a similar provision for limited statutory immunity from civil liability, under certain conditions, for health care providers who comply in good faith with health care decisions made by an apparent agent on a principal’s behalf. Id. § -1810. The health care decision in this case is the execution of an arbitration agreement with admission to a nursing home. The agreement was signed by an agent under a durable power of attorney for health care executed several years earlier. After the resident’s death, his estate filed a wrongful death lawsuit against the nursing home on negligence theories. On appeal from the trial court’s denial of the defendant nursing home’s motion to compel arbitration, we hold that the nursing home does not meet the requirements for limited statutory immunity from civil liability under either the Durable Power of Attorney for Health Care Act or the Health Care Decisions Act. Consequently, the trial court did not err in considering evidence on whether the principal had the requisite mental capacity to execute the durable power of attorney for health care. We overrule the holding on the immunity provision in the Durable Power of Attorney for Health Care Act, Tennessee Code Annotated section 34-6-208, in Owens v. National Health Corporation, 263 S.W.3d 876, 889 n.4 (Tenn. 2007), to the extent it is inconsistent with this opinion. We affirm the trial court, reverse the Court of Appeals, and remand to the Court of Appeals.

    + +

    Shelby Supreme Court +

    + Ben C. Adams v. Buchanan D. Dunavant et al v. Watson Burns PLLC et al +
    W2023-00304-SC-T10B-CV +
    Authoring Judge: Per Curiam +
    Trial Court Judge: Judge Joe Townsend +

    Before his election to the bench, the probate judge in this interpleader action served as an
    +expert witness in a 2017 case involving one of the defendants, Watson Burns, PLLC. In
    +the current case, Watson Burns, PLLC and another law firm defendant moved for the
    +probate judge’s recusal based on the expert opinions the judge expressed in the 2017 case.
    +The probate judge denied the motion, and the law firms filed an accelerated interlocutory
    +appeal as of right to the Court of Appeals pursuant to Tennessee Supreme Court Rule 10B.
    +The Court of Appeals reversed, ordered the probate judge’s recusal, and remanded for
    +assignment of another judge. Two other parties to the interpleader action then filed an
    +accelerated application for permission to appeal in this Court pursuant to Rule 10B, section
    +2.07. We ordered the parties prevailing in the Court of Appeals to file a response to the
    +application. Having thoroughly reviewed the Rule 10B application for permission to
    +appeal, the response, all appendices, and the applicable law, we grant the Rule 10B
    +application, dispense with additional briefing and oral argument, and hold that the probate
    +judge’s denial of the recusal motion was appropriate in this case. Therefore, we reverse the
    +judgment of the Court of Appeals and remand for further proceedings consistent with this
    +decision

    + +

    Shelby Supreme Court +

    + Ben C. Adams v. Buchanan D. Dunavant et al v. Watson Burns PLLC et al. +
    W2023-00304-SC-T10B-CV +
    Authoring Judge: Per Curiam +
    Trial Court Judge: Judge Joe Townsend +

    Before his election to the bench, the probate judge in this interpleader action served as an
    +expert witness in a 2017 case involving one of the defendants, Watson Burns, PLLC. In
    +the current case, Watson Burns, PLLC and another law firm defendant moved for the
    +probate judge’s recusal based on the expert opinions the judge expressed in the 2017 case.
    +The probate judge denied the motion, and the law firms filed an accelerated interlocutory
    +appeal as of right to the Court of Appeals pursuant to Tennessee Supreme Court Rule 10B.
    +The Court of Appeals reversed, ordered the probate judge’s recusal, and remanded for
    +assignment of another judge. Two other parties to the interpleader action then filed an
    +accelerated application for permission to appeal in this Court pursuant to Rule 10B, section
    +2.07. We ordered the parties prevailing in the Court of Appeals to file a response to the
    +application. Having thoroughly reviewed the Rule 10B application for permission to
    +appeal, the response, all appendices, and the applicable law, we grant the Rule 10B
    +application, dispense with additional briefing and oral argument, and hold that the probate
    +judge’s denial of the recusal motion was appropriate in this case. Therefore, we reverse the
    +judgment of the Court of Appeals and remand for further proceedings consistent with this
    +decision.

    + +

    Shelby Supreme Court +

    + Beverly Gardner v. Saint Thomas Midtown Hospital +
    M2019-02237-SC-R11-CV +
    Authoring Judge: Justice Sarah K. Campbell +
    Trial Court Judge: Judge Joseph P. Binkley, Jr. +

    “When there is a conflict between the common law and a statute, the provision of the statute must prevail.” Graves v. Ill. Cent. R.R. Co., 148 S.W. 239, 242 (Tenn. 1912). That longstanding rule is the key to resolving this case, which pits a common-law rule governing vicarious liability claims against certain procedural provisions of Tennessee’s Health Care Liability Act. The defendant in this case moved for summary judgment under the common-law rule. The trial court granted that motion, but the Court of Appeals reversed after concluding that application of the common-law rule would conflict with the Act. We agree that the Act necessarily implies an intent to abrogate the common-law rule in the circumstances of this case and affirm the Court of Appeals’ decision.

    + +

    Davidson Supreme Court +

    + Beverly Gardner v. Saint Thomas Midtown Hospital (Concur) +
    M2019-02237-SC-R11-CV +
    Authoring Judge: Justice Sharon G. Lee +
    Trial Court Judge: Judge Joseph P. Binkley, Jr. +

    This case presents a simple issue: Whether the Tennessee Health Care Liability
    +Act’s statute of limitation extension prevails over the common law rule that a plaintiff
    +cannot pursue a vicarious liability claim against a principal when the plaintiff’s claim
    +against the agent is procedurally barred by operation of law before the plaintiff asserts the
    +vicarious liability claim against the principal. This common law rule is known as the
    +operation-of-law exception. Here, the Plaintiff filed a vicarious liability suit against the
    +principal, Saint Thomas Midtown Hospital, after the one-year statute of limitations had
    +expired as to the Hospital’s agents but within the Act’s 120-day extension of the statute of
    +limitations as to the Hospital. Was the suit timely filed? Yes—the Act’s provisions prevail
    +over the common law operation-of-law exception.

    + +

    Davidson Supreme Court +

    + Beverly Gardner v. Saint Thomas Midtown Hospital (Dissent) +
    M2019-02237-SC-R11-CV +
    Authoring Judge: Justice Jeffrey S. Bivins +
    Trial Court Judge: Judge Joseph P. Binkley, Jr. +

    This appeal presents issues similar to those in Ultsch v. HTI Memorial Hospital
    +Corp., No. M2020-00341-SC-R11-CV, ___ S.W.3d ___ (Tenn. 2023). In that case, I
    +dissented from the result reached by a majority of the Court, which held that provisions of
    +the statutory scheme commonly referred to as the Health Care Liability Act (“HCLA”)
    +abrogated the common law vicarious liability principle known as the operation-of-law
    +exception. I reach the same conclusion here and respectfully dissent from the result
    +reached by the majority in this case.

    + +

    Davidson Supreme Court +

    + Dennis Harold Ultsch v. HTI Memorial Hospital Corporation +
    M2020-00341-SC-R11-CV +
    Authoring Judge: Justice Sarah K. Campbell +
    Trial Court Judge: Judge Joseph P. Binkley, Jr. +

    “When there is a conflict between the common law and a statute, the provision of the statute must prevail.” Graves v. Ill. Cent. R.R. Co., 148 S.W. 239, 242 (Tenn. 1912). That longstanding rule is the key to resolving this case, which pits a common-law rule governing vicarious liability claims against certain procedural provisions of Tennessee’s Health Care Liability Act. The defendant in this case moved to dismiss the plaintiff’s claims under the common-law rule. The trial court granted that motion, but the Court of Appeals reversed after concluding that application of the common-law rule would conflict with the Act. We agree that the Act necessarily implies an intent to abrogate the common-law rule in the circumstances of this case and affirm the Court of Appeals’ decision.

    + +

    Davidson Supreme Court +

    + Dennis Harold Ultsch v. HTI Memorial Hospital Corporation (Concur) +
    M2020-00341-SC-R11-CV +
    Authoring Judge: Justice Sharon G. Lee +
    Trial Court Judge: Judge Joseph P. Binkley, Jr. +

    This case presents a simple issue: Whether the Tennessee Health Care Liability
    +Act’s statute of limitation extension prevails over the common law rule that a plaintiff
    +cannot pursue a vicarious liability claim against a principal when the plaintiff’s claim
    +against the agent is procedurally barred by operation of law before the plaintiff asserts the
    +vicarious liability claim against the principal. This common law rule is known as the
    +operation-of-law exception. Here, the Plaintiff filed a vicarious liability suit against the
    +principal, TriStar Skyline Medical Center, after the one-year statute of limitations had
    +expired as to Skyline’s agents but within the Act’s 120-day extension of the statute of
    +limitations as to Skyline. Was the suit timely filed? Yes—the Act’s provisions prevail over
    +the common law operation-of-law exception.

    + +

    Davidson Supreme Court +

    + Dennis Harold Ultsch v. HTI Memorial Hospital Corporation (Dissent) +
    M2020-00341-SC-R11-CV +
    Authoring Judge: Justice Jeffrey S. Bivins +
    Trial Court Judge: Judge Joseph P. Binkley, Jr. +

    This appeal presents issues similar to those in Ultsch v. HTI Memorial Hospital
    +Corp., No. M2020-00341-SC-R11-CV, ___ S.W.3d ___ (Tenn. 2023). In that case, I
    +dissented from the result reached by a majority of the Court, which held that provisions of
    +the statutory scheme commonly referred to as the Health Care Liability Act (“HCLA”)
    +abrogated the common law vicarious liability principle known as the operation-of-law
    +exception. I reach the same conclusion here and respectfully dissent from the result
    +reached by the majority in this case.

    + +

    Davidson Supreme Court +

    + State of Tennessee v. Dashun Shackleford +
    E2020-01712-SC-R11-CD +
    Authoring Judge: Chief Justice Roger A. Page +
    Trial Court Judge: Judge Steven Wayne Sword +

    This appeal concerns the criminal gang-enhancement statute, Tennessee Code Annotated
    +section 40-35-121, and specifically what is required in an indictment to sufficiently plead
    +and provide notice under the statute. Dashun Shackleford (“Defendant”) was arrested for
    +aggravated robbery as to four individuals in September 2016, along with his friend and
    +fellow gang member, Jalon Copeland. Defendant’s indictment contained twenty counts:
    +four alternative counts each of aggravated robbery against four victims and four
    +corresponding counts of criminal gang offense enhancement. The gang-enhancement
    +statute requires the State to give notice in separate counts of the indictment of the
    +enhancement applicable under the statute. The indictment also alleged that Defendant was
    +a “Crips” gang member and listed the convictions of fifteen alleged fellow Crips members
    +to prove Defendant’s gang had a “pattern of criminal gang activity,” as also required by
    +the gang-enhancement statute. A Knox County jury convicted Defendant as charged. The
    +trial court merged the aggravated robbery convictions into four counts and imposed a total
    +effective sentence of twenty years to be served at eighty-five percent. In this case, the
    +gang- enhancement conviction increased Defendant’s aggravated robbery convictions from Class
    +B felonies to Class A felonies. Defendant appealed, arguing, among other things, that the
    +evidence at trial was insufficient to support his gang-enhancement conviction. The Court
    +of Criminal Appeals agreed, taking particular issue with the allegation in the indictment
    +that Defendant and the other gang members listed therein were plain Crips. In the
    +gang-enhancement phase of trial, the proof established that the majority of the gang members
    +listed in the indictment, including Defendant, were members of several different subsets of
    +the Crips gang, with only one of the listed men identified as a plain Crip. The intermediate
    +court concluded that the State failed to prove that Defendant’s subset gang had engaged in
    +a pattern of criminal gang activity and failed to comply with the notice requirements of the
    +gang-enhancement statute. In doing so, the court also, sua sponte, determined that a fatal
    +variance existed between the indictment and proof at trial. The Court of Criminal Appeals,
    +therefore, reverted Defendant’s aggravated robbery convictions to a classification lower in
    +the absence of the gang enhancement. After review, we conclude that the Court of Criminal
    +Appeals erred in its decision. The gang-enhancement statute is worded broadly and does
    +not require the State to specify in the indictment a criminal defendant’s gang subset nor
    +that the defendant is in the same gang subset as the individuals whose criminal activity
    +establishes the gang’s “pattern of criminal gang activity.” Defendant waived all other issues
    +by failing to properly raise them before the trial court or on appeal. Therefore, the decision
    +of the Court of Criminal Appeals is reversed and the trial court’s judgments are reinstated.

    + +

    Knox Supreme Court +

    + Gerald D. Waggoner, Jr. v. Board of Professional Responsibility of the Supreme Court of Tennessee +
    W2022-01294-SC-R3-BP +
    Authoring Judge: Justice Sharon G. Lee +
    Trial Court Judge: Senior Judge William B. Acree +

    A Board of Professional Responsibility hearing panel found that a Shelby County
    +attorney’s law license should be suspended for four years based on multiple violations of
    +the Rules of Professional Conduct (RPCs), including RPC 5.5(a). The attorney appealed
    +part of the hearing panel’s decision, and the trial court affirmed in part, reversed in part,
    +and modified the sanction to one year. The Board appeals the trial court’s decision that the
    +attorney did not violate RPC 5.5(a) by practicing law while his license was suspended. We
    +find that the attorney violated RPC 5.5(a) by continuing to manage and market his law
    +practice; by directly or indirectly communicating with office staff, attorneys, and former
    +clients; and by recruiting and hiring attorneys while his law license was suspended. The
    +hearing panel’s decision that the attorney violated RPC 5.5(a) is supported by substantial
    +and material evidence. We hold that the attorney’s law license shall be suspended for two
    +years, with eighteen months served on active suspension. This sanction is based on the
    +RPC 5.5(a) violation, as well as the hearing panel’s findings that he violated additional
    +RPCs, which he did not appeal, the American Bar Association’s Standards for Imposing
    +Lawyer Sanctions (ABA Standards), five aggravating factors, and no mitigating factors.
    +The attorney shall also make appropriate restitution, obtain additional continuing education
    +as ordered by the trial court, and engage a practice monitor during his probated suspension.

    + +

    Shelby Supreme Court +

    + Jessie Dotson v. State of Tennessee +
    W2019-01059-SC-R11-PD +
    Authoring Judge: Justice Sharon G. Lee +
    Trial Court Judge: Special Judge James C. Beasley, Jr. +

    This appeal involves a capital post-conviction petitioner’s expert funding requests under
    +Tennessee Supreme Court Rule 13. A jury convicted the Petitioner, Jessie Dotson, of six
    +counts of premeditated first-degree murder and sentenced him to death. This Court
    +affirmed the jury’s verdict. The Petitioner filed for post-conviction relief, alleging several
    +grounds of ineffective assistance of counsel. He requested funds under Tennessee Supreme
    +Court Rule 13 to hire expert witnesses to assist in establishing his claims of ineffective
    +assistance of counsel. The post-conviction court authorized the funds, but the Director of
    +the Administrative Office of the Courts (AOC) and the Chief Justice denied approval for
    +some of the Petitioner’s requested experts. After an evidentiary hearing, the
    +post-conviction court denied relief. The Court of Criminal Appeals affirmed the ruling
    +without deciding the Petitioner’s Rule 13 constitutional challenges. We granted review to
    +consider the Petitioner’s constitutional issues regarding Rule 13. We hold the provisions
    +of Rule 13 are constitutional as applied; the Petitioner was not unconstitutionally denied
    +appellate review of the denial of his request for expert funds; and the Petitioner was not
    +deprived of a full and fair post-conviction hearing due to the denial of expert funds.

    + +

    Shelby Supreme Court +

    + In Re: James Ralph Hickman, Jr., BPR #020125 +
    M2022-00755-SC-BAR-BP +
    Authoring Judge: Justice Sarah K. Campbell +
    Trial Court Judge: Board of Professional Responsibility Hearing Panel +

    In this case, we consider the appropriate discipline for Tennessee attorney James Ralph Hickman, Jr. The Board of Professional Responsibility filed a petition for discipline against Hickman alleging that he violated the Rules of Professional Conduct while representing an estate in probate proceedings. A hearing panel of the Board adjudicated the petition and recommended a one-year suspension, with “at least” ninety days served as an active suspension and the rest on probation. Any violation of the conditions of probation would result in “reversion to active suspension.” The hearing panel also directed Hickman to obtain a practice monitor during the probationary period, complete fifteen additional hours of estate-management continuing legal education (“CLE”) and three additional hours of ethics CLE, and pay the costs of the matter. Neither Hickman nor the Board appealed. The Board petitioned this Court for an order enforcing the hearing panel’s judgment. Exercising our authority under Tennessee Supreme Court Rule 9, section 15.4, we determined that the punishment imposed by the hearing panel appeared too lenient and proposed to increase it. After carefully considering the entire record, “with a view to attaining uniformity of punishment throughout the State and appropriateness of punishment under the circumstances of each particular case,” Tenn. Sup. Ct. R. 9, § 15.4(b), we affirm the hearing panel’s one-year suspension but modify the judgment to impose six months of active suspension followed by six months on probation. We also clarify that the period of probation imposed should be fixed rather than indefinite and that violation of a condition of probation does not automatically result in reversion of the probationary period to active suspension. We affirm the decision of the hearing panel in all other respects.

    + +

    Sevier Supreme Court +

    + Ernest Falls et al. v. Mark Goins et al. +
    M2020-01510-SC-R11-CV +
    Authoring Judge: Justice Jeffrey S. Bivins +
    Trial Court Judge: Chancellor Ellen Hobbs Lyle +

    In this appeal, we consider the interplay and applicability of two statutes that relate to suffrage rights of Tennessee residents previously convicted of infamous crimes in other states. Although the Tennessee Constitution recognizes the importance of the right of its residents to vote, the Constitution also allows the General Assembly to restrict the right of a person to vote “upon a conviction by a jury of some infamous crime, previously ascertained and declared by law, and judgment thereon by court of competent jurisdiction.” Tenn. Const. art. I, § 5. Ernest Falls, a resident of Tennessee since 2018, was convicted of involuntary manslaughter in Virginia in 1986, an infamous crime under the laws of Tennessee. In 2020, Mr. Falls was granted clemency in Virginia by then-Governor Ralph Northam. The grant of clemency reinstated Mr. Falls’ rights of citizenship in Virginia, including his right to vote. Subsequently, Mr. Falls attempted to register to vote in Grainger County, Tennessee, in June of 2020. The Grainger County Election Commission denied his restoration of voting rights request and cited “Incomplete/Insufficient Document(s)” as the reasoning for the denial. Mr. Falls and a co-plaintiff, who was left off the voter rolls under similar circumstances, filed a lawsuit in the Chancery Court for Davidson County, arguing that Tennessee Code Annotated section 2-19-143(3) requires the state to re-enfranchise persons convicted of out-of-state infamous crimes as soon as said persons are “pardoned or restored to the rights of citizenship by the governor or other appropriate authority of such other state.” Tenn. Code Ann. § 2-19-143(3) (2014). Respondents, three public employees sued in their official capacity, countered that Mr. Falls also is required to comply with requirements set forth in another statutory provision, Tennessee Code Annotated section 40-29-202, which requires that persons convicted of infamous crimes pay outstanding court costs, restitution, and child support obligations before they can be re-enfranchised. Tenn. Code Ann. § 40-29-202 (2018). The Chancery Court granted summary judgment in favor of the three state officials, and the Court of Appeals affirmed the grant of summary judgment with Mr. Falls acting as the sole remaining plaintiff. Like the Court of Appeals, we affirm the grant of summary judgment and conclude that, in order to regain the right of suffrage in Tennessee, Mr. Falls and other similarly situated individuals must comply with both section 2-19-143(3) and the additional requirements set forth in section 40-29-202.

    + +

    Davidson Supreme Court +

    + Ernest Falls et al. v. Mark Goins et al. (Dissent) +
    M2020-01510-SC-R11-CV +
    Authoring Judge: Justice Sharon G. Lee +
    Trial Court Judge: Chancellor Ellen Hobbs Lyle +

    Ernest Falls’ right to vote is guaranteed under the Tennessee Constitution. Tenn.
    +Const. art. I, § 5.1 In 1986, almost forty years ago, Mr. Falls was convicted of an infamous
    +crime in Virginia. He completed his sentence in 1987. In 2018, Mr. Falls moved to
    +Tennessee. In February 2020, the Governor of Virginia gave him an individualized grant
    +of clemency, fully restoring his rights to vote, hold public office, serve on a jury, and be a
    +notary public. With his voting rights fully restored, Mr. Falls tried to register to vote in
    +Tennessee; he disclosed his previous conviction and verified the restoration of his right to
    +vote. His application was denied because he provided no evidence that he did not owe
    +restitution or court costs in Virginia from his 1986 conviction and that he was current on
    +any child support obligations. See Tenn. Code Ann. § 40-29-202(b)–(c) (2018). Yet, under
    +Tennessee Code Annotated section 2-19-143(3), Mr. Falls was not prohibited from voting
    +because his right to vote had been restored by the grant of clemency. The requirement
    +regarding restitution, court costs, and child support under section 40-29-202 does not apply
    +to Mr. Falls because he had no need to have his voting rights restored.

    + +

    Davidson Supreme Court +

    + State of Tennessee v. Johnny Summers Cavin +
    E2020-01333-SC-R11-CD +
    Authoring Judge: Justice Sharon G. Lee +
    Trial Court Judge: Judge James F. Goodwin, Jr. +

    The primary issue presented is whether a criminal restitution order is a final and appealable
    +order under Tennessee Rule of Appellate Procedure 3 when the order directs a defendant
    +to pay a set amount of restitution without payment terms. A trial court ordered the
    +defendant who had pleaded guilty to burglary and theft to pay $5,500 in restitution during
    +his probationary period. The Court of Criminal Appeals dismissed the appeal, holding that
    +the restitution order was not a final and appealable order because it lacked payment terms.
    +We hold that the restitution order was a final order. Tennessee’s criminal restitution statute,
    +Tennessee Code Annotated section 40-35-304, allows—but does not require—trial courts
    +to specify payment terms. Here, the trial court’s restitution order resolved all issues, was
    +reasonable, and appropriately considered the victim’s pecuniary loss and the defendant’s
    +ability to pay.

    + +

    Sullivan Supreme Court +

    + State of Tennessee v. Johnny Summers Cavin (Concur) +
    E2020-01333-SC-R11-CD +
    Authoring Judge: Justice Sarah K. Campbell +
    Trial Court Judge: Judge James F. Goodwin, Jr. +

    I concur in the Court’s judgment reversing the Court of Criminal Appeals, and I agree with much of the majority opinion’s analysis, including its determination that the trial court did not err in ordering Johnny Cavin to pay restitution. I also agree with the majority’s conclusion that the restitution order here was final and appealable, but I reach that conclusion by way of a slightly different analysis. I write separately to explain how my reasoning differs from that of the majority. While the majority asks whether the trial court’s judgment satisfied the statutory requirements for restitution orders, I would focus instead on whether the record shows that the trial court thought it was finished with the case. In my view, the restitution order here was final because nothing in the record or on the face of the order suggests that the trial court believed there was more to be done, not because it did everything it was supposed to do.

    + +

    Sullivan Supreme Court +

    + State of Tennessee v. Joseph Gevedon +
    M2020-00359-SC-R11-CD +
    Authoring Judge: Justice Sharon G. Lee +
    Trial Court Judge: Judge Stella L. Hargrove +

    A trial court ordered a defendant to pay a set amount of criminal restitution but did not
    +state payment terms or consider the defendant’s ability to pay. The Court of Criminal
    +Appeals dismissed the appeal, ruling the restitution order was not a final order because it
    +did not include payment terms. We hold the restitution order was a final order even though
    +it did not include payment terms. See State v. Cavin, No. E2020-01333-SC-R11-CD, ___
    +S.W.3d ____, 2023 WL _________ (Tenn. ______, 2023). The date for payment of the
    +restitution was, by default, the expiration of the defendant’s sentence based on Tennessee
    +Code Annotated section 40-35-304(g). The trial court erred by failing to consider the
    +defendant’s financial resources and ability to pay when setting the amount of restitution as
    +required by Tennessee Code Annotated section 40-35-304(d). We reverse the judgment of
    +the Court of Criminal Appeals, vacate the trial court’s restitution order, and remand to the
    +trial court for further proceedings consistent with this opinion.

    + +

    Giles Supreme Court +

    + State of Tennessee v. Joseph Gevedon (Concur) +
    M2020-00359-SC-R11-CD +
    Authoring Judge: Justice Sarah K. Campbell +
    Trial Court Judge: Judge Stella L. Hargrove +

    I concur in the Court’s judgment reversing the Court of Criminal Appeals, and I agree with much of the majority opinion’s analysis, including its determination that the trial court abused its discretion by failing to consider Joseph Gevedon’s ability to pay when setting the amount of restitution.1 I also agree with the majority’s conclusion that the restitution order here was final and appealable, but I reach that conclusion by way of a slightly different analysis. I write separately to explain how my reasoning differs from that of the majority. While the majority asks whether the trial court’s judgment satisfied the statutory requirements for restitution orders, I would focus instead on whether the record shows that the trial court thought it was finished with the case. In my view, the restitution order here was final because nothing in the record or on the face of the order suggests that the trial court had any intention of setting the time for payment, not because the trial court did everything it was supposed to do.

    + +

    Giles Supreme Court +
    +
    + +
    + + + +
    +
    -
    - -
    - -
    Format: 08/30/2013
    +
    +
    -
    -
    -
    - -
    -
    -
    -
    -
    -
    - -
    -
    - + +
    +
    -
    + +
    +
    +
    +
    -
    - -
    -
    - -
    -
    +
    +
    +
    +
    -
    -
    - - -
    +
    +
    + +
    +
    +
    +
    -
    -
    - - -
    +
    +
    + +
    +
    +
    +
    -
    -
    -
    - +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    +
    + + +
    + + +
    +
    +
    + + + - - - - - + + + + + + + + + + +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/tenncrimapp_example.compare.json b/tests/examples/opinions/united_states/tenncrimapp_example.compare.json index 2ade601d9..e3e1707c9 100644 --- a/tests/examples/opinions/united_states/tenncrimapp_example.compare.json +++ b/tests/examples/opinions/united_states/tenncrimapp_example.compare.json @@ -1,184 +1,352 @@ [ { - "case_dates": "2013-08-30", - "case_names": "State of Tennessee v. Troy Reynolds", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/reynoldstopn.pdf", + "case_dates": "2023-11-03", + "case_names": "State of Tennessee v. Tamarion Terrell Johnson", + "download_urls": "/sites/default/files/OpinionsPDFVersion/STATE%20OF%20TENNESSEE%20v.%20TAMARION%20TERRELL%20JOHNSON%20E2022-01308-CCA-R3-CD.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2012-02588-CCA-R3-CD", - "judges": "Judge Jeffrey S. Bivins", - "lower_courts": "Blount County", - "lower_court_judges": "Judge David R. Duggan", - "summaries": "Troy Reynolds (\"the Defendant\") pleaded guilty in February 2012 to evading arrest by vehicle, theft of property valued at over $1,000, and burglary. Pursuant to a plea agreement, he was sentenced as a Range I standard offender to an effective sentence of three years to be suspended and served on supervised probation, consecutive to an earlier suspended sentence. The State later filed a violation of probation warrant. The Defendant was taken into custody, and a probation revocation hearing was held. At the conclusion of the hearing, the trial court revoked the Defendant's probation and ordered him to serve the remainder of his sentence in confinement. The Defendant appealed the trial court's ruling. Upon our thorough review of the record and applicable law, we affirm the trial court's judgment.", - "case_name_shorts": "" + "docket_numbers": "E2022-01308-CCA-R3-CD", + "judges": "Timothy L. Easter", + "lower_courts": "Hamilton", + "summaries": "A Hamilton County jury convicted Defendant, Tamarion Terrell Johnson, of second degree murder and aggravated assault in the shooting death of the victim, Shawnquell Stanfield. The trial court merged the assault conviction into the murder conviction. Defendant argues on appeal that the trial court improperly instructed the jury on flight and that the evidence was insufficient to support his second degree murder conviction. We affirm the judgments of the trial court.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-30", - "case_names": "State of Tennessee v. Stanley B.Hill", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/hillstanleyopn.pdf", + "case_dates": "2023-11-03", + "case_names": "State of Tennessee v. Amanda Helena Rogers", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2022-01328-CCA-R3-CD.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2012-00289-CCA-R3-CD", - "judges": "Judge Alan E. Glenn", - "lower_courts": "Blount County", - "lower_court_judges": "Judge Michael H. Meares", - "summaries": "The defendant, Stanley B. Hill, was convicted by a Blount County jury of the first degree premeditated murder of his wife, Vickie Hill, and sentenced to life imprisonment. On appeal, he argues that the trial court committed reversible error by: (1) allowing the medical examiner to use demonstrative evidence that was inherently unreliable, unfairly prejudicial, cumulative, and not disclosed to defense counsel prior to trial and (2) excluding a piece of physical evidence as a sanction for his violation of the reciprocal discovery obligations under Rule 16 of the Tennessee Rules of Criminal Procedure. Following our review, we affirm the judgment of the trial court.", - "case_name_shorts": "" + "docket_numbers": "M2022-01328-CCA-R3-CD", + "judges": "Judge James Curwood Witt, Jr.", + "lower_courts": "Maury", + "summaries": "The defendant, Amanda Helena Rogers, appeals her Maury County Circuit Court jury convictions of facilitation of attempted first degree murder, facilitation of vandalism of property in an amount of $2,500 or more but less than $10,000, and two counts of reckless endangerment for which the trial court imposed an effective term of 10 years and six months to be served in confinement. On appeal, the defendant asserts that the evidence is insufficient to support her conviction of facilitation of attempted first degree murder and that the trial court erred in imposing the sentence. Discerning no reversible error, we affirm.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-30", - "case_names": "State of Tennessee v. Clifford Deleon Thomas", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/thomasopn.pdf", + "case_dates": "2023-11-03", + "case_names": "State of Tennessee v. Adam Janes", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2023-00112-CCA-R3-CD.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2012-01956-CCA-R3-CD", - "judges": "Judge John Everett Williams", - "lower_courts": "Knox County", - "lower_court_judges": "Judge Stephen W. Sword", - "summaries": "Defendant pled guilty to one count of possession of more than 0.5 grams of cocaine with intent to sell, a Class B felony, and one count of driving with a suspended license, a Class B misdemeanor, while reserving a certified question of law concerning the constitutionality of a city ordinance requiring vehicles operating within the municipality to have a \"tag light\" illuminating the vehicle's license plate after dark. The defendant was sentenced to eight years probation on the possession charge and to a concurrent six months probation for driving with a suspended license. Upon review, we conclude that the certified question reserved by the defendant is not dispositive of the constitutionality of the traffic stop at issue. The defendant's appeal is dismissed accordingly.", - "case_name_shorts": "" + "docket_numbers": "M2023-00112-CCA-R3-CD", + "judges": "Judge Kyle A. Hixson", + "lower_courts": "Rutherford", + "summaries": "The Defendant, Adam Janes, appeals the trial court's denial of his motion for a reduction of sentence pursuant to Tennessee Rule of Criminal Procedure 35. Specifically, the Defendant argues that: (1) he received the ineffective assistance of trial counsel; (2) he entered into his guilty plea unknowingly and involuntarily; (3) the assistant district attorney was prejudiced against him; (4) he was entitled to concurrent sentences; (5) he was not given the opportunity of rehabilitation; (6) his sentence was not the least severe measure necessary to achieve the purposes for which the sentence was imposed; and (7) the State failed to file a notice of intent to seek enhanced punishment. After review, we affirm the judgment of the trial court.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-30", - "case_names": "Jerry Whiteside Dickerson v. David Sexton, Warden", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/dickersonjerrywhitesideopn.pdf", + "case_dates": "2023-11-02", + "case_names": "State of Tennessee v. Hank Cooley, Jr.", + "download_urls": "/sites/default/files/OpinionsPDFVersion/CooleyHankJrOPN.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2013-00993-CCA-R3-HC", - "judges": "Presiding Judge Joseph M. Tipton", - "lower_courts": "Johnson County", - "lower_court_judges": "Judge Lynn w. Brown", - "summaries": "The Petitioner, Jerry Whiteside Dickerson, appeals the Johnson County Criminal Court's summary dismissal of his petition for the writ of habeas corpus regarding his convictions for first degree felony murder and especially aggravated robbery, for which he is serving an effective life sentence. The Petitioner contends that the trial court erred in dismissing the petition. We affirm the judgment of the trial court.", - "case_name_shorts": "" + "docket_numbers": "W2023-00073-CCA-R3-CD", + "judges": "Judge Robert H. Montgomery, Jr.", + "lower_courts": "Madison", + "summaries": "The Defendant, Hank Cooley, Jr., appeals from his best interest, guilty-pleaded convictions for felony evading arrest risking death or injury, driving on a revoked license (second offense), reckless driving, disobeying a traffic signal, violation of the light law, speeding, and failure to exercise due care. See T.C.A. \u00a7\u00a7 39-16-603(b)(3)(B) (2018) (subsequently amended) (evading arrest), 55-50-504 (2020) (driving on a revoked license), 55-10-205 (2020) (reckless driving), 55-8-110 (2020) (subsequently amended) (disobeying a traffic signal), 55-9-402 (2020) (subsequently amended) (violation of light law), 55-8-152 (2008) (speeding), and 55-8-136 (2020) (failure to exercise due care). The trial court ordered the Defendant to serve an effective sentence of twelve years in confinement. On appeal, the Defendant contends the court erred by denying alternative sentencing. We affirm the judgments of the trial court.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-30", - "case_names": "Gary Thomas Reed v. State of Tennessee", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/reedgtopn.pdf", + "case_dates": "2023-10-31", + "case_names": "State of Tennessee v. Ariana Elizabeth Major", + "download_urls": "/sites/default/files/OpinionsPDFVersion/UNSIGNED-M2021-1469-CCA-MAJOR_3.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2013-00169-CCA-R3-PC", - "judges": "Judge Robert W. Wedemeyer", - "lower_courts": "Cumberland County", - "lower_court_judges": "Judge Leon C. Burns, Jr.", - "summaries": "A Cumberland County jury convicted the Petitioner, Gary Thomas Reed, of initiating the process of manufacturing methamphetamine. This Court affirmed the Petitioner's conviction and sentence on appeal. State v. Gary Thomas Reed, No. E2009-02238-CCA-R3-CD, 2011 WL 1842711 (Tenn. Crim. App., at Knoxville, Aug. 24, 2011), perm. app. denied (Tenn. Aug. 24, 2011). The Petitioner timely filed a petition for post-conviction relief claiming that he had received the ineffective assistance of counsel. The post-conviction court denied relief after a hearing. On appeal, the Petitioner claims that his attorney failed to call an exculpatory witness at trial and failed to object to a violation of the sequestration rule. After a thorough review of the record, the briefs, and relevant authorities, we affirm the post-conviction court's judgment.", - "case_name_shorts": "" + "docket_numbers": "M2021-01469-CCA-R3-CD", + "judges": "Judge Robert H. Montgomery", + "lower_courts": "Montgomery", + "summaries": "The State of Tennessee appealed the Montgomery County Circuit Court's order granting the Defendant's motion to suppress evidence recovered during the search of her car. On appeal, the State contends that the trial court erred because probable cause existed to search the Defendant's car based on a police dog's signal for the presence of narcotics. We reverse the judgment of the trial court and remand the case for reinstatement of the charges.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-31", + "case_names": "State of Tennessee v. Ariana Elizabeth Major", + "download_urls": "/sites/default/files/OpinionsPDFVersion/UNSIGNED-M2021-1469-CCA-MAJOR%20-%20SEP%20OPN_1.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2021-01469-CCA-R3-CD", + "judges": "Presiding Judge Camille R. McMullen", + "lower_courts": "Montgomery", + "summaries": "I concur with the majority opinion's conclusion based on the narrow issue raised by the parties and the existing law in Tennessee. I write separately, however, to highlight how the legalization of hemp has fractured the foundation underlying the rule that a drug detection dog sniff is not a search subject to Fourth Amendment protections. In my view, the cases before this court thus far miss the primary issue\u2014whether a drug detection dog sniff that no longer discloses only contraband is itself a search that must be supported by probable cause.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-29", - "case_names": "State of Tennessee v. Stanley Abernathy James", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/jamesstanleyabernathyopn.pdf", + "case_dates": "2023-10-30", + "case_names": "State of Tennessee v. Nicole L. Lindholm", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2022-00790-CCA-R3-CD.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2012-01912-CCA-R3-CD", - "judges": "Presiding Judge Joseph M. Tipton", - "lower_courts": "Knox County", - "lower_court_judges": "Judge Mary Beth Leibowitz", - "summaries": "The Defendant, Stanley Abernathy James, was convicted by a Knox County Criminal Court jury of second degree murder, a Class A felony, for which he is serving a twenty-five-year sentence. In this appeal, the Defendant contends that the evidence is insufficient to support his conviction. We affirm the judgment of the trial court.", - "case_name_shorts": "" + "docket_numbers": "M2022-00790-CCA-R3-CD", + "judges": "Judge John W. Campbell, Sr.", + "lower_courts": "Wayne", + "summaries": "The Defendant, Nicole L. Lindholm, appeals the trial court's imposition of an effective five-year sentence in the Tennessee Department of Correction for her convictions for aggravated assault, a Class C felony, and reckless endangerment with a deadly weapon, a Class E felony, which followed the trial court's revocation of her probationary sentence on judicial diversion. The Defendant argues on appeal that the trial court imposed an excessive sentence and erred by denying her request for probation. Based on our review, we affirm the sentence imposed by the trial court.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-29", - "case_names": "State of Tennessee v. Lamar Parrish Carter - Concurring", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/carterlamarparrishcon.pdf", + "case_dates": "2023-10-30", + "case_names": "State of Tennessee v. Ivan Ashley", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-M2022-01096-CCA-R3-CD.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M2012-01734-CCA-R9-CD", - "judges": "Judge Thomas T. Woodall", - "lower_courts": "Davidson County", - "lower_court_judges": "Judge Seth Norman", - "summaries": "In this case, Defendant filed a motion to dismiss the indictment pursuant to the constitutional protections afforded him to be protected from double jeopardy. Defendant asserts in this interlocutory appeal that the trial court erred by denying the motion. I concur in the results reached by the majority, but write separately to express my opinion that the only justifiable reason for the trial court to deny the motion was the Defendant's failure to explicitly object to the declaration of a mistrial.", - "case_name_shorts": "" + "docket_numbers": "M2022-01096-CCA-R3-CD", + "judges": "Judge John W. Campbell, Sr.", + "lower_courts": "Maury", + "summaries": "Following a bench trial, the Maury County Circuit Court convicted the Defendant of patronizing prostitution from a minor, a Class B felony, in count one and solicitation of a minor to commit patronizing prostitution, a Class C felony, in count two. The trial court sentenced the Defendant to eight and three years, respectively, and merged the convictions. On appeal, the Defendant contends that the evidence is sufficient to support only a conviction of patronizing prostitution from a law enforcement officer posing as a minor, a Class A misdemeanor, in count one and that the evidence is insufficient to support any conviction in count two. The State concedes that the Defendant committed a Class A misdemeanor in count one and, therefore, that both convictions must be modified to misdemeanors. We agree with the State; modify the judgment in count one to reflect a Class A misdemeanor conviction of patronizing prostitution from a law enforcement officer posing as a minor; modify the judgment in count two to reflect a Class B misdemeanor conviction of solicitation of a law enforcement officer posing as a minor to commit patronizing prostitution; and remand the case to the trial court for resentencing.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-29", - "case_names": "State of Tennessee v. Lamar Parrish Carter", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/carterlpopn.pdf", + "case_dates": "2023-10-30", + "case_names": "State of Tennessee v. Glen Edward Miller", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20%20M2023-00138-CCA-R3-CD.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M2012-01734-CCA-R9-CD", + "docket_numbers": "M2023-00138-CCA-R3-CD", "judges": "Judge Robert W. Wedemeyer", - "lower_courts": "Davidson County", - "lower_court_judges": "Judge Seth Norman", - "summaries": "This is an interlocutory appeal, pursuant to Tennessee Rule of Appellate Procedure 9, from the trial court's grant of a mistrial based upon a \"manifest necessity.\" The Defendant, Lamar Parrish Carter, appeals the trial court's ruling, arguing that his attorney's cross-examination of a co-defendant about her range of punishment, which was also the range of punishment for the Defendant, was not improper and did not warrant a mistrial. After a thorough review of the record and the relevant law, we affirm the trial court's judgment.", - "case_name_shorts": "" + "lower_courts": "Marshall", + "summaries": "The Defendant, Glen Edward Miller, pleaded guilty to two counts of robbery and two counts of kidnapping, and the trial court sentenced him to a twelve-year effective sentence, to be served on probation after one year of confinement. In response to the Defendant's second proven probation violation, the trial court ordered him to serve the balance of his sentence in confinement. On appeal from this judgment, the Defendant contends that: (1) the trial court improperly admitted hearsay evidence; (2) the evidence is insufficient to prove that he violated his probation; and (3) the trial court erred when it ordered him to serve the balance of his sentence in confinement. After review, we affirm the trial court's judgment.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-29", - "case_names": "State of Tennessee v. Josh L. Bowman - dissenting opinion", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/bowmanjoshldis.pdf", + "case_dates": "2023-10-30", + "case_names": "State of Tennessee v. Christopher James Funk, Sr.", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20State%20v.%20Funk%2C%20Sr.%20-%20E2022-01367.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2012-00923-CCA-R3-CD", - "judges": "Judge Thomas T. Woodall", - "lower_courts": "Knox County", - "lower_court_judges": "Judge Jon Kerry Blackwood", - "summaries": "I concur in that portion of the majority opinion which holds the trial court did not err by denying the appellant's motion to suppress his statement. I disagree with the remaining parts of the opinion and therefore would affirm all the judgments of the trial court.", - "case_name_shorts": "" + "docket_numbers": "E2022-01367-CCA-R3-CD", + "judges": "Judge Tom Greenholtz", + "lower_courts": "Hawkins", + "summaries": "A Hawkins County jury convicted the Defendant, Christopher James Funk, Sr., of driving under the influence of an intoxicant and possessing a firearm while under the influence of alcohol. The trial court sentenced the Defendant to concurrent sentences of eleven months and twenty-nine days after service of forty-eight hours in custody. On appeal, the Defendant argues that the trial court erred in denying both his motion to suppress and his subsequent motion for an interlocutory appeal. The State asserts that the Defendant waived any issue regarding his motion to suppress by failing to file a motion for a new trial. It also argues that the denial of an interlocutory appeal may not be challenged in a later direct appeal. On our review, we agree with the State and respectfully affirm the trial court's judgments.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-29", - "case_names": "State of Tennessee v. Josh L. Bowman", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/bowmanjoshopn.pdf", + "case_dates": "2023-10-30", + "case_names": "Richard Williams, III v. State of Tennessee", + "download_urls": "/sites/default/files/OpinionsPDFVersion/E2022-1768.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2012-00923-CCA-R3-CD", - "judges": "Judge Norma McGee Ogle", - "lower_courts": "Hickman County, Houston County", - "lower_court_judges": "Judge Jon Kerry Blackwood", - "summaries": "A Knox County Criminal Court Jury convicted the appellant, Josh L. Bowman, of three counts of first degree felony murder, one count of especially aggravated kidnapping, one count of especially aggravated robbery, two counts of aggravated burglary, and one count of employing a firearm during the commission of a dangerous felony. After the jury announced its verdicts, the appellant pled guilty to one count of employing a firearm during the commission of a dangerous felony when, at the time of the offense, the appellant had a prior felony conviction. The trial court merged the murder convictions, merged the burglary convictions, merged the employing a firearm convictions, and sentenced the appellant to an effective sentence of life plus sixty years in confinement. On appeal, the appellant contends that the trial court erred by failing to suppress his statement to police, by allowing the State to show a transcript of his statement simultaneously with his video-recorded statement, and by failing to instruct the jury as provided by State v. White, 362 S.W.3d 559 (Tenn. 2012). Based upon the oral arguments, the record, and the parties' briefs, we conclude that the trial court's failing to instruct the jury properly pursuant to White constitutes reversible error. Therefore, the appellant's conviction for especially aggravated kidnapping must be reversed and the case remanded to the trial court for a new trial as to that offense.", - "case_name_shorts": "" + "docket_numbers": "E2022-01768-CCA-R3-PC", + "judges": "Judge Tom Greenholtz", + "lower_courts": "", + "summaries": "A Knox County jury convicted the Petitioner, Richard Williams, III, of several offenses, including attempted first degree murder. He later filed a petition for post-conviction relief, asserting that he was denied the effective assistance of counsel. The post-conviction court dismissed the petition after finding that it was untimely and that principles of due process did not toll the running of the statute of limitations. On appeal, the Petitioner argues that the post-conviction court did not adequately consider the impact of the COVID-19 pandemic on his ability to access the prison library and, therefore, to timely file his petition. We respectfully disagree and affirm the judgment of the post-conviction court.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-29", - "case_names": "State of Tennessee v. Carlos Smith", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/smithcarlosopn.pdf", + "case_dates": "2023-10-26", + "case_names": "State of Tennessee v. Jamaal Mondrew Mayes", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20%285%29%20-%20State%20of%20Tennessee%20v.%20Jamaal%20Mondrew%20Mayes%20-%20E2022-00824.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "W2012-01931-CCA-R3-CD", - "judges": "Judge James Curwood Witt Jr.", - "lower_courts": "Shelby County", - "lower_court_judges": "Judge James C. Beasley Jr.", - "summaries": "The defendant, Carlos Smith, appeals his Shelby County Criminal Court jury convictions of two counts of attempted second degree murder, two counts of aggravated assault, and one count each of aggravated robbery, especially aggravated burglary, employing a firearm during a dangerous offense, and being a convicted felon in possession of a handgun, claiming that the trial court erred by denying his motion to sever offenses and that the State violated the tenets of Brady v. Maryland, 373 U.S. 83 (1963). Discerning no error, we affirm.", - "case_name_shorts": "" + "docket_numbers": "E2022-00824-CCA-R3-CD", + "judges": "Judge Don W. Poole", + "lower_courts": "Hamilton", + "summaries": "The Appellant appeals his convictions of second degree murder and possession of a firearm with a prior violent felony conviction, for which he received an effective sentence of fortyeight years' imprisonment. In this appeal, the Appellant argues that (1) the trial court erred in denying the motion to suppress his confession; and (2) the evidence is insufficient to establish his identity as the perpetrator of the offenses. After review, we affirm the trial court's judgments.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-29", - "case_names": "State of Tennessee v. Amber R. Galemore", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/galemoreamberopn.pdf", + "case_dates": "2023-10-26", + "case_names": "State of Tennessee v. Deonta Baskin", + "download_urls": "/sites/default/files/OpinionsPDFVersion/BaskinDeontaOPN.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M2012-01783-CCA-R3-CD", - "judges": "Judge Robert W. Wedemeyer", - "lower_courts": "Montgomery County", - "lower_court_judges": "Judge John H. Gasaway", - "summaries": "In two separate cases, the Defendant, Amber R. Galemore, pled guilty to possession with intent to sell or deliver cocaine and to theft of property. She was sentenced to an effective sentence of eight years on probation. As part of the Defendant's plea agreement, she reserved a certified question of law pursuant to Tennessee Rule of Criminal Procedure 37(b)(2). The question is articulated in the record as, \"Whether the search warrant issued by a General Sessions Judge for Montgomery County, Tennessee, which was based on statements of an unknown person outside the defendant's residence and computer keystroke software results[,] provided a sufficient nexus to make a probable cause determination.\" After reviewing the record and applicable law, we conclude that the trial court did not err when it denied the Defendant's motion to suppress. Accordingly, we affirm the Defendant's convictions.", - "case_name_shorts": "" + "docket_numbers": "W2022-01796-CCA-R3-CD", + "judges": "Judge Kyle A. Hixson", + "lower_courts": "Shelby", + "summaries": "The Defendant, Deonta Baskin, was convicted of first degree murder and possession of a firearm by a convicted felon. The trial court sentenced the Defendant to life without parole pursuant to the repeat violent offender statute for his first degree murder conviction to be served consecutively to thirty years' confinement as a Range III, persistent offender for his possession of a firearm by a convicted felon conviction. On appeal, the Defendant argues that the trial court erred by imposing excessive sentences based on his prior convictions. After review, we affirm the judgments of the trial court.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-25", + "case_names": "State of Tennessee v. Lance T. Sandifer", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2023-00477-CCA-R3-CD.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2023-00477-CCA-R3-CD", + "judges": "Judge Kyle A. Hixson", + "lower_courts": "Davidson", + "summaries": "The Defendant, Lance T. Sandifer, appeals the trial court's summary dismissal of his motion to correct an illegal sentence pursuant to Tennessee Rule of Criminal Procedure 36.1. In his motion, the Defendant argued that his sentences were illegal because he was not granted a juvenile transfer hearing and that the criminal court, therefore, lacked subject matter jurisdiction over him. Following our review, we affirm.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-24", + "case_names": "Willie Nathan Jones v. State of Tennessee", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2023-00060-CCA-R3-PC.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2023-00060-CCA-R3-PC", + "judges": "Judge Matthew J. Wilson", + "lower_courts": "Putnam", + "summaries": "Petitioner, Willie Nathan Jones, appeals from the Putnam County Criminal Court's denying his petition for post-conviction relief, which petition challenged his convictions of second degree murder and attempted second degree murder. Petitioner argues trial counsel provided ineffective assistance by failing to contemporaneously object to the prosecutor's closing argument and failing to object to the prosecutor's use of the term \"victim\" when referring to a State's witness. We affirm the judgment of the post-conviction court.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-23", + "case_names": "State of Tennessee v. Jimmy Dewayne Richards", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2022-00831-CCA-R3-CD.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2022-00831-CCA-R3-CD", + "judges": "Judge Timothy L. Easter", + "lower_courts": "Fentress", + "summaries": "Defendant, Jimmy Dewayne Richards, was convicted by a Fentress County jury of burglary, theft of property, and vandalism. On appeal, the Defendant argues, among other things, that the trial court erred by denying the Defendant's pretrial motion to suppress. We cannot adequately review on the record before us whether the search was supported by probable cause or whether Defendant lacked standing to challenge the search. The trial court sua sponte raised the standing issue after all the proof was presented at the hearing and did not comply with its duties to judge the credibility of witnesses, to weigh the evidence, and to resolve factual issues in deciding the motion to suppress. We therefore remand this case for a new hearing on the motion to suppress in accordance with the instructions in this opinion.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-19", + "case_names": "Quintavious Montez Patton v. State of Tennessee", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2023-00207-CCA-R3-PC.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2023-00207-CCA-R3-PC", + "judges": "Judge John W. Campbell, Sr.", + "lower_courts": "Davidson", + "summaries": "The Petitioner, Quintavious Montez Patton, appeals the denial of his petition for post-conviction relief, arguing that the post-conviction court erred in finding that he received effective assistance of trial counsel. Based on our review, we affirm the judgment of the post-conviction court denying the petition.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-18", + "case_names": "State of Tennessee v. Taylor Brent Farley", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2022-01691-CCA-R3-CD.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2022-01691-CCA-R3-CD", + "judges": "Judge Matthew J. Wilson", + "lower_courts": "Sequatchie", + "summaries": "Defendant, Taylor Brent Farley, pleaded guilty to one count of attempted delivery of fentanyl, a Class C felony. Defendant sought judicial diversion, but the trial court denied diversion and imposed a six-year sentence on Community Corrections. On appeal, Defendant contends the trial court erred by denying judicial diversion. We affirm the judgment of the trial court.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-18", + "case_names": "State of Tennessee v. Juan De Paz Mondragon", + "download_urls": "/sites/default/files/OpinionsPDFVersion/MondragonJuanDePazOPN.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "W2023-00068-CCA-R3-Cd", + "judges": "Judge J. Ross Dyer", + "lower_courts": "Shelby", + "summaries": "The defendant, Juan De Paz Mondragon, was convicted by a Shelby County Criminal Court jury of two counts of second-degree murder, attempted second-degree murder, and employing a firearm during the commission of a dangerous felony, and the trial court imposed an effective sentence of thirty-eight years' incarceration. On appeal, the defendant argues that the evidence is insufficient to support his convictions for seconddegree murder and attempted second-degree murder, and the trial court abused its discretion in imposing consecutive sentences. After review, we affirm the judgments of the trial court. Furthermore, we remand to the trial court entry of corrected judgment forms in counts one and two reflecting the merger of the defendant's convictions for seconddegree murder into a single conviction.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-18", + "case_names": "State of Tennessee v. Frederick Peat", + "download_urls": "/sites/default/files/OpinionsPDFVersion/PeatFrederickOPN.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "W2022-01348-CCA-R3-CD", + "judges": "Judge J. Ross Dyer", + "lower_courts": "Shelby", + "summaries": "A Shelby County jury convicted the defendant, Frederick Peat, of aggravated rape, for which he received a sentence of twenty-five years in confinement. On appeal, the defendant contends the evidence presented at trial was insufficient to support his conviction. The defendant also argues the trial court erred in preventing him from impeaching the victim with evidence of the victim's prior convictions and in imposing an excessive sentence. After reviewing the record and considering the applicable law, we affirm the judgment of the trial court.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-18", + "case_names": "State of Tennessee v. Eric Dewayne Milton", + "download_urls": "/sites/default/files/OpinionsPDFVersion/MiltonEricDewayneOPN.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "W2023-00341-CCA-R3-CD", + "judges": "Judge J. Ross Dyer", + "lower_courts": "Carroll", + "summaries": "The defendant, Eric Dewayne Milton, appeals from the trial court's revocation of his community corrections sentence and order directing the defendant to serve the remainder of his eight-year sentence in confinement. On appeal, the defendant contends the trial court abused its discretion by failing to treat the defendant's violation as a violation of probation and impose a thirty-day sentence of confinement. After a thorough review of the record, the applicable law, and the briefs of the parties, we affirm the judgment of the trial court.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-18", + "case_names": "State of Tennessee v. Chauncy Black", + "download_urls": "/sites/default/files/OpinionsPDFVersion/BlackChauncyOPN.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "W2021-01435-CCA-R3-CD", + "judges": "Judge J. Ross Dyer", + "lower_courts": "Shelby", + "summaries": "The defendant, Chauncy Black, was found guilty by a Shelby County jury of reckless endangerment of Kaleb Wakefield and reckless endangerment with a deadly weapon of Isabella Edwards for discharging a firearm into an occupied habitation. The trial court imposed a six-and-a-half-year sentence. On appeal, the defendant contends the evidence presented at trial was insufficient to support his conviction of reckless endangerment with a deadly weapon of Isabella Edwards. The defendant also argues the trial court erred in failing to instruct the jury as to a presumption of reasonableness in the use of deadly force within his residence. Following our review, we affirm the defendant's convictions.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-18", + "case_names": "Edward Dean v. State of Tennessee", + "download_urls": "/sites/default/files/OpinionsPDFVersion/DeanEdwardOPN1.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "W2022-01513-CCA-R3-PC", + "judges": "Judge J. Ross Dyer", + "lower_courts": "Shelby", + "summaries": "The petitioner, Edward Dean, appeals the denial of his post-conviction petition, arguing the post-conviction court erred in finding he received the effective assistance of counsel. After our review of the record, briefs, and applicable law, we affirm the denial of the petition.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-18", + "case_names": "Courtney Anderson v. State of Tennessee", + "download_urls": "/sites/default/files/OpinionsPDFVersion/AndersonCourtneyOPN.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "W2023-00067-CCA-R3-PC", + "judges": "Judge J. Ross Dyer", + "lower_courts": "Shelby", + "summaries": "This is a State appeal, filed by the State Attorney General and Reporter, from the entry of an order granting the petitioner's, Courtney Anderson's, motion to reopen his postconviction and amending/reducing his original sentence of 162 years, 11 months, and 29 days to a time served sentence of 25 years. The State appealed, arguing the trial court lacked jurisdiction to hear the petitioner's motion as it was barred by the one-year statute of limitations and the petitioner failed to prove the statute should be tolled. Additionally, the State submits that the trial court lacked jurisdiction to amend the petitioner's sentence under the post-conviction statute and that the trial court's actions amount to an improper commutation of the petitioner's sentence. The petitioner contends that the State waived any challenge to the statute of limitations by failing to raise the issue below and that his claim meets the requirements of the statute and allows for the tolling of the statute, and therefore, the trial court properly granted the relief requested. Upon our thorough review of the applicable law and the briefs and arguments of both parties, we conclude that the instant petition is barred by the one-year statute of limitations and that the petitioner failed to establish and the trial court failed to find a proper basis for tolling the statute. Accordingly, the trial court lacked jurisdiction to hear the petitioner's motion and amend the petitioner's sentence. Therefore, we reverse the decision of the trial court, reinstate the petitioner's original sentence, and remand this matter for further proceedings consistent with this opinion.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-28", - "case_names": "In the Matter of Lakita E. P. and Michael A. P.", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/lakita_e._p._opn.pdf", + "case_dates": "2023-10-17", + "case_names": "State of Tennessee v. Michael Notaro", + "download_urls": "/sites/default/files/OpinionsPDFVersion/E2022-1642.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M2013-00384-COA-R3-PT", - "judges": "Judge Richard H. Dinkins", - "lower_courts": "Clay County", - "lower_court_judges": "Judge Jimmy White", - "summaries": "A father's parental rights to his two children were terminated on the grounds of abandonment by engaging in conduct exhibiting a wanton disregard for the welfare of the children, non-compliance with the permanency plan, and severe child abuse against children who resided with Father. He appeals, contending that the Department of Children's Services failed to expend reasonable efforts to reunite him with the children and that termination of his rights was not in the children's best interest. Finding no error, we affirm the judgment of the trial court.", - "case_name_shorts": "" + "docket_numbers": "E2022-01642-CA-R3-CD", + "judges": "Judge Timothy L. Easter", + "lower_courts": "", + "summaries": "Michael Notaro, Defendant, pled guilty to three counts of sexual exploitation of a minor with an agreed-upon sentence of 10 years for each conviction, to be served consecutively for a total effective sentence of 30 years at 100% in exchange for the State agreeing not to seek further prosecution for any other offenses under investigation. Defendant did not seek a direct appeal of his sentence. Instead, Defendant filed a motion pursuant to Rule 36.1 of the Tennessee Rules of Criminal Procedure in which he argued that his sentence was illegal. The trial court dismissed the motion for failure to state a colorable claim. Defendant appeals. We affirm the judgment of the trial court.", + "case_name_shorts": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/tenncrimapp_example.html b/tests/examples/opinions/united_states/tenncrimapp_example.html index 64eae3790..9904feab1 100644 --- a/tests/examples/opinions/united_states/tenncrimapp_example.html +++ b/tests/examples/opinions/united_states/tenncrimapp_example.html @@ -1,518 +1,1866 @@ - - - - - - - Court of Criminal Appeals Opinions | Tennessee Administrative Office of the Courts - - - - - - - - - - - - - - - - - - - -
    - -
    - -
    -
    -

    - Tennessee Administrative Office of the Courts

    - -
    - - - + + + + + + + + + + + -
    -
    + +
    +
    +
    + +
    +
    +
    +
    +
    + + + + +
    +

     

    +
    + +

     

    -
    -
    -
    - -
    -
    -
    - -
    Format: 08/30/2013
    + +
    +

    + COURT OF CRIMINAL APPEALS OPINIONS + +

    + +
    +
    +
    + +
    + + + + + + + +
    +
    + +
    +
    + + +
    +
    +
    +
    + + + +
    + + + +
    +
    + + + + + + + +
    +
    + + + + + + + +
    +
    + + + + + + + +
    +
    + + + + + + + +
    +
    + + + + + + + +
    +
    + + + + + + + +
    +
    + + + + + + + +
    +
    + + + +
    + + + +
    +
    + + + +
    + + + +
    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + State of Tennessee v. Tamarion Terrell Johnson +
    E2022-01308-CCA-R3-CD +
    Authoring Judge: Timothy L. Easter +
    Trial Court Judge: Don W. Poole +

    A Hamilton County jury convicted Defendant, Tamarion Terrell Johnson, of second degree
    +murder and aggravated assault in the shooting death of the victim, Shawnquell Stanfield.
    +The trial court merged the assault conviction into the murder conviction. Defendant argues
    +on appeal that the trial court improperly instructed the jury on flight and that the evidence
    +was insufficient to support his second degree murder conviction. We affirm the judgments
    +of the trial court.

    + +

    Hamilton Court of Criminal Appeals +

    + State of Tennessee v. Amanda Helena Rogers +
    M2022-01328-CCA-R3-CD +
    Authoring Judge: Judge James Curwood Witt, Jr. +
    Trial Court Judge: Judge Stella L. Hargrove +

    The defendant, Amanda Helena Rogers, appeals her Maury County Circuit Court jury convictions of facilitation of attempted first degree murder, facilitation of vandalism of property in an amount of $2,500 or more but less than $10,000, and two counts of reckless endangerment for which the trial court imposed an effective term of 10 years and six months to be served in confinement. On appeal, the defendant asserts that the evidence is insufficient to support her conviction of facilitation of attempted first degree murder and that the trial court erred in imposing the sentence. Discerning no reversible error, we affirm.

    + +

    Maury Court of Criminal Appeals +

    + State of Tennessee v. Adam Janes +
    M2023-00112-CCA-R3-CD +
    Authoring Judge: Judge Kyle A. Hixson +
    Trial Court Judge: Judge Barry R. Tidwell +

    The Defendant, Adam Janes, appeals the trial court’s denial of his motion for a reduction of sentence pursuant to Tennessee Rule of Criminal Procedure 35. Specifically, the Defendant argues that: (1) he received the ineffective assistance of trial counsel; (2) he entered into his guilty plea unknowingly and involuntarily; (3) the assistant district attorney was prejudiced against him; (4) he was entitled to concurrent sentences; (5) he was not given the opportunity of rehabilitation; (6) his sentence was not the least severe measure necessary to achieve the purposes for which the sentence was imposed; and (7) the State failed to file a notice of intent to seek enhanced punishment. After review, we affirm the judgment of the trial court.

    + +

    Rutherford Court of Criminal Appeals +

    + State of Tennessee v. Hank Cooley, Jr. +
    W2023-00073-CCA-R3-CD +
    Authoring Judge: Judge Robert H. Montgomery, Jr. +
    Trial Court Judge: Judge Kyle C. Atkins +

    The Defendant, Hank Cooley, Jr., appeals from his best interest, guilty-pleaded
    +convictions for felony evading arrest risking death or injury, driving on a revoked license
    +(second offense), reckless driving, disobeying a traffic signal, violation of the light law,
    +speeding, and failure to exercise due care. See T.C.A. §§ 39-16-603(b)(3)(B) (2018)
    +(subsequently amended) (evading arrest), 55-50-504 (2020) (driving on a revoked
    +license), 55-10-205 (2020) (reckless driving), 55-8-110 (2020) (subsequently amended)
    +(disobeying a traffic signal), 55-9-402 (2020) (subsequently amended) (violation of light
    +law), 55-8-152 (2008) (speeding), and 55-8-136 (2020) (failure to exercise due care).
    +The trial court ordered the Defendant to serve an effective sentence of twelve years in
    +confinement. On appeal, the Defendant contends the court erred by denying alternative
    +sentencing. We affirm the judgments of the trial court.

    + +

    Madison Court of Criminal Appeals +

    + State of Tennessee v. Ariana Elizabeth Major +
    M2021-01469-CCA-R3-CD +
    Authoring Judge: Judge Robert H. Montgomery +
    Trial Court Judge: Judge Robert T. Bateman +

    The State of Tennessee appealed the Montgomery County Circuit Court’s order granting the Defendant’s motion to suppress evidence recovered during the search of her car.  On appeal, the State contends that the trial court erred because probable cause existed to search the Defendant’s car based on a police dog’s signal for the presence of narcotics.  We reverse the judgment of the trial court and remand the case for reinstatement of the charges.

    + +

    Montgomery Court of Criminal Appeals +

    + State of Tennessee v. Ariana Elizabeth Major +
    M2021-01469-CCA-R3-CD +
    Authoring Judge: Presiding Judge Camille R. McMullen +
    Trial Court Judge: Judge Robert T. Bateman +

    I concur with the majority opinion’s conclusion based on the narrow issue raised by the parties and the existing law in Tennessee.  I write separately, however, to highlight how the legalization of hemp has fractured the foundation underlying the rule that a drug detection dog sniff is not a search subject to Fourth Amendment protections.  In my view, the cases before this court thus far miss the primary issue—whether a drug detection dog sniff that no longer discloses only contraband is itself a search that must be supported by probable cause.

    + +

    Montgomery Court of Criminal Appeals +

    + State of Tennessee v. Nicole L. Lindholm +
    M2022-00790-CCA-R3-CD +
    Authoring Judge: Judge John W. Campbell, Sr. +
    Trial Court Judge: Judge Stella L. Hargrove +

    The Defendant, Nicole L. Lindholm, appeals the trial court’s imposition of an effective five-year sentence in the Tennessee Department of Correction for her convictions for aggravated assault, a Class C felony, and reckless endangerment with a deadly weapon, a Class E felony, which followed the trial court’s revocation of her probationary sentence on judicial diversion. The Defendant argues on appeal that the trial court imposed an excessive sentence and erred by denying her request for probation. Based on our review, we affirm the sentence imposed by the trial court.

    + +

    Wayne Court of Criminal Appeals +

    + State of Tennessee v. Ivan Ashley +
    M2022-01096-CCA-R3-CD +
    Authoring Judge: Judge John W. Campbell, Sr. +
    Trial Court Judge: Judge Christopher V. Sockwell +

    Following a bench trial, the Maury County Circuit Court convicted the Defendant of patronizing prostitution from a minor, a Class B felony, in count one and solicitation of a minor to commit patronizing prostitution, a Class C felony, in count two. The trial court sentenced the Defendant to eight and three years, respectively, and merged the convictions. On appeal, the Defendant contends that the evidence is sufficient to support only a conviction of patronizing prostitution from a law enforcement officer posing as a minor, a Class A misdemeanor, in count one and that the evidence is insufficient to support any conviction in count two. The State concedes that the Defendant committed a Class A misdemeanor in count one and, therefore, that both convictions must be modified to misdemeanors. We agree with the State; modify the judgment in count one to reflect a Class A misdemeanor conviction of patronizing prostitution from a law enforcement officer posing as a minor; modify the judgment in count two to reflect a Class B misdemeanor conviction of solicitation of a law enforcement officer posing as a minor to commit patronizing prostitution; and remand the case to the trial court for resentencing.

    + +

    Maury Court of Criminal Appeals +

    + State of Tennessee v. Glen Edward Miller +
    M2023-00138-CCA-R3-CD +
    Authoring Judge: Judge Robert W. Wedemeyer +
    Trial Court Judge: Judge Forest A. Durard, Jr. +

    The Defendant, Glen Edward Miller, pleaded guilty to two counts of robbery and two counts of kidnapping, and the trial court sentenced him to a twelve-year effective sentence, to be served on probation after one year of confinement. In response to the Defendant’s second proven probation violation, the trial court ordered him to serve the balance of his sentence in confinement. On appeal from this judgment, the Defendant contends that: (1) the trial court improperly admitted hearsay evidence; (2) the evidence is insufficient to prove that he violated his probation; and (3) the trial court erred when it ordered him to serve the balance of his sentence in confinement. After review, we affirm the trial court’s judgment.

    + +

    Marshall Court of Criminal Appeals +

    + State of Tennessee v. Christopher James Funk, Sr. +
    E2022-01367-CCA-R3-CD +
    Authoring Judge: Judge Tom Greenholtz +
    Trial Court Judge: Judge James F. Goodwin, Jr. +

    A Hawkins County jury convicted the Defendant, Christopher James Funk, Sr., of driving
    +under the influence of an intoxicant and possessing a firearm while under the influence of
    +alcohol. The trial court sentenced the Defendant to concurrent sentences of eleven months
    +and twenty-nine days after service of forty-eight hours in custody. On appeal, the
    +Defendant argues that the trial court erred in denying both his motion to suppress and his
    +subsequent motion for an interlocutory appeal. The State asserts that the Defendant waived
    +any issue regarding his motion to suppress by failing to file a motion for a new trial. It also
    +argues that the denial of an interlocutory appeal may not be challenged in a later direct
    +appeal. On our review, we agree with the State and respectfully affirm the trial court’s
    +judgments.

    + +

    Hawkins Court of Criminal Appeals +

    + Richard Williams, III v. State of Tennessee +
    E2022-01768-CCA-R3-PC +
    Authoring Judge: Judge Tom Greenholtz +
    Trial Court Judge: Judge Steven W. Sword +

    A Knox County jury convicted the Petitioner, Richard Williams, III, of several offenses, including attempted first degree murder. He later filed a petition for post-conviction relief, asserting that he was denied the effective assistance of counsel. The post-conviction court dismissed the petition after finding that it was untimely and that principles of due process did not toll the running of the statute of limitations. On appeal, the Petitioner argues that the post-conviction court did not adequately consider the impact of the COVID-19 pandemic on his ability to access the prison library and, therefore, to timely file his petition. We respectfully disagree and affirm the judgment of the post-conviction court.

    + +

    Court of Criminal Appeals +

    + State of Tennessee v. Deonta Baskin +
    W2022-01796-CCA-R3-CD +
    Authoring Judge: Judge Kyle A. Hixson +
    Trial Court Judge: Judge Lee V. Coffee +

    The Defendant, Deonta Baskin, was convicted of first degree murder and possession of a
    +firearm by a convicted felon. The trial court sentenced the Defendant to life without parole
    +pursuant to the repeat violent offender statute for his first degree murder conviction to be
    +served consecutively to thirty years’ confinement as a Range III, persistent offender for his
    +possession of a firearm by a convicted felon conviction. On appeal, the Defendant argues
    +that the trial court erred by imposing excessive sentences based on his prior convictions.
    +After review, we affirm the judgments of the trial court.

    + +

    Shelby Court of Criminal Appeals +

    + State of Tennessee v. Jamaal Mondrew Mayes +
    E2022-00824-CCA-R3-CD +
    Authoring Judge: Judge Don W. Poole +
    Trial Court Judge: Judge Camille R. McMullen +

    The Appellant appeals his convictions of second degree murder and possession of a firearm
    +with a prior violent felony conviction, for which he received an effective sentence of fortyeight
    +years’ imprisonment. In this appeal, the Appellant argues that (1) the trial court erred
    +in denying the motion to suppress his confession; and (2) the evidence is insufficient to
    +establish his identity as the perpetrator of the offenses. After review, we affirm the trial
    +court’s judgments.

    + +

    Hamilton Court of Criminal Appeals +

    + State of Tennessee v. Lance T. Sandifer +
    M2023-00477-CCA-R3-CD +
    Authoring Judge: Judge Kyle A. Hixson +
    Trial Court Judge: Judge Steve R. Dozier +

    The Defendant, Lance T. Sandifer, appeals the trial court’s summary dismissal of his motion to correct an illegal sentence pursuant to Tennessee Rule of Criminal Procedure 36.1. In his motion, the Defendant argued that his sentences were illegal because he was not granted a juvenile transfer hearing and that the criminal court, therefore, lacked subject matter jurisdiction over him. Following our review, we affirm.

    + +

    Davidson Court of Criminal Appeals +

    + Willie Nathan Jones v. State of Tennessee +
    M2023-00060-CCA-R3-PC +
    Authoring Judge: Judge Matthew J. Wilson +
    Trial Court Judge: Judge Gary McKenzie +

    Petitioner, Willie Nathan Jones, appeals from the Putnam County Criminal Court’s denying his petition for post-conviction relief, which petition challenged his convictions of second degree murder and attempted second degree murder. Petitioner argues trial counsel provided ineffective assistance by failing to contemporaneously object to the prosecutor’s closing argument and failing to object to the prosecutor’s use of the term “victim” when referring to a State’s witness. We affirm the judgment of the post-conviction court.

    + +

    Putnam Court of Criminal Appeals +

    + State of Tennessee v. Jimmy Dewayne Richards +
    M2022-00831-CCA-R3-CD +
    Authoring Judge: Judge Timothy L. Easter +
    Trial Court Judge: Judge E. Shayne Sexton +

    Defendant, Jimmy Dewayne Richards, was convicted by a Fentress County jury of burglary, theft of property, and vandalism. On appeal, the Defendant argues, among other things, that the trial court erred by denying the Defendant’s pretrial motion to suppress. We cannot adequately review on the record before us whether the search was supported by probable cause or whether Defendant lacked standing to challenge the search. The trial court sua sponte raised the standing issue after all the proof was presented at the hearing and did not comply with its duties to judge the credibility of witnesses, to weigh the evidence, and to resolve factual issues in deciding the motion to suppress. We therefore remand this case for a new hearing on the motion to suppress in accordance with the instructions in this opinion.

    + +

    Fentress Court of Criminal Appeals +

    + Quintavious Montez Patton v. State of Tennessee +
    M2023-00207-CCA-R3-PC +
    Authoring Judge: Judge John W. Campbell, Sr. +
    Trial Court Judge: Judge Steve R. Dozier +

    The Petitioner, Quintavious Montez Patton, appeals the denial of his petition for post-conviction relief, arguing that the post-conviction court erred in finding that he received effective assistance of trial counsel. Based on our review, we affirm the judgment of the post-conviction court denying the petition.

    + +

    Davidson Court of Criminal Appeals +

    + State of Tennessee v. Taylor Brent Farley +
    M2022-01691-CCA-R3-CD +
    Authoring Judge: Judge Matthew J. Wilson +
    Trial Court Judge: Judge Justin C. Angel +

    Defendant, Taylor Brent Farley, pleaded guilty to one count of attempted delivery of fentanyl, a Class C felony. Defendant sought judicial diversion, but the trial court denied diversion and imposed a six-year sentence on Community Corrections. On appeal, Defendant contends the trial court erred by denying judicial diversion. We affirm the judgment of the trial court.

    + +

    Sequatchie Court of Criminal Appeals +

    + Edward Dean v. State of Tennessee +
    W2022-01513-CCA-R3-PC +
    Authoring Judge: Judge J. Ross Dyer +
    Trial Court Judge: Judge Paula L. Skahan +

    The petitioner, Edward Dean, appeals the denial of his post-conviction petition, arguing
    +the post-conviction court erred in finding he received the effective assistance of counsel.
    +After our review of the record, briefs, and applicable law, we affirm the denial of the
    +petition.

    + +

    Shelby Court of Criminal Appeals +

    + Courtney Anderson v. State of Tennessee +
    W2023-00067-CCA-R3-PC +
    Authoring Judge: Judge J. Ross Dyer +
    Trial Court Judge: Judge Paula L. Skahan +

    This is a State appeal, filed by the State Attorney General and Reporter, from the entry of
    +an order granting the petitioner’s, Courtney Anderson’s, motion to reopen his postconviction
    +and amending/reducing his original sentence of 162 years, 11 months, and 29
    +days to a time served sentence of 25 years. The State appealed, arguing the trial court
    +lacked jurisdiction to hear the petitioner’s motion as it was barred by the one-year statute
    +of limitations and the petitioner failed to prove the statute should be tolled. Additionally,
    +the State submits that the trial court lacked jurisdiction to amend the petitioner’s sentence
    +under the post-conviction statute and that the trial court’s actions amount to an improper
    +commutation of the petitioner’s sentence. The petitioner contends that the State waived
    +any challenge to the statute of limitations by failing to raise the issue below and that his
    +claim meets the requirements of the statute and allows for the tolling of the statute, and
    +therefore, the trial court properly granted the relief requested. Upon our thorough review
    +of the applicable law and the briefs and arguments of both parties, we conclude that the
    +instant petition is barred by the one-year statute of limitations and that the petitioner failed
    +to establish and the trial court failed to find a proper basis for tolling the statute.
    +Accordingly, the trial court lacked jurisdiction to hear the petitioner’s motion and amend
    +the petitioner’s sentence. Therefore, we reverse the decision of the trial court, reinstate the
    +petitioner’s original sentence, and remand this matter for further proceedings consistent
    +with this opinion.

    + +

    Shelby Court of Criminal Appeals +

    + State of Tennessee v. Frederick Peat +
    W2022-01348-CCA-R3-CD +
    Authoring Judge: Judge J. Ross Dyer +
    Trial Court Judge: Judge Carolyn W. Blackett +

    A Shelby County jury convicted the defendant, Frederick Peat, of aggravated rape, for
    +which he received a sentence of twenty-five years in confinement. On appeal, the
    +defendant contends the evidence presented at trial was insufficient to support his
    +conviction. The defendant also argues the trial court erred in preventing him from
    +impeaching the victim with evidence of the victim’s prior convictions and in imposing an
    +excessive sentence. After reviewing the record and considering the applicable law, we
    +affirm the judgment of the trial court.

    + +

    Shelby Court of Criminal Appeals +

    + State of Tennessee v. Juan De Paz Mondragon +
    W2023-00068-CCA-R3-Cd +
    Authoring Judge: Judge J. Ross Dyer +
    Trial Court Judge: Judge James Jones, Jr. +

    The defendant, Juan De Paz Mondragon, was convicted by a Shelby County Criminal Court
    +jury of two counts of second-degree murder, attempted second-degree murder, and
    +employing a firearm during the commission of a dangerous felony, and the trial court
    +imposed an effective sentence of thirty-eight years’ incarceration. On appeal, the
    +defendant argues that the evidence is insufficient to support his convictions for seconddegree
    +murder and attempted second-degree murder, and the trial court abused its
    +discretion in imposing consecutive sentences. After review, we affirm the judgments of
    +the trial court. Furthermore, we remand to the trial court entry of corrected judgment forms
    +in counts one and two reflecting the merger of the defendant’s convictions for seconddegree
    +murder into a single conviction.

    + +

    Shelby Court of Criminal Appeals +

    + State of Tennessee v. Eric Dewayne Milton +
    W2023-00341-CCA-R3-CD +
    Authoring Judge: Judge J. Ross Dyer +
    Trial Court Judge: Judge Bruce Irwin Griffey +

    The defendant, Eric Dewayne Milton, appeals from the trial court’s revocation of his
    +community corrections sentence and order directing the defendant to serve the remainder
    +of his eight-year sentence in confinement. On appeal, the defendant contends the trial court
    +abused its discretion by failing to treat the defendant’s violation as a violation of probation
    +and impose a thirty-day sentence of confinement. After a thorough review of the record,
    +the applicable law, and the briefs of the parties, we affirm the judgment of the trial court.

    + +

    Carroll Court of Criminal Appeals +

    + State of Tennessee v. Chauncy Black +
    W2021-01435-CCA-R3-CD +
    Authoring Judge: Judge J. Ross Dyer +
    Trial Court Judge: Judge Glenn Ivy Wright +

    The defendant, Chauncy Black, was found guilty by a Shelby County jury of reckless
    +endangerment of Kaleb Wakefield and reckless endangerment with a deadly weapon of
    +Isabella Edwards for discharging a firearm into an occupied habitation. The trial court
    +imposed a six-and-a-half-year sentence. On appeal, the defendant contends the evidence
    +presented at trial was insufficient to support his conviction of reckless endangerment with
    +a deadly weapon of Isabella Edwards. The defendant also argues the trial court erred in
    +failing to instruct the jury as to a presumption of reasonableness in the use of deadly force
    +within his residence. Following our review, we affirm the defendant’s convictions.

    + +

    Shelby Court of Criminal Appeals +

    + State of Tennessee v. Michael Notaro +
    E2022-01642-CA-R3-CD +
    Authoring Judge: Judge Timothy L. Easter +
    Trial Court Judge: Judge William K. Rogers +

    Michael Notaro, Defendant, pled guilty to three counts of sexual exploitation of a minor
    +with an agreed-upon sentence of 10 years for each conviction, to be served consecutively
    +for a total effective sentence of 30 years at 100% in exchange for the State agreeing not to
    +seek further prosecution for any other offenses under investigation. Defendant did not seek
    +a direct appeal of his sentence. Instead, Defendant filed a motion pursuant to Rule 36.1 of
    +the Tennessee Rules of Criminal Procedure in which he argued that his sentence was
    +illegal. The trial court dismissed the motion for failure to state a colorable claim.
    +Defendant appeals. We affirm the judgment of the trial court.

    + +

    Court of Criminal Appeals +
    +
    + +
    + + + +
    +
    -
    - -
    - -
    Format: 08/30/2013
    +
    +
    -
    -
    -
    - -
    -
    -
    -
    -
    -
    - -
    -
    - + +
    +
    -
    + +
    +
    +
    +
    -
    - -
    -
    - -
    -
    +
    +
    +
    +
    -
    -
    - - -
    +
    +
    + +
    +
    +
    +
    -
    -
    - - -
    +
    +
    + +
    +
    +
    +
    -
    -
    -
    - +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    +
    + + +
    + + +
    +
    +
    + + + - - - - - + + + + + + + + + + +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/tennctapp_example.compare.json b/tests/examples/opinions/united_states/tennctapp_example.compare.json index b503859f1..e1367ccf0 100644 --- a/tests/examples/opinions/united_states/tennctapp_example.compare.json +++ b/tests/examples/opinions/united_states/tennctapp_example.compare.json @@ -1,184 +1,352 @@ [ { - "case_dates": "2013-08-29", - "case_names": "Timothy L. Wilson v. Hank E. Sledge, Jr.", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/wilsontimothylopn.pdf", + "case_dates": "2023-11-02", + "case_names": "Martin Walker v. Tennessee Board of Parole", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Opinion%20-%20Filed-%20M2023-00219-COA-R3-CV.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "W2012-00513-COA-R3-CV", - "judges": "Judge David R. Farmer", - "lower_courts": "Shelby County", - "lower_court_judges": "Judge John R. McCarroll, Jr.", - "summaries": "The trial court dismissed this action for professional malpractice based upon the running of the statute of limitations. We affirm.", - "case_name_shorts": "" + "docket_numbers": "M2023-00219-COA-R3-CV", + "judges": "Presiding Judge Frank G. Clement, Jr.", + "lower_courts": "Davidson", + "summaries": "This appeal arises from a Petition for Writ of Certiorari filed by Martin Walker (\"Petitioner\"), an inmate in the custody of the Tennessee Department of Correction (\"TDOC\"). Petitioner seeks review of the decision by the Tennessee Board of Parole (\"Board\") to deny him parole. He raises numerous challenges to the propriety of the Board's action and procedures. Finding no error, we affirm.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-29", - "case_names": "Sheila Dunlap v. Laurel Manor Health Care, Inc.", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/dunlapsopn.pdf", + "case_dates": "2023-11-02", + "case_names": "Julie Clark v. Wanda Givens", + "download_urls": "/sites/default/files/OpinionsPDFVersion/UNSIGNED-M2022-0341-COA-CLARK.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2012-02432-COA-R3-CV", - "judges": "Presiding Judge Charles D. Susano, Jr.", - "lower_courts": "Claiborne County", - "lower_court_judges": "Judge John D. McAfee", - "summaries": "Sheila Dunlap (\"plaintiff\") brought this action alleging liability for the wrongful death of her daughter (\"deceased\") on the part of the nursing home operated by Laurel Manor Health Care, Inc. (\"defendant\") where deceased was living. Although the allegations of the complaint were couched in terms of ordinary negligence, the trial court determined that the cause of action was one for medical malpractice. The court dismissed the complaint for failure to comply with Tenn. Code Ann. \u00a7 29-26-122, which requires the filing a certificate of good faith with a medical malpractice complaint. We hold that the plaintiff's claims that the nursing home failed to properly administer medication and a medical device prescribed by a physician, and failed to monitor the medical condition of the deceased at all times prior to her death, sound in medical malpractice. Consequently, we affirm the judgment of the trial court.", - "case_name_shorts": "" + "docket_numbers": "M2022-00341-COA-R3-CV", + "judges": "Judge Jeffrey Usman", + "lower_courts": "Dickson", + "summaries": "A homeowner, displeased with the work performed by a handyman, brought suit, seeking damages and relief under the Tennessee Consumer Protection Act. The handyman counterclaimed for the value of the oral contract for services, asserting the homeowner breached the contract by improperly terminating it. The circuit court denied relief to both parties, and the parties appeal. We conclude that the circuit court did not err in determining that there was no enforceable contract, precluding relief for the handyman. Likewise, the homeowner is not entitled to relief because the evidence does not preponderate against the circuit court's finding that there was no misrepresentation and that the handyman rendered services to earn certain prepaid amounts. The judgment of the circuit court is affirmed.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-29", - "case_names": "Raleigh Court Condominiums, Homeowners' Association, Inc. v. E. Doyle Johnson Construction Co.", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/raleighopn.pdf", + "case_dates": "2023-11-01", + "case_names": "In Re: Jaxson F.", + "download_urls": "/sites/default/files/OpinionsPDFVersion/In%20Re%20Jaxson%20F.%20COA%20Opinion%20%28Unsigned%29.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2012-02474-COA-R3-CV", - "judges": "Judge John W. McClarty", - "lower_courts": "Knox County", - "lower_court_judges": "Judge Harold Wimberly", - "summaries": "Homeowners' association filed suit against general contractor because of drainage issues alleging fraud, negligent misrepresentation, negligence, violations of the Tennessee Consumer Protection Act, and breach of the implied warranty of \"good and workmanlike\" construction. The trial court found in favor of homeowners' association. The general contractor appeals. We affirm.", - "case_name_shorts": "" + "docket_numbers": "E2023-00326-COA-R3-PT", + "judges": "Judge Frank G. Clement, Jr.", + "lower_courts": "", + "summaries": "The Tennessee Department of Children's Services (\"DCS\") filed a petition to terminate the mother's parental rights to her two children. Following a trial, the juvenile court found that six grounds for termination had been proven and that termination of the mother's parental rights was in the children's best interests. Based on these findings, the mother's parental rights were terminated. The mother appeals. Of the six grounds the juvenile court found had been proven, we affirm four of them but reverse two. We also affirm the determination that termination of the mother's parental rights is in the best interests of the children. Accordingly, we affirm the termination of her parental rights.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-31", + "case_names": "Steven Snyder v. Second Avenue Nashville Property, LLC", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Corrected%20Opinion%20-%20M2023-00498-COA-R3-CV.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2023-00498-COA-R3-CV", + "judges": "Judge Jeffrey Usman", + "lower_courts": "Davidson", + "summaries": "Neighbors sued to invalidate zoning ordinances that would allow two real estate development projects to be built at significantly taller heights than prior zoning regulations allowed. The trial court dismissed the complaint for failure to state a claim in part because it found that the passage of two zoning ordinances gave the developers vested property rights under the Tennessee Vested Property Rights Act of 2014 (VPRA). We conclude the trial court erred in its application of the VPRA, but we affirm the dismissal of the complaint for failure to state a claim.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-29", - "case_names": "Kelly Weed v. First Acceptance Insurance Company of Tennessee", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/weedkopn.pdf", + "case_dates": "2023-10-31", + "case_names": "State of Tennessee, City of Memphis, Tennessee v. Georgette Brooks", + "download_urls": "/sites/default/files/OpinionsPDFVersion/BrooksGeorgetteOPN_11.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2013-00150-COA-R3-CV", - "judges": "Presiding Judge Charles D. Susano, Jr.", - "lower_courts": "Sevier County", - "lower_court_judges": "Judge Richard R. Vance", - "summaries": "This appeal involves the interpretation of an exclusionary clause in an automobile casualty insurance policy. The policy excluded coverage for a loss resulting from an accident occurring while the vehicle was being driven by an unlisted driver who \"is a regular or frequent operator of\" an insured vehicle. Caleb Jenkins, who was not listed in the policy as a \"driver,\" was involved in an accident while driving the vehicle of Kelly Weed (\"Insured\"). Insured brought suit after First Acceptance Insurance Company of Tennessee, Inc., (\"Insurer\") denied her claim. Insurer moved for summary judgment, alleging that Jenkins was a regular and frequent operator of Insured's vehicle. Based on Insured's statement that Jenkins was a \"fairly regular\" driver of her vehicle who had been driving it once or twice a week for six months, the trial court denied coverage and granted Insurer summary judgment. We affirm the trial court's judgment that the policy excluded coverage because Insured's admission establishes that Jenkins was a \"regular or frequent operator\" of her vehicle.", - "case_name_shorts": "" + "docket_numbers": "W2018-02299-COA-R3-CV", + "judges": "Judge Arnold B. Goldin", + "lower_courts": "Shelby", + "summaries": "This is an appeal from a case arising in the Shelby County General Sessions Environmental Court. For the reasons stated herein, this Court lacks subject matter jurisdiction to review this appeal. Moreover, we are unable to transfer this appeal because it was not timely filed for the appropriate court that has subject matter jurisdiction to hear the appeal, and it is, therefore, dismissed.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-29", - "case_names": "James M. Bowley v. Richard Lane", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/bowleyjmopn.pdf", + "case_dates": "2023-10-31", + "case_names": "In Re: Edward C.", + "download_urls": "/sites/default/files/OpinionsPDFVersion/E2023-00210-COA-R3-PT%20-In%20Re%20Edward%20C..pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2012-00134-COA-R3-CV", + "docket_numbers": "E2023-00210-COA-R3-PT", "judges": "Judge D. Michael Swiney", - "lower_courts": "Monroe County", - "lower_court_judges": "Judge Lawrence H. Puckett", - "summaries": "James M. Bowley and Barbara A. Bowley (\"Plaintiffs\") sued Richard Lane, Alvin Butler, and Danny Nicholson (\"Defendants\") alleging defective construction of a log home built by Defendants for Plaintiffs. After trial, the Trial Court entered judgment upon the jury's verdict finding and holding, inter alia, that Defendants had breached the implied warranty of habitability, and that Plaintiffs had sustained $50,000 in damages as a result of this breach. Defendants appeal to this Court raising an issue regarding whether the Trial Court erred in approving the verdict and denying their motion for new trial or for remittitur. Plaintiffs also raise an issue alleging that the evidence does not support the verdict. We find and hold that material evidence supports the jury's verdict, and further find no error in the Trial Court's denial of Defendants' motion for new trial or for remittitur, and the Trial Court's denial of Plaintiffs' motion for new trial or for additur. We affirm.", - "case_name_shorts": "" + "lower_courts": "", + "summaries": "Trial Court Judge: Judge Jeffrey D. Rader", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-31", + "case_names": "In Re Madilyn B.", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2023-00035-COA-R3-PT_1.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2023-00035-COA-R3-PT", + "judges": "Presiding Judge J. Steven Stafford", + "lower_courts": "Robertson", + "summaries": "Father appeals the trial court's finding of abandonment by wanton disregard as a ground for termination of his parental rights, as well as its finding that termination was in the best interest of the child. We affirm the trial court's judgment in all respects.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-31", + "case_names": "In Re Cartier H.", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2022-01576-COA-R3-PT_0.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2022-01576-COA-R3-PT", + "judges": "Presiding Judge J. Steven Stafford", + "lower_courts": "Davidson", + "summaries": "Mother appeals the termination of her parental rights on four grounds. The Tennessee Department of Children's Services does not defend two of the four grounds, so we reverse as to those grounds. We affirm the ground that Mother is unable to parent the children due to her present mental condition. Because the trial court's order does not contain sufficient findings of fact, we vacate the trial court's findings that the mother failed to manifest a willingness and ability to parent and that termination is in the children's best interests.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-31", + "case_names": "Cory Fulghum v. Stan Notestine", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2022-00420-COA-R3-CV.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2022-00420-COA-R3-CV", + "judges": "Judge Jeffrey Usman", + "lower_courts": "Rutherford", + "summaries": "The Plaintiff brought a premises liability claim after falling off his own ladder while at the Defendant's residence. The Defendant moved for summary judgment, arguing he had no duty to warn and could avoid liability under principles of comparative fault. The Plaintiff countered that the Defendant was actually his employer and that the Defendant's decision not to provide workers' compensation insurance prevented the Defendant from being able to raise a comparative fault defense. Furthermore, the Plaintiff argued that the Defendant did have a duty to warn. The trial court granted the Defendant summary judgment finding no duty to warn and that even if a duty existed that Plaintiff's claim failed as a matter of law based upon comparative fault principles. The Plaintiff appealed to this Court. We affirm.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-30", + "case_names": "Leonard Blackstock, Jr. v. State of Tennessee", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Memorandum%20Opinion%20-%20M2023-00064-COA-R3-CV.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2023-00064-COA-R3-CV", + "judges": "Judge W. Neal McBrayer", + "lower_courts": "", + "summaries": "The Tennessee Claims Commission dismissed appellant's complaint for lack of subject matter jurisdiction. Discerning no error, we affirm.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-27", + "case_names": "VFL Properties, LLC v. John Kenneth Greene", + "download_urls": "/sites/default/files/OpinionsPDFVersion/VFL%20Properties%20v.%20Green%20COA%20Opinion%20%28Unsigned%29_0.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "E2022-00261-COA-R3-CV", + "judges": "Judge John McClarty", + "lower_courts": "Knox", + "summaries": "This lawsuit arises from a real property/boundary dispute between the plaintiff and the defendants. The trial court found that a prior circuit court condemnation judgment vesting title to the Knoxville Community Development Corporation \"bars the claim of [the plaintiff] as an impermissible collateral attack upon the condemnation judgment.\" Thus, the trial court ruled that the condemnation judgment barred the plaintiff's adverse possession claim against the defendants. The plaintiff appeals. We affirm.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-27", + "case_names": "Thomas Joseph Nedumthottathil v. Siby John Thomas", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Memorandum%20Opinion%20-%20M2020-00473-COA-R3-CV.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2020-00473-COA-R3-CV", + "judges": "Judge W. Neal McBrayer", + "lower_courts": "Rutherford", + "summaries": "In this divorce action, the court limited Wife's proof at trial as a sanction for her failure to respond to pre-trial discovery. After the trial, the court granted the parties an absolute divorce, equitably divided the marital estate, adopted a permanent parenting plan for their minor children, and declined to award Wife spousal support. Wife argues that the court erred in limiting her proof at trial, dividing the marital estate, and denying her request for spousal support. Discerning no abuse of discretion in these decisions, we affirm.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-27", + "case_names": "Joshua Aaron Bradley v. Jennifer Racheal Bradley (Odom)", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2022-00259-COA-R3-CV.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2022-00259-COA-R3-CV", + "judges": "Judge W. Neal McBrayer", + "lower_courts": "Hickman", + "summaries": "A father filed a petition to modify the existing parenting plan. The trial court found a material change in circumstances had occurred and it was in the child's best interest to award custody to the father. Because the evidence does not preponderate against either finding, we affirm.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-27", + "case_names": "Hooper Randall Brock v. Jonathan Eick", + "download_urls": "/sites/default/files/OpinionsPDFVersion/E2023-00021.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "E2023-00021-COA-R3-CV", + "judges": "Judge Thomas R. Frierson, II", + "lower_courts": "", + "summaries": "This appeal came on to be heard upon the record from the Circuit Court for Meigs County, arguments of counsel, and briefs filed on behalf of the respective parties. Upon consideration thereof, this Court is of the opinion that there is no reversible error in the trial court's judgment.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-27", + "case_names": "American Business Supply, Inc. v. Tennessee State Board of Equalization", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2022-01411-COA-R3-CV.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2022-01411-COA-R3-CV", + "judges": "Judge Kenny Armstrong", + "lower_courts": "Davidson", + "summaries": "This case concerns the procedure used by the Tennessee State Board of Equalization when it determined the 2018 appraisal ratio for Shelby County. In 2017, Shelby County real property was reappraised. Accordingly, the Board of Equalization set the County's 2017 appraisal ratio at 1.000. In 2018, the Board of Equalization used the 2017 reappraisal to set the Shelby County 2018 appraisal ratio at 1.000. Appellants\u2014owners of commercial tangible personal property in Shelby County\u2014challenged the Board's methodology as violative of Tennessee Code Annotated sections 67-5-1605 and 67-5-1606 and unsupported by substantial and material evidence. Following review under the Uniform Administrative Procedures Act, the trial court determined that: (1) the Board did not violate Tennessee Code Annotated sections 67-5-1605 and 67-5-1606 when it set the County's appraisal ratio at 1.000 in 2018; (2) the Board's decision was supported by substantial and material evidence; and (3) the Board's decision was not arbitrary or capricious. Discerning no error, we affirm.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-26", + "case_names": "Jamie M. Lazaroff (Coons) v. David A. Lazaroff, Sr.", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2022-01004-COA-R3-CV.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "M2022-01004-COA-R3-CV", + "judges": "Judge John W. McClarty", + "lower_courts": "Rutherford", + "summaries": "This post-divorce appeal concerns the trial court's finding of contempt against the father for his failure to pay child support and the court's calculation of his support arrearage owed. We affirm.", + "case_name_shorts": "", + "per_curiam": false + }, + { + "case_dates": "2023-10-26", + "case_names": "James Miguel Vilas v. Timothy Love", + "download_urls": "/sites/default/files/OpinionsPDFVersion/VilasJamesMiguelOPN.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "W2022-01071-COA-R3-CV", + "judges": "Presiding Judge J. Steven Stafford", + "lower_courts": "Madison", + "summaries": "In this health care liability action, the trial court granted summary judgment to the appellee surgeon based on the expiration of the statute of limitations and the appellant patient's failure to show evidence of causation and damages. On appeal, we conclude that (1) there is a genuine dispute of material fact as to when the appellant's cause of action accrued; (2) the trial court did not specifically rule on the propriety of appellant's pre-suit notice; and (3) there are genuine disputes of material facts as to the causation and damages elements of the appellant's claim. Accordingly, we reverse in part, vacate in part, and remand for further proceedings.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-28", - "case_names": "Wilma Ann Vance v. Donah Howard Arnold", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/vancewilmaannopn.pdf", + "case_dates": "2023-10-25", + "case_names": "Robin M. McNabb v. Gregory Harrison", + "download_urls": "/sites/default/files/OpinionsPDFVersion/McNabb%20v.%20Harrison%20COA%20Opinion%20%28electronic%20signature%29_0.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "E2012-02252-COA-R3-CV", - "judges": "Judge David R. Farmer", - "lower_courts": "Campbell County", - "lower_court_judges": "Judge John D. McAfee", - "summaries": "The trial court dismissed Husband's post-judgment motion based on its conclusion that it lacked subject matter jurisdiction. We reverse.", - "case_name_shorts": "" + "docket_numbers": "E2022-01577-COA-R3-CV", + "judges": "Judge Thomas R. Frierson, II", + "lower_courts": "Loudon", + "summaries": "This case involves an election contest filed by the plaintiff based on the defendant's residency eligibility for the office of Lenoir City Municipal Court Judge. Following a hearing, the trial court determined that the defendant had complied with article VI, section 4 of the Tennessee Constitution because the clause required, inter alia, that he be a resident within the judicial district, not necessarily within the city limits, to preside over the municipal court, which has concurrent jurisdiction with a general sessions court. The plaintiff has appealed. Upon review, we determine that the language of article VI, section 4 of the Tennessee Constitution requiring a judge elected to an inferior court to have been a resident of the \"district or circuit\" to which he or she is assigned means, under these circumstances, that the Lenoir City Municipal Judge must have been a resident of Loudon County for at least one year prior to the judge's election because the Lenoir City Municipal Court has concurrent jurisdiction with the Loudon County General Sessions Court. Accordingly, inasmuch as the defendant had been a resident of Loudon County for at least one year prior to the election, we affirm the trial court's dismissal of the plaintiff's election contest. However, we modify the trial court's judgment to state that the defendant complied with the residency requirement at issue because he had been a resident of Loudon County for at least one year rather than because he had been a resident of the Ninth Judicial District for the prescribed time period.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-28", - "case_names": "Sandeep Gadhok v. Zameer Merchant", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/gadhoksandeepopn.pdf", + "case_dates": "2023-10-25", + "case_names": "Leonard Blackstock v. State of Tennessee", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Memorandum%20Opinion%20-%20M2023-00066-COA-R3-CV.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "W2012-01687-COA-R3-CV", - "judges": "Judge David R. Farmer", - "lower_courts": "Shelby County", - "lower_court_judges": "Judge Jerry Stokes", - "summaries": "The trial court granted Defendant's motion to dismiss for lack of prosecution. We affirm.", - "case_name_shorts": "" + "docket_numbers": "M2023-00066-COA-R3-CV", + "judges": "Judge Arnold B. Goldin", + "lower_courts": "", + "summaries": "This appeal concerns an order of dismissal entered by the Tennessee Claims Commission. Though Appellant raises a number of issues on appeal, this Court is unable to review any of the issues due to Appellant's noncompliance with applicable appellate briefing requirements. Because all of Appellant's issues on appeal have been waived due to his failure to comply with the appellate briefing requirements, we affirm the judgment of the Tennessee Claims Commission.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-28", - "case_names": "Rhonda Sue Watkins v. Kenneth Danny Watkins", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/watkinsrhondasue_opn.pdf", + "case_dates": "2023-10-25", + "case_names": "In Re Estate of Gregory B. Johnson", + "download_urls": "/sites/default/files/OpinionsPDFVersion/EstateofGregoryB.JohnsonOPN.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M2012-02378-COA-R3-CV", - "judges": "Judge David R. Farmer", - "lower_courts": "Williamson County", - "lower_court_judges": "Judge Timothy L. Easter", - "summaries": "The trial court granted Father's petition to modify child custody and child support, and denied Mother's petition to increase alimony. Mother appeals. We vacate the trial court's judgment with respect to Mother's petition to modify alimony, and remand for findings of fact and further proceedings, if necessary. The remainder of the judgment is affirmed.", - "case_name_shorts": "" + "docket_numbers": "W2023-00432-COA-R3-CV", + "judges": "", + "lower_courts": "Shelby", + "summaries": "Appellants, Amelia Vaughn and Gemelia Johnson appeal the March 3, 2023 order of the Shelby County Probate Court. Because the order appealed is not a final judgment, this Court lacks jurisdiction to consider the appeal. Tenn. R. App. P. 3(a). The appeal is dismissed.", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2013-08-28", - "case_names": "Patsy Freeman, Personal Representative & Administratrix of the Estate of John R. Freeman v. CSX Transportation, Inc.", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/freemanp._opn.pdf", + "case_dates": "2023-10-25", + "case_names": "Edward Ronny Arnold v. Moore & Smith Tree Care, LLC", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Majority%20Opinion%20-%20M2023-00169-COA-R3-CV.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M2012-01335-COA-R3-CV", - "judges": "Judge Andy D. Bennett", - "lower_courts": "Bedford County", - "lower_court_judges": "Judge Franklin L. Russell", - "summaries": "After a lengthy trial, the trial court determined that the decedent was more than 50% at fault for the collision that resulted in his death. The evidence does not preponderate against the trial court's findings and we therefore affirm.", - "case_name_shorts": "" + "docket_numbers": "M2023-00169-COA-R3-CV", + "judges": "Judge Carma Dennis McGee", + "lower_courts": "Davidson", + "summaries": "This appeal involves a contract for the removal of a tree. The trial court granted a motion to dismiss filed by the defendant tree company. We affirm and remand for further proceedings.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-28", - "case_names": "Fred Barnes v. Herbert Hamm", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/barnesfopn.pdf", + "case_dates": "2023-10-25", + "case_names": "Benjamin McCurry v. Agness McCurry", + "download_urls": "/sites/default/files/OpinionsPDFVersion/E2023-01071.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "W2011-02288-COA-R3-CV", - "judges": "Judge Holly M. Kirby", - "lower_courts": "Shelby County", - "lower_court_judges": "Judge Robert L. Childers", - "summaries": "This appeal concerns the circuit court's dismissal of an appeal from the general sessions court. We dismiss the appeal for failure to comply with Rule 29 of the Tennessee Rules of Appellate Procedure.", - "case_name_shorts": "" + "docket_numbers": "E2023-01071-COA-R3-CV", + "judges": "", + "lower_courts": "", + "summaries": "Because the circuit court orders from which the appellant has sought to appeal do not constitute a final appealable judgment, this Court lacks jurisdiction to consider this appeal.", + "case_name_shorts": "", + "per_curiam": true }, { - "case_dates": "2013-08-28", - "case_names": "Aubrey Owens & The Estate of Louis Gernt v. Aleeta Tipton Evans, Timothy L. Goad", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/owensa_opn.pdf", + "case_dates": "2023-10-24", + "case_names": "Nathan A. Wallace v. Blake Ballin", + "download_urls": "/sites/default/files/OpinionsPDFVersion/WallaceNathanAOPN.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M2013-00239-COA-R3-CV", - "judges": "Presiding Judge Patricia J. Cottrell", - "lower_courts": "Fentress County", - "lower_court_judges": "Judge Jon Kerry Blackwood", - "summaries": "This is an appeal from a judgment entered against one of four defendants. Because the judgment appealed does not resolve all the claims between all the parties, we dismiss the appeal for lack of a final judgment.", - "case_name_shorts": "" + "docket_numbers": "W2023-01410-COA-T10B-CV", + "judges": "Presiding Judge, Middle Section, Frank G. Clement, Jr.", + "lower_courts": "Tipton", + "summaries": "This is an accelerated interlocutory appeal as of right pursuant to Tennessee Supreme Court Rule 10B \u00a7 2.02 from the trial court's denial of a motion for recusal. This appeal arises from a civil action in which the plaintiff has brought claims of fraud and civil conspiracy against his former counsel in a criminal case that resulted in a conviction and his counsel in a pending post-conviction case. While this civil action was pending, the trial court allowed the attorneys who were representing the plaintiff in the post-conviction case to withdraw. Shortly thereafter, the plaintiff filed a recusal motion, contending that the trial judge should be recused because he showed bias in favor of the plaintiff's post-conviction attorneys when he granted their motions to withdraw without a hearing, during which the plaintiff wished to share his grievances about the attorneys. The trial court denied the plaintiff's recusal motion, and this Rule 10B appeal followed. We have concluded that neither the legal grounds nor the evidence that the plaintiff relies upon in his affidavit in support of the recusal motion are sufficient to prompt a reasonable, disinterested person to reasonably question the judge's impartiality. Accordingly, the judgment of the trial court denying the motion for recusal is affirmed.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-28", - "case_names": "Amanda Marie Sykes v. Joshua Neal Sykes - Concur/Dissent", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/sykes_a._m.__cottrell_separate_opn.pdf", + "case_dates": "2023-10-24", + "case_names": "Donna Booker v. James Michael Booker", + "download_urls": "/sites/default/files/OpinionsPDFVersion/Booker%20v.%20Booker%20COA%20Opinion%20%28Unsigned%29.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M2012-01146-COA-R3-CV", - "judges": "Judge Patricia J. Cottrell", - "lower_courts": "Maury County", - "lower_court_judges": "Chancellor Stella L. Hargrove", - "summaries": "This appeal involves a judgment by the trial court that dismissed two motions filed by Mother. The first was the Motion to Alter or Amend the trial court's decision denying the Petition to Set Support. That petition was denied on the basis that no significant variance existed. The second was Mother's motion for relief pursuant to Tenn. R. Civ. P. 60.02. That motion was directed to the original decree of divorce and, more specifically, to the original child support established in the parenting plan.", - "case_name_shorts": "" + "docket_numbers": "E2022-01228-COA-R3-CV", + "judges": "Judge Kristi M. Davis", + "lower_courts": "Hamilton", + "summaries": "This is an appeal from a divorce in the Chancery Court for Hamilton County (the \"trial court\"). Donna Booker (\"Wife\") and Mike Booker (\"Husband\") married for the first time in 1993 and divorced in 1998. They remarried shortly thereafter in February of 1999. The day of their second wedding, Husband and Wife executed a prenuptial agreement addressing Husband's interest in his family's steel erection business. Wife filed the current divorce action in the trial court in February of 2020, and a trial was held May 3 and 4, 2022, and July 6, 2022. The trial court ordered the parties divorced, divided the marital estate, and awarded Wife alimony in futuro. Finding that the prenuptial agreement was valid, the trial court determined that Husband's interest in his family business was separate property. Wife appeals. Following thorough review, we affirm in part, reverse in part, vacate in part, and remand the case for further proceedings.", + "case_name_shorts": "", + "per_curiam": false }, { - "case_dates": "2013-08-28", - "case_names": "Amanda Marie Sykes v. Joshua Neal Sykes", - "download_urls": "http://www.tsc.state.tn.us/sites/default/files/sykesa._m.__opn.pdf", + "case_dates": "2023-10-23", + "case_names": "John H. Packard, IV v. Jonathan R. Bentley", + "download_urls": "/sites/default/files/OpinionsPDFVersion/E2022-982.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "M2012-01146-COA-R3-CV", - "judges": "Judge Richard H. Dinkins", - "lower_courts": "Maury County", - "lower_court_judges": "Chancellor Stella L. Hargrove", - "summaries": "In this divorce proceeding, Mother and Father entered into a Marital Dissolution Agreement and Permanent Parenting Plan, which were incorporated into the final decree of divorce the parties shared equal parenting time with their two children and neither party was obligated to pay child support. Mother subsequently filed a petition to set support, as well as a motion for relief from the final decree, both of which sought to have the court set support in accordance with the child support guidelines. The court denied the petition and the motion on the grounds that the parties had agreed in the parenting plan that child support would not be paid and that a significant variance did not exist. Finding that relief to Mother is appropriate under the circumstances, we reverse the judgment and remand the case for further proceedings.", - "case_name_shorts": "" + "docket_numbers": "E2022-00982-COA-R3-CV", + "judges": "Judge Kristi M. Davis", + "lower_courts": "", + "summaries": "The plaintiff, John H. Packard, IV (\"Plaintiff\") was struck by a vehicle driven by Jonathan R. Bentley while Plaintiff attempted to walk across a roadway in Gatlinburg, Tennessee. Plaintiff brought a suit arising in negligence against a number of parties, including the City of Gatlinburg (\"City\"). As to City, Plaintiff alleged that it created an unreasonably dangerous risk of harm to pedestrians attempting to use the crosswalk because it failed to inspect and maintain LED lights it had previously installed on a nearby crosswalk sign. The Circuit Court for Sevier County (\"trial court\") granted summary judgment in favor of City, finding that City negated an essential element of Plaintiff's claim, that City was entitled to immunity pursuant to the Tennessee Governmental Tort Liability Act (\"GTLA\"), Tennessee Code Annotated section 29-20-101 et seq., and that City was also immune pursuant to the public duty doctrine. Finding no error, we affirm the judgment of the trial court.", + "case_name_shorts": "", + "per_curiam": false } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/tennctapp_example.html b/tests/examples/opinions/united_states/tennctapp_example.html index 065e2b41c..f4455c19f 100644 --- a/tests/examples/opinions/united_states/tennctapp_example.html +++ b/tests/examples/opinions/united_states/tennctapp_example.html @@ -1,519 +1,1828 @@ - - - - - - - Court of Appeals Opinions | Tennessee Administrative Office of the Courts - - - - - - - - - - - - - - - - - - - -
    - -
    - -
    -
    -

    - Tennessee Administrative Office of the Courts

    - -
    - - - + + + + + + + + + + + -
    -
    + + + + diff --git a/tests/examples/opinions/united_states/visuper_p_example.compare.json b/tests/examples/opinions/united_states/visuper_p_example.compare.json new file mode 100644 index 000000000..8972b3ab2 --- /dev/null +++ b/tests/examples/opinions/united_states/visuper_p_example.compare.json @@ -0,0 +1,122 @@ +[ + { + "case_dates": "2023-11-15", + "case_names": "Joycelyn Williams v. World Fresh Market, LLC d/b/a Pueblo", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/ST-2019-CV-00488-Documents 70P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "ST-2019-CV-488", + "judges": "Thomas-Jacobs, Carol", + "citations": "2023 VI Super 70P", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-02", + "case_names": "Jody Olson, Individually and on Behalf of all Others Similarly Situated v. VI Water and Power Authority and Lawrence J. Kupfer and Government of the Virgin islands", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/ST-2019-CV-00602-Documents 64P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "ST-2019-CV-602", + "judges": "Willocks, Harold W. L.", + "citations": "2023 VI Super 64P", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-02", + "case_names": "In Re: Limetree Bay Commercial Litigation Cases", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/SX-2022-MC-00037-Documents 66P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SX-2022-MC-37", + "judges": "Willocks, Harold W. L.", + "citations": "2023 VI Super 66P", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-02", + "case_names": "In Re: Limetree Bay Commercial Litigation Cases", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/SX-2022-MC-00037-Documents 65P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SX-2022-MC-37", + "judges": "Willocks, Harold W. L.", + "citations": "2023 VI Super 65P", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-18", + "case_names": "Jody Olson, Individually and on Behalf of all Others Similarly Situated v. VI Water and Power Authority and Lawrence J. Kupper and GVI", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/ST-2019-CV-00602-Documents 64.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "ST-2019-CV-602", + "judges": "Willocks, Harold W. L.", + "citations": "2023 VI Super 61P", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-11", + "case_names": "Go Fast Charters, LLC. v. Texaco Caribbean, Inc.", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/ST-2010-CV-00672-Documents 58P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "ST-2010-CV-672", + "judges": "Francois, Denise M.", + "citations": "2023 VI Super 58P", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-18", + "case_names": "People of the Virgin Islands v. Juan Aponte, Jr.", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/SX-2022-CR-00096-Documents.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SX-2022-CR-96", + "judges": "Willocks, Harold W. L.", + "citations": "2023 VI Super 51P", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-07", + "case_names": "Wanda Vialet as Personal Representative of the Estate of Pauline Figueroa v. Virgin Islands Government Hospital and Health Facilities Corporation and Dr. Raymond Cintron, M.D.", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/SX-2021-CV-00768-Documents 45P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SX-2021-CV-768", + "judges": "Willocks, Harold W. L.", + "citations": "2023 VI Super 45P", + "case_name_shorts": "" + }, + { + "case_dates": "2023-07-07", + "case_names": "Kenrick Maynard v. Government of the Virgin Islands, Governor Albert Bryan is his official capacity, Ariel M. Smith, Attorney General, Bureau of Corrections Director Wynnie Testamark", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/memorandum opinion and order kenrick maynard 36P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SX-2018-MC-66", + "judges": "Brady, Douglas A.", + "citations": "2023 VI Super 36P", + "case_name_shorts": "" + }, + { + "case_dates": "2023-06-16", + "case_names": "Shanika K. Lewis v. Conagra Brands, Inc. f/k/a and Successor in Interest to Conagra Foods/ Shanika K. Lewis v. DS Containers, Inc. and PSMT, LLC d/b/a Pricesmart", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/ST-2019-CV-150-Documents 30P.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "ST-2019-CV-150 & ST-2020-CV-170", + "judges": "Francois, Denise M.", + "citations": "2023 VI Super 30P", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/visuper_p_example.html b/tests/examples/opinions/united_states/visuper_p_example.html new file mode 100644 index 000000000..258d8e3c0 --- /dev/null +++ b/tests/examples/opinions/united_states/visuper_p_example.html @@ -0,0 +1,2083 @@ + + + + Published Opinions - Superior Court of the Virgin Islands + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + +
    +
    + +
    +
    +
    + + +
    Superior Court of the Virgin Islands
    +
    + +
    +
    + +
    +
    +
    + + +
    +
    +
    + + + + + + + + + +
    +
    +
    + + +
    + +
    +
    +
    +
    +
    +
    + +
    +
    + + +
    +
    +
    +
    +
    +
    +
    +
    + + +
    +
    + +
    + +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + +
    +
    + + + + +
    + +
    + +
    +
    +
    +
    +
    Texto original
    +
    +
    +
    +
    +
    Califica esta traducción
    +
    Tus comentarios nos ayudarán a mejorar Google Traductor
    +
    +
    + + +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    + + + +
    +
    + + diff --git a/tests/examples/opinions/united_states/visuper_u_example.compare.json b/tests/examples/opinions/united_states/visuper_u_example.compare.json new file mode 100644 index 000000000..45743eb2f --- /dev/null +++ b/tests/examples/opinions/united_states/visuper_u_example.compare.json @@ -0,0 +1,122 @@ +[ + { + "case_dates": "2023-11-22", + "case_names": "Government of the Virgin Islands Department of Education v. American Federation of Teachers, Local 1826, and All those Unnamed Members of the Bargaining Unit Who are Participating in Unlawful Job Actions", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/SX-2023-CV-00341-Documents 73U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SX-2023-CV-341", + "judges": "Brady, Douglas A.", + "citations": "2023 VI Super 73U", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-16", + "case_names": "Peter Philip v. Toyota Motor North America, Inc., Toyota Motor Engineering and Manufacturing North America, Inc., Toyota Motor Sales, U.S.A., Inc., Toyota Motor Corporation, Toyota De Puerto Rico Corp., and Lambert-Hilton, Inc. d/b/a Toyota of St. Thomas", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/ST-2014-CV-00543-Documents 72U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "ST-2014-CV-543", + "judges": "Thomas-Jacobs, Carol", + "citations": "2023 VI Super 72U", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-16", + "case_names": "People of the Virgin Islands v. LaQuan Esson England", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/ST-2023-CR-00156-Documents 69U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "ST-2023-CR-156", + "judges": "Tejo, Sigrid M.", + "citations": "2023 VI Super 69U", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-07", + "case_names": "People of the Virgin Islands v. Angel Alejandro Guerrero", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/ST-2022-CR-00268-Documents 67U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "ST-2022-CR-268", + "judges": "Mackay, Kathleen Y.", + "citations": "2023 VI Super 67U", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-31", + "case_names": "Government of the Virgin Islands by and through Justa Encarnacion, Ariel Smith and The VI Hospitals and Health Facilities Corporation v. Health Quest, LLC d/b/a Caribbean Kidney Center and Walter Gardiner, MD.", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/2023-10-31 Memorandum Opinion and Order (signed) 63U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SX-2023-CV-354", + "judges": "Ross-Edwards, Yvette", + "citations": "2023 VI Super 63U", + "case_name_shorts": "" + }, + { + "case_dates": "2023-10-30", + "case_names": "People of the Virgin Islands v. La-Shorn Samuel", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/ST-2022-CR-00032-Documents 62U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "ST-2022-CR-32", + "judges": "Mackay, Kathleen Y.", + "citations": "2023 VI Super 62U", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-20", + "case_names": "Randy Burke v. Ariel M. Smith, Esquire, Attorney General of the Virgin Islands; Wynnie Testamark, Director, VI Bureau of Corrections; Dana Grant, Acting Warden, John a. Bell, Correctional Facility", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/SX-2013-CV-00377-Documents 57U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SX-2013-CV-377", + "judges": "Brady, Douglas A.", + "citations": "2023 VI Super 57U", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-25", + "case_names": "United Corporation v. Wadda Charriez - Counterclaim", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/SX-2013-CV-00152-Documents 55U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SX-2013-CV-152", + "judges": "Meade, Jomo", + "citations": "2023 VI Super 55U", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-23", + "case_names": "People of the Virgin Islands v. Jayson Pryce", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/SX-2020-CR-00193-Documents 52U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SX-2020-CR-193", + "judges": "Meade, Jomo", + "citations": "2023 VI Super 52U", + "case_name_shorts": "" + }, + { + "case_dates": "2023-08-23", + "case_names": "Grapetree Shores, Inc. v. Benton James", + "download_urls": "https://superior.vicourts.org/UserFiles/Servers/Server_12810747/File/Opinions/2023/SX-2004-CV-00713-Documents 53U.pdf", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "SX-2004-CV-713", + "judges": "Meade, Jomo", + "citations": "2023 VI Super 53U", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/visuper_u_example.html b/tests/examples/opinions/united_states/visuper_u_example.html new file mode 100644 index 000000000..d967936fd --- /dev/null +++ b/tests/examples/opinions/united_states/visuper_u_example.html @@ -0,0 +1,2072 @@ + + + + Unpublished Opinions - Superior Court of the Virgin Islands + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + +
    +
    + +
    +
    +
    + + +
    Superior Court of the Virgin Islands
    +
    + +
    +
    + +
    +
    +
    + + +
    +
    +
    + + + + + + + + + +
    +
    +
    + + +
    + +
    +
    +
    +
    +
    +
    + +
    +
    + + +
    +
    +
    +
    Start Date:
    +
    End Date:
    +
    +
    +
    + Judge: + +
    +
    + +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + +
    +
    + + + + +
    + +
    + +
    +
    +
    +
    +
    Texto original
    +
    +
    +
    +
    +
    Califica esta traducción
    +
    Tus comentarios nos ayudarán a mejorar Google Traductor
    +
    +
    + + +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    + + + +
    +
    + + diff --git a/tests/examples/opinions/united_states/vt_criminal_example.compare.json b/tests/examples/opinions/united_states/vt_criminal_example.compare.json new file mode 100644 index 000000000..f8e77f415 --- /dev/null +++ b/tests/examples/opinions/united_states/vt_criminal_example.compare.json @@ -0,0 +1,252 @@ +[ + { + "case_dates": "2022-04-15", + "case_names": "State v. Christopher Main", + "download_urls": "/media/14640", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-AP-056", + "case_name_shorts": "" + }, + { + "case_dates": "2022-03-31", + "case_names": "State v. Raymond Regimbald", + "download_urls": "/media/14485", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-AP-076", + "case_name_shorts": "" + }, + { + "case_dates": "2020-11-02", + "case_names": "State v. David Downing", + "download_urls": "/media/12449", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2020-275", + "case_name_shorts": "" + }, + { + "case_dates": "2020-06-05", + "case_names": "State v. James C. Lohr", + "download_urls": "/media/12110", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2020-118", + "case_name_shorts": "" + }, + { + "case_dates": "2020-05-15", + "case_names": "State v. Matthew J. Redmond", + "download_urls": "/media/12067", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2018-226", + "case_name_shorts": "" + }, + { + "case_dates": "2020-03-10", + "case_names": "State v. Angela Auclair", + "download_urls": "/media/12018", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2020-054", + "case_name_shorts": "" + }, + { + "case_dates": "2020-02-07", + "case_names": "State v. James Bartshe", + "download_urls": "/media/11862", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-161", + "case_name_shorts": "" + }, + { + "case_dates": "2020-02-07", + "case_names": "State v. Albert Windoloski", + "download_urls": "/media/11861", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2019-173", + "case_name_shorts": "" + }, + { + "case_dates": "2019-12-02", + "case_names": "State v. Joshua J. Lowe", + "download_urls": "/media/11723", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2018-357", + "case_name_shorts": "" + }, + { + "case_dates": "2019-10-25", + "case_names": "State v. Henry Nash", + "download_urls": "/media/11578", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2018-286", + "case_name_shorts": "" + }, + { + "case_dates": "2019-04-05", + "case_names": "State v. Raymond Ritchie", + "download_urls": "/media/10896", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2018-166", + "case_name_shorts": "" + }, + { + "case_dates": "2018-06-15", + "case_names": "State v. Edward Carrasquillo", + "download_urls": "/media/9906", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2017-401", + "case_name_shorts": "" + }, + { + "case_dates": "2017-08-18", + "case_names": "State v. Kimberly Love", + "download_urls": "/media/8861", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2016-192", + "case_name_shorts": "" + }, + { + "case_dates": "2017-02-09", + "case_names": "State v. George A. Mannoia", + "download_urls": "/media/8311", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2016-116", + "case_name_shorts": "" + }, + { + "case_dates": "2017-01-01", + "case_names": "State v. Matthew L. Fidler", + "download_urls": "/media/7290", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "eo16-423.bail", + "case_name_shorts": "" + }, + { + "case_dates": "2016-12-01", + "case_names": "State v. Sarah M. Rabtoy", + "download_urls": "/media/7419", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "eo16-403.bail", + "case_name_shorts": "" + }, + { + "case_dates": "2016-12-01", + "case_names": "State v. Russell Goodell", + "download_urls": "/media/7415", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "eo16-041", + "case_name_shorts": "" + }, + { + "case_dates": "2016-12-01", + "case_names": "State v. George Woods, Jr.", + "download_urls": "/media/7142", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "eo16-333.bail", + "case_name_shorts": "" + }, + { + "case_dates": "2016-12-01", + "case_names": "State v. Brian Kendall", + "download_urls": "/media/6988", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "eo16-179", + "case_name_shorts": "" + }, + { + "case_dates": "2016-11-01", + "case_names": "State v. Tyler James Raymond", + "download_urls": "/media/7484", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "eo16-187", + "case_name_shorts": "" + }, + { + "case_dates": "2016-10-01", + "case_names": "State v. Jeremy D. Ward", + "download_urls": "/media/7194", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "eo16-048", + "case_name_shorts": "" + }, + { + "case_dates": "2016-09-01", + "case_names": "State v. Matthew Pape", + "download_urls": "/media/7293", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "eo16-313.bail", + "case_name_shorts": "" + }, + { + "case_dates": "2016-09-01", + "case_names": "State v. Cyrus M. Gould", + "download_urls": "/media/7054", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "eo16-304.bail", + "case_name_shorts": "" + }, + { + "case_dates": "2016-09-01", + "case_names": "State v. Brenda Wright", + "download_urls": "/media/6986", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "eo15-427", + "case_name_shorts": "" + }, + { + "case_dates": "2016-09-01", + "case_names": "State v. Ashley Nutbrown-Covey", + "download_urls": "/media/6967", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "eo15-378", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/vt_criminal_example.html b/tests/examples/opinions/united_states/vt_criminal_example.html new file mode 100644 index 000000000..8abd3c141 --- /dev/null +++ b/tests/examples/opinions/united_states/vt_criminal_example.html @@ -0,0 +1,1142 @@ + + + + + + + + + + Opinions, Decisions and Order Library | Vermont Judiciary + + + + + + + + + + + icon-exit-link + + + + + + + icon-facebook + + + + + + Search Icon + + + + + + + +
    + + Skip to main content + +
    + + +
    + +
    +
    + +
    + + +
    +

    Except as noted below, all Vermont state courthouses are open for normal business hours:

    + +

    The Washington Civil/Probate Court hearings will be remote only pending further notice. The Washington Civil/Probate Courthouse in Montpelier remains closed but civil and probate paper filings can be brought to the Washington Criminal/Family Courthouse in Barre for processing. Electronic filings continue to be processed electronically.

    + +

    The Vermont Supreme Court Building in Montpelier remains closed for repair work following the flooding.

    + +

    Click here for information regarding court operations, including participating in remote hearings.

    + +
    +
    + +
    + +
    + + + +
    +
    + + +
    + +
    + + +
    + + + +
    + +
    + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + +
    +
    + + + +
    + + + + + +
    Original text
    Rate this translation
    Your feedback will be used to help improve Google Translate
    + + + +
    \ No newline at end of file diff --git a/tests/examples/opinions/united_states/vt_example.compare.json b/tests/examples/opinions/united_states/vt_example.compare.json index ad440c1bd..f375e1753 100644 --- a/tests/examples/opinions/united_states/vt_example.compare.json +++ b/tests/examples/opinions/united_states/vt_example.compare.json @@ -1,242 +1,252 @@ [ { - "case_dates": "2018-04-13", - "case_names": "In re Korrow Real Estate, LLC Act 250 Permit Amendment Application (State of Vermont, Appellant)", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-133.pdf", + "case_dates": "2023-10-27", + "case_names": "In Re Petition of Apple Hill Solar LLC", + "download_urls": "/media/16536", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-133", + "docket_numbers": "22-AP-286", "case_name_shorts": "" }, { - "case_dates": "2018-04-11", - "case_names": "State v. Jack Sawyer", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/eo18-105.bail_.pdf", + "case_dates": "2023-10-23", + "case_names": "Estate of Robert Snelgrove v. Herman LeBlanc", + "download_urls": "/media/16442", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2018-105", + "docket_numbers": "23-AP-309", "case_name_shorts": "" }, { - "case_dates": "2018-04-06", - "case_names": "State v. Yetha L. Lumumba", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op15-389.pdf", + "case_dates": "2023-10-20", + "case_names": "Jennifer Knapp (Dasler) v. Timothy Dasler", + "download_urls": "/media/16415", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2015-389", + "docket_numbers": "22-AP-331", "case_name_shorts": "" }, { - "case_dates": "2018-04-06", - "case_names": "State v. John J. Stern, Jr.", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-150.pdf", + "case_dates": "2023-10-13", + "case_names": "William Doherty v. Town of Woodstock and Alphonse Sorrentino", + "download_urls": "/media/16413", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-150", + "docket_numbers": "23-AP-129", "case_name_shorts": "" }, { - "case_dates": "2018-04-06", - "case_names": "Nicola Weaver v. David Weaver", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op16-417.pdf", + "case_dates": "2023-10-13", + "case_names": "M.J. v. L.C.S.D.", + "download_urls": "/media/16422", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2016-417, 2017-208 & 2017-326", + "docket_numbers": "23-AP-156", + "case_name_shorts": "M.J." + }, + { + "case_dates": "2023-10-13", + "case_names": "John P. Maille v. Kathleen Kirkpatrick (Maille)", + "download_urls": "/media/16418", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-AP-111", "case_name_shorts": "" }, { - "case_dates": "2018-04-06", - "case_names": "Adam Hubacz v. The Village of Waterbury", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-201.pdf", + "case_dates": "2023-10-13", + "case_names": "In Re K.H., K.H., K.D., Juveniles", + "download_urls": "/media/16419", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-201", + "docket_numbers": "23-AP-117", "case_name_shorts": "" }, { - "case_dates": "2018-03-29", - "case_names": "In re Phyllis McCoy Jacien, Esq.", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/eo18-075.prb_.pdf", + "case_dates": "2023-10-13", + "case_names": "In Re G.L., Juvenile", + "download_urls": "/media/16424", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2018-075", + "docket_numbers": "23-AP-176", "case_name_shorts": "" }, { - "case_dates": "2018-03-23", - "case_names": "Sulaiman J. Jadallah v. Town of Fairfax, Stacy Wells, Gabriel Handy and Sidon Pantry, LLC", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-287.pdf", + "case_dates": "2023-10-13", + "case_names": "In Re Appeal of G.L.", + "download_urls": "/media/16417", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-287", + "docket_numbers": "23-AP-109", "case_name_shorts": "" }, { - "case_dates": "2018-03-23", - "case_names": "State v. Jeffrey Davis", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op16-280_0.pdf", + "case_dates": "2023-10-13", + "case_names": "In Re A.W & J.W., Juveniles", + "download_urls": "/media/16425", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2016-280", + "docket_numbers": "23-AP-191", "case_name_shorts": "" }, { - "case_dates": "2018-03-16", - "case_names": "State v. Nathaniel R. Peatman", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op16-284.pdf", + "case_dates": "2023-10-13", + "case_names": "In Re A.D., Juvenile", + "download_urls": "/media/16423", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2016-284", + "docket_numbers": "23-AP-173", "case_name_shorts": "" }, { - "case_dates": "2018-03-16", - "case_names": "Louis F. LaFountain v. Department of Labor (Eden General Store, Inc., Employer)", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-257.pdf", + "case_dates": "2023-10-13", + "case_names": "Carissa Poss v. Seth Alarie", + "download_urls": "/media/16414", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-257", + "docket_numbers": "23-AP-103", "case_name_shorts": "" }, { - "case_dates": "2018-03-16", - "case_names": "In re M.L., Juvenile", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-339_0.pdf", + "case_dates": "2023-10-13", + "case_names": "Brian Leffler v. Kristina Leffler", + "download_urls": "/media/16416", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-339", + "docket_numbers": "23-AP-095", "case_name_shorts": "" }, { - "case_dates": "2018-03-16", - "case_names": "Catherine Lyons v. Chittenden Central Supervisory Union", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op16-036.pdf", + "case_dates": "2023-10-13", + "case_names": "American Empire General Contracting Corp. & Pro Claims, Inc. v. Department of Labor (Kayla Herrick)", + "download_urls": "/media/16421", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2016-036", + "docket_numbers": "23-AP-145", "case_name_shorts": "" }, { - "case_dates": "2018-03-16", - "case_names": "Agency of Natural Resources v. Francis Supeno, Barbara Supeno, and Barbara Ernst", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-187.pdf", + "case_dates": "2023-10-04", + "case_names": "State v. Trever Hoag", + "download_urls": "/media/16377", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-187", + "docket_numbers": "23-AP-301", "case_name_shorts": "" }, { - "case_dates": "2018-03-09", - "case_names": "Kirk Wool v. Lisa Menard, Commissioner, Vermont Department of Corrections", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-044.pdf", + "case_dates": "2023-09-29", + "case_names": "In Re A.O. & I.O., Juveniles & in Re B.G. & E.G., Juveniles", + "download_urls": "/media/16372", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-044", + "docket_numbers": "23-AP-124 & 23-AP-126", "case_name_shorts": "" }, { - "case_dates": "2018-03-09", - "case_names": "John Moyers v. Sheun Lai Poon and Brenda Lee Poon", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-305.pdf", + "case_dates": "2023-09-26", + "case_names": "State v. Aaron Labor", + "download_urls": "/media/16370", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-305", + "docket_numbers": "23-AP-288", "case_name_shorts": "" }, { - "case_dates": "2018-03-07", - "case_names": "In re Robert Hamm Moyer, Esq. (Office of Disciplinary Counsel)", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/eo18-042.prb_.pdf", + "case_dates": "2023-09-25", + "case_names": "State v. Roger Peay", + "download_urls": "/media/16390", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2018-042", + "docket_numbers": "23-AP-287", "case_name_shorts": "" }, { - "case_dates": "2018-02-23", - "case_names": "State v. Landon T. Urban", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-098.pdf", + "case_dates": "2023-09-22", + "case_names": "Jeffrey Rivard v. Brattleboro Reformer & Susan Smallheer", + "download_urls": "/media/16325", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-098", + "docket_numbers": "23-AP-149", "case_name_shorts": "" }, { - "case_dates": "2018-02-23", - "case_names": "State of Vermont, Department of Taxes v. Kenneth C. Montani/Thomas A. Tatro/Tyre Duvernay/Thomas L. Marchant", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-058.pdf", + "case_dates": "2023-09-15", + "case_names": "Town of Bennington v. M v. Properties, Inc.", + "download_urls": "/media/16327", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-058, 2017-152, 2017-153, 2017-213", + "docket_numbers": "23-AP-144", "case_name_shorts": "" }, { - "case_dates": "2018-02-23", - "case_names": "Negotiations Committee of Caledonia Central Supervisory Union v. Caledonia Central Education Assn.", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-142_1.pdf", + "case_dates": "2023-09-15", + "case_names": "Ronald Whitmore v. Department of Labor (Global Foundries US 2 LLC)", + "download_urls": "/media/16328", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-142", + "docket_numbers": "23-AP-137", "case_name_shorts": "" }, { - "case_dates": "2018-02-23", - "case_names": "Board of School Directors of Washington Supervisory Union v. Cabot Teachers' Assn. and Twinfield Education Assn.", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/eo17-186.pdf", + "case_dates": "2023-09-15", + "case_names": "Richard LaRoche v. Darla Sterett (LaRoche)", + "download_urls": "/media/16338", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-186", + "docket_numbers": "23-AP-002", "case_name_shorts": "" }, { - "case_dates": "2018-02-21", - "case_names": "State v. Tyreke Morton", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/eo18-044.pdf", + "case_dates": "2023-09-15", + "case_names": "Jennifer Parmelee v. Department of Labor (Bridge School, Lnc.)", + "download_urls": "/media/16333", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2018-044", + "docket_numbers": "23-AP-089", "case_name_shorts": "" }, { - "case_dates": "2018-02-16", - "case_names": "Steven Daiello v. Town of Vernon", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-220_0.pdf", + "case_dates": "2023-09-15", + "case_names": "In Re M.W., M.W., B.W., Juveniles", + "download_urls": "/media/16326", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-220", + "docket_numbers": "23-AP-147", "case_name_shorts": "" }, { - "case_dates": "2018-02-16", - "case_names": "Chris Khamnei v. Burlington Public Works Commission", - "download_urls": "https://www.vermontjudiciary.org/sites/default/files/documents/op17-122.pdf", + "case_dates": "2023-09-15", + "case_names": "Claire Cookman v. Champlain Valley Plumbing & Heating", + "download_urls": "/media/16334", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2017-122", + "docket_numbers": "23-AP-075", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/vt_example.html b/tests/examples/opinions/united_states/vt_example.html index f97bf6fa9..88d58dc98 100644 --- a/tests/examples/opinions/united_states/vt_example.html +++ b/tests/examples/opinions/united_states/vt_example.html @@ -1,49 +1,334 @@ - - - - - - - - - - - - - - + + + + + + + + Opinions, Decisions and Order Library | Vermont Judiciary - - - - - - - - - + + + + + + + icon-exit-link - - + + icon-facebook - + Search Icon - + @@ -56,6 +341,7 @@ +
    @@ -64,7 +350,14 @@
    -

    Essex Courthouse in Guildhall is temporarily closed due to a fire alarm activation

    +

    Except as noted below, all Vermont state courthouses are open for normal business hours:

    + +

    The Washington Civil/Probate Court hearings will be remote only pending further notice. The Washington Civil/Probate Courthouse in Montpelier remains closed but civil and probate paper filings can be brought to the Washington Criminal/Family Courthouse in Barre for processing. Electronic filings continue to be processed electronically.

    + +

    The Vermont Supreme Court Building in Montpelier remains closed for repair work following the flooding.

    + +

    Click here for information regarding court operations, including participating in remote hearings.

    +
    @@ -97,7 +390,7 @@
    -
    +

    Step 2: Select a Court Division

    -
    -
    +

    Step 3: Select a Document Type

    -
    - +
    @@ -529,148 +851,104 @@

    Step 1: Enter a Date Range

    +
    @@ -679,49 +957,68 @@

    Step 1: Enter a Date Range

    Pagination

    @@ -783,7 +1083,7 @@

    Our Vision

    @@ -328,7 +633,10 @@ Court Records
  • - Memos To the Vermont Bar + Data and Information Requests +
  • +
  • + Memos to the Vermont Bar
  • News and Announcements @@ -339,6 +647,9 @@
  • Proposed and Promulgated Rules
  • +
  • + Standing Orders +
  • @@ -349,13 +660,16 @@ @@ -380,7 +694,7 @@
    - +
    @@ -396,12 +710,7 @@
    -
    - - +
    Powered by Google TranslateTranslate
    + +
    @@ -444,11 +752,11 @@

    Step 1: Enter a Date Range

    @@ -477,19 +785,19 @@

    Step 1: Enter a Date Range

    - - + +
    - - + + -
    +
    To Date
    - +
    @@ -499,23 +807,33 @@

    Step 1: Enter a Date Range

    -
    +

    Step 2: Select a Court Division

    -
    -
    +

    Step 3: Select a Document Type

    -
    - +
    @@ -529,154 +847,104 @@

    Step 1: Enter a Date Range

    @@ -685,68 +953,68 @@

    Step 1: Enter a Date Range

    Pagination

    @@ -808,7 +1079,7 @@

    Our Vision

    @@ -328,7 +633,10 @@ Court Records
  • - Memos To the Vermont Bar + Data and Information Requests +
  • +
  • + Memos to the Vermont Bar
  • News and Announcements @@ -339,6 +647,9 @@
  • Proposed and Promulgated Rules
  • +
  • + Standing Orders +
  • @@ -349,13 +660,16 @@ @@ -380,7 +694,7 @@
    - +
    @@ -396,12 +710,7 @@
    -
    - - +
    Powered by Google TranslateTranslate
    + +
    @@ -444,11 +752,11 @@

    Step 1: Enter a Date Range

    @@ -477,19 +785,19 @@

    Step 1: Enter a Date Range

    - - + +
    - - + + -
    +
    To Date
    - +
    @@ -499,23 +807,37 @@

    Step 1: Enter a Date Range

    -
    +

    Step 2: Select a Court Division

    -
    -
    +

    Step 3: Select a Document Type

    -
    - +
    @@ -529,154 +851,104 @@

    Step 1: Enter a Date Range

    @@ -685,68 +957,68 @@

    Step 1: Enter a Date Range

    Pagination

    @@ -808,7 +1083,7 @@

    Our Vision

    @@ -328,7 +633,10 @@ Court Records
  • - Memos To the Vermont Bar + Data and Information Requests +
  • +
  • + Memos to the Vermont Bar
  • News and Announcements @@ -339,6 +647,9 @@
  • Proposed and Promulgated Rules
  • +
  • + Standing Orders +
  • @@ -349,13 +660,16 @@ @@ -380,7 +694,7 @@
    - +
    @@ -396,12 +710,7 @@
    -
    - - +
    Powered by Google TranslateTranslate
    + +
    @@ -444,11 +752,11 @@

    Step 1: Enter a Date Range

    @@ -477,19 +785,19 @@

    Step 1: Enter a Date Range

    - - + +
    - - + + -
    +
    To Date
    - +
    @@ -499,23 +807,33 @@

    Step 1: Enter a Date Range

    -
    +

    Step 2: Select a Court Division

    -
    -
    +

    Step 3: Select a Document Type

    -
    - +
    @@ -529,14 +847,180 @@

    Step 1: Enter a Date Range

    + + + + + + + + + + + + + + + + + + + + + + + +
    + @@ -575,12 +1059,15 @@

    Our Vision

    Employment Opportunities + - @@ -592,7 +1079,7 @@

    Our Vision

    @@ -592,7 +895,7 @@

    Our Vision

    + - -
    +
    - - - - + +
    - - - + + + + - - - - - + + + + + + + + + - + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/wisctapp_example.compare.json b/tests/examples/opinions/united_states/wisctapp_example.compare.json new file mode 100644 index 000000000..78a943d42 --- /dev/null +++ b/tests/examples/opinions/united_states/wisctapp_example.compare.json @@ -0,0 +1,211 @@ +[ + { + "case_dates": "2024-07-18", + "case_names": "State v. Mark Staskal", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=827278", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023AP001167", + "lower_courts": "Wisconsin Circuit Court, Rock County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-18", + "case_names": "Pauline Buchholz, as Trustee of the Trust Agreement v. Steven K. Schmidt", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=828307", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023AP001400", + "lower_courts": "Wisconsin Circuit Court, Dodge County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-18", + "case_names": "Lakeview Loan Servicing, LLC v. Jeremy M. Bastin", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=827308", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023AP000475", + "lower_courts": "Wisconsin Circuit Court, Jefferson County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-18", + "case_names": "Buddy J. Savich v. Columbia County Board of Adjustments", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=828330", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023AP000078, 2023AP001339", + "lower_courts": "Wisconsin Circuit Court, Columbia County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-16", + "case_names": "State v. Robert C. McMath", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=826681", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2021AP001941-CR", + "lower_courts": "Wisconsin Circuit Court, Milwaukee County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-16", + "case_names": "State v. Kendall M. White", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=825266", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023AP001158-CR", + "lower_courts": "Wisconsin Circuit Court, Milwaukee County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-16", + "case_names": "State v. Jayden Adams", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=826613", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023AP000218-CR", + "lower_courts": "Wisconsin Circuit Court, Milwaukee County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-16", + "case_names": "State v. Charles R. Steadman II", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=824589", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2022AP001738-CR", + "lower_courts": "Wisconsin Circuit Court, Marathon County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-16", + "case_names": "State v. Alexander T. McGee", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=825293", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023AP000844-CR", + "lower_courts": "Wisconsin Circuit Court, Milwaukee County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-16", + "case_names": "Romero Coleman v. Rebecca A. Coleman", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=826600", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023AP000021", + "lower_courts": "Wisconsin Circuit Court, Brown County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-16", + "case_names": "Lost Lake Cranberry, Inc. v. Iron County", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=827165", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023AP000728", + "lower_courts": "Wisconsin Circuit Court, Iron County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-11", + "case_names": "State v. Brian D. Frazier", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=825149", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023AP000418", + "lower_courts": "Wisconsin Circuit Court, Columbia County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-11", + "case_names": "Rise, Inc. v. Wisconsin Elections Commission", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=825142", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024AP000165", + "lower_courts": "Wisconsin Circuit Court, Dane County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-11", + "case_names": "Portage County DH&HS v. W. P. R.", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=825006", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2024AP000454", + "lower_courts": "Wisconsin Circuit Court, Portage County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-11", + "case_names": "Elaine Strassburg v. Hickory Meadows Association, Inc.", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=825089", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2022AP001488", + "lower_courts": "Wisconsin Circuit Court, Rock County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-11", + "case_names": "CTW Flooring, Inc. v. Brandon Dittberner", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=824615", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023AP000558", + "lower_courts": "Wisconsin Circuit Court, Columbia County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-10", + "case_names": "State v. Damian Darnell Washington", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=822815", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2022AP002192-CR", + "lower_courts": "Wisconsin Circuit Court, Sheboygan County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-10", + "case_names": "Ahmed H. Alurf v. Corey Rickey Johnson", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=823268", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023AP000537", + "lower_courts": "Wisconsin Circuit Court, Racine County", + "case_name_shorts": "" + }, + { + "case_dates": "2024-07-09", + "case_names": "State v. Joshua Lee Pietrantonio", + "download_urls": "https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=823463", + "precedential_statuses": "Unpublished", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "2023AP000576-CR", + "lower_courts": "Wisconsin Circuit Court, Florence County", + "case_name_shorts": "" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/wisctapp_example.html b/tests/examples/opinions/united_states/wisctapp_example.html new file mode 100644 index 000000000..b925d8080 --- /dev/null +++ b/tests/examples/opinions/united_states/wisctapp_example.html @@ -0,0 +1,1132 @@ + + + + + + + + + + + + + + + + + + + + + Wisconsin Court System - Court of Appeals opinion search results + + + + + + + + + + + + + + + + + + + + + +

    Skip to content

    + + +
    + + + + + +
    + +
    + +
    + +
    + +
    + +
    +

    Court of Appeals opinions

    + Written explanations of the courts' decisions + +
    + +
    + +
    + +
    + +
    + + + +
    + +
    + + +
    +
    + +
    + + + + +

    Search results

    + + +
    + + + + + + + + + + + + + +

    Below is the list of opinions that match your search criteria. Electronic opinions are made available in PDF format. Published opinions are subject to further editing and modification. The final version will appear in the bound volume of the official reports.

    + +

    To download multiple opinions, select all of the files you wish to download, go to the end of the list and click on the download selected files button. All files will be compressed into a self-extracting exe file that you can download, or immediately unzip, to the path you specify.

    + + + + + + + + + +
    Page 1 of 1  Search again  
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Release dateCase numberCaptionDistrictCountySelect/view
    Jul 18, 20242023AP001400Pauline Buchholz, as Trustee of the Trust Agreement v. Steven K. Schmidt
    [Recommended for Publication]
    + 4 + Dodge PDF 
    Jul 18, 20242023AP001339Buddy J. Savich v. Columbia County Board of Adjustments
    [Recommended for Publication]
    + 4 + Columbia PDF 
    Jul 18, 20242023AP001167State v. Mark Staskal + 4 + Rock PDF 
    Jul 18, 20242023AP000475Lakeview Loan Servicing, LLC v. Jeremy M. Bastin + 4 + Jefferson PDF 
    Jul 18, 20242023AP000078Buddy J. Savich v. Columbia County Board of Adjustments
    [Recommended for Publication]
    + 4 + Columbia PDF 
    Jul 16, 20242023AP001158-CRState v. Kendall M. White + 1 + Milwaukee PDF 
    Jul 16, 20242023AP000844-CRState v. Alexander T. McGee + 1 + Milwaukee PDF 
    Jul 16, 20242023AP000728Lost Lake Cranberry, Inc. v. Iron County + 3 + Iron PDF 
    Jul 16, 20242023AP000218-CRState v. Jayden Adams
    [Recommended for Publication]
    + 1 + Milwaukee PDF 
    Jul 16, 20242023AP000021Romero Coleman v. Rebecca A. Coleman + 3 + Brown PDF 
    Jul 16, 20242022AP001738-CRState v. Charles R. Steadman II + 3 + Marathon PDF 
    Jul 16, 20242021AP001941-CRState v. Robert C. McMath + 1 + Milwaukee PDF 
    Jul 11, 20242024AP000454Portage County DH&HS v. W. P. R. + 4 + Portage PDF 
    Jul 11, 20242024AP000165Rise, Inc. v. Wisconsin Elections Commission
    [Recommended for Publication]
    + 4 + Dane PDF 
    Jul 11, 20242023AP000558CTW Flooring, Inc. v. Brandon Dittberner + 4 + Columbia PDF 
    Jul 11, 20242023AP000418State v. Brian D. Frazier + 4 + Columbia PDF 
    Jul 11, 20242022AP001488Elaine Strassburg v. Hickory Meadows Association, Inc. + 4 + Rock PDF 
    Jul 10, 20242023AP000537Ahmed H. Alurf v. Corey Rickey Johnson + 2 + Racine PDF 
    Jul 10, 20242022AP002192-CRState v. Damian Darnell Washington + 2 + Sheboygan PDF 
    Jul 09, 20242023AP000576-CRState v. Joshua Lee Pietrantonio + 3 + Florence PDF 
    +
    + + + + + +
    Page 1 of 1  Search again  
    + +
    + +
    + +
    + +
    + + + +
    + + + +
    + +
    +
    + + + + +
    + + +
    + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/wva_example.compare.json b/tests/examples/opinions/united_states/wva_example.compare.json index e759940e3..02f2169b0 100644 --- a/tests/examples/opinions/united_states/wva_example.compare.json +++ b/tests/examples/opinions/united_states/wva_example.compare.json @@ -1,2114 +1,112 @@ [ { - "case_dates": "2012-03-12", - "case_names": "Todd A. Hicks v. Brickstreet Mutual Insurance", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0923memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0923", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "Todd A. Hicks v. Brickstreet Mutual Insurance", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0923memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0923", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "Tex Gene Holbrook v. David Ballard, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101437memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101437", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "State of West Virginia v. Michael Marks", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0857memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0857", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "State of West Virginia v. Mark Wilson", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0432memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0432", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "State of West Virginia v. J.S.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0709memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0709", - "nature_of_suit": "Criminal-Other", - "case_name_shorts": "J.S." - }, - { - "case_dates": "2012-03-12", - "case_names": "Sara Jane Workman v. Carl Samuel Workman", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0795memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0795", - "nature_of_suit": "Family", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "Ray and Bette Kesling v. Sonshine, LLC", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0672memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0672", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "Lawrence E. Scible v. David Ballard, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0368memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0368", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "Keith R. Jeffers v. David Ballard, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0433memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0433", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "James Ward v. USA, Federal Bureau of Prisons", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101571memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101571", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In the Interest of: T.M.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1317memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1317", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In the Interest of: K.H.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1474memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1474", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In the Interest of: J.M., C.H., B.H. and C.H., Jr.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1165memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1165", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In the Interest of: E.M.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1365memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1365", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In the Interest of: B.H.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1263memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1263", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: T.C., J.C., V.C., A.C., C.C., C.C. and E.C.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1150memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1150", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: S.W.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1419memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1419", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: S.W." - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: S.B.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1568memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1568", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: S.B." - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: P.D. and A.D.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0979memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0979", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: NB. and Z.B.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1266memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1266", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: N.W.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1026memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1026", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: N.W." - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: M.W.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1518memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1518", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: M.W." - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: M.M. Jr., S.M., E.M., A.M. and B.M.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1018memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1018", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: M.M. Jr., S.M., E.M., A.M. and B.M.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0952memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0952", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: M.D. and A.D.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1182memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1182", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: J.W., K.W., T.W. and M.S.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1403memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1403", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: J.W., K.W., T.W. and M.S.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0774memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0774", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: J.S. and K.S.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1089memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1089", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: J.N.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1078memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1078", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: J.N." - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: I.A. and M.A.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1161memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1161", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: D.N.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1538memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1538", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: D.N." - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: D.N.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1086memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1086", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: D.N." - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: D.C. and M.C.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0974memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0974", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: B.K. and J.K.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1102memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1102", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: A.S., A.S., A.S.and K.S.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1364memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1364", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: A.S., A.S., A.S.and K.S.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1338memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1338", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: A.D., K.D., D.D., K.P., A.P. and J.P.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1552memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1552", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "In Re: A.C., A.C., A.C. and A.C.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1088memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1088", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "Dana Waid Young v. Brian Waid", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0823memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0823", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "D.G.L. v. D.K.L.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0763memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0763", - "nature_of_suit": "Family", - "case_name_shorts": "D.G.L." - }, - { - "case_dates": "2012-03-12", - "case_names": "Burch Roofing and Construction v. Mark Poh, etc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0922memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0922", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "Bobby R. Hicks v. W. Va. Office of Insurance Commission/United Dairy", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/34359memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "34359", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-12", - "case_names": "Alvin Chambers v. David Ballard, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1082memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1082", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "Travis Hough v. Boll Medical", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0814memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0814", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "State of West Virginia v. Shelley Ray Guthrie", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0556memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0556", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "State of West Virginia v. Shawn J. Bailey", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0417and11-0794memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0417 & 11-0794", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "State of West Virginia v. James Ellis Spuduck", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0620memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0620", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "State of West Virginia v. J.D. Lambert", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0988memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0988", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "State of West Virginia v. David Kestner", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0777memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0777", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "SER William David Belcher v. Adrian Hoke, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0494memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0494", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "SER Roger Repass v. Adrian Hoke, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0663memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0663", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "SER Ernest \"Sonny\" Tucker v. Thomas L. McBride, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0593memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0593", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "SER Andre King v. Jim Ielapi, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0237memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0237", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "Melissa Sue Ennis(formerly Steele) v. Andrew Blair Cox", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0702memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0702", - "nature_of_suit": "Family", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "In Re: The Adoption of Wesley G.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0553memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0553", - "nature_of_suit": "Family", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "Gary D. Lanham v. W. Va. Consolidated Public Retirement Board", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0778memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0778", - "nature_of_suit": "Administrative Agency-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-09", - "case_names": "Brent Childress v. W. Va. State Police, etc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0329memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0329", - "nature_of_suit": "Administrative Agency-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-03-01", - "case_names": "Rebuild America v. Mark E. Davis", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0592.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0592", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-28", - "case_names": "In Re: Ashton M.", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0755c.pdf", - "precedential_statuses": "Separate", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0755", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-28", - "case_names": "In Re: Ashton M.", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0755.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0755", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-24", - "case_names": "State of West Virginia v. Paula D. Hoston, etc.", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0120and11-0457.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0120 & 11-0457", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-24", - "case_names": "State of West Virginia v. Donald Surber", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0361.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0361", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-24", - "case_names": "SER Massachusetts Mutual Life Ins. v. Hon. David Sanders", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-1514.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1514", - "nature_of_suit": "Writ Application-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-24", - "case_names": "National Union Fire Ins. v. Jennifer Miller, etc.", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0315.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0315", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-24", - "case_names": "Larry D. Butcher v. W. Va. Office of Insurance Commissioner/J.E.T. Resources", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101372memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101372", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-24", - "case_names": "Joseph Scalise v. W. Va. Office of Insurance Commissioner/Wheeling Island Gaming", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101362memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101362", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-24", - "case_names": "Joseph S. Dingus v. W. Va. Office of Insurance Commissioner/Greif Brothers Corp.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101358memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101358", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-24", - "case_names": "Ethel Vennum v. W. Va. Office of Insurance Commissioner/Homer Laughlin China", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101360memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101360", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-24", - "case_names": "Danny Kennedy v. W. Va. Office of Insurance Commissioner/Appalachian Power", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101305memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101305", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-24", - "case_names": "Betty J. Nease v. W. Va. Office of Insurance Commissioner/Morgans Restaurants", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101312memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101312", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-24", - "case_names": "Bernadette K. Shaw v. W. Va. Office of Insurance Commissioner/Morgan Co. Board of Ed.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101370memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101370", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-24", - "case_names": "All-Med v. Randolph Engineering Co., etc.", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0074d.pdf", - "precedential_statuses": "Separate", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0074", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "All-Med" - }, - { - "case_dates": "2012-02-24", - "case_names": "All-Med v. Randolph Engineering Co., etc.", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0074.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0074", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "All-Med" - }, - { - "case_dates": "2012-02-23", - "case_names": "State of West Virginia v. Kendra Sulick", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0043.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0342", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-23", - "case_names": "Shawn Romano v. Wendy Greve", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0679.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0679", - "nature_of_suit": "Family", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-22", - "case_names": "Thomas L. Cooper v. W. Va. Office of Insurance Commissioner/Appalachian Power", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101382memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101382", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-22", - "case_names": "Rennie D. Pauley v. W. Va. Office of Insurance Commissioner/Charleston Area Medical Center", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101375memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101375", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-22", - "case_names": "John D. Wood v. W. Va. Office of Insurance Commissioner/Performance Coal", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101361memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101361", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-22", - "case_names": "James A. Milam, Jr. v. W. Va. Office of Insurance Commissioner/Essential Fuels", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101373memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101373", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-22", - "case_names": "James A. Lawson v. W. Va. Office of Insurance Commissioner/ACF Industries", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101374memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101374", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-22", - "case_names": "Harrison L. Epperly v. W. Va. Office of Insurance Commissioner/Apogee Coal", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0442memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0442", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-22", - "case_names": "Harrison L. Epperly v. W. Va. Office of Insurance Commissioner/Apogee Coal", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101384memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101384", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-22", - "case_names": "Gerald R. Jenkins v. W. Va. Office of Insurance Commissioner/Consolidation Coal", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101383memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101383", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-22", - "case_names": "Charles S. Stone v. W. Va. Office of Insurance Commissioner/Huntington Alloys", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101386memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101386", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-17", - "case_names": "Ricky D. Thomas v. W. Va. Office of Insurance Commissioner/Century Aluminum of WV, Inc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101390memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101390", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-17", - "case_names": "Pamela S. Harding v. W. Va. Office of Insurance Commissioner/Mayflower Vehicle Systems, Inc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101396memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101396", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-17", - "case_names": "Mary J. Walter v. W. Va. Office of Insurance Commissioner", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101395memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101395", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-17", - "case_names": "Mary Gannon v. W. Va. Office of Insurance Commissioner/Perry & Hylton, Inc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101392memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101392", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-17", - "case_names": "Jackie L. Snodgrass v. W. Va. Office of Insurance Commissioner/Kroger Limited Partnership", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101359memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101359", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-17", - "case_names": "Donald R. Spaun v. W. Va. Office of Insurance Commissioner/Century Aluminum of WV, Inc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101394memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101394", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-17", - "case_names": "D'Mitri L. Beverly v. W. Va. Office of Insurance Commissioner/W. Va. Division of Highways", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101397memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101397", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-17", - "case_names": "Consolidation Coal Company v. W. Va. Office of Insurance Commissioner/James D. White", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101385memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101385", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-17", - "case_names": "Bruce E. Benedum v. W. Va. Office of Insurance Commissioner/Mosites Construction Company", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101391memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101391", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-17", - "case_names": "Billy J. McClanahan v. W. Va. Office of Insurance Commissioner/Nichols Construction, LLC", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101393memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101393", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-15", - "case_names": "William E. Kendrick v. W. Va. Office of Insurance Commissioner/Gapco Mining", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101253memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101253", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-15", - "case_names": "Linda A. Wall v. W. Va. Office of Insurance Commissioner/Mercer Co. Board of Education", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101252memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101252", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-15", - "case_names": "Betty Estep v. W. Va. Office of Insurance Commissioner/Plott & Holbook, Inc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101258memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101258", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "Stoney G. Riley v. Adrian Hoke, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0413memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0413", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "State of West Virginia v. Steve E. Blankenship", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0387memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0387", - "nature_of_suit": "Misdemeanor", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "State of West Virginia v. Stephanie D. Pauley", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0462memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0462", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "State of West Virginia v. Scott E. Minnick", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0563memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0563", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "State of West Virginia v. Roger A. McKinney", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0458memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0458", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "State of West Virginia v. R.T.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0468memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0468", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "R.T." - }, - { - "case_dates": "2012-02-14", - "case_names": "State of West Virginia v. Megan Ryman", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0146memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0146", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "State of West Virginia v. Jack Conner", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0133memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0133", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "State of West Virginia v. Henry Howard Jenkins", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0548memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0548", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "State of West Virginia v. Gerald Wayne Little", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0342memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0342", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "SER Steve A. Watkins v. Jim Rubenstein, Commissioner", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0530memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0530", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "Robert Allen Hager v. Thomas McBride, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0129memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0129", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "Mitch Nelson v. Board of Education of Boone Co.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0278memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0278", - "nature_of_suit": "Administrative Agency-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "Kathy S. Lefler v. W. Va. Dept. of Education", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0650memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0650", - "nature_of_suit": "Administrative Agency-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "J.B. v. K.C. and L.C.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0504memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0504", - "nature_of_suit": "Family", - "case_name_shorts": "J.B." - }, - { - "case_dates": "2012-02-14", - "case_names": "Frances A. Preast v. Burl Keith Skaggs", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0661memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0661", - "nature_of_suit": "Administrative Agency-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "Dean Miner v. Ricardo Pacheco", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0185memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0185", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-14", - "case_names": "D.C. v. Wayne Co. Board of Education", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0077memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0077", - "nature_of_suit": "Administrative Agency-Other", - "case_name_shorts": "D.C." - }, - { - "case_dates": "2012-02-14", - "case_names": "Agnieszka Collins v. Barbara L. Stewart", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0056memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0056", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "William Nesbitt v. Shannon Markle, Administrator", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0829memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0829", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "State of West Virginia v. Thomas Eugene Gardner, Jr.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0714memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0714", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "State of West Virginia v. Sherri Wukeson", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0534memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0534", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "State of West Virginia v. Miguel Perez", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0835memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0835", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "State of West Virginia v. Michelle Bryant", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0619memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0619", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "State of West Virginia v. Matthew Jonathan Robey", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0874memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0874", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "State of West Virginia v. Larry E. Mayle, Jr.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0562memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0562", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "State of West Virginia v. Joseph Suber", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0760memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0760", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "State of West Virginia v. John Payne", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0825memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0825", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "State of West Virginia v. Dustin Chad Reed", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0636memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0636", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "State of West Virginia v. David L. Hunter", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0633memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0633", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "State of West Virginia v. Danny Honaker, Jr.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0918memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0918", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "State of West Virginia v. Brian Keith Hubbard", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0690memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0690", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "Sanford D. Creameans v. Christopher D. Chiles, Pros. Attorney", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0596memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0596", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "Samuel P. Sommerville v. Robert B. Rausenberger", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0545memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0545", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "SER Thornton Cooper v. Natalie E. Tennant, Sec. of State, etc.", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-1405and11-1447.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1405 & 11-1447, etc.", - "nature_of_suit": "Writ Application-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "Melissa Dixon v. Estate of Faye Hudson, etc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0852memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0852", - "nature_of_suit": "Probate", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "In Re: the Matter of J.B. and J.B.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0724memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0724", - "nature_of_suit": "Family", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "In Re: S.O.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1242memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1242", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: S.O." - }, - { - "case_dates": "2012-02-13", - "case_names": "In Re: S.B. and D.B.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1347memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1347", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "In Re: J.S. and K.S.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0966memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0966", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "In Re: I.F. and I.C.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1366memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1366", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "In Re: E.M.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0913memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0913", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: E.M." - }, - { - "case_dates": "2012-02-13", - "case_names": "In Re: D.B., F.B. and T.S.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1311memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1311", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "In Re: A.S. and W.M.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0930memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0930", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "In Re: A.M., S.M. and B.B.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0860memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0860", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-13", - "case_names": "Dana and Nancy Singleton v. Citizens Bank of Weston", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0570memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0570", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-10", - "case_names": "State of West Virginia v. Kenneth Lenhart", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0599memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0599", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-10", - "case_names": "State of West Virginia v. Freddie Lee Bragg", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0211memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0211", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-10", - "case_names": "SER W. Va. Dept. of Transportation v. Hon. Jeffrey B. Reed", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-1358and11-1360d.pdf", - "precedential_statuses": "Separate", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1358 & 11-1360", - "nature_of_suit": "Writ Application-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-10", - "case_names": "SER W. Va. Dept. of Transportation v. Hon. Jeffrey B. Reed", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-1358and11-1360.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1358 & 11-1360", - "nature_of_suit": "Writ Application-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-10", - "case_names": "SER Coal Age, Inc. v. Hon. Warren R. McGraw", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1404memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1404", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-10", - "case_names": "SER Baker Installation v. Hon. Carrie Webster, Judge", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1627memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1627", - "nature_of_suit": "Writ Application-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-10", - "case_names": "John S. Shannon v. City of Hurricane", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0257memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0257", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-10", - "case_names": "In Re: The Marriage of: Zickefoose v. Zickefoose", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0073c.pdf", + "case_dates": "2023-11-13", + "case_names": "Todd Jarell v. Frontier West Virginia, Inc., Daniel Jordan, and Michael Linkous (Justice Hutchison dissenting, joined by Justice Wooton)", + "download_urls": "/sites/default/pubfilesmnt/2023-11/20-0040-hutchison%20and%20wooton-sep-p.pdf", "precedential_statuses": "Separate", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "11-0073", - "nature_of_suit": "Family", - "case_name_shorts": "Zickefoose" - }, - { - "case_dates": "2012-02-10", - "case_names": "In Re: The Marriage of: Zickefoose v. Zickefoose", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0073.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0073", - "nature_of_suit": "Family", - "case_name_shorts": "Zickefoose" - }, - { - "case_dates": "2012-02-10", - "case_names": "Gregory Allan Zerkel v. Dana C. Zerkel n/k/a Leech", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0277memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0277", - "nature_of_suit": "Family", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-09", - "case_names": "Shenandoah Sales v. Assessor of Jefferson Co., etc", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0248and11-0701.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0248 & 11-0701", - "nature_of_suit": "Administrative Agency-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-09", - "case_names": "Katy Addair v. Litwar Processing Co.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0397memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0397", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-02-09", - "case_names": "Big Lots Stores v. Rebecca and Kevin Arbogast", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-1260.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1260", + "docket_numbers": "20-0040", "nature_of_suit": "Tort, Contract, and Real Property", "case_name_shorts": "" }, { - "case_dates": "2012-01-27", - "case_names": "Steven M. Posey and Michelle E. Posey v. City of Buckhannon", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0565.pdf", + "case_dates": "2023-11-09", + "case_names": "Todd Jarell v. Frontier West Virginia, Inc., Daniel Jordan, and Michael Linkous", + "download_urls": "/sites/default/pubfilesmnt/2023-11/20-0040-bunn-p.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "11-0565", + "docket_numbers": "20-0040", "nature_of_suit": "Tort, Contract, and Real Property", "case_name_shorts": "" }, { - "case_dates": "2012-01-20", - "case_names": "Marvin Shawn Bench v. W. Va. Office of Insurance Commissioner/Spartan Mining", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101347memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101347", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-19", - "case_names": "William Watson Jr. v. W. Va. DHHR and Mildred-Mitchell Bateman Hospital", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0191memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0191", - "nature_of_suit": "Administrative Agency-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-19", - "case_names": "State of West Virginia v. Timothy Michael Waldron", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0399.pdf", + "case_dates": "2023-11-09", + "case_names": "State of West Virginia v. Timothy Maichle", + "download_urls": "/sites/default/pubfilesmnt/2023-11/21-0943-bunn-p.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "11-0399", + "docket_numbers": "21-0943", "nature_of_suit": "Felony (non-Death Penalty)", "case_name_shorts": "" }, { - "case_dates": "2012-01-19", - "case_names": "Shirley Snyder v. W. Va. Office of Insurance Commissioner//Bayer Corp.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101102memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101102", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-19", - "case_names": "Roger L. Harris v. W. Va. Office of Insurance Commissioner/Patriot Mining", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101060memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101060", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-19", - "case_names": "Richard D. Spurlock v. W. Va. Office of Insurance Commissioner/Appalachian Power", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101561memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101561", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-19", - "case_names": "Richard D. Spurlock v. W. Va. Office of Insurance Commissioner/Appalachian Power", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/100965memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "100965", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-19", - "case_names": "Michael F. Estremera v. W. Va. Office of Insurance Commissioner/Royal Harvest", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101071memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101071", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-19", - "case_names": "Jeana L. Hicks v. W. Va. Office of Insurance Commissioner/Westmoreland Coal", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101116memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101116", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-19", - "case_names": "Danny L. Boyles v. W. Va. Office of Insurance Commissioner/Turn 4 Truck and Auto", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101172memo.pdf", + "case_dates": "2023-11-09", + "case_names": "State of West Virginia v. Shane Eric Hagerman", + "download_urls": "/sites/default/pubfilesmnt/2023-11/22-0219-hutchison-p.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "101172", - "nature_of_suit": "Workers Compensation", + "docket_numbers": "22-0219", + "nature_of_suit": "Felony (non-Death Penalty)", "case_name_shorts": "" }, { - "case_dates": "2012-01-19", - "case_names": "Albert Postlewait, Jr. v. City of Wheeling", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0206d.pdf", + "case_dates": "2023-11-09", + "case_names": "State of West Virginia v. Charles Eric Ward (Justice Armstead concurring)", + "download_urls": "/sites/default/pubfilesmnt/2023-11/22-0211-armstead-sep-p.pdf", "precedential_statuses": "Separate", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "11-0206", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-19", - "case_names": "Albert Postlewait, Jr. v. City of Wheeling", - "download_urls": "tests/examples/opinions/united_states/docs/spring2012/11-0206.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0206", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-18", - "case_names": "State of West Virginia v. Shawn McCamick", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0317memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0317", + "docket_numbers": "22-0211", "nature_of_suit": "Felony (non-Death Penalty)", "case_name_shorts": "" }, { - "case_dates": "2012-01-18", - "case_names": "In Re: T.C., J.C., V.C., A.C., C.C., C.C. and E.C.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1137memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1137", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-18", - "case_names": "In Re: S.M. and F.M.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1080memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1080", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-18", - "case_names": "In Re: S.M. and F.M.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1079memo.pdf", + "case_dates": "2023-11-09", + "case_names": "State of West Virginia v. Charles Eric Ward", + "download_urls": "/sites/default/pubfilesmnt/2023-11/22-0211-bunn-p.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "11-1079", - "nature_of_suit": "Juvenile", + "docket_numbers": "22-0211", + "nature_of_suit": "Felony (non-Death Penalty)", "case_name_shorts": "" }, { - "case_dates": "2012-01-18", - "case_names": "In Re: R.P.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1210memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1210", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: R.P." - }, - { - "case_dates": "2012-01-18", - "case_names": "In Re: K.S.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0907memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0907", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: K.S." - }, - { - "case_dates": "2012-01-18", - "case_names": "In Re: K.M.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0834memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0834", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: K.M." - }, - { - "case_dates": "2012-01-18", - "case_names": "In Re: J. O. and I.O.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1227memo.pdf", - "precedential_statuses": "Published", + "case_dates": "2023-11-09", + "case_names": "Robert Hood v. Lincare Holdings, Inc. (Justice Hutchison concurring in part and dissenting in part)", + "download_urls": "/sites/default/pubfilesmnt/2023-11/21-0754-hutchison-sep-p.pdf", + "precedential_statuses": "Separate", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "11-1227", - "nature_of_suit": "Juvenile", + "docket_numbers": "21-0754", + "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2012-01-18", - "case_names": "In Re: I.G., L.G., J.H., G.N. III, and T.N.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0696memo.pdf", + "case_dates": "2023-11-09", + "case_names": "In re Z.S.-1 and Z.S.-2 and In re Z.S.-1 and Z.S.-2", + "download_urls": "/sites/default/pubfilesmnt/2023-11/22-602%20and%2022-0478-bunn-p.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "11-0696", + "docket_numbers": "22-0478 and 22-602", "nature_of_suit": "Juvenile", "case_name_shorts": "" }, { - "case_dates": "2012-01-18", - "case_names": "In Re: E.B.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0951memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0951", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: E.B." - }, - { - "case_dates": "2012-01-18", - "case_names": "In Re: D.D.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1040memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1040", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: D.D." - }, - { - "case_dates": "2012-01-18", - "case_names": "In Re: B.D.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0807memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0807", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: B.D." - }, - { - "case_dates": "2012-01-18", - "case_names": "In Re: B.D.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0798memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0798", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: B.D." - }, - { - "case_dates": "2012-01-18", - "case_names": "In Re: B.C., C.C. and A.C.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1027memo.pdf", + "case_dates": "2023-11-09", + "case_names": "In re S.B. and A.W.", + "download_urls": "/sites/default/pubfilesmnt/2023-11/22-798%20md.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "11-1027", + "docket_numbers": "22-798", "nature_of_suit": "Juvenile", "case_name_shorts": "" }, { - "case_dates": "2012-01-18", - "case_names": "In Re: A.W.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1087memo.pdf", + "case_dates": "2023-11-09", + "case_names": "In re B.H., R.H., and M.M.", + "download_urls": "/sites/default/pubfilesmnt/2023-11/22-678%20and%2022-680_md.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "11-1087", + "docket_numbers": "22-678 and 22-680", "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: A.W." - }, - { - "case_dates": "2012-01-13", - "case_names": "Robert Sanchez v. Tod Benson", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101573memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101573", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-13", - "case_names": "Richard E. Smallwood v. Patrick Smallwood", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101602memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101602", - "nature_of_suit": "Probate", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-13", - "case_names": "Marlon Ferguson v. Nicholas J. Wall", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0597memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0597", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-13", - "case_names": "Marlon Ferguson v. Kevin Hensel, etc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-1209memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-1209", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-13", - "case_names": "Jeremy Toler v. Roger W. Goff", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/11-0911memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "11-0911", - "nature_of_suit": "Probate", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-13", - "case_names": "Jennifer J. Grafton-Gore v. Centra Bank", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101615memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101615", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2012-01-13", - "case_names": "Donald Roger Layne v. Evelyn Siefert, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2012/101278memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "101278", - "nature_of_suit": "Civil-Other", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/wva_example.html b/tests/examples/opinions/united_states/wva_example.html index e650ed5ef..b2197614e 100644 --- a/tests/examples/opinions/united_states/wva_example.html +++ b/tests/examples/opinions/united_states/wva_example.html @@ -1,1746 +1,624 @@ - + + - - - - -Current Term Opinion List - Supreme Court of Appeals of West Virginia - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + Supreme Court of Appeals - Prior Terms | West Virginia Judiciary - - - - - - - -
    -
    -
    Opinion List Quick Tip
    - Opinion Table Exmample Photo -
      -
    • AEach column of the list can be sorted by clicking the header of that column.
    • -
    • BThe list-wide active text search or "List Search" allows the viewer to quickly search for specific information by typing a single word or multiple words, seperated by a space.
    • -
    • CA drop down menu allows the user to change the humber of list items currently showing on the page.
    • -
    -

    For more detailed help on the new features of the Opinion List, download the overview by clicking here.

    -
    -
    Open Help
    -
    - -
    -

    West Virginia Judiciary

    - -

    Opinions of the Supreme Court of Appeals

    - -
    -
    - -
    -

    Current Term Opinion List

    -

    Links to all decisions filed in the current term of court are listed in the table below. Are you looking for an opinion list from a prior term of court? If so, please visit the Information & Search page. Opinions from the September 1991 term of court to the present day are available online.

    -

    The new integrated decision list combines all of the decisions issued during a court term, identifed using case type and decision type codes. To re-sort the list quickly, click any of the column headers (except case number). For more information about using the decision list and for an explanation of the codes, review the page: About the Decision List.

    -
    -

    QUICK TIP: For more help on using the opinion table, click the Open Opinion Table Help to the right on the page. When the page loads, the Date Filed column is sorted descending.

    + + +
    +
    +
    +
    + +
    +
    +
    + +
    +
    +
    + +
    + +
    + + +
    + + +
    +
    + + +
    +
    + +
    +

    SUPREME COURT OF + APPEALS
    PRIOR TERM/YEAR OPINIONS

    +
    +

     

    +
    + + + +
    +
    + +
    +
    +
    + + +
    +
    +
    + + +
    +
    Total Opinions: 16620
    +
    +
    + +
    +
    + + + + + + +
    + + + +
    + + + + + + +
    + + + +
    + + + + + + +
    + + + +
    + + + + + + +
    + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    + +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date FiledCase NoCase NameCase TypeDecision Type
    + 11/13/2023 + 20-0040 + +

    Todd Jarell v. Frontier West + Virginia, Inc., Daniel Jordan, + and Michael Linkous (Justice + Hutchison dissenting, joined by + Justice Wooton)

    +
    + TCR + SEP
    + 11/09/2023 + 21-0754 + +

    Robert Hood v. Lincare Holdings, + Inc. (Justice Hutchison + concurring in part and + dissenting in part)

    +
    + WC + SEP
    + 11/09/2023 + 20-0040 + +

    Todd Jarell v. Frontier West + Virginia, Inc., Daniel Jordan, + and Michael + Linkous     +

    +
    + TCR + SO
    + 11/09/2023 + 22-798 + +

    In re S.B. and A.W.

    +
    + JUV + MD
    + 11/09/2023 + 22-0211 + +

    State of West Virginia v. Charles + Eric Ward

    +
    + CR-F + SO
    + 11/09/2023 + 22-0211 + +

    State of West Virginia v. Charles + Eric Ward (Justice Armstead + concurring)

    +
    + CR-F + SEP
    + 11/09/2023 + 21-0943 + +

    State of West Virginia v. Timothy + Maichle

    +
    + CR-F + SO
    + 11/09/2023 + 22-0478 and 22-602 + +

    In re Z.S.-1 and Z.S.-2 and In re + Z.S.-1 and Z.S.-2

    +
    + JUV + SO
    + 11/09/2023 + 22-678 and 22-680 + +

    In re B.H., R.H., and M.M.

    +
    + JUV + MD
    + 11/09/2023 + 22-0219 + +

    State of West Virginia v. Shane + Eric Hagerman

    +
    + CR-F + SO
    +
    + +
    + + + +
    + + + + + +
    + +
    +
    + +
    + +
    +
    +
    +
    +
    +
    +
    +
    -
    January 2012 Term of Court Opinions and Memorandum Decisions
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    January 2012 Term of Court Opinions and Memorandum Decisions
    decision Type
    Date FiledCase No.Case NameCase TypeDecision Type
    3/12/201211-0368Lawrence E. Scible v. David Ballard, WardenCIV-OMD
    3/12/201211-0432State of West Virginia v. Mark WilsonCR-FMD
    3/12/201211-0433Keith R. Jeffers v. David Ballard, WardenCIV-OMD
    3/12/2012101571James Ward v. USA, Federal Bureau of PrisonsCIV-OMD
    3/12/201211-1474In the Interest of: K.H.JUVMD
    3/12/201211-1365In the Interest of: E.M.JUVMD
    3/12/201211-1317In the Interest of: T.M.JUVMD
    3/12/201211-1263In the Interest of: B.H.JUVMD
    3/12/201211-1165In the Interest of: J.M., C.H., B.H. and C.H., Jr.JUVMD
    3/12/2012101437Tex Gene Holbrook v. David Ballard, WardenCIV-OMD
    3/12/201234359Bobby R. Hicks v. W. Va. Office of Insurance Commission/United DairyWCMD
    3/12/201211-1182In Re: M.D. and A.D.JUVMD
    3/12/201211-1161In Re: I.A. and M.A.JUVMD
    3/12/201211-1018In Re: M.M. Jr., S.M., E.M., A.M. and B.M.JUVMD
    3/12/201211-0952In Re: M.M. Jr., S.M., E.M., A.M. and B.M.JUVMD
    3/12/201211-0672Ray and Bette Kesling v. Sonshine, LLCTCRMD
    3/12/201211-1102In Re: B.K. and J.K.JUVMD
    3/12/201211-1089In Re: J.S. and K.S.JUVMD
    3/12/201211-1088In Re: A.C., A.C., A.C. and A.C.JUVMD
    3/12/201211-1086In Re: D.N.JUVMD
    3/12/201211-1078In Re: J.N.JUVMD
    3/12/201211-1026In Re: N.W.JUVMD
    3/12/201211-0979In Re: P.D. and A.D.JUVMD
    3/12/201211-0974In Re: D.C. and M.C.JUVMD
    3/12/201211-0795Sara Jane Workman v. Carl Samuel WorkmanFAMMD
    3/12/201211-0763D.G.L. v. D.K.L.FAMMD
    3/12/201211-0709State of West Virginia v. J.S.CR-OMD
    3/12/201211-0823Dana Waid Young, et al. v. Brian Waid, et al.TCRMD
    3/12/201211-0922Burch Roofing and Construction v. Mark Poh, etc.TCRMD
    3/12/201211-1568In Re: S.B.JUVMD
    3/12/201211-1552In Re: A.D., K.D., D.D., K.P., A.P. and J.P.JUVMD
    3/12/201211-1538In Re: D.N.JUVMD
    3/12/201211-1518In Re: M.W.JUVMD
    3/12/201211-1419In Re: S.W.JUVMD
    3/12/201211-1364In Re: A.S., A.S., A.S.and K.S.JUVMD
    3/12/201211-1338In Re: A.S., A.S., A.S.and K.S.JUVMD
    3/12/201211-1266In Re: NB. and Z.B.JUVMD
    3/12/201211-1150In Re: T.C., J.C., V.C., A.C., C.C., C.C. and E.C.JUVMD
    3/12/201211-1403In Re: J.W., K.W., T.W. and M.S.JUVMD
    3/12/201211-0774In Re: J.W., K.W., T.W. and M.S.JUVMD
    3/12/201211-0857State of West Virginia v. Michael MarksCR-FMD
    3/12/201211-1082Alvin Chambers v. David Ballard, WardenCIV-OMD
    3/12/201211-0923Todd A. Hicks v. Brickstreet Mutual InsuranceTCRMD
    3/12/201211-0923Todd A. Hicks v. Brickstreet Mutual InsuranceTCRMD
    3/9/201211-0417 & 11-0794State of West Virginia v. Shawn J. BaileyCR-FMD
    3/9/201211-0556State of West Virginia v. Shelley Ray GuthrieCR-FMD
    3/9/201211-0663SER Roger Repass v. Adrian Hoke, WardenCIV-OMD
    3/9/201211-0777State of West Virginia v. David KestnerCR-FMD
    3/9/201211-0778Gary D. Lanham v. W. Va. Consolidated Public Retirement BoardADMMD
    3/9/201211-0553In Re: The Adoption of Wesley G.FAMMD
    3/9/201211-0702Melissa Sue Ennis(formerly Steele) v. Andrew Blair CoxFAMMD
    3/9/201211-0814Travis Hough v. Boll MedicalCIV-OMD
    3/9/201211-0329Brent Childress v. W. Va. State Police, etc.ADMMD
    3/9/201211-0237SER Andre King v. Jim Ielapi, WardenCIV-OMD
    3/9/201211-0494SER William David Belcher v. Adrian Hoke, WardenCIV-OMD
    3/9/201211-0593SER Ernest "Sonny" Tucker v. Thomas L. McBride, WardenCIV-OMD
    3/9/201211-0988State of West Virginia v. J.D. LambertCR-FMD
    3/9/201211-0620State of West Virginia v. James Ellis SpuduckCR-FMD
    3/1/201211-0592Rebuild America v. Mark E. Davis, et al.TCRSO
    2/28/201211-0755In Re: Ashton M. (Workman, J., concurring, in part, and dissenting, in part)JUVSEP
    2/28/201211-0755In Re: Ashton M.JUVPC
    2/24/201211-0074All-Med v. Randolph Engineering Co., etc.(Workman, J. dissenting)TCRSEP
    2/24/201211-0074All-Med v. Randolph Engineering Co., etc.TCRPC
    2/24/201211-0315National Union Fire Ins. v. Jennifer Miller, etc.TCRPC
    2/24/201211-0361State of West Virginia v. Donald SurberCR-FPC
    2/24/201211-0120 & 11-0457State of West Virginia v. Paula D. Hoston, etc.CR-FSO
    2/24/201211-1514SER Massachusetts Mutual Life Ins. v. Hon. David Sanders, et al.OJ-PSO
    2/24/2012101372Larry D. Butcher v. W. Va. Office of Insurance Commissioner/J.E.T. ResourcesWCMD
    2/24/2012101370Bernadette K. Shaw v. W. Va. Office of Insurance Commissioner/Morgan Co. Board of Ed.WCMD
    2/24/2012101362Joseph Scalise v. W. Va. Office of Insurance Commissioner/Wheeling Island GamingWCMD
    2/24/2012101360Ethel Vennum v. W. Va. Office of Insurance Commissioner/Homer Laughlin ChinaWCMD
    2/24/2012101358Joseph S. Dingus v. W. Va. Office of Insurance Commissioner/Greif Brothers Corp.WCMD
    2/24/2012101312Betty J. Nease v. W. Va. Office of Insurance Commissioner/Morgans RestaurantsWCMD
    2/24/2012101305Danny Kennedy v. W. Va. Office of Insurance Commissioner/Appalachian PowerWCMD
    2/23/201211-0679Shawn Romano v. Wendy GreveFAMPC
    2/23/201211-0342State of West Virginia v. Kendra SulickCR-FSO
    2/22/201211-0442Harrison L. Epperly v. W. Va. Office of Insurance Commissioner/Apogee CoalWCMD
    2/22/2012101386Charles S. Stone v. W. Va. Office of Insurance Commissioner/Huntington AlloysWCMD
    2/22/2012101384Harrison L. Epperly v. W. Va. Office of Insurance Commissioner/Apogee CoalWCMD
    2/22/2012101383Gerald R. Jenkins v. W. Va. Office of Insurance Commissioner/Consolidation CoalWCMD
    2/22/2012101382Thomas L. Cooper v. W. Va. Office of Insurance Commissioner/Appalachian PowerWCMD
    2/22/2012101375Rennie D. Pauley v. W. Va. Office of Insurance Commissioner/Charleston Area Medical CenterWCMD
    2/22/2012101374James A. Lawson v. W. Va. Office of Insurance Commissioner/ACF IndustriesWCMD
    2/22/2012101373James A. Milam, Jr. v. W. Va. Office of Insurance Commissioner/Essential FuelsWCMD
    2/22/2012101361John D. Wood v. W. Va. Office of Insurance Commissioner/Performance CoalWCMD
    2/17/2012101397D'Mitri L. Beverly v. W. Va. Office of Insurance Commissioner/W. Va. Division of HighwaysWCMD
    2/17/2012101396Pamela S. Harding v. W. Va. Office of Insurance Commissioner/Mayflower Vehicle Systems, Inc.WCMD
    2/17/2012101395Mary J. Walter v. W. Va. Office of Insurance CommissionerWCMD
    2/17/2012101394Donald R. Spaun v. W. Va. Office of Insurance Commissioner/Century Aluminum of WV, Inc.WCMD
    2/17/2012101393Billy J. McClanahan v. W. Va. Office of Insurance Commissioner/Nichols Construction, LLCWCMD
    2/17/2012101392Mary Gannon v. W. Va. Office of Insurance Commissioner/Perry & Hylton, Inc.WCMD
    2/17/2012101391Bruce E. Benedum v. W. Va. Office of Insurance Commissioner/Mosites Construction CompanyWCMD
    2/17/2012101390Ricky D. Thomas v. W. Va. Office of Insurance Commissioner/Century Aluminum of WV, Inc.WCMD
    2/17/2012101385Consolidation Coal Company v. W. Va. Office of Insurance Commissioner/James D. WhiteWCMD
    2/17/2012101359Jackie L. Snodgrass v. W. Va. Office of Insurance Commissioner/Kroger Limited PartnershipWCMD
    2/15/2012101252Linda A. Wall v. W. Va. Office of Insurance Commissioner/Mercer Co. Board of EducationWCMD
    2/15/2012101253William E. Kendrick v. W. Va. Office of Insurance Commissioner/Gapco MiningWCMD
    2/15/2012101258Betty Estep v. W. Va. Office of Insurance Commissioner/Plott & Holbook, Inc.WCMD
    2/14/201211-0387State of West Virginia v. Steve E. BlankenshipCR-MMD
    2/14/201211-0504J.B. v. K.C. and L.C.FAMMD
    2/14/201211-0413Stoney G. Riley v. Adrian Hoke, WardenCIV-OMD
    2/14/201211-0530SER Steve A. Watkins v. Jim Rubenstein, CommissionerCIV-OMD
    2/14/201211-0133State of West Virginia v. Jack ConnerCR-FMD
    2/14/201211-0548State of West Virginia v. Henry Howard JenkinsCR-FMD
    2/14/201211-0468State of West Virginia v. R.T.CR-FMD
    2/14/201211-0342State of West Virginia v. Gerald Wayne LittleCR-FMD
    2/14/201211-0129Robert Allen Hager v. Thomas McBride, WardenCIV-OMD
    2/14/201211-0462State of West Virginia v. Stephanie D. PauleyCR-FMD
    2/14/201211-0056Agnieszka Collins v. Barbara L. Stewart, et al.TCRMD
    2/14/201211-0146State of West Virginia v. Megan RymanCR-FMD
    2/14/201211-0563State of West Virginia v. Scott E. MinnickCR-FMD
    2/14/201211-0458State of West Virginia v. Roger A. McKinneyCR-FMD
    2/14/201211-0661Frances A. Preast v. Burl Keith Skaggs, et al.ADMMD
    2/14/201211-0077D.C. v. Wayne Co. Board of EducationADMMD
    2/14/201211-0185Dean Miner v. Ricardo PachecoTCRMD
    2/14/201211-0278Mitch Nelson v. Board of Education of Boone Co.ADMMD
    2/14/201211-0650Kathy S. Lefler v. W. Va. Dept. of EducationADMMD
    2/13/201211-1405 & 11-1447, etc.SER Thornton Cooper v. Natalie E. Tennant, Sec. of State, etc.OJ-MSO
    2/13/201211-0596Sanford D. Creameans v. Christopher D. Chiles, Pros. AttorneyCIV-OMD
    2/13/201211-0874State of West Virginia v. Matthew Jonathan RobeyCR-FMD
    2/13/201211-0619State of West Virginia v. Michelle BryantCR-FMD
    2/13/201211-0570Dana and Nancy Singleton v. Citizens Bank of WestonTCRMD
    2/13/201211-0966In Re: J.S. and K.S.JUVMD
    2/13/201211-0930In Re: A.S. and W.M.JUVMD
    2/13/201211-0913In Re: E.M.JUVMD
    2/13/201211-0860In Re: A.M., S.M. and B.B.JUVMD
    2/13/201211-0690State of West Virginia v. Brian Keith HubbardCR-FMD
    2/13/201211-0636State of West Virginia v. Dustin Chad ReedCR-FMD
    2/13/201211-0534State of West Virginia v. Sherri WukesonCR-FMD
    2/13/201211-0545Samuel P. Sommerville, et al. v. Robert B. RausenbergerTCRMD
    2/13/201211-1366In Re: I.F. and I.C.JUVMD
    2/13/201211-1347In Re: S.B. and D.B.JUVMD
    2/13/201211-1311In Re: D.B., F.B. and T.S.JUVMD
    2/13/201211-1242In Re: S.O.JUVMD
    2/13/201211-0724In Re: the Matter of J.B. and J.B.FAMMD
    2/13/201211-0918State of West Virginia v. Danny Honaker, Jr.CR-FMD
    2/13/201211-0835State of West Virginia v. Miguel PerezCR-FMD
    2/13/201211-0825State of West Virginia v. John PayneCR-FMD
    2/13/201211-0760State of West Virginia v. Joseph SuberCR-FMD
    2/13/201211-0714State of West Virginia v. Thomas Eugene Gardner, Jr.CR-FMD
    2/13/201211-0633State of West Virginia v. David L. HunterCR-FMD
    2/13/201211-0562State of West Virginia v. Larry E. Mayle, Jr.CR-FMD
    2/13/201211-0829William Nesbitt v. Shannon Markle, AdministratorCIV-OMD
    2/13/201211-0852Melissa Dixon v. Estate of Faye Hudson, etc.PRMD
    2/10/201211-1358 & 11-1360SER W. Va. Dept. of Transportation v. Hon. Jeffrey B. Reed (Workman, J. dissenting)OJ-PSEP
    2/10/201211-1358 & 11-1360SER W. Va. Dept. of Transportation v. Hon. Jeffrey B. ReedOJ-PSO
    2/10/201211-0073In Re: The Marriage of: Zickefoose v. Zickefoose(Workman, J. concurring, in part, and dissenting, in part)FAMSEP
    2/10/201211-0073In Re: The Marriage of: Zickefoose v. ZickefooseFAMSO
    2/10/201211-1404SER Coal Age, Inc. v. Hon. Warren R. McGraw, et al.CIV-OMD
    2/10/201211-0257John S. Shannon v. City of Hurricane, et al.CIV-OMD
    2/10/201211-0277Gregory Allan Zerkel v. Dana C. Zerkel n/k/a LeechFAMMD
    2/10/201211-0211State of West Virginia v. Freddie Lee BraggCR-FMD
    2/10/201211-0599State of West Virginia v. Kenneth LenhartCR-FMD
    2/10/201211-1627SER Baker Installation v. Hon. Carrie Webster, JudgeOJ-MMD
    2/9/201211-0397Katy Addair v. Litwar Processing Co.TCRMD
    2/9/201211-0248 & 11-0701Shenandoah Sales v. Assessor of Jefferson Co., etcADMSO
    2/9/201211-1260Big Lots Stores v. Rebecca and Kevin ArbogastTCRPC
    1/20/2012101347Marvin Shawn Bench v. W. Va. Office of Insurance Commissioner/Spartan MiningWCMD
    1/19/2012101172Danny L. Boyles v. W. Va. Office of Insurance Commissioner/Turn 4 Truck and AutoWCMD
    1/19/2012101116Jeana L. Hicks v. W. Va. Office of Insurance Commissioner/Westmoreland CoalWCMD
    1/19/2012101102Shirley Snyder v. W. Va. Office of Insurance Commissioner//Bayer Corp.WCMD
    1/19/2012101071Michael F. Estremera v. W. Va. Office of Insurance Commissioner/Royal HarvestWCMD
    1/19/2012101060Roger L. Harris v. W. Va. Office of Insurance Commissioner/Patriot MiningWCMD
    1/19/2012100965Richard D. Spurlock v. W. Va. Office of Insurance Commissioner/Appalachian PowerWCMD
    1/19/2012101561Richard D. Spurlock v. W. Va. Office of Insurance Commissioner/Appalachian PowerWCMD
    1/27/201211-0565Steven M. Posey and Michelle E. Posey v. City of BuckhannonTCRSO
    1/19/201211-0206Albert Postlewait, Jr. v. City of WheelingTCRSO
    1/19/201211-0206Albert Postlewait, Jr. v. City of Wheeling
    (Davis, J. dissenting)
    TCRSEP
    1/19/201211-0399State of West Virginia v. Timothy Michael WaldronCR-FSO
    1/19/201211-0191William Watson Jr. v. W. Va. DHHR and Mildred-Mitchell Bateman HospitalADMMD
    1/18/201211-1080In Re: S.M. and F.M.JUVMD
    1/18/201211-1079In Re: S.M. and F.M.JUVMD
    1/18/201211-1210In Re: R.P.JUVMD
    1/18/201211-1227In Re: J. O. and I.O.JUVMD
    1/18/201211-1087In Re: A.W.JUVMD
    1/18/201211-1040In Re: D.D.JUVMD
    1/18/201211-1027In Re: B.C., C.C. and A.C.JUVMD
    1/18/201211-0951In Re: E.B.JUVMD
    1/18/201211-1137In Re: T.C., J.C., V.C., A.C., C.C., C.C. and E.C.JUVMD
    1/18/201211-0696In Re: I.G., L.G., J.H., G.N. III, and T.N.JUVMD
    1/18/201211-0798In Re: B.D.JUVMD
    1/18/201211-0807In Re: B.D.JUVMD
    1/18/201211-0834In Re: K.M.JUVMD
    1/18/201211-0907In Re: K.S.JUVMD
    1/18/201211-0317State of West Virginia v. Shawn McCamickCR-FMD
    1/13/2012101278Donald Roger Layne v. Evelyn Siefert, WardenCIV-OMD
    1/13/2012101602Richard E. Smallwood v. Patrick SmallwoodPRMD
    1/13/2012101615Jennifer J. Grafton-Gore v. Centra BankTCRMD
    1/13/2012101573Robert Sanchez v. Tod BensonTCRMD
    1/13/201211-0597Marlon Ferguson v. Nicholas J. WallTCRMD
    1/13/201211-1209Marlon Ferguson v. Kevin Hensel, etc.TCRMD
    1/13/201211-0911Jeremy Toler v. Roger W. GoffPRMD
    - -
    -
    - + - + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/wva_example_2.compare.json b/tests/examples/opinions/united_states/wva_example_2.compare.json deleted file mode 100644 index 5404619fa..000000000 --- a/tests/examples/opinions/united_states/wva_example_2.compare.json +++ /dev/null @@ -1,739 +0,0 @@ -[ - { - "case_dates": "2017-02-09", - "case_names": "West Virginia CVS Pharmacy, LLC v. McDowell Pharmacy, Inc.", - "download_urls": "tests/examples/opinions/united_states/docs/spring2017/16-0209.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0209", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-09", - "case_names": "Tony Coffman v. Nicholas County Commission", - "download_urls": "tests/examples/opinions/united_states/docs/spring2017/15-1223d-ketchum.pdf", - "precedential_statuses": "Separate", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1223", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-09", - "case_names": "Tony Coffman v. Nicholas County Commission", - "download_urls": "tests/examples/opinions/united_states/docs/spring2017/15-1223c-workman.pdf", - "precedential_statuses": "Separate", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1223", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-09", - "case_names": "Tony Coffman v. Nicholas County Commission", - "download_urls": "tests/examples/opinions/united_states/docs/spring2017/15-1223.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1223", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-09", - "case_names": "Joyce E. Minnich v. MedExpress Urgent Care, Inc. - West Virginia", - "download_urls": "tests/examples/opinions/united_states/docs/spring2017/15-1148.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1148", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-09", - "case_names": "In the Matter Of: The Hon. Stephen O. Callaghan, Judge-Elect of the 28th Circuit", - "download_urls": "tests/examples/opinions/united_states/docs/spring2017/16-0670cd-matish.pdf", - "precedential_statuses": "Separate", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0670", - "nature_of_suit": "Bar/Judiciary Proceeding-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-09", - "case_names": "In the Matter Of: The Hon. Stephen O. Callaghan, Judge-Elect of the 28th Circuit", - "download_urls": "tests/examples/opinions/united_states/docs/spring2017/16-0670.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0670", - "nature_of_suit": "Bar/Judiciary Proceeding-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-08", - "case_names": "State of W.Va. ex rel. J.E.H.G. v. Hon. Todd Kaufman", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0931memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0931", - "nature_of_suit": "Writ Application-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-08", - "case_names": "In Re: Involuntary Hospitalization of T.O.", - "download_urls": "tests/examples/opinions/united_states/docs/spring2017/16-0095.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0095", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "William S. Plumley v. Essroc Ready Mix", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0190memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0190", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Theodore B. Stuart v. West Virginia Division of Juvenile Services", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0170memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0170", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Scott A. Collins v. Murray American Energy", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0185memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0185", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Pro Nursing & Health Services v. Aricia L. Blake", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0180memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0180", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Michael Harmon v. Globe Specialty Metals", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0192memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0192", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Joyce Wilson, Widow v. Island Creek Coal Co.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0234memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0234", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "John Williams Jr. v. Arcelormittal USA XBM Princeton Division", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0177memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0177", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "John W. Richmond v. Summers County Board of Education", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0035memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0035", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "John Arnold v. Murray American Energy", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0020memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0020", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Jennifer Johns v. Thomas Health Systems, Inc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0187memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0187", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Jennifer Johns v. Thomas Health Systems, Inc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0186memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0186", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Jamie Burcham v. City of Huntington", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0189memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0189", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Jamie Burcham v. City of Huntington", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0188memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0188", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "George Toler v. Argus Energy WV", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0236memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0236", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "George F. Butcher v. W. Va. Ofc. of Ins. Comm./A.C. Dellovade, Inc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0161memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0161", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Gene Fowler Jr. v. Brand Services, Inc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0171memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0171", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Gary L. Franks v. L & M Fire Protection, LLC", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0039memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0039", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Frederick G. Stollings v. Apogee Coal Co.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0179memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0179", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Donald R. Fearer v. Monongalia County Commission", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0233memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0233", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "David Mills v. Alpha Natural Resources", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0101memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0101", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Charles Shope v. Huntington Alloys Corp.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0162memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0162", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Charles Morris v. Fayette County Board of Education", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0108memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0108", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Candy Workman v. Sundance Services Corp.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0105memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0105", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Bonnie K. Maynard v. Kroger Limited Partnership I", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0040memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0040", - "nature_of_suit": "Workers Compensation", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-27", - "case_names": "State of West Virginia v. Wayne Dubuque", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0357memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0357", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-27", - "case_names": "State of West Virginia v. Mishell Rose Fidler", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/15-1196memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1196", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-27", - "case_names": "State of West Virginia v. Mark Alan Moran", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0071memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0071", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-27", - "case_names": "State of West Virginia v. Heney W.J.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0088memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0088", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-27", - "case_names": "State of West Virginia v. Billy W.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0345memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0345", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-27", - "case_names": "In Re: R.M., An Alleged Protected Person", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0200memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0200", - "nature_of_suit": "Family", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-27", - "case_names": "George Papandreas v. Willian Kawecki", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0619memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0619", - "nature_of_suit": "Criminal-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-27", - "case_names": "E.B. v. W. Va. Regional Jail and Correctional Authority, etc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0090and16-0092memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0090 & 16-0092", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "E.B." - }, - { - "case_dates": "2017-01-26", - "case_names": "W. Va. State Police, Corporal R.D. Eshbaugh v. Victoria Hughes, Administratrix", - "download_urls": "tests/examples/opinions/united_states/docs/spring2017/15-0691.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-0691", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-26", - "case_names": "Gary D. and Barbara M. Hoke v. Board of Education of the County of Monroe", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/15-0972memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-0972", - "nature_of_suit": "Administrative Agency-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-26", - "case_names": "David Earl Bowyer v. Deborah L. Wyckoff", - "download_urls": "tests/examples/opinions/united_states/docs/spring2017/15-1139.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1139", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-20", - "case_names": "Rossi A. Gray, Jr. v. David Ballard, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0198memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0198", - "nature_of_suit": "Post-Conviction Appeal", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-20", - "case_names": "R.L. v. P.H.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0152memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0152", - "nature_of_suit": "Family", - "case_name_shorts": "R.L." - }, - { - "case_dates": "2017-01-20", - "case_names": "Phillip Reese Bush v. David Ballard, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0201memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0201", - "nature_of_suit": "Post-Conviction Appeal", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-20", - "case_names": "Judith T. v. Andrea D., Steven T., and Doe", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0212memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0212", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-20", - "case_names": "Drenda Auvil v. Most Reverend Michael J. Bransfield, Bishop, etc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/15-0851memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-0851", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-19", - "case_names": "State of West Virginia v. Rashaun R. Boyd and Christopher R. Wyche", - "download_urls": "tests/examples/opinions/united_states/docs/spring2017/15-0878and15-0894.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-0878 & 15-0894", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-19", - "case_names": "Patricia S. Reed, Comm. Dept. of Motor Vehicles v. Benjamin J. McGrath", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/15-1147memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1147", - "nature_of_suit": "Administrative Agency-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-19", - "case_names": "DWG Oil & Gas Acquistions v. Southern Country Farms", - "download_urls": "tests/examples/opinions/united_states/docs/spring2017/16-0069.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0069", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-09", - "case_names": "State of West Virginia v. Nathaniel Showalter", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0086memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0086", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-09", - "case_names": "State of West Virginia v. Londa Mae Hogue", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0278memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0278", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-09", - "case_names": "State of West Virginia v. Joshua McCoy", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/15-1117memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-1117", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-09", - "case_names": "State of West Virginia v. Jackie S.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/15-0985memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-0985", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-09", - "case_names": "Jack V. v. Ralph Terry, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/15-0849memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "15-0849", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-09", - "case_names": "In Re: Z.H. and N.H.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0624memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0624", - "nature_of_suit": "Juvenile", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-09", - "case_names": "In Re: P.B.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0650memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0650", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: P.B." - }, - { - "case_dates": "2017-01-09", - "case_names": "In Re: J.P.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0364and16-0654memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0364 & 16-0654", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: J.P." - }, - { - "case_dates": "2017-01-09", - "case_names": "In Re: C.D.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0810memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0810", - "nature_of_suit": "Juvenile", - "case_name_shorts": "In Re: C.D." - }, - { - "case_dates": "2017-01-09", - "case_names": "Deborah A. Phipps v. Lori Nohe, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0126memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0126", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-09", - "case_names": "Charles L. Pearcy IV v. Karen Pszczolkowski, Warden", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0206memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0206", - "nature_of_suit": "Civil-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-06", - "case_names": "Stephen Upton v. Municipality of the Town of Flatwoods", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0204memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0204", - "nature_of_suit": "Criminal-Other", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-06", - "case_names": "State of West Virginia v. Humane Society of Raleigh County", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0414memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0414", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-06", - "case_names": "State of West Virginia v. Brannon J. Hamilton", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0007memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0007", - "nature_of_suit": "Felony (non-Death Penalty)", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-06", - "case_names": "Mitchell Brozik and MB Security v. Betty Parmer, etc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/spring2017/16-0292and16-0400and16-0238memo.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "16-0292 & 16-0400 & 16-0238", - "nature_of_suit": "Tort, Contract, and Real Property", - "case_name_shorts": "" - } -] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/wva_example_2.html b/tests/examples/opinions/united_states/wva_example_2.html deleted file mode 100644 index 309abe936..000000000 --- a/tests/examples/opinions/united_states/wva_example_2.html +++ /dev/null @@ -1,934 +0,0 @@ - - - - - - - -Current Term Opinion List - Supreme Court of Appeals of West Virginia - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    Opinion List Quick Tip
    - Opinion Table Exmample Photo -
      -
    • AEach column of the list can be sorted by clicking the header of that column.
    • -
    • BThe list-wide active text search or "List Search" allows the viewer to quickly search for specific information by typing a single word or multiple words, seperated by a space.
    • -
    • CA drop down menu allows the user to change the humber of list items currently showing on the page.
    • -
    -

    For more detailed help on the new features of the Opinion List, download the overview by clicking here.

    -
    -
    Open Help
    -
    - -
    -

    West Virginia Judiciary

    - -

    Opinions and Memo Decisions of the Supreme Court of Appeals

    - -
    -
    - -
    -

    Current Term Opinion List

    - - - -

    Links to all decisions filed in the current term of court are listed in the table below. Are you looking for an opinion list from a prior term of court? If so, please visit the Information & Search page. Opinions from the September 1991 term of court to the present day are available online.

    -

    The new integrated decision list combines all of the decisions issued during a court term, identifed using case type and decision type codes. To re-sort the list quickly, click any of the column headers (except case number). For more information about using the decision list and for an explanation of the codes, review the page: About the Decision List.

    -
    -

    QUICK TIP: For more help on using the opinion table, click the Open Opinion Table Help to the right on the page. When the page loads, the Date Filed column is sorted descending.

    -
    -
    Current Term of Court Opinions and Memorandum Decisions
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Current Term of Court Opinions and Memorandum Decisions -
    Decision Type
    Date FiledCase No.Case NameCase TypeDecision Type
    02/09/201716-0670In the Matter Of: The Hon. Stephen O. Callaghan, Judge-Elect of the 28th Circuit (Concurring, in part, and dissenting, in part, opinion by Matish, Judge)J-DISCSEP
    02/09/201716-0670In the Matter Of: The Hon. Stephen O. Callaghan, Judge-Elect of the 28th CircuitJ-DISCSO
    02/09/201716-0209West Virginia CVS Pharmacy, LLC, et al. v. McDowell Pharmacy, Inc., et al.TCRSO
    02/09/201715-1223Tony Coffman, et al. v. Nicholas County Commission, et al. (Dissenting opinion by Ketchum, J.)TCRSEP
    02/09/201715-1223Tony Coffman, et al. v. Nicholas County Commission, et al. (Concurring opinion by Workman, J.)TCRSEP
    02/09/201715-1223Tony Coffman, et al. v. Nicholas County Commission, et al.TCRSO
    02/09/201715-1148Joyce E. Minnich, Executrix v. MedExpress Urgent Care, Inc. - West VirginiaTCRSO
    02/08/201716-0095In Re: Involuntary Hospitalization of T.O.CIV-OSO
    02/08/201716-0931State of W.Va. ex rel. J.E.H.G. v. Hon. Todd Kaufman, et al.OJ-PMD
    02/03/201716-0020John Arnold v. Murray American EnergyWCMD
    02/03/201716-0035John W. Richmond v. Summers County Board of EducationWCMD
    02/03/201716-0039Gary L. Franks v. L & M Fire Protection, LLCWCMD
    02/03/201716-0040Bonnie K. Maynard v. Kroger Limited Partnership IWCMD
    02/03/201716-0101David Mills v. Alpha Natural ResourcesWCMD
    02/03/201716-0105Candy Workman v. Sundance Services Corp.WCMD
    02/03/201716-0108Charles Morris v. Fayette County Board of EducationWCMD
    02/03/201716-0161George F. Butcher v. W. Va. Ofc. of Ins. Comm./A.C. Dellovade, Inc.WCMD
    02/03/201716-0162Charles Shope v. Huntington Alloys Corp.WCMD
    02/03/201716-0171Gene Fowler Jr. v. Brand Services, Inc.WCMD
    02/03/201716-0177John Williams Jr. v. Arcelormittal USA XBM Princeton Division WCMD
    02/03/201716-0179Frederick G. Stollings v. Apogee Coal Co.WCMD
    02/03/201716-0180Pro Nursing & Health Services v. Aricia L. BlakeWCMD
    02/03/201716-0170Theodore B. Stuart v. West Virginia Division of Juvenile ServicesWCMD
    02/03/201716-0185Scott A. Collins v. Murray American EnergyWCMD
    02/03/201716-0186Jennifer Johns v. Thomas Health Systems, Inc.WCMD
    02/03/201716-0187Jennifer Johns v. Thomas Health Systems, Inc.WCMD
    02/03/201716-0188Jamie Burcham v. City of HuntingtonWCMD
    02/03/201716-0189Jamie Burcham v. City of HuntingtonWCMD
    02/03/201716-0190William S. Plumley v. Essroc Ready MixWCMD
    02/03/201716-0192Michael Harmon v. Globe Specialty MetalsWCMD
    02/03/201716-0233Donald R. Fearer v. Monongalia County CommissionWCMD
    02/03/201716-0234Joyce Wilson, Widow v. Island Creek Coal Co.WCMD
    02/03/201716-0236George Toler v. Argus Energy WVWCMD
    01/27/201716-0619George Papandreas, et al. v. Willian Kawecki, et al.CR-OMD
    01/27/201716-0357State of West Virginia v. Wayne DubuqueCR-FMD
    01/27/201716-0345State of West Virginia v. Billy W.CR-FMD
    01/27/201716-0200In Re: R.M., An Alleged Protected PersonFAMMD
    01/27/201716-0090 & 16-0092E.B. v. W. Va. Regional Jail and Correctional Authority, etc.TCRMD
    01/27/201716-0088State of West Virginia v. Heney W.J.CR-FMD
    01/27/201716-0071State of West Virginia v. Mark Alan MoranCR-FMD
    01/27/201715-1196State of West Virginia v. Mishell Rose FidlerCR-FMD
    01/26/201715-0691W. Va. State Police, Corporal R.D. Eshbaugh, et al. v. Victoria Hughes, AdministratrixTCRSO
    01/26/201715-1139David Earl Bowyer v. Deborah L. Wyckoff, et al.TCRSO
    01/26/201715-0972Gary D. and Barbara M. Hoke v. Board of Education of the County of MonroeADMMD
    01/20/201716-0201Phillip Reese Bush v. David Ballard, WardenPOSTMD
    01/20/201716-0198Rossi A. Gray, Jr. v. David Ballard, WardenPOSTMD
    01/20/201715-0851Drenda Auvil v. Most Reverend Michael J. Bransfield, Bishop, etc.TCRMD
    01/20/201716-0212Judith T. v. Andrea D., Steven T., and Defendant DoeCIV-OMD
    01/20/201716-0152R.L. v. P.H.FAMMD
    01/19/201715-0878 & 15-0894State of West Virginia v. Rashaun R. Boyd and Christopher R. WycheCR-FSO
    01/19/201716-0069DWG Oil & Gas Acquistions v. Southern Country Farms, et al.TCRSO
    01/19/201715-1147Patricia S. Reed, Comm. Dept. of Motor Vehicles v. Benjamin J. McGrath Davis, J. Concurring Loughry, C.J. DissentingADMMD
    01/09/201716-0810In Re: C.D.JUVMD
    01/09/201716-0650In Re: P.B.JUVMD
    01/09/201716-0624In Re: Z.H. and N.H.JUVMD
    01/09/201716-0364 & 16-0654In Re: J.P.JUVMD
    01/09/201716-0278State of West Virginia v. Londa Mae HogueCR-FMD
    01/09/201716-0206Charles L. Pearcy IV v. Karen Pszczolkowski, WardenCIV-OMD
    01/09/201716-0126Deborah A. Phipps v. Lori Nohe, WardenCIV-OMD
    01/09/201716-0086State of West Virginia v. Nathaniel ShowalterCR-FMD
    01/09/201715-1117State of West Virginia v. Joshua McCoyCR-FMD
    01/09/201715-0849Jack V. v. Ralph Terry, WardenCIV-OMD
    01/09/201715-0985State of West Virginia v. Jackie S.CR-FMD
    01/06/201716-0414State of West Virginia v. Humane Society of Raleigh CountyTCRMD
    01/06/201716-0292 & 16-0400 &
    -16-0238
    Mitchell Brozik and MB Security v. Betty Parmer, etc.TCRMD
    01/06/201716-0204Stephen Upton v. Municipality of the Town of FlatwoodsCR-OMD
    01/06/201716-0007State of West Virginia v. Brannon J. HamiltonCR-FMD
    -
    -
    - - - diff --git a/tests/examples/opinions/united_states/wvactapp_example.compare.json b/tests/examples/opinions/united_states/wvactapp_example.compare.json index 9edb2345a..c670a9609 100644 --- a/tests/examples/opinions/united_states/wvactapp_example.compare.json +++ b/tests/examples/opinions/united_states/wvactapp_example.compare.json @@ -1,298 +1,551 @@ [ { - "case_dates": "2022-12-09", - "case_names": "David Duff, II v. Kanawha County Commission", - "download_urls": "tests/examples/opinions/united_states/docs/Fall2022/22-ICA-10-Scarr.pdf", + "case_dates": "2024-01-12", + "case_names": "Richard Kevin Jackson v. Janet Lee Jackson", + "download_urls": "/sites/default/pubfilesmnt/2024-01/23-ICA-162_MD.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-10", + "docket_numbers": "23-ica-162", + "nature_of_suit": "Family", + "case_name_shorts": "" + }, + { + "case_dates": "2023-12-15", + "case_names": "Richard B. Timmis v. Charles P. Andrew", + "download_urls": "/sites/default/pubfilesmnt/2023-12/22-ICA-235_MD.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-235", + "nature_of_suit": "Probate", + "case_name_shorts": "" + }, + { + "case_dates": "2023-12-08", + "case_names": "Ford Motor Company v. Angel Ellen Tyler, as Administrator of the Estate of Kristen Bumgardner", + "download_urls": "/sites/default/pubfilesmnt/2023-12/22-ICA-208%20Opinion.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-208", + "nature_of_suit": "Tort, Contract, and Real Property", + "case_name_shorts": "" + }, + { + "case_dates": "2023-12-08", + "case_names": "DD Oil Company v. State of West Virginia, ex rel., Harold D. Ward, Cabinet Secretary, West Virginia Department of Environmental Protection, (Judge Lorensen dissenting.)", + "download_urls": "/sites/default/pubfilesmnt/2023-12/22-ICA-74%20Separate%20Opinion.pdf", + "precedential_statuses": "Separate", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-74", + "nature_of_suit": "Administrative Agency-Other", + "case_name_shorts": "" + }, + { + "case_dates": "2023-12-08", + "case_names": "DD Oil Company v. State of West Virginia, ex rel., Harold D. Ward, Cabinet Secretary, West Virginia Department of Environmental Protection", + "download_urls": "/sites/default/pubfilesmnt/2023-12/22-ICA-74_so.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-74", + "nature_of_suit": "Administrative Agency-Other", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-29", + "case_names": "Jay Folse v. G. Russell Rollyson, Jr. and John McCuskey, Jr.", + "download_urls": "/sites/default/pubfilesmnt/2023-11/22-ICA-243-sep-greear.pdf", + "precedential_statuses": "Separate", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-243", + "nature_of_suit": "Civil-Other", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-16", + "case_names": "Nicholas A. Ghaphery, D.O., as Personal Representative of the Estate of Austin Ghaphery v. Wheeling Treatment Center, LLC and John Schultz, M.D.", + "download_urls": "/sites/default/pubfilesmnt/2023-11/22-ICA-150%20md.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-150", + "nature_of_suit": "Tort, Contract, and Real Property", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-16", + "case_names": "Jay Folse v. G. Russell Rollyson, Jr. and John McCuskey, Jr.", + "download_urls": "/sites/default/pubfilesmnt/2023-11/22-ICA-243.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-243", + "nature_of_suit": "Civil-Other", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-16", + "case_names": "Andrea Dale Dye v. Farmers & Mechanics Mutual Insurance Company of West Virginia", + "download_urls": "/sites/default/pubfilesmnt/2023-11/22-ICA-301md.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-301", + "nature_of_suit": "Tort, Contract, and Real Property", + "case_name_shorts": "" + }, + { + "case_dates": "2023-11-16", + "case_names": "Abigail Shoemaker, Mary Shoemaker, and Chris Shoemaker v. Tazewell County Public Schools and Kimberly Benson", + "download_urls": "/sites/default/pubfilesmnt/2023-11/22-ICA-327.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-327", + "nature_of_suit": "Tort, Contract, and Real Property", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-05", + "case_names": "WorkForce West Virginia v. Sara Jonese and Pocahontas County Board of Education", + "download_urls": "/sites/default/pubfilesmnt/2023-09/22-ICA-131_0.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-131", + "nature_of_suit": "Administrative Agency-Other", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-05", + "case_names": "WorkForce West Virginia v. Christina Gaddy", + "download_urls": "/sites/default/pubfilesmnt/2023-09/22-ICA-110.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-110", + "nature_of_suit": "Administrative Agency-Other", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-05", + "case_names": "WorkForce West Virginia v. Beverly Kirker", + "download_urls": "/sites/default/pubfilesmnt/2023-09/22-ICA-125.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-125", + "nature_of_suit": "Administrative Agency-Other", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-05", + "case_names": "Wolf Run Mining, LLC v. Darden Woodford", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-129.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-ica-129", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-12-02", - "case_names": "SWVA, Inc. v. Brandon M. Caudill", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-57 md.pdf", + "case_dates": "2023-09-05", + "case_names": "West Virginia Department of Transportation Division of Highways v. Amanda Nicole Justus", + "download_urls": "/sites/default/pubfilesmnt/2023-09/22-ICA-197.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-197", + "nature_of_suit": "Administrative Agency-Other", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-05", + "case_names": "West Virginia Department of Health and Human Resources Bureau for Child Support Enforcement v. Shawn O.", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-8.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-57", + "docket_numbers": "23-ica-8", + "nature_of_suit": "Family", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-05", + "case_names": "Virginia Smith, Dependent of Walter F. Smith (Deceased) v. Pine Ridge and The Insurance Commissioner of West Virginia in its capacity as administrator of The Self-insured Employer Security Risk Pool", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-156.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-ica-156", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "Vinson Clagg v. Service Wire Company", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-73 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Stephen Saunders v. ACNR Resources, Inc.", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-161.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-73", + "docket_numbers": "23-ica-161", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "Rob Juszczak Construction v. John Juszczak", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-29 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Ryan Marstiller v. Masters of Disasters, LLC", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-119.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-29", + "docket_numbers": "23-ica-119", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "Randy D. Bohall v. Murray American Energy, Inc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-88 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Rhino Energy, LLC v. Kenneth Cole", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-136.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-88", + "docket_numbers": "23-ica-136", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "Newport Trading Co., Inc. v. Larry R. Hicks", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-104 md.pdf", + "case_dates": "2023-09-05", + "case_names": "ROC Service Company, LC v. Antonio Smith", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-152.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-104", + "docket_numbers": "23-ica-152", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "Michael L. Dean v. Arch Coal, Inc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-86 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Quinn Transportation, LLC v. Daniel T. Park", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-186.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-86", + "docket_numbers": "23-ica-186", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "Linda A. Watson v. Homer Laughlin China Company", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-37 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Onnie Watson v. Schenker Logistics", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-102.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-37", + "docket_numbers": "23-ica-102", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "John Juszczak v. Rob Juszczak Construction", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-8 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Nicholas Community Action Partnership, Inc. v. Maggie Jarrett", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-133-revised.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-8", + "docket_numbers": "23-ica-133", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "James E. Stover v. West Virginia Division of Highways", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-55 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Matthew B. v. Kimberly W.", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-60.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-ica-60", + "nature_of_suit": "Family", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-05", + "case_names": "Mark M. Samaan, M.D. v. West Virginia Board of Medicine", + "download_urls": "/sites/default/pubfilesmnt/2023-09/22-ICA-175.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-175", + "nature_of_suit": "Administrative Agency-Other", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-05", + "case_names": "Kevin Davis v. Wayne County Board of Education", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-209.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-55", + "docket_numbers": "23-ica-209", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "George E. Keaton v. Beckley Garbage Disposal", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-32 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Katherine C. v. A.A. Moore C.", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-78.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-32", + "docket_numbers": "23-ica-78", + "nature_of_suit": "Family", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-05", + "case_names": "John J. Delsignore v. Timberline Logging Enterprises, LLC", + "download_urls": "/sites/default/pubfilesmnt/2023-09/22-ICA-331.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-331", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "Dewayne Roberts v. Daniel Watson Masonry, LLC", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-51 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Jennifer Belcher v. West Virginia Parkways Authority", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-61.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-51", + "docket_numbers": "23-ica-61", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "David E. Honaker v. Justice Family Group, LLC", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-84 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Jeanette Wood, Dependent of John D. Wood (Deceased) v. Pine Ridge Coal Company, LLC and West Virginia Offices of the Insurance Commissioner, in its capacity as administrator of the Guaranty Risk Pool", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-177.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-84", + "docket_numbers": "23-ica-177", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "Andrew C. v. Hillary C.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-172 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Jared Smith v. Arcelormittal", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-113.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-172", + "docket_numbers": "23-ica-113", + "nature_of_suit": "Workers Compensation", + "case_name_shorts": "Arcelormittal" + }, + { + "case_dates": "2023-09-05", + "case_names": "Heidi Y. v. Jordan C.", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-62.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-ica-62", "nature_of_suit": "Family", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "Amanda C. v. Christopher P.", - "download_urls": "tests/examples/opinions/united_states/docs/Fall2022/22-ICA-0002-sep-Scarr.pdf", - "precedential_statuses": "Separate", + "case_dates": "2023-09-05", + "case_names": "Gordon Martin v. Food Lion, Inc.", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-120.pdf", + "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-2", - "nature_of_suit": "Family", + "docket_numbers": "23-ica-120", + "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-18", - "case_names": "Amanda C. v. Christopher P.", - "download_urls": "tests/examples/opinions/united_states/docs/Fall2022/22-ICA-0002-greear-p.pdf", + "case_dates": "2023-09-05", + "case_names": "Glen Trader v. ACNR Resources, Inc.", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-126-23-ICA-139.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-2", - "nature_of_suit": "Family", + "docket_numbers": "23-ica-126 23-ica-139", + "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-15", - "case_names": "Richard Heath v. Alliance Coal LLC", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-17 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Gayla Adkins v. Brightspring Healthcare Services", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-197.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-17", + "docket_numbers": "23-ica-197", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-15", - "case_names": "Murray American Energy, Inc. v. Sean Stapel", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-33 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Evans Construction Company v. Anthony Schau", + "download_urls": "/sites/default/pubfilesmnt/2023-09/22-ICA-322-corrected.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-33", + "docket_numbers": "22-ica-322", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-15", - "case_names": "Murray American Energy, Inc. v. Sean Stapel", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-11 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Evan C. v. Ali C.", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-73.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-11", + "docket_numbers": "23-ica-73", + "nature_of_suit": "Family", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-05", + "case_names": "Emma Harris, Dependent of Carl Harris (Deceased) v. Pine Ridge and The Insurance Commissioner of West Virginia in its capacity as administrator of the Self-Insured Employer Security Risk Pool", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-188.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-ica-188", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-15", - "case_names": "Kirk Trucking Co, Inc. v. Joseph S. Maynard", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-14 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Elmer Hurley v. Chubby's Logging", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-6.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-14", + "docket_numbers": "23-ica-6", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-15", - "case_names": "Dallas Hankins v. Sprouting Farms Corp.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-12 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Clinton T. Drainer v. Division of Highways", + "download_urls": "/sites/default/pubfilesmnt/2023-09/22-ICA-195.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-12", + "docket_numbers": "22-ica-195", + "nature_of_suit": "Administrative Agency-Other", + "case_name_shorts": "" + }, + { + "case_dates": "2023-09-05", + "case_names": "Caitlin R. Workman v. ACNR Resources, Inc.", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-14.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "23-ica-14", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-15", - "case_names": "Christopher Adams v. United Parcel Service, Inc.", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-16 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Brenda G. Blevins v. Community Hospital Association", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-56.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-16", + "docket_numbers": "23-ica-56", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-15", - "case_names": "Charlene D. Fleshman, aka Charlene D. Christy v. James A. Fleshman", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-20 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Blackhawk Mining, LLC v. Joseph Browning", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-163.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-20", - "nature_of_suit": "Family", + "docket_numbers": "23-ica-163", + "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-15", - "case_names": "Breanna Sargent v. On The Rocks, LLC", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-35 md.pdf", + "case_dates": "2023-09-05", + "case_names": "Alvin J. Cook, Jr. v. Cecil I. Walker Machinery Co.", + "download_urls": "/sites/default/pubfilesmnt/2023-09/23-ICA-153.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-35", + "docket_numbers": "23-ica-153", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-15", - "case_names": "Beckley Appalachian Regional Healthcare v. Barry Levin", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-31 md.pdf", + "case_dates": "2023-04-10", + "case_names": "Wiseman Construction Company, Inc. v. Kevin C. Hodge", + "download_urls": "/sites/default/pubfilesmnt/2023-07/22-ICA-317%20md.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-31", + "docket_numbers": "22-ica-317", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { - "case_dates": "2022-11-15", - "case_names": "Bayer Corporation v. Charles Virden, Decendent, Mary Kay Virden, Dependent", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-21 md.pdf", + "case_dates": "2023-04-10", + "case_names": "Samuel J. Cox v. Raleigh County Board of Education", + "download_urls": "/sites/default/pubfilesmnt/2023-07/22-ICA-230%20md.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-230", + "nature_of_suit": "Workers Compensation", + "case_name_shorts": "" + }, + { + "case_dates": "2023-04-10", + "case_names": "In re: H.A., a protected person", + "download_urls": "/sites/default/pubfilesmnt/2023-07/22-ICA-40%20md.pdf", + "precedential_statuses": "Published", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "docket_numbers": "22-ica-40", + "nature_of_suit": "Civil-Other", + "case_name_shorts": "" + }, + { + "case_dates": "2023-04-10", + "case_names": "Coronado Group, LLC v. Marshal L. Lytton, Jr.", + "download_urls": "/sites/default/pubfilesmnt/2023-07/22-ICA-312%20md.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-21", + "docket_numbers": "22-ica-312", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" }, { "case_dates": "2022-11-15", - "case_names": "Anthony Cosby v. Capitol Beverage Company", - "download_urls": "tests/examples/opinions/united_states/memo-decisions/Fall2022/22-ICA-9 md.pdf", + "case_names": "Beckley Appalachian Regional Healthcare v. Barry Levin", + "download_urls": "/sites/default/pubfilesmnt/2023-07/22-ICA-31%20md.pdf", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-ica-9", + "docket_numbers": "22-ica-31", "nature_of_suit": "Workers Compensation", "case_name_shorts": "" } diff --git a/tests/examples/opinions/united_states/wvactapp_example.html b/tests/examples/opinions/united_states/wvactapp_example.html index d514444d8..456c2729d 100644 --- a/tests/examples/opinions/united_states/wvactapp_example.html +++ b/tests/examples/opinions/united_states/wvactapp_example.html @@ -1,697 +1,1430 @@ - - - - - -Fall 2022 Opinion List - Intermediate Court of Appeals of West Virginia - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + Intermediate Court of Appeals - Opinions - Prior Terms | West Virginia Judiciary - - - - - - - - - -
    - -
    Open Help
    -
    - -
    -

    West Virginia Judiciary

    - -

    Opinions and Memorandum Decisions of the
    Intermediate Court of Appeals

    -
    - - -
    -
    -
    - -
    -

    Fall 2022 Opinion List

    - -

    Links to all decisions filed in the current term of court are listed in the table below. Are you looking for an opinion list from a prior term of court? If so, please visit the Information & Search page. Opinions from the September 1991 term of court to the present day are available online.

    -

    The new integrated decision list combines all of the decisions issued during a court term, identified using case type and decision type codes. To re-sort the list quickly, click any of the column headers (except case number). For more information about using the decision list and for an explanation of the codes, review the page: About the Decision List.

    -

    When the page loads, the Date Filed column is sorted descending.

    -
    -

    QUICK TIP: For more help on using the opinion table, click the Open Opinion Table Help to the right on the page.

    -
    -
    Current Term of Court Opinions and Memorandum Decisions -
    -
    1 to 27 of 27 opinions
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Current Term of Court Opinions and Memorandum Decisions

    Are you looking for all cases with a specific decision type?

    Date FiledCase No.Case NameCase TypeDecision Type
    12/9/202222-ICA-10David Duff, II v. Kanawha County CommissionWCSO
    12/2/202222-ICA-57SWVA, Inc. v. Brandon M. CaudillWCMD
    11/18/202222-ICA-172Andrew C. v. Hillary C.FAMMD
    11/18/202222-ICA-104Newport Trading Co., Inc. v. Larry R. HicksWCMD
    11/18/202222-ICA-88Randy D. Bohall v. Murray American Energy, Inc.WCMD
    11/18/202222-ICA-86Michael L. Dean v. Arch Coal, Inc.WCMD
    11/18/202222-ICA-84David E. Honaker v. Justice Family Group, LLCWCMD
    11/18/202222-ICA-73Vinson Clagg v. Service Wire CompanyWCMD
    11/18/202222-ICA-55James E. Stover v. West Virginia Division of HighwaysWCMD
    11/18/202222-ICA-51Dewayne Roberts v. Daniel Watson Masonry, LLCWCMD
    11/18/202222-ICA-37Linda A. Watson v. Homer Laughlin China CompanyWCMD
    11/18/202222-ICA-32George E. Keaton v. Beckley Garbage DisposalWCMD
    11/18/202222-ICA-29Rob Juszczak Construction v. John JuszczakWCMD
    11/18/202222-ICA-8John Juszczak v. Rob Juszczak ConstructionWCMD
    11/18/202222-ICA-2Amanda C. v. Christopher P. (Judge Scarr concurring.)FAMSEP
    11/18/202222-ICA-2Amanda C. v. Christopher P.FAMSO
    11/15/202222-ICA-35Breanna Sargent v. On The Rocks, LLCWCMD
    11/15/202222-ICA-33Murray American Energy, Inc. v. Sean StapelWCMD
    11/15/202222-ICA-31Beckley Appalachian Regional Healthcare v. Barry LevinWCMD
    11/15/202222-ICA-21Bayer Corporation v. Charles Virden, Decendent, Mary Kay Virden, DependentWCMD
    11/15/202222-ICA-20Charlene D. Fleshman, aka Charlene D. Christy v. James A. FleshmanFAMMD
    11/15/202222-ICA-17Richard Heath v. Alliance Coal LLCWCMD
    11/15/202222-ICA-16Christopher Adams v. United Parcel Service, Inc.WCMD
    11/15/202222-ICA-14Kirk Trucking Co, Inc. v. Joseph S. MaynardWCMD
    11/15/202222-ICA-12Dallas Hankins v. Sprouting Farms Corp.WCMD
    11/15/202222-ICA-11Murray American Energy, Inc. v. Sean StapelWCMD
    11/15/202222-ICA-9Anthony Cosby v. Capitol Beverage CompanyWCMD
    1 to 27 of 27 opinions
    -
    -
    - - - - - - - - - - \ No newline at end of file + + +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + +
    + + +
    + + +
    +
    + + +
    +
    + +
    +

    INTERMEDIATE COURT OF + APPEALS
    PRIOR TERM/YEAR OPINIONS

    +
    +
    + + + +
    +
    + +
    +
    +
    + + +
    +
    +
    + + +
    +
    Total Opinions: 387
    +
    +
    + +
    +
    + + + + + + +
    + + + +
    + + + + + + +
    + + + +
    + + + + + + +
    + + + +
    + + + + + + +
    + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    + +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date FiledCase NoCase NameCase TypeDecision Type
    + 01/12/2024 + 23-ICA-162 + +

    Richard Kevin Jackson v. Janet + Lee Jackson

    +
    +
    + FAM + MD
    + 12/15/2023 + 22-ICA-235 + +

    Richard B. Timmis v. Charles P. + Andrew

    +
    +
    + PR + MD
    + 12/08/2023 + 22-ICA-74 + +

    DD Oil Company v. State of West + Virginia, ex rel., Harold D. + Ward, Cabinet Secretary, West + Virginia Department of + Environmental Protection

    +
    +
    + ADM + SO
    + 12/08/2023 + 22-ICA-74 + +

    DD Oil Company v. State of West + Virginia, ex rel., Harold D. + Ward, Cabinet Secretary, West + Virginia Department of + Environmental Protection, (Judge + Lorensen dissenting.)

    +
    +
    + ADM + SEP
    + 12/08/2023 + 22-ICA-208 + +

    Ford Motor Company v. Angel Ellen + Tyler, as Administrator of the + Estate of Kristen Bumgardner

    +
    +
    + TCR + SO
    + 11/29/2023 + 22-ICA-243 + +

    Jay Folse v. G. Russell Rollyson, + Jr. and John McCuskey, Jr.

    +
    +
    + CIV-O + SEP
    + 11/16/2023 + 22-ICA-327 + +

    Abigail Shoemaker, Mary + Shoemaker, and Chris Shoemaker + v. Tazewell County Public + Schools and Kimberly Benson

    +
    +
    + TCR + SO
    + 11/16/2023 + 22-ICA-243 + +

    Jay Folse v. G. Russell Rollyson, + Jr. and John McCuskey, Jr.

    +
    +
    + CIV-O + SO
    + 11/16/2023 + 22-ICA-301 + +

    Andrea Dale Dye v. Farmers & + Mechanics Mutual Insurance + Company of West Virginia

    +
    +
    + TCR + MD
    + 11/16/2023 + 22-ICA-150 + +

    Nicholas A. Ghaphery, D.O., as + Personal Representative of the + Estate of Austin Ghaphery v. + Wheeling Treatment Center, LLC + and John Schultz, M.D.

    +
    +
    + TCR + MD
    + 09/05/2023 + 23-ICA-56 + +

    Brenda G. Blevins v. Community + Hospital Association

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-6 + +

    Elmer Hurley v. Chubby's Logging +

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-60 + +

    Matthew B. v. Kimberly W.

    +
    +
    + FAM + MD
    + 09/05/2023 + 23-ICA-61 + +

    Jennifer Belcher v. West Virginia + Parkways Authority

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-62 + +

    Heidi Y. v. Jordan C.

    +
    +
    + FAM + MD
    + 09/05/2023 + 23-ICA-73 + +

    Evan C. v. Ali C.

    +
    +
    + FAM + MD
    + 09/05/2023 + 23-ICA-78 + +

    Katherine C. v. A.A. Moore C.

    +
    +
    + FAM + MD
    + 09/05/2023 + 23-ICA-8 + +

    West Virginia Department of + Health and Human Resources + Bureau for Child Support + Enforcement v. Shawn O.

    +
    +
    + FAM + MD
    + 09/05/2023 + 23-ICA-209 + +

    Kevin Davis v. Wayne County Board + of Education

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-133 + +

    Nicholas Community Action + Partnership, Inc. v. Maggie + Jarrett

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-113 + +

    Jared Smith v. Arcelormittal

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-102 + +

    Onnie Watson v. Schenker + Logistics

    +
    +
    + WC + MD
    + 09/05/2023 + 22-ICA-331 + +

    John J. Delsignore v. Timberline + Logging Enterprises, LLC

    +
    +
    + WC + MD
    + 09/05/2023 + 22-ICA-322 + +

    Evans Construction Company v. + Anthony Schau

    +
    +
    + WC + MD
    + 09/05/2023 + 22-ICA-197 + +

    West Virginia Department of + Transportation Division of + Highways v. Amanda Nicole Justus +

    +
    +
    + ADM + MD
    + 09/05/2023 + 22-ICA-195 + +

    Clinton T. Drainer v. Division of + Highways

    +
    +
    + ADM + MD
    + 09/05/2023 + 22-ICA-175 + +

    Mark M. Samaan, M.D. v. West + Virginia Board of Medicine

    +
    +
    + ADM + MD
    + 09/05/2023 + 22-ICA-131 + +

    WorkForce West Virginia v. Sara + Jonese and Pocahontas County + Board of Education

    +
    +
    + ADM + MD
    + 09/05/2023 + 22-ICA-125 + +

    WorkForce West Virginia v. + Beverly Kirker

    +
    +
    + ADM + MD
    + 09/05/2023 + 22-ICA-110 + +

    WorkForce West Virginia v. + Christina Gaddy

    +
    +
    + ADM + MD
    + 09/05/2023 + 23-ICA-120 + +

    Gordon Martin v. Food Lion, Inc. +

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-126 23-ICA-139 + +

    Glen Trader v. ACNR Resources, + Inc.

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-129 + +

    Wolf Run Mining, LLC v. Darden + Woodford

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-119 + +

    Ryan Marstiller v. Masters of + Disasters, LLC

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-136 + +

    Rhino Energy, LLC v. Kenneth Cole +

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-14 + +

    Caitlin R. Workman v. ACNR + Resources, Inc.

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-152 + +

    ROC Service Company, LC v. + Antonio Smith

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-153 + +

    Alvin J. Cook, Jr. v. Cecil I. + Walker Machinery Co.

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-156 + +

    Virginia Smith, Dependent of + Walter F. Smith (Deceased) v. + Pine Ridge and The Insurance + Commissioner of West Virginia in + its capacity as administrator of + The Self-insured Employer + Security Risk Pool

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-161 + +

    Stephen Saunders v. ACNR + Resources, Inc.

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-163 + +

    Blackhawk Mining, LLC v. Joseph + Browning

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-177 + +

    Jeanette Wood, Dependent of John + D. Wood (Deceased) v. Pine Ridge + Coal Company, LLC and West + Virginia Offices of the + Insurance Commissioner, in its + capacity as administrator of the + Guaranty Risk Pool

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-186 + +

    Quinn Transportation, LLC v. + Daniel T. Park

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-188 + +

    Emma Harris, Dependent of Carl + Harris (Deceased) v. Pine Ridge + and The Insurance Commissioner + of West Virginia in its capacity + as administrator of the + Self-Insured Employer Security + Risk Pool

    +
    +
    + WC + MD
    + 09/05/2023 + 23-ICA-197 + +

    Gayla Adkins v. Brightspring + Healthcare Services

    +
    +
    + WC + MD
    + 04/10/2023 + 22-ICA-40 + +

    In re: H.A., a protected person +

    +
    +
    + CIV-O + MD
    + 04/10/2023 + 22-ICA-317 + +

    Wiseman Construction Company, + Inc. v. Kevin C. Hodge

    +
    +
    + WC + MD
    + 04/10/2023 + 22-ICA-312 + +

    Coronado Group, LLC v. Marshal L. + Lytton, Jr.

    +
    +
    + WC + MD
    + 04/10/2023 + 22-ICA-230 + +

    Samuel J. Cox v. Raleigh County + Board of Education

    +
    +
    + WC + MD
    + 11/15/2022 + 22-ICA-31 + +

    Beckley Appalachian Regional + Healthcare v. Barry Levin

    +
    +
    + WC + MD
    +
    + +
    + +
    +
    + +
    +
    + +
    + +
    +
    +
    +
    +
    +
    +
    + +
    + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/wyo_example.compare.json b/tests/examples/opinions/united_states/wyo_example.compare.json index 80efea495..34253ee97 100644 --- a/tests/examples/opinions/united_states/wyo_example.compare.json +++ b/tests/examples/opinions/united_states/wyo_example.compare.json @@ -100,7 +100,7 @@ }, { "case_dates": "2014-12-10", - "case_names": "Philippe Lajaunie, individually and derivatively as a member of Beartooth Mountain Springs, LLC and American Summits, LLC v. Daren Singer, individually and in his capacity as a manager of Beartooth Mountain Springs, LLC Clark's Fork Canyon Springs, LLC and Sunlight Springs Distribution, LLC", + "case_names": "Philippe Lajaunie, individually and derivatively as a member of Beartooth Mountain Springs, LLC and American Summits, LLC v. Daren Singer, individually and in his capacity as a manager of Beartooth Mountain Springs, LLC; Clark's Fork Canyon Springs, LLC; and Sunlight Springs Distribution, LLC", "download_urls": "https://documents.courts.state.wy.us/Opinions/2014WY159.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -111,7 +111,7 @@ }, { "case_dates": "2014-12-10", - "case_names": "Daren Singer, individually and in his capacity as a manager of Beartooth Mountain Springs, LLC Clark's Fork Canyon Springs, LLC and Sunlight Springs Distribution, LLC v. Philippe Lajaunie, individually and derivatively as a member of Beartooth Mountain Springs, LLC and American Summits, LLC", + "case_names": "Daren Singer, individually and in his capacity as a manager of Beartooth Mountain Springs, LLC; Clark's Fork Canyon Springs, LLC; and Sunlight Springs Distribution, LLC v. Philippe Lajaunie, individually and derivatively as a member of Beartooth Mountain Springs, LLC and American Summits, LLC", "download_urls": "https://documents.courts.state.wy.us/Opinions/2014WY159.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -419,7 +419,7 @@ }, { "case_dates": "2014-10-30", - "case_names": "Kenneth Dale Nicodemus v. Robert Lampert, Director, Wyoming Department of Corrections Eddie Wilson, Warden, Wyoming State Penitentiary and Dotti Wixson", + "case_names": "Kenneth Dale Nicodemus v. Robert Lampert, Director, Wyoming Department of Corrections; Eddie Wilson, Warden, Wyoming State Penitentiary; and Dotti Wixson", "download_urls": "https://documents.courts.state.wy.us/Opinions/2014WY135.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -628,7 +628,7 @@ }, { "case_dates": "2014-09-18", - "case_names": "Nathan R. Baker Bryner Farms, LLC Pat's Dream Project Trust and MME Trust v. David Speaks and Elizabeth Speaks", + "case_names": "Nathan R. Baker; Bryner Farms, LLC; Pat's Dream Project Trust; and MME Trust v. David Speaks and Elizabeth Speaks", "download_urls": "https://documents.courts.state.wy.us/Opinions/2014WY117.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -639,7 +639,7 @@ }, { "case_dates": "2014-09-18", - "case_names": "Nathan R. Baker Bryner Farms, LLC Pat's Dream Project Trust and MME Trust v. David Speaks and Elizabeth Speaks", + "case_names": "Nathan R. Baker; Bryner Farms, LLC; Pat's Dream Project Trust; and MME Trust v. David Speaks and Elizabeth Speaks", "download_urls": "https://documents.courts.state.wy.us/Opinions/2014WY117.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -650,7 +650,7 @@ }, { "case_dates": "2014-09-17", - "case_names": "Star Valley Ranch Association v. William Daley, Trustee of the Daley Family Trust Gerald Kittelson and Sara Kittelson, Trustees of the Kittelson Revocable Trust Frank Goglio, and Bob Logan and Kathy Logan, Trustees of the Logan 1998 Revocable Trust", + "case_names": "Star Valley Ranch Association v. William Daley, Trustee of the Daley Family Trust; Gerald Kittelson and Sara Kittelson, Trustees of the Kittelson Revocable Trust; Frank Goglio, and Bob Logan and Kathy Logan, Trustees of the Logan 1998 Revocable Trust", "download_urls": "https://documents.courts.state.wy.us/Opinions/2014WY116.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -1013,7 +1013,7 @@ }, { "case_dates": "2014-07-01", - "case_names": "Sean Beyer, M.D. and Emergency Medical Physicians, P.C. v. Brenda Miller, as Personal Representative of the Estate of Connie Rae Scribner", + "case_names": "Sean Beyer, M.D.; and Emergency Medical Physicians, P.C. v. Brenda Miller, as Personal Representative of the Estate of Connie Rae Scribner", "download_urls": "https://documents.courts.state.wy.us/Opinions/2014WY84.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -1024,7 +1024,7 @@ }, { "case_dates": "2014-07-01", - "case_names": "Brenda Miller, as Personal Representative of the Estate of Connie Rae Scribner v. Sean Beyer, M.D. and Emergency Medical Physicians, P.C.", + "case_names": "Brenda Miller, as Personal Representative of the Estate of Connie Rae Scribner v. Sean Beyer, M.D.; and Emergency Medical Physicians, P.C.", "download_urls": "https://documents.courts.state.wy.us/Opinions/2014WY84.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -1035,7 +1035,7 @@ }, { "case_dates": "2014-06-26", - "case_names": "Robert H. Aland v. Matthew H. Mead, Governor of the State of Wyoming Wyoming Game & Fish Department and Scott Talbott, Director of the Wyoming Game & Fish Department", + "case_names": "Robert H. Aland v. Matthew H. Mead, Governor of the State of Wyoming; Wyoming Game & Fish Department; and Scott Talbott, Director of the Wyoming Game & Fish Department", "download_urls": "https://documents.courts.state.wy.us/Opinions/2014WY83.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -1299,7 +1299,7 @@ }, { "case_dates": "2014-05-14", - "case_names": "Leeks Canyon Ranch, LLC, a Wyoming limited liability company Leeks Canyon, LLC, a Wyoming limited liability company Elizabeth Lockhart and Kelly Lockhart, wife and husband v. Callahan River Ranch, LLC, a Wyoming limited liability company and Porter River Ranch, LLC, a Wyoming limited liability company", + "case_names": "Leeks Canyon Ranch, LLC, a Wyoming limited liability company; Leeks Canyon, LLC, a Wyoming limited liability company; Elizabeth Lockhart and Kelly Lockhart, wife and husband v. Callahan River Ranch, LLC, a Wyoming limited liability company; and Porter River Ranch, LLC, a Wyoming limited liability company", "download_urls": "https://documents.courts.state.wy.us/Opinions/2014WY62.pdf", "precedential_statuses": "Published", "blocked_statuses": false, @@ -1409,7 +1409,7 @@ }, { "case_dates": "2014-04-22", - "case_names": "William E. Meckem, Individually Lorraine W. Meckem, Individually and Dubois Heights Subdivision, Inc., a Wyoming Corporation v. William Carter and Danna Carter, Husband and Wife", + "case_names": "William E. Meckem, Individually; Lorraine W. Meckem, Individually; and Dubois Heights Subdivision, Inc., a Wyoming Corporation v. William Carter and Danna Carter, Husband and Wife", "download_urls": "https://documents.courts.state.wy.us/Opinions/2014WY52.pdf", "precedential_statuses": "Published", "blocked_statuses": false, diff --git a/tests/examples/oral_args/united_states/ca11_example.compare.json b/tests/examples/oral_args/united_states/ca11_example.compare.json index 189f92fe1..282486b76 100644 --- a/tests/examples/oral_args/united_states/ca11_example.compare.json +++ b/tests/examples/oral_args/united_states/ca11_example.compare.json @@ -1,82 +1,82 @@ [ { - "case_names": "United States v. Samuel Kwushue", - "case_dates": "2018-08-17", + "case_dates": "2024-08-22", + "case_names": "Jeffery Rieber v. Commissioner, Alabama Department of Corrections", + "download_urls": "/sites/default/files/oral_argument_recordings/23-13958_08222024.mp3", "blocked_statuses": false, - "download_urls": "http://www.ca11.uscourts.gov/system/files_force/oral_argument_recordings/16-15683.mp3?download=1", - "case_name_shorts": "", - "docket_numbers": "16-15683" + "docket_numbers": "23-13958", + "case_name_shorts": "" }, { - "case_names": "United States v. Hi-Tech Pharmaceuticals, Inc.", - "case_dates": "2018-08-17", + "case_dates": "2024-08-16", + "case_names": "Ricky Johnson v. Ted Paxton", + "download_urls": "/sites/default/files/oral_argument_recordings/21-10447_08162024.mp3", "blocked_statuses": false, - "download_urls": "http://www.ca11.uscourts.gov/system/files_force/oral_argument_recordings/17-13376.mp3?download=1", - "case_name_shorts": "", - "docket_numbers": "17-13376" + "docket_numbers": "21-10447", + "case_name_shorts": "" }, { - "case_names": "State Farm Fire & Casualty Company v. Jan Walker", - "case_dates": "2018-08-17", + "case_dates": "2024-08-16", + "case_names": "Deshawn Gervin v. Pamela Florence", + "download_urls": "/sites/default/files/oral_argument_recordings/23-11452_08162024.mp3", "blocked_statuses": false, - "download_urls": "http://www.ca11.uscourts.gov/system/files_force/oral_argument_recordings/17-11823.mp3?download=1", - "case_name_shorts": "", - "docket_numbers": "17-11823" + "docket_numbers": "23-11452", + "case_name_shorts": "" }, { - "case_names": "Q.F. v. Amy Howell, (Consolidated with 17-13030, Q.F. v. Jerry Daniel, Appellants)", - "case_dates": "2018-08-17", + "case_dates": "2024-08-15", + "case_names": "United States, Appellant/Cross v. Jenifer Deramus, Appellee/Cross", + "download_urls": "/sites/default/files/oral_argument_recordings/22-12104_08152024.mp3", "blocked_statuses": false, - "download_urls": "http://www.ca11.uscourts.gov/system/files_force/oral_argument_recordings/17-10983.mp3?download=1", - "case_name_shorts": "", - "docket_numbers": "17-10983" + "docket_numbers": "22-12104", + "case_name_shorts": "" }, { - "case_names": "FASTCASE, Inc. v. Lawriter, LLC", - "case_dates": "2018-08-17", + "case_dates": "2024-08-15", + "case_names": "Rhonda Fleming v. FCI Tallahassee Warden", + "download_urls": "/sites/default/files/oral_argument_recordings/23-10252_08152024.mp3", "blocked_statuses": false, - "download_urls": "http://www.ca11.uscourts.gov/system/files_force/oral_argument_recordings/17-14110.mp3?download=1", - "case_name_shorts": "", - "docket_numbers": "17-14110" + "docket_numbers": "23-10252", + "case_name_shorts": "" }, { - "case_names": "Demetrius Walker v. Daniel Poveda", - "case_dates": "2018-08-17", + "case_dates": "2024-08-15", + "case_names": "Capital City Home Loans LLC v. Mary Darnell", + "download_urls": "/sites/default/files/oral_argument_recordings/23-12066_08152024.mp3", "blocked_statuses": false, - "download_urls": "http://www.ca11.uscourts.gov/system/files_force/oral_argument_recordings/16-17041.mp3?download=1", - "case_name_shorts": "", - "docket_numbers": "16-17041" + "docket_numbers": "23-12066", + "case_name_shorts": "" }, { - "case_names": "United States v. Rafael Uranga, consolidated with United States v. David Oliva", - "case_dates": "2018-08-16", + "case_dates": "2024-08-14", + "case_names": "United States v. Sefan Eberhard Zappey", + "download_urls": "/sites/default/files/oral_argument_recordings/23-11607_08142024.mp3", "blocked_statuses": false, - "download_urls": "http://www.ca11.uscourts.gov/system/files_force/oral_argument_recordings/17-11497.mp3?download=1", - "case_name_shorts": "", - "docket_numbers": "17-11497, 17-12091" + "docket_numbers": "23-11607", + "case_name_shorts": "" }, { - "case_names": "United States v. Kevin M. Sullivan", - "case_dates": "2018-08-16", + "case_dates": "2024-08-14", + "case_names": "Saregama India Ltd. v. Bhrath Aiyer", + "download_urls": "/sites/default/files/oral_argument_recordings/23-11881_08142024.mp3", "blocked_statuses": false, - "download_urls": "http://www.ca11.uscourts.gov/system/files_force/oral_argument_recordings/17-11862.mp3?download=1", - "case_name_shorts": "", - "docket_numbers": "17-11862" + "docket_numbers": "23-11881", + "case_name_shorts": "" }, { - "case_names": "Jeanie Bardge v. Nancy Berryhill", - "case_dates": "2018-08-16", + "case_dates": "2024-08-14", + "case_names": "Demetric King v. City of Sylvester Georgia", + "download_urls": "/sites/default/files/oral_argument_recordings/22-11433_08142024.mp3", "blocked_statuses": false, - "download_urls": "http://www.ca11.uscourts.gov/system/files_force/oral_argument_recordings/17-11999.mp3?download=1", - "case_name_shorts": "", - "docket_numbers": "17-11999" + "docket_numbers": "22-11433", + "case_name_shorts": "" }, { - "case_names": "David Boysen, Appellant/Cross v. Illinois Tool Works Inc., Appellees/Cross", - "case_dates": "2018-08-16", + "case_dates": "2024-08-14", + "case_names": "Certain Underwriters at Lloyds, London v. Anchor Insurance Holdings, inc.", + "download_urls": "/sites/default/files/oral_argument_recordings/23-10364_08142024.mp3", "blocked_statuses": false, - "download_urls": "http://www.ca11.uscourts.gov/system/files_force/oral_argument_recordings/17-13145.mp3?download=1", - "case_name_shorts": "", - "docket_numbers": "17-13145" + "docket_numbers": "23-10364", + "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/oral_args/united_states/ca11_example.html b/tests/examples/oral_args/united_states/ca11_example.html index a06128954..6f4015d91 100644 --- a/tests/examples/oral_args/united_states/ca11_example.html +++ b/tests/examples/oral_args/united_states/ca11_example.html @@ -1,813 +1,911 @@ - - - - - - - - - Oral Argument Recordings | Eleventh Circuit | United States Court of Appeals - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + Oral Argument Recordings | United States Court of Appeals - - -
    -
    - - + + + Skip to main content + -
    +
    +
    -
    +
    - -
    -
    + + + + - + + \ No newline at end of file diff --git a/tests/examples/oral_args/united_states/ca2_example.compare.json b/tests/examples/oral_args/united_states/ca2_example.compare.json index 44805a654..841ec3a48 100644 --- a/tests/examples/oral_args/united_states/ca2_example.compare.json +++ b/tests/examples/oral_args/united_states/ca2_example.compare.json @@ -1 +1,82 @@ -[{"case_names": "Gray v. Maquat", "case_dates": "2016-09-09", "blocked_statuses": false, "download_urls": "/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/1/doc/15-2448.mp3", "case_name_shorts": "Gray", "docket_numbers": "15-2448"}, {"case_names": "Constant v. Martuscello", "case_dates": "2016-09-09", "blocked_statuses": false, "download_urls": "/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/3/doc/15-2789.mp3", "case_name_shorts": "Constant", "docket_numbers": "15-2789"}, {"case_names": "Chauca v. Abraham", "case_dates": "2016-09-09", "blocked_statuses": false, "download_urls": "/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/2/doc/15-1777.mp3", "case_name_shorts": "Chauca", "docket_numbers": "15-1777"}, {"case_names": "United States v. Awulye", "case_dates": "2016-09-07", "blocked_statuses": false, "download_urls": "/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/4/doc/15-1284.mp3", "case_name_shorts": "Awulye", "docket_numbers": "15-1284"}, {"case_names": "Telebeam Telecommunications Co", "case_dates": "2016-09-07", "blocked_statuses": false, "download_urls": "/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/9/doc/16-2748.mp3", "case_name_shorts": "Telebeam Telecommunications Co", "docket_numbers": "16-2748"}, {"case_names": "Phillips v. Generations Family", "case_dates": "2016-09-07", "blocked_statuses": false, "download_urls": "/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/5/doc/15-2656.mp3", "case_name_shorts": "Phillips", "docket_numbers": "15-2656"}, {"case_names": "United States v. Leonard", "case_dates": "2016-09-02", "blocked_statuses": false, "download_urls": "/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/10/doc/15-2232.mp3", "case_name_shorts": "Leonard", "docket_numbers": "15-2232"}, {"case_names": "Lassic v. United States", "case_dates": "2016-09-02", "blocked_statuses": false, "download_urls": "/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/8/doc/15-3240.mp3", "case_name_shorts": "Lassic", "docket_numbers": "15-3240"}, {"case_names": "Guo v. Independent Chinese Pen", "case_dates": "2016-09-02", "blocked_statuses": false, "download_urls": "/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/6/doc/15-2920.mp3", "case_name_shorts": "Guo", "docket_numbers": "15-2920"}, {"case_names": "Brenner v. City of New York De", "case_dates": "2016-09-02", "blocked_statuses": false, "download_urls": "/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/7/doc/15-3230.mp3", "case_name_shorts": "Brenner", "docket_numbers": "15-3230"}] \ No newline at end of file +[ + { + "case_names": "Gray v. Maquat", + "case_dates": "2016-09-09", + "blocked_statuses": false, + "download_urls": "http://ww3.ca2.uscourts.gov/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/1/doc/15-2448.mp3", + "case_name_shorts": "Gray", + "docket_numbers": "15-2448" + }, + { + "case_names": "Constant v. Martuscello", + "case_dates": "2016-09-09", + "blocked_statuses": false, + "download_urls": "http://ww3.ca2.uscourts.gov/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/3/doc/15-2789.mp3", + "case_name_shorts": "Constant", + "docket_numbers": "15-2789" + }, + { + "case_names": "Chauca v. Abraham", + "case_dates": "2016-09-09", + "blocked_statuses": false, + "download_urls": "http://ww3.ca2.uscourts.gov/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/2/doc/15-1777.mp3", + "case_name_shorts": "Chauca", + "docket_numbers": "15-1777" + }, + { + "case_names": "United States v. Awulye", + "case_dates": "2016-09-07", + "blocked_statuses": false, + "download_urls": "http://ww3.ca2.uscourts.gov/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/4/doc/15-1284.mp3", + "case_name_shorts": "Awulye", + "docket_numbers": "15-1284" + }, + { + "case_names": "Telebeam Telecommunications Co", + "case_dates": "2016-09-07", + "blocked_statuses": false, + "download_urls": "http://ww3.ca2.uscourts.gov/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/9/doc/16-2748.mp3", + "case_name_shorts": "Telebeam Telecommunications Co", + "docket_numbers": "16-2748" + }, + { + "case_names": "Phillips v. Generations Family", + "case_dates": "2016-09-07", + "blocked_statuses": false, + "download_urls": "http://ww3.ca2.uscourts.gov/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/5/doc/15-2656.mp3", + "case_name_shorts": "Phillips", + "docket_numbers": "15-2656" + }, + { + "case_names": "United States v. Leonard", + "case_dates": "2016-09-02", + "blocked_statuses": false, + "download_urls": "http://ww3.ca2.uscourts.gov/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/10/doc/15-2232.mp3", + "case_name_shorts": "Leonard", + "docket_numbers": "15-2232" + }, + { + "case_names": "Lassic v. United States", + "case_dates": "2016-09-02", + "blocked_statuses": false, + "download_urls": "http://ww3.ca2.uscourts.gov/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/8/doc/15-3240.mp3", + "case_name_shorts": "Lassic", + "docket_numbers": "15-3240" + }, + { + "case_names": "Guo v. Independent Chinese Pen", + "case_dates": "2016-09-02", + "blocked_statuses": false, + "download_urls": "http://ww3.ca2.uscourts.gov/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/6/doc/15-2920.mp3", + "case_name_shorts": "Guo", + "docket_numbers": "15-2920" + }, + { + "case_names": "Brenner v. City of New York De", + "case_dates": "2016-09-02", + "blocked_statuses": false, + "download_urls": "http://ww3.ca2.uscourts.gov/decisions/isysquery/3ace2367-0537-4453-aca0-8b69a6e3698b/7/doc/15-3230.mp3", + "case_name_shorts": "Brenner", + "docket_numbers": "15-3230" + } +] diff --git a/tests/examples/oral_args/united_states/cadc_example.compare.json b/tests/examples/oral_args/united_states/cadc_example.compare.json index 1c426f218..ee98b11e0 100644 --- a/tests/examples/oral_args/united_states/cadc_example.compare.json +++ b/tests/examples/oral_args/united_states/cadc_example.compare.json @@ -1 +1,1702 @@ -[{"judges": "Garland, Chief Judge, Henderson, Rogers, Tatel, Brown, Griffith, Kavanaugh, Srinivasan, Srinivasan, Pillard, Wilkins, Circuit Judges, and Williams, Senior Circuit Judge Judge Henderson will participate by teleconference. Judge Griffith will consider this case based on the audio recording of oral argument.", "case_names": "American Meat Institute v. AGRI", "case_dates": "2014-05-19", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/06529D45923E605485257CDD00562170/$file/13-5281.mp3", "case_name_shorts": "AGRI", "docket_numbers": "13-5281"}, {"judges": "Brown, Griffith, Millett", "case_names": "United States v. Bank of America Corporation", "case_dates": "2014-05-13", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/FE5EF97682E88C9A85257CD7005749C3/$file/13-5112.mp3", "case_name_shorts": "", "docket_numbers": "13-5112"}, {"judges": "Brown, Griffith, Millett", "case_names": "Sorenson Communications Inc. v. FCC", "case_dates": "2014-05-13", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/91BE9009159AD43185257CD7005749C9/$file/13-1122.mp3", "case_name_shorts": "", "docket_numbers": "13-1122"}, {"judges": "Brown, Griffith, Millett", "case_names": "Deborah Peterson v. Islamic Republic of Iran", "case_dates": "2014-05-13", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings.nsf/Pages/Unavailable1", "case_name_shorts": "", "docket_numbers": "13-7086"}, {"judges": "Henderson, Millett, Sentelle", "case_names": "Sierra Club v. EPA", "case_dates": "2014-05-12", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/7816E629473449F685257CD6005B8DAF/$file/08-1144.mp3", "case_name_shorts": "", "docket_numbers": "08-1144"}, {"judges": "Henderson, Millett, Sentelle", "case_names": "Nat Rescr Def Cncl v. EPA", "case_dates": "2014-05-12", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/E083D103677F4E7285257CD6005B8DB4/$file/98-1379.mp3", "case_name_shorts": "", "docket_numbers": "98-1379"}, {"judges": "Henderson, Millett, Sentelle", "case_names": "Board of County Commissioners v. FHFA", "case_dates": "2014-05-12", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/51B5ABA855B7FE9C85257CD6005B8D88/$file/13-7114.mp3", "case_name_shorts": "FHFA", "docket_numbers": "13-7114"}, {"judges": "Garland, Srinivasan, Pillard", "case_names": "Southwestern Power Admin. v. FERC", "case_dates": "2014-05-09", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/EAE0CE05B925640885257CD3005A3221/$file/13-1033.mp3", "case_name_shorts": "FERC", "docket_numbers": "13-1033"}, {"judges": "Garland, Srinivasan, Pillard", "case_names": "Kathryn Campbell v. American International Group", "case_dates": "2014-05-09", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings.nsf/Pages/Unavailable1", "case_name_shorts": "", "docket_numbers": "13-7041"}, {"judges": "Garland, Srinivasan, Pillard", "case_names": "Ayanna Blue v. DC Public Schools", "case_dates": "2014-05-09", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/73A75B76163D5F4285257CD3005A321C/$file/12-7122.mp3", "case_name_shorts": "", "docket_numbers": "12-7122"}, {"judges": "Rogers, Pillard, Wilkins", "case_names": "United States v. Paul Hite", "case_dates": "2014-05-08", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/91B1C25D971E2CFB85257CD2005F3FC0/$file/13-3066.mp3", "case_name_shorts": "", "docket_numbers": "13-3066"}, {"judges": "Rogers, Pillard, Wilkins", "case_names": "Priests For Life v. HHS", "case_dates": "2014-05-08", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/9E0592E2317926B685257CD2005F3FE7/$file/13-5368.mp3", "case_name_shorts": "HHS", "docket_numbers": "13-5368"}, {"judges": "Rogers, Pillard, Wilkins", "case_names": "Matt Sissel v. HHS", "case_dates": "2014-05-08", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/B13FC4492D8DF5A785257CD2005F3FED/$file/13-5202.mp3", "case_name_shorts": "HHS", "docket_numbers": "13-5202"}, {"judges": "Tatel, Griffith, Pillard", "case_names": "United States v. Philip Morris USA Inc.", "case_dates": "2014-05-07", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/1C7CDE226ECE164B85257CD10054D240/$file/13-7105.mp3", "case_name_shorts": "", "docket_numbers": "13-7105"}, {"judges": "Griffith, Kavanaugh, Srinivasan", "case_names": "In re: Kellogg Brown & Root, Inc.", "case_dates": "2014-05-07", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/D9EF34CC90A9030F85257CD1006BD4AB/$file/14-5055.mp3", "case_name_shorts": "", "docket_numbers": "14-5055"}, {"judges": "Tatel, Griffith, Pillard", "case_names": "David Cantu v. United States", "case_dates": "2014-05-07", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/1E38066833CE195E85257CD10054D26C/$file/13-5044.mp3", "case_name_shorts": "", "docket_numbers": "13-5044"}, {"judges": "Tatel, Griffith, Pillard", "case_names": "All Party Parliamentary Group v. Department of Defense", "case_dates": "2014-05-07", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/17F36B11EA1EDAB485257CD10054D267/$file/13-5176.mp3", "case_name_shorts": "", "docket_numbers": "13-5176"}, {"judges": "Henderson, Rogers, Tatel", "case_names": "Sierra Club v. EPA", "case_dates": "2014-05-06", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/9CA59A753B361F0F85257CD0005F6C16/$file/13-1014.mp3", "case_name_shorts": "", "docket_numbers": "13-1014"}, {"judges": "Henderson, Rogers, Tatel", "case_names": "Prime Time International Comp v. AGRI", "case_dates": "2014-05-06", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/0DBC4985DECA3A5B85257CD0005F6C11/$file/13-5200.mp3", "case_name_shorts": "AGRI", "docket_numbers": "13-5200"}, {"judges": "Henderson, Rogers, Tatel", "case_names": "McKesson Corp. v. Islam Repub Iran", "case_dates": "2014-05-06", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/319BD0D791EEB93685257CD0005F6C19/$file/01-7041.mp3", "case_name_shorts": "", "docket_numbers": "01-7041"}, {"judges": "Henderson, Brown, Wilkins", "case_names": "Tonia Edwards v. DC", "case_dates": "2014-05-05", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/B9E2C4385E83F32E85257CCF0055B42E/$file/13-7063.mp3", "case_name_shorts": "DC", "docket_numbers": "13-7063"}, {"judges": "Henderson, Brown, Wilkins", "case_names": "Sealed Case", "case_dates": "2014-05-05", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings.nsf/Pages/Unavailable1", "case_name_shorts": "Sealed Case", "docket_numbers": "13-3030"}, {"judges": "Henderson, Brown, Wilkins", "case_names": "Ralls Corporation v. Committee on Foreign Invest", "case_dates": "2014-05-05", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/80EF86CB3E50D7F785257CCF0055B407/$file/13-5315.mp3", "case_name_shorts": "", "docket_numbers": "13-5315"}, {"judges": "Garland, Srinivasan, Ginsburg", "case_names": "United States v. Yarcy Razo-Nunez", "case_dates": "2014-05-02", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/508735DC5B11723285257CCC005CB58A/$file/13-3039.mp3", "case_name_shorts": "", "docket_numbers": "13-3039"}, {"judges": "Garland, Srinivasan, Ginsburg", "case_names": "POM Wonderful LLC v. FTC", "case_dates": "2014-05-02", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/3CDF6E842CC267D585257CCC005CB590/$file/13-1060.mp3", "case_name_shorts": "", "docket_numbers": "13-1060"}, {"judges": "Garland, Srinivasan, Ginsburg", "case_names": "Alec L. v. Gina McCarthy", "case_dates": "2014-05-02", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings.nsf/Pages/Unavailable1", "case_name_shorts": "", "docket_numbers": "13-5192"}, {"judges": "Kavanaugh, Millett, Wilkins", "case_names": "Minisink Residents for Enviro. v. FERC", "case_dates": "2014-05-01", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/F2FB55EB991DBE3D85257CCB005C5067/$file/12-1481.mp3", "case_name_shorts": "FERC", "docket_numbers": "12-1481"}, {"judges": "Kavanaugh, Millett, Wilkins", "case_names": "Fogo de Chao (Holdings) Inc. v. Dept. of Homeland Security", "case_dates": "2014-05-01", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/47145B714DDFD2A485257CCB005C508E/$file/13-5301.mp3", "case_name_shorts": "", "docket_numbers": "13-5301"}, {"judges": "Kavanaugh, Millett, Wilkins", "case_names": "Dan Sarfati v. Antigua and Barbuda", "case_dates": "2014-05-01", "blocked_statuses": false, "download_urls": "http://www.cadc.uscourts.gov/recordings/recordings2014.nsf/94221025A47DD82285257CCB005C5094/$file/13-7092.mp3", "case_name_shorts": "", "docket_numbers": "13-7092"}] \ No newline at end of file +[ + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Kimball Wind, LLC v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1236.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1236", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "FERC", + "attorneys": "Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-10", + "case_names": "Abram Harris v. U.S. Department of Transportation FMCSA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5091.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5091", + "judges": "Henderson; Childs; Ginsburg", + "case_name_shorts": "", + "attorneys": "Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "United States v. Jonathan Munafo", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-3187.mp3", + "blocked_statuses": false, + "docket_numbers": "23-3187", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "Nia Lucas v. American Federation of Government Employees", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-7051.mp3", + "blocked_statuses": false, + "docket_numbers": "23-7051", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-08", + "case_names": "IGas Holdings, Inc. v. EPA", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1261.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1261", + "judges": "Pillard; Pan; Garcia", + "case_name_shorts": "", + "attorneys": "Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Roy Meidinger v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-1239.mp3", + "blocked_statuses": false, + "docket_numbers": "22-1239", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-07", + "case_names": "Patrick Kennedy v. Cmsnr. IRS", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/21-1133.mp3", + "blocked_statuses": false, + "docket_numbers": "21-1133", + "judges": "Henderson; Rao; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Paul D. Scott, Julie Ciamporcero Avetta (DOJ), Attorney argued via Zoom" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-04", + "case_names": "State of Georgia v. DOJ", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-5083.mp3", + "blocked_statuses": false, + "docket_numbers": "23-5083", + "judges": "Srinivasan; Garcia; Rogers", + "case_name_shorts": "DOJ", + "attorneys": "Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Michael Henry v. Frank Kendall III", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/22-5259.mp3", + "blocked_statuses": false, + "docket_numbers": "22-5259", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "", + "attorneys": "Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + }, + { + "case_dates": "2024-10-01", + "case_names": "Capital Power Corporation v. FERC", + "download_urls": "https://media.cadc.uscourts.gov/recordings/docs/2024/10/23-1134.mp3", + "blocked_statuses": false, + "docket_numbers": "23-1134", + "judges": "Millett; Katsas; Walker", + "case_name_shorts": "FERC", + "attorneys": "Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren" + } +] \ No newline at end of file diff --git a/tests/examples/oral_args/united_states/cadc_example.html b/tests/examples/oral_args/united_states/cadc_example.html index daa543d13..48b67e7e7 100644 --- a/tests/examples/oral_args/united_states/cadc_example.html +++ b/tests/examples/oral_args/united_states/cadc_example.html @@ -1,111 +1,1360 @@ - - - - - - - - - - - - -USCA-DC Recordings for May, 2014 - - - - -
    -
    -
    -
    -
    Oral Argument Recordings
    -
    U.S. Court of Appeals for the D.C. Circuit
    -
    - -
    + + + + + + + + + + + + + + + USCA-DC Oral Argument Recordings + + + + +
    +
    + + + + + +
    +
    + +
    +
    U.S. Court of Appeals for the D.C. Circuit
    +
    + +
    +
    + +
    + + +
    +
    + +
    + + + + + +
    + +
    + + +
    + + + +
    + +
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    + +
    + + + +
    +
    + U.S. Court of Appeals for the D.C. Circuit +
    +
    + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + USCA-DC Oral Argument Recordings + + + + +
    +
    + + + + + +
    +
    + +
    +
    U.S. Court of Appeals for the D.C. Circuit
    +
    + +
    +
    + +
    + + +
    +
    + +
    + + + + + +
    + +
    + + +
    + + + +
    + +
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    + +
    + + + +
    +
    + U.S. Court of Appeals for the D.C. Circuit +
    +
    + + + + + + + + + + + + + + + + + + +
    + +
    +
    + + + + + +
    +
    +
    +
    U.S. Court of Appeals for the D.C. Circuit
    +
    + +
    +
    + +
    + + +
    +
    + +
    + + + + + +
    + +
    + + +
    + + + +
    + +
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    + +
    + + + +
    +
    + U.S. Court of Appeals for the D.C. Circuit +
    +
    + + + + + + + + + + + + + + + + + + +
    +
    + +
    + + +
    +
    + +
    + + + + + +
    + +
    + + +
    + + + +
    + +
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    + +
    +
    + + +
    +
    + +
    + + + + + +
    + +
    + + +
    + + + +
    +
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    No Recording
    +
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    USA v. Veterans Medical Transcription Services, Inc.
    +
    Judges: Millett, Katsas, Walker
    +
    Judges: Millett, Katsas, Walker
    +
    Judges: Millett, Katsas, Walker
    +
    Arguing:
    +
    10/01/2024
    +
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    +
    + +
    + + +
    +
    + +
    + + + + + +
    + +
    + + +
    + + + +
    + +
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    + +
    + +
    +
    + U.S. Court of Appeals for the D.C. Circuit +
    +
    + + + + + + + + + +
    +
    + +
    + + +
    +
    + +
    + + + + + +
    + +
    + + +
    + + + +
    + +
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    + +
    + + + +
    +
    + U.S. Court of Appeals for the D.C. Circuit +
    +
    + + + + + + + + + + + + + + + + + + +
    +
    +
    + + + +
    +
    + + + + + +
    +
    + +
    +
    U.S. Court of Appeals for the D.C. Circuit
    +
    + +
    +
    + +
    + + +
    +
    + +
    + + + + + +
    + +
    + +
    -
    -
    - -
    -
    - Recordings from May, - -
    + + + +
    + +
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    + +
    + + + +
    +
    + U.S. Court of Appeals for the D.C. Circuit +
    +
    + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + USCA-DC Oral Argument Recordings + + + + +
    +
    + + + + + +
    +
    + +
    +
    U.S. Court of Appeals for the D.C. Circuit
    +
    + +
    +
    + +
    + + +
    +
    + +
    + + + + + +
    + +
    + +
    -
    Jan  Feb  Mar  Apr  May  Jun  Jul  Aug  Sep  Oct  Nov  Dec 
    -
    05/19/2014
    46.7 Mb
    American Meat Institute v. AGRI
    Judges: - Garland, Chief Judge, Henderson*, Rogers, Tatel, Brown, Griffith**, -Kavanaugh, Srinivasan, Srinivasan, Pillard, Wilkins, Circuit Judges, and - Williams, Senior Circuit Judge - -*Judge Henderson will participate by teleconference. - -**Judge Griffith will consider this case based on the audio recording of - oral argument.
    Arguing: Catherine E. Stetson, Daniel Tenny (DOJ)
    05/19/2014
    -
    05/13/2014
    16.7 Mb
    Sorenson Communications Inc. v. FCC
    Judges: Brown, Griffith, Millett
    Arguing: Christopher J. Wright, C. Grey Pash, Jr. (FCC)
    05/13/2014
    -
    21.2 Mb
    USA v. Bank of America Corporation
    Judges: Brown, Griffith, Millett
    Arguing: Douglas W. Baruch, Lindsey Powell (DOJ)
    05/13/2014
    -
    No Recording
    Deborah Peterson v. Islamic Republic of Iran
    Judges: Brown, Griffith, Millett
    05/13/2014
    -
    05/12/2014
    21.7 Mb
    Sierra Club v. EPA
    Judges: Henderson, Millett, Sentelle
    Arguing: Khushi K. Desai, Norman L. Rave, Jr. (DOJ), Thomas Sayre Llewellyn
    05/12/2014
    -
    10.2 Mb
    Board of County Commissioners v. FHFA
    Judges: Henderson, Millett, Sentelle
    Arguing: Warren T. Burns, Michael A.F. Johnson
    05/12/2014
    -
    17.1 Mb
    Nat Rescr Def Cncl v. EPA
    Judges: Henderson, Millett, Sentelle
    Arguing: James S. Pew, Norman L. Rave, Jr. (DOJ), Michael Steinberg
    05/12/2014
    -
    05/09/2014
    15.9 Mb
    Ayanna Blue v. DC Public Schools
    Judges: Garland, Srinivasan, Pillard
    Arguing: Natalie Baughman, Carl J. Schifferle (OAG)
    05/09/2014
    -
    21.3 Mb
    Southwestern Power Admin. v. FERC
    Judges: Garland, Srinivasan, Pillard
    Arguing: Henry C. Whitaker (DOJ), Lona Perry (FERC)
    05/09/2014
    -
    No Recording
    Kathryn Campbell v. American International Group
    Judges: Garland, Srinivasan, Pillard
    05/09/2014
    -
    05/08/2014
    21 Mb
    USA v. Paul Hite
    Judges: Rogers, Pillard, Wilkins
    Arguing: Lawrence S. Robbins, Patricia Heffernan (AUSA)
    05/08/2014
    -
    17.2 Mb
    Matt Sissel v. HHS
    Judges: Rogers, Pillard, Wilkins
    Arguing: Timothy Sandefur, Alisa B. Klein (DOJ)
    05/08/2014
    -
    33.4 Mb
    Priests For Life v. HHS
    Judges: Rogers, Pillard, Wilkins
    Arguing: Robert Joseph Muise, Noel J. Francisco, Mark B. Stern (DOJ)
    05/08/2014
    -
    05/07/2014
    12.1 Mb
    David Cantu v. USA
    Judges: Tatel, Griffith, Pillard
    Arguing: Laura Ferguson, Charles W. Scarborough (DOJ)
    05/07/2014
    -
    15.4 Mb
    All Party Parliamentary Group v. Department of Defense
    Judges: Tatel, Griffith, Pillard
    Arguing: Dominic Perella, Charles W. Scarborough (DOJ)
    05/07/2014
    -
    12.7 Mb
    USA v. Philip Morris USA Inc.
    Judges: Tatel, Griffith, Pillard
    Arguing: United - States of America, ex rel. Anthony Oliver, Appellant v. Philip Morris -USA Inc., a Virginia Corporation formerly as Philip Morris, Inc.
    05/07/2014
    -
    24.8 Mb
    In re: Kellogg Brown & Root, Inc., et al., Petitioners
    Judges: Griffith, Kavanaugh, Srinivasan
    Arguing: John P. Elwood, Stephen M. Kohn
    05/07/2014
    -
    05/06/2014
    14.8 Mb
    McKesson Corp. v. Islam Repub Iran
    Judges: Henderson, Rogers, Tatel
    Arguing: Patrick P. O'Donnell, Mark N. Bravin
    05/06/2014
    -
    18.2 Mb
    Sierra Club v. EPA
    Judges: Henderson, Rogers, Tatel
    Arguing: Thomas Cmar, Norman L. Rave, Jr. (DOJ), Norman W. Fichthorn
    05/06/2014
    -
    10 Mb
    Prime Time International Comp v. AGRI
    Judges: Henderson, Rogers, Tatel
    Arguing: Jerry Stouck, Sydney Foster (DOJ)
    05/06/2014
    -
    05/05/2014
    No Recording
    Sealed Case
    Judges: Henderson, Brown, Wilkins
    05/05/2014
    -
    26.3 Mb
    Ralls Corporation v. Committee on Foreign Invest
    Judges: Henderson, Brown, Wilkins
    Arguing: Paul D. Clement, Douglas N. Letter (DOJ)
    05/05/2014
    -
    14.7 Mb
    Tonia Edwards v. DC
    Judges: Henderson, Brown, Wilkins
    Arguing: Robert J. McNamara, Mary L. Wilson (OAG)
    05/05/2014
    -
    05/02/2014
    53.7 Mb
    POM Wonderful LLC v. FTC
    Judges: Garland, Srinivasan, Ginsburg
    Arguing: Thomas C. Goldstein, Jonathan E. Nuechterlein (FTC)
    05/02/2014
    -
    14.4 Mb
    USA v. Yarcy Razo-Nunez
    Judges: Garland, Srinivasan, Ginsburg
    Arguing: Rosanna M. Taormina (FPD), Peter S. Smith (AUSA)
    05/02/2014
    -
    No Recording
    Alec L. v. Gina McCarthy
    Judges: Garland, Srinivasan, Ginsburg
    05/02/2014
    -
    05/01/2014
    19.9 Mb
    Minisink Residents for Enviro. v. FERC
    Judges: Kavanaugh, Millett, Wilkins
    Arguing: Carolyn Elefant, Karin L. Larson (FERC), Aaron M. Streett
    05/01/2014
    -
    34.5 Mb
    Fogo de Chao (Holdings) Inc. v. Dept. of Homeland Security
    Judges: Kavanaugh, Millett, Wilkins
    Arguing: Carl W. Hampe, Gisela A. Westwater (DOJ)
    05/01/2014
    -
    11.4 Mb
    Dan Sarfati v. Antigua and Barbuda
    Judges: Kavanaugh, Millett, Wilkins
    Arguing: Daniel B. Rogers, Conrad Alphonzo Airall
    05/01/2014
    -
    - -
    - No Recordings were found. -
    -
    -

    Jan  Feb  Mar  Apr  May  Jun  Jul  Aug  Sep  Oct  Nov  Dec 
    -
    -
    -
    -
    - - - \ No newline at end of file + + + +
    + +
    +
    +
    + +
    +
    32.9 Mb
    Kimball Wind, LLC v. FERC
    Judges: Henderson, Childs, Ginsburg
    Arguing: John P. Coyle, Susanna Y. Chu (FERC), Casen B. Ross (DOJ)
    10/10/2024
    +
    8.7 Mb
    Abram Harris v. U.S. Department of Transportation FMCSA
    Judges: Henderson, Childs, Ginsburg
    Arguing: Abram Harris (Pro Se), Jane M. Lyons (AUSA), Jeffrey S. Beelaert (Court-Appointed)
    10/10/2024
    +
    64.1 Mb
    IGas Holdings, Inc. v. EPA
    Judges: Pillard, Pan, Garcia
    Arguing: JoAnn T. Sandifer, Zhonette Brown, Sarah A. Buckley (DOJ), Elizabeth B. Dawson
    10/08/2024
    +
    51 Mb
    USA v. Jonathan Munafo
    Judges: Pillard, Pan, Garcia
    Arguing: Kevin E. Lerman (FPD), Reuven Dashevsky (AUSA)
    10/08/2024
    +
    111.6 Mb
    Nia Lucas v. American Federation of Government Employees
    Judges: Pillard, Pan, Garcia
    Arguing: Joshua Matz, Steven Winkelman (EEOC), Mark L. Vinson
    10/08/2024
    +
    18.4 Mb
    Patrick Kennedy v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Paul D. Scott*, Julie Ciamporcero Avetta (DOJ), * Attorney argued via Zoom
    10/07/2024
    +
    33.2 Mb
    Roy Meidinger v. Cmsnr. IRS
    Judges: Henderson, Rao, Walker
    Arguing: Jillian Sheridan Stonecipher (Court-Appointed), Roy J. Meidinger (Pro Se), Julie Ciamporcero Avetta (DOJ)
    10/07/2024
    +
    No Recording
    Edward M.R. v. DC
    Judges: Henderson, Rao, Walker
    Arguing:
    10/07/2024
    +
    49.5 Mb
    State of Georgia v. DOJ
    Judges: Srinivasan, Garcia, Rogers
    Arguing: Jeffrey E. Sandberg (DOJ), Anuja D. Thatte, Gene C. Schaerr
    10/04/2024
    +
    25.9 Mb
    Michael Henry v. Frank Kendall III
    Judges: Millett, Katsas, Walker
    Arguing: Robert Feldmeier, Brad Hinshelwood (DOJ)
    10/01/2024
    +
    68 Mb
    Capital Power Corporation v. FERC
    Judges: Millett, Katsas, Walker
    Arguing: James E. Tysse, Beth G. Pacella (FERC), Wendy B. Warren
    10/01/2024
    +
    No Recording
    USA v. Veterans Medical Transcription Services, Inc.
    Judges: Millett, Katsas, Walker
    Arguing:
    10/01/2024
    +
    + +
    +
    +
    + +
    + + + +
    +
    + U.S. Court of Appeals for the D.C. Circuit +
    +
    + + + + + + + + + + + + + + + + + + +
    \ No newline at end of file diff --git a/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7222_003.compare.json b/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7222_003.compare.json new file mode 100644 index 000000000..1d656e31d --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7222_003.compare.json @@ -0,0 +1,94 @@ +{ + "caseDetails": { + "aNumber": null, + "byteCount": 2024, + "caseFormType": "Appeal", + "caseId": "9f5ae37f-c44e-4194-b075-3f8f028559c4", + "caseNumber": "23-7222", + "caseOpened": "2023-10-02", + "caseSubSubType": null, + "caseSubType": "Direct Criminal", + "caseType": "Criminal", + "court": { + "abbreviatedName": "S.D.N.Y. (NEW YORK CITY)", + "name": "S.D.N.Y . (NEW YORK CITY)" + }, + "decisionDate": null, + "districtCourtName": null, + "feeStatus": "IFP Granted", + "name": "United States of America v. Raji", + "originatingCaseNumber": "1:19-cr-870-1", + "originatingCasesInformation": [ + { + "abbreviatedName": "S.D.N.Y. (NEW YORK CITY)", + "dateFiled": "2019-12-04", + "dateJudgmentEod": "2023-09-20", + "dateNoaReceivedCoa": "2023-09-29", + "judgmentDate": "2023-09-19", + "noticeOfAppealFiled": "2023-09-28", + "originatingCasePeople": [ + { + "firstName": "Jesse", + "fullName": "Jesse M. Furman, District Judge", + "jobTitle": "District Judge", + "lastName": "Furman", + "middleName": "M.", + "roleName": "Trial Judge" + } + ], + "originCaseNumber": "1:19-cr-870-1", + "pacerDocketUrl": "https://ecf.nysd.uscourts.gov/cgi-bin/DktRpt.pl?caseNumber=1:19-cr-870-1", + "sequenceNumber": 1 + } + ], + "partyAttorneyList": "
    UNITED STATES OF AMERICA
        AppelleeUSA
    Danielle Renee Sassoon, Assistant U.S. Attorney
    Direct: 212-637-1115
    [US Attorney]
    United States Attorney's Office for the Southern District of New York
    One St. Andrew's Plaza
    New York, NY 10007
    Catherine E. Ghosh, Assistant U.S. Attorney
    Direct: 212-637-1114
    [US Attorney]
    United States Attorney's Office for the Southern District of New York
    One St. Andrew's Plaza
    New York, NY 10007
    Robert Sobelman, Assistant U.S. Attorney
    Direct: 212-637-2616
    [US Attorney]
    United States Attorney's Office for the Southern District of New York
    One St. Andrew's Plaza
    New York, NY 10007
    Won S. Shin, Assistant U.S. Attorney
    Terminated: 11/15/2023
    [US Attorney]
    United States Attorney's Office for the Southern District of New York
    One Saint Andrew's Plaza
    New York, NY 10007
    MUSTAPHA RAJI
        AKA Sealed Defendant 1,
        Defendant - Appellant
    Jeremy Schneider, -
    Direct: 212-571-5500
    [CJA Appointment]
    Rothman, Schneider, Soloway & Stern, LLP
    100 Lafayette Street
    Suite 501
    New York, NY 10013
    ", + "receivedDate": "2023-10-02T10:55:11Z", + "shortCaption": "United States of America,
    \n
    \n                     Appellee,
    \n
    \n   v.
    \n
    \nMustapha Raji,  AKA Sealed Defendant 1,
    \n
    \n                     Defendant - Appellant.\n\n" + }, + "docketEntry": { + "createdOn": "2023-10-02T15:21:02Z", + "docketEntryId": "b4cd2647-3761-ee11-be6e-001dd804e087", + "docketEntryText": "

    NOTICE OF CRIMINAL APPEAL, on behalf of Appellant Mustapha Raji, OPENED. [Entered: 10/02/2023 11:23 AM]

    ", + "documentCount": 2, + "endDate": "2023-10-02", + "endDateFormatted": "10/02/2023", + "entryNumber": 3, + "fileSize": 275, + "pageCount": 20, + "restrictedDocsAvailable": false, + "restrictedPartyFilingDocketEntry": false, + "selected": false + }, + "docketEntryDocuments": [ + { + "billablePages": 2, + "caseFilingDocumentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/CaseFiling/23-7222 - 003 - Case OPENED/23-7222 003-01 - Case OPENED - Case OPENED.pdf", + "cost": 0.2, + "createdOn": "2023-10-02T15:22:59Z", + "docketDocumentDetailsId": "eaecb78f-3761-ee11-be6e-001dd804e3e2", + "documentNumber": "1", + "documentPermission": "Public", + "documentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/Docket/23-7222 - 003 - Case OPENED/23-7222 003-01 - Case OPENED - Case OPENED.pdf", + "fileSize": 133, + "name": "23-7222 003-01 - Case OPENED - Case OPENED.pdf", + "pageCount": 2, + "searchTransaction": null, + "searchValue": null + }, + { + "billablePages": 18, + "caseFilingDocumentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/CaseFiling/23-7222 - 003 - Case OPENED/23-7222 003-02 - Case OPENED - Case OPENED.pdf", + "cost": 1.8, + "createdOn": "2023-10-02T15:23:08Z", + "docketDocumentDetailsId": "3e45bc95-3761-ee11-be6e-001dd804e3e2", + "documentNumber": "2", + "documentPermission": "Public", + "documentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/Docket/23-7222 - 003 - Case OPENED/23-7222 003-02 - Case OPENED - Case OPENED.pdf", + "fileSize": 142, + "name": "23-7222 003-02 - Case OPENED - Case OPENED.pdf", + "pageCount": 18, + "searchTransaction": null, + "searchValue": null + } + ] +} diff --git a/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7222_003.json b/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7222_003.json new file mode 100644 index 000000000..7156e4939 --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7222_003.json @@ -0,0 +1,32 @@ +{ + "attachments": [ + { + "acms_document_guid": "eaecb78f-3761-ee11-be6e-001dd804e3e2", + "attachment_number": 1, + "description": "Case OPENED", + "pacer_doc_id": "b4cd2647-3761-ee11-be6e-001dd804e087", + "page_count": 2, + "cost": 0.2, + "permission": "Public", + "file_size": 133, + "date_filed": "2023-10-02" + }, + { + "acms_document_guid": "3e45bc95-3761-ee11-be6e-001dd804e3e2", + "attachment_number": 2, + "description": "Case OPENED", + "pacer_doc_id": "b4cd2647-3761-ee11-be6e-001dd804e087", + "page_count": 18, + "cost": 1.8, + "permission": "Public", + "file_size": 142, + "date_filed": "2023-10-02" + } + ], + "entry_number": 3, + "pacer_case_id": "9f5ae37f-c44e-4194-b075-3f8f028559c4", + "pacer_doc_id": "b4cd2647-3761-ee11-be6e-001dd804e087", + "description": "NOTICE OF CRIMINAL APPEAL, on behalf of Appellant Mustapha Raji, OPENED. [Entered: 10/02/2023 11:23 AM]", + "date_end": "2023-10-02", + "date_filed": "2023-10-02" +} diff --git a/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7246_003.compare.json b/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7246_003.compare.json new file mode 100644 index 000000000..f62abcaf8 --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7246_003.compare.json @@ -0,0 +1,95 @@ +{ + "caseDetails": { + "aNumber": null, + "byteCount": 2835, + "caseFormType": "OtherAgency", + "caseId": "1e399dc7-2462-ee11-a81c-001dd809b0dc", + "caseNumber": "23-7246", + "caseOpened": "2023-10-03", + "caseSubSubType": null, + "caseSubType": "Non-Immigration Petition for Review", + "caseType": "Agency", + "court": { + "abbreviatedName": "DOJ", + "name": "Department of Justice" + }, + "decisionDate": "2023-09-29", + "districtCourtName": null, + "feeStatus": "Paid", + "name": "Ascent Pharmaceuticals, Inc. v. United States Drug Enforcement Administration", + "originatingCaseNumber": "RA0448503", + "originatingCasesInformation": [ + { + "abbreviatedName": "DOJ", + "judgmentDate": null, + "originatingCasePeople": [], + "originCaseNumber": "RA0448503", + "sequenceNumber": 1 + } + ], + "partyAttorneyList": "
    ASCENT PHARMACEUTICALS, INC.
        Petitioner
    James A. Walden, -
    Direct: 212-335-2031
    [Retained]
    Walden Macht & Haran LLP
    250 Vesey Street
    27th Floor
    New York, NY 10281
    UNITED STATES DRUG ENFORCEMENT ADMINISTRATION
        Respondent
    Urja Mittal, -
    Direct: 202-353-4895
    [US Attorney]
    United States Department of Justice
    Civil Division, Appellate Staff
    950 Pennsylvania Avenue, NW
    Washington, DC 20530
    Mark B. Stern, -
    [US Attorney]
    United States Department of Justice
    Civil Division, Office of Immigration Litigation
    950 Pennsylvania Avenue, NW
    Washington, DC 20530
    United States Drug Enforcement Administration
    UNITED STATES DEPARTMENT OF JUSTICE
    Terminated: 10/06/2023
        Respondent
    Urja Mittal, -
    Terminated: 10/06/2023
    Direct: 202-353-4895
    [US Attorney]
    United States Department of Justice
    Civil Division, Appellate Staff
    950 Pennsylvania Avenue, NW
    Washington, DC 20530
    Mark B. Stern, -
    Terminated: 10/06/2023
    [US Attorney]
    United States Department of Justice
    Civil Division, Office of Immigration Litigation
    950 Pennsylvania Avenue, NW
    Washington, DC 20530
    Benjamin H. Torrance, Assistant U.S. Attorney
    Terminated: 10/05/2023
    [US Attorney]
    United States Attorney's Office for the Southern District of New York
    86 Chambers Street
    New York, NY 10007
    Lena D Watkins, Trial Attorney
    Terminated: 10/05/2023
    Direct: 202-514-8713
    [US Attorney]
    United States Department of Justice
    CRM/Narc. & Dang. Drug. Sec.
    145 N Street, NE
    Second Floor, East W
    Washington, DC 20530
    ", + "receivedDate": "2023-10-03T15:59:24Z", + "shortCaption": "Ascent Pharmaceuticals, Inc.,
    \r\n
    \r\n                     Petitioner - Petitioner,
    \r\n
    \r\n   v.
    \r\n
    \r\nUnited States Drug Enforcement Administration,
    \r\n
    \r\n                     Respondent." + }, + "docketEntry": { + "createdOn": "2023-10-03T21:46:47Z", + "docketEntryId": "00fa4459-3662-ee11-be6e-001dd804e4bd", + "docketEntryText": "

    PETITION FOR REVIEW OF AGENCY ORDER, on behalf of Petitioner Ascent Pharmaceuticals, Inc., OPENED. [Entered: 10/03/2023 05:50 PM]

    ", + "documentCount": 3, + "endDate": "2023-10-03", + "endDateFormatted": "10/03/2023", + "entryNumber": 3, + "fileSize": 459, + "pageCount": 9, + "restrictedDocsAvailable": false, + "restrictedPartyFilingDocketEntry": false, + "selected": false + }, + "docketEntryDocuments": [ + { + "billablePages": 2, + "caseFilingDocumentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/CaseFiling/23-7246 - 003 - Petition for Review OPENED/23-7246 003-01 - Petition for Review OPENED - Petition for Review OPENED.pdf", + "cost": 0.2, + "createdOn": "2023-10-03T21:49:44Z", + "docketDocumentDetailsId": "1fb7febf-3662-ee11-be6e-001dd804e4bd", + "documentNumber": "1", + "documentPermission": "Public", + "documentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/Docket/23-7246 - 003 - Petition for Review OPENED/23-7246 003-01 - Petition for Review OPENED - Petition for Review OPENED.pdf", + "fileSize": 157, + "name": "23-7246 003-01 - Petition for Review OPENED - Petition for Review OPENED.pdf", + "pageCount": 2, + "searchTransaction": null, + "searchValue": null + }, + { + "billablePages": 5, + "caseFilingDocumentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/CaseFiling/23-7246 - 003 - Petition for Review OPENED/23-7246 003-02 - Petition for Review OPENED - Petition for Review OPENED.pdf", + "cost": 0.5, + "createdOn": "2023-10-03T21:49:59Z", + "docketDocumentDetailsId": "13ae07c6-3662-ee11-be6e-001dd804e4bd", + "documentNumber": "2", + "documentPermission": "Public", + "documentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/Docket/23-7246 - 003 - Petition for Review OPENED/23-7246 003-02 - Petition for Review OPENED - Petition for Review OPENED.pdf", + "fileSize": 163, + "name": "23-7246 003-02 - Petition for Review OPENED - Petition for Review OPENED.pdf", + "pageCount": 5, + "searchTransaction": null, + "searchValue": null + }, + { + "billablePages": 2, + "caseFilingDocumentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/CaseFiling/23-7246 - 003 - Petition for Review OPENED/23-7246 003-03 - Petition for Review OPENED - Petition for Review OPENED.pdf", + "cost": 0.2, + "createdOn": "2023-10-03T21:50:20Z", + "docketDocumentDetailsId": "501a2cd8-3662-ee11-be6e-001dd804e4bd", + "documentNumber": "3", + "documentPermission": "Public", + "documentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/Docket/23-7246 - 003 - Petition for Review OPENED/23-7246 003-03 - Petition for Review OPENED - Petition for Review OPENED.pdf", + "fileSize": 139, + "name": "23-7246 003-03 - Petition for Review OPENED - Petition for Review OPENED.pdf", + "pageCount": 2, + "searchTransaction": null, + "searchValue": null + } + ] +} diff --git a/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7246_003.json b/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7246_003.json new file mode 100644 index 000000000..b88a513b5 --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7246_003.json @@ -0,0 +1,43 @@ +{ + "attachments": [ + { + "acms_document_guid": "1fb7febf-3662-ee11-be6e-001dd804e4bd", + "attachment_number": 1, + "description": "Petition for Review OPENED", + "pacer_doc_id": "00fa4459-3662-ee11-be6e-001dd804e4bd", + "page_count": 2, + "cost": 0.2, + "permission": "Public", + "file_size": 157, + "date_filed": "2023-10-03" + }, + { + "acms_document_guid": "13ae07c6-3662-ee11-be6e-001dd804e4bd", + "attachment_number": 2, + "description": "Petition for Review OPENED", + "pacer_doc_id": "00fa4459-3662-ee11-be6e-001dd804e4bd", + "page_count": 5, + "cost": 0.5, + "permission": "Public", + "file_size": 163, + "date_filed": "2023-10-03" + }, + { + "acms_document_guid": "501a2cd8-3662-ee11-be6e-001dd804e4bd", + "attachment_number": 3, + "description": "Petition for Review OPENED", + "pacer_doc_id": "00fa4459-3662-ee11-be6e-001dd804e4bd", + "page_count": 2, + "cost": 0.2, + "permission": "Public", + "file_size": 139, + "date_filed": "2023-10-03" + } + ], + "entry_number": 3, + "pacer_case_id": "1e399dc7-2462-ee11-a81c-001dd809b0dc", + "pacer_doc_id": "00fa4459-3662-ee11-be6e-001dd804e4bd", + "description": "PETITION FOR REVIEW OF AGENCY ORDER, on behalf of Petitioner Ascent Pharmaceuticals, Inc., OPENED. [Entered: 10/03/2023 05:50 PM]", + "date_end": "2023-10-03", + "date_filed": "2023-10-03" +} diff --git a/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7246_005.compare.json b/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7246_005.compare.json new file mode 100644 index 000000000..75e1798f8 --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7246_005.compare.json @@ -0,0 +1,95 @@ +{ + "caseDetails": { + "aNumber": null, + "byteCount": 2835, + "caseFormType": "OtherAgency", + "caseId": "1e399dc7-2462-ee11-a81c-001dd809b0dc", + "caseNumber": "23-7246", + "caseOpened": "2023-10-03", + "caseSubSubType": null, + "caseSubType": "Non-Immigration Petition for Review", + "caseType": "Agency", + "court": { + "abbreviatedName": "DOJ", + "name": "Department of Justice" + }, + "decisionDate": "2023-09-29", + "districtCourtName": null, + "feeStatus": "Paid", + "name": "Ascent Pharmaceuticals, Inc. v. United States Drug Enforcement Administration", + "originatingCaseNumber": "RA0448503", + "originatingCasesInformation": [ + { + "abbreviatedName": "DOJ", + "judgmentDate": null, + "originatingCasePeople": [], + "originCaseNumber": "RA0448503", + "sequenceNumber": 1 + } + ], + "partyAttorneyList": "
    ASCENT PHARMACEUTICALS, INC.
        Petitioner
    James A. Walden, -
    Direct: 212-335-2031
    [Retained]
    Walden Macht & Haran LLP
    250 Vesey Street
    27th Floor
    New York, NY 10281
    UNITED STATES DRUG ENFORCEMENT ADMINISTRATION
        Respondent
    Urja Mittal, -
    Direct: 202-353-4895
    [US Attorney]
    United States Department of Justice
    Civil Division, Appellate Staff
    950 Pennsylvania Avenue, NW
    Washington, DC 20530
    Mark B. Stern, -
    [US Attorney]
    United States Department of Justice
    Civil Division, Office of Immigration Litigation
    950 Pennsylvania Avenue, NW
    Washington, DC 20530
    United States Drug Enforcement Administration
    UNITED STATES DEPARTMENT OF JUSTICE
    Terminated: 10/06/2023
        Respondent
    Urja Mittal, -
    Terminated: 10/06/2023
    Direct: 202-353-4895
    [US Attorney]
    United States Department of Justice
    Civil Division, Appellate Staff
    950 Pennsylvania Avenue, NW
    Washington, DC 20530
    Mark B. Stern, -
    Terminated: 10/06/2023
    [US Attorney]
    United States Department of Justice
    Civil Division, Office of Immigration Litigation
    950 Pennsylvania Avenue, NW
    Washington, DC 20530
    Benjamin H. Torrance, Assistant U.S. Attorney
    Terminated: 10/05/2023
    [US Attorney]
    United States Attorney's Office for the Southern District of New York
    86 Chambers Street
    New York, NY 10007
    Lena D Watkins, Trial Attorney
    Terminated: 10/05/2023
    Direct: 202-514-8713
    [US Attorney]
    United States Department of Justice
    CRM/Narc. & Dang. Drug. Sec.
    145 N Street, NE
    Second Floor, East W
    Washington, DC 20530
    ", + "receivedDate": "2023-10-03T15:59:24Z", + "shortCaption": "Ascent Pharmaceuticals, Inc.,
    \r\n
    \r\n                     Petitioner - Petitioner,
    \r\n
    \r\n   v.
    \r\n
    \r\nUnited States Drug Enforcement Administration,
    \r\n
    \r\n                     Respondent." + }, + "docketEntry": { + "createdOn": "2023-10-03T21:59:45Z", + "docketEntryId": "8f44ae28-3862-ee11-be6e-001dd804e4bd", + "docketEntryText": "

    PETITION FOR REVIEW OF AGENCY ORDER, SERVED. [Entered: 10/03/2023 06:05 PM]

    ", + "documentCount": 3, + "endDate": "2023-10-03", + "endDateFormatted": "10/03/2023", + "entryNumber": 5, + "fileSize": 422, + "pageCount": 8, + "restrictedDocsAvailable": false, + "restrictedPartyFilingDocketEntry": false, + "selected": false + }, + "docketEntryDocuments": [ + { + "billablePages": 1, + "caseFilingDocumentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/CaseFiling/23-7246 - 005 - Agency Review Served/23-7246 005-01 - Agency Review Served - Agency Review Served.pdf", + "cost": 0.1, + "createdOn": "2023-10-03T22:04:42Z", + "docketDocumentDetailsId": "d2838dd8-3862-ee11-be6e-001dd804e4bd", + "documentNumber": "1", + "documentPermission": "Public", + "documentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/Docket/23-7246 - 005 - Agency Review Served/23-7246 005-01 - Agency Review Served - Agency Review Served.pdf", + "fileSize": 120, + "name": "23-7246 005-01 - Agency Review Served - Agency Review Served.pdf", + "pageCount": 1, + "searchTransaction": null, + "searchValue": null + }, + { + "billablePages": 5, + "caseFilingDocumentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/CaseFiling/23-7246 - 005 - Agency Review Served/23-7246 005-02 - Agency Review Served - Agency Review Served.pdf", + "cost": 0.5, + "createdOn": "2023-10-03T22:05:03Z", + "docketDocumentDetailsId": "32fb89e4-3862-ee11-be6e-001dd804e4bd", + "documentNumber": "2", + "documentPermission": "Public", + "documentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/Docket/23-7246 - 005 - Agency Review Served/23-7246 005-02 - Agency Review Served - Agency Review Served.pdf", + "fileSize": 163, + "name": "23-7246 005-02 - Agency Review Served - Agency Review Served.pdf", + "pageCount": 5, + "searchTransaction": null, + "searchValue": null + }, + { + "billablePages": 2, + "caseFilingDocumentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/CaseFiling/23-7246 - 005 - Agency Review Served/23-7246 005-03 - Agency Review Served - Agency Review Served.pdf", + "cost": 0.2, + "createdOn": "2023-10-03T22:05:15Z", + "docketDocumentDetailsId": "ce5395ea-3862-ee11-be6e-001dd804e4bd", + "documentNumber": "3", + "documentPermission": "Public", + "documentUrl": "https://ca02.sharepoint.com/sites/ACMS-001/Docket/23-7246 - 005 - Agency Review Served/23-7246 005-03 - Agency Review Served - Agency Review Served.pdf", + "fileSize": 139, + "name": "23-7246 005-03 - Agency Review Served - Agency Review Served.pdf", + "pageCount": 2, + "searchTransaction": null, + "searchValue": null + } + ] +} diff --git a/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7246_005.json b/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7246_005.json new file mode 100644 index 000000000..5f462f76f --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/acms/ca2_23-7246_005.json @@ -0,0 +1,43 @@ +{ + "attachments": [ + { + "acms_document_guid": "d2838dd8-3862-ee11-be6e-001dd804e4bd", + "attachment_number": 1, + "description": "Agency Review Served", + "pacer_doc_id": "8f44ae28-3862-ee11-be6e-001dd804e4bd", + "page_count": 1, + "cost": 0.1, + "permission": "Public", + "file_size": 120, + "date_filed": "2023-10-03" + }, + { + "acms_document_guid": "32fb89e4-3862-ee11-be6e-001dd804e4bd", + "attachment_number": 2, + "description": "Agency Review Served", + "pacer_doc_id": "8f44ae28-3862-ee11-be6e-001dd804e4bd", + "page_count": 5, + "cost": 0.5, + "permission": "Public", + "file_size": 163, + "date_filed": "2023-10-03" + }, + { + "acms_document_guid": "ce5395ea-3862-ee11-be6e-001dd804e4bd", + "attachment_number": 3, + "description": "Agency Review Served", + "pacer_doc_id": "8f44ae28-3862-ee11-be6e-001dd804e4bd", + "page_count": 2, + "cost": 0.2, + "permission": "Public", + "file_size": 139, + "date_filed": "2023-10-03" + } + ], + "entry_number": 5, + "pacer_case_id": "1e399dc7-2462-ee11-a81c-001dd809b0dc", + "pacer_doc_id": "8f44ae28-3862-ee11-be6e-001dd804e4bd", + "description": "PETITION FOR REVIEW OF AGENCY ORDER, SERVED. [Entered: 10/03/2023 06:05 PM]", + "date_end": "2023-10-03", + "date_filed": "2023-10-03" +} diff --git a/tests/examples/pacer/appellate_attachment_pages/acms/ca9_22-21_033.compare.json b/tests/examples/pacer/appellate_attachment_pages/acms/ca9_22-21_033.compare.json new file mode 100644 index 000000000..e318ee3e7 --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/acms/ca9_22-21_033.compare.json @@ -0,0 +1,72 @@ +{ + "caseDetails": { + "aNumber": "A022-317-477", + "byteCount": 1858, + "caseFormType": "Immigration", + "caseId": "c8d83e85-5b6e-ec11-b820-00155d36fcd4", + "caseNumber": "22-21", + "caseOpened": "2022-01-05", + "caseSubSubType": null, + "caseSubType": "Immigration", + "caseType": "Agency", + "court": { + "abbreviatedName": "BIA", + "name": "Board of Immigration Appeals" + }, + "decisionDate": "2021-12-21", + "districtCourtName": "San Francisco Northern California", + "feeStatus": "Paid", + "name": "Lopez Guevara v. Garland", + "originatingCaseNumber": null, + "originatingCasesInformation": [], + "partyAttorneyList": "
    JOSE LUIS LOPEZ GUEVARA
        A022-317-477,
        Petitioner,
    Ms. Lisa Pickering, Attorney
    Direct: 818-784-1126
    Email: lisapickering@hotmail.com
    [Retained]
    Law Office of Roni P. Deutsch
    16255 Ventura Boulevard
    Suite 610
    Encino, CA 91436

     

    Ramin Ghashghaei, Attorney
    Direct: 213-487-9211
    Email: raming@raminusa.com
    [Retained]
    Law Offices of Ramin Ghashghaei, Inc.
    23371 Mulholland Dr.
    Suite 399
    Woodland Hills, CA 91364

     

    MERRICK B. GARLAND, ATTORNEY GENERAL
        Respondent,
    Mrs. Nehal Kamani, Attorney
    Email: nehal.kamani@usdoj.gov
    [Government]
    DOJ - U.S. Department of Justice
    Civil Division/Office of Immigration Litigation
    P.O. Box 878, Benjamin Franklin Station
    Washington, DC 20044

     

    OIL
    Email: Ninth.Circuit.OIL@usdoj.gov
    [Government]
    DOJ - U.S. Department of Justice
    Civil Division/Office of Immigration Litigation
    P.O. Box 878, Benjamin Franklin Station
    Washington, DC 20044

     

    ", + "receivedDate": "2022-01-05T19:18:47Z", + "shortCaption": "JOSE LUIS LOPEZ GUEVARA,
    \r\n
    \r\n                     Petitioner,
    \r\n
    \r\n   v.
    \r\n
    \r\nMERRICK B. GARLAND, Attorney General,
    \r\n
    \r\n                     Respondent." + }, + "docketEntry": { + "createdOn": "2023-04-19T16:30:46Z", + "docketEntryId": "a329c288-cfde-ed11-a7c6-001dd80725bf", + "docketEntryText": "

    MEMORANDUM DISPOSITION (Kim McLane WARDLAW, Holly A. THOMAS, Lee H. Rosenthal) DISMISSED in part and DENIED in part. FILED AND ENTERED JUDGMENT. [Entered: 04/19/2023 09:34 AM]

    ", + "documentCount": 2, + "endDate": "2023-04-19", + "endDateFormatted": "04/19/2023", + "entryNumber": 33, + "fileSize": 598, + "pageCount": 9, + "restrictedDocsAvailable": false, + "restrictedPartyFilingDocketEntry": false, + "selected": false + }, + "docketEntryDocuments": [ + { + "billablePages": 5, + "caseFilingDocumentUrl": "https://ca9.sharepoint.com/sites/ACMS/CaseFiling/22-21 - 033 - Memorandum Disposition/22-21 033-01 - Memorandum Disposition - Memorandum.pdf", + "cost": 0.5, + "createdOn": "2023-04-19T16:32:29Z", + "docketDocumentDetailsId": "9ad6abc4-cfde-ed11-a7c6-001dd80725bf", + "documentNumber": "1", + "documentPermission": "Public", + "documentUrl": "https://ca9.sharepoint.com/sites/ACMS/Docket/22-21 - 033 - Memorandum Disposition/22-21 033-01 - Memorandum Disposition - Memorandum.pdf", + "fileSize": 290, + "name": "22-21 033-01 - Memorandum Disposition - Memorandum.pdf", + "pageCount": 5, + "searchTransaction": null, + "searchValue": null + }, + { + "billablePages": 4, + "caseFilingDocumentUrl": "https://ca9.sharepoint.com/sites/ACMS/CaseFiling/22-21 - 033 - Memorandum Disposition/22-21 033-02 - Memorandum Disposition - Post Judgment Form.pdf", + "cost": 0.4, + "createdOn": "2023-04-19T16:32:36Z", + "docketDocumentDetailsId": "a320a4ca-cfde-ed11-a7c6-001dd80725bf", + "documentNumber": "2", + "documentPermission": "Public", + "documentUrl": "https://ca9.sharepoint.com/sites/ACMS/Docket/22-21 - 033 - Memorandum Disposition/22-21 033-02 - Memorandum Disposition - Post Judgment Form.pdf", + "fileSize": 308, + "name": "22-21 033-02 - Memorandum Disposition - Post Judgment Form.pdf", + "pageCount": 4, + "searchTransaction": null, + "searchValue": null + } + ] +} diff --git a/tests/examples/pacer/appellate_attachment_pages/acms/ca9_22-21_033.json b/tests/examples/pacer/appellate_attachment_pages/acms/ca9_22-21_033.json new file mode 100644 index 000000000..ffa62c12d --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/acms/ca9_22-21_033.json @@ -0,0 +1,32 @@ +{ + "attachments": [ + { + "acms_document_guid": "9ad6abc4-cfde-ed11-a7c6-001dd80725bf", + "attachment_number": 1, + "description": "Memorandum", + "pacer_doc_id": "a329c288-cfde-ed11-a7c6-001dd80725bf", + "page_count": 5, + "cost": 0.5, + "permission": "Public", + "file_size": 290, + "date_filed": "2023-04-19" + }, + { + "acms_document_guid": "a320a4ca-cfde-ed11-a7c6-001dd80725bf", + "attachment_number": 2, + "description": "Post Judgment Form", + "pacer_doc_id": "a329c288-cfde-ed11-a7c6-001dd80725bf", + "page_count": 4, + "cost": 0.4, + "permission": "Public", + "file_size": 308, + "date_filed": "2023-04-19" + } + ], + "entry_number": 33, + "pacer_case_id": "c8d83e85-5b6e-ec11-b820-00155d36fcd4", + "pacer_doc_id": "a329c288-cfde-ed11-a7c6-001dd80725bf", + "description": "MEMORANDUM DISPOSITION (Kim McLane WARDLAW, Holly A. THOMAS, Lee H. Rosenthal) DISMISSED in part and DENIED in part. FILED AND ENTERED JUDGMENT. [Entered: 04/19/2023 09:34 AM]", + "date_end": "2023-04-19", + "date_filed": "2023-04-19" +} diff --git a/tests/examples/pacer/appellate_attachment_pages/acms/ca9_22-22_029.compare.json b/tests/examples/pacer/appellate_attachment_pages/acms/ca9_22-22_029.compare.json new file mode 100644 index 000000000..8406f800e --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/acms/ca9_22-22_029.compare.json @@ -0,0 +1,72 @@ +{ + "caseDetails": { + "aNumber": "A216-267-791", + "byteCount": 2596, + "caseFormType": "Immigration", + "caseId": "bb647e98-5e6e-ec11-b820-00155d36fcd4", + "caseNumber": "22-22", + "caseOpened": "2022-01-05", + "caseSubSubType": null, + "caseSubType": "Immigration", + "caseType": "Agency", + "court": { + "abbreviatedName": "BIA", + "name": "Board of Immigration Appeals" + }, + "decisionDate": "2021-12-08", + "districtCourtName": "San Francisco Northern California", + "feeStatus": "Paid", + "name": "Chavez Soto, et al. v. Garland", + "originatingCaseNumber": null, + "originatingCasesInformation": [], + "partyAttorneyList": "
    MARIA DEL CARMEN CHAVEZ SOTO
        A216-267-791,
        Petitioner,
    Mr. Jeremy Michael Clason, Attorney
    Direct: 559-681-4717
    Email: jeremy@clasonimmigration.com
    [Retained]
    Clason Immigration Law, PC
    1315 Van Ness Avenue
    Suite 100
    Fresno, CA 93721

     

    ANTONIA GUADALUPE GOMEZ CHAVEZ
        A216-267-792,
        Petitioner,
    Mr. Jeremy Michael Clason, Attorney
    Direct: 559-681-4717
    Email: jeremy@clasonimmigration.com
    [Retained]
    Clason Immigration Law, PC
    1315 Van Ness Avenue
    Suite 100
    Fresno, CA 93721

     

    EDUARDO GOMEZ CHAVEZ
        A216-267-793,
        Petitioner,
    Mr. Jeremy Michael Clason, Attorney
    Direct: 559-681-4717
    Email: jeremy@clasonimmigration.com
    [Retained]
    Clason Immigration Law, PC
    1315 Van Ness Avenue
    Suite 100
    Fresno, CA 93721

     

    MERRICK B. GARLAND, ATTORNEY GENERAL
        Respondent,
    Mr. Andrew B. Insenga, Trial Attorney
    Email: andrew.insenga@usdoj.gov
    [Government]
    DOJ - U.S. Department of Justice
    Civil Division/Office of Immigration Litigation
    P.O. Box 878, Benjamin Franklin Station
    Washington, DC 20044

     

    OIL
    Email: Ninth.Circuit.OIL@usdoj.gov
    [Government]
    DOJ - U.S. Department of Justice
    Civil Division/Office of Immigration Litigation
    P.O. Box 878, Benjamin Franklin Station
    Washington, DC 20044

     

    ", + "receivedDate": "2022-01-05T19:41:23Z", + "shortCaption": "MARIA DEL CARMEN CHAVEZ SOTO; ANTONIA GUADALUPE GOMEZ CHAVEZ; EDUARDO GOMEZ CHAVEZ,
    \r\n
    \r\n                     Petitioners,
    \r\n
    \r\n   v.
    \r\n
    \r\nMERRICK B. GARLAND, Attorney General,
    \r\n
    \r\n                     Respondent." + }, + "docketEntry": { + "createdOn": "2023-04-03T16:48:21Z", + "docketEntryId": "583c6255-3fd2-ed11-b596-001dd80701be", + "docketEntryText": "

    MEMORANDUM DISPOSITION (Milan D. SMITH, Jr., John B. OWENS, Xavier Rodriguez) The stay of removal remains in place until the mandate issues. PETITION DISMISSED. FILED AND ENTERED JUDGMENT. [Entered: 04/03/2023 09:50 AM]

    ", + "documentCount": 2, + "endDate": "2023-04-03", + "endDateFormatted": "04/03/2023", + "entryNumber": 29, + "fileSize": 558, + "pageCount": 7, + "restrictedDocsAvailable": false, + "restrictedPartyFilingDocketEntry": false, + "selected": false + }, + "docketEntryDocuments": [ + { + "billablePages": 3, + "caseFilingDocumentUrl": "https://ca9.sharepoint.com/sites/ACMS/CaseFiling/22-22 - 029 - Memorandum Disposition/22-22 029-01 - Memorandum Disposition - Memorandum.pdf", + "cost": 0.3, + "createdOn": "2023-04-03T16:49:27Z", + "docketDocumentDetailsId": "6e8a6679-3fd2-ed11-b596-001dd80701be", + "documentNumber": "1", + "documentPermission": "Public", + "documentUrl": "https://ca9.sharepoint.com/sites/ACMS/Docket/22-22 - 029 - Memorandum Disposition/22-22 029-01 - Memorandum Disposition - Memorandum.pdf", + "fileSize": 250, + "name": "22-22 029-01 - Memorandum Disposition - Memorandum.pdf", + "pageCount": 3, + "searchTransaction": null, + "searchValue": null + }, + { + "billablePages": 4, + "caseFilingDocumentUrl": "https://ca9.sharepoint.com/sites/ACMS/CaseFiling/22-22 - 029 - Memorandum Disposition/22-22 029-02 - Memorandum Disposition - Memorandum.pdf", + "cost": 0.4, + "createdOn": "2023-04-03T16:49:29Z", + "docketDocumentDetailsId": "2dc3767f-3fd2-ed11-b596-001dd80701be", + "documentNumber": "2", + "documentPermission": "Public", + "documentUrl": "https://ca9.sharepoint.com/sites/ACMS/Docket/22-22 - 029 - Memorandum Disposition/22-22 029-02 - Memorandum Disposition - Memorandum.pdf", + "fileSize": 308, + "name": "22-22 029-02 - Memorandum Disposition - Memorandum.pdf", + "pageCount": 4, + "searchTransaction": null, + "searchValue": null + } + ] +} diff --git a/tests/examples/pacer/appellate_attachment_pages/acms/ca9_22-22_029.json b/tests/examples/pacer/appellate_attachment_pages/acms/ca9_22-22_029.json new file mode 100644 index 000000000..5f1e3c9b8 --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/acms/ca9_22-22_029.json @@ -0,0 +1,32 @@ +{ + "attachments": [ + { + "acms_document_guid": "6e8a6679-3fd2-ed11-b596-001dd80701be", + "attachment_number": 1, + "description": "Memorandum", + "pacer_doc_id": "583c6255-3fd2-ed11-b596-001dd80701be", + "page_count": 3, + "cost": 0.3, + "permission": "Public", + "file_size": 250, + "date_filed": "2023-04-03" + }, + { + "acms_document_guid": "2dc3767f-3fd2-ed11-b596-001dd80701be", + "attachment_number": 2, + "description": "Memorandum", + "pacer_doc_id": "583c6255-3fd2-ed11-b596-001dd80701be", + "page_count": 4, + "cost": 0.4, + "permission": "Public", + "file_size": 308, + "date_filed": "2023-04-03" + } + ], + "entry_number": 29, + "pacer_case_id": "bb647e98-5e6e-ec11-b820-00155d36fcd4", + "pacer_doc_id": "583c6255-3fd2-ed11-b596-001dd80701be", + "description": "MEMORANDUM DISPOSITION (Milan D. SMITH, Jr., John B. OWENS, Xavier Rodriguez) The stay of removal remains in place until the mandate issues. PETITION DISMISSED. FILED AND ENTERED JUDGMENT. [Entered: 04/03/2023 09:50 AM]", + "date_end": "2023-04-03", + "date_filed": "2023-04-03" +} diff --git a/tests/examples/pacer/appellate_attachment_pages/ca1_46307.json b/tests/examples/pacer/appellate_attachment_pages/ca1_46307.json index 942701062..60b8d1892 100644 --- a/tests/examples/pacer/appellate_attachment_pages/ca1_46307.json +++ b/tests/examples/pacer/appellate_attachment_pages/ca1_46307.json @@ -3,14 +3,16 @@ { "attachment_number": 1, "description": "Main Document", + "file_size_bytes": 13481, "pacer_doc_id": "00107548050", - "page_count": 3 + "page_count": 1 }, { "attachment_number": 2, "description": "", + "file_size_bytes": 8890, "pacer_doc_id": "00107548051", - "page_count": 5 + "page_count": 1 } ], "pacer_case_id": "46307", diff --git a/tests/examples/pacer/appellate_attachment_pages/ca1_46307_new.html b/tests/examples/pacer/appellate_attachment_pages/ca1_46307_new.html new file mode 100644 index 000000000..fbc779b90 --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/ca1_46307_new.html @@ -0,0 +1,139 @@ + +Document + + + +
    2 Documents are attached to this filing

    + + +
    + + + + + +
    Document DescriptionPagesSize
    1Open document Main Document113.17 KB
    2Open document 18.68 KB
    +
    +
    +
    +Selected Pages: + +  Selected Size: + + + +
    Totals reflect accessible documents only and do not include unauthorized restricted documents. +

    +
    Include Page Numbers
    + + + + + + +
    +
    +
    diff --git a/tests/examples/pacer/appellate_attachment_pages/ca1_46307_new.json b/tests/examples/pacer/appellate_attachment_pages/ca1_46307_new.json new file mode 100644 index 000000000..60b8d1892 --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/ca1_46307_new.json @@ -0,0 +1,21 @@ +{ + "attachments": [ + { + "attachment_number": 1, + "description": "Main Document", + "file_size_bytes": 13481, + "pacer_doc_id": "00107548050", + "page_count": 1 + }, + { + "attachment_number": 2, + "description": "", + "file_size_bytes": 8890, + "pacer_doc_id": "00107548051", + "page_count": 1 + } + ], + "pacer_case_id": "46307", + "pacer_doc_id": "00107548050", + "pacer_seq_no": "6315334" +} \ No newline at end of file diff --git a/tests/examples/pacer/appellate_attachment_pages/ca5_22-30311.json b/tests/examples/pacer/appellate_attachment_pages/ca5_22-30311.json index fdee7eaa8..212d342e4 100644 --- a/tests/examples/pacer/appellate_attachment_pages/ca5_22-30311.json +++ b/tests/examples/pacer/appellate_attachment_pages/ca5_22-30311.json @@ -3,18 +3,21 @@ { "attachment_number": 1, "description": "Motion Filed on Behalf of Party", + "file_size_bytes": 10293, "pacer_doc_id": "00506485029", "page_count": 4 }, { "attachment_number": 2, "description": "Appellant Brief", + "file_size_bytes": 113319, "pacer_doc_id": "00506485030", "page_count": 30 }, { "attachment_number": 3, "description": "Record Excerpts", + "file_size_bytes": 2155547, "pacer_doc_id": "00506485031", "page_count": 43 } diff --git a/tests/examples/pacer/appellate_attachment_pages/ca5_221848.html b/tests/examples/pacer/appellate_attachment_pages/ca5_221848.html new file mode 100644 index 000000000..9a53e9c4c --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/ca5_221848.html @@ -0,0 +1,138 @@ +Document + + + +
    2 Documents are attached to this filing

    + + +
    + + + + + +
    Document DescriptionPagesSize
    1Open document Published Opinion13129.46 KB
    2Open form OPJDT-2 Letter266.85 KB
    +
    +
    +
    +Selected Pages: + +  Selected Size: + + + +
    Totals reflect accessible documents only and do not include unauthorized restricted documents. +

    +
    Include Page Numbers
    + + + + + + +
    +
    +
    \ No newline at end of file diff --git a/tests/examples/pacer/appellate_attachment_pages/ca5_221848.json b/tests/examples/pacer/appellate_attachment_pages/ca5_221848.json new file mode 100644 index 000000000..163da0fc5 --- /dev/null +++ b/tests/examples/pacer/appellate_attachment_pages/ca5_221848.json @@ -0,0 +1,21 @@ +{ + "attachments": [ + { + "attachment_number": 1, + "description": "Published Opinion", + "file_size_bytes": 132568, + "pacer_doc_id": "00507148063", + "page_count": 13 + }, + { + "attachment_number": 2, + "description": "OPJDT-2 Letter", + "file_size_bytes": 68451, + "pacer_doc_id": "00507148074", + "page_count": 2 + } + ], + "pacer_case_id": "210055", + "pacer_doc_id": "00507148063", + "pacer_seq_no": "10348292" +} \ No newline at end of file diff --git a/tests/examples/pacer/attachment_pages/deb_04218015230.json b/tests/examples/pacer/attachment_pages/deb_04218015230.json index 53bd6812b..f186e9ed5 100644 --- a/tests/examples/pacer/attachment_pages/deb_04218015230.json +++ b/tests/examples/pacer/attachment_pages/deb_04218015230.json @@ -5,7 +5,7 @@ "description": "Exhibit A", "file_size_str": "", "pacer_doc_id": "04208015231", - "pacer_seq_no": null, + "pacer_seq_no": "12", "page_count": 3 } ], @@ -13,6 +13,6 @@ "file_size_str": "", "pacer_case_id": "115824", "pacer_doc_id": "04208015230", - "pacer_seq_no": null, + "pacer_seq_no": "12", "page_count": 7 } \ No newline at end of file diff --git a/tests/examples/pacer/attachment_pages/mab_094126221797.json b/tests/examples/pacer/attachment_pages/mab_094126221797.json index e5c8adb41..5f81f8c7a 100644 --- a/tests/examples/pacer/attachment_pages/mab_094126221797.json +++ b/tests/examples/pacer/attachment_pages/mab_094126221797.json @@ -5,7 +5,7 @@ "description": "List of 20 Largest Creditors", "file_size_str": "", "pacer_doc_id": "094026221798", - "pacer_seq_no": null, + "pacer_seq_no": "2", "page_count": 2 }, { @@ -13,7 +13,7 @@ "description": "Declaration of Electronic Filing", "file_size_str": "", "pacer_doc_id": "094026221799", - "pacer_seq_no": null, + "pacer_seq_no": "2", "page_count": 1 } ], @@ -21,6 +21,6 @@ "file_size_str": "", "pacer_case_id": "470027", "pacer_doc_id": "094026221797", - "pacer_seq_no": null, + "pacer_seq_no": "2", "page_count": 4 } \ No newline at end of file diff --git a/tests/examples/pacer/attachment_pages/nysb_12604013833.json b/tests/examples/pacer/attachment_pages/nysb_12604013833.json index d6c46cbdd..bea70e2e1 100644 --- a/tests/examples/pacer/attachment_pages/nysb_12604013833.json +++ b/tests/examples/pacer/attachment_pages/nysb_12604013833.json @@ -5,7 +5,7 @@ "description": "Exhibit A Organizational Chart", "file_size_str": "", "pacer_doc_id": "12604013833", - "pacer_seq_no": null, + "pacer_seq_no": "9", "page_count": 1 }, { @@ -13,7 +13,7 @@ "description": "Proposed Order", "file_size_str": "", "pacer_doc_id": "12604028047", - "pacer_seq_no": null, + "pacer_seq_no": "9", "page_count": 11 } ], @@ -21,6 +21,6 @@ "file_size_str": "", "pacer_case_id": "137477", "pacer_doc_id": "12604025673", - "pacer_seq_no": null, + "pacer_seq_no": "9", "page_count": 18 } \ No newline at end of file diff --git a/tests/examples/pacer/attachment_pages/nysb_12604013833_new.html b/tests/examples/pacer/attachment_pages/nysb_12604013833_new.html new file mode 100644 index 000000000..8a581e6d3 --- /dev/null +++ b/tests/examples/pacer/attachment_pages/nysb_12604013833_new.html @@ -0,0 +1,318 @@ +New York Southern Live System + + + +
    + +

    Document Selection Menu

    +

    Multiple Documents

    + +

    Select the document(s) you wish to view.

    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    PartDescriptionPagesSize
    1Main Document 18 pages506.51 KB
    2 Exhibit A Organizational Chart1 page21.96 KB
    3 Proposed Order11 pages226.27 KB

    + +   or   + 30754.74 KB
    + +
    +
    +
    diff --git a/tests/examples/pacer/attachment_pages/nysb_12604013833_new.json b/tests/examples/pacer/attachment_pages/nysb_12604013833_new.json new file mode 100644 index 000000000..25a2857a6 --- /dev/null +++ b/tests/examples/pacer/attachment_pages/nysb_12604013833_new.json @@ -0,0 +1,29 @@ +{ + "attachments": [ + { + "attachment_number": 1, + "description": "Exhibit A Organizational Chart", + "file_size_bytes": 21959, + "file_size_str": "21.96 KB", + "pacer_doc_id": "12604013833", + "pacer_seq_no": "9", + "page_count": 1 + }, + { + "attachment_number": 2, + "description": "Proposed Order", + "file_size_bytes": 226271, + "file_size_str": "226.27 KB", + "pacer_doc_id": "12604028047", + "pacer_seq_no": "9", + "page_count": 11 + } + ], + "document_number": 3, + "file_size_bytes": 506509, + "file_size_str": "506.51 KB", + "pacer_case_id": "137477", + "pacer_doc_id": "12604025673", + "pacer_seq_no": "9", + "page_count": 18 +} \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/akd_58813.json b/tests/examples/pacer/case_queries/akd_58813.json index 20f4fa5c6..c7b8c026a 100644 --- a/tests/examples/pacer/case_queries/akd_58813.json +++ b/tests/examples/pacer/case_queries/akd_58813.json @@ -5,5 +5,10 @@ "date_filed": "2017-12-07", "date_last_filing": "2021-01-12", "date_terminated": "2021-01-12", - "docket_number": "3:17-cr-00168" + "docket_number": "3:17-cr-00168", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "SLG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/alsd_61919.json b/tests/examples/pacer/case_queries/alsd_61919.json index a81212238..61e37e4f6 100644 --- a/tests/examples/pacer/case_queries/alsd_61919.json +++ b/tests/examples/pacer/case_queries/alsd_61919.json @@ -5,5 +5,10 @@ "court_id": "alsd", "date_filed": "2017-12-07", "date_last_filing": "2018-07-25", - "docket_number": "1:17-mc-00016" + "docket_number": "1:17-mc-00016", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "KD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/arwb_156279.json b/tests/examples/pacer/case_queries/arwb_156279.json index 447443adf..dc3001ebc 100644 --- a/tests/examples/pacer/case_queries/arwb_156279.json +++ b/tests/examples/pacer/case_queries/arwb_156279.json @@ -12,5 +12,10 @@ "date_plan_confirmed": "2018-01-22", "date_terminated": "2018-06-06", "docket_number": "4:16-bk-73062", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "vol": "v" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/azd_1067816.json b/tests/examples/pacer/case_queries/azd_1067816.json index b187120f5..bdb3eb4f3 100644 --- a/tests/examples/pacer/case_queries/azd_1067816.json +++ b/tests/examples/pacer/case_queries/azd_1067816.json @@ -6,5 +6,10 @@ "date_filed": "2017-11-30", "date_last_filing": "2019-04-08", "date_terminated": "2019-03-12", - "docket_number": "2:17-cv-04442" + "docket_number": "2:17-cv-04442", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SMM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/cacd_26872.json b/tests/examples/pacer/case_queries/cacd_26872.json index b19fd8ce6..a7a91d240 100644 --- a/tests/examples/pacer/case_queries/cacd_26872.json +++ b/tests/examples/pacer/case_queries/cacd_26872.json @@ -7,5 +7,10 @@ "date_last_filing": "2011-11-07", "date_terminated": "2004-03-24", "docket_number": "2:02-cv-01431", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJO", + "federal_dn_judge_initials_referred": "RC", + "federal_dn_office_code": "2", "referred_to_str": "Rosalyn M. Chapman" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/canb.json b/tests/examples/pacer/case_queries/canb.json index e4b116d9b..4aadc3c67 100644 --- a/tests/examples/pacer/case_queries/canb.json +++ b/tests/examples/pacer/case_queries/canb.json @@ -13,5 +13,10 @@ "date_plan_confirmed": "2010-12-08", "date_terminated": "2015-11-02", "docket_number": "10-46652", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "vol": "v" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/cand_317868.json b/tests/examples/pacer/case_queries/cand_317868.json index fe8830a9e..0ad2d7141 100644 --- a/tests/examples/pacer/case_queries/cand_317868.json +++ b/tests/examples/pacer/case_queries/cand_317868.json @@ -6,5 +6,10 @@ "date_filed": "2017-10-04", "date_last_filing": "2017-11-16", "date_terminated": "2017-11-16", - "docket_number": "3:17-cv-05729" + "docket_number": "3:17-cv-05729", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/casd.json b/tests/examples/pacer/case_queries/casd.json index e3bbe4df4..d05a01bfa 100644 --- a/tests/examples/pacer/case_queries/casd.json +++ b/tests/examples/pacer/case_queries/casd.json @@ -5,5 +5,10 @@ "date_filed": "2018-08-14", "date_last_filing": "2020-06-29", "docket_number": "3:18-cr-03298", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JAH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "related_cases_str": "16cv1322-JAH" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/casd_587221.json b/tests/examples/pacer/case_queries/casd_587221.json index a8991792c..fff0b5839 100644 --- a/tests/examples/pacer/case_queries/casd_587221.json +++ b/tests/examples/pacer/case_queries/casd_587221.json @@ -6,5 +6,10 @@ "date_last_filing": "2020-09-15", "date_terminated": "2020-09-14", "docket_number": "3:18-cr-03298", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JAH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "related_cases_str": "16cv1322-JAH" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/cob_461890.json b/tests/examples/pacer/case_queries/cob_461890.json index 3ada7ea58..e3ec542ba 100644 --- a/tests/examples/pacer/case_queries/cob_461890.json +++ b/tests/examples/pacer/case_queries/cob_461890.json @@ -11,5 +11,10 @@ "date_last_filing": "2019-05-08", "date_terminated": "2019-04-03", "docket_number": "17-16301", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "TBM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "vol": "v" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/case_query_error.html b/tests/examples/pacer/case_queries/cob_case_query_error.html similarity index 100% rename from tests/examples/pacer/case_queries/case_query_error.html rename to tests/examples/pacer/case_queries/cob_case_query_error.html diff --git a/tests/examples/pacer/case_queries/case_query_error.json b/tests/examples/pacer/case_queries/cob_case_query_error.json similarity index 58% rename from tests/examples/pacer/case_queries/case_query_error.json rename to tests/examples/pacer/case_queries/cob_case_query_error.json index 7195a1e08..cf3e0f310 100644 --- a/tests/examples/pacer/case_queries/case_query_error.json +++ b/tests/examples/pacer/case_queries/cob_case_query_error.json @@ -3,10 +3,15 @@ "case_name": "Culp v. FSC Franchise Co., LLC d/b/a Beef O'Brady", "case_name_raw": "Culp v. FSC Franchise Co., LLC d/b/a Beef O'Brady", "case_type": "ap", - "court_id": "case", + "court_id": "cob", "date_filed": "2020-01-24", "date_last_filing": "2020-03-06", "date_terminated": "2020-03-06", - "docket_number": null, + "docket_number": "20-03006", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "related_bankruptcy": "19-30334" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/ctb_113046.json b/tests/examples/pacer/case_queries/ctb_113046.json index 9a5ef82e5..0ce1db5cb 100644 --- a/tests/examples/pacer/case_queries/ctb_113046.json +++ b/tests/examples/pacer/case_queries/ctb_113046.json @@ -11,5 +11,10 @@ "date_last_filing": "1993-01-14", "date_terminated": "1993-01-14", "docket_number": "92-53097", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "vol": "v" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/ctd.json b/tests/examples/pacer/case_queries/ctd.json index 7c102ffad..1710eb245 100644 --- a/tests/examples/pacer/case_queries/ctd.json +++ b/tests/examples/pacer/case_queries/ctd.json @@ -6,5 +6,10 @@ "date_filed": "2018-06-28", "date_last_filing": "2020-04-16", "date_terminated": "2020-04-16", - "docket_number": "3:18-cv-01094" + "docket_number": "3:18-cv-01094", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JBA", + "federal_dn_judge_initials_referred": "PWH", + "federal_dn_office_code": "3" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/ctd_115975.json b/tests/examples/pacer/case_queries/ctd_115975.json index f2f24edee..2d22e3463 100644 --- a/tests/examples/pacer/case_queries/ctd_115975.json +++ b/tests/examples/pacer/case_queries/ctd_115975.json @@ -6,5 +6,10 @@ "date_filed": "2017-02-16", "date_last_filing": "2018-07-19", "date_terminated": "2018-06-27", - "docket_number": "3:17-cv-00259" + "docket_number": "3:17-cv-00259", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "VAB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/dcd.json b/tests/examples/pacer/case_queries/dcd.json index ae5c304ab..f00f9e52c 100644 --- a/tests/examples/pacer/case_queries/dcd.json +++ b/tests/examples/pacer/case_queries/dcd.json @@ -5,5 +5,10 @@ "court_id": "dcd", "date_filed": "2016-04-21", "date_last_filing": "2018-07-27", - "docket_number": "1:16-cv-00745" + "docket_number": "1:16-cv-00745", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ESH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/dcd_134505.json b/tests/examples/pacer/case_queries/dcd_134505.json index 2ae0d1f56..7a92a0284 100644 --- a/tests/examples/pacer/case_queries/dcd_134505.json +++ b/tests/examples/pacer/case_queries/dcd_134505.json @@ -6,5 +6,10 @@ "date_filed": "2008-12-19", "date_last_filing": "2010-06-22", "date_terminated": "2010-06-22", - "docket_number": "1:08-cv-02203" + "docket_number": "1:08-cv-02203", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PLF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/ded_48523.json b/tests/examples/pacer/case_queries/ded_48523.json index 8ef1a8f22..4bd5b6609 100644 --- a/tests/examples/pacer/case_queries/ded_48523.json +++ b/tests/examples/pacer/case_queries/ded_48523.json @@ -6,5 +6,10 @@ "date_filed": "2012-04-10", "date_last_filing": "2014-03-31", "date_terminated": "2014-03-31", - "docket_number": "1:12-cv-00454" + "docket_number": "1:12-cv-00454", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SLR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/flmb.json b/tests/examples/pacer/case_queries/flmb.json index b73ed0353..0d3a1e8dd 100644 --- a/tests/examples/pacer/case_queries/flmb.json +++ b/tests/examples/pacer/case_queries/flmb.json @@ -11,5 +11,10 @@ "date_last_filing": "2020-02-04", "date_terminated": "2020-02-04", "docket_number": "3:18-bk-02220", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "CJJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "vol": "v" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/flmd_408091.json b/tests/examples/pacer/case_queries/flmd_408091.json index 2433333f5..54c0d1110 100644 --- a/tests/examples/pacer/case_queries/flmd_408091.json +++ b/tests/examples/pacer/case_queries/flmd_408091.json @@ -6,5 +6,10 @@ "date_filed": "2022-11-20", "date_last_filing": "2022-11-21", "docket_number": "6:22-cv-02163", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PGB", + "federal_dn_judge_initials_referred": "DAB", + "federal_dn_office_code": "6", "referred_to_str": "David A. Baker" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/flsd.json b/tests/examples/pacer/case_queries/flsd.json index 2c673de50..956056f68 100644 --- a/tests/examples/pacer/case_queries/flsd.json +++ b/tests/examples/pacer/case_queries/flsd.json @@ -7,5 +7,10 @@ "date_last_filing": "2017-08-29", "date_terminated": "2016-06-02", "docket_number": "1:15-cv-22692", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "UU", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "Alicia M. Otazo-Reyes" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/insb_1.json b/tests/examples/pacer/case_queries/insb_1.json index 76d239f8a..52a342939 100644 --- a/tests/examples/pacer/case_queries/insb_1.json +++ b/tests/examples/pacer/case_queries/insb_1.json @@ -12,5 +12,10 @@ "date_last_filing": "2016-06-28", "date_terminated": "2016-06-28", "docket_number": "13-07422", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "RLM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "vol": "v" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/insb_2.json b/tests/examples/pacer/case_queries/insb_2.json index 4b7b46180..35159b011 100644 --- a/tests/examples/pacer/case_queries/insb_2.json +++ b/tests/examples/pacer/case_queries/insb_2.json @@ -13,5 +13,10 @@ "date_plan_confirmed": "2011-04-01", "date_terminated": "2016-03-01", "docket_number": "10-15790", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JMC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "vol": "v" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/ncwd.json b/tests/examples/pacer/case_queries/ncwd.json index d7d07c73f..2b0c46dd1 100644 --- a/tests/examples/pacer/case_queries/ncwd.json +++ b/tests/examples/pacer/case_queries/ncwd.json @@ -6,5 +6,10 @@ "date_last_filing": "2015-10-19", "date_terminated": "2010-06-16", "docket_number": "5:03-cr-00014", + "federal_defendant_number": "3", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "RLV", + "federal_dn_judge_initials_referred": "CH", + "federal_dn_office_code": "5", "referred_to_str": "Carl Horn, III" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/njd.json b/tests/examples/pacer/case_queries/njd.json index bd8f6233a..7b3728aac 100644 --- a/tests/examples/pacer/case_queries/njd.json +++ b/tests/examples/pacer/case_queries/njd.json @@ -4,5 +4,10 @@ "court_id": "njd", "date_filed": "2017-01-19", "date_terminated": "2017-04-20", - "docket_number": "2:17-mj-09009" + "docket_number": "2:17-mj-09009", + "federal_defendant_number": null, + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": "ARM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/nysb.json b/tests/examples/pacer/case_queries/nysb.json index 6faf8f1dc..c4f4d3f7a 100644 --- a/tests/examples/pacer/case_queries/nysb.json +++ b/tests/examples/pacer/case_queries/nysb.json @@ -10,5 +10,10 @@ "date_last_filing": "2018-07-30", "date_plan_confirmed": "2011-12-06", "docket_number": "08-13555", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "vol": "v" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/oknd_35183.json b/tests/examples/pacer/case_queries/oknd_35183.json index 94a9570b5..b6c53067a 100644 --- a/tests/examples/pacer/case_queries/oknd_35183.json +++ b/tests/examples/pacer/case_queries/oknd_35183.json @@ -7,5 +7,10 @@ "date_last_filing": "2017-04-19", "date_terminated": "2017-03-27", "docket_number": "4:13-cv-00357", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "jed", + "federal_dn_judge_initials_referred": "FHM", + "federal_dn_office_code": "4", "referred_to_str": "Frank H McCarthy" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/scb_1.json b/tests/examples/pacer/case_queries/scb_1.json index 1189087f9..7d3341a4f 100644 --- a/tests/examples/pacer/case_queries/scb_1.json +++ b/tests/examples/pacer/case_queries/scb_1.json @@ -13,5 +13,10 @@ "date_plan_confirmed": "2013-01-10", "date_terminated": "2017-10-31", "docket_number": "12-07357", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "hb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "vol": "v" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/ssd_75741.json b/tests/examples/pacer/case_queries/ssd_75741.json index 2f8757967..1fcb5dda7 100644 --- a/tests/examples/pacer/case_queries/ssd_75741.json +++ b/tests/examples/pacer/case_queries/ssd_75741.json @@ -6,5 +6,10 @@ "date_filed": "2022-11-18", "date_last_filing": "2022-11-18", "date_terminated": "2022-11-18", - "docket_number": "4:22-mc-00175" + "docket_number": "4:22-mc-00175", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "VLD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/txed_218695.json b/tests/examples/pacer/case_queries/txed_218695.json index 62147d000..0e382ed31 100644 --- a/tests/examples/pacer/case_queries/txed_218695.json +++ b/tests/examples/pacer/case_queries/txed_218695.json @@ -5,5 +5,10 @@ "court_id": "txed", "date_filed": "2022-11-18", "date_last_filing": "2022-11-21", - "docket_number": "2:22-cv-00446" + "docket_number": "2:22-cv-00446", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JRG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/txnd_370098.json b/tests/examples/pacer/case_queries/txnd_370098.json index 50facf32c..6081d9dc7 100644 --- a/tests/examples/pacer/case_queries/txnd_370098.json +++ b/tests/examples/pacer/case_queries/txnd_370098.json @@ -6,5 +6,10 @@ "date_filed": "2022-11-21", "date_last_filing": "2022-11-21", "docket_number": "4:22-cv-01033", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "O", + "federal_dn_judge_initials_referred": "BP", + "federal_dn_office_code": "4", "referred_to_str": "Hal R. Ray, Jr" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/txsd.json b/tests/examples/pacer/case_queries/txsd.json index d295627b6..371082550 100644 --- a/tests/examples/pacer/case_queries/txsd.json +++ b/tests/examples/pacer/case_queries/txsd.json @@ -4,5 +4,10 @@ "court_id": "txsd", "date_filed": "2018-09-10", "date_last_filing": "2018-11-06", - "docket_number": "4:18-mc-02515" + "docket_number": "4:18-mc-02515", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/txsd_2.json b/tests/examples/pacer/case_queries/txsd_2.json index fb6cc6696..b7e5cc3bc 100644 --- a/tests/examples/pacer/case_queries/txsd_2.json +++ b/tests/examples/pacer/case_queries/txsd_2.json @@ -2,5 +2,10 @@ "case_name": "", "case_name_raw": "", "court_id": "txsd", - "docket_number": "2:08-mc-00021" + "docket_number": "2:08-mc-00021", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/txsd_3.json b/tests/examples/pacer/case_queries/txsd_3.json index 5c1f3ffbc..9aff298a4 100644 --- a/tests/examples/pacer/case_queries/txsd_3.json +++ b/tests/examples/pacer/case_queries/txsd_3.json @@ -7,5 +7,10 @@ "date_last_filing": "2019-05-02", "date_terminated": "2019-04-29", "docket_number": "5:19-cv-00049", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", "referred_to_str": "John A Kazen" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries/wiwd_50107.json b/tests/examples/pacer/case_queries/wiwd_50107.json index 59d0062a3..f548d0216 100644 --- a/tests/examples/pacer/case_queries/wiwd_50107.json +++ b/tests/examples/pacer/case_queries/wiwd_50107.json @@ -5,5 +5,10 @@ "date_filed": "2022-11-18", "date_last_filing": "2022-11-18", "date_terminated": "2022-11-18", - "docket_number": "3:22-cr-00137" + "docket_number": "3:22-cr-00137", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "jdp", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3" } \ No newline at end of file diff --git a/tests/examples/pacer/case_queries_advanced/cacb.html b/tests/examples/pacer/case_queries_advanced/cacb.html new file mode 100644 index 000000000..9efcd2523 --- /dev/null +++ b/tests/examples/pacer/case_queries_advanced/cacb.html @@ -0,0 +1,102 @@ +CM/ECF - U.S. Bankruptcy Court (NG 1.7.1.1 - LIVE) + + + +
    +

    Select a Case


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    There were 3 matching persons. +
    There were 3 matching cases.

    Name Case No. Case Title Chapter / Lead BK case Date Filed Party Role Date Closed
    Glenroy Coachella Holdings LLC (pty)
    (1 case)
    2:24-bk-16169-BBGlenroy Coachella Holdings LLC 7 08/01/24 DebtorN / A
    Glenroy Coachella, LLC (pty)
    (1 case)
    2:21-ap-01197-BBQUONSET PARTNERS LLC et al v. Glenroy Coachella, LLC et al Lead BK: 2:21-bk-11188-BB Glenroy Coachella, LLC 09/29/21 Defendant 04/27/22
    Glenroy Coachella, LLC (pty)
    (1 case)
    2:21-bk-11188-BBGlenroy Coachella, LLC 7 02/15/21 DebtorN / A


    PACER Service Center
    Transaction Receipt
    08/05/2024 10:52:08
    PACER Login: bkornberg Client Code:
    Description: Search Search Criteria: LName: glenroy coachella
    Billable Pages: 1 Cost: 0.10


    \ No newline at end of file diff --git a/tests/examples/pacer/case_queries_advanced/cacb.json b/tests/examples/pacer/case_queries_advanced/cacb.json new file mode 100644 index 000000000..2550ca11d --- /dev/null +++ b/tests/examples/pacer/case_queries_advanced/cacb.json @@ -0,0 +1,41 @@ +[ + { + "case_name": "Glenroy Coachella Holdings LLC", + "chapter": "7", + "date_closed": null, + "date_filed": "2024-08-01", + "docket_number": "2:24-bk-16169", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "BB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", + "pacer_case_id": "1993438" + }, + { + "case_name": "QUONSET PARTNERS LLC v. Glenroy Coachella, LLC", + "chapter": "Lead BK: 2:21-bk-11188-BB Glenroy Coachella, LLC", + "date_closed": "2022-04-27", + "date_filed": "2021-09-29", + "docket_number": "2:21-ap-01197", + "federal_defendant_number": null, + "federal_dn_case_type": "ap", + "federal_dn_judge_initials_assigned": "BB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", + "pacer_case_id": "1934197" + }, + { + "case_name": "Glenroy Coachella, LLC", + "chapter": "7", + "date_closed": null, + "date_filed": "2021-02-15", + "docket_number": "2:21-bk-11188", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "BB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", + "pacer_case_id": "1918832" + } +] \ No newline at end of file diff --git a/tests/examples/pacer/case_queries_advanced/canb.json b/tests/examples/pacer/case_queries_advanced/canb.json index d1fd44ded..338b2f1a0 100644 --- a/tests/examples/pacer/case_queries_advanced/canb.json +++ b/tests/examples/pacer/case_queries_advanced/canb.json @@ -5,6 +5,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -13,6 +18,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -21,6 +31,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -29,6 +44,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -37,6 +57,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -45,6 +70,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -53,6 +83,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -61,6 +96,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -69,6 +109,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -77,6 +122,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -85,6 +135,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -93,6 +148,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -101,6 +161,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -109,6 +174,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -117,6 +187,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" }, { @@ -125,6 +200,11 @@ "date_closed": null, "date_filed": "2001-04-06", "docket_number": "01-30923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "12612" } ] \ No newline at end of file diff --git a/tests/examples/pacer/case_queries_advanced/canb_3.json b/tests/examples/pacer/case_queries_advanced/canb_3.json index e5e30d623..ebd7c410e 100644 --- a/tests/examples/pacer/case_queries_advanced/canb_3.json +++ b/tests/examples/pacer/case_queries_advanced/canb_3.json @@ -5,6 +5,11 @@ "date_closed": null, "date_filed": "2008-12-28", "docket_number": "08-32514", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "359273" }, { @@ -13,6 +18,11 @@ "date_closed": "2019-01-25", "date_filed": "2008-09-19", "docket_number": "08-55305", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "352619" }, { @@ -21,6 +31,11 @@ "date_closed": "2019-01-25", "date_filed": "2009-08-31", "docket_number": "09-12803", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "381307" }, { @@ -29,6 +44,11 @@ "date_closed": null, "date_filed": "2010-10-23", "docket_number": "10-14095", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "426413" }, { @@ -37,6 +57,11 @@ "date_closed": null, "date_filed": "2010-03-11", "docket_number": "10-30821", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "400694" }, { @@ -45,6 +70,11 @@ "date_closed": null, "date_filed": "2011-09-12", "docket_number": "11-49803", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "459898" }, { @@ -53,6 +83,11 @@ "date_closed": null, "date_filed": "2012-08-03", "docket_number": "12-12136", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "487310" }, { @@ -61,6 +96,11 @@ "date_closed": null, "date_filed": "2012-04-26", "docket_number": "12-43638", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "479544" }, { @@ -69,6 +109,11 @@ "date_closed": "2012-12-21", "date_filed": "2012-06-19", "docket_number": "12-45224", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "483790" }, { @@ -77,6 +122,11 @@ "date_closed": null, "date_filed": "2013-10-30", "docket_number": "13-12012", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "514089" }, { @@ -85,6 +135,11 @@ "date_closed": null, "date_filed": "2013-11-24", "docket_number": "13-12152", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "515249" }, { @@ -93,6 +148,11 @@ "date_closed": null, "date_filed": "2013-12-26", "docket_number": "13-12317", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "516478" }, { @@ -101,6 +161,11 @@ "date_closed": null, "date_filed": "2013-02-14", "docket_number": "13-30340", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "499762" }, { @@ -109,6 +174,11 @@ "date_closed": null, "date_filed": "2013-04-03", "docket_number": "13-30794", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "502923" }, { @@ -117,6 +187,11 @@ "date_closed": null, "date_filed": "2013-06-12", "docket_number": "13-31384", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "506928" }, { @@ -125,6 +200,11 @@ "date_closed": null, "date_filed": "2013-08-31", "docket_number": "13-31972", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "511258" }, { @@ -133,6 +213,11 @@ "date_closed": null, "date_filed": "2013-09-09", "docket_number": "13-32023", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "511589" }, { @@ -141,6 +226,11 @@ "date_closed": null, "date_filed": "2013-08-01", "docket_number": "13-44464", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "509730" }, { @@ -149,6 +239,11 @@ "date_closed": null, "date_filed": "2013-11-05", "docket_number": "13-46073", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "514444" }, { @@ -157,6 +252,11 @@ "date_closed": null, "date_filed": "2013-11-26", "docket_number": "13-46390", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "515374" }, { @@ -165,6 +265,11 @@ "date_closed": null, "date_filed": "2013-11-27", "docket_number": "13-46408", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "515441" }, { @@ -173,6 +278,11 @@ "date_closed": null, "date_filed": "2013-12-02", "docket_number": "13-46434", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "515552" }, { @@ -181,6 +291,11 @@ "date_closed": null, "date_filed": "2013-12-05", "docket_number": "13-46487", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "515672" }, { @@ -189,6 +304,11 @@ "date_closed": null, "date_filed": "2013-12-16", "docket_number": "13-46638", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "516100" }, { @@ -197,6 +317,11 @@ "date_closed": null, "date_filed": "2013-07-02", "docket_number": "13-53607", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "508057" }, { @@ -205,6 +330,11 @@ "date_closed": null, "date_filed": "2013-08-06", "docket_number": "13-54235", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "509943" }, { @@ -213,6 +343,11 @@ "date_closed": null, "date_filed": "2013-08-21", "docket_number": "13-54490", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "510668" }, { @@ -221,6 +356,11 @@ "date_closed": null, "date_filed": "2013-10-08", "docket_number": "13-55324", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "513050" }, { @@ -229,6 +369,11 @@ "date_closed": null, "date_filed": "2013-10-08", "docket_number": "13-55341", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "513091" }, { @@ -237,6 +382,11 @@ "date_closed": null, "date_filed": "2013-10-18", "docket_number": "13-55531", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "513579" }, { @@ -245,6 +395,11 @@ "date_closed": null, "date_filed": "2013-11-14", "docket_number": "13-55981", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "514844" }, { @@ -253,6 +408,11 @@ "date_closed": null, "date_filed": "2013-11-14", "docket_number": "13-55991", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "514861" }, { @@ -261,6 +421,11 @@ "date_closed": null, "date_filed": "2013-12-10", "docket_number": "13-56332", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "515904" }, { @@ -269,6 +434,11 @@ "date_closed": null, "date_filed": "2013-12-17", "docket_number": "13-56421", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "516182" }, { @@ -277,6 +447,11 @@ "date_closed": null, "date_filed": "2013-12-31", "docket_number": "13-56578", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "516679" }, { @@ -285,6 +460,11 @@ "date_closed": null, "date_filed": "2013-12-31", "docket_number": "13-56586", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "516699" }, { @@ -293,6 +473,11 @@ "date_closed": null, "date_filed": "2014-09-24", "docket_number": "14-03117", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "527835" }, { @@ -301,6 +486,11 @@ "date_closed": null, "date_filed": "2014-09-24", "docket_number": "14-03118", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "527836" }, { @@ -309,6 +499,11 @@ "date_closed": null, "date_filed": "2014-09-26", "docket_number": "14-03120", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "527919" }, { @@ -317,6 +512,11 @@ "date_closed": null, "date_filed": "2014-09-26", "docket_number": "14-03122", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "527923" }, { @@ -325,6 +525,11 @@ "date_closed": null, "date_filed": "2014-09-26", "docket_number": "14-03123", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "pacer_case_id": "527927" } ] \ No newline at end of file diff --git a/tests/examples/pacer/claims_activity/akb_1.json b/tests/examples/pacer/claims_activity/akb_1.json index f1e9a8681..daa50f1a5 100644 --- a/tests/examples/pacer/claims_activity/akb_1.json +++ b/tests/examples/pacer/claims_activity/akb_1.json @@ -40,6 +40,11 @@ }, "court_id": "akb", "docket_number": "00-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": null, "last_date_to_file_govt": null, "office": "3", @@ -107,6 +112,11 @@ }, "court_id": "akb", "docket_number": "00-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": null, "last_date_to_file_govt": null, "office": "3", @@ -153,6 +163,11 @@ }, "court_id": "akb", "docket_number": "00-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": null, "last_date_to_file_govt": null, "office": "3", @@ -184,6 +199,11 @@ }, "court_id": "akb", "docket_number": "18-00171", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2018-08-09", "last_date_to_file_govt": null, "office": "3", @@ -215,6 +235,11 @@ }, "court_id": "akb", "docket_number": "18-00171", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2018-08-09", "last_date_to_file_govt": null, "office": "3", @@ -246,6 +271,11 @@ }, "court_id": "akb", "docket_number": "18-00413", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2019-02-13", "last_date_to_file_govt": null, "office": "3", @@ -277,6 +307,11 @@ }, "court_id": "akb", "docket_number": "21-00003", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2021-03-23", "last_date_to_file_govt": null, "office": "3", @@ -308,6 +343,11 @@ }, "court_id": "akb", "docket_number": "21-00142", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2021-12-27", "last_date_to_file_govt": null, "office": "4", @@ -339,6 +379,11 @@ }, "court_id": "akb", "docket_number": "21-00193", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-06-22", "last_date_to_file_govt": null, "office": "3", @@ -370,6 +415,11 @@ }, "court_id": "akb", "docket_number": "22-00029", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-08-04", "last_date_to_file_govt": null, "office": "3", @@ -409,6 +459,11 @@ }, "court_id": "akb", "docket_number": "22-00029", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-08-04", "last_date_to_file_govt": null, "office": "3", @@ -448,6 +503,11 @@ }, "court_id": "akb", "docket_number": "22-00029", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-08-04", "last_date_to_file_govt": null, "office": "3", @@ -479,6 +539,11 @@ }, "court_id": "akb", "docket_number": "22-00120", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-11-22", "last_date_to_file_govt": null, "office": "3", @@ -510,6 +575,11 @@ }, "court_id": "akb", "docket_number": "22-00150", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-01-25", "last_date_to_file_govt": null, "office": "3", @@ -541,6 +611,11 @@ }, "court_id": "akb", "docket_number": "22-00156", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-02-08", "last_date_to_file_govt": null, "office": "3", @@ -580,6 +655,11 @@ }, "court_id": "akb", "docket_number": "22-00156", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-02-08", "last_date_to_file_govt": null, "office": "3", @@ -611,6 +691,11 @@ }, "court_id": "akb", "docket_number": "22-00156", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-02-08", "last_date_to_file_govt": null, "office": "3", @@ -642,6 +727,11 @@ }, "court_id": "akb", "docket_number": "22-00158", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-02-08", "last_date_to_file_govt": null, "office": "3", @@ -673,6 +763,11 @@ }, "court_id": "akb", "docket_number": "22-00158", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-02-08", "last_date_to_file_govt": null, "office": "3", @@ -719,6 +814,11 @@ }, "court_id": "akb", "docket_number": "22-00161", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-02-08", "last_date_to_file_govt": null, "office": "3", @@ -750,6 +850,11 @@ }, "court_id": "akb", "docket_number": "22-00164", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": null, "last_date_to_file_govt": null, "office": "3", @@ -781,6 +886,11 @@ }, "court_id": "akb", "docket_number": "22-00173", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-13", "last_date_to_file_govt": null, "office": "3", @@ -812,6 +922,11 @@ }, "court_id": "akb", "docket_number": "22-00173", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-13", "last_date_to_file_govt": null, "office": "3", @@ -843,6 +958,11 @@ }, "court_id": "akb", "docket_number": "23-00002", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": null, "last_date_to_file_govt": null, "office": "3", @@ -882,6 +1002,11 @@ }, "court_id": "akb", "docket_number": "23-00003", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": null, "last_date_to_file_govt": null, "office": "3", @@ -921,6 +1046,11 @@ }, "court_id": "akb", "docket_number": "23-00003", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": null, "last_date_to_file_govt": null, "office": "3", @@ -952,6 +1082,11 @@ }, "court_id": "akb", "docket_number": "23-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-03", "last_date_to_file_govt": null, "office": "3", @@ -983,6 +1118,11 @@ }, "court_id": "akb", "docket_number": "23-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-03", "last_date_to_file_govt": null, "office": "3", @@ -1014,6 +1154,11 @@ }, "court_id": "akb", "docket_number": "23-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-03", "last_date_to_file_govt": null, "office": "3", @@ -1045,6 +1190,11 @@ }, "court_id": "akb", "docket_number": "23-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-03", "last_date_to_file_govt": null, "office": "3", @@ -1076,6 +1226,11 @@ }, "court_id": "akb", "docket_number": "23-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-03", "last_date_to_file_govt": null, "office": "3", @@ -1107,6 +1262,11 @@ }, "court_id": "akb", "docket_number": "23-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-03", "last_date_to_file_govt": null, "office": "3", @@ -1138,6 +1298,11 @@ }, "court_id": "akb", "docket_number": "23-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-03", "last_date_to_file_govt": null, "office": "3", @@ -1177,6 +1342,11 @@ }, "court_id": "akb", "docket_number": "23-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-03", "last_date_to_file_govt": null, "office": "3", @@ -1208,6 +1378,11 @@ }, "court_id": "akb", "docket_number": "23-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-03", "last_date_to_file_govt": null, "office": "3", @@ -1239,6 +1414,11 @@ }, "court_id": "akb", "docket_number": "23-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-03", "last_date_to_file_govt": null, "office": "3", @@ -1270,6 +1450,11 @@ }, "court_id": "akb", "docket_number": "23-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-03", "last_date_to_file_govt": null, "office": "3", @@ -1301,6 +1486,11 @@ }, "court_id": "akb", "docket_number": "23-00005", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-03", "last_date_to_file_govt": null, "office": "3", @@ -1332,6 +1522,11 @@ }, "court_id": "akb", "docket_number": "23-00007", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-05", "last_date_to_file_govt": null, "office": "3", @@ -1363,6 +1558,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1394,6 +1594,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1433,6 +1638,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1464,6 +1674,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1495,6 +1710,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1526,6 +1746,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1557,6 +1782,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1588,6 +1818,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1619,6 +1854,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1650,6 +1890,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1681,6 +1926,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1712,6 +1962,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1743,6 +1998,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1774,6 +2034,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1805,6 +2070,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1836,6 +2106,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1867,6 +2142,11 @@ }, "court_id": "akb", "docket_number": "23-00009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-07", "last_date_to_file_govt": null, "office": "3", @@ -1898,6 +2178,11 @@ }, "court_id": "akb", "docket_number": "23-00023", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-02", "last_date_to_file_govt": null, "office": "3", @@ -1929,6 +2214,11 @@ }, "court_id": "akb", "docket_number": "23-00026", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-03", "last_date_to_file_govt": null, "office": "3", @@ -1960,6 +2250,11 @@ }, "court_id": "akb", "docket_number": "23-00026", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-03", "last_date_to_file_govt": null, "office": "3", @@ -1991,6 +2286,11 @@ }, "court_id": "akb", "docket_number": "23-00026", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-03", "last_date_to_file_govt": null, "office": "3", @@ -2022,6 +2322,11 @@ }, "court_id": "akb", "docket_number": "23-00026", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-03", "last_date_to_file_govt": null, "office": "3", @@ -2053,6 +2358,11 @@ }, "court_id": "akb", "docket_number": "23-00026", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-03", "last_date_to_file_govt": null, "office": "3", @@ -2084,6 +2394,11 @@ }, "court_id": "akb", "docket_number": "23-00026", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-03", "last_date_to_file_govt": null, "office": "3", @@ -2115,6 +2430,11 @@ }, "court_id": "akb", "docket_number": "23-00028", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-08", "last_date_to_file_govt": null, "office": "3", @@ -2146,6 +2466,11 @@ }, "court_id": "akb", "docket_number": "23-00028", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-08", "last_date_to_file_govt": null, "office": "3", @@ -2177,6 +2502,11 @@ }, "court_id": "akb", "docket_number": "23-00028", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-08", "last_date_to_file_govt": null, "office": "3", @@ -2208,6 +2538,11 @@ }, "court_id": "akb", "docket_number": "23-00031", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-09", "last_date_to_file_govt": null, "office": "3", @@ -2239,6 +2574,11 @@ }, "court_id": "akb", "docket_number": "23-00031", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-09", "last_date_to_file_govt": null, "office": "3", @@ -2270,6 +2610,11 @@ }, "court_id": "akb", "docket_number": "23-00035", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-18", "last_date_to_file_govt": null, "office": "3", @@ -2301,6 +2646,11 @@ }, "court_id": "akb", "docket_number": "23-00035", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-18", "last_date_to_file_govt": null, "office": "3", @@ -2332,6 +2682,11 @@ }, "court_id": "akb", "docket_number": "23-00035", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-18", "last_date_to_file_govt": null, "office": "3", @@ -2363,6 +2718,11 @@ }, "court_id": "akb", "docket_number": "23-00035", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-18", "last_date_to_file_govt": null, "office": "3", @@ -2394,6 +2754,11 @@ }, "court_id": "akb", "docket_number": "23-00039", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-25", "last_date_to_file_govt": null, "office": "3", @@ -2425,6 +2790,11 @@ }, "court_id": "akb", "docket_number": "23-00042", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-25", "last_date_to_file_govt": null, "office": "3", diff --git a/tests/examples/pacer/claims_activity/almb_1.json b/tests/examples/pacer/claims_activity/almb_1.json index 14d9bdd48..759f4245b 100644 --- a/tests/examples/pacer/claims_activity/almb_1.json +++ b/tests/examples/pacer/claims_activity/almb_1.json @@ -25,6 +25,11 @@ }, "court_id": "almb", "docket_number": "18-10724", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": null, "last_date_to_file_govt": null, "office": "1", @@ -56,6 +61,11 @@ }, "court_id": "almb", "docket_number": "23-10103", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-10", "last_date_to_file_govt": null, "office": "1", @@ -87,6 +97,11 @@ }, "court_id": "almb", "docket_number": "23-10105", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-10", "last_date_to_file_govt": null, "office": "1", @@ -118,6 +133,11 @@ }, "court_id": "almb", "docket_number": "23-10107", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-10", "last_date_to_file_govt": null, "office": "1", @@ -149,6 +169,11 @@ }, "court_id": "almb", "docket_number": "23-10107", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-10", "last_date_to_file_govt": null, "office": "1", @@ -180,6 +205,11 @@ }, "court_id": "almb", "docket_number": "23-10107", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-10", "last_date_to_file_govt": null, "office": "1", @@ -211,6 +241,11 @@ }, "court_id": "almb", "docket_number": "23-10122", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-13", "last_date_to_file_govt": null, "office": "1", @@ -242,6 +277,11 @@ }, "court_id": "almb", "docket_number": "23-10129", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-14", "last_date_to_file_govt": null, "office": "1", @@ -273,6 +313,11 @@ }, "court_id": "almb", "docket_number": "23-10129", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-14", "last_date_to_file_govt": null, "office": "1", @@ -304,6 +349,11 @@ }, "court_id": "almb", "docket_number": "23-10203", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-05", "last_date_to_file_govt": null, "office": "1", diff --git a/tests/examples/pacer/claims_activity/areb_1.json b/tests/examples/pacer/claims_activity/areb_1.json index 17e59ac91..f3dc7c9a7 100644 --- a/tests/examples/pacer/claims_activity/areb_1.json +++ b/tests/examples/pacer/claims_activity/areb_1.json @@ -33,6 +33,11 @@ }, "court_id": "areb", "docket_number": "3:23-bk-10722", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "last_date_to_file_claims": "2023-05-23", "last_date_to_file_govt": null, "office": "3", diff --git a/tests/examples/pacer/claims_activity/canb_1.json b/tests/examples/pacer/claims_activity/canb_1.json index 47e3f34f7..980051274 100644 --- a/tests/examples/pacer/claims_activity/canb_1.json +++ b/tests/examples/pacer/claims_activity/canb_1.json @@ -25,6 +25,11 @@ }, "court_id": "canb", "docket_number": "21-10506", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": null, "last_date_to_file_govt": null, "office": "1", @@ -56,6 +61,11 @@ }, "court_id": "canb", "docket_number": "22-51004", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-01-09", "last_date_to_file_govt": null, "office": "5", diff --git a/tests/examples/pacer/claims_activity/deb_1.json b/tests/examples/pacer/claims_activity/deb_1.json index 67a46c173..7e367e8ab 100644 --- a/tests/examples/pacer/claims_activity/deb_1.json +++ b/tests/examples/pacer/claims_activity/deb_1.json @@ -25,6 +25,11 @@ }, "court_id": "deb", "docket_number": "12-11868", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MFW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2013-06-11", "last_date_to_file_govt": "2013-07-15", "office": "1", @@ -56,6 +61,11 @@ }, "court_id": "deb", "docket_number": "17-11770", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2018-01-02", "last_date_to_file_govt": "2018-02-14", "office": "1", @@ -87,6 +97,11 @@ }, "court_id": "deb", "docket_number": "17-11983", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2018-02-05", "last_date_to_file_govt": "2018-03-19", "office": "1", @@ -118,6 +133,11 @@ }, "court_id": "deb", "docket_number": "17-12404", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2018-03-05", "last_date_to_file_govt": "2018-05-09", "office": "1", @@ -149,6 +169,11 @@ }, "court_id": "deb", "docket_number": "17-12544", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2018-01-29", "last_date_to_file_govt": "2018-05-29", "office": "1", @@ -188,6 +213,11 @@ }, "court_id": "deb", "docket_number": "18-10161", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "LSS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2019-06-25", "last_date_to_file_govt": "2019-10-15", "office": "1", @@ -219,6 +249,11 @@ }, "court_id": "deb", "docket_number": "18-11375", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2018-08-20", "last_date_to_file_govt": "2018-12-10", "office": "1", @@ -250,6 +285,11 @@ }, "court_id": "deb", "docket_number": "18-11872", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2018-10-23", "last_date_to_file_govt": "2019-02-11", "office": "1", @@ -281,6 +321,11 @@ }, "court_id": "deb", "docket_number": "19-10183", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2019-04-11", "last_date_to_file_govt": "2019-07-31", "office": "1", @@ -320,6 +365,11 @@ }, "court_id": "deb", "docket_number": "19-10227", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2019-04-16", "last_date_to_file_govt": "2019-08-05", "office": "1", @@ -359,6 +409,11 @@ }, "court_id": "deb", "docket_number": "19-10385", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2019-05-08", "last_date_to_file_govt": "2019-08-20", "office": "1", @@ -390,6 +445,11 @@ }, "court_id": "deb", "docket_number": "19-10385", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2019-05-08", "last_date_to_file_govt": "2019-08-20", "office": "1", @@ -421,6 +481,11 @@ }, "court_id": "deb", "docket_number": "19-10385", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2019-05-08", "last_date_to_file_govt": "2019-08-20", "office": "1", @@ -452,6 +517,11 @@ }, "court_id": "deb", "docket_number": "19-12214", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2019-12-20", "last_date_to_file_govt": "2020-04-08", "office": "1", @@ -491,6 +561,11 @@ }, "court_id": "deb", "docket_number": "19-12247", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2019-12-26", "last_date_to_file_govt": "2020-04-15", "office": "1", @@ -522,6 +597,11 @@ }, "court_id": "deb", "docket_number": "19-12524", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2020-02-03", "last_date_to_file_govt": "2020-05-26", "office": "1", @@ -553,6 +633,11 @@ }, "court_id": "deb", "docket_number": "19-12777", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2020-03-10", "last_date_to_file_govt": "2020-06-29", "office": "1", @@ -584,6 +669,11 @@ }, "court_id": "deb", "docket_number": "20-10467", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2020-05-11", "last_date_to_file_govt": "2020-08-31", "office": "1", @@ -615,6 +705,11 @@ }, "court_id": "deb", "docket_number": "20-10553", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2020-06-16", "last_date_to_file_govt": "2020-10-05", "office": "1", @@ -654,6 +749,11 @@ }, "court_id": "deb", "docket_number": "20-10953", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "LSS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-01-30", "last_date_to_file_govt": null, "office": "1", @@ -707,6 +807,11 @@ }, "court_id": "deb", "docket_number": "20-11413", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KBO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": null, "last_date_to_file_govt": null, "office": "1", @@ -738,6 +843,11 @@ }, "court_id": "deb", "docket_number": "20-11708", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2020-09-08", "last_date_to_file_govt": "2020-12-28", "office": "1", @@ -777,6 +887,11 @@ }, "court_id": "deb", "docket_number": "21-11002", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KBO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2021-10-29", "last_date_to_file_govt": "2022-01-10", "office": "1", @@ -808,6 +923,11 @@ }, "court_id": "deb", "docket_number": "21-11458", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-01-13", "last_date_to_file_govt": "2022-05-04", "office": "1", @@ -839,6 +959,11 @@ }, "court_id": "deb", "docket_number": "21-11491", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-01-21", "last_date_to_file_govt": "2022-05-11", "office": "1", @@ -870,6 +995,11 @@ }, "court_id": "deb", "docket_number": "22-10425", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-07-15", "last_date_to_file_govt": "2022-11-07", "office": "1", @@ -909,6 +1039,11 @@ }, "court_id": "deb", "docket_number": "22-10430", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-07-18", "last_date_to_file_govt": "2022-11-09", "office": "1", @@ -948,6 +1083,11 @@ }, "court_id": "deb", "docket_number": "22-10590", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-09-08", "last_date_to_file_govt": "2022-12-27", "office": "1", @@ -987,6 +1127,11 @@ }, "court_id": "deb", "docket_number": "22-10606", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-09-15", "last_date_to_file_govt": "2023-01-03", "office": "1", @@ -1018,6 +1163,11 @@ }, "court_id": "deb", "docket_number": "22-10606", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-09-15", "last_date_to_file_govt": "2023-01-03", "office": "1", @@ -1049,6 +1199,11 @@ }, "court_id": "deb", "docket_number": "22-10606", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-09-15", "last_date_to_file_govt": "2023-01-03", "office": "1", @@ -1088,6 +1243,11 @@ }, "court_id": "deb", "docket_number": "22-10609", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-09-15", "last_date_to_file_govt": "2023-01-04", "office": "1", @@ -1134,6 +1294,11 @@ }, "court_id": "deb", "docket_number": "22-10664", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1180,6 +1345,11 @@ }, "court_id": "deb", "docket_number": "22-10664", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1233,6 +1403,11 @@ }, "court_id": "deb", "docket_number": "22-10664", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1286,6 +1461,11 @@ }, "court_id": "deb", "docket_number": "22-10664", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1339,6 +1519,11 @@ }, "court_id": "deb", "docket_number": "22-10664", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1392,6 +1577,11 @@ }, "court_id": "deb", "docket_number": "22-10664", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1438,6 +1628,11 @@ }, "court_id": "deb", "docket_number": "22-10664", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1469,6 +1664,11 @@ }, "court_id": "deb", "docket_number": "22-10664", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1550,6 +1750,11 @@ }, "court_id": "deb", "docket_number": "22-10664", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1589,6 +1794,11 @@ }, "court_id": "deb", "docket_number": "22-10664", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1628,6 +1838,11 @@ }, "court_id": "deb", "docket_number": "22-10666", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1667,6 +1882,11 @@ }, "court_id": "deb", "docket_number": "22-10666", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1720,6 +1940,11 @@ }, "court_id": "deb", "docket_number": "22-10666", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1766,6 +1991,11 @@ }, "court_id": "deb", "docket_number": "22-10666", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1797,6 +2027,11 @@ }, "court_id": "deb", "docket_number": "22-10666", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1836,6 +2071,11 @@ }, "court_id": "deb", "docket_number": "22-10666", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1867,6 +2107,11 @@ }, "court_id": "deb", "docket_number": "22-10666", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1906,6 +2151,11 @@ }, "court_id": "deb", "docket_number": "22-10667", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -1959,6 +2209,11 @@ }, "court_id": "deb", "docket_number": "22-10667", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -2005,6 +2260,11 @@ }, "court_id": "deb", "docket_number": "22-10667", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -2036,6 +2296,11 @@ }, "court_id": "deb", "docket_number": "22-10667", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -2067,6 +2332,11 @@ }, "court_id": "deb", "docket_number": "22-10667", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -2120,6 +2390,11 @@ }, "court_id": "deb", "docket_number": "22-10668", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -2166,6 +2441,11 @@ }, "court_id": "deb", "docket_number": "22-10668", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", @@ -2197,6 +2477,11 @@ }, "court_id": "deb", "docket_number": "22-10668", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-24", "last_date_to_file_govt": null, "office": "1", diff --git a/tests/examples/pacer/claims_activity/flsb_1.json b/tests/examples/pacer/claims_activity/flsb_1.json index c51ca8f7c..3b313e938 100644 --- a/tests/examples/pacer/claims_activity/flsb_1.json +++ b/tests/examples/pacer/claims_activity/flsb_1.json @@ -25,6 +25,11 @@ }, "court_id": "flsb", "docket_number": "23-10086", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "RAM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-03-16", "last_date_to_file_govt": "2023-07-05", "office": "1", diff --git a/tests/examples/pacer/claims_activity/insb_1.json b/tests/examples/pacer/claims_activity/insb_1.json index 7f4f43e64..bbb595235 100644 --- a/tests/examples/pacer/claims_activity/insb_1.json +++ b/tests/examples/pacer/claims_activity/insb_1.json @@ -25,6 +25,11 @@ }, "court_id": "insb", "docket_number": "23-00332", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JJG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-11", "last_date_to_file_govt": null, "office": "1", diff --git a/tests/examples/pacer/claims_activity/nysb_1.json b/tests/examples/pacer/claims_activity/nysb_1.json index 200ad10ca..a4f0b2785 100644 --- a/tests/examples/pacer/claims_activity/nysb_1.json +++ b/tests/examples/pacer/claims_activity/nysb_1.json @@ -25,6 +25,11 @@ }, "court_id": "nysb", "docket_number": "22-22345", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-08-18", "last_date_to_file_govt": null, "office": "7", diff --git a/tests/examples/pacer/claims_activity/nysb_3.json b/tests/examples/pacer/claims_activity/nysb_3.json index 200ad10ca..a4f0b2785 100644 --- a/tests/examples/pacer/claims_activity/nysb_3.json +++ b/tests/examples/pacer/claims_activity/nysb_3.json @@ -25,6 +25,11 @@ }, "court_id": "nysb", "docket_number": "22-22345", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-08-18", "last_date_to_file_govt": null, "office": "7", diff --git a/tests/examples/pacer/claims_activity/orb_1.json b/tests/examples/pacer/claims_activity/orb_1.json index c1e9a0e00..56393877c 100644 --- a/tests/examples/pacer/claims_activity/orb_1.json +++ b/tests/examples/pacer/claims_activity/orb_1.json @@ -25,6 +25,11 @@ }, "court_id": "orb", "docket_number": "22-61518", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "thp", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-01-09", "last_date_to_file_govt": null, "office": "6", diff --git a/tests/examples/pacer/claims_activity/txeb_1.json b/tests/examples/pacer/claims_activity/txeb_1.json index 211679590..38785adb3 100644 --- a/tests/examples/pacer/claims_activity/txeb_1.json +++ b/tests/examples/pacer/claims_activity/txeb_1.json @@ -33,6 +33,11 @@ }, "court_id": "txeb", "docket_number": "22-10107", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-06-13", "last_date_to_file_govt": "2022-10-03", "office": "1", @@ -79,6 +84,11 @@ }, "court_id": "txeb", "docket_number": "22-20075", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-10-12", "last_date_to_file_govt": "2023-01-30", "office": "2", @@ -110,6 +120,11 @@ }, "court_id": "txeb", "docket_number": "22-40482", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": null, "last_date_to_file_govt": null, "office": "4", @@ -141,6 +156,11 @@ }, "court_id": "txeb", "docket_number": "22-41235", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-12-01", "last_date_to_file_govt": "2023-03-21", "office": "4", @@ -172,6 +192,11 @@ }, "court_id": "txeb", "docket_number": "22-60246", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2022-10-05", "last_date_to_file_govt": "2022-12-05", "office": "6", @@ -246,6 +271,11 @@ }, "court_id": "txeb", "docket_number": "23-40170", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-11", "last_date_to_file_govt": "2023-07-31", "office": "4", @@ -277,6 +307,11 @@ }, "court_id": "txeb", "docket_number": "23-40175", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-12", "last_date_to_file_govt": "2023-07-31", "office": "4", @@ -308,6 +343,11 @@ }, "court_id": "txeb", "docket_number": "23-40186", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-04-14", "last_date_to_file_govt": "2023-08-02", "office": "4", @@ -339,6 +379,11 @@ }, "court_id": "txeb", "docket_number": "23-40438", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "last_date_to_file_claims": "2023-05-17", "last_date_to_file_govt": "2023-09-05", "office": "4", diff --git a/tests/examples/pacer/claims_registers/deb.json b/tests/examples/pacer/claims_registers/deb.json index 6f9152061..e044a9009 100644 --- a/tests/examples/pacer/claims_registers/deb.json +++ b/tests/examples/pacer/claims_registers/deb.json @@ -440,6 +440,11 @@ "date_last_to_file_claims": "2019-07-25", "date_last_to_file_govt": "2019-10-15", "docket_number": "18-10160", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "LSS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "office": "Delaware", "total_number_of_claims": "16", "trustee_str": "Don A. Beskrone" diff --git a/tests/examples/pacer/claims_registers/ilcb.json b/tests/examples/pacer/claims_registers/ilcb.json index 99892780e..c4399d129 100644 --- a/tests/examples/pacer/claims_registers/ilcb.json +++ b/tests/examples/pacer/claims_registers/ilcb.json @@ -580,6 +580,11 @@ "date_last_to_file_claims": null, "date_last_to_file_govt": null, "docket_number": "17-80827", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "office": "Peoria", "total_number_of_claims": "20", "trustee_str": "" diff --git a/tests/examples/pacer/claims_registers/ilnb.html b/tests/examples/pacer/claims_registers/ilnb.html new file mode 100644 index 000000000..98a7f2c09 --- /dev/null +++ b/tests/examples/pacer/claims_registers/ilnb.html @@ -0,0 +1,1077 @@ + + + + Illinois Northern Bankruptcy Live System + + + +
    +
    +
    + +
    + + + + +
    +

    Northern District of Illinois
    Claims Register

    + 23-03562 Home Healthcare + Renewal Services, Inc.
    +

    + + + + + + + + + + + + + + + + + + + +
    Honorable Judge: A. Benjamin Goldgar Chapter: 11
    Office: Eastern Division      Last Date to file claims:
    Trustee: Neema T Varghese Last Date to file (Govt):
    + + + + + + + + + + + + + + + + + + + + + + +
    + + Creditor:          (30175257)  
    + INTERNAL REVENUE SERVICE
    P.O. BOX 7346
    Philadelphia, PA + 19104          
    +
    + + Claim No: 1
    Original Filed Date: 03/30/2023
    Original Entered + Date: 03/30/2023
    +
    +
    +
    + + Status: +
    Filed by: CR +
    Entered by: + Bruce Hayes +
    Modified: +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +  Amount + + claimed: + + $8413.63 + +          +
    +  Secured + + claimed: + + $0.00 + +          +
    +  Priority + + claimed: + + $8413.63 + +          +
    + + +
    +
    + + History: + + + + + + + + + + + +
    + Details + + View Receipt + 1-1 + + + + 03/30/2023 + + Claim #1 filed by INTERNAL REVENUE SERVICE, Amount claimed: + $8413.63 (Hayes, Bruce) +
    +
    + + Description: + +
    + + Remarks: + +

    + + + + + + + + + + + + + + + + + + + + + + +
    + + Creditor:          (30189361)  
    + Illinois Department of Revenue
    Bankruptcy Section, P.O. Box 19035
    Springfield, IL + 62794-9035          
    +
    + + Claim No: 2
    Original Filed Date: 04/07/2023
    Original Entered + Date: 04/07/2023
    +
    +
    +
    + + Status: +
    Filed by: CR +
    Entered by: + EPoc ADI +
    Modified: +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    +  Amount + + claimed: + + $100.00 + +          +
    +  Priority + + claimed: + + $61.88 + +          +
    + + +
    +
    + + History: + + + + + + + + + + + +
    + Details + + View Receipt + 2-1 + + + + 04/07/2023 + + Claim #2 filed by Illinois Department of Revenue, Amount + claimed: $100.00 (ADI, EPoc) +
    +
    + + Description: + +
    + + Remarks: (2-1) Account Number (last 4 digits):0224
    +
    +

    + + + + + + + + + + + + + + + + + + + + + + +
    + + Creditor:          (30191102)  
    + BYZFUNDER NY LLC
    1545 U.S. 202, Suite 101
    Pomona, NY + 10970          
    +
    + + Claim No: 3
    Original Filed Date: 04/10/2023
    Original Entered + Date: 04/10/2023
    +
    +
    +
    + + Status: +
    Filed by: CR +
    Entered by: + EPoc ADI +
    Modified: +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    +  Amount + + claimed: + + $47990.14 + +          +
    +  Secured + + claimed: + + $47990.14 + +          +
    + + +
    +
    + + History: + + + + + + + + + + + +
    + Details + + View Receipt + 3-1 + + + + 04/10/2023 + + Claim #3 filed by BYZFUNDER NY LLC, Amount claimed: + $47990.14 (ADI, EPoc) +
    +
    + + Description: + +
    + + Remarks: + +

    + + + + + + + + + + + + + + + + + + + + + + +
    + + Creditor:          (30251668)  
    + Illinois Department of Employment Security
    33 S. State Street 10th FL
    Chicago, IL + 60603          
    +
    + + Claim No: 4
    Original Filed Date: 05/23/2023
    Original Entered + Date: 05/23/2023
    +
    +
    +
    + + Status: +
    Filed by: CR +
    Entered by: + EPoc ADI +
    Modified: +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    +  Amount + + claimed: + + $1356.36 + +          +
    +  Priority + + claimed: + + $464.00 + +          +
    + + +
    +
    + + History: + + + + + + + + + + + +
    + Details + + View Receipt + 4-1 + + + + 05/23/2023 + + Claim #4 filed by Illinois Department of Employment + Security, Amount claimed: $1356.36 (ADI, EPoc) +
    +
    + + Description: + +
    + + Remarks: (4-1) Account Number (last 4 digits):0224
    +
    +

    + + + + + + + + + + + + + + + + + + + + + + +
    + + Creditor:          (30298646)  
    + Humana, Inc., Humana Insurance Company
    Fox Swibel Levin & Carroll c/o Ken + Thoma
    200 W. Madison, Suite 3000
    Chicago IL + 60606          
    +
    + + Claim No: 5
    Original Filed Date: 06/27/2023
    Original Entered + Date: 06/27/2023
    +
    +
    +
    + + Status: +
    Filed by: CR +
    Entered by: + Christina Corona +
    Modified: +
    +
    + + + + + + + + + + + + + + +
    +  Amount + + claimed: + + $15687.03 + +          +
    + + +
    +
    + + History: + + + + + + + + + + + +
    + Details + + View Receipt + 5-1 + + + + 06/27/2023 + + Claim #5 filed by Humana, Inc., Humana Insurance Company, + Amount claimed: $15687.03 (Corona, Christina) +
    +
    + + Description: + +
    + + Remarks: + +

    + + + + + + + + + + + + + + + + + + + + + + +
    + + Creditor:          (30468701)  
    + Aetna, Inc.
    Aaron McCollough, McGuireWoods LLP
    77 West Wacker Drive
    Suite + 4100
    Chicago, IL + 60601-1818          
    +
    + + Claim No: 6
    Original Filed Date: 10/24/2023
    Original Entered + Date: 10/24/2023
    +
    +
    +
    + + Status: +
    Filed by: CR +
    Entered by: + EPoc ADI +
    Modified: +
    +
    + + + + + + + + + + + + + + +
    +  Amount + + claimed: + + $1958.14 + +          +
    + + +
    +
    + + History: + + + + + + + + + + + +
    + Details + + View Receipt + 6-1 + + + + 10/24/2023 + + Claim #6 filed by Aetna, Inc., Amount claimed: $1958.14 + (ADI, EPoc) +
    +
    + + Description: + +
    + + Remarks: + +

    + + + + + + + + + + + + + + + + + + + + + + +
    + + Creditor:          (30611339)  
    + Kristin Lee Nieckula
    14917 Richton Dr.
    Lockport, IL + 60441          
    +
    + + Claim No: 7
    Original Filed Date: 01/10/2024
    Original Entered + Date: 01/10/2024
    +
    +
    +
    + + Status: +
    Filed by: CR +
    Entered by: + Annette Hamilton +
    Modified: +
    +
    + + + + + + + + + + + + + + +
    +  Amount + + claimed: + + $2662.58 + +          +
    + + +
    +
    + + History: + + + + + + + + + + + +
    + Details + + View Receipt + 7-1 + + + + 01/10/2024 + + Claim #7 filed by Kristin Lee Nieckula, Amount claimed: + $2662.58 (Hamilton, Annette) +
    +
    + + Description: + +
    + + Remarks: + +

    +

    +
    +

    Claims Register Summary

    +
    Case Name: Home Healthcare Renewal Services, Inc.
    Case Number: + 23-03562
    Chapter: 11
    Date Filed: 03/16/2023
    Total Number Of Claims: 7

    + + + + + + + + + + + +
    Total Amount Claimed*  $78167.88  
    Total Amount Allowed*    
    *Includes general unsecured claims

    The values are reflective of the data entered. Always + refer to claim documents for actual amounts.

    +
    + + + + + + + + + + + + + + + + + + + + + + + +
    ClaimedAllowed
    Secured$47990.14    
    Priority$8939.51    
    Administrative    

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + PACER Service Center +
    + Transaction Receipt +
    + 01/17/2024 10:29:38 +
    + PACER Login: + + jstor3889 + + Client Code: + + +
    + Description: + + Claims Register + + Search Criteria: + + 23-03562 Filed or Entered From: 9/19/2001 Filed or + Entered To: 1/17/2024 +
    + Billable Pages: + + 1 + + Cost: + + 0.10 +
    +


    +
    +
    +
    + + + \ No newline at end of file diff --git a/tests/examples/pacer/claims_registers/ilnb.json b/tests/examples/pacer/claims_registers/ilnb.json new file mode 100644 index 000000000..c1110ba2d --- /dev/null +++ b/tests/examples/pacer/claims_registers/ilnb.json @@ -0,0 +1,200 @@ +{ + "assigned_to_str": "A. Benjamin Goldgar", + "case_name": "Home Healthcare Renewal Services, Inc.", + "chapter": "11", + "claims": [ + { + "amount_claimed": "$8413.63", + "claim_number": 1, + "creditor_details": "INTERNAL REVENUE SERVICE\nP.O. BOX 7346\nPhiladelphia, PA\n 19104", + "creditor_id": "30175257", + "date_modified": null, + "date_original_entered": "2023-03-30", + "date_original_filed": "2023-03-30", + "description": "", + "entered_by": "Bruce Hayes", + "filed_by": "CR", + "history": [ + { + "attachment_number": 1, + "date_filed": "2023-03-30", + "description": "Claim #1 filed by INTERNAL REVENUE SERVICE, Amount claimed:\n $8413.63 (Hayes, Bruce)", + "document_number": 1, + "id": "80180740", + "pacer_case_id": "1569001", + "type": "claim" + } + ], + "priority_claimed": "$8413.63", + "remarks": "", + "secured_claimed": "$0.00", + "status": "" + }, + { + "amount_claimed": "$100.00", + "claim_number": 2, + "creditor_details": "Illinois Department of Revenue\nBankruptcy Section, P.O. Box 19035\nSpringfield, IL\n 62794-9035", + "creditor_id": "30189361", + "date_modified": null, + "date_original_entered": "2023-04-07", + "date_original_filed": "2023-04-07", + "description": "", + "entered_by": "EPoc ADI", + "filed_by": "CR", + "history": [ + { + "attachment_number": 1, + "date_filed": "2023-04-07", + "description": "Claim #2 filed by Illinois Department of Revenue, Amount\n claimed: $100.00 (ADI, EPoc)", + "document_number": 2, + "id": "80231098", + "pacer_case_id": "1569001", + "type": "claim" + } + ], + "priority_claimed": "$61.88", + "remarks": "(2-1) Account Number (last 4 digits):0224", + "status": "" + }, + { + "amount_claimed": "$47990.14", + "claim_number": 3, + "creditor_details": "BYZFUNDER NY LLC\n1545 U.S. 202, Suite 101\nPomona, NY\n 10970", + "creditor_id": "30191102", + "date_modified": null, + "date_original_entered": "2023-04-10", + "date_original_filed": "2023-04-10", + "description": "", + "entered_by": "EPoc ADI", + "filed_by": "CR", + "history": [ + { + "attachment_number": 1, + "date_filed": "2023-04-10", + "description": "Claim #3 filed by BYZFUNDER NY LLC, Amount claimed:\n $47990.14 (ADI, EPoc)", + "document_number": 3, + "id": "80238759", + "pacer_case_id": "1569001", + "type": "claim" + } + ], + "remarks": "", + "secured_claimed": "$47990.14", + "status": "" + }, + { + "amount_claimed": "$1356.36", + "claim_number": 4, + "creditor_details": "Illinois Department of Employment Security\n33 S. State Street 10th FL\nChicago, IL\n 60603", + "creditor_id": "30251668", + "date_modified": null, + "date_original_entered": "2023-05-23", + "date_original_filed": "2023-05-23", + "description": "", + "entered_by": "EPoc ADI", + "filed_by": "CR", + "history": [ + { + "attachment_number": 1, + "date_filed": "2023-05-23", + "description": "Claim #4 filed by Illinois Department of Employment\n Security, Amount claimed: $1356.36 (ADI, EPoc)", + "document_number": 4, + "id": "80510817", + "pacer_case_id": "1569001", + "type": "claim" + } + ], + "priority_claimed": "$464.00", + "remarks": "(4-1) Account Number (last 4 digits):0224", + "status": "" + }, + { + "amount_claimed": "$15687.03", + "claim_number": 5, + "creditor_details": "Humana, Inc., Humana Insurance Company\nFox Swibel Levin & Carroll c/o Ken\n Thoma\n200 W. Madison, Suite 3000\nChicago IL\n 60606", + "creditor_id": "30298646", + "date_modified": null, + "date_original_entered": "2023-06-27", + "date_original_filed": "2023-06-27", + "description": "", + "entered_by": "Christina Corona", + "filed_by": "CR", + "history": [ + { + "attachment_number": 1, + "date_filed": "2023-06-27", + "description": "Claim #5 filed by Humana, Inc., Humana Insurance Company,\n Amount claimed: $15687.03 (Corona, Christina)", + "document_number": 5, + "id": "80711330", + "pacer_case_id": "1569001", + "type": "claim" + } + ], + "remarks": "", + "status": "" + }, + { + "amount_claimed": "$1958.14", + "claim_number": 6, + "creditor_details": "Aetna, Inc.\nAaron McCollough, McGuireWoods LLP\n77 West Wacker Drive\nSuite\n 4100\nChicago, IL\n 60601-1818", + "creditor_id": "30468701", + "date_modified": null, + "date_original_entered": "2023-10-24", + "date_original_filed": "2023-10-24", + "description": "", + "entered_by": "EPoc ADI", + "filed_by": "CR", + "history": [ + { + "attachment_number": 1, + "date_filed": "2023-10-24", + "description": "Claim #6 filed by Aetna, Inc., Amount claimed: $1958.14\n (ADI, EPoc)", + "document_number": 6, + "id": "81437136", + "pacer_case_id": "1569001", + "type": "claim" + } + ], + "remarks": "", + "status": "" + }, + { + "amount_claimed": "$2662.58", + "claim_number": 7, + "creditor_details": "Kristin Lee Nieckula\n14917 Richton Dr.\nLockport, IL\n 60441", + "creditor_id": "30611339", + "date_modified": null, + "date_original_entered": "2024-01-10", + "date_original_filed": "2024-01-10", + "description": "", + "entered_by": "Annette Hamilton", + "filed_by": "CR", + "history": [ + { + "attachment_number": 1, + "date_filed": "2024-01-10", + "description": "Claim #7 filed by Kristin Lee Nieckula, Amount claimed:\n $2662.58 (Hamilton, Annette)", + "document_number": 7, + "id": "81884308", + "pacer_case_id": "1569001", + "type": "claim" + } + ], + "remarks": "", + "status": "" + } + ], + "court_id": "ilnb", + "date_filed": "2023-03-16", + "date_last_to_file_claims": null, + "date_last_to_file_govt": null, + "docket_number": "23-03562", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, + "office": "Eastern Division", + "total_number_of_claims": "7", + "trustee_str": "Neema T Varghese" +} \ No newline at end of file diff --git a/tests/examples/pacer/claims_registers/insb.json b/tests/examples/pacer/claims_registers/insb.json index 2b15b7a9b..dc949e394 100644 --- a/tests/examples/pacer/claims_registers/insb.json +++ b/tests/examples/pacer/claims_registers/insb.json @@ -750,6 +750,11 @@ "date_last_to_file_claims": "2017-01-30", "date_last_to_file_govt": "2017-03-15", "docket_number": "16-07207", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JMC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "office": "Indianapolis", "total_number_of_claims": "28", "trustee_str": "Deborah J. Caruso" diff --git a/tests/examples/pacer/claims_registers/njb.json b/tests/examples/pacer/claims_registers/njb.json index 9d73a91ac..b4deeb000 100644 --- a/tests/examples/pacer/claims_registers/njb.json +++ b/tests/examples/pacer/claims_registers/njb.json @@ -197,6 +197,11 @@ "date_last_to_file_claims": "2019-09-17", "date_last_to_file_govt": null, "docket_number": "19-18995", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "VFP", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "office": "Newark", "total_number_of_claims": "7", "trustee_str": "" diff --git a/tests/examples/pacer/claims_registers/nysb.json b/tests/examples/pacer/claims_registers/nysb.json index 7a215cbc2..f52ce7fea 100644 --- a/tests/examples/pacer/claims_registers/nysb.json +++ b/tests/examples/pacer/claims_registers/nysb.json @@ -34,6 +34,11 @@ "date_last_to_file_claims": null, "date_last_to_file_govt": null, "docket_number": "17-23943", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "office": "White Plains", "total_number_of_claims": "1", "trustee_str": "" diff --git a/tests/examples/pacer/claims_registers/orb.json b/tests/examples/pacer/claims_registers/orb.json index 32ba034df..e5a48544f 100644 --- a/tests/examples/pacer/claims_registers/orb.json +++ b/tests/examples/pacer/claims_registers/orb.json @@ -205,6 +205,11 @@ "date_last_to_file_claims": null, "date_last_to_file_govt": null, "docket_number": "14-35284", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "tmb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "office": "Portland", "total_number_of_claims": "7", "trustee_str": "Amy E Mitchell" diff --git a/tests/examples/pacer/claims_registers/pamb.html b/tests/examples/pacer/claims_registers/pamb.html new file mode 100644 index 000000000..c97a5e27c --- /dev/null +++ b/tests/examples/pacer/claims_registers/pamb.html @@ -0,0 +1,672 @@ + + + + USBC PAM - LIVE + + + + +
    + + + + +
    +

    Middle District of Pennsylvania
    Claims Register

    + 1:23-bk-01674-HWV Anna M Yocum
    +

    + + + + + + + + + + + + + + + + + + + +
    Chief Judge: Henry W. Van Eck Chapter: 13
    Office: Harrisburg      Last Date to file claims: 10/02/2023
    Trustee: Jack N Zaharopoulos Last Date to file (Govt): 01/20/2024
    + + + + + + + + + + + + + + + + + + + + + + +
    + + Creditor:          (5556497)  
    + U.S. Department of Housing and Urban Development
    100 Penn Square East, 11th + Floor
    Philadelphia, PA + 19107          
    +
    + + Claim No: 1
    Original Filed Date: 07/25/2023
    Original Entered + Date: 07/25/2023
    +
    +
    +
    + + Status: +
    Filed by: CR +
    Entered by: + Webclaimusr +
    Modified: +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    +  Amount + + claimed: + + $22033.37 + +          +
    +  Secured + + claimed: + + $22033.37 + +          +
    + + +
    +
    + + History: + + + + + + + + + + + +
    + Details + + + 1-1 + + + + 07/25/2023 + + Claim #1 filed by U.S. Department of Housing and Urban + Development, Amount claimed: $22033.37 (Webclaimusr) +
    +
    + + Description: + +
    + + Remarks: (1-1) Account Number (last 4 digits):7153
    +
    +

    + + + + + + + + + + + + + + + + + + + + + + +
    + + Creditor:          (5564355)  
    + PENN STATE HEALTH - Sorian
    PO BOX 829725
    PHILADELPHIA, PA + 19182          
    +
    + + Claim No: 2
    Original Filed Date: 09/06/2023
    Original Entered + Date: 09/06/2023
    +
    +
    +
    + + Status: +
    Filed by: CR +
    Entered by: + Karen A Davis +
    Modified: +
    +
    + + + + + + + + + + + + + + +
    +  Amount + + claimed: + + $29466.99 + +          +
    + + +
    +
    + + History: + + + + + + + + + + + + + + + + + + +
    + Details + + + 2-1 + + + + 09/06/2023 + + Claim #2 filed by PENN STATE HEALTH - Sorian, Amount + claimed: $29466.99 (Davis, Karen) +
    + 10 + + + + 09/06/2023 + + Notice to Filing Party (Penn State Health - Sorian): + Discrepancy between CM/ECF entry and uploaded PDF. Proof of Claim #2 was + not filed on the Official Form 410. 2 (Davis, Karen) +
    +
    + + Description: + +
    + + Remarks: + +

    + + + + + + + + + + + + + + + + + + + + + + +
    + + Creditor:          (5565920)  
    + M&T BANK
    P.O. Box 840
    Buffalo, NY + 14240-0840          
    +
    + + Claim No: 3
    Original Filed Date: 09/12/2023
    Original Entered + Date: 09/12/2023
    +
    +
    +
    + + Status: +
    Filed by: CR +
    Entered by: + Brian Nicholas +
    Modified: +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    +  Amount + + claimed: + + $56993.96 + +          +
    +  Secured + + claimed: + + $56993.96 + +          +
    + + +
    +
    + + History: + + + + + + + + + + + +
    + Details + + + 3-1 + + + + 09/12/2023 + + Claim #3 filed by M&T BANK, Amount claimed: $56993.96 + (Nicholas, Brian) +
    +
    + + Description: (3-1) Re: 437 Linton Hill Road Duncannon, PA 17020
    +
    +
    + + Remarks: (3-1) Total Debt Amount: $56,993.96
    +
    +

    + + + + + + + + + + + + + + + + + + + + + + +
    + + Creditor:          (5569939)  
    + Portfolio Recovery Associates, LLC
    POB 12914
    Norfolk VA + 23541          
    +
    + + Claim No: 4
    Original Filed Date: 10/02/2023
    Original Entered + Date: 10/02/2023
    +
    +
    +
    + + Status: +
    Filed by: CR +
    Entered by: + Ebony Russell +
    Modified: +
    +
    + + + + + + + + + + + + + + +
    +  Amount + + claimed: + + $4916.83 + +          +
    + + +
    +
    + + History: + + + + + + + + + + + +
    + Details + + + 4-1 + + + + 10/02/2023 + + Claim #4 filed by Portfolio Recovery Associates, LLC, + Amount claimed: $4916.83 (Russell, Ebony) +
    +
    + + Description: + +
    + + Remarks: + +

    +

    +
    +

    Claims Register Summary

    +
    Case Name: Anna M Yocum
    Case Number: 1:23-bk-01674-HWV
    Chapter: + 13
    Date Filed: 07/24/2023
    Total Number Of Claims: 4

    + + + + + + + + + + + +
    Total Amount Claimed*  $113411.15  
    Total Amount Allowed*    
    *Includes general unsecured claims

    The values are reflective of the data entered. Always + refer to claim documents for actual amounts.

    +
    + + + + + + + + + + + + + + + + + + + + + + + +
    ClaimedAllowed
    Secured$79027.33    
    Priority    
    Administrative    

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + PACER Service Center +
    + Transaction Receipt +
    + 01/15/2024 13:16:16 +
    + PACER Login: + + ja006000 + + Client Code: + + +
    + Description: + + Claims Register + + Search Criteria: + + 1:23-bk-01674-HWV Filed or Entered From: 1/1/1900 + Filed or Entered To: 1/15/2024 +
    + Billable Pages: + + 1 + + Cost: + + 0.10 +
    +


    +
    +
    +
    + + + \ No newline at end of file diff --git a/tests/examples/pacer/claims_registers/pamb.json b/tests/examples/pacer/claims_registers/pamb.json new file mode 100644 index 000000000..bda512ed8 --- /dev/null +++ b/tests/examples/pacer/claims_registers/pamb.json @@ -0,0 +1,131 @@ +{ + "assigned_to_str": "Henry W. Van Eck", + "case_name": "Anna M Yocum", + "chapter": "13", + "claims": [ + { + "amount_claimed": "$22033.37", + "claim_number": 1, + "creditor_details": "U.S. Department of Housing and Urban Development\n100 Penn Square East, 11th\n Floor\nPhiladelphia, PA\n 19107", + "creditor_id": "5556497", + "date_modified": null, + "date_original_entered": "2023-07-25", + "date_original_filed": "2023-07-25", + "description": "", + "entered_by": "Webclaimusr", + "filed_by": "CR", + "history": [ + { + "attachment_number": 1, + "date_filed": "2023-07-25", + "description": "Claim #1 filed by U.S. Department of Housing and Urban\n Development, Amount claimed: $22033.37 (Webclaimusr)", + "document_number": 1, + "id": "17666724", + "pacer_case_id": "277622", + "type": "claim" + } + ], + "remarks": "(1-1) Account Number (last 4 digits):7153", + "secured_claimed": "$22033.37", + "status": "" + }, + { + "amount_claimed": "$29466.99", + "claim_number": 2, + "creditor_details": "PENN STATE HEALTH - Sorian\nPO BOX 829725\nPHILADELPHIA, PA\n 19182", + "creditor_id": "5564355", + "date_modified": null, + "date_original_entered": "2023-09-06", + "date_original_filed": "2023-09-06", + "description": "", + "entered_by": "Karen A Davis", + "filed_by": "CR", + "history": [ + { + "attachment_number": 1, + "date_filed": "2023-09-06", + "description": "Claim #2 filed by PENN STATE HEALTH - Sorian, Amount\n claimed: $29466.99 (Davis, Karen)", + "document_number": 2, + "id": "17713577", + "pacer_case_id": "277622", + "type": "claim" + }, + { + "date_filed": "2023-09-06", + "description": "Notice to Filing Party (Penn State Health - Sorian):\n Discrepancy between CM/ECF entry and uploaded PDF. Proof of Claim #2 was\n not filed on the Official Form 410. 2 (Davis, Karen)", + "document_number": 10, + "pacer_case_id": "277622", + "pacer_dm_id": "17714063", + "pacer_seq_no": "40", + "type": "docket_entry" + } + ], + "remarks": "", + "status": "" + }, + { + "amount_claimed": "$56993.96", + "claim_number": 3, + "creditor_details": "M&T BANK\nP.O. Box 840\nBuffalo, NY\n 14240-0840", + "creditor_id": "5565920", + "date_modified": null, + "date_original_entered": "2023-09-12", + "date_original_filed": "2023-09-12", + "description": "(3-1) Re: 437 Linton Hill Road Duncannon, PA 17020", + "entered_by": "Brian Nicholas", + "filed_by": "CR", + "history": [ + { + "attachment_number": 1, + "date_filed": "2023-09-12", + "description": "Claim #3 filed by M&T BANK, Amount claimed: $56993.96\n (Nicholas, Brian)", + "document_number": 3, + "id": "17721747", + "pacer_case_id": "277622", + "type": "claim" + } + ], + "remarks": "(3-1) Total Debt Amount: $56,993.96", + "secured_claimed": "$56993.96", + "status": "" + }, + { + "amount_claimed": "$4916.83", + "claim_number": 4, + "creditor_details": "Portfolio Recovery Associates, LLC\nPOB 12914\nNorfolk VA\n 23541", + "creditor_id": "5569939", + "date_modified": null, + "date_original_entered": "2023-10-02", + "date_original_filed": "2023-10-02", + "description": "", + "entered_by": "Ebony Russell", + "filed_by": "CR", + "history": [ + { + "attachment_number": 1, + "date_filed": "2023-10-02", + "description": "Claim #4 filed by Portfolio Recovery Associates, LLC,\n Amount claimed: $4916.83 (Russell, Ebony)", + "document_number": 4, + "id": "17747622", + "pacer_case_id": "277622", + "type": "claim" + } + ], + "remarks": "", + "status": "" + } + ], + "court_id": "pamb", + "date_filed": "2023-07-24", + "date_last_to_file_claims": "2023-10-02", + "date_last_to_file_govt": "2024-01-20", + "docket_number": "1:23-bk-01674", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "HWV", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", + "office": "Harrisburg", + "total_number_of_claims": "4", + "trustee_str": "Jack N Zaharopoulos" +} \ No newline at end of file diff --git a/tests/examples/pacer/claims_registers/txeb.json b/tests/examples/pacer/claims_registers/txeb.json index 1d4a3f4c1..49ba74925 100644 --- a/tests/examples/pacer/claims_registers/txeb.json +++ b/tests/examples/pacer/claims_registers/txeb.json @@ -409,6 +409,11 @@ "date_last_to_file_claims": null, "date_last_to_file_govt": null, "docket_number": "16-40642", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "office": "Sherman", "total_number_of_claims": "11", "trustee_str": "Christopher J. Moser" diff --git a/tests/examples/pacer/claims_registers/txnb.json b/tests/examples/pacer/claims_registers/txnb.json index 370615475..211814f38 100644 --- a/tests/examples/pacer/claims_registers/txnb.json +++ b/tests/examples/pacer/claims_registers/txnb.json @@ -706,6 +706,11 @@ "date_last_to_file_claims": "2015-09-09", "date_last_to_file_govt": null, "docket_number": "15-32065", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "bjh", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "office": "Dallas", "total_number_of_claims": "24", "trustee_str": "" diff --git a/tests/examples/pacer/docket_history_reports/akd_58813.json b/tests/examples/pacer/docket_history_reports/akd_58813.json index b02a15742..1ff8a2a31 100644 --- a/tests/examples/pacer/docket_history_reports/akd_58813.json +++ b/tests/examples/pacer/docket_history_reports/akd_58813.json @@ -117,5 +117,10 @@ } ], "docket_number": "3:17-cr-00168", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "SLG", + "federal_dn_judge_initials_referred": "DMS", + "federal_dn_office_code": "3", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/alsd_61919.json b/tests/examples/pacer/docket_history_reports/alsd_61919.json index 5d8ca6c69..0b92c5840 100644 --- a/tests/examples/pacer/docket_history_reports/alsd_61919.json +++ b/tests/examples/pacer/docket_history_reports/alsd_61919.json @@ -27,5 +27,10 @@ } ], "docket_number": "1:17-mc-00016", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "KD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/arwb_156279.json b/tests/examples/pacer/docket_history_reports/arwb_156279.json index 7e961f1b0..c3721644e 100644 --- a/tests/examples/pacer/docket_history_reports/arwb_156279.json +++ b/tests/examples/pacer/docket_history_reports/arwb_156279.json @@ -648,5 +648,10 @@ } ], "docket_number": "4:16-bk-73062", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/azd_1067816.json b/tests/examples/pacer/docket_history_reports/azd_1067816.json index afb12952f..43fc498fb 100644 --- a/tests/examples/pacer/docket_history_reports/azd_1067816.json +++ b/tests/examples/pacer/docket_history_reports/azd_1067816.json @@ -81,5 +81,10 @@ } ], "docket_number": "2:17-cv-04442", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "GMS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/cacd_26872.json b/tests/examples/pacer/docket_history_reports/cacd_26872.json index a629b1ce3..16f4c4de7 100644 --- a/tests/examples/pacer/docket_history_reports/cacd_26872.json +++ b/tests/examples/pacer/docket_history_reports/cacd_26872.json @@ -1224,5 +1224,10 @@ } ], "docket_number": "2:02-cv-01431", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJO", + "federal_dn_judge_initials_referred": "RC", + "federal_dn_office_code": "2", "referred_to_str": "Rosalyn M. Chapman" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/cacd_584255.json b/tests/examples/pacer/docket_history_reports/cacd_584255.json index 08ef04ed2..c6a3061ce 100644 --- a/tests/examples/pacer/docket_history_reports/cacd_584255.json +++ b/tests/examples/pacer/docket_history_reports/cacd_584255.json @@ -486,5 +486,10 @@ } ], "docket_number": "8:14-cv-00341", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JVS", + "federal_dn_judge_initials_referred": "DFM", + "federal_dn_office_code": "8", "referred_to_str": "Douglas F. McCormick" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/cacd_683137.json b/tests/examples/pacer/docket_history_reports/cacd_683137.json index 22d2ad085..5818a7bf0 100644 --- a/tests/examples/pacer/docket_history_reports/cacd_683137.json +++ b/tests/examples/pacer/docket_history_reports/cacd_683137.json @@ -207,5 +207,10 @@ } ], "docket_number": "2:17-cv-04977", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PSG", + "federal_dn_judge_initials_referred": "SK", + "federal_dn_office_code": "2", "referred_to_str": "Steve Kim" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/cacd_695143.json b/tests/examples/pacer/docket_history_reports/cacd_695143.json index d6c9e95db..e37f1eb11 100644 --- a/tests/examples/pacer/docket_history_reports/cacd_695143.json +++ b/tests/examples/pacer/docket_history_reports/cacd_695143.json @@ -81,5 +81,10 @@ } ], "docket_number": "2:17-cv-08577", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "R", + "federal_dn_judge_initials_referred": "JC", + "federal_dn_office_code": "2", "referred_to_str": "Jacqueline Chooljian" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/cand_299226.json b/tests/examples/pacer/docket_history_reports/cand_299226.json index cb0de09c2..256e3a069 100644 --- a/tests/examples/pacer/docket_history_reports/cand_299226.json +++ b/tests/examples/pacer/docket_history_reports/cand_299226.json @@ -72,5 +72,10 @@ } ], "docket_number": "3:16-cr-00225", + "federal_defendant_number": "4", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "CRB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/cand_317100.json b/tests/examples/pacer/docket_history_reports/cand_317100.json index e094243a5..fb2a1f370 100644 --- a/tests/examples/pacer/docket_history_reports/cand_317100.json +++ b/tests/examples/pacer/docket_history_reports/cand_317100.json @@ -243,5 +243,10 @@ } ], "docket_number": "3:17-cv-05264", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "VC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/cand_317868.json b/tests/examples/pacer/docket_history_reports/cand_317868.json index f4b426caf..94308264a 100644 --- a/tests/examples/pacer/docket_history_reports/cand_317868.json +++ b/tests/examples/pacer/docket_history_reports/cand_317868.json @@ -135,5 +135,10 @@ } ], "docket_number": "3:17-cv-05729", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/casb_463475.html b/tests/examples/pacer/docket_history_reports/casb_463475.html new file mode 100644 index 000000000..92764c678 --- /dev/null +++ b/tests/examples/pacer/docket_history_reports/casb_463475.html @@ -0,0 +1,148 @@ + + +California Southern Bankruptcy Court ( LIVE ) + + + +
    +
    +24-03115-CL7 +Stephannie Samantha Presichi Gonzlez +
    +Case type: bk +Chapter: 7 +Asset: No +Vol: v +Chief Judge: Christopher B. Latham +
    +Date filed: 08/21/2024 +Date of last filing: 08/21/2024 +
    +

    + + +
    History

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Doc.
    No.
    DatesDescription
      +
    Filed & Entered: 08/21/2024
    Auto-docket of credit card
     Docket Text: Receipt of Chapter 7 Voluntary Petition( 24-03115-7) [misc,1027] ( 338.00) Filing Fee. Fee Amount 338.00 Receipt number A18166144 (re: Doc# 1); (U.S. Treasury) +
    1 +
    Filed & Entered: 08/21/2024
    Chapter 7 Voluntary Petition
     Docket Text: Voluntary Petition for Individuals Schedules & Statements Fee Amount $ 338.00. Declaration re: Electronic Filing due by 09/4/2024, Filed by Ruben F Arizmendi of Arizmendi Law Firm on behalf of Stephannie Samantha Presichi Gonzlez. (Arizmendi, Ruben) +
    2 +
    Filed & Entered: 08/21/2024
    Statement About Your Social Security Number
     Docket Text: Receipt of Statement About Your Social Security Number COURT NOTE: The PDF document is a secured image. filed by Ruben F Arizmendi on behalf of Stephannie Samantha Presichi Gonzlez. (Arizmendi, Ruben) +
    3 +
    Filed & Entered: 08/21/2024
    Certificate of Credit Counseling
     Docket Text: Certificate of Credit Counseling for Debtor Dated 7/10/2024 filed by Ruben F Arizmendi on behalf of Stephannie Samantha Presichi Gonzlez. For Court Use Only: 180 days CC Date from case filing: 02/23/2024, (related documents 1 Chapter 7 Voluntary Petition) (Arizmendi, Ruben) +
    4 +
    Filed & Entered: 08/21/2024
    Rights and Responsibilities of Debtors and their Attorney
     Docket Text: Rights and Responsibilities of Chapter 7 Debtors and their Attorney filed by Ruben F Arizmendi on behalf of Stephannie Samantha Presichi Gonzlez. (Arizmendi, Ruben) +
    5 +
    Filed & Entered: 08/21/2024
    Declaration Re: Electronic Filing
     Docket Text: Declaration Re: Electronic Filing filed by Ruben F Arizmendi on behalf of Stephannie Samantha Presichi Gonzlez. (related documents 1 Chapter 7 Voluntary Petition) (Arizmendi, Ruben) +
    6 +
    Filed & Entered: 08/21/2024
    Notice of Chapter 7 Bankruptcy Case & Meeting of Creditors
     Docket Text: Notice of Chapter 7 Bankruptcy Case, Meeting of Creditors & Notice of Appointment of Interim Trustee Barclay, Christopher R. with 341(a) meeting to be held on 9/24/2024 at 08:00 AM. via Zoom - Barclay Meeting ID 899 506 3782, and Passcode 3301391688, Phone (619) 367-5256. Financial Management Course Due Date: 11/25/2024. Objections for Discharge due by 11/25/2024. (Arizmendi, Ruben)
    + +
    PACER Service Center
    Transaction Receipt
    08/22/2024 08:07:03
    PACER Login: jesus13law Client Code:
    Description: History/Documents Search Criteria: 24-03115-CL7 Type: History Docket Text: DisplayDktText
    Billable Pages: 1 Cost: 0.10


    \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/casb_463475.json b/tests/examples/pacer/docket_history_reports/casb_463475.json new file mode 100644 index 000000000..459282eea --- /dev/null +++ b/tests/examples/pacer/docket_history_reports/casb_463475.json @@ -0,0 +1,81 @@ +{ + "assigned_to_str": "Christopher B. Latham", + "case_name": "Stephannie Samantha Presichi Gonzlez", + "court_id": "casb", + "date_discharged": null, + "date_filed": "2024-08-21", + "date_last_filing": "2024-08-21", + "date_terminated": null, + "docket_entries": [ + { + "date_entered": "2024-08-21", + "date_filed": "2024-08-21", + "description": "Receipt of Chapter 7 Voluntary Petition( 24-03115-7) [misc,1027] ( 338.00) Filing Fee. Fee Amount 338.00 Receipt number A18166144 (re: Doc# 1); (U.S. Treasury)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null, + "short_description": "Auto-docket of credit card" + }, + { + "date_entered": "2024-08-21", + "date_filed": "2024-08-21", + "description": "Voluntary Petition for Individuals Schedules & Statements Fee Amount $ 338.00. Declaration re: Electronic Filing due by 09/4/2024, Filed by Ruben F Arizmendi of Arizmendi Law Firm on behalf of Stephannie Samantha Presichi Gonzlez. (Arizmendi, Ruben)", + "document_number": "1", + "pacer_doc_id": "036021266730", + "pacer_seq_no": null, + "short_description": "Chapter 7 Voluntary Petition" + }, + { + "date_entered": "2024-08-21", + "date_filed": "2024-08-21", + "description": "Receipt of Statement About Your Social Security Number COURT NOTE: The PDF document is a secured image. filed by Ruben F Arizmendi on behalf of Stephannie Samantha Presichi Gonzlez. (Arizmendi, Ruben)", + "document_number": "2", + "pacer_doc_id": "036021266733", + "pacer_seq_no": null, + "short_description": "Statement About Your Social Security Number" + }, + { + "date_entered": "2024-08-21", + "date_filed": "2024-08-21", + "description": "Certificate of Credit Counseling for Debtor Dated 7/10/2024 filed by Ruben F Arizmendi on behalf of Stephannie Samantha Presichi Gonzlez. For Court Use Only: 180 days CC Date from case filing: 02/23/2024, (related documents 1 Chapter 7 Voluntary Petition) (Arizmendi, Ruben)", + "document_number": "3", + "pacer_doc_id": "036021266736", + "pacer_seq_no": null, + "short_description": "Certificate of Credit Counseling" + }, + { + "date_entered": "2024-08-21", + "date_filed": "2024-08-21", + "description": "Rights and Responsibilities of Chapter 7 Debtors and their Attorney filed by Ruben F Arizmendi on behalf of Stephannie Samantha Presichi Gonzlez. (Arizmendi, Ruben)", + "document_number": "4", + "pacer_doc_id": "036021266739", + "pacer_seq_no": null, + "short_description": "Rights and Responsibilities of Debtors and their Attorney" + }, + { + "date_entered": "2024-08-21", + "date_filed": "2024-08-21", + "description": "Declaration Re: Electronic Filing filed by Ruben F Arizmendi on behalf of Stephannie Samantha Presichi Gonzlez. (related documents 1 Chapter 7 Voluntary Petition) (Arizmendi, Ruben)", + "document_number": "5", + "pacer_doc_id": "036021266742", + "pacer_seq_no": null, + "short_description": "Declaration Re: Electronic Filing" + }, + { + "date_entered": "2024-08-21", + "date_filed": "2024-08-21", + "description": "Notice of Chapter 7 Bankruptcy Case, Meeting of Creditors & Notice of Appointment of Interim Trustee Barclay, Christopher R. with 341(a) meeting to be held on 9/24/2024 at 08:00 AM. via Zoom - Barclay Meeting ID 899 506 3782, and Passcode 3301391688, Phone (619) 367-5256. Financial Management Course Due Date: 11/25/2024. Objections for Discharge due by 11/25/2024. (Arizmendi, Ruben)", + "document_number": "6", + "pacer_doc_id": "036021267027", + "pacer_seq_no": null, + "short_description": "Notice of Chapter 7 Bankruptcy Case & Meeting of Creditors" + } + ], + "docket_number": "24-03115", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, + "referred_to_str": "" +} \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/casd.json b/tests/examples/pacer/docket_history_reports/casd.json index dc080b468..ee0dda454 100644 --- a/tests/examples/pacer/docket_history_reports/casd.json +++ b/tests/examples/pacer/docket_history_reports/casd.json @@ -162,5 +162,10 @@ } ], "docket_number": "3:18-cr-03298", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JAH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/cob_461890.json b/tests/examples/pacer/docket_history_reports/cob_461890.json index cb1d7c705..8f839cedc 100644 --- a/tests/examples/pacer/docket_history_reports/cob_461890.json +++ b/tests/examples/pacer/docket_history_reports/cob_461890.json @@ -189,5 +189,10 @@ } ], "docket_number": "17-16301", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "TBM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ctb_113046.json b/tests/examples/pacer/docket_history_reports/ctb_113046.json index bf5f6bdc9..e878784f1 100644 --- a/tests/examples/pacer/docket_history_reports/ctb_113046.json +++ b/tests/examples/pacer/docket_history_reports/ctb_113046.json @@ -8,5 +8,10 @@ "date_terminated": "1993-01-14", "docket_entries": [], "docket_number": "92-53097", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ctd_115975.json b/tests/examples/pacer/docket_history_reports/ctd_115975.json index f4aff5227..20ff2b315 100644 --- a/tests/examples/pacer/docket_history_reports/ctd_115975.json +++ b/tests/examples/pacer/docket_history_reports/ctd_115975.json @@ -198,5 +198,10 @@ } ], "docket_number": "3:17-cv-00259", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "VAB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/dcd_134505.json b/tests/examples/pacer/docket_history_reports/dcd_134505.json index 25e0f0559..66e96060a 100644 --- a/tests/examples/pacer/docket_history_reports/dcd_134505.json +++ b/tests/examples/pacer/docket_history_reports/dcd_134505.json @@ -432,5 +432,10 @@ } ], "docket_number": "1:08-cv-02203", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PLF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/dcd_186935.json b/tests/examples/pacer/docket_history_reports/dcd_186935.json index beda7acc0..dc45c6cc9 100644 --- a/tests/examples/pacer/docket_history_reports/dcd_186935.json +++ b/tests/examples/pacer/docket_history_reports/dcd_186935.json @@ -225,5 +225,10 @@ } ], "docket_number": "1:17-cv-01052", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "TNM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/dcd_190182.json b/tests/examples/pacer/docket_history_reports/dcd_190182.json index 1931bad51..57214ee51 100644 --- a/tests/examples/pacer/docket_history_reports/dcd_190182.json +++ b/tests/examples/pacer/docket_history_reports/dcd_190182.json @@ -1269,5 +1269,10 @@ } ], "docket_number": "1:17-cv-02122", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "TSC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/dcd_191692.json b/tests/examples/pacer/docket_history_reports/dcd_191692.json index 052b1c7b7..61541f5d7 100644 --- a/tests/examples/pacer/docket_history_reports/dcd_191692.json +++ b/tests/examples/pacer/docket_history_reports/dcd_191692.json @@ -90,5 +90,10 @@ } ], "docket_number": "1:17-cv-02591", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "EGS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ded_48523.json b/tests/examples/pacer/docket_history_reports/ded_48523.json index 2d73d6aab..bedb5d2e1 100644 --- a/tests/examples/pacer/docket_history_reports/ded_48523.json +++ b/tests/examples/pacer/docket_history_reports/ded_48523.json @@ -999,5 +999,10 @@ } ], "docket_number": "1:12-cv-00454", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SLR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ded_52516.json b/tests/examples/pacer/docket_history_reports/ded_52516.json index 702e79708..78143eeb1 100644 --- a/tests/examples/pacer/docket_history_reports/ded_52516.json +++ b/tests/examples/pacer/docket_history_reports/ded_52516.json @@ -135,5 +135,10 @@ } ], "docket_number": "1:13-cv-01176", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LPS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ded_60071.json b/tests/examples/pacer/docket_history_reports/ded_60071.json index c241c0f70..b729c75d2 100644 --- a/tests/examples/pacer/docket_history_reports/ded_60071.json +++ b/tests/examples/pacer/docket_history_reports/ded_60071.json @@ -531,5 +531,10 @@ } ], "docket_number": "1:16-cr-00072", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "GMS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ded_60379.json b/tests/examples/pacer/docket_history_reports/ded_60379.json index dae498f97..acedfc35b 100644 --- a/tests/examples/pacer/docket_history_reports/ded_60379.json +++ b/tests/examples/pacer/docket_history_reports/ded_60379.json @@ -1737,5 +1737,10 @@ } ], "docket_number": "1:16-cv-00896", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "GMS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ded_63705.json b/tests/examples/pacer/docket_history_reports/ded_63705.json index f88c4a79d..f3dfce339 100644 --- a/tests/examples/pacer/docket_history_reports/ded_63705.json +++ b/tests/examples/pacer/docket_history_reports/ded_63705.json @@ -135,5 +135,10 @@ } ], "docket_number": "1:17-mj-00215", + "federal_defendant_number": null, + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/flmd_331869.json b/tests/examples/pacer/docket_history_reports/flmd_331869.json index 76a7ea2ac..ba3015f52 100644 --- a/tests/examples/pacer/docket_history_reports/flmd_331869.json +++ b/tests/examples/pacer/docket_history_reports/flmd_331869.json @@ -756,5 +756,10 @@ } ], "docket_number": "6:16-cr-00270", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JA", + "federal_dn_judge_initials_referred": "DCI", + "federal_dn_office_code": "6", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/flsb_684510.json b/tests/examples/pacer/docket_history_reports/flsb_684510.json index 0e20be3a2..c52d3bb95 100644 --- a/tests/examples/pacer/docket_history_reports/flsb_684510.json +++ b/tests/examples/pacer/docket_history_reports/flsb_684510.json @@ -837,5 +837,10 @@ } ], "docket_number": "15-25418", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "LMI", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/flsb_703069.json b/tests/examples/pacer/docket_history_reports/flsb_703069.json index a89cfcefa..b0e1b227f 100644 --- a/tests/examples/pacer/docket_history_reports/flsb_703069.json +++ b/tests/examples/pacer/docket_history_reports/flsb_703069.json @@ -945,5 +945,10 @@ } ], "docket_number": "16-20959", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "EPK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/flsd_461461.json b/tests/examples/pacer/docket_history_reports/flsd_461461.json index 29a1e99b4..56eb3ccc9 100644 --- a/tests/examples/pacer/docket_history_reports/flsd_461461.json +++ b/tests/examples/pacer/docket_history_reports/flsd_461461.json @@ -486,5 +486,10 @@ } ], "docket_number": "1:15-cv-21450", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MGC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "Edwin G. Torres" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/flsd_503009.json b/tests/examples/pacer/docket_history_reports/flsd_503009.json index 8729370c3..f98803e23 100644 --- a/tests/examples/pacer/docket_history_reports/flsd_503009.json +++ b/tests/examples/pacer/docket_history_reports/flsd_503009.json @@ -513,5 +513,10 @@ } ], "docket_number": "9:17-cv-80334", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "9", "referred_to_str": "William Matthewman" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/flsd_516082.json b/tests/examples/pacer/docket_history_reports/flsd_516082.json index 813d687eb..7a6f2e694 100644 --- a/tests/examples/pacer/docket_history_reports/flsd_516082.json +++ b/tests/examples/pacer/docket_history_reports/flsd_516082.json @@ -72,5 +72,10 @@ } ], "docket_number": "0:17-cv-62161", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DPG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "0", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/gamd_103911.json b/tests/examples/pacer/docket_history_reports/gamd_103911.json index 4b36de5b6..a260ae189 100644 --- a/tests/examples/pacer/docket_history_reports/gamd_103911.json +++ b/tests/examples/pacer/docket_history_reports/gamd_103911.json @@ -36,5 +36,10 @@ } ], "docket_number": "5:17-mj-00108", + "federal_defendant_number": null, + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": "CHW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/gand_172155.json b/tests/examples/pacer/docket_history_reports/gand_172155.json index 93a4c4ce4..b85df9b93 100644 --- a/tests/examples/pacer/docket_history_reports/gand_172155.json +++ b/tests/examples/pacer/docket_history_reports/gand_172155.json @@ -378,5 +378,10 @@ } ], "docket_number": "1:11-cv-00091", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/gand_234816.json b/tests/examples/pacer/docket_history_reports/gand_234816.json index 329edaed5..daa15807e 100644 --- a/tests/examples/pacer/docket_history_reports/gand_234816.json +++ b/tests/examples/pacer/docket_history_reports/gand_234816.json @@ -1791,5 +1791,10 @@ } ], "docket_number": "1:17-cv-00431", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/gand_235315.json b/tests/examples/pacer/docket_history_reports/gand_235315.json index a552ef0fa..962b022e5 100644 --- a/tests/examples/pacer/docket_history_reports/gand_235315.json +++ b/tests/examples/pacer/docket_history_reports/gand_235315.json @@ -450,5 +450,10 @@ } ], "docket_number": "2:17-cr-00005", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "RWS", + "federal_dn_judge_initials_referred": "JCF", + "federal_dn_office_code": "2", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/idd_40127.json b/tests/examples/pacer/docket_history_reports/idd_40127.json index 3adbca8c3..cec2cd4a2 100644 --- a/tests/examples/pacer/docket_history_reports/idd_40127.json +++ b/tests/examples/pacer/docket_history_reports/idd_40127.json @@ -225,5 +225,10 @@ } ], "docket_number": "1:17-cv-00430", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DCN", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/idd_40171.json b/tests/examples/pacer/docket_history_reports/idd_40171.json index 07369319d..7149a2365 100644 --- a/tests/examples/pacer/docket_history_reports/idd_40171.json +++ b/tests/examples/pacer/docket_history_reports/idd_40171.json @@ -297,5 +297,10 @@ } ], "docket_number": "1:17-cv-00437", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BLW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ilnd_274007.json b/tests/examples/pacer/docket_history_reports/ilnd_274007.json index de97362f4..a9625b0d1 100644 --- a/tests/examples/pacer/docket_history_reports/ilnd_274007.json +++ b/tests/examples/pacer/docket_history_reports/ilnd_274007.json @@ -2061,5 +2061,10 @@ } ], "docket_number": "1:12-cv-07289", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ilnd_328711.json b/tests/examples/pacer/docket_history_reports/ilnd_328711.json index f17c06ee6..f8e91d2b5 100644 --- a/tests/examples/pacer/docket_history_reports/ilnd_328711.json +++ b/tests/examples/pacer/docket_history_reports/ilnd_328711.json @@ -684,5 +684,10 @@ } ], "docket_number": "1:16-cv-06938", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ilnd_328988.json b/tests/examples/pacer/docket_history_reports/ilnd_328988.json index 083bbfa80..2d15fff22 100644 --- a/tests/examples/pacer/docket_history_reports/ilnd_328988.json +++ b/tests/examples/pacer/docket_history_reports/ilnd_328988.json @@ -423,5 +423,10 @@ } ], "docket_number": "1:16-cr-00438", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ilnd_330732.json b/tests/examples/pacer/docket_history_reports/ilnd_330732.json index ebbfe6172..b5b2b0317 100644 --- a/tests/examples/pacer/docket_history_reports/ilnd_330732.json +++ b/tests/examples/pacer/docket_history_reports/ilnd_330732.json @@ -297,5 +297,10 @@ } ], "docket_number": "1:16-cv-08449", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ilnd_343997.json b/tests/examples/pacer/docket_history_reports/ilnd_343997.json index c8c87f331..e99d0291e 100644 --- a/tests/examples/pacer/docket_history_reports/ilnd_343997.json +++ b/tests/examples/pacer/docket_history_reports/ilnd_343997.json @@ -288,5 +288,10 @@ } ], "docket_number": "1:17-cv-06583", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/mad_189641.json b/tests/examples/pacer/docket_history_reports/mad_189641.json index 13e23d712..80f4ff4bb 100644 --- a/tests/examples/pacer/docket_history_reports/mad_189641.json +++ b/tests/examples/pacer/docket_history_reports/mad_189641.json @@ -333,5 +333,10 @@ } ], "docket_number": "1:17-cv-11011", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "GAO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/mied_291380.json b/tests/examples/pacer/docket_history_reports/mied_291380.json index e41f1521a..ca06694d1 100644 --- a/tests/examples/pacer/docket_history_reports/mied_291380.json +++ b/tests/examples/pacer/docket_history_reports/mied_291380.json @@ -387,5 +387,10 @@ } ], "docket_number": "2:14-cv-11934", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LJM", + "federal_dn_judge_initials_referred": "MJH", + "federal_dn_office_code": "2", "referred_to_str": "Michael J. Hluchaniuk" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/mied_319301.json b/tests/examples/pacer/docket_history_reports/mied_319301.json index 5d883b7b8..110cf3f57 100644 --- a/tests/examples/pacer/docket_history_reports/mied_319301.json +++ b/tests/examples/pacer/docket_history_reports/mied_319301.json @@ -468,5 +468,10 @@ } ], "docket_number": "5:17-cv-11149", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JEL", + "federal_dn_judge_initials_referred": "EAS", + "federal_dn_office_code": "5", "referred_to_str": "Elizabeth A. Stafford" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/moed_139160.json b/tests/examples/pacer/docket_history_reports/moed_139160.json index 34172ec72..ef837b7ae 100644 --- a/tests/examples/pacer/docket_history_reports/moed_139160.json +++ b/tests/examples/pacer/docket_history_reports/moed_139160.json @@ -333,5 +333,10 @@ } ], "docket_number": "4:15-cr-00175", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "RWS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/moed_158177.json b/tests/examples/pacer/docket_history_reports/moed_158177.json index 2e8a62558..015040e91 100644 --- a/tests/examples/pacer/docket_history_reports/moed_158177.json +++ b/tests/examples/pacer/docket_history_reports/moed_158177.json @@ -81,5 +81,10 @@ } ], "docket_number": "4:17-cv-02796", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SNLJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/mowd_131124.json b/tests/examples/pacer/docket_history_reports/mowd_131124.json index d805d0b6e..8fdcdcd7e 100644 --- a/tests/examples/pacer/docket_history_reports/mowd_131124.json +++ b/tests/examples/pacer/docket_history_reports/mowd_131124.json @@ -189,5 +189,10 @@ } ], "docket_number": "4:16-cv-01258", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JTM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/mowd_137344.json b/tests/examples/pacer/docket_history_reports/mowd_137344.json index a0299cdf9..114bd1346 100644 --- a/tests/examples/pacer/docket_history_reports/mowd_137344.json +++ b/tests/examples/pacer/docket_history_reports/mowd_137344.json @@ -8,5 +8,10 @@ "date_terminated": null, "docket_entries": [], "docket_number": "6:17-cr-03145", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "RK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nced_156499.json b/tests/examples/pacer/docket_history_reports/nced_156499.json index 6db0a45ae..590fe1eb4 100644 --- a/tests/examples/pacer/docket_history_reports/nced_156499.json +++ b/tests/examples/pacer/docket_history_reports/nced_156499.json @@ -468,5 +468,10 @@ } ], "docket_number": "7:17-cv-00071", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nced_160124.json b/tests/examples/pacer/docket_history_reports/nced_160124.json index ab62117c7..6d51e511b 100644 --- a/tests/examples/pacer/docket_history_reports/nced_160124.json +++ b/tests/examples/pacer/docket_history_reports/nced_160124.json @@ -72,5 +72,10 @@ } ], "docket_number": "5:17-cv-00511", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nced_160125.json b/tests/examples/pacer/docket_history_reports/nced_160125.json index f3af15cc6..4f61df757 100644 --- a/tests/examples/pacer/docket_history_reports/nced_160125.json +++ b/tests/examples/pacer/docket_history_reports/nced_160125.json @@ -144,5 +144,10 @@ } ], "docket_number": "5:17-cv-00512", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "D", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ncmd_72956.json b/tests/examples/pacer/docket_history_reports/ncmd_72956.json index a429deee2..6ba194f9f 100644 --- a/tests/examples/pacer/docket_history_reports/ncmd_72956.json +++ b/tests/examples/pacer/docket_history_reports/ncmd_72956.json @@ -1251,5 +1251,10 @@ } ], "docket_number": "1:16-cv-01026", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WO", + "federal_dn_judge_initials_referred": "JEP", + "federal_dn_office_code": "1", "referred_to_str": "Joi Elizabeth Peake" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nebraskab_149949.json b/tests/examples/pacer/docket_history_reports/nebraskab_149949.json index dd72cc4ad..98f01accd 100644 --- a/tests/examples/pacer/docket_history_reports/nebraskab_149949.json +++ b/tests/examples/pacer/docket_history_reports/nebraskab_149949.json @@ -297,5 +297,10 @@ } ], "docket_number": "13-81167", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "TLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ned_74660.json b/tests/examples/pacer/docket_history_reports/ned_74660.json index 41a7c3117..933c492b0 100644 --- a/tests/examples/pacer/docket_history_reports/ned_74660.json +++ b/tests/examples/pacer/docket_history_reports/ned_74660.json @@ -405,5 +405,10 @@ } ], "docket_number": "8:16-cr-00362", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "RFR", + "federal_dn_judge_initials_referred": "MDN", + "federal_dn_office_code": "8", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ned_76965.json b/tests/examples/pacer/docket_history_reports/ned_76965.json index 1100f0b95..3b5a4b2ca 100644 --- a/tests/examples/pacer/docket_history_reports/ned_76965.json +++ b/tests/examples/pacer/docket_history_reports/ned_76965.json @@ -252,5 +252,10 @@ } ], "docket_number": "8:17-cv-00290", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RFR", + "federal_dn_judge_initials_referred": "CRZ", + "federal_dn_office_code": "8", "referred_to_str": "Cheryl R. Zwart" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ned_78580.json b/tests/examples/pacer/docket_history_reports/ned_78580.json index fc8455b1e..db6b73fbe 100644 --- a/tests/examples/pacer/docket_history_reports/ned_78580.json +++ b/tests/examples/pacer/docket_history_reports/ned_78580.json @@ -36,5 +36,10 @@ } ], "docket_number": "8:18-cv-00020", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RFR", + "federal_dn_judge_initials_referred": "SMB", + "federal_dn_office_code": "8", "referred_to_str": "Susan M. Bazis" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/njd_272151.json b/tests/examples/pacer/docket_history_reports/njd_272151.json index e5abf87d7..740fbb142 100644 --- a/tests/examples/pacer/docket_history_reports/njd_272151.json +++ b/tests/examples/pacer/docket_history_reports/njd_272151.json @@ -2223,5 +2223,10 @@ } ], "docket_number": "3:12-cr-00204", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "MLC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/njd_312125.json b/tests/examples/pacer/docket_history_reports/njd_312125.json index c7af31b8a..d1a595868 100644 --- a/tests/examples/pacer/docket_history_reports/njd_312125.json +++ b/tests/examples/pacer/docket_history_reports/njd_312125.json @@ -684,5 +684,10 @@ } ], "docket_number": "1:14-cv-07343", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RBK", + "federal_dn_judge_initials_referred": "AMD", + "federal_dn_office_code": "1", "referred_to_str": "Ann Marie Donio" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/njd_345150.json b/tests/examples/pacer/docket_history_reports/njd_345150.json index 3189ab731..38d840b2d 100644 --- a/tests/examples/pacer/docket_history_reports/njd_345150.json +++ b/tests/examples/pacer/docket_history_reports/njd_345150.json @@ -252,5 +252,10 @@ } ], "docket_number": "2:17-cv-01239", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MCA", + "federal_dn_judge_initials_referred": "LDW", + "federal_dn_office_code": "2", "referred_to_str": "Leda D. Wettre" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/njd_345216.json b/tests/examples/pacer/docket_history_reports/njd_345216.json index 5f1e84901..ff5e1c979 100644 --- a/tests/examples/pacer/docket_history_reports/njd_345216.json +++ b/tests/examples/pacer/docket_history_reports/njd_345216.json @@ -261,5 +261,10 @@ } ], "docket_number": "2:17-cv-01271", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SDW", + "federal_dn_judge_initials_referred": "SCM", + "federal_dn_office_code": "2", "referred_to_str": "Steven C. Mannion" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/njd_347505.json b/tests/examples/pacer/docket_history_reports/njd_347505.json index aad206dde..558641843 100644 --- a/tests/examples/pacer/docket_history_reports/njd_347505.json +++ b/tests/examples/pacer/docket_history_reports/njd_347505.json @@ -333,5 +333,10 @@ } ], "docket_number": "3:17-cv-02641", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AET", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nmd_361386.json b/tests/examples/pacer/docket_history_reports/nmd_361386.json index 4909b4a0c..69ff831b0 100644 --- a/tests/examples/pacer/docket_history_reports/nmd_361386.json +++ b/tests/examples/pacer/docket_history_reports/nmd_361386.json @@ -306,5 +306,10 @@ } ], "docket_number": "1:17-cr-00965", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "MCA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nvd_113336.json b/tests/examples/pacer/docket_history_reports/nvd_113336.json index 0ab05b3b2..97d9bfbfb 100644 --- a/tests/examples/pacer/docket_history_reports/nvd_113336.json +++ b/tests/examples/pacer/docket_history_reports/nvd_113336.json @@ -378,5 +378,10 @@ } ], "docket_number": "2:16-cr-00046", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "GMN", + "federal_dn_judge_initials_referred": "PAL", + "federal_dn_office_code": "2", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nvd_115190.json b/tests/examples/pacer/docket_history_reports/nvd_115190.json index bd514e5f8..cb060bf6d 100644 --- a/tests/examples/pacer/docket_history_reports/nvd_115190.json +++ b/tests/examples/pacer/docket_history_reports/nvd_115190.json @@ -972,5 +972,10 @@ } ], "docket_number": "3:16-cv-00270", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MMD", + "federal_dn_judge_initials_referred": "VPC", + "federal_dn_office_code": "3", "referred_to_str": "Valerie P. Cooke" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nvd_126212.json b/tests/examples/pacer/docket_history_reports/nvd_126212.json index 6cc8dbf34..e216979e3 100644 --- a/tests/examples/pacer/docket_history_reports/nvd_126212.json +++ b/tests/examples/pacer/docket_history_reports/nvd_126212.json @@ -441,5 +441,10 @@ } ], "docket_number": "2:17-cv-02666", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JCM", + "federal_dn_judge_initials_referred": "GWF", + "federal_dn_office_code": "2", "referred_to_str": "George Foley Jr." } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nyed_207658.json b/tests/examples/pacer/docket_history_reports/nyed_207658.json index 3bd88d4ce..d60861e3e 100644 --- a/tests/examples/pacer/docket_history_reports/nyed_207658.json +++ b/tests/examples/pacer/docket_history_reports/nyed_207658.json @@ -684,5 +684,10 @@ } ], "docket_number": "9:96-cr-00130", + "federal_defendant_number": "4", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "9", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nyed_235436.json b/tests/examples/pacer/docket_history_reports/nyed_235436.json index 4ed45dd3a..b3e059c08 100644 --- a/tests/examples/pacer/docket_history_reports/nyed_235436.json +++ b/tests/examples/pacer/docket_history_reports/nyed_235436.json @@ -135,5 +135,10 @@ } ], "docket_number": "1:04-cv-04176", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "referred_to_str": "Lois Bloom" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nyed_270709.json b/tests/examples/pacer/docket_history_reports/nyed_270709.json index 26efae8b0..41d2acaf3 100644 --- a/tests/examples/pacer/docket_history_reports/nyed_270709.json +++ b/tests/examples/pacer/docket_history_reports/nyed_270709.json @@ -54,5 +54,10 @@ } ], "docket_number": "1:07-cv-02385", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JBW", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "referred_to_str": "Roanne L. Mann" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nyed_305919.json b/tests/examples/pacer/docket_history_reports/nyed_305919.json index 1be4c74af..4bc58c742 100644 --- a/tests/examples/pacer/docket_history_reports/nyed_305919.json +++ b/tests/examples/pacer/docket_history_reports/nyed_305919.json @@ -225,5 +225,10 @@ } ], "docket_number": "1:10-cv-02873", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "referred_to_str": "Roanne L. Mann" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nyed_332312.json b/tests/examples/pacer/docket_history_reports/nyed_332312.json index fe17b3424..adaf321ac 100644 --- a/tests/examples/pacer/docket_history_reports/nyed_332312.json +++ b/tests/examples/pacer/docket_history_reports/nyed_332312.json @@ -594,5 +594,10 @@ } ], "docket_number": "1:12-cr-00449", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nyed_406590.json b/tests/examples/pacer/docket_history_reports/nyed_406590.json index b371a2d11..2b64b101a 100644 --- a/tests/examples/pacer/docket_history_reports/nyed_406590.json +++ b/tests/examples/pacer/docket_history_reports/nyed_406590.json @@ -1197,5 +1197,10 @@ } ], "docket_number": "1:17-cv-05228", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "referred_to_str": "James Orenstein" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nyed_408792.json b/tests/examples/pacer/docket_history_reports/nyed_408792.json index 0d9219419..14a7e5abe 100644 --- a/tests/examples/pacer/docket_history_reports/nyed_408792.json +++ b/tests/examples/pacer/docket_history_reports/nyed_408792.json @@ -54,5 +54,10 @@ } ], "docket_number": "2:17-cv-06302", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LDW", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "referred_to_str": "Steven I. Locke" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nynd_112359.json b/tests/examples/pacer/docket_history_reports/nynd_112359.json index c4bc0a95b..0a8aca572 100644 --- a/tests/examples/pacer/docket_history_reports/nynd_112359.json +++ b/tests/examples/pacer/docket_history_reports/nynd_112359.json @@ -261,5 +261,10 @@ } ], "docket_number": "1:17-cr-00299", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "MAD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nysd_417238.json b/tests/examples/pacer/docket_history_reports/nysd_417238.json index 8f55cb7c3..35a08c8e5 100644 --- a/tests/examples/pacer/docket_history_reports/nysd_417238.json +++ b/tests/examples/pacer/docket_history_reports/nysd_417238.json @@ -810,5 +810,10 @@ } ], "docket_number": "1:13-cv-06326", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WHP", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nysd_435841.json b/tests/examples/pacer/docket_history_reports/nysd_435841.json index 93b98e0bf..e02923bf6 100644 --- a/tests/examples/pacer/docket_history_reports/nysd_435841.json +++ b/tests/examples/pacer/docket_history_reports/nysd_435841.json @@ -882,5 +882,10 @@ } ], "docket_number": "1:14-cv-09662", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JSR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nysd_441170.json b/tests/examples/pacer/docket_history_reports/nysd_441170.json index a45a10cb5..f89113894 100644 --- a/tests/examples/pacer/docket_history_reports/nysd_441170.json +++ b/tests/examples/pacer/docket_history_reports/nysd_441170.json @@ -27,5 +27,10 @@ } ], "docket_number": "1:15-mc-00105", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "P1", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nysd_451246.json b/tests/examples/pacer/docket_history_reports/nysd_451246.json index 3990d3fe3..bcf002674 100644 --- a/tests/examples/pacer/docket_history_reports/nysd_451246.json +++ b/tests/examples/pacer/docket_history_reports/nysd_451246.json @@ -1701,5 +1701,10 @@ } ], "docket_number": "1:15-cr-00867", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "RMB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nysd_468435.json b/tests/examples/pacer/docket_history_reports/nysd_468435.json index 94bcc2c65..405877e56 100644 --- a/tests/examples/pacer/docket_history_reports/nysd_468435.json +++ b/tests/examples/pacer/docket_history_reports/nysd_468435.json @@ -549,5 +549,10 @@ } ], "docket_number": "1:17-cv-00875", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "VM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nysd_475640.json b/tests/examples/pacer/docket_history_reports/nysd_475640.json index a63b17f3b..86d857418 100644 --- a/tests/examples/pacer/docket_history_reports/nysd_475640.json +++ b/tests/examples/pacer/docket_history_reports/nysd_475640.json @@ -234,5 +234,10 @@ } ], "docket_number": "1:17-cr-00350", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "KBF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nysd_475766.json b/tests/examples/pacer/docket_history_reports/nysd_475766.json index 3d7eb7ff9..e8ab08798 100644 --- a/tests/examples/pacer/docket_history_reports/nysd_475766.json +++ b/tests/examples/pacer/docket_history_reports/nysd_475766.json @@ -504,5 +504,10 @@ } ], "docket_number": "1:17-cr-00350", + "federal_defendant_number": "27", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "KBF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nysd_479771.json b/tests/examples/pacer/docket_history_reports/nysd_479771.json index 39f11b308..70528c373 100644 --- a/tests/examples/pacer/docket_history_reports/nysd_479771.json +++ b/tests/examples/pacer/docket_history_reports/nysd_479771.json @@ -225,5 +225,10 @@ } ], "docket_number": "1:17-cv-06555", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JPO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nysd_483953.json b/tests/examples/pacer/docket_history_reports/nysd_483953.json index ed69d848f..7d828493b 100644 --- a/tests/examples/pacer/docket_history_reports/nysd_483953.json +++ b/tests/examples/pacer/docket_history_reports/nysd_483953.json @@ -117,5 +117,10 @@ } ], "docket_number": "1:17-cv-08956", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AKH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/nysd_485885.json b/tests/examples/pacer/docket_history_reports/nysd_485885.json index 4d6b21c4a..8fbaa9dc5 100644 --- a/tests/examples/pacer/docket_history_reports/nysd_485885.json +++ b/tests/examples/pacer/docket_history_reports/nysd_485885.json @@ -45,5 +45,10 @@ } ], "docket_number": "1:17-cv-10085", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "VSB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ohsd_192487.json b/tests/examples/pacer/docket_history_reports/ohsd_192487.json index 9a42d76bf..d4b50b0f9 100644 --- a/tests/examples/pacer/docket_history_reports/ohsd_192487.json +++ b/tests/examples/pacer/docket_history_reports/ohsd_192487.json @@ -729,5 +729,10 @@ } ], "docket_number": "2:16-cr-00073", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "MHW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ohsd_196941.json b/tests/examples/pacer/docket_history_reports/ohsd_196941.json index 6d6cc17f6..2f3274a98 100644 --- a/tests/examples/pacer/docket_history_reports/ohsd_196941.json +++ b/tests/examples/pacer/docket_history_reports/ohsd_196941.json @@ -414,5 +414,10 @@ } ], "docket_number": "2:16-cv-00906", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MHW", + "federal_dn_judge_initials_referred": "EPD", + "federal_dn_office_code": "2", "referred_to_str": "Elizabeth Preston Deavers" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/ord_121926.json b/tests/examples/pacer/docket_history_reports/ord_121926.json index 762f504a6..f149d7446 100644 --- a/tests/examples/pacer/docket_history_reports/ord_121926.json +++ b/tests/examples/pacer/docket_history_reports/ord_121926.json @@ -603,5 +603,10 @@ } ], "docket_number": "3:15-cv-00866", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/paeb.json b/tests/examples/pacer/docket_history_reports/paeb.json index 7032bcacb..25e98e3bc 100644 --- a/tests/examples/pacer/docket_history_reports/paeb.json +++ b/tests/examples/pacer/docket_history_reports/paeb.json @@ -117,5 +117,10 @@ } ], "docket_number": "17-17064", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "elf", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/paeb_424893.json b/tests/examples/pacer/docket_history_reports/paeb_424893.json index 0eb4477c2..d879d17dd 100644 --- a/tests/examples/pacer/docket_history_reports/paeb_424893.json +++ b/tests/examples/pacer/docket_history_reports/paeb_424893.json @@ -909,5 +909,10 @@ } ], "docket_number": "12-20770", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "elf", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/paed_535229.json b/tests/examples/pacer/docket_history_reports/paed_535229.json index ed03fde72..0a95583e0 100644 --- a/tests/examples/pacer/docket_history_reports/paed_535229.json +++ b/tests/examples/pacer/docket_history_reports/paed_535229.json @@ -1935,5 +1935,10 @@ } ], "docket_number": "2:17-cv-04392", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MMB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/pamd_112754.json b/tests/examples/pacer/docket_history_reports/pamd_112754.json index e7c37bfd3..63ebb791a 100644 --- a/tests/examples/pacer/docket_history_reports/pamd_112754.json +++ b/tests/examples/pacer/docket_history_reports/pamd_112754.json @@ -207,5 +207,10 @@ } ], "docket_number": "1:17-cv-01344", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "YK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/pawd_239060.json b/tests/examples/pacer/docket_history_reports/pawd_239060.json index 1d279bb60..0219de629 100644 --- a/tests/examples/pacer/docket_history_reports/pawd_239060.json +++ b/tests/examples/pacer/docket_history_reports/pawd_239060.json @@ -432,5 +432,10 @@ } ], "docket_number": "2:17-cv-00842", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "YK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/rid_35202.json b/tests/examples/pacer/docket_history_reports/rid_35202.json index 559901be4..8aeadf148 100644 --- a/tests/examples/pacer/docket_history_reports/rid_35202.json +++ b/tests/examples/pacer/docket_history_reports/rid_35202.json @@ -333,5 +333,10 @@ } ], "docket_number": "1:13-cv-00442", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JJM", + "federal_dn_judge_initials_referred": "PAS", + "federal_dn_office_code": "1", "referred_to_str": "Patricia A. Sullivan" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/rid_43387.json b/tests/examples/pacer/docket_history_reports/rid_43387.json index 94a2414c5..0c17e7e99 100644 --- a/tests/examples/pacer/docket_history_reports/rid_43387.json +++ b/tests/examples/pacer/docket_history_reports/rid_43387.json @@ -72,5 +72,10 @@ } ], "docket_number": "1:17-cv-00522", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WES", + "federal_dn_judge_initials_referred": "PAS", + "federal_dn_office_code": "1", "referred_to_str": "Patricia A. Sullivan" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/scd_238034.json b/tests/examples/pacer/docket_history_reports/scd_238034.json index c06bd690d..06da27c4e 100644 --- a/tests/examples/pacer/docket_history_reports/scd_238034.json +++ b/tests/examples/pacer/docket_history_reports/scd_238034.json @@ -117,5 +117,10 @@ } ], "docket_number": "7:17-cv-02445", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "TMC", + "federal_dn_judge_initials_referred": "JDA", + "federal_dn_office_code": "7", "referred_to_str": "Jacquelyn D. Austin" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/txed_150129.json b/tests/examples/pacer/docket_history_reports/txed_150129.json index 33d5893f7..0ae98d3ae 100644 --- a/tests/examples/pacer/docket_history_reports/txed_150129.json +++ b/tests/examples/pacer/docket_history_reports/txed_150129.json @@ -369,5 +369,10 @@ } ], "docket_number": "6:14-cv-00089", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JRG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/txed_163924.json b/tests/examples/pacer/docket_history_reports/txed_163924.json index 634c28e36..1b71ecd38 100644 --- a/tests/examples/pacer/docket_history_reports/txed_163924.json +++ b/tests/examples/pacer/docket_history_reports/txed_163924.json @@ -846,5 +846,10 @@ } ], "docket_number": "6:15-cv-00961", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JRG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/txed_178838.json b/tests/examples/pacer/docket_history_reports/txed_178838.json index 476755035..72074e2bf 100644 --- a/tests/examples/pacer/docket_history_reports/txed_178838.json +++ b/tests/examples/pacer/docket_history_reports/txed_178838.json @@ -216,5 +216,10 @@ } ], "docket_number": "2:17-cv-00699", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JRG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/txnd_286784.json b/tests/examples/pacer/docket_history_reports/txnd_286784.json index 8f7d83b73..cc70d8cac 100644 --- a/tests/examples/pacer/docket_history_reports/txnd_286784.json +++ b/tests/examples/pacer/docket_history_reports/txnd_286784.json @@ -189,5 +189,10 @@ } ], "docket_number": "3:17-cv-00971", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "N", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/txnd_297356.json b/tests/examples/pacer/docket_history_reports/txnd_297356.json index 28d04b530..5d2100eb2 100644 --- a/tests/examples/pacer/docket_history_reports/txnd_297356.json +++ b/tests/examples/pacer/docket_history_reports/txnd_297356.json @@ -45,5 +45,10 @@ } ], "docket_number": "3:17-cr-00678", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "M", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/utd_107621.json b/tests/examples/pacer/docket_history_reports/utd_107621.json index cbfeabf08..88c034328 100644 --- a/tests/examples/pacer/docket_history_reports/utd_107621.json +++ b/tests/examples/pacer/docket_history_reports/utd_107621.json @@ -45,5 +45,10 @@ } ], "docket_number": "2:17-mc-01184", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "JNP", + "federal_dn_judge_initials_referred": "BCW", + "federal_dn_office_code": "2", "referred_to_str": "Brooke C. Wells" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/vaed_275314.json b/tests/examples/pacer/docket_history_reports/vaed_275314.json index 215ef9c4e..47912d071 100644 --- a/tests/examples/pacer/docket_history_reports/vaed_275314.json +++ b/tests/examples/pacer/docket_history_reports/vaed_275314.json @@ -1953,5 +1953,10 @@ } ], "docket_number": "1:12-cr-00003", + "federal_defendant_number": "2", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "LO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/vaed_304697.json b/tests/examples/pacer/docket_history_reports/vaed_304697.json index 7742c830b..f0b17b8e9 100644 --- a/tests/examples/pacer/docket_history_reports/vaed_304697.json +++ b/tests/examples/pacer/docket_history_reports/vaed_304697.json @@ -648,5 +648,10 @@ } ], "docket_number": "1:14-cv-00374", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LO", + "federal_dn_judge_initials_referred": "IDD", + "federal_dn_office_code": "1", "referred_to_str": "Ivan D. Davis" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/vaed_362374.json b/tests/examples/pacer/docket_history_reports/vaed_362374.json index 1c3a82e4f..7f65269b2 100644 --- a/tests/examples/pacer/docket_history_reports/vaed_362374.json +++ b/tests/examples/pacer/docket_history_reports/vaed_362374.json @@ -729,5 +729,10 @@ } ], "docket_number": "1:17-cv-00401", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "TSE", + "federal_dn_judge_initials_referred": "MSN", + "federal_dn_office_code": "1", "referred_to_str": "Michael S. Nachmanoff" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/wawd_245134.json b/tests/examples/pacer/docket_history_reports/wawd_245134.json index 952228cb7..2172f167f 100644 --- a/tests/examples/pacer/docket_history_reports/wawd_245134.json +++ b/tests/examples/pacer/docket_history_reports/wawd_245134.json @@ -216,5 +216,10 @@ } ], "docket_number": "2:17-cv-00694", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RSL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/wawd_247240.json b/tests/examples/pacer/docket_history_reports/wawd_247240.json index 38807357d..cd4510d77 100644 --- a/tests/examples/pacer/docket_history_reports/wawd_247240.json +++ b/tests/examples/pacer/docket_history_reports/wawd_247240.json @@ -477,5 +477,10 @@ } ], "docket_number": "2:17-cv-00990", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "TSZ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "referred_to_str": "" } \ No newline at end of file diff --git a/tests/examples/pacer/docket_history_reports/wvnd_35609.json b/tests/examples/pacer/docket_history_reports/wvnd_35609.json index 73cf8d25c..20ca8d7aa 100644 --- a/tests/examples/pacer/docket_history_reports/wvnd_35609.json +++ b/tests/examples/pacer/docket_history_reports/wvnd_35609.json @@ -486,5 +486,10 @@ } ], "docket_number": "1:14-cv-00215", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JPB", + "federal_dn_judge_initials_referred": "JES", + "federal_dn_office_code": "1", "referred_to_str": "James E. Seibert" } \ No newline at end of file diff --git a/tests/examples/pacer/dockets/acms/ca2_23-7222.acms_json b/tests/examples/pacer/dockets/acms/ca2_23-7222.acms_json new file mode 100644 index 000000000..6c5db03b1 --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca2_23-7222.acms_json @@ -0,0 +1,85 @@ +{ + "caseDetails": { + "caseId": "9f5ae37f-c44e-4194-b075-3f8f028559c4", + "caseNumber": "23-7222", + "name": "United States of America v. Raji", + "caseOpened": "2023-10-02", + "aNumber": null, + "receivedDate": "2023-10-02T10:55:11Z", + "partyAttorneyList": "
    UNITED STATES OF AMERICA
        AppelleeUSA,
    Won S. Shin, Assistant U.S. Attorney
    Email: won.shin@usdoj.gov
    [US Attorney]
    United States Attorney's Office for the Southern District of New York
    One Saint Andrew's Plaza
    New York, NY 10007
    MUSTAPHA RAJI
        AKA Sealed Defendant 1,
        Appellant,
    Jeremy Schneider, -
    Direct: 212-571-5500
    Email: jschneider@rssslaaw.com
    [CJA Appointment]
    Rothman, Schneider, Soloway & Stern, LLP
    100 Lafayette Street
    Suite 501
    New York, NY 10013
    ", + "shortCaption": "United States of America,
    \\n
    \\n                     Appellee,
    \\n
    \\n   v.
    \\n
    \\nMustapha Raji,  AKA Sealed Defendant 1,
    \\n
    \\n                     Defendant - Appellant.\\n\\n", + "court": { + "name": "S.D.N.Y . (NEW YORK CITY)", + "identifier": "S.D.N.Y. (NEW YORK CITY)" + }, + "caseType": "Criminal", + "caseSubType": "Direct Criminal", + "caseSubSubType": null, + "districtCourtName": null, + "feeStatus": "IFP Granted", + "byteCount": 1325 + }, + "docketInfo": { + "isCaseSealed": false, + "isUserCaseParticipant": false, + "byteCount": 544, + "docketEntries": [ + { + "endDate": "2023-09-29", + "endDateFormatted": "09/29/2023", + "entryNumber": 1, + "docketEntryText": "

    NOTICE OF CRIMINAL APPEAL, with district court docket, on behalf of Appellant Mustapha Raji, FILED. [Entered: 10/02/2023 11:17 AM]

    ", + "docketEntryId": "46de54cd-3561-ee11-be6e-001dd804e087", + "createdOn": "2023-10-02T15:10:22Z", + "documentCount": 1, + "pageCount": 18, + "fileSize": 142, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-09-29", + "endDateFormatted": "09/29/2023", + "entryNumber": 2, + "docketEntryText": "

    DISTRICT COURT JUDGMENT, dated 09/19/2023, RECEIVED. [Entered: 10/02/2023 11:20 AM]

    ", + "docketEntryId": "0d24550b-3761-ee11-be6e-001dd804e087", + "createdOn": "2023-10-02T15:19:17Z", + "documentCount": 1, + "pageCount": 8, + "fileSize": 319, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-02", + "endDateFormatted": "10/02/2023", + "entryNumber": 3, + "docketEntryText": "

    NOTICE OF CRIMINAL APPEAL, on behalf of Appellant Mustapha Raji, OPENED. [Entered: 10/02/2023 11:23 AM]

    ", + "docketEntryId": "b4cd2647-3761-ee11-be6e-001dd804e087", + "createdOn": "2023-10-02T15:21:02Z", + "documentCount": 2, + "pageCount": 20, + "fileSize": 275, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-02", + "endDateFormatted": "10/02/2023", + "entryNumber": 4, + "docketEntryText": "

    NOTICE OF APPEARANCE AS SUBSTITUTE COUNSEL/ADDITIONAL COUNSEL, on behalf of United States of America, FILED. [Entered: 10/02/2023 12:51 PM]

    ", + "docketEntryId": "167e8e98-4361-ee11-be6e-001dd804e4bd", + "createdOn": "2023-10-02T16:49:05Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 90, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + } + ] + } +} diff --git a/tests/examples/pacer/dockets/acms/ca2_23-7222.json b/tests/examples/pacer/dockets/acms/ca2_23-7222.json new file mode 100644 index 000000000..4c709f668 --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca2_23-7222.json @@ -0,0 +1,83 @@ +{ + "appeal_from": "S.D.N.Y . (NEW YORK CITY)", + "case_name": "United States of America v. Raji", + "case_type_information": "Criminal, Direct Criminal", + "court_id": "ca2", + "date_filed": "2023-10-02", + "docket_entries": [ + { + "date_entered": "2023-10-02T11:17:00", + "date_filed": "2023-10-02T11:17:00", + "description": "NOTICE OF CRIMINAL APPEAL, with district court docket, on behalf of Appellant Mustapha Raji, FILED. [Entered: 10/02/2023 11:17 AM]", + "description_html": "

    NOTICE OF CRIMINAL APPEAL, with district court docket, on behalf of Appellant Mustapha Raji, FILED. [Entered: 10/02/2023 11:17 AM]

    ", + "document_number": 1, + "pacer_doc_id": "46de54cd-3561-ee11-be6e-001dd804e087", + "page_count": 18 + }, + { + "date_entered": "2023-10-02T11:20:00", + "date_filed": "2023-10-02T11:20:00", + "description": "DISTRICT COURT JUDGMENT, dated 09/19/2023, RECEIVED. [Entered: 10/02/2023 11:20 AM]", + "description_html": "

    DISTRICT COURT JUDGMENT, dated 09/19/2023, RECEIVED. [Entered: 10/02/2023 11:20 AM]

    ", + "document_number": 2, + "pacer_doc_id": "0d24550b-3761-ee11-be6e-001dd804e087", + "page_count": 8 + }, + { + "date_entered": "2023-10-02T11:23:00", + "date_filed": "2023-10-02T11:23:00", + "description": "NOTICE OF CRIMINAL APPEAL, on behalf of Appellant Mustapha Raji, OPENED. [Entered: 10/02/2023 11:23 AM]", + "description_html": "

    NOTICE OF CRIMINAL APPEAL, on behalf of Appellant Mustapha Raji, OPENED. [Entered: 10/02/2023 11:23 AM]

    ", + "document_number": 3, + "pacer_doc_id": "b4cd2647-3761-ee11-be6e-001dd804e087", + "page_count": 20 + }, + { + "date_entered": "2023-10-02T12:51:00", + "date_filed": "2023-10-02T12:51:00", + "description": "NOTICE OF APPEARANCE AS SUBSTITUTE COUNSEL/ADDITIONAL COUNSEL, on behalf of United States of America, FILED. [Entered: 10/02/2023 12:51 PM]", + "description_html": "

    NOTICE OF APPEARANCE AS SUBSTITUTE COUNSEL/ADDITIONAL COUNSEL, on behalf of United States of America, FILED. [Entered: 10/02/2023 12:51 PM]

    ", + "document_number": 4, + "pacer_doc_id": "167e8e98-4361-ee11-be6e-001dd804e4bd", + "page_count": 1 + } + ], + "docket_number": "23-7222", + "fee_status": "IFP Granted", + "originating_court_information": { + "identifier": "S.D.N.Y. (NEW YORK CITY)", + "name": "S.D.N.Y . (NEW YORK CITY)" + }, + "pacer_case_id": "9f5ae37f-c44e-4194-b075-3f8f028559c4", + "parties": [ + { + "attorneys": [ + { + "contact": "Email: won.shin@usdoj.gov\nUnited States Attorney's Office for the Southern District of New York\nOne Saint Andrew's Plaza\nNew York, NY 10007", + "name": "Won S. Shin, Assistant U.S. Attorney", + "roles": [ + "US Attorney" + ] + } + ], + "name": "UNITED STATES OF AMERICA", + "type": "AppelleeUSA" + }, + { + "attorneys": [ + { + "contact": "Direct: 212-571-5500\nEmail: jschneider@rssslaaw.com\nRothman, Schneider, Soloway & Stern, LLP\n100 Lafayette Street\nSuite 501\nNew York, NY 10013", + "name": "Jeremy Schneider, -", + "roles": [ + "CJA Appointment" + ] + } + ], + "name": "MUSTAPHA RAJI", + "type": "Appellant", + "unparsed": [ + "\u00a0\u00a0\u00a0\u00a0AKA Sealed Defendant 1, " + ] + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/dockets/acms/ca2_23-7246.acms_json b/tests/examples/pacer/dockets/acms/ca2_23-7246.acms_json new file mode 100644 index 000000000..dd096b4d8 --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca2_23-7246.acms_json @@ -0,0 +1,323 @@ +{ + "caseDetails": { + "caseId": "1e399dc7-2462-ee11-a81c-001dd809b0dc", + "caseNumber": "23-7246", + "name": "Ascent Pharmaceuticals, Inc. v. United States Drug Enforcement Administration", + "caseOpened": "2023-10-03", + "aNumber": null, + "receivedDate": "2023-10-03T15:59:24Z", + "partyAttorneyList": "
    ASCENT PHARMACEUTICALS, INC.
        Petitioner
    James A. Walden, -
    Direct: 212-335-2031
    [Retained]
    Walden Macht Haran & Williams LLP
    250 Vesey Street
    27th Floor
    New York, NY 10281
    UNITED STATES DRUG ENFORCEMENT ADMINISTRATION
        Respondent
    Mark B. Stern, -
    [US Attorney]
    United States Department of Justice
    Civil Division, Office of Immigration Litigation
    950 Pennsylvania Avenue, NW
    Washington, DC 20530
    Urja Mittal, -
    Direct: 202-353-4895
    [US Attorney]
    United States Department of Justice
    Civil Division, Appellate Staff
    950 Pennsylvania Avenue, NW
    Washington, DC 20530

    UNITED STATES DEPARTMENT OF JUSTICE
    Terminated: 10/06/2023
        Respondent
    Urja Mittal, -
    Terminated: 10/06/2023
    Direct: 202-353-4895
    [US Attorney]
    United States Department of Justice
    Civil Division, Appellate Staff
    950 Pennsylvania Avenue, NW
    Washington, DC 20530
    Mark B. Stern, -
    Terminated: 10/06/2023
    [US Attorney]
    United States Department of Justice
    Civil Division, Office of Immigration Litigation
    950 Pennsylvania Avenue, NW
    Washington, DC 20530
    Benjamin H. Torrance, Assistant U.S. Attorney
    Terminated: 10/05/2023
    [US Attorney]
    United States Attorney's Office for the Southern District of New York
    86 Chambers Street
    New York, NY 10007
    Lena D Watkins, Trial Attorney
    Terminated: 10/05/2023
    Direct: 202-514-8713
    [US Attorney]
    United States Department of Justice
    CRM/Narc. & Dang. Drug. Sec.
    145 N Street, NE
    Second Floor, East W
    Washington, DC 20530
    ", + "shortCaption": "Ascent Pharmaceuticals, Inc.,
    \r\n
    \r\n                     Petitioner - Petitioner,
    \r\n
    \r\n   v.
    \r\n
    \r\nUnited States Drug Enforcement Administration,
    \r\n
    \r\n                     Respondent.", + "court": { + "name": "Department of Justice", + "identifier": "DOJ" + }, + "caseType": "Agency", + "caseSubType": "Non-Immigration Petition for Review", + "caseSubSubType": null, + "districtCourtName": null, + "feeStatus": "Paid", + "byteCount": 3067 + }, + "docketInfo": { + "isCaseSealed": false, + "isUserCaseParticipant": false, + "byteCount": 3424, + "docketEntries": [ + { + "endDate": "2023-10-03", + "endDateFormatted": "10/03/2023", + "entryNumber": 1, + "docketEntryText": "

    PETITION FOR REVIEW OF AGENCY ORDER, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. [Entered: 10/03/2023 05:45 PM]

    ", + "docketEntryId": "a3da328e-2562-ee11-be6e-001dd804e087", + "createdOn": "2023-10-03T19:46:43Z", + "documentCount": 1, + "pageCount": 5, + "fileSize": 191, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-03", + "endDateFormatted": "10/03/2023", + "entryNumber": 2, + "docketEntryText": "

    AGENCY DECISION AND ORDER, dated 09/29/2023, RECEIVED. [Entered: 10/03/2023 05:45 PM]

    ", + "docketEntryId": "8a8880e2-2562-ee11-be6e-001dd804e3e2", + "createdOn": "2023-10-03T19:48:59Z", + "documentCount": 1, + "pageCount": 2, + "fileSize": 153, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-03", + "endDateFormatted": "10/03/2023", + "entryNumber": 3, + "docketEntryText": "

    PETITION FOR REVIEW OF AGENCY ORDER, on behalf of Petitioner Ascent Pharmaceuticals, Inc., OPENED. [Entered: 10/03/2023 05:50 PM]

    ", + "docketEntryId": "00fa4459-3662-ee11-be6e-001dd804e4bd", + "createdOn": "2023-10-03T21:46:47Z", + "documentCount": 3, + "pageCount": 9, + "fileSize": 459, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-03", + "endDateFormatted": "10/03/2023", + "entryNumber": 4, + "docketEntryText": "

    PAYMENT OF DOCKETING FEE, on behalf of Petitioner Ascent Pharmaceuticals, Inc., USCA receipt # A02-2142-ACMS, FILED. [Entered: 10/03/2023 05:52 PM]

    ", + "docketEntryId": "331c5dfc-3662-ee11-be6e-001dd804e4bd", + "createdOn": "2023-10-03T21:51:25Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-03", + "endDateFormatted": "10/03/2023", + "entryNumber": 5, + "docketEntryText": "

    PETITION FOR REVIEW OF AGENCY ORDER, SERVED. [Entered: 10/03/2023 06:05 PM]

    ", + "docketEntryId": "8f44ae28-3862-ee11-be6e-001dd804e4bd", + "createdOn": "2023-10-03T21:59:45Z", + "documentCount": 3, + "pageCount": 8, + "fileSize": 422, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-03", + "endDateFormatted": "10/03/2023", + "entryNumber": 6, + "docketEntryText": "

    NOTICE OF APPEARANCE AS SUBSTITUTE COUNSEL/ADDITIONAL COUNSEL, on behalf of Ascent Pharmaceuticals, Inc., FILED. [Entered: 10/03/2023 08:20 PM]

    ", + "docketEntryId": "c3fd77d1-4962-ee11-be6e-001dd804ed2e", + "createdOn": "2023-10-04T00:06:10Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-04", + "endDateFormatted": "10/04/2023", + "entryNumber": 13, + "docketEntryText": "

    NOTICE OF APPEARANCE AS SUBSTITUTE COUNSEL/ADDITIONAL COUNSEL, on behalf of United States Department of Justice, FILED. [Entered: 10/04/2023 03:43 PM]

    ", + "docketEntryId": "1ab2e2f7-ed62-ee11-be6e-001dd804e087", + "createdOn": "2023-10-04T19:41:20Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 457, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-04", + "endDateFormatted": "10/04/2023", + "entryNumber": 9, + "docketEntryText": "

    DEFECTIVE DOCUMENT, notice of appearance, at docket entry 6, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. [Entered: 10/04/2023 11:32 AM]

    ", + "docketEntryId": "8f4a8c5c-ca62-ee11-be6e-001dd804e333", + "createdOn": "2023-10-04T15:26:24Z", + "documentCount": 1, + "pageCount": 2, + "fileSize": 161, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-04", + "endDateFormatted": "10/04/2023", + "entryNumber": 10, + "docketEntryText": "

    CURED DEFECTIVE DOCUMENT, Acknowledgment Notice of Appearance Form, at entry 7, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. [Entered: 10/04/2023 11:33 AM]

    ", + "docketEntryId": "fb97243b-cb62-ee11-be6e-001dd804e333", + "createdOn": "2023-10-04T15:32:31Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-04", + "endDateFormatted": "10/04/2023", + "entryNumber": 14, + "docketEntryText": "

    NOTICE OF APPEARANCE AS SUBSTITUTE COUNSEL/ADDITIONAL COUNSEL, on behalf of United States Department of Justice, FILED. [Entered: 10/04/2023 03:56 PM]

    ", + "docketEntryId": "b3d7ffc2-ef62-ee11-be6e-001dd804e333", + "createdOn": "2023-10-04T19:54:03Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 226, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-04", + "endDateFormatted": "10/04/2023", + "entryNumber": 11, + "docketEntryText": "

    FORM C-A, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. Service date 10/04/2023 by ACMS. [Entered: 10/04/2023 11:49 AM]

    ", + "docketEntryId": "d27f2592-cc62-ee11-be6e-001dd804e3e2", + "createdOn": "2023-10-04T15:42:12Z", + "documentCount": 1, + "pageCount": 8, + "fileSize": 363, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-04", + "endDateFormatted": "10/04/2023", + "entryNumber": 12, + "docketEntryText": "

    ORAL ARGUMENT STATEMENT LR 34.1 (a), on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. Service date 10/04/2023 by ACMS. [Entered: 10/04/2023 11:54 AM]

    ", + "docketEntryId": "8d3fdcf5-cd62-ee11-be6e-001dd804e4bd", + "createdOn": "2023-10-04T15:52:06Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 102, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-04", + "endDateFormatted": "10/04/2023", + "entryNumber": 8, + "docketEntryText": "

    MOTION, for oral argument, for___relief, for injunction, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. Service date 10/04/2023 by ACMS. [Entered: 10/04/2023 10:53 AM]

    ", + "docketEntryId": "d8827942-c562-ee11-be6e-001dd804e890", + "createdOn": "2023-10-04T14:49:47Z", + "documentCount": 1, + "pageCount": 169, + "fileSize": 59601, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-04", + "endDateFormatted": "10/04/2023", + "entryNumber": 7, + "docketEntryText": "

    ACKNOWLEDGMENT AND NOTICE OF APPEARANCE, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. Service date 10/04/2023 by ACMS. [Entered: 10/04/2023 09:21 AM]

    ", + "docketEntryId": "93545346-b762-ee11-be6e-001dd804ed2e", + "createdOn": "2023-10-04T13:09:50Z", + "documentCount": 1, + "pageCount": 2, + "fileSize": 152, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-05", + "endDateFormatted": "10/05/2023", + "entryNumber": 15, + "docketEntryText": "

    ATTORNEY, Urja Mittal,  in place of attorney Benjamin Torrance, SUBSTITUTED. [Entered: 10/05/2023 11:31 AM]

    ", + "docketEntryId": "fefceb6d-9363-ee11-be6e-001dd804e3e2", + "createdOn": "2023-10-05T15:25:37Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-05", + "endDateFormatted": "10/05/2023", + "entryNumber": 16, + "docketEntryText": "

    ATTORNEY, Benjamin H. Torrance for Respondent United States Department of Justice, TERMINATED. [Entered: 10/05/2023 11:39 AM]

    ", + "docketEntryId": "1280970d-9563-ee11-be6e-001dd804e3e2", + "createdOn": "2023-10-05T15:37:19Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-05", + "endDateFormatted": "10/05/2023", + "entryNumber": 17, + "docketEntryText": "

    ATTORNEY, Mark B. Stern in place of attorney Lena Watkins, SUBSTITUTED. [Entered: 10/05/2023 11:46 AM]

    ", + "docketEntryId": "ba41eac1-9563-ee11-be6e-001dd804e3e2", + "createdOn": "2023-10-05T15:42:23Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-05", + "endDateFormatted": "10/05/2023", + "entryNumber": 18, + "docketEntryText": "

    ATTORNEY, Lena Watkins, for Respondent United States Department of Justice, TERMINATED. [Entered: 10/05/2023 11:51 AM]

    ", + "docketEntryId": "830356c5-9663-ee11-be6e-001dd804e3e2", + "createdOn": "2023-10-05T15:49:34Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-05", + "endDateFormatted": "10/05/2023", + "entryNumber": 19, + "docketEntryText": "

    NEW PARTY, Respondent United States Drug Enforcement Administration for United States Department of Justice, SUBSTITUTED. [Entered: 10/05/2023 03:56 PM] [Edited: 10/06/2023 10:51 AM]

    ", + "docketEntryId": "a6a6d3d6-b863-ee11-be6e-001dd804ed2e", + "createdOn": "2023-10-05T19:53:24Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-06", + "endDateFormatted": "10/06/2023", + "entryNumber": 20, + "docketEntryText": "

    RESPONDENT United States Department of Justice, TERMINATED. [Entered: 10/06/2023 10:54 AM] [Edited: 10/06/2023 11:03 AM]

    ", + "docketEntryId": "ce2f85ed-5764-ee11-be6e-001dd804e4bd", + "createdOn": "2023-10-06T14:52:19Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-10-06", + "endDateFormatted": "10/06/2023", + "entryNumber": 21, + "docketEntryText": "

    CAPTION, reflecting the United States Drug Enforcement Administration as the Respondent, AMENDED. [Entered: 10/06/2023 01:37 PM]

    ", + "docketEntryId": "c5469315-6e64-ee11-be6e-001dd804e4bd", + "createdOn": "2023-10-06T17:30:48Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 147, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + } + ] + } +} diff --git a/tests/examples/pacer/dockets/acms/ca2_23-7246.json b/tests/examples/pacer/dockets/acms/ca2_23-7246.json new file mode 100644 index 000000000..a677cdfd0 --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca2_23-7246.json @@ -0,0 +1,275 @@ +{ + "appeal_from": "Department of Justice", + "case_name": "Ascent Pharmaceuticals, Inc. v. United States Drug Enforcement Administration", + "case_type_information": "Agency, Non-Immigration Petition for Review", + "court_id": "ca2", + "date_filed": "2023-10-03", + "docket_entries": [ + { + "date_entered": "2023-10-03T17:45:00", + "date_filed": "2023-10-03T17:45:00", + "description": "PETITION FOR REVIEW OF AGENCY ORDER, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. [Entered: 10/03/2023 05:45 PM]", + "description_html": "

    PETITION FOR REVIEW OF AGENCY ORDER, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. [Entered: 10/03/2023 05:45 PM]

    ", + "document_number": 1, + "pacer_doc_id": "a3da328e-2562-ee11-be6e-001dd804e087", + "page_count": 5 + }, + { + "date_entered": "2023-10-03T17:45:00", + "date_filed": "2023-10-03T17:45:00", + "description": "AGENCY DECISION AND ORDER,\u00a0dated 09/29/2023, RECEIVED. [Entered: 10/03/2023 05:45 PM]", + "description_html": "

    AGENCY DECISION AND ORDER, dated 09/29/2023, RECEIVED. [Entered: 10/03/2023 05:45 PM]

    ", + "document_number": 2, + "pacer_doc_id": "8a8880e2-2562-ee11-be6e-001dd804e3e2", + "page_count": 2 + }, + { + "date_entered": "2023-10-03T17:50:00", + "date_filed": "2023-10-03T17:50:00", + "description": "PETITION FOR REVIEW OF AGENCY ORDER, on behalf of Petitioner Ascent Pharmaceuticals, Inc., OPENED. [Entered: 10/03/2023 05:50 PM]", + "description_html": "

    PETITION FOR REVIEW OF AGENCY ORDER, on behalf of Petitioner Ascent Pharmaceuticals, Inc., OPENED. [Entered: 10/03/2023 05:50 PM]

    ", + "document_number": 3, + "pacer_doc_id": "00fa4459-3662-ee11-be6e-001dd804e4bd", + "page_count": 9 + }, + { + "date_entered": "2023-10-03T17:52:00", + "date_filed": "2023-10-03T17:52:00", + "description": "PAYMENT OF DOCKETING FEE, on behalf of Petitioner Ascent Pharmaceuticals, Inc., USCA receipt # A02-2142-ACMS, FILED. [Entered: 10/03/2023 05:52 PM]", + "description_html": "

    PAYMENT OF DOCKETING FEE, on behalf of Petitioner Ascent Pharmaceuticals, Inc., USCA receipt # A02-2142-ACMS, FILED. [Entered: 10/03/2023 05:52 PM]

    ", + "document_number": 4, + "pacer_doc_id": "331c5dfc-3662-ee11-be6e-001dd804e4bd", + "page_count": 0 + }, + { + "date_entered": "2023-10-03T18:05:00", + "date_filed": "2023-10-03T18:05:00", + "description": "PETITION FOR REVIEW\u00a0OF AGENCY ORDER, SERVED. [Entered: 10/03/2023 06:05 PM]", + "description_html": "

    PETITION FOR REVIEW OF AGENCY ORDER, SERVED. [Entered: 10/03/2023 06:05 PM]

    ", + "document_number": 5, + "pacer_doc_id": "8f44ae28-3862-ee11-be6e-001dd804e4bd", + "page_count": 8 + }, + { + "date_entered": "2023-10-03T20:20:00", + "date_filed": "2023-10-03T20:20:00", + "description": "NOTICE OF APPEARANCE AS SUBSTITUTE COUNSEL/ADDITIONAL COUNSEL, on behalf of Ascent Pharmaceuticals, Inc., FILED. [Entered: 10/03/2023 08:20 PM]", + "description_html": "

    NOTICE OF APPEARANCE AS SUBSTITUTE COUNSEL/ADDITIONAL COUNSEL, on behalf of Ascent Pharmaceuticals, Inc., FILED. [Entered: 10/03/2023 08:20 PM]

    ", + "document_number": 6, + "pacer_doc_id": "c3fd77d1-4962-ee11-be6e-001dd804ed2e", + "page_count": 0 + }, + { + "date_entered": "2023-10-04T15:43:00", + "date_filed": "2023-10-04T15:43:00", + "description": "NOTICE OF APPEARANCE AS SUBSTITUTE COUNSEL/ADDITIONAL COUNSEL, on behalf of United States Department of Justice, FILED. [Entered: 10/04/2023 03:43 PM]", + "description_html": "

    NOTICE OF APPEARANCE AS SUBSTITUTE COUNSEL/ADDITIONAL COUNSEL, on behalf of United States Department of Justice, FILED. [Entered: 10/04/2023 03:43 PM]

    ", + "document_number": 13, + "pacer_doc_id": "1ab2e2f7-ed62-ee11-be6e-001dd804e087", + "page_count": 1 + }, + { + "date_entered": "2023-10-04T11:32:00", + "date_filed": "2023-10-04T11:32:00", + "description": "DEFECTIVE DOCUMENT, notice of appearance, at docket entry 6, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. [Entered: 10/04/2023 11:32 AM]", + "description_html": "

    DEFECTIVE DOCUMENT, notice of appearance, at docket entry 6, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. [Entered: 10/04/2023 11:32 AM]

    ", + "document_number": 9, + "pacer_doc_id": "8f4a8c5c-ca62-ee11-be6e-001dd804e333", + "page_count": 2 + }, + { + "date_entered": "2023-10-04T11:33:00", + "date_filed": "2023-10-04T11:33:00", + "description": "CURED DEFECTIVE DOCUMENT, Acknowledgment Notice of Appearance Form, at entry 7, on behalf of\u00a0Petitioner Ascent Pharmaceuticals, Inc., FILED. [Entered: 10/04/2023 11:33 AM]", + "description_html": "

    CURED DEFECTIVE DOCUMENT, Acknowledgment Notice of Appearance Form, at entry 7, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. [Entered: 10/04/2023 11:33 AM]

    ", + "document_number": 10, + "pacer_doc_id": "fb97243b-cb62-ee11-be6e-001dd804e333", + "page_count": 0 + }, + { + "date_entered": "2023-10-04T15:56:00", + "date_filed": "2023-10-04T15:56:00", + "description": "NOTICE OF APPEARANCE AS SUBSTITUTE COUNSEL/ADDITIONAL COUNSEL, on behalf of United States Department of Justice, FILED. [Entered: 10/04/2023 03:56 PM]", + "description_html": "

    NOTICE OF APPEARANCE AS SUBSTITUTE COUNSEL/ADDITIONAL COUNSEL, on behalf of United States Department of Justice, FILED. [Entered: 10/04/2023 03:56 PM]

    ", + "document_number": 14, + "pacer_doc_id": "b3d7ffc2-ef62-ee11-be6e-001dd804e333", + "page_count": 1 + }, + { + "date_entered": "2023-10-04T11:49:00", + "date_filed": "2023-10-04T11:49:00", + "description": "FORM C-A, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED.\u00a0Service date 10/04/2023 by ACMS. [Entered: 10/04/2023 11:49 AM]", + "description_html": "

    FORM C-A, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. Service date 10/04/2023 by ACMS. [Entered: 10/04/2023 11:49 AM]

    ", + "document_number": 11, + "pacer_doc_id": "d27f2592-cc62-ee11-be6e-001dd804e3e2", + "page_count": 8 + }, + { + "date_entered": "2023-10-04T11:54:00", + "date_filed": "2023-10-04T11:54:00", + "description": "ORAL ARGUMENT STATEMENT LR 34.1 (a), on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED.\u00a0Service date 10/04/2023 by ACMS. [Entered: 10/04/2023 11:54 AM]", + "description_html": "

    ORAL ARGUMENT STATEMENT LR 34.1 (a), on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. Service date 10/04/2023 by ACMS. [Entered: 10/04/2023 11:54 AM]

    ", + "document_number": 12, + "pacer_doc_id": "8d3fdcf5-cd62-ee11-be6e-001dd804e4bd", + "page_count": 1 + }, + { + "date_entered": "2023-10-04T10:53:00", + "date_filed": "2023-10-04T10:53:00", + "description": "MOTION, for oral argument, for___relief, for injunction, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED.\u00a0Service date 10/04/2023 by ACMS. [Entered: 10/04/2023 10:53 AM]", + "description_html": "

    MOTION, for oral argument, for___relief, for injunction, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. Service date 10/04/2023 by ACMS. [Entered: 10/04/2023 10:53 AM]

    ", + "document_number": 8, + "pacer_doc_id": "d8827942-c562-ee11-be6e-001dd804e890", + "page_count": 169 + }, + { + "date_entered": "2023-10-04T09:21:00", + "date_filed": "2023-10-04T09:21:00", + "description": "ACKNOWLEDGMENT AND NOTICE OF APPEARANCE, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED.\u00a0Service date 10/04/2023 by ACMS. [Entered: 10/04/2023 09:21 AM]", + "description_html": "

    ACKNOWLEDGMENT AND NOTICE OF APPEARANCE, on behalf of Petitioner Ascent Pharmaceuticals, Inc., FILED. Service date 10/04/2023 by ACMS. [Entered: 10/04/2023 09:21 AM]

    ", + "document_number": 7, + "pacer_doc_id": "93545346-b762-ee11-be6e-001dd804ed2e", + "page_count": 2 + }, + { + "date_entered": "2023-10-05T11:31:00", + "date_filed": "2023-10-05T11:31:00", + "description": "ATTORNEY,\u00a0Urja Mittal,\u00a0\u00a0in place of attorney Benjamin Torrance, SUBSTITUTED. [Entered: 10/05/2023 11:31 AM]", + "description_html": "

    ATTORNEY, Urja Mittal,  in place of attorney Benjamin Torrance, SUBSTITUTED. [Entered: 10/05/2023 11:31 AM]

    ", + "document_number": 15, + "pacer_doc_id": "fefceb6d-9363-ee11-be6e-001dd804e3e2", + "page_count": 0 + }, + { + "date_entered": "2023-10-05T11:39:00", + "date_filed": "2023-10-05T11:39:00", + "description": "ATTORNEY, Benjamin H. Torrance for Respondent United States Department of Justice, TERMINATED. [Entered: 10/05/2023 11:39 AM]", + "description_html": "

    ATTORNEY, Benjamin H. Torrance for Respondent United States Department of Justice, TERMINATED. [Entered: 10/05/2023 11:39 AM]

    ", + "document_number": 16, + "pacer_doc_id": "1280970d-9563-ee11-be6e-001dd804e3e2", + "page_count": 0 + }, + { + "date_entered": "2023-10-05T11:46:00", + "date_filed": "2023-10-05T11:46:00", + "description": "ATTORNEY,\u00a0Mark B. Stern in place of attorney Lena Watkins, SUBSTITUTED. [Entered: 10/05/2023 11:46 AM]", + "description_html": "

    ATTORNEY, Mark B. Stern in place of attorney Lena Watkins, SUBSTITUTED. [Entered: 10/05/2023 11:46 AM]

    ", + "document_number": 17, + "pacer_doc_id": "ba41eac1-9563-ee11-be6e-001dd804e3e2", + "page_count": 0 + }, + { + "date_entered": "2023-10-05T11:51:00", + "date_filed": "2023-10-05T11:51:00", + "description": "ATTORNEY, Lena Watkins, for Respondent United States Department of Justice,\u00a0TERMINATED. [Entered: 10/05/2023 11:51 AM]", + "description_html": "

    ATTORNEY, Lena Watkins, for Respondent United States Department of Justice, TERMINATED. [Entered: 10/05/2023 11:51 AM]

    ", + "document_number": 18, + "pacer_doc_id": "830356c5-9663-ee11-be6e-001dd804e3e2", + "page_count": 0 + }, + { + "date_entered": "2023-10-05T15:56:00", + "date_filed": "2023-10-05T15:56:00", + "description": "NEW PARTY, Respondent United States Drug Enforcement Administration for United States Department of Justice, SUBSTITUTED. [Entered: 10/05/2023 03:56 PM] [Edited: 10/06/2023 10:51 AM]", + "description_html": "

    NEW PARTY, Respondent United States Drug Enforcement Administration for United States Department of Justice, SUBSTITUTED. [Entered: 10/05/2023 03:56 PM] [Edited: 10/06/2023 10:51 AM]

    ", + "document_number": 19, + "pacer_doc_id": "a6a6d3d6-b863-ee11-be6e-001dd804ed2e", + "page_count": 0 + }, + { + "date_entered": "2023-10-06T10:54:00", + "date_filed": "2023-10-06T10:54:00", + "description": "RESPONDENT United States Department of Justice, TERMINATED. [Entered: 10/06/2023 10:54 AM] [Edited: 10/06/2023 11:03 AM]", + "description_html": "

    RESPONDENT United States Department of Justice, TERMINATED. [Entered: 10/06/2023 10:54 AM] [Edited: 10/06/2023 11:03 AM]

    ", + "document_number": 20, + "pacer_doc_id": "ce2f85ed-5764-ee11-be6e-001dd804e4bd", + "page_count": 0 + }, + { + "date_entered": "2023-10-06T13:37:00", + "date_filed": "2023-10-06T13:37:00", + "description": "CAPTION, reflecting the United States Drug Enforcement Administration as the Respondent, AMENDED. [Entered: 10/06/2023 01:37 PM]", + "description_html": "

    CAPTION, reflecting the United States Drug Enforcement Administration as the Respondent, AMENDED. [Entered: 10/06/2023 01:37 PM]

    ", + "document_number": 21, + "pacer_doc_id": "c5469315-6e64-ee11-be6e-001dd804e4bd", + "page_count": 1 + } + ], + "docket_number": "23-7246", + "fee_status": "Paid", + "originating_court_information": { + "identifier": "DOJ", + "name": "Department of Justice" + }, + "pacer_case_id": "1e399dc7-2462-ee11-a81c-001dd809b0dc", + "parties": [ + { + "attorneys": [ + { + "contact": "Direct: 212-335-2031\nWalden Macht Haran & Williams LLP\n250 Vesey Street\n27th Floor\nNew York, NY 10281", + "name": "James A. Walden, -", + "roles": [ + "Retained" + ] + } + ], + "name": "ASCENT PHARMACEUTICALS, INC.", + "type": "Petitioner" + }, + { + "attorneys": [ + { + "contact": "United States Department of Justice\nCivil Division, Office of Immigration Litigation\n950 Pennsylvania Avenue, NW\nWashington, DC 20530", + "name": "Mark B. Stern, -", + "roles": [ + "US Attorney" + ] + }, + { + "contact": "Direct: 202-353-4895\nUnited States Department of Justice\nCivil Division, Appellate Staff\n950 Pennsylvania Avenue, NW\nWashington, DC 20530", + "name": "Urja Mittal, -", + "roles": [ + "US Attorney" + ] + } + ], + "name": "UNITED STATES DRUG ENFORCEMENT ADMINISTRATION", + "type": "Respondent" + }, + { + "attorneys": [ + { + "contact": "Terminated: 10/06/2023\nDirect: 202-353-4895\nUnited States Department of Justice\nCivil Division, Appellate Staff\n950 Pennsylvania Avenue, NW\nWashington, DC 20530", + "name": "Urja Mittal, -", + "roles": [ + "US Attorney" + ] + }, + { + "contact": "Terminated: 10/06/2023\nUnited States Department of Justice\nCivil Division, Office of Immigration Litigation\n950 Pennsylvania Avenue, NW\nWashington, DC 20530", + "name": "Mark B. Stern, -", + "roles": [ + "US Attorney" + ] + }, + { + "contact": "Terminated: 10/05/2023\nUnited States Attorney's Office for the Southern District of New York\n86 Chambers Street\nNew York, NY 10007", + "name": "Benjamin H. Torrance, Assistant U.S. Attorney", + "roles": [ + "US Attorney" + ] + }, + { + "contact": "Terminated: 10/05/2023\nDirect: 202-514-8713\nUnited States Department of Justice\nCRM/Narc. & Dang. Drug. Sec.\n145 N Street, NE\nSecond Floor, East W\nWashington, DC 20530", + "name": "Lena D Watkins, Trial Attorney", + "roles": [ + "US Attorney" + ] + } + ], + "date_terminated": "2023-10-06", + "name": "UNITED STATES DEPARTMENT OF JUSTICE", + "type": "Respondent" + } + ] +} diff --git a/tests/examples/pacer/dockets/acms/ca9_22-21.acms_json b/tests/examples/pacer/dockets/acms/ca9_22-21.acms_json new file mode 100644 index 000000000..34d7111c6 --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca9_22-21.acms_json @@ -0,0 +1,505 @@ +{ + "caseDetails": { + "caseId": "c8d83e85-5b6e-ec11-b820-00155d36fcd4", + "caseNumber": "22-21", + "name": "Lopez Guevara v. Garland", + "caseOpened": "2022-01-05", + "aNumber": "A022-317-477", + "receivedDate": "2022-01-05T19:18:47Z", + "partyAttorneyList": "
    JOSE LUIS LOPEZ GUEVARA
        A022-317-477,
        Petitioner,
    Ms. Lisa Pickering, Attorney
    Direct: 818-784-1126
    Email: lisapickering@hotmail.com
    [Retained]
    Law Office of Roni P. Deutsch
    16255 Ventura Boulevard
    Suite 610
    Encino, CA 91436

     

    Ramin Ghashghaei, Attorney
    Direct: 213-487-9211
    Email: raming@raminusa.com
    [Retained]
    Law Offices of Ramin Ghashghaei, Inc.
    23371 Mulholland Dr.
    Suite 399
    Woodland Hills, CA 91364

     

    MERRICK B. GARLAND, ATTORNEY GENERAL
        Respondent,
    Mrs. Nehal Kamani, Attorney
    Email: nehal.kamani@usdoj.gov
    [Government]
    DOJ - U.S. Department of Justice
    Civil Division/Office of Immigration Litigation
    P.O. Box 878, Benjamin Franklin Station
    Washington, DC 20044

     

    OIL
    Email: Ninth.Circuit.OIL@usdoj.gov
    [Government]
    DOJ - U.S. Department of Justice
    Civil Division/Office of Immigration Litigation
    P.O. Box 878, Benjamin Franklin Station
    Washington, DC 20044

     

    ", + "shortCaption": "JOSE LUIS LOPEZ GUEVARA,
    \r\n
    \r\n                     Petitioner,
    \r\n
    \r\n   v.
    \r\n
    \r\nMERRICK B. GARLAND, Attorney General,
    \r\n
    \r\n                     Respondent.", + "court": { + "name": "Board of Immigration Appeals", + "identifier": "95" + }, + "caseType": "Agency", + "caseSubType": "Immigration", + "caseSubSubType": null, + "districtCourtName": "San Francisco Northern California", + "feeStatus": "Paid", + "byteCount": 1860 + }, + "docketInfo": { + "isCaseSealed": false, + "isUserCaseParticipant": false, + "byteCount": 14583, + "docketEntries": [ + { + "endDate": "2022-01-05", + "endDateFormatted": "01/05/2022", + "entryNumber": 1, + "docketEntryText": "

    PETITION FOR REVIEW filed by Petitioner(s). [Entered: 01/05/2022 11:15:00 AM]

    ", + "docketEntryId": "a59cc6d9-5b6e-ec11-8f8e-001dd8032305", + "createdOn": "2022-01-05T19:15:32Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-05", + "endDateFormatted": "01/05/2022", + "entryNumber": 3, + "docketEntryText": "

    AGENCY DECISION on review dated 10/5/2020. [Entered: 01/05/2022 11:17:00 AM]

    ", + "docketEntryId": "e725e50c-5c6e-ec11-8f8e-001dd80323ef", + "createdOn": "2022-01-05T19:17:06Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-05", + "endDateFormatted": "01/05/2022", + "entryNumber": 4, + "docketEntryText": "

    AGENCY DECISION on review dated 4/7/2021. [Entered: 01/05/2022 11:17:00 AM]

    ", + "docketEntryId": "3ae7b82b-5c6e-ec11-8f8e-001dd80323ef", + "createdOn": "2022-01-05T19:17:55Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-05", + "endDateFormatted": "01/05/2022", + "entryNumber": 5, + "docketEntryText": "

    MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 01/05/2022 11:18:00 AM]

    ", + "docketEntryId": "28b8283f-5c6e-ec11-8f8e-001dd803244d", + "createdOn": "2022-01-05T19:18:25Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-05", + "endDateFormatted": "01/05/2022", + "entryNumber": 7, + "docketEntryText": "

    BRIEFING SCHEDULE NOTICE. Certified Administrative Record due 2/9/2022, Respondent Response to Stay Motion (Filed with PFR) due 3/2/2022, Petitioner Opening Brief due 4/11/2022, Respondent Answering Brief due 6/9/2022. Optional Reply Brief due 21 days after service of Answering Brief. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.

    \n\n

    Failure of the petitioner to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1. [Entered: 01/05/2022 11:51:00 AM]

    ", + "docketEntryId": "b756909d-606e-ec11-8f8e-001dd803244d", + "createdOn": "2022-01-05T19:49:43Z", + "documentCount": 1, + "pageCount": 2, + "fileSize": 234, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-05", + "endDateFormatted": "01/05/2022", + "entryNumber": 2, + "docketEntryText": "

    AGENCY DECISION on review dated 12/21/2021. [Entered: 01/05/2022 11:16:00 AM]

    ", + "docketEntryId": "d0044af5-5b6e-ec11-8f8e-001dd8032490", + "createdOn": "2022-01-05T19:16:24Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-05", + "endDateFormatted": "01/05/2022", + "entryNumber": 6, + "docketEntryText": "

    CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 1/5/2022.
    \nThe U.S. Court of Appeals docket number 22-21 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.  It is your responsibility to alert the court if your contact information changes.
    \nResources Available
    \nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the Immigration Outline and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 01/05/2022 11:49:00 AM]

    ", + "docketEntryId": "428ed485-606e-ec11-8f8f-001dd80325bd", + "createdOn": "2022-01-05T19:49:09Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-06", + "endDateFormatted": "01/06/2022", + "entryNumber": 9, + "docketEntryText": "

    ADDED Nehal Kamani for Respondent Merrick B. Garland. [Entered: 01/06/2022 09:38:00 AM]

    ", + "docketEntryId": "b5783167-176f-ec11-8f8e-001dd80217c1", + "createdOn": "2022-01-06T17:38:12Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-06", + "endDateFormatted": "01/06/2022", + "entryNumber": 8, + "docketEntryText": "

    NOTICE OF APPEARANCE by Nehal Kamani for Merrick B. Garland. [Entered: 01/06/2022 05:32:00 AM]

    ", + "docketEntryId": "4efc92fc-f46e-ec11-8f8e-001dd802394a", + "createdOn": "2022-01-06T13:31:44Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-02-08", + "endDateFormatted": "02/08/2022", + "entryNumber": 10, + "docketEntryText": "

    CERTIFIED ADMINISTRATIVE RECORD filed. [Entered: 02/08/2022 09:35:00 AM]

    ", + "docketEntryId": "5c77c57c-0589-ec11-8d20-001dd8009d95", + "createdOn": "2022-02-08T17:35:28Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-02-23", + "endDateFormatted": "02/23/2022", + "entryNumber": 11, + "docketEntryText": "

    STATEMENT OF NON-OPPOSITION TO MOTION TO STAY REMOVAL filed by Respondent Merrick B. Garland. [Entered: 02/23/2022 10:11:00 AM]

    ", + "docketEntryId": "3d41f613-d494-ec11-8d20-001dd8034b1f", + "createdOn": "2022-02-23T18:11:57Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-02-23", + "endDateFormatted": "02/23/2022", + "entryNumber": 12, + "docketEntryText": "

    ORDER FILED. Motion to Stay Removal (DE 5) not opposed. [Entered: 02/23/2022 03:41:00 PM]

    ", + "docketEntryId": "83778f19-0295-ec11-8d20-001dd8034b22", + "createdOn": "2022-02-23T23:41:23Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 148, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-04-01", + "endDateFormatted": "04/01/2022", + "entryNumber": 13, + "docketEntryText": "

    OPENING BRIEF submitted for filing by Petitioner Jose Luis Lopez Guevara. [Entered: 04/01/2022 02:09:00 PM]--[COURT UPDATE: Attached addendum] [Edited: 04/04/2022 01:31:00 PM]

    ", + "docketEntryId": "30d0aafa-ffb1-ec11-983e-001dd80386d0", + "createdOn": "2022-04-01T21:09:16Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-04-04", + "endDateFormatted": "04/04/2022", + "entryNumber": 14, + "docketEntryText": "

    ORDER FILED. Opening Brief submitted at DE 13 by Petitioner Jose Luis Lopez Guevara is filed. Within 7 days of this order, Petitioner must file 6 copies of the brief in paper format bound with blue front cover pages. Each copy must include certification at the end that the copy is identical to the electronic version. The paper copies must be sent to the Clerk’s principal office. [Entered: 04/04/2022 01:35:00 PM]

    ", + "docketEntryId": "ce1e5c7c-56b4-ec11-983e-001dd8033cac", + "createdOn": "2022-04-04T20:33:33Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 151, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-04-07", + "endDateFormatted": "04/07/2022", + "entryNumber": 15, + "docketEntryText": "

    Paper copies (6) of Opening Brief submitted at DE 13 by Petitioner Jose Luis Lopez Guevara received. [Entered: 04/07/2022 04:30:00 PM]

    ", + "docketEntryId": "aaa26da0-cab6-ec11-983e-001dd80331f3", + "createdOn": "2022-04-07T23:30:02Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-06-03", + "endDateFormatted": "06/03/2022", + "entryNumber": 17, + "docketEntryText": "

    ORDER FILED. Streamlined Request for Extension of Time to File Answering Brief for 30 days (DE 16) granted. Amended briefing schedule: Respondent Answering Brief due 7/11/2022. Optional Reply Brief due 21 days after service of Answering Brief. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1. [Entered: 06/03/2022 08:48:00 AM]

    ", + "docketEntryId": "3a77898f-54e3-ec11-a7b4-001dd8033ab1", + "createdOn": "2022-06-03T15:48:15Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-06-03", + "endDateFormatted": "06/03/2022", + "entryNumber": 16, + "docketEntryText": "

    STREAMLINED request for extension of time to file answering brief for 30 days filed by Respondent Merrick B. Garland. [Entered: 06/03/2022 08:11:00 AM]

    ", + "docketEntryId": "0e0a3f61-4fe3-ec11-a7b4-001dd8033ab5", + "createdOn": "2022-06-03T15:11:08Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-06-28", + "endDateFormatted": "06/28/2022", + "entryNumber": 18, + "docketEntryText": "

    ANSWERING BRIEF submitted for filing by Respondent Merrick B. Garland. [Entered: 06/28/2022 05:07:00 AM]

    ", + "docketEntryId": "e3c771e0-daf6-ec11-bb3b-001dd800937a", + "createdOn": "2022-06-28T12:07:36Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-06-30", + "endDateFormatted": "06/30/2022", + "entryNumber": 19, + "docketEntryText": "

    ORDER FILED. Answering Brief submitted at DE 18 by Respondent Merrick B. Garland is filed. Within 7 days of this order, Respondent must file 6 copies of the brief in paper format bound with red front cover pages. Each copy must include certification at the end that the copy is identical to the electronic version. The paper copies must be sent to the Clerk’s principal office. [Entered: 06/30/2022 02:20:00 PM]

    ", + "docketEntryId": "aaf80b4a-baf8-ec11-bb3b-001dd800937a", + "createdOn": "2022-06-30T21:19:17Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 181, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-07-06", + "endDateFormatted": "07/06/2022", + "entryNumber": 20, + "docketEntryText": "

    Paper copies (6) of Answering Brief submitted at DE 18 by Respondent Merrick B. Garland received 07/05/2022. [Entered: 07/06/2022 10:24:00 AM]

    ", + "docketEntryId": "05115458-50fd-ec11-bb3b-001dd803d3ab", + "createdOn": "2022-07-06T17:23:27Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-11-18", + "endDateFormatted": "11/18/2022", + "entryNumber": 21, + "docketEntryText": "

    NOTICE: This case is being considered for an upcoming oral argument calendar in San Francisco, CA.

    \n\n

    Please review the San Francisco sitting dates for March 6-10 and March 27-31, 2023 at http://www.ca9.uscourts.gov/court_sessions. If you have an unavoidable conflict on either of the dates, please file Form 32 (http://www.ca9.uscourts.gov/forms/form32.pdf) within 3 business days of this notice using the ACMS filing type Response to Case Being Considered for Oral Argument. Please follow the form's instructions (http://www.ca9.uscourts.gov/forms/form32instructions.pdf) carefully.

    \n\n

    When setting your argument date, the court will try to work around unavoidable conflicts; the court is not able to accommodate mere scheduling preferences. You will receive notice that your case has been assigned to a calendar approximately 10 weeks before the scheduled oral argument date.

    \n\n

    If the parties wish to discuss settlement before an argument date is set, they should jointly request referral to the mediation unit by filing a motion within 3 business days of this notice, using the filing type: Motion to Refer to Mediation. [Entered: 11/18/2022 10:16 AM]

    ", + "docketEntryId": "f8480707-6d67-ed11-9562-001dd80725bf", + "createdOn": "2022-11-18T18:15:56Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-12-14", + "endDateFormatted": "12/14/2022", + "entryNumber": 23, + "docketEntryText": "

    NOTICE: This case is being considered for an upcoming oral argument calendar in Pasadena, CA.

    \n\n

    Please review the Pasadena sitting dates for April 2023 and the 2 subsequent sitting months in that location at http://www.ca9.uscourts.gov/court_sessions. If you have an unavoidable conflict on either of the dates, please file Form 32 (http://www.ca9.uscourts.gov/forms/form32.pdf) within 3 business days of this notice using the ACMS filing type Response to Case Being Considered for Oral Argument. Please follow the form's instructions (http://www.ca9.uscourts.gov/forms/form32instructions.pdf) carefully.

    \n\n

    When setting your argument date, the court will try to work around unavoidable conflicts; the court is not able to accommodate mere scheduling preferences. You will receive notice that your case has been assigned to a calendar approximately 10 weeks before the scheduled oral argument date.

    \n\n

    If the parties wish to discuss settlement before an argument date is set, they should jointly request referral to the mediation unit by filing a motoin within 3 business days of this notice, using the filing type: Motion to Refer to Mediation. [Entered: 12/14/2022 01:11 PM]

    \n\n", + "docketEntryId": "6f86a1b4-f37b-ed11-81ad-001dd80701be", + "createdOn": "2022-12-14T21:10:20Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-12-14", + "endDateFormatted": "12/14/2022", + "entryNumber": 22, + "docketEntryText": "

    NOTICE: This case is being considered for an upcoming oral argument calendar in Pasadena, CA. 

    \n\n

    Please review the Pasadena sitting dates for April 2023 and the 2 subsequent sitting months in that location at http://www.ca9.uscourts.gov/court_sessions. If you have an unavoidable conflict on either of the dates, please file Form 32 (http://www.ca9.uscourts.gov/forms/form32.pdf) within 3 business days of this notice using the ACMS filing type Response to Case Being Considered for Oral Argument. Please follow the form's instructions (http://www.ca9.uscourts.gov/forms/form32instructions.pdf) carefully.

    \n\n

    When setting your argument date, the court will try to work around unavoidable conflicts; the court is not able to accommodate mere scheduling preferences. You will receive notice that your case has been assigned to a calendar approximately 10 weeks before the scheduled oral argument date.

    \n\n

    If the parties wish to discuss settlement before an argument date is set, they should jointly request referral to the mediation unit by filing a motoin within 3 business days of this notice, using the filing type: Motion to Refer to Mediation. [Entered: 12/14/2022 11:04 AM] [Edited: 12/14/2022 11:24 AM]

    \n\n", + "docketEntryId": "4f2de8ed-e17b-ed11-81ad-001dd80725bf", + "createdOn": "2022-12-14T19:03:03Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-12-15", + "endDateFormatted": "12/15/2022", + "entryNumber": 24, + "docketEntryText": "

    RESPONSE to notice of case being considered for oral argument filed by Ramin Ghashghaei. [Entered: 12/15/2022 05:51 PM]

    ", + "docketEntryId": "f16255f7-e27c-ed11-81ad-001dd807261e", + "createdOn": "2022-12-16T01:42:58Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-12-15", + "endDateFormatted": "12/15/2022", + "entryNumber": 25, + "docketEntryText": "

    RESPONSE to notice of case being considered for oral argument filed by Ramin Ghashghaei. [Entered: 12/15/2022 05:54 PM]

    ", + "docketEntryId": "59018371-e47c-ed11-81ad-001dd807261e", + "createdOn": "2022-12-16T01:53:34Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-12-27", + "endDateFormatted": "12/27/2022", + "entryNumber": 26, + "docketEntryText": "

    NOTICE OF APPEARANCE by Lisa Pickering for Petitioner Jose Luis Lopez Guevara. [Entered: 12/27/2022 04:46 PM]

    ", + "docketEntryId": "babc9e00-4986-ed11-81ad-001dd807211a", + "createdOn": "2022-12-28T00:46:10Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-12-27", + "endDateFormatted": "12/27/2022", + "entryNumber": 27, + "docketEntryText": "

    ADDED Counsel for Petitioner Lisa Pickering for Petitioner Jose Luis Lopez Guevara. [Entered: 12/27/2022 04:53 PM]

    ", + "docketEntryId": "da09ecd4-4986-ed11-81ad-001dd80725bf", + "createdOn": "2022-12-28T00:52:02Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-02-06", + "endDateFormatted": "02/06/2023", + "entryNumber": 28, + "docketEntryText": "

    NOTICE OF ORAL ARGUMENT on Monday, April 17, 2023- 09:30 A.M. - Courtroom 1 - Scheduled Location: Pasadena 

    \n\n

    View the Oral Argument Calendar for your case here.

    \n\n

    NOTE: Although your case is currently scheduled for oral argument, the panel may decide to submit the case on the briefs instead. See Fed. R. App. P. 34. Absent further order of the court, if the court does determine that oral argument is required in this case, you may appear in person at the Courthouse or remotely by video. At this time, even when in person hearings resume, an election to appear remotely by video will not require a motion, and any attorney wishing to appear in person must provide proof of vaccination. If the panel determines that it will hold oral argument in your case, the Clerk's Office will contact you at least two weeks before the argument date to review any requirements for in person appearance or to make any necessary arrangements for remote appearance.

    \n\n

    Please note however that if you wish to appear remotely by telephone you will need to file a motion requesting permission to do so.

    \n\n

    Be sure to review the GUIDELINES for important information about your hearing.

    \n\n

    If you are the specific attorney or self-represented party who will be arguing, use the ACKNOWLEDGMENT OF HEARING NOTICE filing type in ACMS no later than 28 days before the hearing date. No form or other attachment is required. If you will not be arguing, do not file an acknowledgment of hearing notice. [Entered: 02/06/2023 11:58 AM]

    ", + "docketEntryId": "b7546c7c-58a6-ed11-aad1-001dd807211a", + "createdOn": "2023-02-06T19:57:34Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-02-14", + "endDateFormatted": "02/14/2023", + "entryNumber": 29, + "docketEntryText": "

    ACKNOWLEDGMENT of hearing notice filed by Nehal Kamani for Respondent Merrick B. Garland. [Entered: 02/14/2023 04:51 AM]

    ", + "docketEntryId": "0f75e129-66ac-ed11-aad1-001dd80725bf", + "createdOn": "2023-02-14T12:50:40Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-02-21", + "endDateFormatted": "02/21/2023", + "entryNumber": 30, + "docketEntryText": "

    MOTION to submit case on briefs without oral argument filed by Respondent Merrick B. Garland. [Entered: 02/21/2023 06:50 AM]

    ", + "docketEntryId": "3515a0f7-f6b1-ed11-83fe-001dd80725bf", + "createdOn": "2023-02-21T14:49:42Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-02-23", + "endDateFormatted": "02/23/2023", + "entryNumber": 31, + "docketEntryText": "

    ORDER FILED. The panel unanimously finds that the facts and legal arguments in this case are adequately presented in the briefs and record, and that the decisional process would not be significantly aided by oral argument. Fed. R. App. P. 34(a)(2). Therefore, the parties’ joint motion to submit the petition on the briefs, dkt. 30, is GRANTED. This matter is ordered submitted without oral argument on April 17, 2023, in Pasadena, California. [Entered: 02/23/2023 10:54 AM]

    ", + "docketEntryId": "596c6400-abb3-ed11-83fe-001dd80725bf", + "createdOn": "2023-02-23T18:50:58Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 188, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-04-17", + "endDateFormatted": "04/17/2023", + "entryNumber": 32, + "docketEntryText": "

    SUBMITTED ON THE BRIEFS to Kim McLane WARDLAW, Holly A. THOMAS, Lee H. Rosenthal. [Entered: 04/17/2023 11:58 AM]

    ", + "docketEntryId": "dce20fc4-51dd-ed11-a7c6-001dd807211a", + "createdOn": "2023-04-17T18:58:07Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-04-19", + "endDateFormatted": "04/19/2023", + "entryNumber": 33, + "docketEntryText": "

    MEMORANDUM DISPOSITION (Kim McLane WARDLAW, Holly A. THOMAS, Lee H. Rosenthal) DISMISSED in part and DENIED in part. FILED AND ENTERED JUDGMENT. [Entered: 04/19/2023 09:34 AM]

    ", + "docketEntryId": "a329c288-cfde-ed11-a7c6-001dd80725bf", + "createdOn": "2023-04-19T16:30:46Z", + "documentCount": 2, + "pageCount": 9, + "fileSize": 598, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-06-12", + "endDateFormatted": "06/12/2023", + "entryNumber": 34, + "docketEntryText": "

    MANDATE ISSUED Kim McLane WARDLAW, Holly A. THOMAS, Lee H. Rosenthal [Entered: 06/12/2023 10:23 AM]

    ", + "docketEntryId": "3d79438d-4509-ee11-8f6d-001dd808569d", + "createdOn": "2023-06-12T17:21:32Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 126, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + } + ] + } +} diff --git a/tests/examples/pacer/dockets/acms/ca9_22-21.json b/tests/examples/pacer/dockets/acms/ca9_22-21.json new file mode 100644 index 000000000..7b4cfec02 --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca9_22-21.json @@ -0,0 +1,368 @@ +{ + "appeal_from": "Board of Immigration Appeals", + "case_name": "Lopez Guevara v. Garland", + "case_type_information": "Agency, Immigration", + "court_id": "ca9", + "date_filed": "2022-01-05", + "docket_entries": [ + { + "date_entered": "2022-01-05T11:15:00", + "date_filed": "2022-01-05T11:15:00", + "description": "PETITION FOR REVIEW filed by Petitioner(s). [Entered: 01/05/2022 11:15:00 AM]", + "description_html": "

    PETITION FOR REVIEW filed by Petitioner(s). [Entered: 01/05/2022 11:15:00 AM]

    ", + "document_number": 1, + "pacer_doc_id": "a59cc6d9-5b6e-ec11-8f8e-001dd8032305", + "page_count": 0 + }, + { + "date_entered": "2022-01-05T11:17:00", + "date_filed": "2022-01-05T11:17:00", + "description": "AGENCY DECISION\u00a0on review dated 10/5/2020. [Entered: 01/05/2022 11:17:00 AM]", + "description_html": "

    AGENCY DECISION on review dated 10/5/2020. [Entered: 01/05/2022 11:17:00 AM]

    ", + "document_number": 3, + "pacer_doc_id": "e725e50c-5c6e-ec11-8f8e-001dd80323ef", + "page_count": 0 + }, + { + "date_entered": "2022-01-05T11:17:00", + "date_filed": "2022-01-05T11:17:00", + "description": "AGENCY DECISION\u00a0on review dated 4/7/2021. [Entered: 01/05/2022 11:17:00 AM]", + "description_html": "

    AGENCY DECISION on review dated 4/7/2021. [Entered: 01/05/2022 11:17:00 AM]

    ", + "document_number": 4, + "pacer_doc_id": "3ae7b82b-5c6e-ec11-8f8e-001dd80323ef", + "page_count": 0 + }, + { + "date_entered": "2022-01-05T11:18:00", + "date_filed": "2022-01-05T11:18:00", + "description": "MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 01/05/2022 11:18:00 AM]", + "description_html": "

    MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 01/05/2022 11:18:00 AM]

    ", + "document_number": 5, + "pacer_doc_id": "28b8283f-5c6e-ec11-8f8e-001dd803244d", + "page_count": 0 + }, + { + "date_entered": "2022-01-05T11:51:00", + "date_filed": "2022-01-05T11:51:00", + "description": "BRIEFING SCHEDULE NOTICE. Certified Administrative Record due 2/9/2022, Respondent Response to Stay Motion (Filed with PFR) due 3/2/2022, Petitioner Opening Brief due 4/11/2022, Respondent Answering Brief due 6/9/2022.\u00a0Optional Reply Brief due 21 days after service of Answering Brief. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.\n\nFailure of the petitioner to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1. [Entered: 01/05/2022 11:51:00 AM]", + "description_html": "

    BRIEFING SCHEDULE NOTICE. Certified Administrative Record due 2/9/2022, Respondent Response to Stay Motion (Filed with PFR) due 3/2/2022, Petitioner Opening Brief due 4/11/2022, Respondent Answering Brief due 6/9/2022. Optional Reply Brief due 21 days after service of Answering Brief. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.

    \n\n

    Failure of the petitioner to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1. [Entered: 01/05/2022 11:51:00 AM]

    ", + "document_number": 7, + "pacer_doc_id": "b756909d-606e-ec11-8f8e-001dd803244d", + "page_count": 2 + }, + { + "date_entered": "2022-01-05T11:16:00", + "date_filed": "2022-01-05T11:16:00", + "description": "AGENCY DECISION\u00a0on review dated 12/21/2021. [Entered: 01/05/2022 11:16:00 AM]", + "description_html": "

    AGENCY DECISION on review dated 12/21/2021. [Entered: 01/05/2022 11:16:00 AM]

    ", + "document_number": 2, + "pacer_doc_id": "d0044af5-5b6e-ec11-8f8e-001dd8032490", + "page_count": 0 + }, + { + "date_entered": "2022-01-05T11:49:00", + "date_filed": "2022-01-05T11:49:00", + "description": "CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 1/5/2022.\nThe U.S. Court of Appeals docket number 22-21 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.\u00a0 It is your responsibility to alert the court if your contact information changes.\nResources Available\nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the\u00a0Immigration Outline\u00a0and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 01/05/2022 11:49:00 AM]", + "description_html": "

    CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 1/5/2022.
    \nThe U.S. Court of Appeals docket number 22-21 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.  It is your responsibility to alert the court if your contact information changes.
    \nResources Available
    \nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the Immigration Outline and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 01/05/2022 11:49:00 AM]

    ", + "document_number": 6, + "pacer_doc_id": "428ed485-606e-ec11-8f8f-001dd80325bd", + "page_count": 0 + }, + { + "date_entered": "2022-01-06T09:38:00", + "date_filed": "2022-01-06T09:38:00", + "description": "ADDED Nehal Kamani for Respondent Merrick B. Garland. [Entered: 01/06/2022 09:38:00 AM]", + "description_html": "

    ADDED Nehal Kamani for Respondent Merrick B. Garland. [Entered: 01/06/2022 09:38:00 AM]

    ", + "document_number": 9, + "pacer_doc_id": "b5783167-176f-ec11-8f8e-001dd80217c1", + "page_count": 0 + }, + { + "date_entered": "2022-01-06T05:32:00", + "date_filed": "2022-01-06T05:32:00", + "description": "NOTICE OF APPEARANCE by Nehal Kamani for Merrick B. Garland. [Entered: 01/06/2022 05:32:00 AM]", + "description_html": "

    NOTICE OF APPEARANCE by Nehal Kamani for Merrick B. Garland. [Entered: 01/06/2022 05:32:00 AM]

    ", + "document_number": 8, + "pacer_doc_id": "4efc92fc-f46e-ec11-8f8e-001dd802394a", + "page_count": 0 + }, + { + "date_entered": "2022-02-08T09:35:00", + "date_filed": "2022-02-08T09:35:00", + "description": "CERTIFIED ADMINISTRATIVE RECORD filed. [Entered: 02/08/2022 09:35:00 AM]", + "description_html": "

    CERTIFIED ADMINISTRATIVE RECORD filed. [Entered: 02/08/2022 09:35:00 AM]

    ", + "document_number": 10, + "pacer_doc_id": "5c77c57c-0589-ec11-8d20-001dd8009d95", + "page_count": 0 + }, + { + "date_entered": "2022-02-23T10:11:00", + "date_filed": "2022-02-23T10:11:00", + "description": "STATEMENT OF NON-OPPOSITION TO MOTION TO STAY REMOVAL filed by Respondent Merrick B. Garland. [Entered: 02/23/2022 10:11:00 AM]", + "description_html": "

    STATEMENT OF NON-OPPOSITION TO MOTION TO STAY REMOVAL filed by Respondent Merrick B. Garland. [Entered: 02/23/2022 10:11:00 AM]

    ", + "document_number": 11, + "pacer_doc_id": "3d41f613-d494-ec11-8d20-001dd8034b1f", + "page_count": 0 + }, + { + "date_entered": "2022-02-23T15:41:00", + "date_filed": "2022-02-23T15:41:00", + "description": "ORDER FILED. Motion to Stay Removal (DE 5) not opposed. [Entered: 02/23/2022 03:41:00 PM]", + "description_html": "

    ORDER FILED. Motion to Stay Removal (DE 5) not opposed. [Entered: 02/23/2022 03:41:00 PM]

    ", + "document_number": 12, + "pacer_doc_id": "83778f19-0295-ec11-8d20-001dd8034b22", + "page_count": 1 + }, + { + "date_entered": "2022-04-01T14:09:00", + "date_filed": "2022-04-01T14:09:00", + "description": "OPENING BRIEF submitted for filing by Petitioner Jose Luis Lopez Guevara. [Entered: 04/01/2022 02:09:00 PM]--[COURT UPDATE: Attached addendum] [Edited: 04/04/2022 01:31:00 PM]", + "description_html": "

    OPENING BRIEF submitted for filing by Petitioner Jose Luis Lopez Guevara. [Entered: 04/01/2022 02:09:00 PM]--[COURT UPDATE: Attached addendum] [Edited: 04/04/2022 01:31:00 PM]

    ", + "document_number": 13, + "pacer_doc_id": "30d0aafa-ffb1-ec11-983e-001dd80386d0", + "page_count": 0 + }, + { + "date_entered": "2022-04-04T13:35:00", + "date_filed": "2022-04-04T13:35:00", + "description": "ORDER FILED. Opening Brief submitted at DE 13 by Petitioner Jose Luis Lopez Guevara is filed. Within 7 days of this order, Petitioner must file 6 copies of the brief in paper format bound with blue front cover pages. Each copy must include certification at the end that the copy is identical to the electronic version. The paper copies must be sent to the Clerk\u2019s principal office. [Entered: 04/04/2022 01:35:00 PM]", + "description_html": "

    ORDER FILED. Opening Brief submitted at DE 13 by Petitioner Jose Luis Lopez Guevara is filed. Within 7 days of this order, Petitioner must file 6 copies of the brief in paper format bound with blue front cover pages. Each copy must include certification at the end that the copy is identical to the electronic version. The paper copies must be sent to the Clerk’s principal office. [Entered: 04/04/2022 01:35:00 PM]

    ", + "document_number": 14, + "pacer_doc_id": "ce1e5c7c-56b4-ec11-983e-001dd8033cac", + "page_count": 1 + }, + { + "date_entered": "2022-04-07T16:30:00", + "date_filed": "2022-04-07T16:30:00", + "description": "Paper copies (6) of Opening Brief submitted at DE 13 by Petitioner Jose Luis Lopez Guevara received. [Entered: 04/07/2022 04:30:00 PM]", + "description_html": "

    Paper copies (6) of Opening Brief submitted at DE 13 by Petitioner Jose Luis Lopez Guevara received. [Entered: 04/07/2022 04:30:00 PM]

    ", + "document_number": 15, + "pacer_doc_id": "aaa26da0-cab6-ec11-983e-001dd80331f3", + "page_count": 0 + }, + { + "date_entered": "2022-06-03T08:48:00", + "date_filed": "2022-06-03T08:48:00", + "description": "ORDER FILED.\u00a0Streamlined Request for Extension of Time to File Answering Brief for 30 days (DE 16) granted. Amended briefing schedule: Respondent Answering Brief due 7/11/2022. Optional Reply Brief due 21 days after service of Answering Brief. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1. [Entered: 06/03/2022 08:48:00 AM]", + "description_html": "

    ORDER FILED. Streamlined Request for Extension of Time to File Answering Brief for 30 days (DE 16) granted. Amended briefing schedule: Respondent Answering Brief due 7/11/2022. Optional Reply Brief due 21 days after service of Answering Brief. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1. [Entered: 06/03/2022 08:48:00 AM]

    ", + "document_number": 17, + "pacer_doc_id": "3a77898f-54e3-ec11-a7b4-001dd8033ab1", + "page_count": 0 + }, + { + "date_entered": "2022-06-03T08:11:00", + "date_filed": "2022-06-03T08:11:00", + "description": "STREAMLINED request for extension of time to file answering brief for 30 days filed by Respondent Merrick B. Garland. [Entered: 06/03/2022 08:11:00 AM]", + "description_html": "

    STREAMLINED request for extension of time to file answering brief for 30 days filed by Respondent Merrick B. Garland. [Entered: 06/03/2022 08:11:00 AM]

    ", + "document_number": 16, + "pacer_doc_id": "0e0a3f61-4fe3-ec11-a7b4-001dd8033ab5", + "page_count": 0 + }, + { + "date_entered": "2022-06-28T05:07:00", + "date_filed": "2022-06-28T05:07:00", + "description": "ANSWERING BRIEF submitted for filing by Respondent Merrick B. Garland. [Entered: 06/28/2022 05:07:00 AM]", + "description_html": "

    ANSWERING BRIEF submitted for filing by Respondent Merrick B. Garland. [Entered: 06/28/2022 05:07:00 AM]

    ", + "document_number": 18, + "pacer_doc_id": "e3c771e0-daf6-ec11-bb3b-001dd800937a", + "page_count": 0 + }, + { + "date_entered": "2022-06-30T14:20:00", + "date_filed": "2022-06-30T14:20:00", + "description": "ORDER FILED. Answering Brief submitted at DE 18 by Respondent Merrick B. Garland is filed. Within 7 days of this order, Respondent must file 6 copies of the brief in paper format bound with red front cover pages. Each copy must include certification at the end that the copy is identical to the electronic version. The paper copies must be sent to the Clerk\u2019s principal office. [Entered: 06/30/2022 02:20:00 PM]", + "description_html": "

    ORDER FILED. Answering Brief submitted at DE 18 by Respondent Merrick B. Garland is filed. Within 7 days of this order, Respondent must file 6 copies of the brief in paper format bound with red front cover pages. Each copy must include certification at the end that the copy is identical to the electronic version. The paper copies must be sent to the Clerk’s principal office. [Entered: 06/30/2022 02:20:00 PM]

    ", + "document_number": 19, + "pacer_doc_id": "aaf80b4a-baf8-ec11-bb3b-001dd800937a", + "page_count": 1 + }, + { + "date_entered": "2022-07-06T10:24:00", + "date_filed": "2022-07-06T10:24:00", + "description": "Paper copies (6) of Answering Brief submitted at DE 18 by Respondent Merrick B. Garland received 07/05/2022. [Entered: 07/06/2022 10:24:00 AM]", + "description_html": "

    Paper copies (6) of Answering Brief submitted at DE 18 by Respondent Merrick B. Garland received 07/05/2022. [Entered: 07/06/2022 10:24:00 AM]

    ", + "document_number": 20, + "pacer_doc_id": "05115458-50fd-ec11-bb3b-001dd803d3ab", + "page_count": 0 + }, + { + "date_entered": "2022-11-18T10:16:00", + "date_filed": "2022-11-18T10:16:00", + "description": "NOTICE:\u00a0This case is being considered for an upcoming oral argument calendar in San Francisco, CA.\n\nPlease review the San Francisco sitting dates for March 6-10 and March 27-31, 2023\u00a0at\u00a0http://www.ca9.uscourts.gov/court_sessions. If you have an unavoidable conflict on either of the dates, please file Form 32 (http://www.ca9.uscourts.gov/forms/form32.pdf) within 3 business days of this notice using the ACMS filing type Response to Case Being Considered for Oral Argument. Please follow the form's instructions (http://www.ca9.uscourts.gov/forms/form32instructions.pdf) carefully.\n\nWhen setting your argument date, the court will try to work around unavoidable conflicts; the court is not able to accommodate mere scheduling preferences. You will receive notice that your case has been assigned to a calendar approximately 10 weeks before the scheduled oral argument date.\n\nIf the parties wish to discuss settlement before an argument date is set, they should jointly request referral to the mediation unit by filing a motion within 3 business days of this notice, using the filing type: Motion to Refer to Mediation. [Entered: 11/18/2022 10:16 AM]", + "description_html": "

    NOTICE: This case is being considered for an upcoming oral argument calendar in San Francisco, CA.

    \n\n

    Please review the San Francisco sitting dates for March 6-10 and March 27-31, 2023 at http://www.ca9.uscourts.gov/court_sessions. If you have an unavoidable conflict on either of the dates, please file Form 32 (http://www.ca9.uscourts.gov/forms/form32.pdf) within 3 business days of this notice using the ACMS filing type Response to Case Being Considered for Oral Argument. Please follow the form's instructions (http://www.ca9.uscourts.gov/forms/form32instructions.pdf) carefully.

    \n\n

    When setting your argument date, the court will try to work around unavoidable conflicts; the court is not able to accommodate mere scheduling preferences. You will receive notice that your case has been assigned to a calendar approximately 10 weeks before the scheduled oral argument date.

    \n\n

    If the parties wish to discuss settlement before an argument date is set, they should jointly request referral to the mediation unit by filing a motion within 3 business days of this notice, using the filing type: Motion to Refer to Mediation. [Entered: 11/18/2022 10:16 AM]

    ", + "document_number": 21, + "pacer_doc_id": "f8480707-6d67-ed11-9562-001dd80725bf", + "page_count": 0 + }, + { + "date_entered": "2022-12-14T13:11:00", + "date_filed": "2022-12-14T13:11:00", + "description": "NOTICE: This case is being considered for an upcoming oral argument calendar in Pasadena, CA.\n\nPlease review the Pasadena\u00a0sitting dates for April 2023\u00a0and the 2 subsequent sitting months in that location at http://www.ca9.uscourts.gov/court_sessions. If you have an unavoidable conflict on either of the dates, please file Form 32 (http://www.ca9.uscourts.gov/forms/form32.pdf) within 3 business days of this notice using the ACMS filing type Response to Case Being Considered for Oral Argument. Please follow the form's instructions (http://www.ca9.uscourts.gov/forms/form32instructions.pdf) carefully.\n\nWhen setting your argument date, the court will try to work around unavoidable conflicts; the court is not able to accommodate mere scheduling preferences. You will receive notice that your case has been assigned to a calendar approximately 10 weeks before the scheduled oral argument date.\n\nIf the parties wish to discuss settlement before an argument date is set, they should jointly request referral to the mediation unit by filing a motoin within 3 business days of this notice, using the filing type: Motion to Refer to Mediation. [Entered: 12/14/2022 01:11 PM]\n\n", + "description_html": "

    NOTICE: This case is being considered for an upcoming oral argument calendar in Pasadena, CA.

    \n\n

    Please review the Pasadena sitting dates for April 2023 and the 2 subsequent sitting months in that location at http://www.ca9.uscourts.gov/court_sessions. If you have an unavoidable conflict on either of the dates, please file Form 32 (http://www.ca9.uscourts.gov/forms/form32.pdf) within 3 business days of this notice using the ACMS filing type Response to Case Being Considered for Oral Argument. Please follow the form's instructions (http://www.ca9.uscourts.gov/forms/form32instructions.pdf) carefully.

    \n\n

    When setting your argument date, the court will try to work around unavoidable conflicts; the court is not able to accommodate mere scheduling preferences. You will receive notice that your case has been assigned to a calendar approximately 10 weeks before the scheduled oral argument date.

    \n\n

    If the parties wish to discuss settlement before an argument date is set, they should jointly request referral to the mediation unit by filing a motoin within 3 business days of this notice, using the filing type: Motion to Refer to Mediation. [Entered: 12/14/2022 01:11 PM]

    \n\n", + "document_number": 23, + "pacer_doc_id": "6f86a1b4-f37b-ed11-81ad-001dd80701be", + "page_count": 0 + }, + { + "date_entered": "2022-12-14T11:04:00", + "date_filed": "2022-12-14T11:04:00", + "description": "NOTICE:\u00a0This case is being considered for an upcoming oral argument calendar in Pasadena, CA.\u00a0\n\nPlease review the Pasadena\u00a0sitting dates for April 2023\u00a0and the 2 subsequent sitting months in that location at\u00a0http://www.ca9.uscourts.gov/court_sessions. If you have an unavoidable conflict on either of the dates, please file Form 32 (http://www.ca9.uscourts.gov/forms/form32.pdf) within 3 business days of this notice using the ACMS filing type Response to Case Being Considered for Oral Argument. Please follow the form's instructions (http://www.ca9.uscourts.gov/forms/form32instructions.pdf) carefully.\n\nWhen setting your argument date, the court will try to work around unavoidable conflicts; the court is not able to accommodate mere scheduling preferences. You will receive notice that your case has been assigned to a calendar approximately 10 weeks before the scheduled oral argument date.\n\nIf the parties wish to discuss settlement before an argument date is set, they should jointly request referral to the mediation unit by filing a motoin within 3 business days of this notice, using the filing type: Motion to Refer to Mediation. [Entered: 12/14/2022 11:04 AM] [Edited: 12/14/2022 11:24 AM]\n\n", + "description_html": "

    NOTICE: This case is being considered for an upcoming oral argument calendar in Pasadena, CA. 

    \n\n

    Please review the Pasadena sitting dates for April 2023 and the 2 subsequent sitting months in that location at http://www.ca9.uscourts.gov/court_sessions. If you have an unavoidable conflict on either of the dates, please file Form 32 (http://www.ca9.uscourts.gov/forms/form32.pdf) within 3 business days of this notice using the ACMS filing type Response to Case Being Considered for Oral Argument. Please follow the form's instructions (http://www.ca9.uscourts.gov/forms/form32instructions.pdf) carefully.

    \n\n

    When setting your argument date, the court will try to work around unavoidable conflicts; the court is not able to accommodate mere scheduling preferences. You will receive notice that your case has been assigned to a calendar approximately 10 weeks before the scheduled oral argument date.

    \n\n

    If the parties wish to discuss settlement before an argument date is set, they should jointly request referral to the mediation unit by filing a motoin within 3 business days of this notice, using the filing type: Motion to Refer to Mediation. [Entered: 12/14/2022 11:04 AM] [Edited: 12/14/2022 11:24 AM]

    \n\n", + "document_number": 22, + "pacer_doc_id": "4f2de8ed-e17b-ed11-81ad-001dd80725bf", + "page_count": 0 + }, + { + "date_entered": "2022-12-15T17:51:00", + "date_filed": "2022-12-15T17:51:00", + "description": "RESPONSE to notice of case being considered for oral argument filed by Ramin Ghashghaei. [Entered: 12/15/2022 05:51 PM]", + "description_html": "

    RESPONSE to notice of case being considered for oral argument filed by Ramin Ghashghaei. [Entered: 12/15/2022 05:51 PM]

    ", + "document_number": 24, + "pacer_doc_id": "f16255f7-e27c-ed11-81ad-001dd807261e", + "page_count": 0 + }, + { + "date_entered": "2022-12-15T17:54:00", + "date_filed": "2022-12-15T17:54:00", + "description": "RESPONSE to notice of case being considered for oral argument filed by Ramin Ghashghaei. [Entered: 12/15/2022 05:54 PM]", + "description_html": "

    RESPONSE to notice of case being considered for oral argument filed by Ramin Ghashghaei. [Entered: 12/15/2022 05:54 PM]

    ", + "document_number": 25, + "pacer_doc_id": "59018371-e47c-ed11-81ad-001dd807261e", + "page_count": 0 + }, + { + "date_entered": "2022-12-27T16:46:00", + "date_filed": "2022-12-27T16:46:00", + "description": "NOTICE OF APPEARANCE by Lisa Pickering for Petitioner Jose Luis Lopez Guevara. [Entered: 12/27/2022 04:46 PM]", + "description_html": "

    NOTICE OF APPEARANCE by Lisa Pickering for Petitioner Jose Luis Lopez Guevara. [Entered: 12/27/2022 04:46 PM]

    ", + "document_number": 26, + "pacer_doc_id": "babc9e00-4986-ed11-81ad-001dd807211a", + "page_count": 0 + }, + { + "date_entered": "2022-12-27T16:53:00", + "date_filed": "2022-12-27T16:53:00", + "description": "ADDED Counsel for Petitioner Lisa Pickering for Petitioner Jose Luis Lopez Guevara. [Entered: 12/27/2022 04:53 PM]", + "description_html": "

    ADDED Counsel for Petitioner Lisa Pickering for Petitioner Jose Luis Lopez Guevara. [Entered: 12/27/2022 04:53 PM]

    ", + "document_number": 27, + "pacer_doc_id": "da09ecd4-4986-ed11-81ad-001dd80725bf", + "page_count": 0 + }, + { + "date_entered": "2023-02-06T11:58:00", + "date_filed": "2023-02-06T11:58:00", + "description": "NOTICE OF ORAL ARGUMENT\u00a0on Monday, April 17, 2023- 09:30 A.M. - Courtroom 1 - Scheduled Location: Pasadena\u00a0\n\nView the Oral Argument Calendar for your case here.\n\nNOTE: Although your case is currently scheduled for oral argument, the panel may decide to submit the case on the briefs instead. See Fed. R. App. P. 34. Absent further order of the court, if the court does determine that oral argument is required in this case, you may appear in person at the Courthouse or remotely by video. At this time, even when in person hearings resume, an election to appear remotely by video will not require a motion, and any attorney wishing to appear in person must provide proof of vaccination. If the panel determines that it will hold oral argument in your case, the Clerk's Office will contact you at least two weeks before the argument date to review any requirements for in person appearance or to make any necessary arrangements for remote appearance.\n\nPlease note however that if you wish to appear remotely by telephone you will need to file a motion requesting permission to do so.\n\nBe sure to review the GUIDELINES for important information about your hearing.\n\nIf you are the specific attorney or self-represented party who will be arguing, use the ACKNOWLEDGMENT OF HEARING NOTICE filing type in ACMS no later than 28 days before the hearing date. No form or other attachment is required. If you will not be arguing, do not file an acknowledgment of hearing notice. [Entered: 02/06/2023 11:58 AM]", + "description_html": "

    NOTICE OF ORAL ARGUMENT on Monday, April 17, 2023- 09:30 A.M. - Courtroom 1 - Scheduled Location: Pasadena 

    \n\n

    View the Oral Argument Calendar for your case here.

    \n\n

    NOTE: Although your case is currently scheduled for oral argument, the panel may decide to submit the case on the briefs instead. See Fed. R. App. P. 34. Absent further order of the court, if the court does determine that oral argument is required in this case, you may appear in person at the Courthouse or remotely by video. At this time, even when in person hearings resume, an election to appear remotely by video will not require a motion, and any attorney wishing to appear in person must provide proof of vaccination. If the panel determines that it will hold oral argument in your case, the Clerk's Office will contact you at least two weeks before the argument date to review any requirements for in person appearance or to make any necessary arrangements for remote appearance.

    \n\n

    Please note however that if you wish to appear remotely by telephone you will need to file a motion requesting permission to do so.

    \n\n

    Be sure to review the GUIDELINES for important information about your hearing.

    \n\n

    If you are the specific attorney or self-represented party who will be arguing, use the ACKNOWLEDGMENT OF HEARING NOTICE filing type in ACMS no later than 28 days before the hearing date. No form or other attachment is required. If you will not be arguing, do not file an acknowledgment of hearing notice. [Entered: 02/06/2023 11:58 AM]

    ", + "document_number": 28, + "pacer_doc_id": "b7546c7c-58a6-ed11-aad1-001dd807211a", + "page_count": 0 + }, + { + "date_entered": "2023-02-14T04:51:00", + "date_filed": "2023-02-14T04:51:00", + "description": "ACKNOWLEDGMENT of hearing notice filed by Nehal Kamani for Respondent Merrick B. Garland. [Entered: 02/14/2023 04:51 AM]", + "description_html": "

    ACKNOWLEDGMENT of hearing notice filed by Nehal Kamani for Respondent Merrick B. Garland. [Entered: 02/14/2023 04:51 AM]

    ", + "document_number": 29, + "pacer_doc_id": "0f75e129-66ac-ed11-aad1-001dd80725bf", + "page_count": 0 + }, + { + "date_entered": "2023-02-21T06:50:00", + "date_filed": "2023-02-21T06:50:00", + "description": "MOTION to submit case on briefs without oral argument filed by Respondent Merrick B. Garland. [Entered: 02/21/2023 06:50 AM]", + "description_html": "

    MOTION to submit case on briefs without oral argument filed by Respondent Merrick B. Garland. [Entered: 02/21/2023 06:50 AM]

    ", + "document_number": 30, + "pacer_doc_id": "3515a0f7-f6b1-ed11-83fe-001dd80725bf", + "page_count": 0 + }, + { + "date_entered": "2023-02-23T10:54:00", + "date_filed": "2023-02-23T10:54:00", + "description": "ORDER FILED. The panel unanimously finds that the facts and legal arguments in this case are adequately presented in the briefs and record, and that the decisional process would not be significantly aided by oral argument. Fed. R. App. P. 34(a)(2). Therefore, the parties\u2019 joint motion to submit the petition on the briefs, dkt. 30, is GRANTED. This matter is ordered submitted without oral argument on April 17, 2023, in Pasadena, California. [Entered: 02/23/2023 10:54 AM]", + "description_html": "

    ORDER FILED. The panel unanimously finds that the facts and legal arguments in this case are adequately presented in the briefs and record, and that the decisional process would not be significantly aided by oral argument. Fed. R. App. P. 34(a)(2). Therefore, the parties\u2019 joint motion to submit the petition on the briefs, dkt. 30, is GRANTED. This matter is ordered submitted without oral argument on April 17, 2023, in Pasadena, California. [Entered: 02/23/2023 10:54 AM]

    ", + "document_number": 31, + "pacer_doc_id": "596c6400-abb3-ed11-83fe-001dd80725bf", + "page_count": 1 + }, + { + "date_entered": "2023-04-17T11:58:00", + "date_filed": "2023-04-17T11:58:00", + "description": "SUBMITTED ON THE BRIEFS to Kim McLane WARDLAW, Holly A. THOMAS, Lee H. Rosenthal. [Entered: 04/17/2023 11:58 AM]", + "description_html": "

    SUBMITTED ON THE BRIEFS to Kim McLane WARDLAW, Holly A. THOMAS, Lee H. Rosenthal. [Entered: 04/17/2023 11:58 AM]

    ", + "document_number": 32, + "pacer_doc_id": "dce20fc4-51dd-ed11-a7c6-001dd807211a", + "page_count": 0 + }, + { + "date_entered": "2023-04-19T09:34:00", + "date_filed": "2023-04-19T09:34:00", + "description": "MEMORANDUM DISPOSITION\u00a0(Kim McLane WARDLAW, Holly A. THOMAS, Lee H. Rosenthal)\u00a0DISMISSED in part and DENIED in part. FILED AND ENTERED JUDGMENT. [Entered: 04/19/2023 09:34 AM]", + "description_html": "

    MEMORANDUM DISPOSITION (Kim McLane WARDLAW, Holly A. THOMAS, Lee H. Rosenthal) DISMISSED in part and DENIED in part. FILED AND ENTERED JUDGMENT. [Entered: 04/19/2023 09:34 AM]

    ", + "document_number": 33, + "pacer_doc_id": "a329c288-cfde-ed11-a7c6-001dd80725bf", + "page_count": 9 + }, + { + "date_entered": "2023-06-12T10:23:00", + "date_filed": "2023-06-12T10:23:00", + "description": "MANDATE ISSUED Kim McLane WARDLAW, Holly A. THOMAS, Lee H. Rosenthal [Entered: 06/12/2023 10:23 AM]", + "description_html": "

    MANDATE ISSUED Kim McLane WARDLAW, Holly A. THOMAS, Lee H. Rosenthal [Entered: 06/12/2023 10:23 AM]

    ", + "document_number": 34, + "pacer_doc_id": "3d79438d-4509-ee11-8f6d-001dd808569d", + "page_count": 1 + } + ], + "docket_number": "22-21", + "fee_status": "Paid", + "originating_court_information": { + "RESTRICTED_ALIEN_NUMBER": "A022-317-477", + "identifier": "95", + "name": "San Francisco Northern California" + }, + "pacer_case_id": "c8d83e85-5b6e-ec11-b820-00155d36fcd4", + "parties": [ + { + "attorneys": [ + { + "contact": "Direct: 818-784-1126\nEmail: lisapickering@hotmail.com\nLaw Office of Roni P. Deutsch\n16255 Ventura Boulevard\nSuite 610\nEncino, CA 91436", + "name": "Ms. Lisa Pickering, Attorney", + "roles": [ + "Retained" + ] + }, + { + "contact": "Direct: 213-487-9211\nEmail: raming@raminusa.com\nLaw Offices of Ramin Ghashghaei, Inc.\n23371 Mulholland Dr.\nSuite 399\nWoodland Hills, CA 91364", + "name": "Ramin Ghashghaei, Attorney", + "roles": [ + "Retained" + ] + } + ], + "name": "JOSE LUIS LOPEZ GUEVARA", + "type": "Petitioner", + "unparsed": [ + "\u00a0\u00a0\u00a0\u00a0A022-317-477, " + ] + }, + { + "attorneys": [ + { + "contact": "Email: nehal.kamani@usdoj.gov\nDOJ - U.S. Department of Justice\nCivil Division/Office of Immigration Litigation\nP.O. Box 878, Benjamin Franklin Station\nWashington, DC 20044", + "name": "Mrs. Nehal Kamani, Attorney", + "roles": [ + "Government" + ] + }, + { + "contact": "Email: Ninth.Circuit.OIL@usdoj.gov\nDOJ - U.S. Department of Justice\nCivil Division/Office of Immigration Litigation\nP.O. Box 878, Benjamin Franklin Station\nWashington, DC 20044", + "name": "OIL", + "roles": [ + "Government" + ] + } + ], + "name": "MERRICK B. GARLAND, ATTORNEY GENERAL", + "type": "Respondent" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/dockets/acms/ca9_22-22.acms_json b/tests/examples/pacer/dockets/acms/ca9_22-22.acms_json new file mode 100644 index 000000000..203c7622b --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca9_22-22.acms_json @@ -0,0 +1,449 @@ +{ + "caseDetails": { + "caseId": "bb647e98-5e6e-ec11-b820-00155d36fcd4", + "caseNumber": "22-22", + "name": "Chavez Soto, et al. v. Garland", + "caseOpened": "2022-01-05", + "aNumber": "A216-267-791", + "receivedDate": "2022-01-05T19:41:23Z", + "partyAttorneyList": "
    MARIA DEL CARMEN CHAVEZ SOTO
        A216-267-791,
        Petitioner,
    Mr. Jeremy Michael Clason, Attorney
    Direct: 559-681-4717
    Email: jeremy@clasonimmigration.com
    [Retained]
    Clason Immigration Law, PC
    1315 Van Ness Avenue
    Suite 100
    Fresno, CA 93721

     

    ANTONIA GUADALUPE GOMEZ CHAVEZ
        A216-267-792,
        Petitioner,
    Mr. Jeremy Michael Clason, Attorney
    Direct: 559-681-4717
    Email: jeremy@clasonimmigration.com
    [Retained]
    Clason Immigration Law, PC
    1315 Van Ness Avenue
    Suite 100
    Fresno, CA 93721

     

    EDUARDO GOMEZ CHAVEZ
        A216-267-793,
        Petitioner,
    Mr. Jeremy Michael Clason, Attorney
    Direct: 559-681-4717
    Email: jeremy@clasonimmigration.com
    [Retained]
    Clason Immigration Law, PC
    1315 Van Ness Avenue
    Suite 100
    Fresno, CA 93721

     

    MERRICK B. GARLAND, ATTORNEY GENERAL
        Respondent,
    Mr. Andrew B. Insenga, Trial Attorney
    Email: andrew.insenga@usdoj.gov
    [Government]
    DOJ - U.S. Department of Justice
    Civil Division/Office of Immigration Litigation
    P.O. Box 878, Benjamin Franklin Station
    Washington, DC 20044

     

    OIL
    Email: Ninth.Circuit.OIL@usdoj.gov
    [Government]
    DOJ - U.S. Department of Justice
    Civil Division/Office of Immigration Litigation
    P.O. Box 878, Benjamin Franklin Station
    Washington, DC 20044

     

    ", + "shortCaption": "MARIA DEL CARMEN CHAVEZ SOTO; ANTONIA GUADALUPE GOMEZ CHAVEZ; EDUARDO GOMEZ CHAVEZ,
    \r\n
    \r\n                     Petitioners,
    \r\n
    \r\n   v.
    \r\n
    \r\nMERRICK B. GARLAND, Attorney General,
    \r\n
    \r\n                     Respondent.", + "court": { + "name": "Board of Immigration Appeals", + "identifier": "95" + }, + "caseType": "Agency", + "caseSubType": "Immigration", + "caseSubSubType": null, + "districtCourtName": "San Francisco Northern California", + "feeStatus": "Paid", + "byteCount": 2598 + }, + "docketInfo": { + "isCaseSealed": false, + "isUserCaseParticipant": false, + "byteCount": 12218, + "docketEntries": [ + { + "endDate": "2022-01-05", + "endDateFormatted": "01/05/2022", + "entryNumber": 1, + "docketEntryText": "

    PETITION FOR REVIEW filed by Petitioner(s). [Entered: 01/05/2022 11:40:00 AM]

    ", + "docketEntryId": "8a926043-5f6e-ec11-8f8e-001dd803244d", + "createdOn": "2022-01-05T19:40:03Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-05", + "endDateFormatted": "01/05/2022", + "entryNumber": 4, + "docketEntryText": "

    BRIEFING SCHEDULE NOTICE. Certified Administrative Record due 2/9/2022, Petitioner Opening Brief due 4/11/2022, Respondent Answering Brief due 6/9/2022. Optional Reply Brief due 21 days after service of Answering Brief. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.

    \n\n

    Failure of the petitioner to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1. [Entered: 01/05/2022 01:20:00 PM]

    ", + "docketEntryId": "09af2a09-6d6e-ec11-8f8e-001dd803244d", + "createdOn": "2022-01-05T21:18:42Z", + "documentCount": 1, + "pageCount": 2, + "fileSize": 247, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-05", + "endDateFormatted": "01/05/2022", + "entryNumber": 2, + "docketEntryText": "

    AGENCY DECISION on review dated 12/8/2021. [Entered: 01/05/2022 11:40:00 AM]

    ", + "docketEntryId": "1cc97357-5f6e-ec11-8f8e-001dd8032490", + "createdOn": "2022-01-05T19:40:38Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-05", + "endDateFormatted": "01/05/2022", + "entryNumber": 3, + "docketEntryText": "

    CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 1/5/2022.
    \nThe U.S. Court of Appeals docket number 22-22 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.  It is your responsibility to alert the court if your contact information changes.
    \nResources Available
    \nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the Immigration Outline and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 01/05/2022 01:11:00 PM]

    ", + "docketEntryId": "471fe81c-6c6e-ec11-8f8f-001dd8032554", + "createdOn": "2022-01-05T21:12:01Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-06", + "endDateFormatted": "01/06/2022", + "entryNumber": 7, + "docketEntryText": "

    NOTICE OF APPEARANCE by Andrew B. Insenga for Merrick B. Garland. [Entered: 01/06/2022 01:23:00 PM]

    ", + "docketEntryId": "bf7ba7b9-366f-ec11-8f8e-001dd8021743", + "createdOn": "2022-01-06T21:22:24Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-06", + "endDateFormatted": "01/06/2022", + "entryNumber": 5, + "docketEntryText": "

    MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 01/06/2022 08:53:00 AM]

    ", + "docketEntryId": "7c300e26-116f-ec11-8f8e-001dd80217c1", + "createdOn": "2022-01-06T16:53:20Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-06", + "endDateFormatted": "01/06/2022", + "entryNumber": 6, + "docketEntryText": "

    Motion to Stay Removal filed at DE 5; Respondent Response to Stay Motion (Filed after PFR) due 3/2/2022. [Entered: 01/06/2022 09:23:00 AM]

    ", + "docketEntryId": "2cf364db-146f-ec11-8f8e-001dd80217c1", + "createdOn": "2022-01-06T17:19:52Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-01-06", + "endDateFormatted": "01/06/2022", + "entryNumber": 8, + "docketEntryText": "

    ADDED Andrew B. Insenga for Respondent Merrick B. Garland. [Entered: 01/06/2022 03:06:00 PM]

    ", + "docketEntryId": "5cb1ad42-456f-ec11-8f8e-001dd8021c5f", + "createdOn": "2022-01-06T23:06:28Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-02-07", + "endDateFormatted": "02/07/2022", + "entryNumber": 9, + "docketEntryText": "

    CERTIFIED ADMINISTRATIVE RECORD filed. [Entered: 02/07/2022 09:48:00 AM]

    ", + "docketEntryId": "7e10b430-3e88-ec11-8d20-001dd8009d95", + "createdOn": "2022-02-07T17:48:48Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-03-02", + "endDateFormatted": "03/02/2022", + "entryNumber": 10, + "docketEntryText": "

    OPPOSITION to motion to stay removal filed by Respondent Merrick B. Garland. [Entered: 03/02/2022 02:25:00 PM]

    ", + "docketEntryId": "acfef8aa-779a-ec11-b3fe-001dd8023df5", + "createdOn": "2022-03-02T22:25:38Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-03-02", + "endDateFormatted": "03/02/2022", + "entryNumber": 11, + "docketEntryText": "

    MOTION for summary disposition filed by Respondent Merrick B. Garland. [Entered: 03/02/2022 02:27:00 PM]

    ", + "docketEntryId": "3bd57ef3-779a-ec11-b3fe-001dd8023df5", + "createdOn": "2022-03-02T22:27:35Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-04-07", + "endDateFormatted": "04/07/2022", + "entryNumber": 12, + "docketEntryText": "

    STREAMLINED request for extension of time to file opening brief for 30 days filed by Petitioner Antonia Guadalupe Gomez Chavez, Petitioner Maria Del Carmen Chavez Soto, Petitioner Eduardo Gomez Chavez. [Entered: 04/07/2022 05:49:00 AM]

    ", + "docketEntryId": "28ee183b-71b6-ec11-983e-001dd80331f3", + "createdOn": "2022-04-07T12:50:07Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-04-07", + "endDateFormatted": "04/07/2022", + "entryNumber": 13, + "docketEntryText": "

    ORDER FILED. Streamlined Request for Extension of Time to File Opening Brief for 30 days (DE 12) denied as unnecessary. The briefing schedule is stayed until resolution of the pending motion for summary disposition. [Entered: 04/07/2022 09:39:00 AM]

    ", + "docketEntryId": "2ab7b613-91b6-ec11-983e-001dd80331f3", + "createdOn": "2022-04-07T16:38:02Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-05-17", + "endDateFormatted": "05/17/2022", + "entryNumber": 14, + "docketEntryText": "

    ORDER FILED. Lisa B. Fitzgerald, Appellate Commissioner.
    \nThe government’s motion for summary disposition (Docket Entry No. 11) is denied because the questions raised by this petition are sufficient to warrant full briefing. See 9th Cir. R. 3-6(a) (standard for summary disposition); see also United States v. Hooton, 693 F.2d 857, 858 (9th Cir. 1982).
    \nThe opening brief is due July 8, 2022. The answering brief is due September 6, 2022. The optional reply brief is due within 21 days of service of the answering brief. [Entered: 05/17/2022 04:46:00 PM]

    ", + "docketEntryId": "bebceb1d-3bd6-ec11-a7b4-001dd8035c83", + "createdOn": "2022-05-17T23:43:14Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 201, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-07-06", + "endDateFormatted": "07/06/2022", + "entryNumber": 15, + "docketEntryText": "

    OPENING BRIEF submitted for filing by Petitioner Antonia Guadalupe Gomez Chavez, Petitioner Maria Del Carmen Chavez Soto, Petitioner Eduardo Gomez Chavez. [Entered: 07/06/2022 11:25:00 AM]

    ", + "docketEntryId": "83aed8ed-57fd-ec11-bb3b-001dd803d3ab", + "createdOn": "2022-07-06T18:17:54Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-07-06", + "endDateFormatted": "07/06/2022", + "entryNumber": 16, + "docketEntryText": "

    ORDER FILED. Opening Brief submitted at DE 15 by petitioners is filed. Within 7 days of this order, petitioners must file 6 copies of the brief in paper format bound with blue front cover pages. Each copy must include certification at the end that the copy is identical to the electronic version. The paper copies must be sent to the Clerk’s principal office. [Entered: 07/06/2022 01:44:00 PM]

    ", + "docketEntryId": "28f51114-6cfd-ec11-bb3b-001dd803d3ab", + "createdOn": "2022-07-06T20:42:06Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 180, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-07-12", + "endDateFormatted": "07/12/2022", + "entryNumber": 17, + "docketEntryText": "

    Paper copies (6) of Opening Brief submitted at DE 15 by Petitioners received 07/11/2022. [Entered: 07/12/2022 11:26:00 AM]

    ", + "docketEntryId": "7a9a06e6-0f02-ed11-bb3a-001dd803d94e", + "createdOn": "2022-07-12T18:24:52Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-08-31", + "endDateFormatted": "08/31/2022", + "entryNumber": 18, + "docketEntryText": "

    STREAMLINED request for extension of time to file answering brief for 30 days filed by Respondent Merrick B. Garland. [Entered: 08/31/2022 02:29:00 PM]

    ", + "docketEntryId": "b686c90d-7429-ed11-b83c-001dd8040cb8", + "createdOn": "2022-08-31T21:29:56Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-08-31", + "endDateFormatted": "08/31/2022", + "entryNumber": 19, + "docketEntryText": "

    ORDER FILED. Streamlined Request for Extension of Time to File Answering Brief for 30 days (DE 18) granted. Amended briefing schedule: Immigration Respondent Answering Brief due 10/6/2022. Optional Reply Brief due 21 days after service of Answering Brief. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1. [Entered: 08/31/2022 03:35:00 PM]

    ", + "docketEntryId": "c72bd004-7d29-ed11-b83c-001dd8040cb8", + "createdOn": "2022-08-31T22:34:10Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-10-05", + "endDateFormatted": "10/05/2022", + "entryNumber": 20, + "docketEntryText": "

    MOTION to extend time to file answering brief filed by Respondent Merrick B. Garland. [Entered: 10/05/2022 11:09:00 AM]

    ", + "docketEntryId": "2b4723d3-d844-ed11-9daf-001dd8021ae8", + "createdOn": "2022-10-05T18:09:17Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-10-05", + "endDateFormatted": "10/05/2022", + "entryNumber": 21, + "docketEntryText": "

    ORDER FILED. Respondent's unopposed motion (Docket Entry No. 20) for an extension of time to file the answering brief is granted.
    \nThe respondent's answering brief is due November 7, 2022. The optional reply brief is due within 21 days after service of the answering brief. [Entered: 10/05/2022 01:32:00 PM]

    ", + "docketEntryId": "1e93379b-ec44-ed11-9daf-001dd8021ae8", + "createdOn": "2022-10-05T20:31:03Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 176, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-11-03", + "endDateFormatted": "11/03/2022", + "entryNumber": 23, + "docketEntryText": "

    ORDER FILED. Answering Brief submitted at DE 22 by Respondent Merrick B. Garland is filed. Within 7 days of this order, Respondent must file 6 copies of the brief in paper format bound with red front cover pages. Each copy must include certification at the end that the copy is identical to the electronic version. The paper copies must be sent to the Clerk’s principal office. [Entered: 11/03/2022 02:48 PM]

    ", + "docketEntryId": "eed2cd09-c15b-ed11-9561-001dd80701be", + "createdOn": "2022-11-03T21:47:01Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 180, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-11-03", + "endDateFormatted": "11/03/2022", + "entryNumber": 22, + "docketEntryText": "

    ANSWERING BRIEF submitted for filing by Respondent Merrick B. Garland. [Entered: 11/03/2022 12:22 PM]

    ", + "docketEntryId": "141064ce-ac5b-ed11-9561-001dd80725bf", + "createdOn": "2022-11-03T19:22:12Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-11-18", + "endDateFormatted": "11/18/2022", + "entryNumber": 24, + "docketEntryText": "

    NOTICE: This case is being considered for an upcoming oral argument calendar in San Francisco, CA.

    \n\n

    Please review the San Francisco sitting dates for March 6-10 and March 27-31, 2023 at http://www.ca9.uscourts.gov/court_sessions. If you have an unavoidable conflict on either of the dates, please file Form 32 (http://www.ca9.uscourts.gov/forms/form32.pdf) within 3 business days of this notice using the ACMS filing type Response to Case Being Considered for Oral Argument. Please follow the form's instructions (http://www.ca9.uscourts.gov/forms/form32instructions.pdf) carefully.

    \n\n

    When setting your argument date, the court will try to work around unavoidable conflicts; the court is not able to accommodate mere scheduling preferences. You will receive notice that your case has been assigned to a calendar approximately 10 weeks before the scheduled oral argument date.

    \n\n

    If the parties wish to discuss settlement before an argument date is set, they should jointly request referral to the mediation unit by filing a motion within 3 business days of this notice, using the filing type: Motion to Refer to Mediation. [Entered: 11/18/2022 10:19 AM]

    ", + "docketEntryId": "40818337-6d67-ed11-9562-001dd80725bf", + "createdOn": "2022-11-18T18:17:20Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2022-11-21", + "endDateFormatted": "11/21/2022", + "entryNumber": 25, + "docketEntryText": "

    Paper copies (6) of Answering Brief submitted at DE 22 by Respondent Merrick B. Garland received. [Entered: 11/21/2022 02:31 PM]

    ", + "docketEntryId": "8239ae07-ec69-ed11-9562-001dd80725bf", + "createdOn": "2022-11-21T22:30:08Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-01-17", + "endDateFormatted": "01/17/2023", + "entryNumber": 26, + "docketEntryText": "

    NOTICE OF ORAL ARGUMENT on Thursday, March 30, 2023 - 09:00 A.M. - Courtroom 3 - Scheduled Location: San Francisco 

    \n\n

    View the Oral Argument Calendar for your case here.

    \n\n

    NOTE: Although your case is currently scheduled for oral argument, the panel may decide to submit the case on the briefs instead. See Fed. R. App. P. 34. Absent further order of the court, if the court does determine that oral argument is required in this case, you may appear in person at the Courthouse or remotely by video. At this time, even when in person hearings resume, an election to appear remotely by video will not require a motion, and any attorney wishing to appear in person must provide proof of vaccination. If the panel determines that it will hold oral argument in your case, the Clerk's Office will contact you at least two weeks before the argument date to review any requirements for in person appearance or to make any necessary arrangements for remote appearance.

    \n\n

    Please note however that if you wish to appear remotely by telephone you will need to file a motion requesting permission to do so.

    \n\n

    Be sure to review the GUIDELINES for important information about your hearing.

    \n\n

    If you are the specific attorney or self-represented party who will be arguing, use the ACKNOWLEDGMENT OF HEARING NOTICE filing type in ACMS no later than 28 days before the hearing date. No form or other attachment is required. If you will not be arguing, do not file an acknowledgment of hearing notice. [Entered: 01/17/2023 10:39 AM]

    \n\n", + "docketEntryId": "917bba1f-9696-ed11-aad1-001dd80725bf", + "createdOn": "2023-01-17T18:38:32Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-03-07", + "endDateFormatted": "03/07/2023", + "entryNumber": 27, + "docketEntryText": "

    ORDER FILED.  The court is of the unanimous opinion that the facts and legal argument are adequately presented in the briefs and record, and the decisional process would not be significantly aided by oral argument.
    \nTherefore, this matter is ordered submitted on the briefs and record without oral argument on March 30, 2023, in San Francisco, California. Fed. R. App. P. 34(a)(2). [Entered: 03/07/2023 10:52 AM]

    ", + "docketEntryId": "ac7c4a0e-19bd-ed11-83ff-001dd807211a", + "createdOn": "2023-03-07T18:51:31Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 176, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-03-30", + "endDateFormatted": "03/30/2023", + "entryNumber": 28, + "docketEntryText": "

    SUBMITTED ON THE BRIEFS to Milan D. SMITH, Jr., John B. OWENS, Xavier Rodriguez. [Entered: 03/30/2023 11:31 AM]

    ", + "docketEntryId": "bad7f3fa-28cf-ed11-b596-001dd80701be", + "createdOn": "2023-03-30T18:30:47Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-04-03", + "endDateFormatted": "04/03/2023", + "entryNumber": 29, + "docketEntryText": "

    MEMORANDUM DISPOSITION (Milan D. SMITH, Jr., John B. OWENS, Xavier Rodriguez) The stay of removal remains in place until the mandate issues. PETITION DISMISSED. FILED AND ENTERED JUDGMENT. [Entered: 04/03/2023 09:50 AM]

    ", + "docketEntryId": "583c6255-3fd2-ed11-b596-001dd80701be", + "createdOn": "2023-04-03T16:48:21Z", + "documentCount": 2, + "pageCount": 7, + "fileSize": 558, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-05-26", + "endDateFormatted": "05/26/2023", + "entryNumber": 30, + "docketEntryText": "

    MANDATE ISSUED Milan D. SMITH, Jr., John B. OWENS, Xavier Rodriguez [Entered: 05/26/2023 08:42 AM]

    ", + "docketEntryId": "dfac2beb-dafb-ed11-8849-001dd80701be", + "createdOn": "2023-05-26T15:35:21Z", + "documentCount": 1, + "pageCount": 1, + "fileSize": 126, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + } + ] + } +} diff --git a/tests/examples/pacer/dockets/acms/ca9_22-22.json b/tests/examples/pacer/dockets/acms/ca9_22-22.json new file mode 100644 index 000000000..7ab0029df --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca9_22-22.json @@ -0,0 +1,357 @@ +{ + "appeal_from": "Board of Immigration Appeals", + "case_name": "Chavez Soto, et al. v. Garland", + "case_type_information": "Agency, Immigration", + "court_id": "ca9", + "date_filed": "2022-01-05", + "docket_entries": [ + { + "date_entered": "2022-01-05T11:40:00", + "date_filed": "2022-01-05T11:40:00", + "description": "PETITION FOR REVIEW filed by Petitioner(s). [Entered: 01/05/2022 11:40:00 AM]", + "description_html": "

    PETITION FOR REVIEW filed by Petitioner(s). [Entered: 01/05/2022 11:40:00 AM]

    ", + "document_number": 1, + "pacer_doc_id": "8a926043-5f6e-ec11-8f8e-001dd803244d", + "page_count": 0 + }, + { + "date_entered": "2022-01-05T13:20:00", + "date_filed": "2022-01-05T13:20:00", + "description": "BRIEFING SCHEDULE NOTICE. Certified Administrative Record due 2/9/2022, Petitioner Opening Brief due 4/11/2022, Respondent Answering Brief due 6/9/2022.\u00a0Optional Reply Brief due 21 days after service of Answering Brief. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.\n\nFailure of the petitioner to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1. [Entered: 01/05/2022 01:20:00 PM]", + "description_html": "

    BRIEFING SCHEDULE NOTICE. Certified Administrative Record due 2/9/2022, Petitioner Opening Brief due 4/11/2022, Respondent Answering Brief due 6/9/2022. Optional Reply Brief due 21 days after service of Answering Brief. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.

    \n\n

    Failure of the petitioner to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1. [Entered: 01/05/2022 01:20:00 PM]

    ", + "document_number": 4, + "pacer_doc_id": "09af2a09-6d6e-ec11-8f8e-001dd803244d", + "page_count": 2 + }, + { + "date_entered": "2022-01-05T11:40:00", + "date_filed": "2022-01-05T11:40:00", + "description": "AGENCY DECISION\u00a0on review dated 12/8/2021. [Entered: 01/05/2022 11:40:00 AM]", + "description_html": "

    AGENCY DECISION on review dated 12/8/2021. [Entered: 01/05/2022 11:40:00 AM]

    ", + "document_number": 2, + "pacer_doc_id": "1cc97357-5f6e-ec11-8f8e-001dd8032490", + "page_count": 0 + }, + { + "date_entered": "2022-01-05T13:11:00", + "date_filed": "2022-01-05T13:11:00", + "description": "CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 1/5/2022.\nThe U.S. Court of Appeals docket number 22-22 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.\u00a0 It is your responsibility to alert the court if your contact information changes.\nResources Available\nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the\u00a0Immigration Outline\u00a0and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 01/05/2022 01:11:00 PM]", + "description_html": "

    CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 1/5/2022.
    \nThe U.S. Court of Appeals docket number 22-22 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.  It is your responsibility to alert the court if your contact information changes.
    \nResources Available
    \nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the Immigration Outline and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 01/05/2022 01:11:00 PM]

    ", + "document_number": 3, + "pacer_doc_id": "471fe81c-6c6e-ec11-8f8f-001dd8032554", + "page_count": 0 + }, + { + "date_entered": "2022-01-06T13:23:00", + "date_filed": "2022-01-06T13:23:00", + "description": "NOTICE OF APPEARANCE by Andrew B. Insenga for Merrick B. Garland. [Entered: 01/06/2022 01:23:00 PM]", + "description_html": "

    NOTICE OF APPEARANCE by Andrew B. Insenga for Merrick B. Garland. [Entered: 01/06/2022 01:23:00 PM]

    ", + "document_number": 7, + "pacer_doc_id": "bf7ba7b9-366f-ec11-8f8e-001dd8021743", + "page_count": 0 + }, + { + "date_entered": "2022-01-06T08:53:00", + "date_filed": "2022-01-06T08:53:00", + "description": "MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 01/06/2022 08:53:00 AM]", + "description_html": "

    MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 01/06/2022 08:53:00 AM]

    ", + "document_number": 5, + "pacer_doc_id": "7c300e26-116f-ec11-8f8e-001dd80217c1", + "page_count": 0 + }, + { + "date_entered": "2022-01-06T09:23:00", + "date_filed": "2022-01-06T09:23:00", + "description": "Motion to Stay Removal filed at DE 5; Respondent Response to Stay Motion (Filed after PFR) due 3/2/2022. [Entered: 01/06/2022 09:23:00 AM]", + "description_html": "

    Motion to Stay Removal filed at DE 5; Respondent Response to Stay Motion (Filed after PFR) due 3/2/2022. [Entered: 01/06/2022 09:23:00 AM]

    ", + "document_number": 6, + "pacer_doc_id": "2cf364db-146f-ec11-8f8e-001dd80217c1", + "page_count": 0 + }, + { + "date_entered": "2022-01-06T15:06:00", + "date_filed": "2022-01-06T15:06:00", + "description": "ADDED Andrew B. Insenga for Respondent Merrick B. Garland. [Entered: 01/06/2022 03:06:00 PM]", + "description_html": "

    ADDED Andrew B. Insenga for Respondent Merrick B. Garland. [Entered: 01/06/2022 03:06:00 PM]

    ", + "document_number": 8, + "pacer_doc_id": "5cb1ad42-456f-ec11-8f8e-001dd8021c5f", + "page_count": 0 + }, + { + "date_entered": "2022-02-07T09:48:00", + "date_filed": "2022-02-07T09:48:00", + "description": "CERTIFIED ADMINISTRATIVE RECORD filed. [Entered: 02/07/2022 09:48:00 AM]", + "description_html": "

    CERTIFIED ADMINISTRATIVE RECORD filed. [Entered: 02/07/2022 09:48:00 AM]

    ", + "document_number": 9, + "pacer_doc_id": "7e10b430-3e88-ec11-8d20-001dd8009d95", + "page_count": 0 + }, + { + "date_entered": "2022-03-02T14:25:00", + "date_filed": "2022-03-02T14:25:00", + "description": "OPPOSITION to motion to stay removal filed by Respondent Merrick B. Garland. [Entered: 03/02/2022 02:25:00 PM]", + "description_html": "

    OPPOSITION to motion to stay removal filed by Respondent Merrick B. Garland. [Entered: 03/02/2022 02:25:00 PM]

    ", + "document_number": 10, + "pacer_doc_id": "acfef8aa-779a-ec11-b3fe-001dd8023df5", + "page_count": 0 + }, + { + "date_entered": "2022-03-02T14:27:00", + "date_filed": "2022-03-02T14:27:00", + "description": "MOTION for summary disposition filed by Respondent Merrick B. Garland. [Entered: 03/02/2022 02:27:00 PM]", + "description_html": "

    MOTION for summary disposition filed by Respondent Merrick B. Garland. [Entered: 03/02/2022 02:27:00 PM]

    ", + "document_number": 11, + "pacer_doc_id": "3bd57ef3-779a-ec11-b3fe-001dd8023df5", + "page_count": 0 + }, + { + "date_entered": "2022-04-07T05:49:00", + "date_filed": "2022-04-07T05:49:00", + "description": "STREAMLINED request for extension of time to file opening brief for 30 days filed by Petitioner Antonia Guadalupe Gomez Chavez, Petitioner Maria Del Carmen Chavez Soto, Petitioner Eduardo Gomez Chavez. [Entered: 04/07/2022 05:49:00 AM]", + "description_html": "

    STREAMLINED request for extension of time to file opening brief for 30 days filed by Petitioner Antonia Guadalupe Gomez Chavez, Petitioner Maria Del Carmen Chavez Soto, Petitioner Eduardo Gomez Chavez. [Entered: 04/07/2022 05:49:00 AM]

    ", + "document_number": 12, + "pacer_doc_id": "28ee183b-71b6-ec11-983e-001dd80331f3", + "page_count": 0 + }, + { + "date_entered": "2022-04-07T09:39:00", + "date_filed": "2022-04-07T09:39:00", + "description": "ORDER FILED. Streamlined Request for Extension of Time to File Opening Brief for 30 days (DE 12) denied as unnecessary. The briefing schedule is stayed until resolution of the pending motion for summary disposition. [Entered: 04/07/2022 09:39:00 AM]", + "description_html": "

    ORDER FILED. Streamlined Request for Extension of Time to File Opening Brief for 30 days (DE 12) denied as unnecessary. The briefing schedule is stayed until resolution of the pending motion for summary disposition. [Entered: 04/07/2022 09:39:00 AM]

    ", + "document_number": 13, + "pacer_doc_id": "2ab7b613-91b6-ec11-983e-001dd80331f3", + "page_count": 0 + }, + { + "date_entered": "2022-05-17T16:46:00", + "date_filed": "2022-05-17T16:46:00", + "description": "ORDER FILED. Lisa B. Fitzgerald, Appellate Commissioner.\nThe government\u2019s motion for summary disposition (Docket Entry No. 11) is denied because the questions raised by this petition are sufficient to warrant full briefing. See 9th Cir. R. 3-6(a) (standard for summary disposition); see also United States v. Hooton, 693 F.2d 857, 858 (9th Cir. 1982).\nThe opening brief is due July 8, 2022. The answering brief is due September 6, 2022. The optional reply brief is due within 21 days of service of the answering brief. [Entered: 05/17/2022 04:46:00 PM]", + "description_html": "

    ORDER FILED. Lisa B. Fitzgerald, Appellate Commissioner.
    \nThe government\u2019s motion for summary disposition (Docket Entry No. 11) is denied because the questions raised by this petition are sufficient to warrant full briefing. See 9th Cir. R. 3-6(a) (standard for summary disposition); see also United States v. Hooton, 693 F.2d 857, 858 (9th Cir. 1982).
    \nThe opening brief is due July 8, 2022. The answering brief is due September 6, 2022. The optional reply brief is due within 21 days of service of the answering brief. [Entered: 05/17/2022 04:46:00 PM]

    ", + "document_number": 14, + "pacer_doc_id": "bebceb1d-3bd6-ec11-a7b4-001dd8035c83", + "page_count": 1 + }, + { + "date_entered": "2022-07-06T11:25:00", + "date_filed": "2022-07-06T11:25:00", + "description": "OPENING BRIEF submitted for filing by Petitioner Antonia Guadalupe Gomez Chavez, Petitioner Maria Del Carmen Chavez Soto, Petitioner Eduardo Gomez Chavez. [Entered: 07/06/2022 11:25:00 AM]", + "description_html": "

    OPENING BRIEF submitted for filing by Petitioner Antonia Guadalupe Gomez Chavez, Petitioner Maria Del Carmen Chavez Soto, Petitioner Eduardo Gomez Chavez. [Entered: 07/06/2022 11:25:00 AM]

    ", + "document_number": 15, + "pacer_doc_id": "83aed8ed-57fd-ec11-bb3b-001dd803d3ab", + "page_count": 0 + }, + { + "date_entered": "2022-07-06T13:44:00", + "date_filed": "2022-07-06T13:44:00", + "description": "ORDER FILED. Opening Brief submitted at DE 15 by petitioners is filed. Within 7 days of this order, petitioners must file 6 copies of the brief in paper format bound with blue front cover pages. Each copy must include certification at the end that the copy is identical to the electronic version. The paper copies must be sent to the Clerk\u2019s principal office. [Entered: 07/06/2022 01:44:00 PM]", + "description_html": "

    ORDER FILED. Opening Brief submitted at DE 15 by petitioners is filed. Within 7 days of this order, petitioners must file 6 copies of the brief in paper format bound with blue front cover pages. Each copy must include certification at the end that the copy is identical to the electronic version. The paper copies must be sent to the Clerk\u2019s principal office. [Entered: 07/06/2022 01:44:00 PM]

    ", + "document_number": 16, + "pacer_doc_id": "28f51114-6cfd-ec11-bb3b-001dd803d3ab", + "page_count": 1 + }, + { + "date_entered": "2022-07-12T11:26:00", + "date_filed": "2022-07-12T11:26:00", + "description": "Paper copies (6) of Opening Brief submitted at DE 15 by Petitioners received 07/11/2022. [Entered: 07/12/2022 11:26:00 AM]", + "description_html": "

    Paper copies (6) of Opening Brief submitted at DE 15 by Petitioners received 07/11/2022. [Entered: 07/12/2022 11:26:00 AM]

    ", + "document_number": 17, + "pacer_doc_id": "7a9a06e6-0f02-ed11-bb3a-001dd803d94e", + "page_count": 0 + }, + { + "date_entered": "2022-08-31T14:29:00", + "date_filed": "2022-08-31T14:29:00", + "description": "STREAMLINED request for extension of time to file answering brief for 30 days filed by Respondent Merrick B. Garland. [Entered: 08/31/2022 02:29:00 PM]", + "description_html": "

    STREAMLINED request for extension of time to file answering brief for 30 days filed by Respondent Merrick B. Garland. [Entered: 08/31/2022 02:29:00 PM]

    ", + "document_number": 18, + "pacer_doc_id": "b686c90d-7429-ed11-b83c-001dd8040cb8", + "page_count": 0 + }, + { + "date_entered": "2022-08-31T15:35:00", + "date_filed": "2022-08-31T15:35:00", + "description": "ORDER FILED.\u00a0Streamlined Request for Extension of Time to File Answering Brief for 30 days (DE 18) granted. Amended briefing schedule: Immigration Respondent Answering Brief due 10/6/2022. Optional Reply Brief due 21 days after service of Answering Brief. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1. [Entered: 08/31/2022 03:35:00 PM]", + "description_html": "

    ORDER FILED. Streamlined Request for Extension of Time to File Answering Brief for 30 days (DE 18) granted. Amended briefing schedule: Immigration Respondent Answering Brief due 10/6/2022. Optional Reply Brief due 21 days after service of Answering Brief. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1. [Entered: 08/31/2022 03:35:00 PM]

    ", + "document_number": 19, + "pacer_doc_id": "c72bd004-7d29-ed11-b83c-001dd8040cb8", + "page_count": 0 + }, + { + "date_entered": "2022-10-05T11:09:00", + "date_filed": "2022-10-05T11:09:00", + "description": "MOTION to extend time to file answering brief filed by Respondent Merrick B. Garland. [Entered: 10/05/2022 11:09:00 AM]", + "description_html": "

    MOTION to extend time to file answering brief filed by Respondent Merrick B. Garland. [Entered: 10/05/2022 11:09:00 AM]

    ", + "document_number": 20, + "pacer_doc_id": "2b4723d3-d844-ed11-9daf-001dd8021ae8", + "page_count": 0 + }, + { + "date_entered": "2022-10-05T13:32:00", + "date_filed": "2022-10-05T13:32:00", + "description": "ORDER FILED. Respondent's unopposed motion (Docket Entry No. 20) for an extension of time to file the answering brief is granted.\nThe respondent's answering brief is due November 7, 2022. The optional reply brief is due within 21 days after service of the answering brief. [Entered: 10/05/2022 01:32:00 PM]", + "description_html": "

    ORDER FILED. Respondent's unopposed motion (Docket Entry No. 20) for an extension of time to file the answering brief is granted.
    \nThe respondent's answering brief is due November 7, 2022. The optional reply brief is due within 21 days after service of the answering brief. [Entered: 10/05/2022 01:32:00 PM]

    ", + "document_number": 21, + "pacer_doc_id": "1e93379b-ec44-ed11-9daf-001dd8021ae8", + "page_count": 1 + }, + { + "date_entered": "2022-11-03T14:48:00", + "date_filed": "2022-11-03T14:48:00", + "description": "ORDER FILED. Answering Brief submitted at DE 22 by Respondent Merrick B. Garland is filed. Within 7 days of this order, Respondent must file 6 copies of the brief in paper format bound with red front cover pages. Each copy must include certification at the end that the copy is identical to the electronic version. The paper copies must be sent to the Clerk\u2019s principal office. [Entered: 11/03/2022 02:48 PM]", + "description_html": "

    ORDER FILED. Answering Brief submitted at DE 22 by Respondent Merrick B. Garland is filed. Within 7 days of this order, Respondent must file 6 copies of the brief in paper format bound with red front cover pages. Each copy must include certification at the end that the copy is identical to the electronic version. The paper copies must be sent to the Clerk’s principal office. [Entered: 11/03/2022 02:48 PM]

    ", + "document_number": 23, + "pacer_doc_id": "eed2cd09-c15b-ed11-9561-001dd80701be", + "page_count": 1 + }, + { + "date_entered": "2022-11-03T12:22:00", + "date_filed": "2022-11-03T12:22:00", + "description": "ANSWERING BRIEF submitted for filing by Respondent Merrick B. Garland. [Entered: 11/03/2022 12:22 PM]", + "description_html": "

    ANSWERING BRIEF submitted for filing by Respondent Merrick B. Garland. [Entered: 11/03/2022 12:22 PM]

    ", + "document_number": 22, + "pacer_doc_id": "141064ce-ac5b-ed11-9561-001dd80725bf", + "page_count": 0 + }, + { + "date_entered": "2022-11-18T10:19:00", + "date_filed": "2022-11-18T10:19:00", + "description": "NOTICE:\u00a0This case is being considered for an upcoming oral argument calendar in San Francisco, CA.\n\nPlease review the San Francisco sitting dates for March 6-10 and March 27-31, 2023\u00a0at\u00a0http://www.ca9.uscourts.gov/court_sessions. If you have an unavoidable conflict on either of the dates, please file Form 32 (http://www.ca9.uscourts.gov/forms/form32.pdf) within 3 business days of this notice using the ACMS filing type Response to Case Being Considered for Oral Argument. Please follow the form's instructions (http://www.ca9.uscourts.gov/forms/form32instructions.pdf) carefully.\n\nWhen setting your argument date, the court will try to work around unavoidable conflicts; the court is not able to accommodate mere scheduling preferences. You will receive notice that your case has been assigned to a calendar approximately 10 weeks before the scheduled oral argument date.\n\nIf the parties wish to discuss settlement before an argument date is set, they should jointly request referral to the mediation unit by filing a motion within 3 business days of this notice, using the filing type: Motion to Refer to Mediation. [Entered: 11/18/2022 10:19 AM]", + "description_html": "

    NOTICE: This case is being considered for an upcoming oral argument calendar in San Francisco, CA.

    \n\n

    Please review the San Francisco sitting dates for March 6-10 and March 27-31, 2023 at http://www.ca9.uscourts.gov/court_sessions. If you have an unavoidable conflict on either of the dates, please file Form 32 (http://www.ca9.uscourts.gov/forms/form32.pdf) within 3 business days of this notice using the ACMS filing type Response to Case Being Considered for Oral Argument. Please follow the form's instructions (http://www.ca9.uscourts.gov/forms/form32instructions.pdf) carefully.

    \n\n

    When setting your argument date, the court will try to work around unavoidable conflicts; the court is not able to accommodate mere scheduling preferences. You will receive notice that your case has been assigned to a calendar approximately 10 weeks before the scheduled oral argument date.

    \n\n

    If the parties wish to discuss settlement before an argument date is set, they should jointly request referral to the mediation unit by filing a motion within 3 business days of this notice, using the filing type: Motion to Refer to Mediation. [Entered: 11/18/2022 10:19 AM]

    ", + "document_number": 24, + "pacer_doc_id": "40818337-6d67-ed11-9562-001dd80725bf", + "page_count": 0 + }, + { + "date_entered": "2022-11-21T14:31:00", + "date_filed": "2022-11-21T14:31:00", + "description": "Paper copies (6) of Answering Brief submitted at DE 22 by Respondent Merrick B. Garland received. [Entered: 11/21/2022 02:31 PM]", + "description_html": "

    Paper copies (6) of Answering Brief submitted at DE 22 by Respondent Merrick B. Garland received. [Entered: 11/21/2022 02:31 PM]

    ", + "document_number": 25, + "pacer_doc_id": "8239ae07-ec69-ed11-9562-001dd80725bf", + "page_count": 0 + }, + { + "date_entered": "2023-01-17T10:39:00", + "date_filed": "2023-01-17T10:39:00", + "description": "NOTICE OF ORAL ARGUMENT\u00a0on Thursday, March 30, 2023 - 09:00 A.M. - Courtroom 3 - Scheduled Location: San Francisco\u00a0\n\nView the Oral Argument Calendar for your case here.\n\nNOTE: Although your case is currently scheduled for oral argument, the panel may decide to submit the case on the briefs instead. See Fed. R. App. P. 34. Absent further order of the court, if the court does determine that oral argument is required in this case, you may appear in person at the Courthouse or remotely by video. At this time, even when in person hearings resume, an election to appear remotely by video will not require a motion, and any attorney wishing to appear in person must provide proof of vaccination. If the panel determines that it will hold oral argument in your case, the Clerk's Office will contact you at least two weeks before the argument date to review any requirements for in person appearance or to make any necessary arrangements for remote appearance.\n\nPlease note however that if you wish to appear remotely by telephone you will need to file a motion requesting permission to do so.\n\nBe sure to review the GUIDELINES for important information about your hearing.\n\nIf you are the specific attorney or self-represented party who will be arguing, use the ACKNOWLEDGMENT OF HEARING NOTICE filing type in ACMS no later than 28 days before the hearing date. No form or other attachment is required. If you will not be arguing, do not file an acknowledgment of hearing notice. [Entered: 01/17/2023 10:39 AM]\n\n", + "description_html": "

    NOTICE OF ORAL ARGUMENT on Thursday, March 30, 2023 - 09:00 A.M. - Courtroom 3 - Scheduled Location: San Francisco 

    \n\n

    View the Oral Argument Calendar for your case here.

    \n\n

    NOTE: Although your case is currently scheduled for oral argument, the panel may decide to submit the case on the briefs instead. See Fed. R. App. P. 34. Absent further order of the court, if the court does determine that oral argument is required in this case, you may appear in person at the Courthouse or remotely by video. At this time, even when in person hearings resume, an election to appear remotely by video will not require a motion, and any attorney wishing to appear in person must provide proof of vaccination. If the panel determines that it will hold oral argument in your case, the Clerk's Office will contact you at least two weeks before the argument date to review any requirements for in person appearance or to make any necessary arrangements for remote appearance.

    \n\n

    Please note however that if you wish to appear remotely by telephone you will need to file a motion requesting permission to do so.

    \n\n

    Be sure to review the GUIDELINES for important information about your hearing.

    \n\n

    If you are the specific attorney or self-represented party who will be arguing, use the ACKNOWLEDGMENT OF HEARING NOTICE filing type in ACMS no later than 28 days before the hearing date. No form or other attachment is required. If you will not be arguing, do not file an acknowledgment of hearing notice. [Entered: 01/17/2023 10:39 AM]

    \n\n", + "document_number": 26, + "pacer_doc_id": "917bba1f-9696-ed11-aad1-001dd80725bf", + "page_count": 0 + }, + { + "date_entered": "2023-03-07T10:52:00", + "date_filed": "2023-03-07T10:52:00", + "description": "ORDER FILED.\u00a0\u00a0The court is of the unanimous opinion that the facts and legal argument are adequately presented in the briefs and record, and the decisional process would not be significantly aided by oral argument.\nTherefore, this matter is ordered submitted on the briefs and record without oral argument on March 30, 2023, in San Francisco, California. Fed. R. App. P. 34(a)(2). [Entered: 03/07/2023 10:52 AM]", + "description_html": "

    ORDER FILED.  The court is of the unanimous opinion that the facts and legal argument are adequately presented in the briefs and record, and the decisional process would not be significantly aided by oral argument.
    \nTherefore, this matter is ordered submitted on the briefs and record without oral argument on March 30, 2023, in San Francisco, California. Fed. R. App. P. 34(a)(2). [Entered: 03/07/2023 10:52 AM]

    ", + "document_number": 27, + "pacer_doc_id": "ac7c4a0e-19bd-ed11-83ff-001dd807211a", + "page_count": 1 + }, + { + "date_entered": "2023-03-30T11:31:00", + "date_filed": "2023-03-30T11:31:00", + "description": "SUBMITTED ON THE BRIEFS to Milan D. SMITH, Jr., John B. OWENS, Xavier Rodriguez. [Entered: 03/30/2023 11:31 AM]", + "description_html": "

    SUBMITTED ON THE BRIEFS to Milan D. SMITH, Jr., John B. OWENS, Xavier Rodriguez. [Entered: 03/30/2023 11:31 AM]

    ", + "document_number": 28, + "pacer_doc_id": "bad7f3fa-28cf-ed11-b596-001dd80701be", + "page_count": 0 + }, + { + "date_entered": "2023-04-03T09:50:00", + "date_filed": "2023-04-03T09:50:00", + "description": "MEMORANDUM DISPOSITION\u00a0(Milan D. SMITH, Jr., John B. OWENS, Xavier Rodriguez)\u00a0The stay of removal remains in place until the mandate issues.\u00a0PETITION DISMISSED.\u00a0FILED AND ENTERED JUDGMENT. [Entered: 04/03/2023 09:50 AM]", + "description_html": "

    MEMORANDUM DISPOSITION (Milan D. SMITH, Jr., John B. OWENS, Xavier Rodriguez) The stay of removal remains in place until the mandate issues. PETITION DISMISSED. FILED AND ENTERED JUDGMENT. [Entered: 04/03/2023 09:50 AM]

    ", + "document_number": 29, + "pacer_doc_id": "583c6255-3fd2-ed11-b596-001dd80701be", + "page_count": 7 + }, + { + "date_entered": "2023-05-26T08:42:00", + "date_filed": "2023-05-26T08:42:00", + "description": "MANDATE ISSUED Milan D. SMITH, Jr., John B. OWENS, Xavier Rodriguez [Entered: 05/26/2023 08:42 AM]", + "description_html": "

    MANDATE ISSUED Milan D. SMITH, Jr., John B. OWENS, Xavier Rodriguez [Entered: 05/26/2023 08:42 AM]

    ", + "document_number": 30, + "pacer_doc_id": "dfac2beb-dafb-ed11-8849-001dd80701be", + "page_count": 1 + } + ], + "docket_number": "22-22", + "fee_status": "Paid", + "originating_court_information": { + "RESTRICTED_ALIEN_NUMBER": "A216-267-791", + "identifier": "95", + "name": "San Francisco Northern California" + }, + "pacer_case_id": "bb647e98-5e6e-ec11-b820-00155d36fcd4", + "parties": [ + { + "attorneys": [ + { + "contact": "Direct: 559-681-4717\nEmail: jeremy@clasonimmigration.com\nClason Immigration Law, PC\n1315 Van Ness Avenue\nSuite 100\nFresno, CA 93721", + "name": "Mr. Jeremy Michael Clason, Attorney", + "roles": [ + "Retained" + ] + } + ], + "name": "MARIA DEL CARMEN CHAVEZ SOTO", + "type": "Petitioner", + "unparsed": [ + "\u00a0\u00a0\u00a0\u00a0A216-267-791, " + ] + }, + { + "attorneys": [ + { + "contact": "Direct: 559-681-4717\nEmail: jeremy@clasonimmigration.com\nClason Immigration Law, PC\n1315 Van Ness Avenue\nSuite 100\nFresno, CA 93721", + "name": "Mr. Jeremy Michael Clason, Attorney", + "roles": [ + "Retained" + ] + } + ], + "name": "ANTONIA GUADALUPE GOMEZ CHAVEZ", + "type": "Petitioner", + "unparsed": [ + "\u00a0\u00a0\u00a0\u00a0A216-267-792, " + ] + }, + { + "attorneys": [ + { + "contact": "Direct: 559-681-4717\nEmail: jeremy@clasonimmigration.com\nClason Immigration Law, PC\n1315 Van Ness Avenue\nSuite 100\nFresno, CA 93721", + "name": "Mr. Jeremy Michael Clason, Attorney", + "roles": [ + "Retained" + ] + } + ], + "name": "EDUARDO GOMEZ CHAVEZ", + "type": "Petitioner", + "unparsed": [ + "\u00a0\u00a0\u00a0\u00a0A216-267-793, " + ] + }, + { + "attorneys": [ + { + "contact": "Email: andrew.insenga@usdoj.gov\nDOJ - U.S. Department of Justice\nCivil Division/Office of Immigration Litigation\nP.O. Box 878, Benjamin Franklin Station\nWashington, DC 20044", + "name": "Mr. Andrew B. Insenga, Trial Attorney", + "roles": [ + "Government" + ] + }, + { + "contact": "Email: Ninth.Circuit.OIL@usdoj.gov\nDOJ - U.S. Department of Justice\nCivil Division/Office of Immigration Litigation\nP.O. Box 878, Benjamin Franklin Station\nWashington, DC 20044", + "name": "OIL", + "roles": [ + "Government" + ] + } + ], + "name": "MERRICK B. GARLAND, ATTORNEY GENERAL", + "type": "Respondent" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/dockets/acms/ca9_23-2412.acms_json b/tests/examples/pacer/dockets/acms/ca9_23-2412.acms_json new file mode 100644 index 000000000..f982490f1 --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca9_23-2412.acms_json @@ -0,0 +1,141 @@ +{ + "caseDetails": { + "caseId": "f9f5230d-a95c-ee11-a81c-001dd80ad0b3", + "caseNumber": "23-2412", + "name": "Mythong v. Garland", + "caseOpened": "2023-09-26", + "aNumber": "A023-780-088", + "receivedDate": "2023-09-22T07:00:00Z", + "partyAttorneyList": "
    ROT MYTHONG
        A023-780-088,
        Petitioner,
    Rot Mythong
    [Pro Se]
    3256 E. Ransom Street
    Long Beach, CA 90804

     

    MERRICK B. GARLAND, ATTORNEY GENERAL
        Respondent,
    Oil
    Email: Ninth.Circuit.OIL@usdoj.gov
    [Government]
    DOJ - U.S. Department of Justice
    Civil Division/Office of Immigration Litigation
    P.O. Box 878, Benjamin Franklin Station
    Washington, DC 20044
    Ms. Monica Marie Twombly, Trial Attorney
    Direct: 202-532-4470
    Email: Monica.M.Twombly@usdoj.gov
    [Government]
    DOJ - U.S. Department of Justice
    Civil Division/Office of Immigration Litigation
    P.O. Box 878, Benjamin Franklin Station
    Washington, DC 20044
    ", + "shortCaption": "ROT MYTHONG,
    \r\n
    \r\n                     Petitioner,
    \r\n
    \r\n   v.
    \r\n
    \r\nMERRICK B. GARLAND, Attorney General,
    \r\n
    \r\n                     Respondent.", + "court": { + "name": "Board of Immigration Appeals", + "identifier": "95" + }, + "caseType": "Agency", + "caseSubType": "Immigration", + "caseSubSubType": null, + "districtCourtName": "Los Angeles Central California", + "feeStatus": "IFP Pending in COA", + "byteCount": 1525 + }, + "docketInfo": { + "isCaseSealed": false, + "isUserCaseParticipant": false, + "byteCount": 3041, + "docketEntries": [ + { + "endDate": "2023-09-26", + "endDateFormatted": "09/26/2023", + "entryNumber": 3, + "docketEntryText": "

    MOTION to proceed in forma pauperis filed by . [Entered: 09/26/2023 01:16 PM]

    ", + "docketEntryId": "fa3c3e3a-a95c-ee11-be6e-001dd8087c50", + "createdOn": "2023-09-26T20:14:03Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-09-26", + "endDateFormatted": "09/26/2023", + "entryNumber": 6, + "docketEntryText": "

    SCHEDULE NOTICE. Certified Administrative Record due 10/31/2023, Respondent Response to Stay Motion (Filed with PFR) due 11/21/2023, Immigration Petitioner Opening Brief due 1/1/2024, Immigration Respondent Answering Brief due 2/28/2024. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.
    \n
    \nFailure of the petitioner(s)/appellant(s) to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1 [Entered: 09/26/2023 01:19 PM]

    ", + "docketEntryId": "03915bb2-a95c-ee11-be6e-001dd8087c50", + "createdOn": "2023-09-26T20:17:27Z", + "documentCount": 1, + "pageCount": 2, + "fileSize": 255, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-09-26", + "endDateFormatted": "09/26/2023", + "entryNumber": 2, + "docketEntryText": "

    MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 09/26/2023 01:16 PM]

    ", + "docketEntryId": "96783532-a95c-ee11-be6e-001dd8087d6a", + "createdOn": "2023-09-26T20:13:50Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-09-26", + "endDateFormatted": "09/26/2023", + "entryNumber": 5, + "docketEntryText": "

    CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 9/22/2023.
    \nThe U.S. Court of Appeals docket number 23-2412 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.  It is your responsibility to alert the court if your contact information changes.
    \nResources Available
    \nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the Immigration Outline and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 09/26/2023 01:17 PM]

    ", + "docketEntryId": "409169a8-a95c-ee11-be6e-001dd80ba110", + "createdOn": "2023-09-26T20:17:10Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-09-26", + "endDateFormatted": "09/26/2023", + "entryNumber": 1, + "docketEntryText": "

    PETITION FOR REVIEW filed by Petitioner Rot Mythong. [Entered: 09/26/2023 01:16 PM]

    ", + "docketEntryId": "eb859c25-a95c-ee11-be6e-001dd80bf235", + "createdOn": "2023-09-26T20:13:33Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-09-26", + "endDateFormatted": "09/26/2023", + "entryNumber": 4, + "docketEntryText": "

    MOTION for appointment of counsel filed by . [Entered: 09/26/2023 01:16 PM]

    ", + "docketEntryId": "aa599e43-a95c-ee11-be6e-001dd80bf235", + "createdOn": "2023-09-26T20:14:16Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-09-27", + "endDateFormatted": "09/27/2023", + "entryNumber": 7, + "docketEntryText": "

    NOTICE OF APPEARANCE by Monica Marie Twombly for Respondent Merrick B. Garland. [Entered: 09/27/2023 05:20 AM]

    ", + "docketEntryId": "1bc776fd-2f5d-ee11-be6e-001dd806513c", + "createdOn": "2023-09-27T12:18:46Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-09-27", + "endDateFormatted": "09/27/2023", + "entryNumber": 8, + "docketEntryText": "

    ADDED Counsel for Respondent Monica Marie Twombly for Respondent Merrick B. Garland. [Entered: 09/27/2023 07:39 AM]

    ", + "docketEntryId": "05333068-435d-ee11-be6e-001dd80bf235", + "createdOn": "2023-09-27T14:37:45Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + } + ] + } +} diff --git a/tests/examples/pacer/dockets/acms/ca9_23-2412.json b/tests/examples/pacer/dockets/acms/ca9_23-2412.json new file mode 100644 index 000000000..b8b535924 --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca9_23-2412.json @@ -0,0 +1,127 @@ +{ + "appeal_from": "Board of Immigration Appeals", + "case_name": "Mythong v. Garland", + "case_type_information": "Agency, Immigration", + "court_id": "ca9", + "date_filed": "2023-09-26", + "docket_entries": [ + { + "date_entered": "2023-09-26T13:16:00", + "date_filed": "2023-09-26T13:16:00", + "description": "MOTION to proceed in forma pauperis filed by . [Entered: 09/26/2023 01:16 PM]", + "description_html": "

    MOTION to proceed in forma pauperis filed by . [Entered: 09/26/2023 01:16 PM]

    ", + "document_number": 3, + "pacer_doc_id": "fa3c3e3a-a95c-ee11-be6e-001dd8087c50", + "page_count": 0 + }, + { + "date_entered": "2023-09-26T13:19:00", + "date_filed": "2023-09-26T13:19:00", + "description": "SCHEDULE NOTICE. Certified Administrative Record due 10/31/2023, Respondent Response to Stay Motion (Filed with PFR) due 11/21/2023, Immigration Petitioner Opening Brief due 1/1/2024, Immigration Respondent Answering Brief due 2/28/2024.\u00a0All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.\n\nFailure of the petitioner(s)/appellant(s) to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1 [Entered: 09/26/2023 01:19 PM]", + "description_html": "

    SCHEDULE NOTICE. Certified Administrative Record due 10/31/2023, Respondent Response to Stay Motion (Filed with PFR) due 11/21/2023, Immigration Petitioner Opening Brief due 1/1/2024, Immigration Respondent Answering Brief due 2/28/2024. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.
    \n
    \nFailure of the petitioner(s)/appellant(s) to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1 [Entered: 09/26/2023 01:19 PM]

    ", + "document_number": 6, + "pacer_doc_id": "03915bb2-a95c-ee11-be6e-001dd8087c50", + "page_count": 2 + }, + { + "date_entered": "2023-09-26T13:16:00", + "date_filed": "2023-09-26T13:16:00", + "description": "MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 09/26/2023 01:16 PM]", + "description_html": "

    MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 09/26/2023 01:16 PM]

    ", + "document_number": 2, + "pacer_doc_id": "96783532-a95c-ee11-be6e-001dd8087d6a", + "page_count": 0 + }, + { + "date_entered": "2023-09-26T13:17:00", + "date_filed": "2023-09-26T13:17:00", + "description": "CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 9/22/2023.\nThe U.S. Court of Appeals docket number 23-2412 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.\u00a0 It is your responsibility to alert the court if your contact information changes.\nResources Available\nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the\u00a0Immigration Outline\u00a0and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 09/26/2023 01:17 PM]", + "description_html": "

    CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 9/22/2023.
    \nThe U.S. Court of Appeals docket number 23-2412 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.  It is your responsibility to alert the court if your contact information changes.
    \nResources Available
    \nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the Immigration Outline and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 09/26/2023 01:17 PM]

    ", + "document_number": 5, + "pacer_doc_id": "409169a8-a95c-ee11-be6e-001dd80ba110", + "page_count": 0 + }, + { + "date_entered": "2023-09-26T13:16:00", + "date_filed": "2023-09-26T13:16:00", + "description": "PETITION FOR REVIEW filed by Petitioner Rot Mythong. [Entered: 09/26/2023 01:16 PM]", + "description_html": "

    PETITION FOR REVIEW filed by Petitioner Rot Mythong. [Entered: 09/26/2023 01:16 PM]

    ", + "document_number": 1, + "pacer_doc_id": "eb859c25-a95c-ee11-be6e-001dd80bf235", + "page_count": 0 + }, + { + "date_entered": "2023-09-26T13:16:00", + "date_filed": "2023-09-26T13:16:00", + "description": "MOTION for appointment of counsel filed by . [Entered: 09/26/2023 01:16 PM]", + "description_html": "

    MOTION for appointment of counsel filed by . [Entered: 09/26/2023 01:16 PM]

    ", + "document_number": 4, + "pacer_doc_id": "aa599e43-a95c-ee11-be6e-001dd80bf235", + "page_count": 0 + }, + { + "date_entered": "2023-09-27T05:20:00", + "date_filed": "2023-09-27T05:20:00", + "description": "NOTICE OF APPEARANCE by Monica Marie Twombly for Respondent Merrick B. Garland. [Entered: 09/27/2023 05:20 AM]", + "description_html": "

    NOTICE OF APPEARANCE by Monica Marie Twombly for Respondent Merrick B. Garland. [Entered: 09/27/2023 05:20 AM]

    ", + "document_number": 7, + "pacer_doc_id": "1bc776fd-2f5d-ee11-be6e-001dd806513c", + "page_count": 0 + }, + { + "date_entered": "2023-09-27T07:39:00", + "date_filed": "2023-09-27T07:39:00", + "description": "ADDED Counsel for Respondent Monica Marie Twombly for Respondent Merrick B. Garland. [Entered: 09/27/2023 07:39 AM]", + "description_html": "

    ADDED Counsel for Respondent Monica Marie Twombly for Respondent Merrick B. Garland. [Entered: 09/27/2023 07:39 AM]

    ", + "document_number": 8, + "pacer_doc_id": "05333068-435d-ee11-be6e-001dd80bf235", + "page_count": 0 + } + ], + "docket_number": "23-2412", + "fee_status": "IFP Pending in COA", + "originating_court_information": { + "RESTRICTED_ALIEN_NUMBER": "A023-780-088", + "identifier": "95", + "name": "Los Angeles Central California" + }, + "pacer_case_id": "f9f5230d-a95c-ee11-a81c-001dd80ad0b3", + "parties": [ + { + "attorneys": [ + { + "contact": "3256 E. Ransom Street\nLong Beach, CA 90804", + "name": "Rot Mythong", + "roles": [ + "Pro Se" + ] + } + ], + "name": "ROT MYTHONG", + "type": "Petitioner", + "unparsed": [ + "\u00a0\u00a0\u00a0\u00a0A023-780-088, " + ] + }, + { + "attorneys": [ + { + "contact": "Email: Ninth.Circuit.OIL@usdoj.gov\nDOJ - U.S. Department of Justice\nCivil Division/Office of Immigration Litigation\nP.O. Box 878, Benjamin Franklin Station\nWashington, DC 20044", + "name": "Oil", + "roles": [ + "Government" + ] + }, + { + "contact": "Direct: 202-532-4470\nEmail: Monica.M.Twombly@usdoj.gov\nDOJ - U.S. Department of Justice\nCivil Division/Office of Immigration Litigation\nP.O. Box 878, Benjamin Franklin Station\nWashington, DC 20044", + "name": "Ms. Monica Marie Twombly, Trial Attorney", + "roles": [ + "Government" + ] + } + ], + "name": "MERRICK B. GARLAND, ATTORNEY GENERAL", + "type": "Respondent" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/dockets/acms/ca9_23-2413.acms_json b/tests/examples/pacer/dockets/acms/ca9_23-2413.acms_json new file mode 100644 index 000000000..a7ae7924c --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca9_23-2413.acms_json @@ -0,0 +1,99 @@ +{ + "caseDetails": { + "caseId": "0199c58d-9e5c-ee11-a81c-001dd80ad0b3", + "caseNumber": "23-2413", + "name": "Moraga Alvarez v. Garland", + "caseOpened": "2023-09-26", + "aNumber": "A074-807-615", + "receivedDate": "2023-09-26T19:08:11Z", + "partyAttorneyList": "
    MELVIN ESTUARDO MORAGA ALVAREZ
        A074-807-615,
        Petitioner,
    Ms. Rosana Cheung, Attorney
    Direct: 213-891-1314
    Email: roscheung@yahoo.com
    [Retained]
    Law Office of Rosana Kit Wai Cheung
    617 South Olive Street
    Suite 710
    Los Angeles, CA 90014
    MERRICK B. GARLAND, ATTORNEY GENERAL
        Respondent,
    Oil
    Email: Ninth.Circuit.OIL@usdoj.gov
    [Government]
    DOJ - U.S. Department of Justice
    Civil Division/Office of Immigration Litigation
    P.O. Box 878, Benjamin Franklin Station
    Washington, DC 20044
    ", + "shortCaption": "MELVIN ESTUARDO MORAGA ALVAREZ,
    \r\n
    \r\n                     Petitioner,
    \r\n
    \r\n   v.
    \r\n
    \r\nMERRICK B. GARLAND, Attorney General,
    \r\n
    \r\n                     Respondent.", + "court": { + "name": "Board of Immigration Appeals", + "identifier": "95" + }, + "caseType": "Agency", + "caseSubType": "Immigration", + "caseSubSubType": null, + "districtCourtName": "Los Angeles Central California", + "feeStatus": "Paid", + "byteCount": 1383 + }, + "docketInfo": { + "isCaseSealed": false, + "isUserCaseParticipant": false, + "byteCount": 2650, + "docketEntries": [ + { + "endDate": "2023-09-26", + "endDateFormatted": "09/26/2023", + "entryNumber": 5, + "docketEntryText": "

    SCHEDULE NOTICE. Certified Administrative Record due 10/31/2023, Respondent Response to Stay Motion (Filed with PFR) due 11/21/2023, Immigration Petitioner Opening Brief due 1/1/2024, Immigration Respondent Answering Brief due 2/28/2024. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.
    \n
    \nFailure of the petitioner(s)/appellant(s) to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1 [Entered: 09/26/2023 01:26 PM]

    ", + "docketEntryId": "9b1e7ea2-aa5c-ee11-be6e-001dd80873be", + "createdOn": "2023-09-26T20:24:05Z", + "documentCount": 1, + "pageCount": 2, + "fileSize": 236, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-09-26", + "endDateFormatted": "09/26/2023", + "entryNumber": 3, + "docketEntryText": "

    MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 09/26/2023 01:20 PM]

    ", + "docketEntryId": "3b8a3ed6-9f5c-ee11-be6e-001dd8087d6a", + "createdOn": "2023-09-26T19:06:47Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-09-26", + "endDateFormatted": "09/26/2023", + "entryNumber": 4, + "docketEntryText": "

    CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 9/26/2023.
    \nThe U.S. Court of Appeals docket number 23-2413 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.  It is your responsibility to alert the court if your contact information changes.
    \nResources Available
    \nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the Immigration Outline and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 09/26/2023 01:23 PM]

    ", + "docketEntryId": "f928e683-aa5c-ee11-be6e-001dd80ba16d", + "createdOn": "2023-09-26T20:23:21Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-09-26", + "endDateFormatted": "09/26/2023", + "entryNumber": 2, + "docketEntryText": "

    AGENCY DECISION on review dated 8/30/2023. [Entered: 09/26/2023 01:20 PM]

    ", + "docketEntryId": "fcc9252c-9f5c-ee11-be6e-001dd80bf252", + "createdOn": "2023-09-26T19:02:02Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-09-26", + "endDateFormatted": "09/26/2023", + "entryNumber": 1, + "docketEntryText": "

    PETITION FOR REVIEW filed by Petitioner Melvin Estuardo Moraga Alvarez. [Entered: 09/26/2023 01:20 PM]

    ", + "docketEntryId": "50f1dec8-9e5c-ee11-be6e-001dd80bf6f4", + "createdOn": "2023-09-26T18:59:23Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + } + ] + } +} diff --git a/tests/examples/pacer/dockets/acms/ca9_23-2413.json b/tests/examples/pacer/dockets/acms/ca9_23-2413.json new file mode 100644 index 000000000..4313b6c8a --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca9_23-2413.json @@ -0,0 +1,93 @@ +{ + "appeal_from": "Board of Immigration Appeals", + "case_name": "Moraga Alvarez v. Garland", + "case_type_information": "Agency, Immigration", + "court_id": "ca9", + "date_filed": "2023-09-26", + "docket_entries": [ + { + "date_entered": "2023-09-26T13:26:00", + "date_filed": "2023-09-26T13:26:00", + "description": "SCHEDULE NOTICE. Certified Administrative Record due 10/31/2023, Respondent Response to Stay Motion (Filed with PFR) due 11/21/2023, Immigration Petitioner Opening Brief due 1/1/2024, Immigration Respondent Answering Brief due 2/28/2024.\u00a0All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.\n\nFailure of the petitioner(s)/appellant(s) to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1 [Entered: 09/26/2023 01:26 PM]", + "description_html": "

    SCHEDULE NOTICE. Certified Administrative Record due 10/31/2023, Respondent Response to Stay Motion (Filed with PFR) due 11/21/2023, Immigration Petitioner Opening Brief due 1/1/2024, Immigration Respondent Answering Brief due 2/28/2024. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.
    \n
    \nFailure of the petitioner(s)/appellant(s) to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1 [Entered: 09/26/2023 01:26 PM]

    ", + "document_number": 5, + "pacer_doc_id": "9b1e7ea2-aa5c-ee11-be6e-001dd80873be", + "page_count": 2 + }, + { + "date_entered": "2023-09-26T13:20:00", + "date_filed": "2023-09-26T13:20:00", + "description": "MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 09/26/2023 01:20 PM]", + "description_html": "

    MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 09/26/2023 01:20 PM]

    ", + "document_number": 3, + "pacer_doc_id": "3b8a3ed6-9f5c-ee11-be6e-001dd8087d6a", + "page_count": 0 + }, + { + "date_entered": "2023-09-26T13:23:00", + "date_filed": "2023-09-26T13:23:00", + "description": "CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 9/26/2023.\nThe U.S. Court of Appeals docket number 23-2413 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.\u00a0 It is your responsibility to alert the court if your contact information changes.\nResources Available\nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the\u00a0Immigration Outline\u00a0and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 09/26/2023 01:23 PM]", + "description_html": "

    CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 9/26/2023.
    \nThe U.S. Court of Appeals docket number 23-2413 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.  It is your responsibility to alert the court if your contact information changes.
    \nResources Available
    \nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the Immigration Outline and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 09/26/2023 01:23 PM]

    ", + "document_number": 4, + "pacer_doc_id": "f928e683-aa5c-ee11-be6e-001dd80ba16d", + "page_count": 0 + }, + { + "date_entered": "2023-09-26T13:20:00", + "date_filed": "2023-09-26T13:20:00", + "description": "AGENCY DECISION\u00a0on review dated 8/30/2023. [Entered: 09/26/2023 01:20 PM]", + "description_html": "

    AGENCY DECISION on review dated 8/30/2023. [Entered: 09/26/2023 01:20 PM]

    ", + "document_number": 2, + "pacer_doc_id": "fcc9252c-9f5c-ee11-be6e-001dd80bf252", + "page_count": 0 + }, + { + "date_entered": "2023-09-26T13:20:00", + "date_filed": "2023-09-26T13:20:00", + "description": "PETITION FOR REVIEW filed by Petitioner Melvin Estuardo Moraga Alvarez. [Entered: 09/26/2023 01:20 PM]", + "description_html": "

    PETITION FOR REVIEW filed by Petitioner Melvin Estuardo Moraga Alvarez. [Entered: 09/26/2023 01:20 PM]

    ", + "document_number": 1, + "pacer_doc_id": "50f1dec8-9e5c-ee11-be6e-001dd80bf6f4", + "page_count": 0 + } + ], + "docket_number": "23-2413", + "fee_status": "Paid", + "originating_court_information": { + "RESTRICTED_ALIEN_NUMBER": "A074-807-615", + "identifier": "95", + "name": "Los Angeles Central California" + }, + "pacer_case_id": "0199c58d-9e5c-ee11-a81c-001dd80ad0b3", + "parties": [ + { + "attorneys": [ + { + "contact": "Direct: 213-891-1314\nEmail: roscheung@yahoo.com\nLaw Office of Rosana Kit Wai Cheung\n617 South Olive Street\nSuite 710\nLos Angeles, CA 90014", + "name": "Ms. Rosana Cheung, Attorney", + "roles": [ + "Retained" + ] + } + ], + "name": "MELVIN ESTUARDO MORAGA ALVAREZ", + "type": "Petitioner", + "unparsed": [ + "\u00a0\u00a0\u00a0\u00a0A074-807-615, " + ] + }, + { + "attorneys": [ + { + "contact": "Email: Ninth.Circuit.OIL@usdoj.gov\nDOJ - U.S. Department of Justice\nCivil Division/Office of Immigration Litigation\nP.O. Box 878, Benjamin Franklin Station\nWashington, DC 20044", + "name": "Oil", + "roles": [ + "Government" + ] + } + ], + "name": "MERRICK B. GARLAND, ATTORNEY GENERAL", + "type": "Respondent" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/dockets/acms/ca9_23-2435.acms_json b/tests/examples/pacer/dockets/acms/ca9_23-2435.acms_json new file mode 100644 index 000000000..efb9fa891 --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca9_23-2435.acms_json @@ -0,0 +1,57 @@ +{ + "caseDetails": { + "caseId": "34cacf7f-52d5-4d1f-b4f0-0542b429f674", + "caseNumber": "23-2435", + "name": "Yablonsky v. California Department of Corrections and Rehabilitation, et al.", + "caseOpened": "2023-09-27", + "aNumber": null, + "receivedDate": "2023-09-27T10:11:46Z", + "partyAttorneyList": "
    JOHN HENRY YABLONSKY
        AL0373, 91739,
        Appellant,
    John Henry Yablonsky
    [Pro Se]
    San Bernardino County – West Valley Detention Center
    9500 Etiwanda Avenue
    Rancho Cucamonga, CA 91739

     

    CALIFORNIA DEPARTMENT OF CORRECTIONS AND REHABILITATION, Entity of the state of California
        Appellee,
    Lyndsay Rebecca Crenshaw
    Direct: 619-738-9503
    Email: Lyndsay.Crenshaw@doj.ca.gov
    [Government]
    AGCA - Office of the Attorney General (San Diego)
    600 W Broadway
    Suite 1800
    San Diego, CA 92101
    DANIEL PARAMO, R.J. Donovan (CDCR) Warden
        Appellee,
    MR. J. ROBLES, R.J. Donovan (CDCR) Librarian
        Appellee,
    Lyndsay Rebecca Crenshaw
    Direct: 619-738-9503
    Email: Lyndsay.Crenshaw@doj.ca.gov
    [Government]
    AGCA - Office of the Attorney General (San Diego)
    600 W Broadway
    Suite 1800
    San Diego, CA 92101
    MR. POWELL, R.J. Donovan (CDCR) Librarian
        Appellee,
    Lyndsay Rebecca Crenshaw
    Direct: 619-738-9503
    Email: Lyndsay.Crenshaw@doj.ca.gov
    [Government]
    AGCA - Office of the Attorney General (San Diego)
    600 W Broadway
    Suite 1800
    San Diego, CA 92101
    MR. BLAHNIK, R.J. Donovan (CDCR Sr. Librarian)
        Appellee,
    Lyndsay Rebecca Crenshaw
    Direct: 619-738-9503
    Email: Lyndsay.Crenshaw@doj.ca.gov
    [Government]
    AGCA - Office of the Attorney General (San Diego)
    600 W Broadway
    Suite 1800
    San Diego, CA 92101
    MARTINEZ, (CDCR) R.J. Donovan (Principal)
        Appellee,
    Lyndsay Rebecca Crenshaw
    Direct: 619-738-9503
    Email: Lyndsay.Crenshaw@doj.ca.gov
    [Government]
    AGCA - Office of the Attorney General (San Diego)
    600 W Broadway
    Suite 1800
    San Diego, CA 92101
    MRS. TICSCARNIA, (CDCR) Senior Librarian R.J. Donovan
        Appellee,
    Lyndsay Rebecca Crenshaw
    Direct: 619-738-9503
    Email: Lyndsay.Crenshaw@doj.ca.gov
    [Government]
    AGCA - Office of the Attorney General (San Diego)
    600 W Broadway
    Suite 1800
    San Diego, CA 92101
    MRS. MCGUIRE, (CDCR) Litigation Coordinator at R.J. Donovan
        Appellee,
    Lyndsay Rebecca Crenshaw
    Direct: 619-738-9503
    Email: Lyndsay.Crenshaw@doj.ca.gov
    [Government]
    AGCA - Office of the Attorney General (San Diego)
    600 W Broadway
    Suite 1800
    San Diego, CA 92101
    DOES 1-10, Different employees within R.J. Donovan (titles and names unknown)
        Appellee,
    DOES 11, Camoflage Doe
        Appellee,
    MONDET, Department of Corrections
        Appellee,
    SELF
        Appellee,
    OLIVARRIA
        Appellee,
    GARCIA
        Appellee,
    FULLER
        Appellee,
    PICKETT
        Appellee,
    ", + "shortCaption": "JOHN HENRY YABLONSKY,
    \r\n
    \r\n                     Plaintiff - Appellant,
    \r\n
    \r\n   v.
    \r\n
    \r\nCALIFORNIA DEPARTMENT OF CORRECTIONS AND REHABILITATION, Entity of the state of California; DANIEL PARAMO, R.J. Donovan (CDCR) Warden; MR. J. ROBLES, R.J. Donovan (CDCR) Librarian; MR. POWELL, R.J. Donovan (CDCR) Librarian; MR. BLAHNIK, R.J. Donovan (CDCR Sr. Librarian); MARTINEZ, (CDCR) R.J. Donovan (Principal); MRS. TICSCARNIA, (CDCR) Senior Librarian R.J. Donovan; MRS. MCGUIRE, (CDCR) Litigation Coordinator at R.J. Donovan; DOES 1-10, Different employees within R.J. Donovan (titles and names unknown); DOES 11, Camoflage Doe; MONDET, Department of Corrections; SELF; OLIVARRIA; GARCIA; FULLER; PICKETT,
    \r\n
    \r\n                     Defendants - Appellees.", + "court": { + "name": "San Diego, Southern California", + "identifier": "160" + }, + "caseType": "Prisoner", + "caseSubType": "Private", + "caseSubSubType": "Civil Rights", + "districtCourtName": null, + "feeStatus": "IFP", + "byteCount": 6035 + }, + "docketInfo": { + "isCaseSealed": false, + "isUserCaseParticipant": false, + "byteCount": 1888, + "docketEntries": [ + { + "endDate": "2023-09-27", + "endDateFormatted": "09/27/2023", + "entryNumber": 1, + "docketEntryText": "

    CASE OPENED. A copy of your notice of appeal / petition filed in 3:18-cv-01122-AGS has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit.
    \nThe U.S. Court of Appeals docket number 23-2435 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.  It is your responsibility to alert the court if your contact information changes.
    \nResources Available
    \nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants) and review the Appellate Practice Guide. Counsel should consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 09/27/2023 03:30 PM]

    ", + "docketEntryId": "cae9326b-855d-ee11-be6e-001dd80822ef", + "createdOn": "2023-09-27T22:30:19Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-09-27", + "endDateFormatted": "09/27/2023", + "entryNumber": 2, + "docketEntryText": "

    SCHEDULE NOTICE. Appeal No RT Opening Brief Due 11/24/2023, Appeal No RT Answering Brief Due 12/26/2023 . All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.

    \n\n

    Failure of the petitioner(s)/appellant(s) to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1. [Entered: 09/27/2023 03:33 PM]

    ", + "docketEntryId": "11f02b7a-855d-ee11-be6e-001dd80873be", + "createdOn": "2023-09-27T22:30:40Z", + "documentCount": 1, + "pageCount": 3, + "fileSize": 210, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + } + ] + } +} diff --git a/tests/examples/pacer/dockets/acms/ca9_23-2435.json b/tests/examples/pacer/dockets/acms/ca9_23-2435.json new file mode 100644 index 000000000..4feabc04f --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca9_23-2435.json @@ -0,0 +1,188 @@ +{ + "appeal_from": "San Diego, Southern California", + "case_name": "Yablonsky v. California Department of Corrections and Rehabilitation, et al.", + "case_type_information": "Prisoner, Private, Civil Rights", + "court_id": "ca9", + "date_filed": "2023-09-27", + "docket_entries": [ + { + "date_entered": "2023-09-27T15:30:00", + "date_filed": "2023-09-27T15:30:00", + "description": "CASE OPENED. A copy of your notice of appeal / petition filed in 3:18-cv-01122-AGS has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit.\nThe U.S. Court of Appeals docket number 23-2435 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.\u00a0 It is your responsibility to alert the court if your contact information changes.\nResources Available\nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants) and review the Appellate Practice Guide. Counsel should consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 09/27/2023 03:30 PM]", + "description_html": "

    CASE OPENED. A copy of your notice of appeal / petition filed in 3:18-cv-01122-AGS has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit.
    \nThe U.S. Court of Appeals docket number 23-2435 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.  It is your responsibility to alert the court if your contact information changes.
    \nResources Available
    \nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants) and review the Appellate Practice Guide. Counsel should consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 09/27/2023 03:30 PM]

    ", + "document_number": 1, + "pacer_doc_id": "cae9326b-855d-ee11-be6e-001dd80822ef", + "page_count": 0 + }, + { + "date_entered": "2023-09-27T15:33:00", + "date_filed": "2023-09-27T15:33:00", + "description": "SCHEDULE NOTICE. Appeal No RT Opening Brief Due 11/24/2023, Appeal No RT Answering Brief Due 12/26/2023 . All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.\n\nFailure of the petitioner(s)/appellant(s) to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1. [Entered: 09/27/2023 03:33 PM]", + "description_html": "

    SCHEDULE NOTICE. Appeal No RT Opening Brief Due 11/24/2023, Appeal No RT Answering Brief Due 12/26/2023 . All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.

    \n\n

    Failure of the petitioner(s)/appellant(s) to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1. [Entered: 09/27/2023 03:33 PM]

    ", + "document_number": 2, + "pacer_doc_id": "11f02b7a-855d-ee11-be6e-001dd80873be", + "page_count": 3 + } + ], + "docket_number": "23-2435", + "fee_status": "IFP", + "originating_court_information": { + "identifier": "160", + "name": "San Diego, Southern California" + }, + "pacer_case_id": "34cacf7f-52d5-4d1f-b4f0-0542b429f674", + "parties": [ + { + "attorneys": [ + { + "contact": "San Bernardino County \u2013 West Valley Detention Center\n9500 Etiwanda Avenue\nRancho Cucamonga, CA 91739", + "name": "John Henry Yablonsky", + "roles": [ + "Pro Se" + ] + } + ], + "name": "JOHN HENRY YABLONSKY", + "type": "Appellant", + "unparsed": [ + "\u00a0\u00a0\u00a0\u00a0AL0373, 91739, " + ] + }, + { + "attorneys": [ + { + "contact": "Direct: 619-738-9503\nEmail: Lyndsay.Crenshaw@doj.ca.gov\nAGCA - Office of the Attorney General (San Diego)\n600 W Broadway\nSuite 1800\nSan Diego, CA 92101", + "name": "Lyndsay Rebecca Crenshaw", + "roles": [ + "Government" + ] + } + ], + "name": "CALIFORNIA DEPARTMENT OF CORRECTIONS AND REHABILITATION, Entity of the state of California", + "type": "Appellee" + }, + { + "attorneys": [], + "name": "DANIEL PARAMO, R.J. Donovan (CDCR) Warden", + "type": "Appellee" + }, + { + "attorneys": [ + { + "contact": "Direct: 619-738-9503\nEmail: Lyndsay.Crenshaw@doj.ca.gov\nAGCA - Office of the Attorney General (San Diego)\n600 W Broadway\nSuite 1800\nSan Diego, CA 92101", + "name": "Lyndsay Rebecca Crenshaw", + "roles": [ + "Government" + ] + } + ], + "name": "MR. J. ROBLES, R.J. Donovan (CDCR) Librarian", + "type": "Appellee" + }, + { + "attorneys": [ + { + "contact": "Direct: 619-738-9503\nEmail: Lyndsay.Crenshaw@doj.ca.gov\nAGCA - Office of the Attorney General (San Diego)\n600 W Broadway\nSuite 1800\nSan Diego, CA 92101", + "name": "Lyndsay Rebecca Crenshaw", + "roles": [ + "Government" + ] + } + ], + "name": "MR. POWELL, R.J. Donovan (CDCR) Librarian", + "type": "Appellee" + }, + { + "attorneys": [ + { + "contact": "Direct: 619-738-9503\nEmail: Lyndsay.Crenshaw@doj.ca.gov\nAGCA - Office of the Attorney General (San Diego)\n600 W Broadway\nSuite 1800\nSan Diego, CA 92101", + "name": "Lyndsay Rebecca Crenshaw", + "roles": [ + "Government" + ] + } + ], + "name": "MR. BLAHNIK, R.J. Donovan (CDCR Sr. Librarian)", + "type": "Appellee" + }, + { + "attorneys": [ + { + "contact": "Direct: 619-738-9503\nEmail: Lyndsay.Crenshaw@doj.ca.gov\nAGCA - Office of the Attorney General (San Diego)\n600 W Broadway\nSuite 1800\nSan Diego, CA 92101", + "name": "Lyndsay Rebecca Crenshaw", + "roles": [ + "Government" + ] + } + ], + "name": "MARTINEZ, (CDCR) R.J. Donovan (Principal)", + "type": "Appellee" + }, + { + "attorneys": [ + { + "contact": "Direct: 619-738-9503\nEmail: Lyndsay.Crenshaw@doj.ca.gov\nAGCA - Office of the Attorney General (San Diego)\n600 W Broadway\nSuite 1800\nSan Diego, CA 92101", + "name": "Lyndsay Rebecca Crenshaw", + "roles": [ + "Government" + ] + } + ], + "name": "MRS. TICSCARNIA, (CDCR) Senior Librarian R.J. Donovan", + "type": "Appellee" + }, + { + "attorneys": [ + { + "contact": "Direct: 619-738-9503\nEmail: Lyndsay.Crenshaw@doj.ca.gov\nAGCA - Office of the Attorney General (San Diego)\n600 W Broadway\nSuite 1800\nSan Diego, CA 92101", + "name": "Lyndsay Rebecca Crenshaw", + "roles": [ + "Government" + ] + } + ], + "name": "MRS. MCGUIRE, (CDCR) Litigation Coordinator at R.J. Donovan", + "type": "Appellee" + }, + { + "attorneys": [], + "name": "DOES 1-10, Different employees within R.J. Donovan (titles and names unknown)", + "type": "Appellee" + }, + { + "attorneys": [], + "name": "DOES 11, Camoflage Doe", + "type": "Appellee" + }, + { + "attorneys": [], + "name": "MONDET, Department of Corrections", + "type": "Appellee" + }, + { + "attorneys": [], + "name": "SELF", + "type": "Appellee" + }, + { + "attorneys": [], + "name": "OLIVARRIA", + "type": "Appellee" + }, + { + "attorneys": [], + "name": "GARCIA", + "type": "Appellee" + }, + { + "attorneys": [], + "name": "FULLER", + "type": "Appellee" + }, + { + "attorneys": [], + "name": "PICKETT", + "type": "Appellee" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/dockets/acms/ca9_23-3206.acms_json b/tests/examples/pacer/dockets/acms/ca9_23-3206.acms_json new file mode 100644 index 000000000..7bf73a9d4 --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca9_23-3206.acms_json @@ -0,0 +1,145 @@ +{ + "caseDetails": { + "caseId": "8f6c08e2-df78-ee11-a81c-001dd80ad0b3", + "caseNumber": "23-3206", + "originatingCaseNumber": null, + "caseFormType": "Immigration", + "name": "Singh v. Garland", + "caseOpened": "2023-11-01", + "aNumber": "A205-935-854", + "receivedDate": "2023-11-01T10:58:39Z", + "decisionDate": "2023-10-11", + "partyAttorneyList": "
    JITENDER SINGH
        A205-935-854,
        Petitioner
    Ms. Inna Lipkin, Counsel
    Email: lipkinlaw@gmail.com
    [Retained]
    LAW OFFICES OF INNA LIPKIN
    P.O. Box 610160
    Redwood City, CA 94061
    MERRICK B. GARLAND, ATTORNEY GENERAL
        Respondent
    Oil
    Email: Ninth.Circuit.OIL@usdoj.gov
    [Government]
    DOJ - U.S. Department of Justice
    Civil Division/Office of Immigration Litigation
    P.O. Box 878, Benjamin Franklin Station
    Washington, DC 20044
    Mr. Anthony Cardozo Payne, Senior Litigation Counsel
    Direct: 202-616-3264
    Email: anthony.payne@usdoj.gov
    [Government]
    DOJ - U.S. Department of Justice
    Civil Division/Office of Immigration Litigation
    P.O. Box 878, Benjamin Franklin Station
    Washington, DC 20044
    ", + "shortCaption": "JITENDER SINGH,
    \r\n
    \r\n                     Petitioner,
    \r\n
    \r\n   v.
    \r\n
    \r\nMERRICK B. GARLAND, Attorney General,
    \r\n
    \r\n                     Respondent.", + "court": { + "name": "Board of Immigration Appeals", + "abbreviatedName": "BIA" + }, + "caseType": "Agency", + "caseSubType": "Immigration", + "caseSubSubType": null, + "districtCourtName": "San Francisco Northern California", + "feeStatus": "Paid", + "byteCount": 1615, + "originatingCasesInformation": [] + }, + "docketInfo": { + "isCaseSealed": false, + "isUserCaseParticipant": false, + "byteCount": 3171, + "docketEntries": [ + { + "endDate": "2023-11-01", + "endDateFormatted": "11/01/2023", + "entryNumber": 3, + "docketEntryText": "

    MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 11/01/2023 11:22 AM]

    ", + "docketEntryId": "e75e932f-e078-ee11-9ae5-001dd806513c", + "createdOn": "2023-11-01T17:58:05Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-11-01", + "endDateFormatted": "11/01/2023", + "entryNumber": 4, + "docketEntryText": "

    MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 11/01/2023 11:22 AM]

    ", + "docketEntryId": "48bc9b3f-e078-ee11-9ae5-001dd8065fe3", + "createdOn": "2023-11-01T17:58:27Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-11-01", + "endDateFormatted": "11/01/2023", + "entryNumber": 1, + "docketEntryText": "

    PETITION FOR REVIEW filed by Petitioner Jitender Singh. [Entered: 11/01/2023 11:22 AM]

    ", + "docketEntryId": "3a92c012-e078-ee11-9ae5-001dd8087d6a", + "createdOn": "2023-11-01T17:57:17Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-11-01", + "endDateFormatted": "11/01/2023", + "entryNumber": 6, + "docketEntryText": "

    SCHEDULE NOTICE. Certified Administrative Record due (Respondent) due 12/11/2023, Respondent Response to Stay Motion (Filed with PFR) due (Respondent) due 1/1/2024, Immigration Petitioner Opening Brief due (Petitioner) due 1/22/2024, Immigration Respondent Answering Brief due (Respondent) due 2/19/2024. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.
    \n
    \nFailure of the petitioner(s)/appellant(s) to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1 [Entered: 11/01/2023 11:27 AM]

    ", + "docketEntryId": "808527d7-e378-ee11-9ae5-001dd8087d6a", + "createdOn": "2023-11-01T18:24:12Z", + "documentCount": 1, + "pageCount": 2, + "fileSize": 233, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-11-01", + "endDateFormatted": "11/01/2023", + "entryNumber": 5, + "docketEntryText": "

    CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 11/1/2023.
    \nThe U.S. Court of Appeals docket number 23-3206 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.  It is your responsibility to alert the court if your contact information changes.
    \nResources Available
    \nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the Immigration Outline and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 11/01/2023 11:23 AM]

    ", + "docketEntryId": "449c62c8-e378-ee11-9ae5-001dd80ba16d", + "createdOn": "2023-11-01T18:23:44Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-11-01", + "endDateFormatted": "11/01/2023", + "entryNumber": 2, + "docketEntryText": "

    AGENCY DECISION on review dated 10/11/2023. [Entered: 11/01/2023 11:22 AM]

    ", + "docketEntryId": "d95c8621-e078-ee11-9ae5-001dd80bf235", + "createdOn": "2023-11-01T17:57:38Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-11-01", + "endDateFormatted": "11/01/2023", + "entryNumber": 7, + "docketEntryText": "

    NOTICE OF APPEARANCE by Anthony Cardozo Payne for Respondent Merrick B. Garland. [Entered: 11/01/2023 01:12 PM]

    ", + "docketEntryId": "04698048-f278-ee11-9ae5-001dd80bf235", + "createdOn": "2023-11-01T20:07:33Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": true, + "restrictedDocsAvailable": false, + "selected": false + }, + { + "endDate": "2023-11-01", + "endDateFormatted": "11/01/2023", + "entryNumber": 8, + "docketEntryText": "

    ADDED Counsel for Respondent Anthony Cardozo Payne [Entered: 11/01/2023 01:49 PM]

    ", + "docketEntryId": "c930d7f0-f778-ee11-9ae5-001dd80bf235", + "createdOn": "2023-11-01T20:48:01Z", + "documentCount": 0, + "pageCount": 0, + "fileSize": 0, + "restrictedPartyFilingDocketEntry": false, + "restrictedDocsAvailable": false, + "selected": false + } + ] + } +} diff --git a/tests/examples/pacer/dockets/acms/ca9_23-3206.json b/tests/examples/pacer/dockets/acms/ca9_23-3206.json new file mode 100644 index 000000000..a8e2d459b --- /dev/null +++ b/tests/examples/pacer/dockets/acms/ca9_23-3206.json @@ -0,0 +1,126 @@ +{ + "appeal_from": "Board of Immigration Appeals", + "case_name": "Singh v. Garland", + "case_type_information": "Agency, Immigration", + "court_id": "ca9", + "date_filed": "2023-11-01", + "docket_entries": [ + { + "date_entered": "2023-11-01T11:22:00", + "date_filed": "2023-11-01T11:22:00", + "description": "MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 11/01/2023 11:22 AM]", + "description_html": "

    MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 11/01/2023 11:22 AM]

    ", + "document_number": 3, + "pacer_doc_id": "e75e932f-e078-ee11-9ae5-001dd806513c", + "page_count": 0 + }, + { + "date_entered": "2023-11-01T11:22:00", + "date_filed": "2023-11-01T11:22:00", + "description": "MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 11/01/2023 11:22 AM]", + "description_html": "

    MOTION TO STAY REMOVAL filed by Petitioner(s); REMOVAL STAYED pending further order of the court per General Order 6.4(c). [Entered: 11/01/2023 11:22 AM]

    ", + "document_number": 4, + "pacer_doc_id": "48bc9b3f-e078-ee11-9ae5-001dd8065fe3", + "page_count": 0 + }, + { + "date_entered": "2023-11-01T11:22:00", + "date_filed": "2023-11-01T11:22:00", + "description": "PETITION FOR REVIEW filed by Petitioner Jitender Singh. [Entered: 11/01/2023 11:22 AM]", + "description_html": "

    PETITION FOR REVIEW filed by Petitioner Jitender Singh. [Entered: 11/01/2023 11:22 AM]

    ", + "document_number": 1, + "pacer_doc_id": "3a92c012-e078-ee11-9ae5-001dd8087d6a", + "page_count": 0 + }, + { + "date_entered": "2023-11-01T11:27:00", + "date_filed": "2023-11-01T11:27:00", + "description": "SCHEDULE NOTICE. Certified Administrative Record due (Respondent) due 12/11/2023, Respondent Response to Stay Motion (Filed with PFR) due (Respondent) due 1/1/2024, Immigration Petitioner Opening Brief due (Petitioner) due 1/22/2024, Immigration Respondent Answering Brief due (Respondent) due 2/19/2024.\u00a0All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.\n\nFailure of the petitioner(s)/appellant(s) to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1 [Entered: 11/01/2023 11:27 AM]", + "description_html": "

    SCHEDULE NOTICE. Certified Administrative Record due (Respondent) due 12/11/2023, Respondent Response to Stay Motion (Filed with PFR) due (Respondent) due 1/1/2024, Immigration Petitioner Opening Brief due (Petitioner) due 1/22/2024, Immigration Respondent Answering Brief due (Respondent) due 2/19/2024. All briefs shall be served and filed pursuant to FRAP 31 and 9th Cir. R. 31-2.1.
    \n
    \nFailure of the petitioner(s)/appellant(s) to comply with this briefing schedule will result in automatic dismissal of the appeal. See 9th Cir. R. 42-1 [Entered: 11/01/2023 11:27 AM]

    ", + "document_number": 6, + "pacer_doc_id": "808527d7-e378-ee11-9ae5-001dd8087d6a", + "page_count": 2 + }, + { + "date_entered": "2023-11-01T11:23:00", + "date_filed": "2023-11-01T11:23:00", + "description": "CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 11/1/2023.\nThe U.S. Court of Appeals docket number 23-3206 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.\u00a0 It is your responsibility to alert the court if your contact information changes.\nResources Available\nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the\u00a0Immigration Outline\u00a0and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 11/01/2023 11:23 AM]", + "description_html": "

    CASE OPENED. Petition for Review has been received in the Clerk's office of the United States Court of Appeals for the Ninth Circuit on 11/1/2023.
    \nThe U.S. Court of Appeals docket number 23-3206 has been assigned to this case. All communications with the court must indicate this Court of Appeals docket number. Please carefully review the docket to ensure the name(s) and contact information are correct.  It is your responsibility to alert the court if your contact information changes.
    \nResources Available
    \nFor more information about case processing and to assist you in preparing your brief, please review the Case Opening Information (for attorneys and pro se litigants), review the Appellate Practice Guide, and counsel for petitioner(s) should also review the Immigration Outline and consider contacting the court's Appellate Mentoring Program for help with the brief and argument. [Entered: 11/01/2023 11:23 AM]

    ", + "document_number": 5, + "pacer_doc_id": "449c62c8-e378-ee11-9ae5-001dd80ba16d", + "page_count": 0 + }, + { + "date_entered": "2023-11-01T11:22:00", + "date_filed": "2023-11-01T11:22:00", + "description": "AGENCY DECISION\u00a0on review dated 10/11/2023. [Entered: 11/01/2023 11:22 AM]", + "description_html": "

    AGENCY DECISION on review dated 10/11/2023. [Entered: 11/01/2023 11:22 AM]

    ", + "document_number": 2, + "pacer_doc_id": "d95c8621-e078-ee11-9ae5-001dd80bf235", + "page_count": 0 + }, + { + "date_entered": "2023-11-01T13:12:00", + "date_filed": "2023-11-01T13:12:00", + "description": "NOTICE OF APPEARANCE by Anthony Cardozo Payne for Respondent Merrick B. Garland. [Entered: 11/01/2023 01:12 PM]", + "description_html": "

    NOTICE OF APPEARANCE by Anthony Cardozo Payne for Respondent Merrick B. Garland. [Entered: 11/01/2023 01:12 PM]

    ", + "document_number": 7, + "pacer_doc_id": "04698048-f278-ee11-9ae5-001dd80bf235", + "page_count": 0 + }, + { + "date_entered": "2023-11-01T13:49:00", + "date_filed": "2023-11-01T13:49:00", + "description": "ADDED Counsel for Respondent Anthony Cardozo Payne [Entered: 11/01/2023 01:49 PM]", + "description_html": "

    ADDED Counsel for Respondent Anthony Cardozo Payne [Entered: 11/01/2023 01:49 PM]

    ", + "document_number": 8, + "pacer_doc_id": "c930d7f0-f778-ee11-9ae5-001dd80bf235", + "page_count": 0 + } + ], + "docket_number": "23-3206", + "fee_status": "Paid", + "originating_court_information": { + "RESTRICTED_ALIEN_NUMBER": "A205-935-854", + "name": "San Francisco Northern California" + }, + "pacer_case_id": "8f6c08e2-df78-ee11-a81c-001dd80ad0b3", + "parties": [ + { + "attorneys": [ + { + "contact": "Email: lipkinlaw@gmail.com\nLAW OFFICES OF INNA LIPKIN\nP.O. Box 610160\nRedwood City, CA 94061", + "name": "Ms. Inna Lipkin, Counsel", + "roles": [ + "Retained" + ] + } + ], + "name": "JITENDER SINGH", + "type": "Petitioner", + "unparsed": [ + "\u00a0\u00a0\u00a0\u00a0A205-935-854, " + ] + }, + { + "attorneys": [ + { + "contact": "Email: Ninth.Circuit.OIL@usdoj.gov\nDOJ - U.S. Department of Justice\nCivil Division/Office of Immigration Litigation\nP.O. Box 878, Benjamin Franklin Station\nWashington, DC 20044", + "name": "Oil", + "roles": [ + "Government" + ] + }, + { + "contact": "Direct: 202-616-3264\nEmail: anthony.payne@usdoj.gov\nDOJ - U.S. Department of Justice\nCivil Division/Office of Immigration Litigation\nP.O. Box 878, Benjamin Franklin Station\nWashington, DC 20044", + "name": "Mr. Anthony Cardozo Payne, Senior Litigation Counsel", + "roles": [ + "Government" + ] + } + ], + "name": "MERRICK B. GARLAND, ATTORNEY GENERAL", + "type": "Respondent" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/dockets/bankruptcy/akb.json b/tests/examples/pacer/dockets/bankruptcy/akb.json index 93160c80b..6f4205947 100644 --- a/tests/examples/pacer/dockets/bankruptcy/akb.json +++ b/tests/examples/pacer/dockets/bankruptcy/akb.json @@ -211,6 +211,11 @@ } ], "docket_number": "95-00236", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/almb.json b/tests/examples/pacer/dockets/bankruptcy/almb.json index 110e26426..ac63a698c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/almb.json +++ b/tests/examples/pacer/dockets/bankruptcy/almb.json @@ -91,6 +91,11 @@ } ], "docket_number": "92-04963", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/almb_1.json b/tests/examples/pacer/dockets/bankruptcy/almb_1.json index b00662b1e..e39e4a55c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/almb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/almb_1.json @@ -99,6 +99,11 @@ } ], "docket_number": "09-32303", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/almb_2.json b/tests/examples/pacer/dockets/bankruptcy/almb_2.json index 936f977e5..b52312e44 100644 --- a/tests/examples/pacer/dockets/bankruptcy/almb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/almb_2.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "09-32303", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/alnb.json b/tests/examples/pacer/dockets/bankruptcy/alnb.json index 67ed47d72..152a0a822 100644 --- a/tests/examples/pacer/dockets/bankruptcy/alnb.json +++ b/tests/examples/pacer/dockets/bankruptcy/alnb.json @@ -59,6 +59,11 @@ } ], "docket_number": "09-80591", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JAC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/alsb.json b/tests/examples/pacer/dockets/bankruptcy/alsb.json index f8849527c..e147c9aa9 100644 --- a/tests/examples/pacer/dockets/bankruptcy/alsb.json +++ b/tests/examples/pacer/dockets/bankruptcy/alsb.json @@ -555,6 +555,11 @@ } ], "docket_number": "10-00276", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/areb.json b/tests/examples/pacer/dockets/bankruptcy/areb.json index 287eb824b..8712149ea 100644 --- a/tests/examples/pacer/dockets/bankruptcy/areb.json +++ b/tests/examples/pacer/dockets/bankruptcy/areb.json @@ -643,6 +643,11 @@ } ], "docket_number": "3:05-bk-10003", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_1.json b/tests/examples/pacer/dockets/bankruptcy/azb_1.json index 5a3db9ebf..e6de33c86 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_1.json @@ -355,6 +355,11 @@ } ], "docket_number": "2:07-bk-05481", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "JMM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_10.json b/tests/examples/pacer/dockets/bankruptcy/azb_10.json index d40cb3237..bf3aee36d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_10.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_10.json @@ -283,6 +283,11 @@ } ], "docket_number": "2:08-bk-18814", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "JMM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_11.json b/tests/examples/pacer/dockets/bankruptcy/azb_11.json index c910ab1d4..8c25d718a 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_11.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_11.json @@ -235,6 +235,11 @@ } ], "docket_number": "2:09-bk-01707", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RJH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_12.json b/tests/examples/pacer/dockets/bankruptcy/azb_12.json index 209ca3956..26f66049b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_12.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_12.json @@ -267,6 +267,11 @@ } ], "docket_number": "4:09-bk-05144", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "JMM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_13.json b/tests/examples/pacer/dockets/bankruptcy/azb_13.json index e4b7313c5..8c0f69bd0 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_13.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_13.json @@ -627,6 +627,11 @@ } ], "docket_number": "0:09-bk-00869", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "EWH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "0", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_14.json b/tests/examples/pacer/dockets/bankruptcy/azb_14.json index 6e5fbc97c..ab3078ae7 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_14.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_14.json @@ -259,6 +259,11 @@ } ], "docket_number": "2:09-bk-08306", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "GBN", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_15.json b/tests/examples/pacer/dockets/bankruptcy/azb_15.json index afb667d35..95750cbc3 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_15.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_15.json @@ -195,6 +195,11 @@ } ], "docket_number": "4:09-bk-09062", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "EWH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_16.json b/tests/examples/pacer/dockets/bankruptcy/azb_16.json index 507513e2d..d041687ae 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_16.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_16.json @@ -259,6 +259,11 @@ } ], "docket_number": "2:09-bk-10692", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "GBN", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_17.json b/tests/examples/pacer/dockets/bankruptcy/azb_17.json index ee423e7cf..00d8ef1cb 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_17.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_17.json @@ -179,6 +179,11 @@ } ], "docket_number": "2:09-bk-11983", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "SSC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_18.json b/tests/examples/pacer/dockets/bankruptcy/azb_18.json index b9828ceae..605c8c670 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_18.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_18.json @@ -203,6 +203,11 @@ } ], "docket_number": "2:09-bk-12715", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "GBN", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_19.json b/tests/examples/pacer/dockets/bankruptcy/azb_19.json index c59ea0b6f..5489030a6 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_19.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_19.json @@ -179,6 +179,11 @@ } ], "docket_number": "2:09-bk-13075", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "CGC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_20.json b/tests/examples/pacer/dockets/bankruptcy/azb_20.json index 7e297cbfc..381553b68 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_20.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_20.json @@ -307,6 +307,11 @@ } ], "docket_number": "2:09-bk-13508", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RTB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_21.json b/tests/examples/pacer/dockets/bankruptcy/azb_21.json index 0191c905a..805239472 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_21.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_21.json @@ -243,6 +243,11 @@ } ], "docket_number": "4:09-bk-13625", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "EWH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_22.json b/tests/examples/pacer/dockets/bankruptcy/azb_22.json index 883526e81..6581e1e15 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_22.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_22.json @@ -299,6 +299,11 @@ } ], "docket_number": "2:09-bk-13744", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "CGC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_23.json b/tests/examples/pacer/dockets/bankruptcy/azb_23.json index 060399fe9..733427933 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_23.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_23.json @@ -179,6 +179,11 @@ } ], "docket_number": "2:09-bk-14697", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "GBN", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_24.json b/tests/examples/pacer/dockets/bankruptcy/azb_24.json index a8a2a2d1d..52835616d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_24.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_24.json @@ -307,6 +307,11 @@ } ], "docket_number": "2:09-bk-14742", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "GBN", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_25.json b/tests/examples/pacer/dockets/bankruptcy/azb_25.json index d10646d5b..e11d8a06d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_25.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_25.json @@ -187,6 +187,11 @@ } ], "docket_number": "2:09-bk-14763", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "GBN", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_26.json b/tests/examples/pacer/dockets/bankruptcy/azb_26.json index db199dc8b..11994680b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_26.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_26.json @@ -235,6 +235,11 @@ } ], "docket_number": "2:09-bk-14945", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RTB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_27.json b/tests/examples/pacer/dockets/bankruptcy/azb_27.json index 90af0010d..6db7bece2 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_27.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_27.json @@ -235,6 +235,11 @@ } ], "docket_number": "2:09-bk-18090", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "GBN", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_28.json b/tests/examples/pacer/dockets/bankruptcy/azb_28.json index 378169104..6cbcc35b9 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_28.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_28.json @@ -347,6 +347,11 @@ } ], "docket_number": "2:09-bk-15586", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RJH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_29.json b/tests/examples/pacer/dockets/bankruptcy/azb_29.json index 643f2e620..00acb853c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_29.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_29.json @@ -819,6 +819,11 @@ } ], "docket_number": "4:09-bk-15714", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "JMM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_30.json b/tests/examples/pacer/dockets/bankruptcy/azb_30.json index f01a2280f..69036e05f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_30.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_30.json @@ -179,6 +179,11 @@ } ], "docket_number": "2:09-bk-16050", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "JMM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_31.json b/tests/examples/pacer/dockets/bankruptcy/azb_31.json index 30e98dc48..d823911bc 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_31.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_31.json @@ -163,6 +163,11 @@ } ], "docket_number": "2:09-ap-00844", + "federal_defendant_number": null, + "federal_dn_case_type": "ap", + "federal_dn_judge_initials_assigned": "SSC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_32.json b/tests/examples/pacer/dockets/bankruptcy/azb_32.json index 027d10510..851183f55 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_32.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_32.json @@ -139,6 +139,11 @@ } ], "docket_number": "2:10-bk-01344", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "SSC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_33.json b/tests/examples/pacer/dockets/bankruptcy/azb_33.json index 08ffe65bd..3f13f01a9 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_33.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_33.json @@ -211,6 +211,11 @@ } ], "docket_number": "2:09-bk-18490", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RTB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_34.json b/tests/examples/pacer/dockets/bankruptcy/azb_34.json index cd583797a..43f96d5d8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_34.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_34.json @@ -395,6 +395,11 @@ } ], "docket_number": "2:09-bk-18534", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RTB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_35.json b/tests/examples/pacer/dockets/bankruptcy/azb_35.json index 2e160199b..017b89ddc 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_35.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_35.json @@ -355,6 +355,11 @@ } ], "docket_number": "2:09-bk-19166", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RJH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_36.json b/tests/examples/pacer/dockets/bankruptcy/azb_36.json index 7752d20cc..7a226655e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_36.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_36.json @@ -131,6 +131,11 @@ } ], "docket_number": "2:09-bk-20820", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "JMM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_37.json b/tests/examples/pacer/dockets/bankruptcy/azb_37.json index 8b5b88a75..6929c96eb 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_37.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_37.json @@ -139,6 +139,11 @@ } ], "docket_number": "2:09-bk-20833", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RJH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_38.json b/tests/examples/pacer/dockets/bankruptcy/azb_38.json index cf4499e02..608671e2a 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_38.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_38.json @@ -371,6 +371,11 @@ } ], "docket_number": "2:08-bk-16567", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "GBN", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_39.json b/tests/examples/pacer/dockets/bankruptcy/azb_39.json index e2941af5c..5f3e4f020 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_39.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_39.json @@ -131,6 +131,11 @@ } ], "docket_number": "4:09-bk-23715", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "JMM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_40.json b/tests/examples/pacer/dockets/bankruptcy/azb_40.json index 848ec66f8..098392832 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_40.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_40.json @@ -259,6 +259,11 @@ } ], "docket_number": "2:09-bk-26798", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RTB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_41.json b/tests/examples/pacer/dockets/bankruptcy/azb_41.json index 94006d041..59bebfba7 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_41.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_41.json @@ -195,6 +195,11 @@ } ], "docket_number": "4:09-bk-24564", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "EWH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_42.json b/tests/examples/pacer/dockets/bankruptcy/azb_42.json index d21eda649..e3760f4b5 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_42.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_42.json @@ -315,6 +315,11 @@ } ], "docket_number": "4:09-bk-26426", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "EWH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_43.json b/tests/examples/pacer/dockets/bankruptcy/azb_43.json index 433a4ddd3..2906dac6d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_43.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_43.json @@ -187,6 +187,11 @@ } ], "docket_number": "0:09-bk-26429", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RJH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "0", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_44.json b/tests/examples/pacer/dockets/bankruptcy/azb_44.json index 75f339994..792919c8e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_44.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_44.json @@ -211,6 +211,11 @@ } ], "docket_number": "4:09-bk-26474", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "EWH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_45.json b/tests/examples/pacer/dockets/bankruptcy/azb_45.json index 1d1f80870..64e23b821 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_45.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_45.json @@ -179,6 +179,11 @@ } ], "docket_number": "0:09-bk-27028", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RJH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "0", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_46.json b/tests/examples/pacer/dockets/bankruptcy/azb_46.json index 443c1ccf9..7bfa8ce09 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_46.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_46.json @@ -211,6 +211,11 @@ } ], "docket_number": "2:09-bk-27437", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "SSC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_47.json b/tests/examples/pacer/dockets/bankruptcy/azb_47.json index ee98be0a1..576dc3423 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_47.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_47.json @@ -235,6 +235,11 @@ } ], "docket_number": "2:09-bk-28716", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RTB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_48.json b/tests/examples/pacer/dockets/bankruptcy/azb_48.json index 266034726..c02de8d2b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_48.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_48.json @@ -171,6 +171,11 @@ } ], "docket_number": "2:09-bk-28817", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "CGC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_49.json b/tests/examples/pacer/dockets/bankruptcy/azb_49.json index c6e9fd68d..ad3f93654 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_49.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_49.json @@ -467,6 +467,11 @@ } ], "docket_number": "2:09-bk-29049", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RTB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_50.json b/tests/examples/pacer/dockets/bankruptcy/azb_50.json index 3de9e6f21..e5d9f90f0 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_50.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_50.json @@ -259,6 +259,11 @@ } ], "docket_number": "2:09-bk-29837", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "CGC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_51.json b/tests/examples/pacer/dockets/bankruptcy/azb_51.json index add022e96..b4ff9351e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_51.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_51.json @@ -203,6 +203,11 @@ } ], "docket_number": "2:09-bk-30293", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "CGC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_52.json b/tests/examples/pacer/dockets/bankruptcy/azb_52.json index dc6df95f7..a819f8914 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_52.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_52.json @@ -219,6 +219,11 @@ } ], "docket_number": "0:09-bk-30413", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RJH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "0", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_53.json b/tests/examples/pacer/dockets/bankruptcy/azb_53.json index c65e89254..eb85e6403 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_53.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_53.json @@ -99,6 +99,11 @@ } ], "docket_number": "2:09-bk-31201", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RJH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_54.json b/tests/examples/pacer/dockets/bankruptcy/azb_54.json index c263c201c..7084104be 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_54.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_54.json @@ -163,6 +163,11 @@ } ], "docket_number": "2:09-bk-31404", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RJH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_55.json b/tests/examples/pacer/dockets/bankruptcy/azb_55.json index e0c5c2354..4711623c1 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_55.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_55.json @@ -411,6 +411,11 @@ } ], "docket_number": "2:07-bk-01404", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "CGC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_56.json b/tests/examples/pacer/dockets/bankruptcy/azb_56.json index 212d53a19..4eacc71fb 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_56.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_56.json @@ -227,6 +227,11 @@ } ], "docket_number": "2:09-bk-31899", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RTBP", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_57.json b/tests/examples/pacer/dockets/bankruptcy/azb_57.json index c1503f841..e37a81366 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_57.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_57.json @@ -259,6 +259,11 @@ } ], "docket_number": "2:07-bk-06851", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RJH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_58.json b/tests/examples/pacer/dockets/bankruptcy/azb_58.json index 734759d86..ceb401917 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_58.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_58.json @@ -1467,6 +1467,11 @@ } ], "docket_number": "2:08-bk-00381", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "SSC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_59.json b/tests/examples/pacer/dockets/bankruptcy/azb_59.json index 471957037..80505b4e0 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_59.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_59.json @@ -299,6 +299,11 @@ } ], "docket_number": "4:08-bk-17962", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "JMM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_61.json b/tests/examples/pacer/dockets/bankruptcy/azb_61.json index 9f3275f24..73d472515 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_61.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_61.json @@ -243,6 +243,11 @@ } ], "docket_number": "2:08-ap-00294", + "federal_defendant_number": null, + "federal_dn_case_type": "ap", + "federal_dn_judge_initials_assigned": "SSC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_62.json b/tests/examples/pacer/dockets/bankruptcy/azb_62.json index d75f3088c..2e3ad8261 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_62.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_62.json @@ -307,6 +307,11 @@ } ], "docket_number": "2:08-bk-11794", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RJH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_63.json b/tests/examples/pacer/dockets/bankruptcy/azb_63.json index 88563ce49..34e05fbff 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_63.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_63.json @@ -515,6 +515,11 @@ } ], "docket_number": "0:08-bk-15042", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RJH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "0", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/azb_64.json b/tests/examples/pacer/dockets/bankruptcy/azb_64.json index ee34d470f..b52ff626a 100644 --- a/tests/examples/pacer/dockets/bankruptcy/azb_64.json +++ b/tests/examples/pacer/dockets/bankruptcy/azb_64.json @@ -371,6 +371,11 @@ } ], "docket_number": "2:08-bk-17994", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "SSC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb.json b/tests/examples/pacer/dockets/bankruptcy/cacb.json index 098d80696..422930a8b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "2:08-ap-01570", + "federal_defendant_number": null, + "federal_dn_case_type": "ap", + "federal_dn_judge_initials_assigned": "BB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_1.json b/tests/examples/pacer/dockets/bankruptcy/cacb_1.json index cb09cc3bd..ccce0d799 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_1.json @@ -259,6 +259,11 @@ } ], "docket_number": "6:09-bk-13029", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RN", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_10.json b/tests/examples/pacer/dockets/bankruptcy/cacb_10.json index e8a9c653a..122e41969 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_10.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_10.json @@ -403,6 +403,11 @@ } ], "docket_number": "6:09-bk-34090", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "BB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_11.json b/tests/examples/pacer/dockets/bankruptcy/cacb_11.json index ac4663f70..8031b17c0 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_11.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_11.json @@ -115,6 +115,11 @@ } ], "docket_number": "1:09-bk-23696", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "GM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_12.json b/tests/examples/pacer/dockets/bankruptcy/cacb_12.json index 4b60dd553..64d71ba91 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_12.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_12.json @@ -163,6 +163,11 @@ } ], "docket_number": "9:09-bk-14319", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "9", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_13.json b/tests/examples/pacer/dockets/bankruptcy/cacb_13.json index e87bbef56..b071cb911 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_13.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_13.json @@ -155,6 +155,11 @@ } ], "docket_number": "2:09-bk-40822", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "VZ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_14.json b/tests/examples/pacer/dockets/bankruptcy/cacb_14.json index 832b2aa26..b0980723a 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_14.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_14.json @@ -139,6 +139,11 @@ } ], "docket_number": "6:09-bk-36788", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "TD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_15.json b/tests/examples/pacer/dockets/bankruptcy/cacb_15.json index 66e6ee141..2df667506 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_15.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_15.json @@ -211,6 +211,11 @@ } ], "docket_number": "6:09-bk-37677", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "TD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_16.json b/tests/examples/pacer/dockets/bankruptcy/cacb_16.json index bdd66e74b..d61154a55 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_16.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_16.json @@ -131,6 +131,11 @@ } ], "docket_number": "1:09-bk-25487", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "MT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_17.json b/tests/examples/pacer/dockets/bankruptcy/cacb_17.json index 454fa357e..46df2b02a 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_17.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_17.json @@ -187,6 +187,11 @@ } ], "docket_number": "1:09-bk-26238", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "KT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_18.json b/tests/examples/pacer/dockets/bankruptcy/cacb_18.json index e9080960c..3e9ba5ebc 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_18.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_18.json @@ -115,6 +115,11 @@ } ], "docket_number": "8:09-bk-23738", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "ES", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_19.json b/tests/examples/pacer/dockets/bankruptcy/cacb_19.json index b150d605d..33bc39e4e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_19.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_19.json @@ -43,6 +43,11 @@ } ], "docket_number": "2:09-ap-03295", + "federal_defendant_number": null, + "federal_dn_case_type": "ap", + "federal_dn_judge_initials_assigned": "BB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_2.json b/tests/examples/pacer/dockets/bankruptcy/cacb_2.json index 42cd5f47b..9d3b67f35 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_2.json @@ -10,6 +10,11 @@ "demand": "$5554000", "docket_entries": [], "docket_number": "2:09-ap-01176", + "federal_defendant_number": null, + "federal_dn_case_type": "ap", + "federal_dn_judge_initials_assigned": "BB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_20.json b/tests/examples/pacer/dockets/bankruptcy/cacb_20.json index 637f0ea80..13a63e8b3 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_20.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_20.json @@ -195,6 +195,11 @@ } ], "docket_number": "2:09-bk-45350", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "BR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_21.json b/tests/examples/pacer/dockets/bankruptcy/cacb_21.json index b2ae5ff11..7335d58d4 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_21.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_21.json @@ -155,6 +155,11 @@ } ], "docket_number": "2:09-bk-45639", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "VK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_22.json b/tests/examples/pacer/dockets/bankruptcy/cacb_22.json index 7953fb975..c100c88ca 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_22.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_22.json @@ -803,6 +803,11 @@ } ], "docket_number": "2:10-bk-10642", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "VZ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_23.json b/tests/examples/pacer/dockets/bankruptcy/cacb_23.json index 0e83cbc09..e408965b8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_23.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_23.json @@ -163,6 +163,11 @@ } ], "docket_number": "6:10-bk-10986", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "MJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_24.json b/tests/examples/pacer/dockets/bankruptcy/cacb_24.json index 9c05ba985..0ef1410ea 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_24.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_24.json @@ -75,6 +75,11 @@ } ], "docket_number": "2:10-bk-11546", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "SB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_25.json b/tests/examples/pacer/dockets/bankruptcy/cacb_25.json index 683c9ffcb..b9e79375b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_25.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_25.json @@ -107,6 +107,11 @@ } ], "docket_number": "6:10-bk-11379", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "MJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_26.json b/tests/examples/pacer/dockets/bankruptcy/cacb_26.json index 5e9a4adc9..b18e6bfb1 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_26.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_26.json @@ -131,6 +131,11 @@ } ], "docket_number": "6:10-bk-12164", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "MJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_27.json b/tests/examples/pacer/dockets/bankruptcy/cacb_27.json index d494b2844..7fc7ec297 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_27.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_27.json @@ -115,6 +115,11 @@ } ], "docket_number": "8:10-bk-11079", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "TA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_28.json b/tests/examples/pacer/dockets/bankruptcy/cacb_28.json index 2467a0f50..5c686374b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_28.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_28.json @@ -67,6 +67,11 @@ } ], "docket_number": "1:10-bk-11409", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "KT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_29.json b/tests/examples/pacer/dockets/bankruptcy/cacb_29.json index e44b474b9..9ad10d663 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_29.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_29.json @@ -51,6 +51,11 @@ } ], "docket_number": "9:10-bk-10634", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "9", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_3.json b/tests/examples/pacer/dockets/bankruptcy/cacb_3.json index 6f77b8e0b..b0f87562b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_3.json @@ -155,6 +155,11 @@ } ], "docket_number": "2:99-bk-13508", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "EC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_30.json b/tests/examples/pacer/dockets/bankruptcy/cacb_30.json index e2cf26a44..b822234b3 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_30.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_30.json @@ -67,6 +67,11 @@ } ], "docket_number": "2:10-bk-15096", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "VK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_31.json b/tests/examples/pacer/dockets/bankruptcy/cacb_31.json index 8e0a56780..6ede02661 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_31.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_31.json @@ -43,6 +43,11 @@ } ], "docket_number": "2:10-bk-15109", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "RN", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_32.json b/tests/examples/pacer/dockets/bankruptcy/cacb_32.json index 6f6b0b197..7ce761a4f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_32.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_32.json @@ -67,6 +67,11 @@ } ], "docket_number": "8:10-bk-11791", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "TA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_33.json b/tests/examples/pacer/dockets/bankruptcy/cacb_33.json index da40ef24e..792fe7bad 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_33.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_33.json @@ -51,6 +51,11 @@ } ], "docket_number": "6:10-bk-14029", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "MJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_34.json b/tests/examples/pacer/dockets/bankruptcy/cacb_34.json index 53b52b5e0..4fc0bf92f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_34.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_34.json @@ -51,6 +51,11 @@ } ], "docket_number": "2:10-bk-15309", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "VK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_35.json b/tests/examples/pacer/dockets/bankruptcy/cacb_35.json index c55bcfaa8..ab1fc2168 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_35.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_35.json @@ -35,6 +35,11 @@ } ], "docket_number": "2:10-bk-15334", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "EC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_36.json b/tests/examples/pacer/dockets/bankruptcy/cacb_36.json index e15a70acc..730b28966 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_36.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_36.json @@ -203,6 +203,11 @@ } ], "docket_number": "1:09-bk-13356", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "KT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_37.json b/tests/examples/pacer/dockets/bankruptcy/cacb_37.json index f8e7b2010..d75925b72 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_37.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_37.json @@ -91,6 +91,11 @@ } ], "docket_number": "8:97-bk-17598", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "LR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_38.json b/tests/examples/pacer/dockets/bankruptcy/cacb_38.json index ecb2d6bf1..8a6565079 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_38.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_38.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "8:99-bk-16358", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "JR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_39.json b/tests/examples/pacer/dockets/bankruptcy/cacb_39.json index 355108e45..a24b58bd3 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_39.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_39.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "6:04-bk-23757", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "MG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_4.json b/tests/examples/pacer/dockets/bankruptcy/cacb_4.json index e68f9c5dd..32ab1632c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_4.json @@ -211,6 +211,11 @@ } ], "docket_number": "8:09-bk-14018", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "TA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_40.json b/tests/examples/pacer/dockets/bankruptcy/cacb_40.json index 3e80d5c00..5e14c6049 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_40.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_40.json @@ -67,6 +67,11 @@ } ], "docket_number": "8:03-bk-10133", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "JR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_5.json b/tests/examples/pacer/dockets/bankruptcy/cacb_5.json index 7b6a6c4a1..2e13519ea 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_5.json @@ -10,6 +10,11 @@ "demand": "$92000", "docket_entries": [], "docket_number": "8:09-ap-01469", + "federal_defendant_number": null, + "federal_dn_case_type": "ap", + "federal_dn_judge_initials_assigned": "TA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_6.json b/tests/examples/pacer/dockets/bankruptcy/cacb_6.json index 497c05a5d..35f9ce340 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_6.json @@ -515,6 +515,11 @@ } ], "docket_number": "8:09-bk-18306", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "TA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_7.json b/tests/examples/pacer/dockets/bankruptcy/cacb_7.json index 5b70dc564..4d478b983 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_7.json @@ -91,6 +91,11 @@ } ], "docket_number": "8:09-ap-01514", + "federal_defendant_number": null, + "federal_dn_case_type": "ap", + "federal_dn_judge_initials_assigned": "TA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_8.json b/tests/examples/pacer/dockets/bankruptcy/cacb_8.json index a8f3285d4..3f7d3f33a 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_8.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_8.json @@ -187,6 +187,11 @@ } ], "docket_number": "2:09-bk-34577", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "VK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cacb_9.json b/tests/examples/pacer/dockets/bankruptcy/cacb_9.json index 43fcca08a..21fc3e897 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cacb_9.json +++ b/tests/examples/pacer/dockets/bankruptcy/cacb_9.json @@ -163,6 +163,11 @@ } ], "docket_number": "2:09-bk-37078", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "ER", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/caeb.json b/tests/examples/pacer/dockets/bankruptcy/caeb.json index cb44c202a..d378b8385 100644 --- a/tests/examples/pacer/dockets/bankruptcy/caeb.json +++ b/tests/examples/pacer/dockets/bankruptcy/caeb.json @@ -443,6 +443,11 @@ } ], "docket_number": "09-23551", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/caeb_1.json b/tests/examples/pacer/dockets/bankruptcy/caeb_1.json index 285365cc5..adb095ac9 100644 --- a/tests/examples/pacer/dockets/bankruptcy/caeb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/caeb_1.json @@ -979,6 +979,11 @@ } ], "docket_number": "09-41579", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/caeb_2.json b/tests/examples/pacer/dockets/bankruptcy/caeb_2.json index 88c240d16..acd13ac4f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/caeb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/caeb_2.json @@ -195,6 +195,11 @@ } ], "docket_number": "09-45311", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/caeb_3.json b/tests/examples/pacer/dockets/bankruptcy/caeb_3.json index f54780187..1fe12ab80 100644 --- a/tests/examples/pacer/dockets/bankruptcy/caeb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/caeb_3.json @@ -115,6 +115,11 @@ } ], "docket_number": "10-20466", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/caeb_4.json b/tests/examples/pacer/dockets/bankruptcy/caeb_4.json index 1c81cfbaf..304d063cf 100644 --- a/tests/examples/pacer/dockets/bankruptcy/caeb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/caeb_4.json @@ -115,6 +115,11 @@ } ], "docket_number": "10-10309", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/caeb_5.json b/tests/examples/pacer/dockets/bankruptcy/caeb_5.json index 6201d8489..b96bbdbc3 100644 --- a/tests/examples/pacer/dockets/bankruptcy/caeb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/caeb_5.json @@ -99,6 +99,11 @@ } ], "docket_number": "10-20920", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/caeb_6.json b/tests/examples/pacer/dockets/bankruptcy/caeb_6.json index bb0da70ee..976c8d485 100644 --- a/tests/examples/pacer/dockets/bankruptcy/caeb_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/caeb_6.json @@ -123,6 +123,11 @@ } ], "docket_number": "10-21862", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/caeb_7.json b/tests/examples/pacer/dockets/bankruptcy/caeb_7.json index d5ee61fe1..cf9d3738e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/caeb_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/caeb_7.json @@ -99,6 +99,11 @@ } ], "docket_number": "10-22146", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/caeb_8.json b/tests/examples/pacer/dockets/bankruptcy/caeb_8.json index d233f1f9e..ea9ae993c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/caeb_8.json +++ b/tests/examples/pacer/dockets/bankruptcy/caeb_8.json @@ -75,6 +75,11 @@ } ], "docket_number": "10-23565", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/caeb_9.json b/tests/examples/pacer/dockets/bankruptcy/caeb_9.json index 6090de145..1a4d31520 100644 --- a/tests/examples/pacer/dockets/bankruptcy/caeb_9.json +++ b/tests/examples/pacer/dockets/bankruptcy/caeb_9.json @@ -83,6 +83,11 @@ } ], "docket_number": "10-11467", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb.json b/tests/examples/pacer/dockets/bankruptcy/canb.json index 263dbd965..f4e64f0b1 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb.json @@ -27,6 +27,11 @@ } ], "docket_number": "09-31347", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_1.json b/tests/examples/pacer/dockets/bankruptcy/canb_1.json index 16136ff52..70312f87e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_1.json @@ -75,6 +75,11 @@ } ], "docket_number": "96-13030", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_10.json b/tests/examples/pacer/dockets/bankruptcy/canb_10.json index 1d99d618b..ee17f6c62 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_10.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_10.json @@ -123,6 +123,11 @@ } ], "docket_number": "09-71059", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_11.json b/tests/examples/pacer/dockets/bankruptcy/canb_11.json index eb1a3faf2..b4219b247 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_11.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_11.json @@ -115,6 +115,11 @@ } ], "docket_number": "09-03228", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_12.json b/tests/examples/pacer/dockets/bankruptcy/canb_12.json index e050917e8..29719a80e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_12.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_12.json @@ -107,6 +107,11 @@ } ], "docket_number": "10-50303", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_13.json b/tests/examples/pacer/dockets/bankruptcy/canb_13.json index 734aa77e0..969487a0c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_13.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_13.json @@ -195,6 +195,11 @@ } ], "docket_number": "10-30413", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_14.json b/tests/examples/pacer/dockets/bankruptcy/canb_14.json index 7d69f1346..491f74ec8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_14.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_14.json @@ -123,6 +123,11 @@ } ], "docket_number": "10-41403", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_15.json b/tests/examples/pacer/dockets/bankruptcy/canb_15.json index b61672712..60f3b7686 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_15.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_15.json @@ -51,6 +51,11 @@ } ], "docket_number": "10-51435", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_16.json b/tests/examples/pacer/dockets/bankruptcy/canb_16.json index 4bf5b0861..0fd4b1cbc 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_16.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_16.json @@ -35,6 +35,11 @@ } ], "docket_number": "10-30514", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_2.json b/tests/examples/pacer/dockets/bankruptcy/canb_2.json index 081c20381..a724bb25b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_2.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "99-12036", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_3.json b/tests/examples/pacer/dockets/bankruptcy/canb_3.json index 69a9f4170..8982c996f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_3.json @@ -131,6 +131,11 @@ } ], "docket_number": "06-52608", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_4.json b/tests/examples/pacer/dockets/bankruptcy/canb_4.json index ed6e1c42d..c2413c44d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_4.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "08-03027", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_5.json b/tests/examples/pacer/dockets/bankruptcy/canb_5.json index 070c7e764..de929953d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_5.json @@ -419,6 +419,11 @@ } ], "docket_number": "08-42263", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_6.json b/tests/examples/pacer/dockets/bankruptcy/canb_6.json index a751551a5..560f0f477 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_6.json @@ -507,6 +507,11 @@ } ], "docket_number": "09-41735", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_7.json b/tests/examples/pacer/dockets/bankruptcy/canb_7.json index 17e753d3d..49ebb5db8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_7.json @@ -331,6 +331,11 @@ } ], "docket_number": "09-45350", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_8.json b/tests/examples/pacer/dockets/bankruptcy/canb_8.json index b28399d99..0037bfd3d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_8.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_8.json @@ -1043,6 +1043,11 @@ } ], "docket_number": "09-54787", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/canb_9.json b/tests/examples/pacer/dockets/bankruptcy/canb_9.json index cc7db508c..a94b61daf 100644 --- a/tests/examples/pacer/dockets/bankruptcy/canb_9.json +++ b/tests/examples/pacer/dockets/bankruptcy/canb_9.json @@ -259,6 +259,11 @@ } ], "docket_number": "09-56573", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/casb.json b/tests/examples/pacer/dockets/bankruptcy/casb.json index a271b63a3..70851e064 100644 --- a/tests/examples/pacer/dockets/bankruptcy/casb.json +++ b/tests/examples/pacer/dockets/bankruptcy/casb.json @@ -2115,6 +2115,11 @@ } ], "docket_number": "95-05684", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "PB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/casb_1.json b/tests/examples/pacer/dockets/bankruptcy/casb_1.json index f95d589d3..a62db474c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/casb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/casb_1.json @@ -195,6 +195,11 @@ } ], "docket_number": "08-02923", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "LA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/casb_2.json b/tests/examples/pacer/dockets/bankruptcy/casb_2.json index baf31e670..9bbf21bb4 100644 --- a/tests/examples/pacer/dockets/bankruptcy/casb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/casb_2.json @@ -115,6 +115,11 @@ } ], "docket_number": "10-00164", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "LT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/casb_3.json b/tests/examples/pacer/dockets/bankruptcy/casb_3.json index ebf79b1c8..c40400f7e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/casb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/casb_3.json @@ -107,6 +107,11 @@ } ], "docket_number": "10-00670", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "PB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/cob.json b/tests/examples/pacer/dockets/bankruptcy/cob.json index 218f740e2..b67910898 100644 --- a/tests/examples/pacer/dockets/bankruptcy/cob.json +++ b/tests/examples/pacer/dockets/bankruptcy/cob.json @@ -107,6 +107,11 @@ } ], "docket_number": "09-33251", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "HRT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ctb.json b/tests/examples/pacer/dockets/bankruptcy/ctb.json index 1f1566d16..a10dc33b4 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ctb.json +++ b/tests/examples/pacer/dockets/bankruptcy/ctb.json @@ -19,6 +19,11 @@ } ], "docket_number": "08-50754", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ctb_1.json b/tests/examples/pacer/dockets/bankruptcy/ctb_1.json index be5c169b4..e83f65460 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ctb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/ctb_1.json @@ -115,6 +115,11 @@ } ], "docket_number": "09-51891", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ctb_2.json b/tests/examples/pacer/dockets/bankruptcy/ctb_2.json index 75e0fa9fa..ce5e112ce 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ctb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/ctb_2.json @@ -179,6 +179,11 @@ } ], "docket_number": "10-50273", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb.json b/tests/examples/pacer/dockets/bankruptcy/deb.json index c52143a5b..8699ed234 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "05-10203", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MFW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_1.json b/tests/examples/pacer/dockets/bankruptcy/deb_1.json index 77a529a39..c9c0fc48b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_1.json @@ -707,6 +707,11 @@ } ], "docket_number": "07-11047", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CSS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_10.json b/tests/examples/pacer/dockets/bankruptcy/deb_10.json index 7597e6b18..9137190e4 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_10.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_10.json @@ -371,6 +371,11 @@ } ], "docket_number": "09-11139", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CSS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_11.json b/tests/examples/pacer/dockets/bankruptcy/deb_11.json index 4cabda1a2..fe7ee0864 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_11.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_11.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "09-50934", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MFW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_12.json b/tests/examples/pacer/dockets/bankruptcy/deb_12.json index d55001963..3df7706c3 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_12.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_12.json @@ -931,6 +931,11 @@ } ], "docket_number": "09-12118", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_13.json b/tests/examples/pacer/dockets/bankruptcy/deb_13.json index 3411d9e2c..066173393 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_13.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_13.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "09-51067", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_14.json b/tests/examples/pacer/dockets/bankruptcy/deb_14.json index 6c6e6e607..6c7915f19 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_14.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_14.json @@ -171,6 +171,11 @@ } ], "docket_number": "09-12390", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CSS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_15.json b/tests/examples/pacer/dockets/bankruptcy/deb_15.json index a4dd0302b..b68902526 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_15.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_15.json @@ -179,6 +179,11 @@ } ], "docket_number": "09-12659", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MFW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_16.json b/tests/examples/pacer/dockets/bankruptcy/deb_16.json index d6c733646..c772d410e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_16.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_16.json @@ -43,6 +43,11 @@ } ], "docket_number": "09-13684", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CSS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_17.json b/tests/examples/pacer/dockets/bankruptcy/deb_17.json index 94b2d3740..1a598bf27 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_17.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_17.json @@ -859,6 +859,11 @@ } ], "docket_number": "09-14089", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_18.json b/tests/examples/pacer/dockets/bankruptcy/deb_18.json index 7f43fe1a6..0dd723487 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_18.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_18.json @@ -683,6 +683,11 @@ } ], "docket_number": "09-14429", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CSS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_19.json b/tests/examples/pacer/dockets/bankruptcy/deb_19.json index 72274a00c..566a2a036 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_19.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_19.json @@ -35,6 +35,11 @@ } ], "docket_number": "09-14461", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KJC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_2.json b/tests/examples/pacer/dockets/bankruptcy/deb_2.json index 0d7a13ca6..f2cff156c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_2.json @@ -10,6 +10,11 @@ "demand": "$420000", "docket_entries": [], "docket_number": "09-52094", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_20.json b/tests/examples/pacer/dockets/bankruptcy/deb_20.json index 3078945f0..bba287a92 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_20.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_20.json @@ -395,6 +395,11 @@ } ], "docket_number": "09-14473", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_21.json b/tests/examples/pacer/dockets/bankruptcy/deb_21.json index 751e8e12a..477c9409c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_21.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_21.json @@ -43,6 +43,11 @@ } ], "docket_number": "10-10070", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KJC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_22.json b/tests/examples/pacer/dockets/bankruptcy/deb_22.json index 764dfc4f1..cbf7a5dde 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_22.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_22.json @@ -635,6 +635,11 @@ } ], "docket_number": "10-10352", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_23.json b/tests/examples/pacer/dockets/bankruptcy/deb_23.json index 0d73c6f01..e6cac2eb4 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_23.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_23.json @@ -83,6 +83,11 @@ } ], "docket_number": "08-13031", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MFW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_24.json b/tests/examples/pacer/dockets/bankruptcy/deb_24.json index 2f7b5e7fd..bad386d8e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_24.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_24.json @@ -10,6 +10,11 @@ "demand": "$7000000", "docket_entries": [], "docket_number": "06-50826", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MFW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_3.json b/tests/examples/pacer/dockets/bankruptcy/deb_3.json index 5c8f7f42d..040cc45a2 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_3.json @@ -67,6 +67,11 @@ } ], "docket_number": "08-12229", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MFW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_4.json b/tests/examples/pacer/dockets/bankruptcy/deb_4.json index edeec9424..10c8efe90 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_4.json @@ -371,6 +371,11 @@ } ], "docket_number": "08-12606", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_5.json b/tests/examples/pacer/dockets/bankruptcy/deb_5.json index e75c9b2dd..176cd54d9 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_5.json @@ -219,6 +219,11 @@ } ], "docket_number": "08-13031", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MFW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_6.json b/tests/examples/pacer/dockets/bankruptcy/deb_6.json index 701c44cb1..d32e0257e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_6.json @@ -35,6 +35,11 @@ } ], "docket_number": "08-13041", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CSS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_7.json b/tests/examples/pacer/dockets/bankruptcy/deb_7.json index 01237ab34..1a9d9a6eb 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_7.json @@ -179,6 +179,11 @@ } ], "docket_number": "09-10235", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BLS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_8.json b/tests/examples/pacer/dockets/bankruptcy/deb_8.json index e3b3223d6..941c190b4 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_8.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_8.json @@ -179,6 +179,11 @@ } ], "docket_number": "09-10690", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KJC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/deb_9.json b/tests/examples/pacer/dockets/bankruptcy/deb_9.json index 359acbf45..77417401b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/deb_9.json +++ b/tests/examples/pacer/dockets/bankruptcy/deb_9.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "09-50551", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MFW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb.json b/tests/examples/pacer/dockets/bankruptcy/flmb.json index 78a781d4c..c0ce93635 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb.json @@ -411,6 +411,11 @@ } ], "docket_number": "3:09-bk-07047", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "JAF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_1.json b/tests/examples/pacer/dockets/bankruptcy/flmb_1.json index 7ac12bf3c..dcbe91dc5 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_1.json @@ -395,6 +395,11 @@ } ], "docket_number": "8:00-bk-15583", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "ALP", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_10.json b/tests/examples/pacer/dockets/bankruptcy/flmb_10.json index 7f0f4dd25..61cbcb079 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_10.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_10.json @@ -43,6 +43,11 @@ } ], "docket_number": "3:10-bk-00995", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "JAF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_11.json b/tests/examples/pacer/dockets/bankruptcy/flmb_11.json index fd479f5a1..1f5d4a46c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_11.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_11.json @@ -147,6 +147,11 @@ } ], "docket_number": "9:10-bk-03090", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "ALP", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "9", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_12.json b/tests/examples/pacer/dockets/bankruptcy/flmb_12.json index 3fed11b9d..0c98841ca 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_12.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_12.json @@ -75,6 +75,11 @@ } ], "docket_number": "6:10-bk-02140", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "ABB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_13.json b/tests/examples/pacer/dockets/bankruptcy/flmb_13.json index 9b55c4fe2..85e2e9244 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_13.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_13.json @@ -67,6 +67,11 @@ } ], "docket_number": "6:10-bk-02187", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "KSJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_14.json b/tests/examples/pacer/dockets/bankruptcy/flmb_14.json index 0f51c61e9..2b18b82b2 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_14.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_14.json @@ -19,6 +19,11 @@ } ], "docket_number": "6:10-bk-02223", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "KSJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_2.json b/tests/examples/pacer/dockets/bankruptcy/flmb_2.json index 062e905ca..ce5717fad 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_2.json @@ -803,6 +803,11 @@ } ], "docket_number": "8:09-bk-18848", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "CED", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_3.json b/tests/examples/pacer/dockets/bankruptcy/flmb_3.json index 93da7e215..ac8ca6995 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_3.json @@ -931,6 +931,11 @@ } ], "docket_number": "8:09-bk-22876", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "MGW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_4.json b/tests/examples/pacer/dockets/bankruptcy/flmb_4.json index 5b56dcd6d..56613815f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_4.json @@ -75,6 +75,11 @@ } ], "docket_number": "6:09-ap-00968", + "federal_defendant_number": null, + "federal_dn_case_type": "ap", + "federal_dn_judge_initials_assigned": "KSJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_5.json b/tests/examples/pacer/dockets/bankruptcy/flmb_5.json index 53aab7d36..8862d18b0 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_5.json @@ -139,6 +139,11 @@ } ], "docket_number": "3:10-bk-00134", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "PMG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_6.json b/tests/examples/pacer/dockets/bankruptcy/flmb_6.json index 0ec4d26cd..bd27c67d4 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_6.json @@ -331,6 +331,11 @@ } ], "docket_number": "6:10-bk-00578", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "KSJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_7.json b/tests/examples/pacer/dockets/bankruptcy/flmb_7.json index 27eb3d70d..8e0f58faa 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_7.json @@ -235,6 +235,11 @@ } ], "docket_number": "8:10-bk-01993", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "KRM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_8.json b/tests/examples/pacer/dockets/bankruptcy/flmb_8.json index 2ca029e8a..35738e85f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_8.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_8.json @@ -203,6 +203,11 @@ } ], "docket_number": "8:10-bk-02569", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "CPM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flmb_9.json b/tests/examples/pacer/dockets/bankruptcy/flmb_9.json index 680e958b5..278f5e797 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flmb_9.json +++ b/tests/examples/pacer/dockets/bankruptcy/flmb_9.json @@ -99,6 +99,11 @@ } ], "docket_number": "8:10-bk-03067", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "CED", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flsb.json b/tests/examples/pacer/dockets/bankruptcy/flsb.json index 5115e7485..4501779bc 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flsb.json +++ b/tests/examples/pacer/dockets/bankruptcy/flsb.json @@ -35,6 +35,11 @@ } ], "docket_number": "09-02199", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JKO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flsb_1.json b/tests/examples/pacer/dockets/bankruptcy/flsb_1.json index b9fca9242..7f8b7e694 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flsb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/flsb_1.json @@ -419,6 +419,11 @@ } ], "docket_number": "08-19689", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "PGH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flsb_2.json b/tests/examples/pacer/dockets/bankruptcy/flsb_2.json index 8768d2118..a95073214 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flsb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/flsb_2.json @@ -179,6 +179,11 @@ } ], "docket_number": "08-19642", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JKO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flsb_3.json b/tests/examples/pacer/dockets/bankruptcy/flsb_3.json index a4f0fd6df..cc210d363 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flsb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/flsb_3.json @@ -587,6 +587,11 @@ } ], "docket_number": "09-35544", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "LMI", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flsb_4.json b/tests/examples/pacer/dockets/bankruptcy/flsb_4.json index 1a1bc5474..9f6de943f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flsb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/flsb_4.json @@ -99,6 +99,11 @@ } ], "docket_number": "10-13020", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "AJC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flsb_5.json b/tests/examples/pacer/dockets/bankruptcy/flsb_5.json index a5bf4710e..30154c5a7 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flsb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/flsb_5.json @@ -51,6 +51,11 @@ } ], "docket_number": "10-13484", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JKO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flsb_6.json b/tests/examples/pacer/dockets/bankruptcy/flsb_6.json index f19ad7e5f..9aa243684 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flsb_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/flsb_6.json @@ -179,6 +179,11 @@ } ], "docket_number": "11-45634", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "RBR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flsb_7.json b/tests/examples/pacer/dockets/bankruptcy/flsb_7.json index 4d17be498..0dfc1f301 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flsb_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/flsb_7.json @@ -59,6 +59,11 @@ } ], "docket_number": "02-42563", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "LMI", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/flsb_8.json b/tests/examples/pacer/dockets/bankruptcy/flsb_8.json index 7cf69afd3..05ac6cdbe 100644 --- a/tests/examples/pacer/dockets/bankruptcy/flsb_8.json +++ b/tests/examples/pacer/dockets/bankruptcy/flsb_8.json @@ -219,6 +219,11 @@ } ], "docket_number": "09-34791", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "RBR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ganb.json b/tests/examples/pacer/dockets/bankruptcy/ganb.json index fcf5086ff..8996ecf59 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ganb.json +++ b/tests/examples/pacer/dockets/bankruptcy/ganb.json @@ -115,6 +115,11 @@ } ], "docket_number": "10-63241", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jem", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ianb.json b/tests/examples/pacer/dockets/bankruptcy/ianb.json index 49d5911b9..468216ab5 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ianb.json +++ b/tests/examples/pacer/dockets/bankruptcy/ianb.json @@ -243,6 +243,11 @@ } ], "docket_number": "10-00238", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/iasb.json b/tests/examples/pacer/dockets/bankruptcy/iasb.json index 7f180024f..841db434a 100644 --- a/tests/examples/pacer/dockets/bankruptcy/iasb.json +++ b/tests/examples/pacer/dockets/bankruptcy/iasb.json @@ -99,6 +99,11 @@ } ], "docket_number": "10-00400", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "als", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb.json b/tests/examples/pacer/dockets/bankruptcy/ilnb.json index eab49f7c5..0c229a963 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb.json @@ -75,6 +75,11 @@ } ], "docket_number": "10-05353", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_1.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_1.json index f133930dd..4c477cad8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_1.json @@ -75,6 +75,11 @@ } ], "docket_number": "10-05354", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_10.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_10.json index 4b2f1bed9..ddc876613 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_10.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_10.json @@ -355,6 +355,11 @@ } ], "docket_number": "09-70027", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_11.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_11.json index 8f9e5ec6a..ac94967e7 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_11.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_11.json @@ -179,6 +179,11 @@ } ], "docket_number": "09-00500", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_12.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_12.json index 6d7eabab3..69e63c527 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_12.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_12.json @@ -691,6 +691,11 @@ } ], "docket_number": "09-26571", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_13.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_13.json index 9d13cc347..400d0f6c8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_13.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_13.json @@ -1299,6 +1299,11 @@ } ], "docket_number": "09-35697", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_14.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_14.json index 39dffd5d3..654557e1a 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_14.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_14.json @@ -315,6 +315,11 @@ } ], "docket_number": "09-40000", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_1418711.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_1418711.json index e3035c323..8d666bca0 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_1418711.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_1418711.json @@ -259,6 +259,11 @@ } ], "docket_number": "17-31455", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_15.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_15.json index 96162a82c..c93c20bcf 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_15.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_15.json @@ -211,6 +211,11 @@ } ], "docket_number": "10-00846", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_2.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_2.json index 411bb0ac1..85f368ac8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_2.json @@ -75,6 +75,11 @@ } ], "docket_number": "10-05360", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_3.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_3.json index aaeacfef2..cd00ab35f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_3.json @@ -227,6 +227,11 @@ } ], "docket_number": "09-02046", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_4.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_4.json index 593631352..a6b379585 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_4.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "89-00921", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_5.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_5.json index 64c135486..dc79bc71e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_5.json @@ -51,6 +51,11 @@ } ], "docket_number": "97-50502", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_6.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_6.json index 7721ab65f..35b17ee08 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_6.json @@ -283,6 +283,11 @@ } ], "docket_number": "97-53537", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_7.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_7.json index a6860e1e9..907991e26 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_7.json @@ -43,6 +43,11 @@ } ], "docket_number": "03-30811", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_8.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_8.json index 68fa4b896..64256c70f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_8.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_8.json @@ -91,6 +91,11 @@ } ], "docket_number": "07-00744", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ilnb_9.json b/tests/examples/pacer/dockets/bankruptcy/ilnb_9.json index 0a99969b4..4cf290ab7 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ilnb_9.json +++ b/tests/examples/pacer/dockets/bankruptcy/ilnb_9.json @@ -227,6 +227,11 @@ } ], "docket_number": "07-16607", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/insb_1.json b/tests/examples/pacer/dockets/bankruptcy/insb_1.json index e3d18ad50..cbd6914f9 100644 --- a/tests/examples/pacer/dockets/bankruptcy/insb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/insb_1.json @@ -27,6 +27,11 @@ } ], "docket_number": "14-80555", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JJG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/insb_2.json b/tests/examples/pacer/dockets/bankruptcy/insb_2.json index c9ba8d670..f7c920d26 100644 --- a/tests/examples/pacer/dockets/bankruptcy/insb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/insb_2.json @@ -19,6 +19,11 @@ } ], "docket_number": "17-90266", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BHL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/kywb_238163.json b/tests/examples/pacer/dockets/bankruptcy/kywb_238163.json index d33558377..b61561cba 100644 --- a/tests/examples/pacer/dockets/bankruptcy/kywb_238163.json +++ b/tests/examples/pacer/dockets/bankruptcy/kywb_238163.json @@ -15,10 +15,15 @@ "description": "Chapter 7 Voluntary Petition. Fee Amount $299. Filed by PRAJNA GROUP, INC. d/b/a Liberty Mortgage Funding. Remaining Petition Due by 9/4/2008. This case may be dismissed without further notice if the schedules are not filed timely. (McClain, Michael) (Entered: 08/20/2008)", "document_number": "1", "pacer_doc_id": "08205689712", - "pacer_seq_no": null + "pacer_seq_no": "2" } ], "docket_number": "08-33673", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "thf", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/laeb.json b/tests/examples/pacer/dockets/bankruptcy/laeb.json index 6961fb8f9..65d29d243 100644 --- a/tests/examples/pacer/dockets/bankruptcy/laeb.json +++ b/tests/examples/pacer/dockets/bankruptcy/laeb.json @@ -219,6 +219,11 @@ } ], "docket_number": "09-12887", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/lamb.json b/tests/examples/pacer/dockets/bankruptcy/lamb.json index 243478e38..f8d54e81d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/lamb.json +++ b/tests/examples/pacer/dockets/bankruptcy/lamb.json @@ -35,6 +35,11 @@ } ], "docket_number": "04-11957", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/lawb_18072.json b/tests/examples/pacer/dockets/bankruptcy/lawb_18072.json index 7bc59706a..f3662056f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/lawb_18072.json +++ b/tests/examples/pacer/dockets/bankruptcy/lawb_18072.json @@ -131,6 +131,11 @@ } ], "docket_number": "01-30276", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mab.json b/tests/examples/pacer/dockets/bankruptcy/mab.json index aa213f839..2f7442efb 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mab.json +++ b/tests/examples/pacer/dockets/bankruptcy/mab.json @@ -787,6 +787,11 @@ } ], "docket_number": "05-18028", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mab_1.json b/tests/examples/pacer/dockets/bankruptcy/mab_1.json index f0000e828..3ac2b6214 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mab_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/mab_1.json @@ -171,6 +171,11 @@ } ], "docket_number": "05-01653", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mab_2.json b/tests/examples/pacer/dockets/bankruptcy/mab_2.json index 1470da593..2deb22073 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mab_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/mab_2.json @@ -563,6 +563,11 @@ } ], "docket_number": "08-42671", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mab_3.json b/tests/examples/pacer/dockets/bankruptcy/mab_3.json index b413300a7..e90375973 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mab_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/mab_3.json @@ -715,6 +715,11 @@ } ], "docket_number": "09-16656", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mab_4.json b/tests/examples/pacer/dockets/bankruptcy/mab_4.json index 5e8a2d9be..72d071865 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mab_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/mab_4.json @@ -571,6 +571,11 @@ } ], "docket_number": "09-43171", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mab_5.json b/tests/examples/pacer/dockets/bankruptcy/mab_5.json index 2a25683bf..089405ea6 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mab_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/mab_5.json @@ -531,6 +531,11 @@ } ], "docket_number": "09-32228", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mab_6.json b/tests/examples/pacer/dockets/bankruptcy/mab_6.json index e6d622c67..cec00a4fa 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mab_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/mab_6.json @@ -139,6 +139,11 @@ } ], "docket_number": "09-01397", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mab_7.json b/tests/examples/pacer/dockets/bankruptcy/mab_7.json index a10a02279..89c73ced4 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mab_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/mab_7.json @@ -171,6 +171,11 @@ } ], "docket_number": "10-10786", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mab_8.json b/tests/examples/pacer/dockets/bankruptcy/mab_8.json index 2906c70a1..989a657ae 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mab_8.json +++ b/tests/examples/pacer/dockets/bankruptcy/mab_8.json @@ -75,6 +75,11 @@ } ], "docket_number": "10-11334", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mab_9.json b/tests/examples/pacer/dockets/bankruptcy/mab_9.json index e59cf3841..0920ef16c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mab_9.json +++ b/tests/examples/pacer/dockets/bankruptcy/mab_9.json @@ -123,6 +123,11 @@ } ], "docket_number": "10-11360", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb.json b/tests/examples/pacer/dockets/bankruptcy/mdb.json index 998c24940..2e14bd16c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb.json @@ -139,6 +139,11 @@ } ], "docket_number": "03-10741", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_1.json b/tests/examples/pacer/dockets/bankruptcy/mdb_1.json index f491e3d6b..cb44bbb0c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_1.json @@ -235,6 +235,11 @@ } ], "docket_number": "98-59143", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_10.json b/tests/examples/pacer/dockets/bankruptcy/mdb_10.json index 81b47fcd0..e77caf76e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_10.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_10.json @@ -171,6 +171,11 @@ } ], "docket_number": "10-11155", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_11.json b/tests/examples/pacer/dockets/bankruptcy/mdb_11.json index 0f2879166..8c56b6da5 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_11.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_11.json @@ -115,6 +115,11 @@ } ], "docket_number": "10-11949", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_12.json b/tests/examples/pacer/dockets/bankruptcy/mdb_12.json index d79dfe423..283422bed 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_12.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_12.json @@ -123,6 +123,11 @@ } ], "docket_number": "10-12576", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_13.json b/tests/examples/pacer/dockets/bankruptcy/mdb_13.json index f8ab531a5..8321b8a3a 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_13.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_13.json @@ -107,6 +107,11 @@ } ], "docket_number": "10-12661", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_14.json b/tests/examples/pacer/dockets/bankruptcy/mdb_14.json index 51da00ab8..a57eaddff 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_14.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_14.json @@ -139,6 +139,11 @@ } ], "docket_number": "10-12798", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_15.json b/tests/examples/pacer/dockets/bankruptcy/mdb_15.json index 1571a737e..b6a2c51b5 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_15.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_15.json @@ -83,6 +83,11 @@ } ], "docket_number": "10-12863", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_16.json b/tests/examples/pacer/dockets/bankruptcy/mdb_16.json index f69763132..1a711c41e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_16.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_16.json @@ -67,6 +67,11 @@ } ], "docket_number": "10-12879", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_17.json b/tests/examples/pacer/dockets/bankruptcy/mdb_17.json index bc5aec78b..36624bd4f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_17.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_17.json @@ -75,6 +75,11 @@ } ], "docket_number": "10-12897", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_18.json b/tests/examples/pacer/dockets/bankruptcy/mdb_18.json index b1987ea6c..2b8a27bbe 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_18.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_18.json @@ -67,6 +67,11 @@ } ], "docket_number": "10-12990", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_19.json b/tests/examples/pacer/dockets/bankruptcy/mdb_19.json index 170d605dc..e3f297e6f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_19.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_19.json @@ -91,6 +91,11 @@ } ], "docket_number": "10-00346", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_2.json b/tests/examples/pacer/dockets/bankruptcy/mdb_2.json index b8467f9f1..46fcb35fd 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_2.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "08-21389", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_3.json b/tests/examples/pacer/dockets/bankruptcy/mdb_3.json index aed2534e9..b8992a034 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_3.json @@ -291,6 +291,11 @@ } ], "docket_number": "09-23787", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_4.json b/tests/examples/pacer/dockets/bankruptcy/mdb_4.json index 287f1c7c9..ff8b973a8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_4.json @@ -507,6 +507,11 @@ } ], "docket_number": "09-25699", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_5.json b/tests/examples/pacer/dockets/bankruptcy/mdb_5.json index 959400709..0978cd0eb 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_5.json @@ -427,6 +427,11 @@ } ], "docket_number": "09-27879", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_6.json b/tests/examples/pacer/dockets/bankruptcy/mdb_6.json index dec03afec..10b787be4 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_6.json @@ -195,6 +195,11 @@ } ], "docket_number": "09-33057", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_7.json b/tests/examples/pacer/dockets/bankruptcy/mdb_7.json index 56147ee3f..d2501b8e0 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_7.json @@ -371,6 +371,11 @@ } ], "docket_number": "09-34127", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_8.json b/tests/examples/pacer/dockets/bankruptcy/mdb_8.json index 8f60ec4a8..6b8838c99 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_8.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_8.json @@ -163,6 +163,11 @@ } ], "docket_number": "10-10535", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mdb_9.json b/tests/examples/pacer/dockets/bankruptcy/mdb_9.json index 3e513290d..a282d6cad 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mdb_9.json +++ b/tests/examples/pacer/dockets/bankruptcy/mdb_9.json @@ -155,6 +155,11 @@ } ], "docket_number": "10-10404", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/meb.json b/tests/examples/pacer/dockets/bankruptcy/meb.json index e3f34a569..91f924afd 100644 --- a/tests/examples/pacer/dockets/bankruptcy/meb.json +++ b/tests/examples/pacer/dockets/bankruptcy/meb.json @@ -67,6 +67,11 @@ } ], "docket_number": "10-20171", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mieb.json b/tests/examples/pacer/dockets/bankruptcy/mieb.json index 589cf2a68..32686e240 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mieb.json +++ b/tests/examples/pacer/dockets/bankruptcy/mieb.json @@ -259,6 +259,11 @@ } ], "docket_number": "08-42417", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "pjs", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mieb_1.json b/tests/examples/pacer/dockets/bankruptcy/mieb_1.json index 1896b1446..3370a775b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mieb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/mieb_1.json @@ -27,6 +27,11 @@ } ], "docket_number": "04-69141", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "tjt", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mieb_2.json b/tests/examples/pacer/dockets/bankruptcy/mieb_2.json index 5e5dfb204..2ef8d9ab6 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mieb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/mieb_2.json @@ -1011,6 +1011,11 @@ } ], "docket_number": "08-53097", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "swr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mieb_3.json b/tests/examples/pacer/dockets/bankruptcy/mieb_3.json index ebb37bd64..c59411ff0 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mieb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/mieb_3.json @@ -283,6 +283,11 @@ } ], "docket_number": "09-75093", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "swr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mieb_4.json b/tests/examples/pacer/dockets/bankruptcy/mieb_4.json index e4d400922..f1eddd31a 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mieb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/mieb_4.json @@ -203,6 +203,11 @@ } ], "docket_number": "09-76323", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "pjs", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mieb_5.json b/tests/examples/pacer/dockets/bankruptcy/mieb_5.json index d1320dffb..236ad00fc 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mieb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/mieb_5.json @@ -19,6 +19,11 @@ } ], "docket_number": "09-24465", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "dob", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mieb_6.json b/tests/examples/pacer/dockets/bankruptcy/mieb_6.json index 2023e25bb..ed65c2db2 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mieb_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/mieb_6.json @@ -283,6 +283,11 @@ } ], "docket_number": "09-79773", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "tjt", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mieb_7.json b/tests/examples/pacer/dockets/bankruptcy/mieb_7.json index 999572cb3..eb3c8cdad 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mieb_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/mieb_7.json @@ -219,6 +219,11 @@ } ], "docket_number": "09-79781", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mbm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mieb_8.json b/tests/examples/pacer/dockets/bankruptcy/mieb_8.json index 4e81358ed..d4cfe8e58 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mieb_8.json +++ b/tests/examples/pacer/dockets/bankruptcy/mieb_8.json @@ -171,6 +171,11 @@ } ], "docket_number": "10-40883", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mbm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mieb_9.json b/tests/examples/pacer/dockets/bankruptcy/mieb_9.json index 48df0acfd..02bb9e104 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mieb_9.json +++ b/tests/examples/pacer/dockets/bankruptcy/mieb_9.json @@ -115,6 +115,11 @@ } ], "docket_number": "10-41612", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "wsd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/miwb.json b/tests/examples/pacer/dockets/bankruptcy/miwb.json index a6bb11827..61ec1b459 100644 --- a/tests/examples/pacer/dockets/bankruptcy/miwb.json +++ b/tests/examples/pacer/dockets/bankruptcy/miwb.json @@ -451,6 +451,11 @@ } ], "docket_number": "08-02275", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "swd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mnb.json b/tests/examples/pacer/dockets/bankruptcy/mnb.json index 4e5b90643..eecf34387 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mnb.json +++ b/tests/examples/pacer/dockets/bankruptcy/mnb.json @@ -67,6 +67,11 @@ } ], "docket_number": "09-43537", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mnb_1.json b/tests/examples/pacer/dockets/bankruptcy/mnb_1.json index 0f47732c1..820b43e23 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mnb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/mnb_1.json @@ -171,6 +171,11 @@ } ], "docket_number": "09-05019", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mnb_2.json b/tests/examples/pacer/dockets/bankruptcy/mnb_2.json index 618e38494..49438d97f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mnb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/mnb_2.json @@ -219,6 +219,11 @@ } ], "docket_number": "09-48255", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mnb_3.json b/tests/examples/pacer/dockets/bankruptcy/mnb_3.json index 8d5d33eca..56b71873a 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mnb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/mnb_3.json @@ -75,6 +75,11 @@ } ], "docket_number": "10-05003", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mnb_4.json b/tests/examples/pacer/dockets/bankruptcy/mnb_4.json index 493f714a7..cbab9f624 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mnb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/mnb_4.json @@ -43,6 +43,11 @@ } ], "docket_number": "10-05004", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/moeb.json b/tests/examples/pacer/dockets/bankruptcy/moeb.json index e2129e078..98ad4a900 100644 --- a/tests/examples/pacer/dockets/bankruptcy/moeb.json +++ b/tests/examples/pacer/dockets/bankruptcy/moeb.json @@ -411,6 +411,11 @@ } ], "docket_number": "09-51436", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/moeb_1.json b/tests/examples/pacer/dockets/bankruptcy/moeb_1.json index d5681e491..5d5973105 100644 --- a/tests/examples/pacer/dockets/bankruptcy/moeb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/moeb_1.json @@ -91,6 +91,11 @@ } ], "docket_number": "10-40876", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mowb.json b/tests/examples/pacer/dockets/bankruptcy/mowb.json index 3320e9f0b..a296b171e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mowb.json +++ b/tests/examples/pacer/dockets/bankruptcy/mowb.json @@ -227,6 +227,11 @@ } ], "docket_number": "09-45612", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "abf", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mowb_1.json b/tests/examples/pacer/dockets/bankruptcy/mowb_1.json index f882536d1..9df272d62 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mowb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/mowb_1.json @@ -179,6 +179,11 @@ } ], "docket_number": "09-51155", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jwv", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mowb_2.json b/tests/examples/pacer/dockets/bankruptcy/mowb_2.json index 4fb612b98..672aa4147 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mowb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/mowb_2.json @@ -179,6 +179,11 @@ } ], "docket_number": "10-40426", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jwv", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/mssb.json b/tests/examples/pacer/dockets/bankruptcy/mssb.json index d28a3154e..584210858 100644 --- a/tests/examples/pacer/dockets/bankruptcy/mssb.json +++ b/tests/examples/pacer/dockets/bankruptcy/mssb.json @@ -435,6 +435,11 @@ } ], "docket_number": "09-04354", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "ee", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nceb.json b/tests/examples/pacer/dockets/bankruptcy/nceb.json index ce8eebb61..08a8e579c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nceb.json +++ b/tests/examples/pacer/dockets/bankruptcy/nceb.json @@ -27,6 +27,11 @@ } ], "docket_number": "07-02023", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "RDD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nceb_1.json b/tests/examples/pacer/dockets/bankruptcy/nceb_1.json index d0710a5a5..4ef2dec9c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nceb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/nceb_1.json @@ -75,6 +75,11 @@ } ], "docket_number": "10-01083", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "RDD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "8", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ncwb.json b/tests/examples/pacer/dockets/bankruptcy/ncwb.json index 7835d9d84..a8df56469 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ncwb.json +++ b/tests/examples/pacer/dockets/bankruptcy/ncwb.json @@ -1235,6 +1235,11 @@ } ], "docket_number": "09-11182", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ncwb_1.json b/tests/examples/pacer/dockets/bankruptcy/ncwb_1.json index 2ec3aa673..8dea38174 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ncwb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/ncwb_1.json @@ -147,6 +147,11 @@ } ], "docket_number": "10-10139", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ncwb_2.json b/tests/examples/pacer/dockets/bankruptcy/ncwb_2.json index 11d5daa85..11a00b3bb 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ncwb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/ncwb_2.json @@ -83,6 +83,11 @@ } ], "docket_number": "10-10140", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ndb.json b/tests/examples/pacer/dockets/bankruptcy/ndb.json index 445397700..6eafd1c78 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ndb.json +++ b/tests/examples/pacer/dockets/bankruptcy/ndb.json @@ -147,6 +147,11 @@ } ], "docket_number": "09-31357", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb.json b/tests/examples/pacer/dockets/bankruptcy/njb.json index 0e91420c4..905ed6726 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb.json @@ -523,6 +523,11 @@ } ], "docket_number": "09-13654", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JHW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_1.json b/tests/examples/pacer/dockets/bankruptcy/njb_1.json index 34fca405f..20a361f0c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_1.json @@ -411,6 +411,11 @@ } ], "docket_number": "03-51524", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KCF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_10.json b/tests/examples/pacer/dockets/bankruptcy/njb_10.json index f105269f9..fa7a1eeb7 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_10.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_10.json @@ -147,6 +147,11 @@ } ], "docket_number": "09-34523", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "GMB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_11.json b/tests/examples/pacer/dockets/bankruptcy/njb_11.json index fc44c8668..1d3d1ddf8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_11.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_11.json @@ -123,6 +123,11 @@ } ], "docket_number": "09-42482", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MBK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_12.json b/tests/examples/pacer/dockets/bankruptcy/njb_12.json index a496b1c11..5389e7826 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_12.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_12.json @@ -219,6 +219,11 @@ } ], "docket_number": "09-42489", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MBK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_13.json b/tests/examples/pacer/dockets/bankruptcy/njb_13.json index eb08c3303..7b541f32b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_13.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_13.json @@ -139,6 +139,11 @@ } ], "docket_number": "09-42667", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KCF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_14.json b/tests/examples/pacer/dockets/bankruptcy/njb_14.json index b7b73d737..0adcbe9b8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_14.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_14.json @@ -91,6 +91,11 @@ } ], "docket_number": "09-02932", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "RG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_15.json b/tests/examples/pacer/dockets/bankruptcy/njb_15.json index e68219f8e..79fc60388 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_15.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_15.json @@ -123,6 +123,11 @@ } ], "docket_number": "10-10145", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KCF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_16.json b/tests/examples/pacer/dockets/bankruptcy/njb_16.json index 747b87cca..1c7b20caf 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_16.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_16.json @@ -107,6 +107,11 @@ } ], "docket_number": "10-14065", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "GMB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_17.json b/tests/examples/pacer/dockets/bankruptcy/njb_17.json index 2fbb409d8..eff6b4fdb 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_17.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_17.json @@ -19,6 +19,11 @@ } ], "docket_number": "10-14233", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_2.json b/tests/examples/pacer/dockets/bankruptcy/njb_2.json index e5e2f730f..ee1a5d4a2 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_2.json @@ -1515,6 +1515,11 @@ } ], "docket_number": "05-31567", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KCF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_3.json b/tests/examples/pacer/dockets/bankruptcy/njb_3.json index 2930c24f2..e1580a3a9 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_3.json @@ -811,6 +811,11 @@ } ], "docket_number": "06-01344", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KCF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_4.json b/tests/examples/pacer/dockets/bankruptcy/njb_4.json index dabb782d5..46f58cba1 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_4.json @@ -131,6 +131,11 @@ } ], "docket_number": "06-03003", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KCF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_5.json b/tests/examples/pacer/dockets/bankruptcy/njb_5.json index ac493546d..f337166b3 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_5.json @@ -387,6 +387,11 @@ } ], "docket_number": "08-13997", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JHW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_6.json b/tests/examples/pacer/dockets/bankruptcy/njb_6.json index 70a580e4d..15ab5f2fd 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_6.json @@ -315,6 +315,11 @@ } ], "docket_number": "08-20958", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MBK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_7.json b/tests/examples/pacer/dockets/bankruptcy/njb_7.json index 8382f0d49..33e89648f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_7.json @@ -899,6 +899,11 @@ } ], "docket_number": "08-26142", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KCF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_8.json b/tests/examples/pacer/dockets/bankruptcy/njb_8.json index 767fc37f4..63782386b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_8.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_8.json @@ -411,6 +411,11 @@ } ], "docket_number": "08-29908", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "GMB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/njb_9.json b/tests/examples/pacer/dockets/bankruptcy/njb_9.json index 3d7f6a51d..95afd4e5d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/njb_9.json +++ b/tests/examples/pacer/dockets/bankruptcy/njb_9.json @@ -403,6 +403,11 @@ } ], "docket_number": "09-32883", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb.json b/tests/examples/pacer/dockets/bankruptcy/nvb.json index 41527769a..a6af58e15 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb.json @@ -195,6 +195,11 @@ } ], "docket_number": "09-50752", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "gwz", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_1.json b/tests/examples/pacer/dockets/bankruptcy/nvb_1.json index 77e1f6fa6..2656cece4 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_1.json @@ -179,6 +179,11 @@ } ], "docket_number": "08-17814", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_10.json b/tests/examples/pacer/dockets/bankruptcy/nvb_10.json index fcd9fb31f..201081284 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_10.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_10.json @@ -331,6 +331,11 @@ } ], "docket_number": "09-21253", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "lbr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_11.json b/tests/examples/pacer/dockets/bankruptcy/nvb_11.json index 3a47a1908..8b2c463d8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_11.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_11.json @@ -363,6 +363,11 @@ } ], "docket_number": "09-21802", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_12.json b/tests/examples/pacer/dockets/bankruptcy/nvb_12.json index 3aacd30a7..b1d04b7f9 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_12.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_12.json @@ -315,6 +315,11 @@ } ], "docket_number": "09-21928", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_13.json b/tests/examples/pacer/dockets/bankruptcy/nvb_13.json index c8fbe9b90..360199272 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_13.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_13.json @@ -347,6 +347,11 @@ } ], "docket_number": "09-21995", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_14.json b/tests/examples/pacer/dockets/bankruptcy/nvb_14.json index c99af868b..55dfcc3b0 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_14.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_14.json @@ -403,6 +403,11 @@ } ], "docket_number": "09-22330", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "lbr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_15.json b/tests/examples/pacer/dockets/bankruptcy/nvb_15.json index d8e622558..4934154c6 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_15.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_15.json @@ -27,6 +27,11 @@ } ], "docket_number": "09-52477", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "gwz", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_16.json b/tests/examples/pacer/dockets/bankruptcy/nvb_16.json index 4a41494d8..62561ee6f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_16.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_16.json @@ -579,6 +579,11 @@ } ], "docket_number": "09-23539", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_17.json b/tests/examples/pacer/dockets/bankruptcy/nvb_17.json index cc1ec9505..9c3ce209e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_17.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_17.json @@ -155,6 +155,11 @@ } ], "docket_number": "09-24102", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "bam", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_18.json b/tests/examples/pacer/dockets/bankruptcy/nvb_18.json index 930ebea3a..7fae95d5e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_18.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_18.json @@ -259,6 +259,11 @@ } ], "docket_number": "09-29358", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_19.json b/tests/examples/pacer/dockets/bankruptcy/nvb_19.json index e074d1a36..d171f44b8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_19.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_19.json @@ -411,6 +411,11 @@ } ], "docket_number": "09-24682", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "bam", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_2.json b/tests/examples/pacer/dockets/bankruptcy/nvb_2.json index 48668363a..f1f92f26a 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_2.json @@ -811,6 +811,11 @@ } ], "docket_number": "09-10362", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "lbr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_20.json b/tests/examples/pacer/dockets/bankruptcy/nvb_20.json index 4d87260d3..a7ee7b35b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_20.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_20.json @@ -467,6 +467,11 @@ } ], "docket_number": "09-26769", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "lbr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_21.json b/tests/examples/pacer/dockets/bankruptcy/nvb_21.json index 3dd25b1ef..4f1a4fa85 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_21.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_21.json @@ -227,6 +227,11 @@ } ], "docket_number": "09-05065", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "gwz", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_22.json b/tests/examples/pacer/dockets/bankruptcy/nvb_22.json index 52e105ecd..a5ab2eda4 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_22.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_22.json @@ -195,6 +195,11 @@ } ], "docket_number": "09-28697", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "lbr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_23.json b/tests/examples/pacer/dockets/bankruptcy/nvb_23.json index 12be36e09..de48cdf1d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_23.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_23.json @@ -187,6 +187,11 @@ } ], "docket_number": "09-53532", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "gwz", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_24.json b/tests/examples/pacer/dockets/bankruptcy/nvb_24.json index 017dc63a1..a63c15d93 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_24.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_24.json @@ -283,6 +283,11 @@ } ], "docket_number": "09-28937", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "bam", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_25.json b/tests/examples/pacer/dockets/bankruptcy/nvb_25.json index cb026d1ee..f3c3809b4 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_25.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_25.json @@ -171,6 +171,11 @@ } ], "docket_number": "09-01289", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_26.json b/tests/examples/pacer/dockets/bankruptcy/nvb_26.json index 183bdbf72..5e3ef2adf 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_26.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_26.json @@ -227,6 +227,11 @@ } ], "docket_number": "09-29525", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_27.json b/tests/examples/pacer/dockets/bankruptcy/nvb_27.json index c39695cc6..1a4fc393f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_27.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_27.json @@ -331,6 +331,11 @@ } ], "docket_number": "09-29674", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_28.json b/tests/examples/pacer/dockets/bankruptcy/nvb_28.json index cc52f9db5..95319e0a0 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_28.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_28.json @@ -379,6 +379,11 @@ } ], "docket_number": "09-30101", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "bam", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_29.json b/tests/examples/pacer/dockets/bankruptcy/nvb_29.json index 05e5bba7f..b121740f7 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_29.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_29.json @@ -235,6 +235,11 @@ } ], "docket_number": "09-30181", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "lbr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_3.json b/tests/examples/pacer/dockets/bankruptcy/nvb_3.json index f03d19754..e7d9b671d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_3.json @@ -227,6 +227,11 @@ } ], "docket_number": "09-14814", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "gwz", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_30.json b/tests/examples/pacer/dockets/bankruptcy/nvb_30.json index 80d13fac6..881a71fa0 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_30.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_30.json @@ -195,6 +195,11 @@ } ], "docket_number": "08-21004", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "bam", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_31.json b/tests/examples/pacer/dockets/bankruptcy/nvb_31.json index a30cfb0ff..037f7dd3b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_31.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_31.json @@ -307,6 +307,11 @@ } ], "docket_number": "09-31516", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "lbr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_32.json b/tests/examples/pacer/dockets/bankruptcy/nvb_32.json index 74aa951d9..ae72e2683 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_32.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_32.json @@ -171,6 +171,11 @@ } ], "docket_number": "09-32881", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "lbr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_33.json b/tests/examples/pacer/dockets/bankruptcy/nvb_33.json index 6044eca8e..bd1ff9323 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_33.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_33.json @@ -147,6 +147,11 @@ } ], "docket_number": "09-33729", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "lbr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_34.json b/tests/examples/pacer/dockets/bankruptcy/nvb_34.json index 553078aad..c864eb21a 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_34.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_34.json @@ -147,6 +147,11 @@ } ], "docket_number": "10-10287", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "lbr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_35.json b/tests/examples/pacer/dockets/bankruptcy/nvb_35.json index 026fa53ba..ccecef819 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_35.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_35.json @@ -115,6 +115,11 @@ } ], "docket_number": "10-50096", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "gwz", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_36.json b/tests/examples/pacer/dockets/bankruptcy/nvb_36.json index 7be9a5aab..cf76f0d39 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_36.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_36.json @@ -75,6 +75,11 @@ } ], "docket_number": "10-11209", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "bam", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_368678.json b/tests/examples/pacer/dockets/bankruptcy/nvb_368678.json index 7e6aa389b..1375064b2 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_368678.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_368678.json @@ -15,7 +15,7 @@ "description": "Chapter 7 Voluntary Petition Individual. Fee Amount $335. Filed by AMBERLEA DAVIS on behalf of MELANIE ANN ONDIK (DAVIS, AMBERLEA) (Entered: 12/14/2017)", "document_number": "1", "pacer_doc_id": "114030000422", - "pacer_seq_no": null + "pacer_seq_no": "2" }, { "date_entered": "2017-12-14", @@ -23,7 +23,7 @@ "description": "Declaration Re: Electronic Filing Filed by AMBERLEA DAVIS on behalf of MELANIE ANN ONDIK (DAVIS, AMBERLEA) (Entered: 12/14/2017)", "document_number": "2", "pacer_doc_id": "114030000428", - "pacer_seq_no": null + "pacer_seq_no": "8" }, { "date_entered": "2017-12-14", @@ -31,7 +31,7 @@ "description": "Statement of Social Security Number(s). This document contains sensitive information and cannot be viewed by the public. Filed by AMBERLEA DAVIS on behalf of MELANIE ANN ONDIK (DAVIS, AMBERLEA) (Entered: 12/14/2017)", "document_number": "3", "pacer_doc_id": "114030000431", - "pacer_seq_no": null + "pacer_seq_no": "10" }, { "date_entered": "2017-12-14", @@ -39,7 +39,7 @@ "description": "Certificate of Credit Counseling Filed by AMBERLEA DAVIS on behalf of MELANIE ANN ONDIK (DAVIS, AMBERLEA) (Entered: 12/14/2017)", "document_number": "4", "pacer_doc_id": "114030000434", - "pacer_seq_no": null + "pacer_seq_no": "12" }, { "date_entered": "2017-12-14", @@ -47,7 +47,7 @@ "description": "Meeting of Creditors and Notice of Appointment of Trustee LENARD E. SCHWARTZER, . 341 meeting to be held on 01/17/2018 at 09:00 AM at 341s - Foley Bldg,Rm 1500. Deadline to Object to Debtor's Discharge or to Challenge Dischargeability of Certain Debts due by 03/19/2018. (Entered: 12/14/2017)", "document_number": "5", "pacer_doc_id": "114030003462", - "pacer_seq_no": null + "pacer_seq_no": "16" }, { "date_entered": "2017-12-15", @@ -55,7 +55,7 @@ "description": "Request for Special Notice Filed by PRA RECEIVABLES MANAGEMENT, LLC (PORTFOLIO RECOVERY ASSOCIATES,LLC (vs)) (Entered: 12/15/2017)", "document_number": "6", "pacer_doc_id": "114030003713", - "pacer_seq_no": null + "pacer_seq_no": "18" }, { "date_entered": "2017-12-15", @@ -63,7 +63,7 @@ "description": "Notice of Debtor's Prior Filing for debtor MELANIE ANN ONDIK Case Number 04-16350, Chapter 7 filed in Pennsylvania Eastern Bankruptcy Court on 05/05/2004, Standard Discharge on 09/10/2004; Case Number 17-15009, Chapter 7 filed in Nevada Bankruptcy Court on 09/18/2017, Dismissed for Failure to File Information on 11/07/2017.(Admin) (Entered: 12/15/2017)", "document_number": null, "pacer_doc_id": null, - "pacer_seq_no": null + "pacer_seq_no": "21" }, { "date_entered": "2017-12-15", @@ -71,7 +71,7 @@ "description": "Receipt of Filing Fee for Voluntary Petition 7(17-16656) [misc,volp7pb] ( 335.00). Receipt number 17923167, fee amount $ 335.00.(re: Doc#1) (U.S. Treasury) (Entered: 12/15/2017)", "document_number": "7", "pacer_doc_id": null, - "pacer_seq_no": null + "pacer_seq_no": "23" }, { "date_entered": "2017-12-15", @@ -79,7 +79,7 @@ "description": "Order Determining Debtor's Compliance with Filing Requirements of 11 U.S.C. Section 521(a)(1). (Entered: 12/15/2017)", "document_number": "8", "pacer_doc_id": "114030006657", - "pacer_seq_no": null + "pacer_seq_no": "26" }, { "date_entered": "2017-12-17", @@ -87,7 +87,7 @@ "description": "BNC Certificate of Mailing (Related document(s)5 Meeting of Creditors Chapter 7 No Asset (BNC)) No. of Notices: 30. Notice Date 12/17/2017. (Admin.) (Entered: 12/17/2017)", "document_number": "9", "pacer_doc_id": "114030007617", - "pacer_seq_no": null + "pacer_seq_no": "28" }, { "date_entered": "2017-12-20", @@ -95,7 +95,7 @@ "description": "BNC Certificate of Mailing - pdf (Related document(s)8 Order Determining Debtor's Compliance with Filing Requirements of 11 U.S.C. Section 521(a)(1) (BNC)) No. of Notices: 1. Notice Date 12/20/2017. (Admin.) (Entered: 12/20/2017)", "document_number": "10", "pacer_doc_id": "114030017602", - "pacer_seq_no": null + "pacer_seq_no": "31" }, { "date_entered": "2018-01-03", @@ -103,7 +103,7 @@ "description": "Personal Financial Management Course Certificate for Debtor (DOLLAR LEARNING FOUNDATION, INC. (bw)) (Entered: 01/03/2018)", "document_number": "11", "pacer_doc_id": "114030045465", - "pacer_seq_no": null + "pacer_seq_no": "34" }, { "date_entered": "2018-01-18", @@ -111,7 +111,7 @@ "description": "Statement Adjourning Meeting of 341(a) Meeting of Creditors. Section 341(a) Meeting Continued on 1/31/2018 at 09:00 AM at 341s - Foley Bldg,Rm 1500. ADDITIONAL INFORMATION REQUESTED Debtor absent. (SCHWARTZER, LENARD) (Entered: 01/18/2018)", "document_number": "12", "pacer_doc_id": null, - "pacer_seq_no": null + "pacer_seq_no": "38" }, { "date_entered": "2018-01-30", @@ -119,7 +119,7 @@ "description": "Amended Individual Summary of Assets and Liabilities, Schedule[s]A/B, Real Property Amount: $ 0, Personal Property Amount: $ 8100, C, Amount $8100, H, I, Average Income Amount: $ 5130.02, J, Current Expenditures Amount: $ 5682.00, Declaration Concerning Debtor[s] Schedules,, Amended Statement of Financial Affairs for Individual, Amended Chapter 7 Statement of Current Monthly Income Form 122A-1, Chapter 7 Means Test Calculation Form 122A-2 Filed by AMBERLEA DAVIS on behalf of MELANIE ANN ONDIK (DAVIS, AMBERLEA) (Entered: 01/30/2018)", "document_number": "13", "pacer_doc_id": "114030113760", - "pacer_seq_no": null + "pacer_seq_no": "40" }, { "date_entered": "2018-01-31", @@ -127,10 +127,15 @@ "description": "Notice of Docketing Error (Related document(s)13 Schedules/Declaration Re Schedules filed by Debtor MELANIE ANN ONDIK, Statement of Financial Affairs, 122A-1 Chapter 7 Statement of Your Monthly Income Form, 122A-2 Chapter 7 Means Test Calculation Form) (arv) (Entered: 01/31/2018)", "document_number": "14", "pacer_doc_id": "114030114233", - "pacer_seq_no": null + "pacer_seq_no": "45" } ], "docket_number": "17-16656", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "led", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_37.json b/tests/examples/pacer/dockets/bankruptcy/nvb_37.json index 0c0598828..849d9ef59 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_37.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_37.json @@ -115,6 +115,11 @@ } ], "docket_number": "10-11424", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "bam", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_38.json b/tests/examples/pacer/dockets/bankruptcy/nvb_38.json index ff4c98aa0..b848fbfe2 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_38.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_38.json @@ -155,6 +155,11 @@ } ], "docket_number": "10-11464", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_39.json b/tests/examples/pacer/dockets/bankruptcy/nvb_39.json index 0737a762b..235ceae3f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_39.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_39.json @@ -139,6 +139,11 @@ } ], "docket_number": "10-50307", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "gwz", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_4.json b/tests/examples/pacer/dockets/bankruptcy/nvb_4.json index fb5919ec1..4ea2c550d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_4.json @@ -75,6 +75,11 @@ } ], "docket_number": "09-16968", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_40.json b/tests/examples/pacer/dockets/bankruptcy/nvb_40.json index dfc7db9cf..a68d0da08 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_40.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_40.json @@ -123,6 +123,11 @@ } ], "docket_number": "10-11920", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_41.json b/tests/examples/pacer/dockets/bankruptcy/nvb_41.json index 8c29bd942..9d7515d37 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_41.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_41.json @@ -99,6 +99,11 @@ } ], "docket_number": "10-12049", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "lbr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_42.json b/tests/examples/pacer/dockets/bankruptcy/nvb_42.json index 9d386e5da..efd88f21c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_42.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_42.json @@ -107,6 +107,11 @@ } ], "docket_number": "10-50381", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "gwz", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_43.json b/tests/examples/pacer/dockets/bankruptcy/nvb_43.json index 3d494216a..9cab49261 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_43.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_43.json @@ -115,6 +115,11 @@ } ], "docket_number": "10-12119", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "bam", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_44.json b/tests/examples/pacer/dockets/bankruptcy/nvb_44.json index 34121d55a..1a502375f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_44.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_44.json @@ -75,6 +75,11 @@ } ], "docket_number": "10-12130", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "lbr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_45.json b/tests/examples/pacer/dockets/bankruptcy/nvb_45.json index 4d323fcdb..c04169d52 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_45.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_45.json @@ -83,6 +83,11 @@ } ], "docket_number": "10-12193", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "lbr", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_46.json b/tests/examples/pacer/dockets/bankruptcy/nvb_46.json index c2d6ca7b3..403fda1e0 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_46.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_46.json @@ -59,6 +59,11 @@ } ], "docket_number": "10-12269", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "bam", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_5.json b/tests/examples/pacer/dockets/bankruptcy/nvb_5.json index 32a20c4b0..76d5c66ed 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_5.json @@ -491,6 +491,11 @@ } ], "docket_number": "09-17464", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_6.json b/tests/examples/pacer/dockets/bankruptcy/nvb_6.json index dd422f647..785874b36 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_6.json @@ -203,6 +203,11 @@ } ], "docket_number": "08-24173", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_7.json b/tests/examples/pacer/dockets/bankruptcy/nvb_7.json index b20867a02..08d3e5359 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_7.json @@ -291,6 +291,11 @@ } ], "docket_number": "09-19093", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_8.json b/tests/examples/pacer/dockets/bankruptcy/nvb_8.json index f2cb0843a..8fefb7b30 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_8.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_8.json @@ -387,6 +387,11 @@ } ], "docket_number": "09-20245", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nvb_9.json b/tests/examples/pacer/dockets/bankruptcy/nvb_9.json index 15f4973c3..632832a28 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nvb_9.json +++ b/tests/examples/pacer/dockets/bankruptcy/nvb_9.json @@ -59,6 +59,11 @@ } ], "docket_number": "09-51953", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "gwz", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nyeb.json b/tests/examples/pacer/dockets/bankruptcy/nyeb.json index b94c893b3..91c68252c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nyeb.json +++ b/tests/examples/pacer/dockets/bankruptcy/nyeb.json @@ -227,6 +227,11 @@ } ], "docket_number": "8-09-78584", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "ast", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nyeb_1.json b/tests/examples/pacer/dockets/bankruptcy/nyeb_1.json index aeaf1bd45..39590ca0e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nyeb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/nyeb_1.json @@ -1131,6 +1131,11 @@ } ], "docket_number": "8-09-78585", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "ast", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nyeb_2.json b/tests/examples/pacer/dockets/bankruptcy/nyeb_2.json index aa80881d2..81fd8b1b8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nyeb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/nyeb_2.json @@ -19,6 +19,11 @@ } ], "docket_number": "8-10-70959", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "dte", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nyeb_3.json b/tests/examples/pacer/dockets/bankruptcy/nyeb_3.json index b6e68e797..6bd68db88 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nyeb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/nyeb_3.json @@ -35,6 +35,11 @@ } ], "docket_number": "1-10-41176", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cec", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nyeb_4.json b/tests/examples/pacer/dockets/bankruptcy/nyeb_4.json index 5682025a4..1fb24ddd1 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nyeb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/nyeb_4.json @@ -35,6 +35,11 @@ } ], "docket_number": "1-10-41177", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "ess", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nyeb_5.json b/tests/examples/pacer/dockets/bankruptcy/nyeb_5.json index a5fc2b294..fa49ba099 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nyeb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/nyeb_5.json @@ -35,6 +35,11 @@ } ], "docket_number": "1-10-41193", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jf", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nynb.json b/tests/examples/pacer/dockets/bankruptcy/nynb.json index ae3d62ec8..14d104f55 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nynb.json +++ b/tests/examples/pacer/dockets/bankruptcy/nynb.json @@ -875,6 +875,11 @@ } ], "docket_number": "09-12515", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rel", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nynb_1.json b/tests/examples/pacer/dockets/bankruptcy/nynb_1.json index 2eb33ba5f..015320877 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nynb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/nynb_1.json @@ -51,6 +51,11 @@ } ], "docket_number": "10-12431", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rel", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb.json b/tests/examples/pacer/dockets/bankruptcy/nysb.json index 0f946bf97..40dc2bc68 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb.json @@ -43,6 +43,11 @@ } ], "docket_number": "08-10152", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jmp", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_1.json b/tests/examples/pacer/dockets/bankruptcy/nysb_1.json index bb16d2534..9b52957ec 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_1.json @@ -283,6 +283,11 @@ } ], "docket_number": "08-22504", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_10.json b/tests/examples/pacer/dockets/bankruptcy/nysb_10.json index 0a687b7bd..ddd3af6ed 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_10.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_10.json @@ -10,6 +10,11 @@ "demand": "$46184000000", "docket_entries": [], "docket_number": "09-01165", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jmp", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_11.json b/tests/examples/pacer/dockets/bankruptcy/nysb_11.json index d81248a38..2fbf3f717 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_11.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_11.json @@ -19,6 +19,11 @@ } ], "docket_number": "09-01172", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_12.json b/tests/examples/pacer/dockets/bankruptcy/nysb_12.json index 282407a6f..a2520a89b 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_12.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_12.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "09-01177", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jmp", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_13.json b/tests/examples/pacer/dockets/bankruptcy/nysb_13.json index 5b78817d1..0fee3286d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_13.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_13.json @@ -499,6 +499,11 @@ } ], "docket_number": "09-01182", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_14.json b/tests/examples/pacer/dockets/bankruptcy/nysb_14.json index c047ffc40..65c091fbf 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_14.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_14.json @@ -67,6 +67,11 @@ } ], "docket_number": "09-01187", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_15.json b/tests/examples/pacer/dockets/bankruptcy/nysb_15.json index c5ca919aa..0455a3ea3 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_15.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_15.json @@ -163,6 +163,11 @@ } ], "docket_number": "09-01197", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_16.json b/tests/examples/pacer/dockets/bankruptcy/nysb_16.json index f10807724..583f354e8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_16.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_16.json @@ -147,6 +147,11 @@ } ], "docket_number": "09-01239", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_17.json b/tests/examples/pacer/dockets/bankruptcy/nysb_17.json index 2fd98ccfa..f47f102e0 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_17.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_17.json @@ -171,6 +171,11 @@ } ], "docket_number": "09-01241", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jmp", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_18.json b/tests/examples/pacer/dockets/bankruptcy/nysb_18.json index 15c45ab94..241b12650 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_18.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_18.json @@ -707,6 +707,11 @@ } ], "docket_number": "09-01242", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jmp", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_19.json b/tests/examples/pacer/dockets/bankruptcy/nysb_19.json index ed8b004b7..b5eb485e1 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_19.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_19.json @@ -1067,6 +1067,11 @@ } ], "docket_number": "09-01305", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_2.json b/tests/examples/pacer/dockets/bankruptcy/nysb_2.json index 2d00dd48c..3dac92b36 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_2.json @@ -83,6 +83,11 @@ } ], "docket_number": "08-13555", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jmp", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_20.json b/tests/examples/pacer/dockets/bankruptcy/nysb_20.json index ea4a9c5eb..6d21445df 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_20.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_20.json @@ -563,6 +563,11 @@ } ], "docket_number": "09-14398", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "ajg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_21.json b/tests/examples/pacer/dockets/bankruptcy/nysb_21.json index 16ea739a7..72f2809ea 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_21.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_21.json @@ -323,6 +323,11 @@ } ], "docket_number": "09-01359", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "brl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_22.json b/tests/examples/pacer/dockets/bankruptcy/nysb_22.json index fc935ea00..8c7ce6294 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_22.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_22.json @@ -115,6 +115,11 @@ } ], "docket_number": "09-01365", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "brl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_23.json b/tests/examples/pacer/dockets/bankruptcy/nysb_23.json index 038e511ca..a361fc681 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_23.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_23.json @@ -163,6 +163,11 @@ } ], "docket_number": "09-01366", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "brl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_24.json b/tests/examples/pacer/dockets/bankruptcy/nysb_24.json index 9237faaf7..fb471fcd9 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_24.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_24.json @@ -27,6 +27,11 @@ } ], "docket_number": "09-23529", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_25.json b/tests/examples/pacer/dockets/bankruptcy/nysb_25.json index a7f2d94d3..72dd9cf2d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_25.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_25.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "09-08292", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_26.json b/tests/examples/pacer/dockets/bankruptcy/nysb_26.json index 098289a79..2a6d9bc4f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_26.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_26.json @@ -91,6 +91,11 @@ } ], "docket_number": "09-01503", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_27.json b/tests/examples/pacer/dockets/bankruptcy/nysb_27.json index cad3c6f28..f9ba3e670 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_27.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_27.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "09-01535", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jmp", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_28.json b/tests/examples/pacer/dockets/bankruptcy/nysb_28.json index da81365b8..9dcc8339f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_28.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_28.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "09-16335", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_29.json b/tests/examples/pacer/dockets/bankruptcy/nysb_29.json index 3b9f0a1da..950884c83 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_29.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_29.json @@ -299,6 +299,11 @@ } ], "docket_number": "10-10044", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "reg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_3.json b/tests/examples/pacer/dockets/bankruptcy/nysb_3.json index aa957637a..7af3e389e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_3.json @@ -659,6 +659,11 @@ } ], "docket_number": "08-01753", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jmp", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_30.json b/tests/examples/pacer/dockets/bankruptcy/nysb_30.json index 2a2bac94d..7790c6e86 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_30.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_30.json @@ -43,6 +43,11 @@ } ], "docket_number": "10-10638", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jmp", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_31.json b/tests/examples/pacer/dockets/bankruptcy/nysb_31.json index 6e9b18119..05f37c0ca 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_31.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_31.json @@ -35,6 +35,11 @@ } ], "docket_number": "10-10705", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_32.json b/tests/examples/pacer/dockets/bankruptcy/nysb_32.json index 106676a6d..d6adb62d2 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_32.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_32.json @@ -43,6 +43,11 @@ } ], "docket_number": "10-22259", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_33.json b/tests/examples/pacer/dockets/bankruptcy/nysb_33.json index 68bd21422..7208466aa 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_33.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_33.json @@ -27,6 +27,11 @@ } ], "docket_number": "10-22260", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_34.json b/tests/examples/pacer/dockets/bankruptcy/nysb_34.json index 493f3c7b2..bd7e0d491 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_34.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_34.json @@ -67,6 +67,11 @@ } ], "docket_number": "10-10761", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jmp", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_35.json b/tests/examples/pacer/dockets/bankruptcy/nysb_35.json index c1230fef3..ea446994d 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_35.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_35.json @@ -43,6 +43,11 @@ } ], "docket_number": "10-35413", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_36.json b/tests/examples/pacer/dockets/bankruptcy/nysb_36.json index 280b05f85..95bee6a6f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_36.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_36.json @@ -67,6 +67,11 @@ } ], "docket_number": "02-16140", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "brl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_37.json b/tests/examples/pacer/dockets/bankruptcy/nysb_37.json index f7e6490f4..12045fa03 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_37.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_37.json @@ -27,6 +27,11 @@ } ], "docket_number": "02-16212", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "alg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_38.json b/tests/examples/pacer/dockets/bankruptcy/nysb_38.json index 9ac1aa055..84bcc2779 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_38.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_38.json @@ -43,6 +43,11 @@ } ], "docket_number": "03-09266", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "alg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_39.json b/tests/examples/pacer/dockets/bankruptcy/nysb_39.json index ae1bcb77b..4c031e5bf 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_39.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_39.json @@ -275,6 +275,11 @@ } ], "docket_number": "03-93611", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "ajg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_4.json b/tests/examples/pacer/dockets/bankruptcy/nysb_4.json index 987aa65b5..ebba157c9 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_4.json @@ -123,6 +123,11 @@ } ], "docket_number": "08-01789", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_5.json b/tests/examples/pacer/dockets/bankruptcy/nysb_5.json index d44f88a3a..a988ae0f8 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_5.json @@ -435,6 +435,11 @@ } ], "docket_number": "09-10023", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "reg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_6.json b/tests/examples/pacer/dockets/bankruptcy/nysb_6.json index 061697140..4c0a5b8f7 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_6.json @@ -19,6 +19,11 @@ } ], "docket_number": "09-01032", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_7.json b/tests/examples/pacer/dockets/bankruptcy/nysb_7.json index bde30763d..2fbb0af88 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_7.json @@ -331,6 +331,11 @@ } ], "docket_number": "09-01154", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_8.json b/tests/examples/pacer/dockets/bankruptcy/nysb_8.json index be4c636d7..4f6600c66 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_8.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_8.json @@ -811,6 +811,11 @@ } ], "docket_number": "09-11977", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "alg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_9.json b/tests/examples/pacer/dockets/bankruptcy/nysb_9.json index b83da2572..87ae479ab 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_9.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_9.json @@ -147,6 +147,11 @@ } ], "docket_number": "09-01161", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_mega.json b/tests/examples/pacer/dockets/bankruptcy/nysb_mega.json index 80e250859..556b28ae6 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_mega.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_mega.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "09-50026", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/nysb_mega_1.json b/tests/examples/pacer/dockets/bankruptcy/nysb_mega_1.json index 710aa0f23..3d567b0bc 100644 --- a/tests/examples/pacer/dockets/bankruptcy/nysb_mega_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/nysb_mega_1.json @@ -651,6 +651,11 @@ } ], "docket_number": "09-50002", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "ajg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ohnb.json b/tests/examples/pacer/dockets/bankruptcy/ohnb.json index 68496c83b..f2212ffe3 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ohnb.json +++ b/tests/examples/pacer/dockets/bankruptcy/ohnb.json @@ -35,6 +35,11 @@ } ], "docket_number": "10-05021", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mss", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/ohsb.json b/tests/examples/pacer/dockets/bankruptcy/ohsb.json index c91c11cf7..1b19aeaaa 100644 --- a/tests/examples/pacer/dockets/bankruptcy/ohsb.json +++ b/tests/examples/pacer/dockets/bankruptcy/ohsb.json @@ -211,6 +211,11 @@ } ], "docket_number": "2:09-bk-62494", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/pawb.json b/tests/examples/pacer/dockets/bankruptcy/pawb.json index 600f2a70f..6dc70553f 100644 --- a/tests/examples/pacer/dockets/bankruptcy/pawb.json +++ b/tests/examples/pacer/dockets/bankruptcy/pawb.json @@ -363,6 +363,11 @@ } ], "docket_number": "08-10287", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "TPA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/pawb_1.json b/tests/examples/pacer/dockets/bankruptcy/pawb_1.json index 81c82ad11..c9fe2c4ad 100644 --- a/tests/examples/pacer/dockets/bankruptcy/pawb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/pawb_1.json @@ -171,6 +171,11 @@ } ], "docket_number": "08-11904", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "TPA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/rib.json b/tests/examples/pacer/dockets/bankruptcy/rib.json index 4f885ef31..8a2c50599 100644 --- a/tests/examples/pacer/dockets/bankruptcy/rib.json +++ b/tests/examples/pacer/dockets/bankruptcy/rib.json @@ -451,6 +451,11 @@ } ], "docket_number": "1:09-bk-12418", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/tnwb.json b/tests/examples/pacer/dockets/bankruptcy/tnwb.json index 311027477..7fa547dbd 100644 --- a/tests/examples/pacer/dockets/bankruptcy/tnwb.json +++ b/tests/examples/pacer/dockets/bankruptcy/tnwb.json @@ -579,6 +579,11 @@ } ], "docket_number": "10-21047", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txnb.json b/tests/examples/pacer/dockets/bankruptcy/txnb.json index f6ac9e9b9..2ce5af227 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txnb.json +++ b/tests/examples/pacer/dockets/bankruptcy/txnb.json @@ -171,6 +171,11 @@ } ], "docket_number": "09-37010", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "sgj", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txnb_1.json b/tests/examples/pacer/dockets/bankruptcy/txnb_1.json index 857f72aac..a2e87cf7e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txnb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/txnb_1.json @@ -315,6 +315,11 @@ } ], "docket_number": "04-45661", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rfn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txnb_2.json b/tests/examples/pacer/dockets/bankruptcy/txnb_2.json index 43f1b7a60..0757de699 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txnb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/txnb_2.json @@ -523,6 +523,11 @@ } ], "docket_number": "08-40814", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rfn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txnb_3.json b/tests/examples/pacer/dockets/bankruptcy/txnb_3.json index 21bbf5a00..90a4117ef 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txnb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/txnb_3.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "08-42065", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rfn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txnb_300577.json b/tests/examples/pacer/dockets/bankruptcy/txnb_300577.json index 43f1b7a60..0757de699 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txnb_300577.json +++ b/tests/examples/pacer/dockets/bankruptcy/txnb_300577.json @@ -523,6 +523,11 @@ } ], "docket_number": "08-40814", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rfn", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txnb_4.json b/tests/examples/pacer/dockets/bankruptcy/txnb_4.json index dc1e8caf3..4dea2c5d2 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txnb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/txnb_4.json @@ -1395,6 +1395,11 @@ } ], "docket_number": "09-31416", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "hdh", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txnb_420776.json b/tests/examples/pacer/dockets/bankruptcy/txnb_420776.json index 907b6c791..e1175495c 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txnb_420776.json +++ b/tests/examples/pacer/dockets/bankruptcy/txnb_420776.json @@ -691,6 +691,11 @@ } ], "docket_number": "12-31010", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txnb_5.json b/tests/examples/pacer/dockets/bankruptcy/txnb_5.json index d315286b8..723216c32 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txnb_5.json +++ b/tests/examples/pacer/dockets/bankruptcy/txnb_5.json @@ -27,6 +27,11 @@ } ], "docket_number": "09-37580", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "bjh", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txnb_6.json b/tests/examples/pacer/dockets/bankruptcy/txnb_6.json index 9d189121b..5220e8d98 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txnb_6.json +++ b/tests/examples/pacer/dockets/bankruptcy/txnb_6.json @@ -251,6 +251,11 @@ } ], "docket_number": "10-30240", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "hdh", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txnb_7.json b/tests/examples/pacer/dockets/bankruptcy/txnb_7.json index 51d67c05f..a8d1d5ea7 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txnb_7.json +++ b/tests/examples/pacer/dockets/bankruptcy/txnb_7.json @@ -419,6 +419,11 @@ } ], "docket_number": "10-30241", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "bjh", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txsb.json b/tests/examples/pacer/dockets/bankruptcy/txsb.json index 0722ae472..36e482881 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txsb.json +++ b/tests/examples/pacer/dockets/bankruptcy/txsb.json @@ -107,6 +107,11 @@ } ], "docket_number": "10-30240", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txsb_1.json b/tests/examples/pacer/dockets/bankruptcy/txsb_1.json index 6d63dd81a..eda0d4fc5 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txsb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/txsb_1.json @@ -99,6 +99,11 @@ } ], "docket_number": "10-30993", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txsb_2.json b/tests/examples/pacer/dockets/bankruptcy/txsb_2.json index 3cde52c66..29e756afe 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txsb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/txsb_2.json @@ -83,6 +83,11 @@ } ], "docket_number": "10-31013", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txsb_3.json b/tests/examples/pacer/dockets/bankruptcy/txsb_3.json index fa6e72266..e25d52aa9 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txsb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/txsb_3.json @@ -91,6 +91,11 @@ } ], "docket_number": "10-31140", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txsb_4.json b/tests/examples/pacer/dockets/bankruptcy/txsb_4.json index 691b82dea..f5e9a074e 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txsb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/txsb_4.json @@ -35,6 +35,11 @@ } ], "docket_number": "10-31246", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/txwb.json b/tests/examples/pacer/dockets/bankruptcy/txwb.json index 0ff7f6aa8..74fc51a56 100644 --- a/tests/examples/pacer/dockets/bankruptcy/txwb.json +++ b/tests/examples/pacer/dockets/bankruptcy/txwb.json @@ -459,6 +459,11 @@ } ], "docket_number": "09-51807", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rbk", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/vaeb.json b/tests/examples/pacer/dockets/bankruptcy/vaeb.json index 42c2a3f84..5c1e24e89 100644 --- a/tests/examples/pacer/dockets/bankruptcy/vaeb.json +++ b/tests/examples/pacer/dockets/bankruptcy/vaeb.json @@ -859,6 +859,11 @@ } ], "docket_number": "06-30851", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "DOT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/vawb_270571.html b/tests/examples/pacer/dockets/bankruptcy/vawb_270571.html new file mode 100644 index 000000000..2c9b3330d --- /dev/null +++ b/tests/examples/pacer/dockets/bankruptcy/vawb_270571.html @@ -0,0 +1,273 @@ + + +Western District of Virginia - LIVE + + + +
    + + + + + +

    DEFER, ADVERSARY, CLOSED, BUSINESS




    U.S. Bankruptcy Court
    Western District of Virginia (Lynchburg)
    Bankruptcy Petition #: 20-60860
    + + +

    Assigned to: Judge Rebecca B. Connelly
    Chapter 7
    Voluntary
    Asset



    Debtor disposition:  Discharge Not Applicable
    Date filed:  05/29/2020
    Date terminated:  01/24/2023
    341 meeting:  07/10/2020

    + + + + + + + +
    Debtor
    Service Dogs by Warren Retrievers, Inc. +
    PO Box 647 +
    Madison, VA 22727 +
    MADISON-VA +
    Tax ID / EIN: 27-3778997
    fka Guardian Angel Service Dogs, Inc.

    represented by + Stephen E. Dunn +
    Stephen E. Dunn, Esq. +
    201 Enterprise Drive +
    Suite A +
    Forest, VA 24551 +
    434-385-4850 +
    Fax : 434-385-4850 +
    Email: stephen@stephendunn-pllc.com

    Trustee
    W Stephen Scott(80) +
    PO Box 1312 +
    Charlottesville, VA 22902 +
    (434) 227-5520

    represented by + Kristen E. Burgers +
    Hirschler Fleischer +
    1676 International Drive +
    Suite 1350 +
    Tysons, VA 22102 +
    703-584-8364 +
    Fax : 703-584-8901 +
    Email: kburgers@hirschlerlaw.com

    Brittany Berlauk Falabella +
    Hirschler Fleischer, A Professional Corp +
    2100 East Cary Street +
    P.O. Box 500 +
    Richmond, VA 23218-0500 +
    804-771-9549 +
    Fax : 804-644-0957 +
    Email: bfalabella@hirschlerlaw.com

    Robert S Westermann +
    Hirschler Fleischer, P.C. +
    2100 East Cary Street +
    The Edgeworth Building +
    RICHMOND, VA 23223 +
    804-771-5610 +
    Fax : 804-644-0957 +
    Email: rwestermann@hirschlerlaw.com

    U.S. Trustee
    USTrustee +
    Office of the United States Trustee +
    210 First Street, Suite 505 +
    Roanoke, VA 24011 +
    (540) 857-2806
       

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Filing Date#Select
    + all / + + clear
    Docket Text
    06/10/2020  20 Notice of Change of Address Filed by Creditor Tanya Donathan. (Nichols, Elizabeth) (Entered: 06/12/2020)
    + + + + +
    0Main Document1 page17.14 KB
    06/15/2020  21 Movant's Certification re: Relief from Stay Motion Filed by Joelle Gotwals on behalf of Commonwealth of Virginia ex rel. Mark R. Herring, Attorney General (RE: related document(s)11 Motion for Relief from Stay Fee Amount $181,). (Attachments: # 1 Exhibit) (Gotwals, Joelle) (Entered: 06/15/2020)
    + + + + + + + + + +
    0Main Document2 pages169.73 KB
    1Exhibit28 pages 1.60 MB
    06/19/2020  22 Answer to (related document(s) 11 Motion for Relief From Stay filed by Movant Commonwealth of Virginia ex rel. Mark R. Herring, Attorney General, 21 Movant's Certification re: Relief from Stay Motion filed by Movant Commonwealth of Virginia ex rel. Mark R. Herring, Attorney General) Filed by Stephen E. Dunn on behalf of Service Dogs by Warren Retrievers, Inc. Hearing scheduled 7/23/2020 at 10:00 AM at Judge Connelly. All parties to dial into court conference number. (Dunn, Stephen) (Entered: 06/19/2020)
    + + + + +
    0Main Document3 pages988.93 KB




    +
    or
    + + +
    PACER Service Center
    Transaction Receipt
    08/21/2024 16:33:12
    PACER Login: jesus13law Client Code:
    Description: Docket Report Search Criteria: 20-60860 Fil or Ent: filed Doc From: 20 Doc To: 22 Multiple Docs: on All attachments: on Format: html
    Billable Pages: 1 Cost: 0.10


    \ No newline at end of file diff --git a/tests/examples/pacer/dockets/bankruptcy/vawb_270571.json b/tests/examples/pacer/dockets/bankruptcy/vawb_270571.json new file mode 100644 index 000000000..f5fd5c09e --- /dev/null +++ b/tests/examples/pacer/dockets/bankruptcy/vawb_270571.json @@ -0,0 +1,114 @@ +{ + "assigned_to_str": "Rebecca B. Connelly", + "case_name": "Service Dogs by Warren Retrievers, Inc.", + "cause": "", + "court_id": "vawb", + "date_converted": null, + "date_discharged": null, + "date_filed": "2020-05-29", + "date_terminated": "2023-01-24", + "demand": "", + "docket_entries": [ + { + "date_entered": "2020-06-12", + "date_filed": "2020-06-10", + "description": "Notice of Change of Address Filed by Creditor Tanya Donathan. (Nichols, Elizabeth) (Entered: 06/12/2020)", + "document_number": "20", + "file_size_bytes": 17135, + "file_size_str": "17.14 KB", + "pacer_doc_id": "190011099298", + "pacer_seq_no": "57", + "page_count": 1 + }, + { + "attachments": [ + { + "attachment_number": 1, + "description": "Exhibit", + "file_size_bytes": 1604842, + "file_size_str": "1.60 MB", + "pacer_doc_id": "190011101174", + "pacer_seq_no": "59", + "page_count": 28 + } + ], + "date_entered": "2020-06-15", + "date_filed": "2020-06-15", + "description": "Movant's Certification re: Relief from Stay Motion Filed by Joelle Gotwals on behalf of Commonwealth of Virginia ex rel. Mark R. Herring, Attorney General (RE: related document(s)11 Motion for Relief from Stay Fee Amount $181,). (Attachments: # 1 Exhibit) (Gotwals, Joelle) (Entered: 06/15/2020)", + "document_number": "21", + "file_size_bytes": 169727, + "file_size_str": "169.73 KB", + "pacer_doc_id": "190011101173", + "pacer_seq_no": "59", + "page_count": 2 + }, + { + "date_entered": "2020-06-19", + "date_filed": "2020-06-19", + "description": "Answer to (related document(s) 11 Motion for Relief From Stay filed by Movant Commonwealth of Virginia ex rel. Mark R. Herring, Attorney General, 21 Movant's Certification re: Relief from Stay Motion filed by Movant Commonwealth of Virginia ex rel. Mark R. Herring, Attorney General) Filed by Stephen E. Dunn on behalf of Service Dogs by Warren Retrievers, Inc. Hearing scheduled 7/23/2020 at 10:00 AM at Judge Connelly. All parties to dial into court conference number. (Dunn, Stephen) (Entered: 06/19/2020)", + "document_number": "22", + "file_size_bytes": 988928, + "file_size_str": "988.93 KB", + "pacer_doc_id": "190011106802", + "pacer_seq_no": "62", + "page_count": 3 + } + ], + "docket_number": "20-60860", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, + "jurisdiction": "", + "jury_demand": "", + "mdl_status": "", + "nature_of_suit": "", + "ordered_by": "date_filed", + "parties": [ + { + "attorneys": [ + { + "contact": "Stephen E. Dunn, Esq.\n201 Enterprise Drive\nSuite A\nForest, VA 24551\n434-385-4850\nFax : 434-385-4850\nEmail:\n", + "name": "Stephen E. Dunn", + "roles": [] + } + ], + "date_terminated": null, + "extra_info": "PO Box 647\nMadison, VA 22727\nMADISON-VA\nTax ID / EIN: 27-3778997", + "name": "Service Dogs by Warren Retrievers, Inc.", + "type": "Debtor" + }, + { + "attorneys": [ + { + "contact": "Hirschler Fleischer\n1676 International Drive\nSuite 1350\nTysons, VA 22102\n703-584-8364\nFax : 703-584-8901\nEmail:\n", + "name": "Kristen E. Burgers", + "roles": [] + }, + { + "contact": "Hirschler Fleischer, A Professional Corp\n2100 East Cary Street\nP.O. Box 500\nRichmond, VA 23218-0500\n804-771-9549\nFax : 804-644-0957\nEmail:\n", + "name": "Brittany Berlauk Falabella", + "roles": [] + }, + { + "contact": "Hirschler Fleischer, P.C.\n2100 East Cary Street\nThe Edgeworth Building\nRICHMOND, VA 23223\n804-771-5610\nFax : 804-644-0957\nEmail:\n", + "name": "Robert S Westermann", + "roles": [] + } + ], + "date_terminated": null, + "extra_info": "PO Box 1312\nCharlottesville, VA 22902\n(434) 227-5520", + "name": "W Stephen Scott(80)", + "type": "Trustee" + }, + { + "attorneys": [], + "date_terminated": null, + "extra_info": "Office of the United States Trustee\n210 First Street, Suite 505\nRoanoke, VA 24011\n(540) 857-2806", + "name": "USTrustee", + "type": "U.S. Trustee" + } + ], + "referred_to_str": "" +} \ No newline at end of file diff --git a/tests/examples/pacer/dockets/bankruptcy/waeb_157024.html b/tests/examples/pacer/dockets/bankruptcy/waeb_157024.html new file mode 100644 index 000000000..ae9272af9 --- /dev/null +++ b/tests/examples/pacer/dockets/bankruptcy/waeb_157024.html @@ -0,0 +1,304 @@ + + +CM/ECF - U.S. Bankruptcy Court: WAEB + + + +
    + + + + + +

    MEANSNO, ASSETS, DischDeny, ProSe, CLOSED




    UNITED STATES BANKRUPTCY COURT
    EASTERN DISTRICT OF WASHINGTON (Spokane/Yakima)
    Bankruptcy Petition #: 09-05025-WLH7
    + + +

    Assigned to: Judge Whitman L Holt
    Chapter 7
    Voluntary
    Asset



    Debtor disposition:  Discharge Denied
    Date filed:  09/04/2009
    Date terminated:  12/29/2014
    341 meeting:  11/19/2009
    Deadline for objecting to discharge:  12/28/2009

    + + + + + + + +
    Debtor
    Craig R. Schultz +
    11811 Barrett Rd +
    Yakima, WA 98908 +
    YAKIMA-WA +
    SSN / ITIN: xxx-xx-4780

    represented by + Craig R. Schultz +
    PRO SE
    +


    Trustee
    VanNoy Culpepper +
    VanNoy Culpepper +
    3908 Creekside Loop, Suite 125 +
    Yakima, WA 98902 +
    509-457-2490

    represented by + VanNoy Culpepper +
    VanNoy Culpepper +
    3908 Creekside Loop, Suite 125 +
    Yakima, WA 98902 +
    509 457-2490 +
    Fax : 509-457-7197 +
    Email: van@culpepperlawfirm.com

    James P Hurley +
    Hurley & Lara +
    411 N Second Street +
    Yakima, WA 98901 +
    509 248-4282 +
    Fax : 509 575-5661 +
    Email: jamesphurley@hotmail.com

    U.S. Trustee
    US Trustee +
    US Court House +
    920 W Riverside Ave, Suite 593 +
    Spokane, WA 99201 +
    509-353-2999
    represented by Heidi B Anderson +
    US Dept of Justice/Office of US Trustee +
    405 E 8th Avenue, Suite 1100 +
    Eugene, OR 97401 +
    541-465-6330 +
    Fax : 541-465-6335 +
    Email: Heidi.Anderson@usdoj.gov

    Gary W Dyer +
    U S Trustee's Office +
    920 W Riverside Ave +
    Suite 593 +
    Spokane, WA 99201 +
    509-353-2999 +
    Fax : 509-353-3124 +
    Email: Gary.W.Dyer@usdoj.gov

    Gary W Dyer^ +
    U S Trustee's Office +
    920 W Riverside Ave +
    Suite 593 +
    Spokane, WA 99201 +
    509-353-2999 +
    Fax : 509-353-3124 +
    Email: Gary.W.Dyer@usdoj.gov

    Gary W Dyer^ +
    U S Trustee's Office +
    920 W Riverside Ave +
    Suite 593 +
    Spokane, WA 99201 +
    509-353-2999 +
    Fax : 509-353-3124 +
    Email: Gary.W.Dyer@usdoj.gov

    Kevin J Files +
    U.S. Dept of Justice +
    United States Trustee Program +
    405 East 8th Ave, Suite 1100 +
    Eugene, OR 97401 +
    (541) 465-6332 +
    Fax : (541) 465-6335 +
    Email: jim.files@usdoj.gov

    James D Perkins^ +
    U S Trustee +
    920 W Riverside +
    #593 +
    Spokane, WA 99201 +
    509-353-2999 +
    Fax : 353-3124 +
    Email: james.perkins@usdoj.gov

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Filing Date#Select
    + all / + + clear
    Docket Text
    03/09/2022  540  ORDER: The court has considered the application for payment of unclaimed funds filed by Jerome C. Carter of Carter Law Firm, PC (ECF No. 530). For the reasons set forth on the record at a hearing held on March 9, 2022, the application is denied. SO ORDERED. Whitman L. Holt, U.S. Bankruptcy Judge. TEXT-ONLY ORDER; NO DOCUMENT CREATED. (RE: 530) . (NNU) (Entered: 03/09/2022)
    03/09/2022  541  CERTIFICATE of Service. I, Nydia Urlacher, certify under penalty of perjury that the following is true and correct. I am over the age of eighteen. On 3/09/2022, I mailed by depositing in the U.S. mail, postage prepaid, the following document(s): Order Denying Application for Payment of Unclaimed Funds. The recipient(s) name, address and/or email: Jerome C. Carter, Carter Law Firm PC--233 Broadway Fl 5, New York NY 10279. The master mailing list was retrieved on NA. Registered ECF participants are served upon filing of the document(s) based on receipt of a Notice of Electronic Filing. Filed by (RE: Order on Application for Payment of Unclaimed Funds 540 ). (NNU) (Entered: 03/09/2022)
    07/20/2023  542 APPLICATION for Payment of Unclaimed Funds. Amount Being Claimed: $27,288.00. Filed by Law Office of Alan B Hodish, LLC as assignee to James Hurley. (CMR) (Entered: 07/20/2023)
    + + + + +
    0Main Document14 pages 1.21 MB
    07/20/2023  543  UNCLAIMED Funds - Supporting Documents (will only be viewable by the court) (RE: Application for Payment of Unclaimed Funds542). Filed by Law Office of Alan B Hodish, LLC as assignee to James Hurley (CMR) (Entered: 07/20/2023)
    07/28/2023  544 NOTICE of Appearance. Filed by Brian M Donovan on behalf of United States of America (Donovan, Brian) (Entered: 07/28/2023)
    + + + + +
    0Main Document1 page48.50 KB
    07/28/2023  545 OBJECTION (RE: Application for Payment of Unclaimed Funds542). Filed by Brian M Donovan on behalf of United States of America (Attachments: # 1 Attachment 1) (CMR) (Entered: 07/28/2023)
    + + + + + + + + + +
    0Main Document3 pages150.83 KB
    1Attachment 12 pages178.75 KB




    +
    or
    + + +
    PACER Service Center
    Transaction Receipt
    08/21/2024 11:02:59
    PACER Login: jesus13law Client Code:
    Description: Docket Report Search Criteria: 09-05025-WLH7 Fil or Ent: filed From: 1/1/1980 To: 8/21/2024 Doc From: 540 Doc To: 545 Multiple Docs: on All attachments: on Format: html
    Billable Pages: 2 Cost: 0.20


    \ No newline at end of file diff --git a/tests/examples/pacer/dockets/bankruptcy/waeb_157024.json b/tests/examples/pacer/dockets/bankruptcy/waeb_157024.json new file mode 100644 index 000000000..61cbf7bad --- /dev/null +++ b/tests/examples/pacer/dockets/bankruptcy/waeb_157024.json @@ -0,0 +1,169 @@ +{ + "assigned_to_str": "Whitman L. Holt", + "case_name": "Craig R. Schultz", + "cause": "", + "court_id": "waeb", + "date_converted": null, + "date_discharged": null, + "date_filed": "2009-09-04", + "date_terminated": "2014-12-29", + "demand": "", + "docket_entries": [ + { + "date_entered": "2022-03-09", + "date_filed": "2022-03-09", + "description": "ORDER: The court has considered the application for payment of unclaimed funds filed by Jerome C. Carter of Carter Law Firm, PC (ECF No. 530). For the reasons set forth on the record at a hearing held on March 9, 2022, the application is denied. SO ORDERED. Whitman L. Holt, U.S. Bankruptcy Judge. TEXT-ONLY ORDER; NO DOCUMENT CREATED. (RE: 530) . (NNU) (Entered: 03/09/2022)", + "document_number": "540", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2022-03-09", + "date_filed": "2022-03-09", + "description": "CERTIFICATE of Service. I, Nydia Urlacher, certify under penalty of perjury that the following is true and correct. I am over the age of eighteen. On 3/09/2022, I mailed by depositing in the U.S. mail, postage prepaid, the following document(s): Order Denying Application for Payment of Unclaimed Funds. The recipient(s) name, address and/or email: Jerome C. Carter, Carter Law Firm PC--233 Broadway Fl 5, New York NY 10279. The master mailing list was retrieved on NA. Registered ECF participants are served upon filing of the document(s) based on receipt of a Notice of Electronic Filing. Filed by (RE: Order on Application for Payment of Unclaimed Funds 540 ). (NNU) (Entered: 03/09/2022)", + "document_number": "541", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-07-20", + "date_filed": "2023-07-20", + "description": "APPLICATION for Payment of Unclaimed Funds. Amount Being Claimed: $27,288.00. Filed by Law Office of Alan B Hodish, LLC as assignee to James Hurley. (CMR) (Entered: 07/20/2023)", + "document_number": "542", + "file_size_bytes": 1206610, + "file_size_str": "1.21 MB", + "pacer_doc_id": "194011358503", + "pacer_seq_no": "1861", + "page_count": 14 + }, + { + "date_entered": "2023-07-20", + "date_filed": "2023-07-20", + "description": "UNCLAIMED Funds - Supporting Documents (will only be viewable by the court) (RE: Application for Payment of Unclaimed Funds542). Filed by Law Office of Alan B Hodish, LLC as assignee to James Hurley (CMR) (Entered: 07/20/2023)", + "document_number": "543", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-07-28", + "date_filed": "2023-07-28", + "description": "NOTICE of Appearance. Filed by Brian M Donovan on behalf of United States of America (Donovan, Brian) (Entered: 07/28/2023)", + "document_number": "544", + "file_size_bytes": 48502, + "file_size_str": "48.50 KB", + "pacer_doc_id": "194011362960", + "pacer_seq_no": "1867", + "page_count": 1 + }, + { + "attachments": [ + { + "attachment_number": 1, + "description": "Attachment 1", + "file_size_bytes": 178752, + "file_size_str": "178.75 KB", + "pacer_doc_id": "194011363050", + "pacer_seq_no": "1871", + "page_count": 2 + } + ], + "date_entered": "2023-07-28", + "date_filed": "2023-07-28", + "description": "OBJECTION (RE: Application for Payment of Unclaimed Funds542). Filed by Brian M Donovan on behalf of United States of America (Attachments: # 1 Attachment 1) (CMR) (Entered: 07/28/2023)", + "document_number": "545", + "file_size_bytes": 150827, + "file_size_str": "150.83 KB", + "pacer_doc_id": "194011363049", + "pacer_seq_no": "1871", + "page_count": 3 + } + ], + "docket_number": "09-05025", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "WLH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, + "jurisdiction": "", + "jury_demand": "", + "mdl_status": "", + "nature_of_suit": "", + "ordered_by": "date_filed", + "parties": [ + { + "attorneys": [ + { + "contact": "PRO SE\n", + "name": "Craig R. Schultz", + "roles": [] + }, + { + "contact": "", + "name": "", + "roles": [] + } + ], + "date_terminated": null, + "extra_info": "11811 Barrett Rd\nYakima, WA 98908\nYAKIMA-WA\nSSN / ITIN: xxx-xx-4780", + "name": "Craig R. Schultz", + "type": "Debtor" + }, + { + "attorneys": [ + { + "contact": "VanNoy Culpepper\n3908 Creekside Loop, Suite 125\nYakima, WA 98902\n509 457-2490\nFax : 509-457-7197\nEmail:\n", + "name": "VanNoy Culpepper", + "roles": [] + }, + { + "contact": "Hurley & Lara\n411 N Second Street\nYakima, WA 98901\n509 248-4282\nFax : 509 575-5661\nEmail:\n", + "name": "James P Hurley", + "roles": [] + } + ], + "date_terminated": null, + "extra_info": "VanNoy Culpepper\n3908 Creekside Loop, Suite 125\nYakima, WA 98902\n509-457-2490", + "name": "VanNoy Culpepper", + "type": "Trustee" + }, + { + "attorneys": [ + { + "contact": "US Dept of Justice/Office of US Trustee\n405 E 8th Avenue, Suite 1100\nEugene, OR 97401\n541-465-6330\nFax : 541-465-6335\nEmail:\n", + "name": "Heidi B Anderson", + "roles": [] + }, + { + "contact": "U S Trustee's Office\n920 W Riverside Ave\nSuite 593\nSpokane, WA 99201\n509-353-2999\nFax : 509-353-3124\nEmail:\n", + "name": "Gary W Dyer", + "roles": [] + }, + { + "contact": "U S Trustee's Office\n920 W Riverside Ave\nSuite 593\nSpokane, WA 99201\n509-353-2999\nFax : 509-353-3124\nEmail:\n", + "name": "Gary W Dyer^", + "roles": [] + }, + { + "contact": "U S Trustee's Office\n920 W Riverside Ave\nSuite 593\nSpokane, WA 99201\n509-353-2999\nFax : 509-353-3124\nEmail:\n", + "name": "Gary W Dyer^", + "roles": [] + }, + { + "contact": "U.S. Dept of Justice\nUnited States Trustee Program\n405 East 8th Ave, Suite 1100\nEugene, OR 97401\n(541) 465-6332\nFax : (541) 465-6335\nEmail:\n", + "name": "Kevin J Files", + "roles": [] + }, + { + "contact": "U S Trustee\n920 W Riverside\n#593\nSpokane, WA 99201\n509-353-2999\nFax : 353-3124\nEmail:\n", + "name": "James D Perkins^", + "roles": [] + } + ], + "date_terminated": null, + "extra_info": "US Court House\n920 W Riverside Ave, Suite 593\nSpokane, WA 99201\n509-353-2999", + "name": "US Trustee", + "type": "U.S. Trustee" + } + ], + "referred_to_str": "" +} \ No newline at end of file diff --git a/tests/examples/pacer/dockets/bankruptcy/wawb.json b/tests/examples/pacer/dockets/bankruptcy/wawb.json index f9e24ba8d..a045bea19 100644 --- a/tests/examples/pacer/dockets/bankruptcy/wawb.json +++ b/tests/examples/pacer/dockets/bankruptcy/wawb.json @@ -51,6 +51,11 @@ } ], "docket_number": "04-10121", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "TTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/wawb_1.json b/tests/examples/pacer/dockets/bankruptcy/wawb_1.json index d23da2079..c2ef02784 100644 --- a/tests/examples/pacer/dockets/bankruptcy/wawb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/wawb_1.json @@ -315,6 +315,11 @@ } ], "docket_number": "09-16781", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "TTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/wawb_2.json b/tests/examples/pacer/dockets/bankruptcy/wawb_2.json index 820a24cf8..a1b88cffc 100644 --- a/tests/examples/pacer/dockets/bankruptcy/wawb_2.json +++ b/tests/examples/pacer/dockets/bankruptcy/wawb_2.json @@ -179,6 +179,11 @@ } ], "docket_number": "09-16841", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MLB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/wawb_3.json b/tests/examples/pacer/dockets/bankruptcy/wawb_3.json index 117e24d90..0b733fd17 100644 --- a/tests/examples/pacer/dockets/bankruptcy/wawb_3.json +++ b/tests/examples/pacer/dockets/bankruptcy/wawb_3.json @@ -1563,6 +1563,11 @@ } ], "docket_number": "09-01577", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MLB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/wawb_4.json b/tests/examples/pacer/dockets/bankruptcy/wawb_4.json index 6ffbd15cf..4928b2c77 100644 --- a/tests/examples/pacer/dockets/bankruptcy/wawb_4.json +++ b/tests/examples/pacer/dockets/bankruptcy/wawb_4.json @@ -595,6 +595,11 @@ } ], "docket_number": "10-10528", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "TTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/bankruptcy/wiwb_1.json b/tests/examples/pacer/dockets/bankruptcy/wiwb_1.json index 41b0982a6..fb9f670d9 100644 --- a/tests/examples/pacer/dockets/bankruptcy/wiwb_1.json +++ b/tests/examples/pacer/dockets/bankruptcy/wiwb_1.json @@ -19,6 +19,11 @@ } ], "docket_number": "1-12-10572", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "tsu", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/akd.json b/tests/examples/pacer/dockets/district/akd.json index ab0657569..eda0f8541 100644 --- a/tests/examples/pacer/dockets/district/akd.json +++ b/tests/examples/pacer/dockets/district/akd.json @@ -35,6 +35,11 @@ } ], "docket_number": "3:08-cv-00284", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "TMB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "Diversity", "jury_demand": "None", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/almd.json b/tests/examples/pacer/dockets/district/almd.json index c12be5c47..d5c1cb8fb 100644 --- a/tests/examples/pacer/dockets/district/almd.json +++ b/tests/examples/pacer/dockets/district/almd.json @@ -19,6 +19,11 @@ } ], "docket_number": "1:08-cv-00901", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WKW", + "federal_dn_judge_initials_referred": "SRW", + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "Plaintiff", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/alnb_1.json b/tests/examples/pacer/dockets/district/alnb_1.json index 8183d33d0..1e1e6e259 100644 --- a/tests/examples/pacer/dockets/district/alnb_1.json +++ b/tests/examples/pacer/dockets/district/alnb_1.json @@ -15,7 +15,7 @@ "description": "Chapter 13 Voluntary Petition Individual . Receipt Number O, Fee Amount $310 Filed by Michael Appling, Shawn Appling Section 316 Incomplete Filing Date 02/21/2017 Incomplete Filings due by 01/19/2017. (Davidson, Adam) (Entered: 01/05/2017)", "document_number": "1", "pacer_doc_id": "018033396437", - "pacer_seq_no": null + "pacer_seq_no": "2" }, { "date_entered": "2017-01-05", @@ -23,7 +23,7 @@ "description": "Chapter 13 Plan Filed by Debtor Michael Appling. (Davidson, Adam) (Entered: 01/05/2017)", "document_number": "2", "pacer_doc_id": "018033396452", - "pacer_seq_no": null + "pacer_seq_no": "10" }, { "date_entered": "2017-01-05", @@ -31,7 +31,7 @@ "description": "Notice of Intent to Pay Chapter 13 Case Filing Fee through Chapter 13 Plan Filed by Debtor Michael Appling, Joint Debtor Shawn Appling. (Davidson, Adam) (Entered: 01/05/2017)", "document_number": "3", "pacer_doc_id": "018033396536", - "pacer_seq_no": null + "pacer_seq_no": "13" }, { "date_entered": "2017-01-05", @@ -39,7 +39,7 @@ "description": "Application to Pay Filing Fee in Installments Through the Chapter 13 Trustee Assigned to the Case Filed by Debtor Michael Appling, Joint Debtor Shawn Appling (Davidson, Adam) (Entered: 01/05/2017)", "document_number": "4", "pacer_doc_id": "018033396550", - "pacer_seq_no": null + "pacer_seq_no": "15" }, { "date_entered": "2017-01-05", @@ -47,7 +47,7 @@ "description": "Certificate of Credit Counseling for Debtor and Joint Debtor Filed Filed by Debtor Michael Appling, Joint Debtor Shawn Appling. (Attachments: # 1 cc sps) (Davidson, Adam) (Entered: 01/05/2017)", "document_number": "6", "pacer_doc_id": "018033396583", - "pacer_seq_no": null + "pacer_seq_no": "19" }, { "date_entered": "2017-01-05", @@ -55,7 +55,7 @@ "description": "Employee Income Records Filed by Debtor Michael Appling, Joint Debtor Shawn Appling. (Attachments: # 1 pay) (Davidson, Adam) (Entered: 01/05/2017)", "document_number": "7", "pacer_doc_id": "018033396631", - "pacer_seq_no": null + "pacer_seq_no": "21" }, { "date_entered": "2017-01-05", @@ -63,7 +63,7 @@ "description": "Meeting of Creditors with 341(a) meeting to be held on 01/31/2017 at 09:00 AM at 3rd Floor Courtroom (CRJ) Florence. Confirmation hearing to be held on 03/08/2017 at 10:00 AM at 2nd Floor Courtroom (CRJ) Florence. Proof of Claim due by 05/01/2017. Government Proof of Claim due by 07/05/2017 Objection to Dischargeability of Certain Debts due by 04/03/2017. (Entered: 01/05/2017)", "document_number": "8", "pacer_doc_id": "018033396957", - "pacer_seq_no": null + "pacer_seq_no": "25" }, { "date_entered": "2017-01-05", @@ -79,7 +79,7 @@ "description": "Notice of Requirement to Complete Course in Financial Management . (Admin) (Entered: 01/06/2017)", "document_number": "10", "pacer_doc_id": "018033404729", - "pacer_seq_no": null + "pacer_seq_no": "30" }, { "date_entered": "2017-01-08", @@ -87,7 +87,7 @@ "description": "BNC Certificate of Notice (RE: related document(s)8 Meeting (AutoAssign Chapter 13)). Notice Date 01/07/2017. (Admin.) (Entered: 01/08/2017)", "document_number": "11", "pacer_doc_id": "018033411867", - "pacer_seq_no": null + "pacer_seq_no": "34" }, { "date_entered": "2017-01-08", @@ -95,7 +95,7 @@ "description": "BNC Certificate of Notice (RE: related document(s)2 Chapter 13 Plan filed by Debtor Michael Appling). Notice Date 01/07/2017. (Admin.) (Entered: 01/08/2017)", "document_number": "12", "pacer_doc_id": null, - "pacer_seq_no": null + "pacer_seq_no": "37" }, { "date_entered": "2017-01-09", @@ -103,7 +103,7 @@ "description": "BNC Certificate of Notice (RE: related document(s)10 Notice of Requirement to Complete Course in Financial Management). Notice Date 01/08/2017. (Admin.) (Entered: 01/09/2017)", "document_number": "13", "pacer_doc_id": "018033413551", - "pacer_seq_no": null + "pacer_seq_no": "40" }, { "date_entered": "2017-01-12", @@ -111,7 +111,7 @@ "description": "Notice of Appearance and Request for Notice by Leonard N Math Filed by Creditor FAMILY SECURITY CREDIT UNION. (Math, Leonard) (Entered: 01/12/2017)", "document_number": "14", "pacer_doc_id": "018033444758", - "pacer_seq_no": null + "pacer_seq_no": "43" }, { "date_entered": "2017-01-13", @@ -119,10 +119,15 @@ "description": "Withdrawal of Claims: 1 Filed by Creditor FAMILY SECURITY CREDIT UNION. (Math, Leonard) (Entered: 01/13/2017)", "document_number": "15", "pacer_doc_id": "018033452472", - "pacer_seq_no": null + "pacer_seq_no": "47" } ], "docket_number": "17-80033", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CRJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/alsd.json b/tests/examples/pacer/dockets/district/alsd.json index 17b21b51c..963f35a2e 100644 --- a/tests/examples/pacer/dockets/district/alsd.json +++ b/tests/examples/pacer/dockets/district/alsd.json @@ -19,6 +19,11 @@ } ], "docket_number": "1:08-cv-00662", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KD", + "federal_dn_judge_initials_referred": "C", + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "Both", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/azd.json b/tests/examples/pacer/dockets/district/azd.json index 8b76707cf..4c5307f36 100644 --- a/tests/examples/pacer/dockets/district/azd.json +++ b/tests/examples/pacer/dockets/district/azd.json @@ -195,6 +195,11 @@ } ], "docket_number": "2:17-cr-00378", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "SPL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/cacd.json b/tests/examples/pacer/dockets/district/cacd.json index e5c01c007..b661aa594 100644 --- a/tests/examples/pacer/dockets/district/cacd.json +++ b/tests/examples/pacer/dockets/district/cacd.json @@ -387,6 +387,11 @@ } ], "docket_number": "2:06-cv-00350", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJO", + "federal_dn_judge_initials_referred": "JWJ", + "federal_dn_office_code": "2", "jurisdiction": "Federal Question", "jury_demand": "Both", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/cacd_2.json b/tests/examples/pacer/dockets/district/cacd_2.json index e5c01c007..b661aa594 100644 --- a/tests/examples/pacer/dockets/district/cacd_2.json +++ b/tests/examples/pacer/dockets/district/cacd_2.json @@ -387,6 +387,11 @@ } ], "docket_number": "2:06-cv-00350", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJO", + "federal_dn_judge_initials_referred": "JWJ", + "federal_dn_office_code": "2", "jurisdiction": "Federal Question", "jury_demand": "Both", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/caed.json b/tests/examples/pacer/dockets/district/caed.json index 3ad1abe7e..5d410d5d2 100644 --- a/tests/examples/pacer/dockets/district/caed.json +++ b/tests/examples/pacer/dockets/district/caed.json @@ -19,6 +19,11 @@ } ], "docket_number": "1:09-cv-00515", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SMS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "None", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/caed_2.json b/tests/examples/pacer/dockets/district/caed_2.json index 64b7008f9..f96e0451a 100644 --- a/tests/examples/pacer/dockets/district/caed_2.json +++ b/tests/examples/pacer/dockets/district/caed_2.json @@ -179,6 +179,11 @@ } ], "docket_number": "1:02-cr-05210", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "REC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/caed_3.json b/tests/examples/pacer/dockets/district/caed_3.json index d751ad791..62f3902cc 100644 --- a/tests/examples/pacer/dockets/district/caed_3.json +++ b/tests/examples/pacer/dockets/district/caed_3.json @@ -19,6 +19,11 @@ } ], "docket_number": "1:09-cv-00480", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LJO", + "federal_dn_judge_initials_referred": "GSA", + "federal_dn_office_code": "1", "jurisdiction": "U.S. Government Defendant", "jury_demand": "None", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/cand.json b/tests/examples/pacer/dockets/district/cand.json index cb10490cb..98919a028 100644 --- a/tests/examples/pacer/dockets/district/cand.json +++ b/tests/examples/pacer/dockets/district/cand.json @@ -35,6 +35,11 @@ } ], "docket_number": "3:08-cv-00159", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WHA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "Federal Question", "jury_demand": "None", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/cand_2.json b/tests/examples/pacer/dockets/district/cand_2.json index 67cd240b9..0283b64c7 100644 --- a/tests/examples/pacer/dockets/district/cand_2.json +++ b/tests/examples/pacer/dockets/district/cand_2.json @@ -35,6 +35,11 @@ } ], "docket_number": "3:08-cv-00177", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SI", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "Federal Question", "jury_demand": "Plaintiff", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/cand_263146.json b/tests/examples/pacer/dockets/district/cand_263146.json index 5423b745b..1d0fc6729 100644 --- a/tests/examples/pacer/dockets/district/cand_263146.json +++ b/tests/examples/pacer/dockets/district/cand_263146.json @@ -19,6 +19,11 @@ } ], "docket_number": "4:13-md-02420", + "federal_defendant_number": null, + "federal_dn_case_type": "md", + "federal_dn_judge_initials_assigned": "YGR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "jurisdiction": "Federal Question", "jury_demand": "Both", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/cand_3.json b/tests/examples/pacer/dockets/district/cand_3.json index 2a81fe219..0ab0563ff 100644 --- a/tests/examples/pacer/dockets/district/cand_3.json +++ b/tests/examples/pacer/dockets/district/cand_3.json @@ -19,6 +19,11 @@ } ], "docket_number": "3:09-cr-00418", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JSW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/cand_4.json b/tests/examples/pacer/dockets/district/cand_4.json index a194296f3..154fae9aa 100644 --- a/tests/examples/pacer/dockets/district/cand_4.json +++ b/tests/examples/pacer/dockets/district/cand_4.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "3:09-cr-00418", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JSW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/cand_7.json b/tests/examples/pacer/dockets/district/cand_7.json index e89d37482..067c93e51 100644 --- a/tests/examples/pacer/dockets/district/cand_7.json +++ b/tests/examples/pacer/dockets/district/cand_7.json @@ -101,6 +101,11 @@ } ], "docket_number": "3:23-cv-04557", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JCS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "Federal Question", "jury_demand": "Plaintiff", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/casd.json b/tests/examples/pacer/dockets/district/casd.json index 8ebed1588..ca5508f57 100644 --- a/tests/examples/pacer/dockets/district/casd.json +++ b/tests/examples/pacer/dockets/district/casd.json @@ -371,6 +371,11 @@ } ], "docket_number": "3:15-cr-00331", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "W", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/casd_2.json b/tests/examples/pacer/dockets/district/casd_2.json index 21107f1f0..b6576f836 100644 --- a/tests/examples/pacer/dockets/district/casd_2.json +++ b/tests/examples/pacer/dockets/district/casd_2.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "3:07-cr-03257", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "BTM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/casd_3.json b/tests/examples/pacer/dockets/district/casd_3.json index 46f45b793..ae3ad980b 100644 --- a/tests/examples/pacer/dockets/district/casd_3.json +++ b/tests/examples/pacer/dockets/district/casd_3.json @@ -211,6 +211,11 @@ } ], "docket_number": "3:15-cr-00144", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "BGS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/casd_4.json b/tests/examples/pacer/dockets/district/casd_4.json index f8e96a4e2..3b5387ba9 100644 --- a/tests/examples/pacer/dockets/district/casd_4.json +++ b/tests/examples/pacer/dockets/district/casd_4.json @@ -659,6 +659,11 @@ } ], "docket_number": "3:11-cr-00045", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "DMS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/casd_5.json b/tests/examples/pacer/dockets/district/casd_5.json index ac3e95c7a..3ac55d327 100644 --- a/tests/examples/pacer/dockets/district/casd_5.json +++ b/tests/examples/pacer/dockets/district/casd_5.json @@ -259,6 +259,11 @@ } ], "docket_number": "3:15-cr-00021", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JAH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/casd_6.json b/tests/examples/pacer/dockets/district/casd_6.json index d44f68494..da2eaafbe 100644 --- a/tests/examples/pacer/dockets/district/casd_6.json +++ b/tests/examples/pacer/dockets/district/casd_6.json @@ -227,6 +227,11 @@ } ], "docket_number": "3:18-cr-03298", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JAH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/dcd_1.json b/tests/examples/pacer/dockets/district/dcd_1.json index d92475806..3c4a6c6a9 100644 --- a/tests/examples/pacer/dockets/district/dcd_1.json +++ b/tests/examples/pacer/dockets/district/dcd_1.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "1:17-cr-00201", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "ABJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/dcd_3.json b/tests/examples/pacer/dockets/district/dcd_3.json index 4df26c377..bc4db603b 100644 --- a/tests/examples/pacer/dockets/district/dcd_3.json +++ b/tests/examples/pacer/dockets/district/dcd_3.json @@ -167,6 +167,11 @@ } ], "docket_number": "1:20-cv-03010", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "APM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "U.S. Government Plaintiff", "jury_demand": "None", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/ded.json b/tests/examples/pacer/dockets/district/ded.json index 46e16cc84..d563dbfa0 100644 --- a/tests/examples/pacer/dockets/district/ded.json +++ b/tests/examples/pacer/dockets/district/ded.json @@ -27,6 +27,11 @@ } ], "docket_number": "1:09-cv-00189", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "GMS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "None", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/gand_1.json b/tests/examples/pacer/dockets/district/gand_1.json index 5189ccde0..f11531a56 100644 --- a/tests/examples/pacer/dockets/district/gand_1.json +++ b/tests/examples/pacer/dockets/district/gand_1.json @@ -19,6 +19,11 @@ } ], "docket_number": "1:22-cv-03027", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LMM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "None", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/gasd.json b/tests/examples/pacer/dockets/district/gasd.json index 812727110..c016eb909 100644 --- a/tests/examples/pacer/dockets/district/gasd.json +++ b/tests/examples/pacer/dockets/district/gasd.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "1:09-cr-00073", + "federal_defendant_number": "6", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JRH", + "federal_dn_judge_initials_referred": "BKE", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/hid.json b/tests/examples/pacer/dockets/district/hid.json index e976b34b1..bdabc83bf 100644 --- a/tests/examples/pacer/dockets/district/hid.json +++ b/tests/examples/pacer/dockets/district/hid.json @@ -387,6 +387,11 @@ } ], "docket_number": "1:04-cr-00233", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "DAE", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/ilnd_310470.json b/tests/examples/pacer/dockets/district/ilnd_310470.json index d1cf979c9..6c467616e 100644 --- a/tests/examples/pacer/dockets/district/ilnd_310470.json +++ b/tests/examples/pacer/dockets/district/ilnd_310470.json @@ -19,6 +19,11 @@ } ], "docket_number": "1:15-cv-04313", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "Both", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/ilnd_378697.json b/tests/examples/pacer/dockets/district/ilnd_378697.json index 1e6ac4e2c..d9c38a0aa 100644 --- a/tests/examples/pacer/dockets/district/ilnd_378697.json +++ b/tests/examples/pacer/dockets/district/ilnd_378697.json @@ -83,6 +83,11 @@ } ], "docket_number": "1:20-cv-04676", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "None", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/jpml.json b/tests/examples/pacer/dockets/district/jpml.json index dcd8b6c05..ae153c85e 100644 --- a/tests/examples/pacer/dockets/district/jpml.json +++ b/tests/examples/pacer/dockets/district/jpml.json @@ -91,6 +91,11 @@ } ], "docket_number": "MDL No. 2168", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "mdl_status": "Denied by Panel", diff --git a/tests/examples/pacer/dockets/district/jpml_1551542.json b/tests/examples/pacer/dockets/district/jpml_1551542.json index 2f64fe040..df7e0f165 100644 --- a/tests/examples/pacer/dockets/district/jpml_1551542.json +++ b/tests/examples/pacer/dockets/district/jpml_1551542.json @@ -27,6 +27,11 @@ } ], "docket_number": "1:22-cv-10283", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/laed_127926.json b/tests/examples/pacer/dockets/district/laed_127926.json index a67599b0a..b61258625 100644 --- a/tests/examples/pacer/dockets/district/laed_127926.json +++ b/tests/examples/pacer/dockets/district/laed_127926.json @@ -475,6 +475,11 @@ } ], "docket_number": "2:08-cv-04256", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "HGB", + "federal_dn_judge_initials_referred": "SS", + "federal_dn_office_code": "2", "jurisdiction": "Federal Question", "jury_demand": "Plaintiff", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/lamd.html b/tests/examples/pacer/dockets/district/lamd.html new file mode 100644 index 000000000..6d37eaa7f --- /dev/null +++ b/tests/examples/pacer/dockets/district/lamd.html @@ -0,0 +1,140 @@ +CM/ECF LIVE - U.S. District Court:lamd +
    + + +
    CASE REFERRED,CLOSED
    +

    U.S. District Court
    +Middle District of Louisiana (Baton Rouge)
    +CIVIL DOCKET FOR CASE #: 3:17-cv-01352-BAJ-EWD

    + + + +

    Roddy v. Babin
    +Assigned to: Judge Brian A. Jackson
    +Referred to: Magistrate Judge Erin Wilder-Doomes
    +
    Case in other court: 5th Circuit, 18-31050
    +Cause: 42:1983 Prisoner Civil Rights

    Date Filed: 11/06/2017
    +Date Terminated: 05/11/2021
    +Jury Demand: None
    +Nature of Suit: 550 Prisoner: Civil Rights
    +Jurisdiction: Federal Question
    + + + + + + + + + + + + + + + + + +
    Plaintiff
    + Lucas Joseph Roddy + represented byLucas Joseph Roddy +
    458846 +
    Louisiana State Penitentiary +
    Angola, LA 70712 +
    PRO SE

    V.
    Defendant
    + Ricky Babin
    District Attorney, 23rd Judicial District of Louisiana +
    represented byRalph R. Alexis , III +
    Porteous, Hainkel and Johnson, LLP +
    704 Carondelet St. +
    New Orleans, LA 70130-3706 +
    504-581-3838 +
    Fax: 504-581-4069 +
    Email: ralexis@phjlaw.com +
    LEAD ATTORNEY +
    ATTORNEY TO BE NOTICED

    +Corey Daniel Moll +
    924 Joliet Street +
    New Orleans, LA 70118 +
    504-289-6964 +
    Email: cmoll@phjlaw.com +
    ATTORNEY TO BE NOTICED

    +Glenn Brozman Adams +
    Porteous, Hainkel & Johnson - NO +
    704 Carondelet St. +
    New Orleans, LA 70130-3706 +
    504-581-3838 +
    Fax: 504-581-4069 +
    Email: gadams@phjlaw.com +
    ATTORNEY TO BE NOTICED
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date Filed#Docket Text
    11/06/20171 COMPLAINT/Brief in Support of Plaintiff's Motion for Preliminary Injunction against Ricky Babin filed by Lucas Joseph Roddy. (Attachments: # 1 cover letter)(EDC) (Entered: 11/07/2017)
    11/06/20172 MOTION to Proceed In Forma Pauperis with Statement of Account by Lucas Joseph Roddy. (EDC) (Entered: 11/07/2017)
    11/06/2017 Complaint/Brief in Support of Plaintiff's MOTION for Preliminary Injunction by Lucas Joseph Roddy. (EDC) Modified on 11/8/2017 to edit text. (EDC). (Entered: 11/08/2017)
    11/07/2017 MOTION(S) REFERRED: 2 MOTION to Proceed In Forma Pauperis with Statement of Account. This motion is now pending before the USMJ. (EDC) (Entered: 11/07/2017)
    11/08/20173 ORDER REFERRING MOTION to USMJ: MOTION for Preliminary Injunction filed by Lucas Joseph Roddy. Signed by Chief Judge Brian A. Jackson on 11/08/2017. (ELW) (Entered: 11/09/2017)
    12/15/2017 Case reassigned to Magistrate Judge Erin Wilder-Doomes. Magistrate Judge Richard L. Bourgeois, Jr. no longer assigned to the case. (This is a TEXT ENTRY ONLY. There is no hyperlink or PDF document associated with this entry.) (NLT) (Entered: 12/15/2017)
    07/19/20184 Letter of Deficiency: The Clerk has filed your new suit. However, it is deficient in the areas as stated herein. The deficiency must be corrected within the given time frame. Amended Pleadings due by 8/9/2018. (EDC) (Entered: 07/19/2018)
    08/01/20185 AMENDED COMPLAINT against Ricky Babin filed by Lucas Joseph Roddy. (Attachments: # 1 Attachment)(EDC) (Entered: 08/01/2018)
    08/01/20186 MOTION to Proceed In Forma Pauperis by Lucas Joseph Roddy. (EDC) (Entered: 08/01/2018)
    08/01/2018 MOTION(S) REFERRED: 6 MOTION to Proceed In Forma Pauperis. This motion is now pending before the USMJ. (EDC) (Entered: 08/01/2018)
    08/07/20187 ORDER granting 2 6 Motion to Proceed In Forma Pauperis. It is ordered that the plaintiff pay an initial partial filing fee of $11.16 in accordance with 28 USC 1915. A copy of this order shall be sent to the plaintiff and to Centralized Inmate Banking. Filing Fee due by 8/28/2018. Signed by Magistrate Judge Erin Wilder-Doomes on 8/6/2018. (EDC) (Entered: 08/07/2018)
    08/29/2018 Confirmation of receipt of payment from LUCAS JOSEPH RODDY in the amount of $11.16. Transaction posted on 8/27/2018. Receipt number 4699028550 processed by eclement. (IJE) (Entered: 08/29/2018)
    09/13/20188 RULING AND ORDER denying 1 Motion for Preliminary Injunction. Signed by Judge Brian A. Jackson on 9/11/2018. (EDC) Modified on 9/14/2018 to edit text (LLH). (Entered: 09/13/2018)
    09/20/20189 NOTICE OF APPEAL of 8 Order on Motion for Preliminary Injunction by Lucas Joseph Roddy. (EDC) (Entered: 09/20/2018)
    10/03/201810 Original Appeal Brief regarding 1 Complaint. (Attachments: # 1 Exhibit, # 2 Attachment, # 3 cover letter)(EDC) (Entered: 10/03/2018)
    10/04/201811 ORDER: as to 9 Notice of Appeal; ORDERED that, within twenty-one (21) days of the date of this Order, Plaintiff shall submit to this Court either $ 505.00 (the full amount of the applicable appellate filing fee) or a properly completed Motion to Proceed In Forma Pauperis on Appeal pursuant to Rule 24(a) of the Federal Rules of Appellate Procedure (copy attached), together with a properly completed Statement of Account (copy attached), signed by an authorized officer at Plaintiffs institution, certifying to the average six-month deposits and balance in Plaintiffs inmate account(s). Signed by Magistrate Judge Erin Wilder-Doomes on 10/04/2018. (ELW) (Entered: 10/05/2018)
    10/15/201812  MOTION for Leave to Appeal in forma pauperis with Statement of Account by Lucas Joseph Roddy. (Attachments: # 1 Exhibit)(EDC) (Entered: 10/15/2018)
    10/15/2018 MOTION(S) REFERRED: 12 MOTION for Leave to Appeal in forma pauperis with Statement of Account. This motion is now pending before the USMJ. (EDC) (Entered: 10/15/2018)
    01/29/2019 Motions No Longer Referred: 12 MOTION for Leave to Appeal in forma pauperis with Statement of Account. This motion is now pending before the USDJ. (EDC) (Entered: 01/29/2019)
    01/29/201913 ORDER denying 12 Motion for Leave to Appeal in forma pauperis. Signed by Judge Brian A. Jackson on 1/29/2019. (KAH) (Entered: 01/29/2019)
    02/15/201914 USCA Case Number 18-31050 for 9 Notice of Appeal filed by Lucas Joseph Roddy. (KAH) (Entered: 02/15/2019)
    02/25/2019 Record on Appeal #18-31050 Electronically Certified regarding 9 Notice of Appeal. US Court of Appeals notified of certification. (KAH) (Entered: 02/25/2019)
    07/24/201915 ORDER: USM is to serve the defendants wherever found. Within 90 days of the defendants' first appearance, the parties shall complete all discovery. Counsel for defendants shall provide to the plaintiff all medical records, etc. pertinent to the issues in this case, within 20 days of the defendants' first appearance. Discovery shall proceed as stated herein. Within 120 days of the defendant's first appearance, the parties shall file cross motions for summary judgment. Signed by Magistrate Judge Erin Wilder-Doomes on 7/23/2019. (KAH) (Entered: 07/24/2019)
    07/24/201916 Summons Issued as to Ricky Babin. Summons submitted to the USM for service. (KAH) (Entered: 07/24/2019)
    07/24/201917 ORDER: By Friday 7/26/2019, the District Attorney shall file, with the Fifth Circuit, into Court of Appeals Docket No. 18-31050, an electronic certified copy of the state court record, including transcripts of all proceedings held in the state courts as well as a certified electronic copy of all documents, including all briefs, memoranda, orders, dispositions or other documentation filed in connection with any appeal or application for post-conviction relief presented to any and all state district and appellate courts. In the event that the District Attorney is unable to produce any or all of the above records, he shall advise the Fifth Circuit in writing why he is unable to produce these records. By Friday 7/26/2019, the Clerk of Court for the Twenty-Third Judicial District for the Parish of Ascension, State of Louisiana, shall file, in the conventional manner (NOT electronically), a courtesy copy of the entire state court record electronically filed by the state. In the event that the Clerk of Court is unable to produce any or all of the above records, he shall advise the Fifth Circuit in writing why he is unable to produce these records. Signed by Magistrate Judge Erin Wilder- Doomes on 7/23/2019.(KAH) (Entered: 07/24/2019)
    07/29/201918 NOTICE of Certified Mail Receipt Returned on District Attorney's Office on July 26, 2019 re 17 Order. (EDC) (Entered: 07/30/2019)
    07/29/201919 NOTICE of Certified Mail Receipt Returned on District Attorney's Office re 17 Order. (EDC) (Entered: 07/30/2019)
    07/29/201920 NOTICE of Certified Mail Receipt Returned on 23rd JDC Clerk of Court on July 26, 2019 re 17 Order. (EDC) (Entered: 07/30/2019)
    07/31/201921 NOTICE of Certified Mail Receipt Returned on 23rd JDC Clerk of Court on July 26, 2019 re 17 Order. (EDC) (Entered: 08/01/2019)
    08/26/201922 State Court Record (Habeas Case). (Candell, Donald) (Entered: 08/26/2019)
    11/25/201923 SUMMONS Returned Executed. Ricky Babin served on 11/21/2019, answer due 12/12/2019. (US Marshal, ) (Entered: 11/25/2019)
    12/05/201924 ORDER: The Clerk shall administratively terminate this action in his records, without prejudice to the right of the parties to reopen the proceedings. Signed by Magistrate Judge Erin Wilder-Doomes on 12/5/2019. (SWE) (Entered: 12/05/2019)
    12/06/201925 GENERAL ORDER: All pleadings and other papers filed under seal in civil and criminal actions shall be maintained under seal for thirty days following final disposition of the action. After that time, all sealed pleadings and other papers shall be placed in the case record unless a District Judge or Magistrate Judge, upon motion and for good cause shown, orders that the pleading or other paper be maintained under seal.

    The deadline for filing any motions regarding the unsealing of any document shall be within thirty days of the final disposition of any action and shall contain a concise statement of reasons for maintaining the pleading or other paper under seal.

    ATTENTION: If a motion to retain documents under seal is NOT filed, all documents shall be placed in the public case record, unless specifically identified in the attached General Order.

    Signed by Chief Judge Shelly D. Dick on 7/8/2019. (SWE) (Entered: 12/06/2019)

    12/10/201926 First MOTION for Extension of Time responsive pleadings to Complaint by Ricky Babin. (Attachments: # 1 Attachment Proposed Order)(Alexis, Ralph) (Entered: 12/10/2019)
    12/10/2019 MOTION(S) REFERRED: 26 First MOTION for Extension of Time responsive pleadings to Complaint. This motion is now pending before the USMJ. (EDC) (Entered: 12/10/2019)
    02/20/202027 ORDER: As this matter is administratively closed, the 26 Ex Parte First Motion for Extension of Time to file Responsive Pleadings, filed on Behalf of Ricky L. Babin in his Official Capacity as District Attorney for the 23rd Judicial District, State of Louisiana is DENIED WITHOUT PREJUDICE. Responsive pleadings shall be filed within twenty-one (21) days from the date this action is reopened. Thereafter, should Defendant require additional time, he shall request an extension prior to the expiration of the aforementioned deadline. Signed by Magistrate Judge Erin Wilder-Doomes on 2/20/20. (This is a TEXT ENTRY ONLY. There is no hyperlink or PDF document associated with this entry.)(EWD) (Entered: 02/20/2020)
    03/20/202028 MANDATE of USCA as to 9 Notice of Appeal filed by Lucas Joseph Roddy the judgment of the District Court is affirmed. (SWE) (Entered: 03/20/2020)
    04/16/202029 COURT ORDER denying Motion to recall mandate filed by Appellant Mr. Lucas Roddy. (SWE) (Entered: 04/16/2020)
    06/24/202030 ORDER: On December 5, 2019, this case was administratively closed pending a mandate from the United States Court of Appeals for the Fifth Circuit ("Fifth Circuit") in Lucas Roddy v. Ricky Babin, 18-CA-31050. (R. Doc. 24). The Fifth Circuit issued a mandate on March 20, 2020 in that matter affirming this Courts denial of Plaintiff's Motion for Preliminary Injunction. Accordingly, the Clerk of Court is ordered to reopen these proceedings, and Defendant, Ricky Babin, is hereby ordered to file responsive pleadings within twenty-one (21) days of the date of this Order as provided in R. Doc. 27. Signed by Magistrate Judge Erin Wilder-Doomes on 6/24/2020. (This is a TEXT ENTRY ONLY. There is no hyperlink or PDF document associated with this entry.)(BLR) (Entered: 06/24/2020)
    07/15/202031  MOTION to Dismiss for Failure to State a Claim by Ricky Babin. (Attachments: # 1 Memorandum in Support, # 2 Attachment Proposed Order)(Alexis, Ralph) Modified on 7/16/2020 to edit the docket text (SWE). (Entered: 07/15/2020)
    07/16/2020 MOTION(S) REFERRED: 31 MOTION to Dismiss for Failure to State a Claim . This motion is now pending before the USMJ. (SWE) (Entered: 07/16/2020)
    07/28/202032  MEMORANDUM in Repsonse to 31 MOTION to Dismiss for Failure to State a Claim filed by Lucas Joseph Roddy. (Attachments: # 1 Cover Letter)(KMW) (Entered: 07/29/2020)
    08/11/202033  REPLY to 32 Memorandum in Opposition to Motion, 31 MOTION to Dismiss for Failure to State a Claim filed by Ricky Babin. (Alexis, Ralph) (Entered: 08/11/2020)
    08/21/202034  Sur-reply/REPLY Memorandum to 33 Reply to Response to Motion filed by Lucas Joseph Roddy. (KMW) (Entered: 08/21/2020)
    12/28/202035 REPORT AND RECOMMENDATIONS regarding 31 MOTION to Dismiss for Failure to State a Claim filed by Ricky Babin. It is the recommendation of the Magistrate Judge that the 31 Motion to Dismiss be GRANTED and his federal claims be DISMISSED WITH PREJUDICE, and the Court decline to exercise supplemental jurisdiction over Plaintiff's potential state law claims. Objections to R&R due by 1/11/2021. Signed by Magistrate Judge Erin Wilder-Doomes on 12/28/2020. (LLH) (Entered: 12/28/2020)
    01/06/202136 Appeal from the 35 Report and Recommendations of Magistrate Judge Erin Wilder-Doomes filed by Lucas Joseph Roddy. (KMW) (Entered: 01/07/2021)
    01/12/202137  Ex Parte Motion for Leave to File Memorandum in Opposition to Plaintiff's 36 Objection/Appeal to Magistrate Judge's Report and Recommendations filed by Ricky Babin. (Moll, Corey) Modified on 1/13/2021 to edit the docket text (KMW). ( # 1 Proposed Pleading;, # 2 Order) . Modified on 1/20/2021 to edit text, event and substitute documents per Order #39 (LLH). (Entered: 01/12/2021)
    01/14/202138  Ex Parte MOTION to Substitute Document - Rec. Doc. 37 by Ricky Babin. (Attachments: # 1 Proposed Pleading; Proposed Order (as to) Motion for Leave to Substitute Document, # 2 Proposed Pleading; Motion for Leave to File Memorandum in Opposition to Plaintiff's Objection to Magistrate Judge's Report and Recommendation, # 3 Proposed Pleading; Memorandum in Opposition to Plaintiff's Objection to Magistrate Judge's Report and Recommendation, # 4 Proposed Pleading; Proposed Order (as to) Motion for Leave to File Memorandum in Opposition to Plaintiff's Objection to Magistrate Judge's Report and Recommendation)(Moll, Corey) Modified on 1/15/2021 to edit text (LLH). (Entered: 01/14/2021)
    01/15/2021 MOTION(S) REFERRED: 38 MOTION to Substitute Document - Rec. Doc. 37 . This motion is now pending before the USMJ. (LLH) (Entered: 01/15/2021)
    01/20/202139 ORDER granting 38 Ex Parte MOTION for Leave to Substitute Document Filed. The clerk is directed to Replace R. Doc. 37 with 38-2 through 38-4. Signed by Magistrate Judge Erin Wilder-Doomes on 1/20/2021. (This is a TEXT ENTRY ONLY. There is no hyperlink or PDF document associated with this entry.) (BLR) (Entered: 01/20/2021)
    01/26/202140 ORDER granting 37 Ex Parte Motion for Leave to File Memorandum in Opposition to Plaintiff's 36 Objection/Appeal to Magistrate Judge's Report and Recommendations filed by Ricky Babin. IT IS FURTHER ORDERED that the Reply (Doc. 37-1) be entered into the record under a separate docket entry.Signed by Judge Brian A. Jackson on 1/26/2021. (KMW) (Entered: 01/26/2021)
    01/26/202141 Memorandum in Opposition to 36 Objection/Appeal to 35 Report and Recommendations filed by Ricky Babin. (KMW) (Entered: 01/26/2021)
    03/04/202142 RULING AND ORDER Adopting 35 Report and Recommendation of the U.S. Magistrate Judge; granting 31 Motion to Dismiss for Failure to State a Claim. Plaintiff's Complaint is DISMISSED WITH PREJUDICE for the reasons explained in the Magistrate Judge's Report and Recommendation (Doc. 35). The Court declines to exercise supplemental jurisdiction over any state law claims. A separate judgment shall be issued. Signed by Judge Brian A. Jackson on 3/3/2021. (EDC) (Entered: 03/04/2021)
    03/29/202143 NOTICE OF APPEAL of 42 RULING AND ORDER Adopting Report and Recommendation by Lucas Joseph Roddy. (SWE) (Entered: 03/30/2021)
    05/11/202144 JUDGMENT: For the 42 written reasons assigned, Plaintiff's claims are DISMISSED WITH PREJUDICE, each party to bear its own costs. Signed by Judge Brian A. Jackson on 5/11/2021. (SWE) (Entered: 05/11/2021)
    05/11/202145 GENERAL ORDER: All pleadings and other papers filed under seal in civil and criminal actions shall be maintained under seal for thirty days following final disposition of the action. After that time, all sealed pleadings and other papers shall be placed in the case record unless a District Judge or Magistrate Judge, upon motion and for good cause shown, orders that the pleading or other paper be maintained under seal.

    The deadline for filing any motions regarding the unsealing of any document shall be within thirty days of the final disposition of any action and shall contain a concise statement of reasons for maintaining the pleading or other paper under seal.

    ATTENTION: If a motion to retain documents under seal is NOT filed, all documents shall be placed in the public case record, unless specifically identified in the attached General Order.

    Signed by Chief Judge Shelly D. Dick on 7/8/2019. (SWE) (Entered: 05/11/2021)

    06/28/202146 CLERK ORDER dismissing appeal pursuant to 5th Circuit Rule 42 for failure to pay fee or file motion in district court for permission to appeal in forma pauperis (IFP). (SWE) (Entered: 06/28/2021)

    +
    PACER Service Center
    Transaction Receipt
    [DATE REMOVED]
    PACER Login: [LOGIN REMOVED] Client Code:
    Description: Docket Report Search Criteria: 3:17-cv-01352-BAJ-EWD
    Billable Pages: 6 Cost: 0.60
    + \ No newline at end of file diff --git a/tests/examples/pacer/dockets/district/lamd.json b/tests/examples/pacer/dockets/district/lamd.json new file mode 100644 index 000000000..75d463aec --- /dev/null +++ b/tests/examples/pacer/dockets/district/lamd.json @@ -0,0 +1,526 @@ +{ + "assigned_to_str": "Brian A. Jackson", + "case_name": "Roddy v. Babin", + "cause": "42:1983 Prisoner Civil Rights", + "court_id": "lamd", + "date_converted": null, + "date_discharged": null, + "date_filed": "2017-11-06", + "date_terminated": "2021-05-11", + "demand": "", + "docket_entries": [ + { + "date_entered": "2017-11-07", + "date_filed": "2017-11-06", + "description": "COMPLAINT/Brief in Support of Plaintiff's Motion for Preliminary Injunction against Ricky Babin filed by Lucas Joseph Roddy. (Attachments: # 1 cover letter)(EDC) (Entered: 11/07/2017)", + "document_number": "1", + "pacer_doc_id": "08702087408", + "pacer_seq_no": "5" + }, + { + "date_entered": "2017-11-07", + "date_filed": "2017-11-06", + "description": "MOTION to Proceed In Forma Pauperis with Statement of Account by Lucas Joseph Roddy. (EDC) (Entered: 11/07/2017)", + "document_number": "2", + "pacer_doc_id": "08702087412", + "pacer_seq_no": "7" + }, + { + "date_entered": "2017-11-08", + "date_filed": "2017-11-06", + "description": "Complaint/Brief in Support of Plaintiff's MOTION for Preliminary Injunction by Lucas Joseph Roddy. (EDC) Modified on 11/8/2017 to edit text. (EDC). (Entered: 11/08/2017)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2017-11-07", + "date_filed": "2017-11-07", + "description": "MOTION(S) REFERRED: 2 MOTION to Proceed In Forma Pauperis with Statement of Account. This motion is now pending before the USMJ. (EDC) (Entered: 11/07/2017)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2017-11-09", + "date_filed": "2017-11-08", + "description": "ORDER REFERRING MOTION to USMJ: MOTION for Preliminary Injunction filed by Lucas Joseph Roddy. Signed by Chief Judge Brian A. Jackson on 11/08/2017. (ELW) (Entered: 11/09/2017)", + "document_number": "3", + "pacer_doc_id": "08702088965", + "pacer_seq_no": "16" + }, + { + "date_entered": "2017-12-15", + "date_filed": "2017-12-15", + "description": "Case reassigned to Magistrate Judge Erin Wilder-Doomes. Magistrate Judge Richard L. Bourgeois, Jr. no longer assigned to the case. (This is a TEXT ENTRY ONLY. There is no hyperlink or PDF document associated with this entry.) (NLT) (Entered: 12/15/2017)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2018-07-19", + "date_filed": "2018-07-19", + "description": "Letter of Deficiency: The Clerk has filed your new suit. However, it is deficient in the areas as stated herein. The deficiency must be corrected within the given time frame. Amended Pleadings due by 8/9/2018. (EDC) (Entered: 07/19/2018)", + "document_number": "4", + "pacer_doc_id": "08702244836", + "pacer_seq_no": "24" + }, + { + "date_entered": "2018-08-01", + "date_filed": "2018-08-01", + "description": "AMENDED COMPLAINT against Ricky Babin filed by Lucas Joseph Roddy. (Attachments: # 1 Attachment)(EDC) (Entered: 08/01/2018)", + "document_number": "5", + "pacer_doc_id": "08702252181", + "pacer_seq_no": "26" + }, + { + "date_entered": "2018-08-01", + "date_filed": "2018-08-01", + "description": "MOTION to Proceed In Forma Pauperis by Lucas Joseph Roddy. (EDC) (Entered: 08/01/2018)", + "document_number": "6", + "pacer_doc_id": "08702252187", + "pacer_seq_no": "28" + }, + { + "date_entered": "2018-08-01", + "date_filed": "2018-08-01", + "description": "MOTION(S) REFERRED: 6 MOTION to Proceed In Forma Pauperis. This motion is now pending before the USMJ. (EDC) (Entered: 08/01/2018)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2018-08-07", + "date_filed": "2018-08-07", + "description": "ORDER granting 2 6 Motion to Proceed In Forma Pauperis. It is ordered that the plaintiff pay an initial partial filing fee of $11.16 in accordance with 28 USC 1915. A copy of this order shall be sent to the plaintiff and to Centralized Inmate Banking. Filing Fee due by 8/28/2018. Signed by Magistrate Judge Erin Wilder-Doomes on 8/6/2018. (EDC) (Entered: 08/07/2018)", + "document_number": "7", + "pacer_doc_id": "08702255237", + "pacer_seq_no": "33" + }, + { + "date_entered": "2018-08-29", + "date_filed": "2018-08-29", + "description": "Confirmation of receipt of payment from LUCAS JOSEPH RODDY in the amount of $11.16. Transaction posted on 8/27/2018. Receipt number 4699028550 processed by eclement. (IJE) (Entered: 08/29/2018)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2018-09-13", + "date_filed": "2018-09-13", + "description": "RULING AND ORDER denying 1 Motion for Preliminary Injunction. Signed by Judge Brian A. Jackson on 9/11/2018. (EDC) Modified on 9/14/2018 to edit text (LLH). (Entered: 09/13/2018)", + "document_number": "8", + "pacer_doc_id": "08702274144", + "pacer_seq_no": "38" + }, + { + "date_entered": "2018-09-20", + "date_filed": "2018-09-20", + "description": "NOTICE OF APPEAL of 8 Order on Motion for Preliminary Injunction by Lucas Joseph Roddy. (EDC) (Entered: 09/20/2018)", + "document_number": "9", + "pacer_doc_id": "08702278479", + "pacer_seq_no": "40" + }, + { + "date_entered": "2018-10-03", + "date_filed": "2018-10-03", + "description": "Original Appeal Brief regarding 1 Complaint. (Attachments: # 1 Exhibit, # 2 Attachment, # 3 cover letter)(EDC) (Entered: 10/03/2018)", + "document_number": "10", + "pacer_doc_id": "08702285312", + "pacer_seq_no": "43" + }, + { + "date_entered": "2018-10-05", + "date_filed": "2018-10-04", + "description": "ORDER: as to 9 Notice of Appeal; ORDERED that, within twenty-one (21) days of the date of this Order, Plaintiff shall submit to this Court either $ 505.00 (the full amount of the applicable appellate filing fee) or a properly completed Motion to Proceed In Forma Pauperis on Appeal pursuant to Rule 24(a) of the Federal Rules of Appellate Procedure (copy attached), together with a properly completed Statement of Account (copy attached), signed by an authorized officer at Plaintiffs institution, certifying to the average six-month deposits and balance in Plaintiffs inmate account(s). Signed by Magistrate Judge Erin Wilder-Doomes on 10/04/2018. (ELW) (Entered: 10/05/2018)", + "document_number": "11", + "pacer_doc_id": "08702286594", + "pacer_seq_no": "46" + }, + { + "date_entered": "2018-10-15", + "date_filed": "2018-10-15", + "description": "MOTION for Leave to Appeal in forma pauperis with Statement of Account by Lucas Joseph Roddy. (Attachments: # 1 Exhibit)(EDC) (Entered: 10/15/2018)", + "document_number": "12", + "pacer_doc_id": "08702291563", + "pacer_seq_no": "49" + }, + { + "date_entered": "2018-10-15", + "date_filed": "2018-10-15", + "description": "MOTION(S) REFERRED: 12 MOTION for Leave to Appeal in forma pauperis with Statement of Account. This motion is now pending before the USMJ. (EDC) (Entered: 10/15/2018)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2019-01-29", + "date_filed": "2019-01-29", + "description": "Motions No Longer Referred: 12 MOTION for Leave to Appeal in forma pauperis with Statement of Account. This motion is now pending before the USDJ. (EDC) (Entered: 01/29/2019)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2019-01-29", + "date_filed": "2019-01-29", + "description": "ORDER denying 12 Motion for Leave to Appeal in forma pauperis. Signed by Judge Brian A. Jackson on 1/29/2019. (KAH) (Entered: 01/29/2019)", + "document_number": "13", + "pacer_doc_id": "08702343538", + "pacer_seq_no": "57" + }, + { + "date_entered": "2019-02-15", + "date_filed": "2019-02-15", + "description": "USCA Case Number 18-31050 for 9 Notice of Appeal filed by Lucas Joseph Roddy. (KAH) (Entered: 02/15/2019)", + "document_number": "14", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2019-02-25", + "date_filed": "2019-02-25", + "description": "Record on Appeal #18-31050 Electronically Certified regarding 9 Notice of Appeal. US Court of Appeals notified of certification. (KAH) (Entered: 02/25/2019)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2019-07-24", + "date_filed": "2019-07-24", + "description": "ORDER: USM is to serve the defendants wherever found. Within 90 days of the defendants' first appearance, the parties shall complete all discovery. Counsel for defendants shall provide to the plaintiff all medical records, etc. pertinent to the issues in this case, within 20 days of the defendants' first appearance. Discovery shall proceed as stated herein. Within 120 days of the defendant's first appearance, the parties shall file cross motions for summary judgment. Signed by Magistrate Judge Erin Wilder-Doomes on 7/23/2019. (KAH) (Entered: 07/24/2019)", + "document_number": "15", + "pacer_doc_id": "08702438241", + "pacer_seq_no": "66" + }, + { + "date_entered": "2019-07-24", + "date_filed": "2019-07-24", + "description": "Summons Issued as to Ricky Babin. Summons submitted to the USM for service. (KAH) (Entered: 07/24/2019)", + "document_number": "16", + "pacer_doc_id": "08702438244", + "pacer_seq_no": "68" + }, + { + "date_entered": "2019-07-24", + "date_filed": "2019-07-24", + "description": "ORDER: By Friday 7/26/2019, the District Attorney shall file, with the Fifth Circuit, into Court of Appeals Docket No. 18-31050, an electronic certified copy of the state court record, including transcripts of all proceedings held in the state courts as well as a certified electronic copy of all documents, including all briefs, memoranda, orders, dispositions or other documentation filed in connection with any appeal or application for post-conviction relief presented to any and all state district and appellate courts. In the event that the District Attorney is unable to produce any or all of the above records, he shall advise the Fifth Circuit in writing why he is unable to produce these records. By Friday 7/26/2019, the Clerk of Court for the Twenty-Third Judicial District for the Parish of Ascension, State of Louisiana, shall file, in the conventional manner (NOT electronically), a courtesy copy of the entire state court record electronically filed by the state. In the event that the Clerk of Court is unable to produce any or all of the above records, he shall advise the Fifth Circuit in writing why he is unable to produce these records. Signed by Magistrate Judge Erin Wilder- Doomes on 7/23/2019.(KAH) (Entered: 07/24/2019)", + "document_number": "17", + "pacer_doc_id": "08702438257", + "pacer_seq_no": "70" + }, + { + "date_entered": "2019-07-30", + "date_filed": "2019-07-29", + "description": "NOTICE of Certified Mail Receipt Returned on District Attorney's Office on July 26, 2019 re 17 Order. (EDC) (Entered: 07/30/2019)", + "document_number": "18", + "pacer_doc_id": "08702441904", + "pacer_seq_no": "73" + }, + { + "date_entered": "2019-07-30", + "date_filed": "2019-07-29", + "description": "NOTICE of Certified Mail Receipt Returned on District Attorney's Office re 17 Order. (EDC) (Entered: 07/30/2019)", + "document_number": "19", + "pacer_doc_id": "08702441910", + "pacer_seq_no": "77" + }, + { + "date_entered": "2019-07-30", + "date_filed": "2019-07-29", + "description": "NOTICE of Certified Mail Receipt Returned on 23rd JDC Clerk of Court on July 26, 2019 re 17 Order. (EDC) (Entered: 07/30/2019)", + "document_number": "20", + "pacer_doc_id": "08702441913", + "pacer_seq_no": "81" + }, + { + "date_entered": "2019-08-01", + "date_filed": "2019-07-31", + "description": "NOTICE of Certified Mail Receipt Returned on 23rd JDC Clerk of Court on July 26, 2019 re 17 Order. (EDC) (Entered: 08/01/2019)", + "document_number": "21", + "pacer_doc_id": "08702443045", + "pacer_seq_no": "85" + }, + { + "date_entered": "2019-08-26", + "date_filed": "2019-08-26", + "description": "State Court Record (Habeas Case). (Candell, Donald) (Entered: 08/26/2019)", + "document_number": "22", + "pacer_doc_id": "08702455536", + "pacer_seq_no": "89" + }, + { + "date_entered": "2019-11-25", + "date_filed": "2019-11-25", + "description": "SUMMONS Returned Executed. Ricky Babin served on 11/21/2019, answer due 12/12/2019. (US Marshal, ) (Entered: 11/25/2019)", + "document_number": "23", + "pacer_doc_id": "08702506054", + "pacer_seq_no": "91" + }, + { + "date_entered": "2019-12-05", + "date_filed": "2019-12-05", + "description": "ORDER: The Clerk shall administratively terminate this action in his records, without prejudice to the right of the parties to reopen the proceedings. Signed by Magistrate Judge Erin Wilder-Doomes on 12/5/2019. (SWE) (Entered: 12/05/2019)", + "document_number": "24", + "pacer_doc_id": "08702510569", + "pacer_seq_no": "93" + }, + { + "date_entered": "2019-12-06", + "date_filed": "2019-12-06", + "description": "GENERAL ORDER: All pleadings and other papers filed under seal in civil and criminal actions shall be maintained under seal for thirty days following final disposition of the action. After that time, all sealed pleadings and other papers shall be placed in the case record unless a District Judge or Magistrate Judge, upon motion and for good cause shown, orders that the pleading or other paper be maintained under seal. The deadline for filing any motions regarding the unsealing of any document shall be within thirty days of the final disposition of any action and shall contain a concise statement of reasons for maintaining the pleading or other paper under seal. ATTENTION: If a motion to retain documents under seal is NOT filed, all documents shall be placed in the public case record, unless specifically identified in the attached General Order. Signed by Chief Judge Shelly D. Dick on 7/8/2019. (SWE) (Entered: 12/06/2019)", + "document_number": "25", + "pacer_doc_id": "08702511004", + "pacer_seq_no": "95" + }, + { + "date_entered": "2019-12-10", + "date_filed": "2019-12-10", + "description": "First MOTION for Extension of Time responsive pleadings to Complaint by Ricky Babin. (Attachments: # 1 Attachment Proposed Order)(Alexis, Ralph) (Entered: 12/10/2019)", + "document_number": "26", + "pacer_doc_id": "08702512532", + "pacer_seq_no": "97" + }, + { + "date_entered": "2019-12-10", + "date_filed": "2019-12-10", + "description": "MOTION(S) REFERRED: 26 First MOTION for Extension of Time responsive pleadings to Complaint. This motion is now pending before the USMJ. (EDC) (Entered: 12/10/2019)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2020-02-20", + "date_filed": "2020-02-20", + "description": "ORDER: As this matter is administratively closed, the 26 Ex Parte First Motion for Extension of Time to file Responsive Pleadings, filed on Behalf of Ricky L. Babin in his Official Capacity as District Attorney for the 23rd Judicial District, State of Louisiana is DENIED WITHOUT PREJUDICE. Responsive pleadings shall be filed within twenty-one (21) days from the date this action is reopened. Thereafter, should Defendant require additional time, he shall request an extension prior to the expiration of the aforementioned deadline. Signed by Magistrate Judge Erin Wilder-Doomes on 2/20/20. (This is a TEXT ENTRY ONLY. There is no hyperlink or PDF document associated with this entry.)(EWD) (Entered: 02/20/2020)", + "document_number": "27", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2020-03-20", + "date_filed": "2020-03-20", + "description": "MANDATE of USCA as to 9 Notice of Appeal filed by Lucas Joseph Roddy the judgment of the District Court is affirmed. (SWE) (Entered: 03/20/2020)", + "document_number": "28", + "pacer_doc_id": "08702557550", + "pacer_seq_no": "109" + }, + { + "date_entered": "2020-04-16", + "date_filed": "2020-04-16", + "description": "COURT ORDER denying Motion to recall mandate filed by Appellant Mr. Lucas Roddy. (SWE) (Entered: 04/16/2020)", + "document_number": "29", + "pacer_doc_id": "08702568299", + "pacer_seq_no": "112" + }, + { + "date_entered": "2020-06-24", + "date_filed": "2020-06-24", + "description": "ORDER: On December 5, 2019, this case was administratively closed pending a mandate from the United States Court of Appeals for the Fifth Circuit (\"Fifth Circuit\") in Lucas Roddy v. Ricky Babin, 18-CA-31050. (R. Doc. 24). The Fifth Circuit issued a mandate on March 20, 2020 in that matter affirming this Courts denial of Plaintiff's Motion for Preliminary Injunction. Accordingly, the Clerk of Court is ordered to reopen these proceedings, and Defendant, Ricky Babin, is hereby ordered to file responsive pleadings within twenty-one (21) days of the date of this Order as provided in R. Doc. 27. Signed by Magistrate Judge Erin Wilder-Doomes on 6/24/2020. (This is a TEXT ENTRY ONLY. There is no hyperlink or PDF document associated with this entry.)(BLR) (Entered: 06/24/2020)", + "document_number": "30", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2020-07-15", + "date_filed": "2020-07-15", + "description": "MOTION to Dismiss for Failure to State a Claim by Ricky Babin. (Attachments: # 1 Memorandum in Support, # 2 Attachment Proposed Order)(Alexis, Ralph) Modified on 7/16/2020 to edit the docket text (SWE). (Entered: 07/15/2020)", + "document_number": "31", + "pacer_doc_id": "08702610575", + "pacer_seq_no": "119" + }, + { + "date_entered": "2020-07-16", + "date_filed": "2020-07-16", + "description": "MOTION(S) REFERRED: 31 MOTION to Dismiss for Failure to State a Claim . This motion is now pending before the USMJ. (SWE) (Entered: 07/16/2020)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2020-07-29", + "date_filed": "2020-07-28", + "description": "MEMORANDUM in Repsonse to 31 MOTION to Dismiss for Failure to State a Claim filed by Lucas Joseph Roddy. (Attachments: # 1 Cover Letter)(KMW) (Entered: 07/29/2020)", + "document_number": "32", + "pacer_doc_id": "08702616933", + "pacer_seq_no": "124" + }, + { + "date_entered": "2020-08-11", + "date_filed": "2020-08-11", + "description": "REPLY to 32 Memorandum in Opposition to Motion, 31 MOTION to Dismiss for Failure to State a Claim filed by Ricky Babin. (Alexis, Ralph) (Entered: 08/11/2020)", + "document_number": "33", + "pacer_doc_id": "08702622916", + "pacer_seq_no": "127" + }, + { + "date_entered": "2020-08-21", + "date_filed": "2020-08-21", + "description": "Sur-reply/REPLY Memorandum to 33 Reply to Response to Motion filed by Lucas Joseph Roddy. (KMW) (Entered: 08/21/2020)", + "document_number": "34", + "pacer_doc_id": "08702628791", + "pacer_seq_no": "131" + }, + { + "date_entered": "2020-12-28", + "date_filed": "2020-12-28", + "description": "REPORT AND RECOMMENDATIONS regarding 31 MOTION to Dismiss for Failure to State a Claim filed by Ricky Babin. It is the recommendation of the Magistrate Judge that the 31 Motion to Dismiss be GRANTED and his federal claims be DISMISSED WITH PREJUDICE, and the Court decline to exercise supplemental jurisdiction over Plaintiff's potential state law claims. Objections to R&R due by 1/11/2021. Signed by Magistrate Judge Erin Wilder-Doomes on 12/28/2020. (LLH) (Entered: 12/28/2020)", + "document_number": "35", + "pacer_doc_id": "08702691350", + "pacer_seq_no": "136" + }, + { + "date_entered": "2021-01-07", + "date_filed": "2021-01-06", + "description": "Appeal from the 35 Report and Recommendations of Magistrate Judge Erin Wilder-Doomes filed by Lucas Joseph Roddy. (KMW) (Entered: 01/07/2021)", + "document_number": "36", + "pacer_doc_id": "08702695781", + "pacer_seq_no": "139" + }, + { + "date_entered": "2021-01-12", + "date_filed": "2021-01-12", + "description": "Ex Parte Motion for Leave to File Memorandum in Opposition to Plaintiff's 36 Objection/Appeal to Magistrate Judge's Report and Recommendations filed by Ricky Babin. (Moll, Corey) Modified on 1/13/2021 to edit the docket text (KMW). ( # 1 Proposed Pleading;, # 2 Order) . Modified on 1/20/2021 to edit text, event and substitute documents per Order #39 (LLH). (Entered: 01/12/2021)", + "document_number": "37", + "pacer_doc_id": "08702698542", + "pacer_seq_no": "142" + }, + { + "date_entered": "2021-01-14", + "date_filed": "2021-01-14", + "description": "Ex Parte MOTION to Substitute Document - Rec. Doc. 37 by Ricky Babin. (Attachments: # 1 Proposed Pleading; Proposed Order (as to) Motion for Leave to Substitute Document, # 2 Proposed Pleading; Motion for Leave to File Memorandum in Opposition to Plaintiff's Objection to Magistrate Judge's Report and Recommendation, # 3 Proposed Pleading; Memorandum in Opposition to Plaintiff's Objection to Magistrate Judge's Report and Recommendation, # 4 Proposed Pleading; Proposed Order (as to) Motion for Leave to File Memorandum in Opposition to Plaintiff's Objection to Magistrate Judge's Report and Recommendation)(Moll, Corey) Modified on 1/15/2021 to edit text (LLH). (Entered: 01/14/2021)", + "document_number": "38", + "pacer_doc_id": "08702699518", + "pacer_seq_no": "147" + }, + { + "date_entered": "2021-01-15", + "date_filed": "2021-01-15", + "description": "MOTION(S) REFERRED: 38 MOTION to Substitute Document - Rec. Doc. 37 . This motion is now pending before the USMJ. (LLH) (Entered: 01/15/2021)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2021-01-20", + "date_filed": "2021-01-20", + "description": "ORDER granting 38 Ex Parte MOTION for Leave to Substitute Document Filed. The clerk is directed to Replace R. Doc. 37 with 38-2 through 38-4. Signed by Magistrate Judge Erin Wilder-Doomes on 1/20/2021. (This is a TEXT ENTRY ONLY. There is no hyperlink or PDF document associated with this entry.) (BLR) (Entered: 01/20/2021)", + "document_number": "39", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2021-01-26", + "date_filed": "2021-01-26", + "description": "ORDER granting 37 Ex Parte Motion for Leave to File Memorandum in Opposition to Plaintiff's 36 Objection/Appeal to Magistrate Judge's Report and Recommendations filed by Ricky Babin. IT IS FURTHER ORDERED that the Reply (Doc. 37-1) be entered into the record under a separate docket entry.Signed by Judge Brian A. Jackson on 1/26/2021. (KMW) (Entered: 01/26/2021)", + "document_number": "40", + "pacer_doc_id": "08702703760", + "pacer_seq_no": "155" + }, + { + "date_entered": "2021-01-26", + "date_filed": "2021-01-26", + "description": "Memorandum in Opposition to 36 Objection/Appeal to 35 Report and Recommendations filed by Ricky Babin. (KMW) (Entered: 01/26/2021)", + "document_number": "41", + "pacer_doc_id": "08702703765", + "pacer_seq_no": "158" + }, + { + "date_entered": "2021-03-04", + "date_filed": "2021-03-04", + "description": "RULING AND ORDER Adopting 35 Report and Recommendation of the U.S. Magistrate Judge; granting 31 Motion to Dismiss for Failure to State a Claim. Plaintiff's Complaint is DISMISSED WITH PREJUDICE for the reasons explained in the Magistrate Judge's Report and Recommendation (Doc. 35). The Court declines to exercise supplemental jurisdiction over any state law claims. A separate judgment shall be issued. Signed by Judge Brian A. Jackson on 3/3/2021. (EDC) (Entered: 03/04/2021)", + "document_number": "42", + "pacer_doc_id": "08702719644", + "pacer_seq_no": "162" + }, + { + "date_entered": "2021-03-30", + "date_filed": "2021-03-29", + "description": "NOTICE OF APPEAL of 42 RULING AND ORDER Adopting Report and Recommendation by Lucas Joseph Roddy. (SWE) (Entered: 03/30/2021)", + "document_number": "43", + "pacer_doc_id": "08702732803", + "pacer_seq_no": "166" + }, + { + "date_entered": "2021-05-11", + "date_filed": "2021-05-11", + "description": "JUDGMENT: For the 42 written reasons assigned, Plaintiff's claims are DISMISSED WITH PREJUDICE, each party to bear its own costs. Signed by Judge Brian A. Jackson on 5/11/2021. (SWE) (Entered: 05/11/2021)", + "document_number": "44", + "pacer_doc_id": "08702751392", + "pacer_seq_no": "171" + }, + { + "date_entered": "2021-05-11", + "date_filed": "2021-05-11", + "description": "GENERAL ORDER: All pleadings and other papers filed under seal in civil and criminal actions shall be maintained under seal for thirty days following final disposition of the action. After that time, all sealed pleadings and other papers shall be placed in the case record unless a District Judge or Magistrate Judge, upon motion and for good cause shown, orders that the pleading or other paper be maintained under seal. The deadline for filing any motions regarding the unsealing of any document shall be within thirty days of the final disposition of any action and shall contain a concise statement of reasons for maintaining the pleading or other paper under seal. ATTENTION: If a motion to retain documents under seal is NOT filed, all documents shall be placed in the public case record, unless specifically identified in the attached General Order. Signed by Chief Judge Shelly D. Dick on 7/8/2019. (SWE) (Entered: 05/11/2021)", + "document_number": "45", + "pacer_doc_id": "08702751395", + "pacer_seq_no": "173" + }, + { + "date_entered": "2021-06-28", + "date_filed": "2021-06-28", + "description": "CLERK ORDER dismissing appeal pursuant to 5th Circuit Rule 42 for failure to pay fee or file motion in district court for permission to appeal in forma pauperis (IFP). (SWE) (Entered: 06/28/2021)", + "document_number": "46", + "pacer_doc_id": "08702771096", + "pacer_seq_no": "175" + } + ], + "docket_number": "3:17-cv-01352", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BAJ", + "federal_dn_judge_initials_referred": "EWD", + "federal_dn_office_code": "3", + "jurisdiction": "Federal Question", + "jury_demand": "None", + "mdl_status": "", + "nature_of_suit": "550 Prisoner: Civil Rights", + "ordered_by": "date_filed", + "parties": [ + { + "attorneys": [ + { + "contact": "458846\nLouisiana State Penitentiary\nAngola, LA 70712\nPRO SE\n", + "name": "Lucas Joseph Roddy", + "roles": [] + } + ], + "date_terminated": null, + "extra_info": "", + "name": "Lucas Joseph Roddy", + "type": "Plaintiff" + }, + { + "attorneys": [ + { + "contact": "Porteous, Hainkel and Johnson, LLP\n704 Carondelet St.\nNew Orleans, LA 70130-3706\n504-581-3838\nFax: 504-581-4069\nEmail: ralexis@phjlaw.com\n", + "name": "Ralph R. Alexis , III", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "924 Joliet Street\nNew Orleans, LA 70118\n504-289-6964\nEmail: cmoll@phjlaw.com\n", + "name": "Corey Daniel Moll", + "roles": [ + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "Porteous, Hainkel & Johnson - NO\n704 Carondelet St.\nNew Orleans, LA 70130-3706\n504-581-3838\nFax: 504-581-4069\nEmail: gadams@phjlaw.com\n", + "name": "Glenn Brozman Adams", + "roles": [ + "ATTORNEY TO BE NOTICED" + ] + } + ], + "date_terminated": null, + "extra_info": "District Attorney, 23rd Judicial District of Louisiana", + "name": "Ricky Babin", + "type": "Defendant" + } + ], + "referred_to_str": "Erin Wilder-Doomes" +} \ No newline at end of file diff --git a/tests/examples/pacer/dockets/district/mad_193254.json b/tests/examples/pacer/dockets/district/mad_193254.json index 6aec81908..621dc9b12 100644 --- a/tests/examples/pacer/dockets/district/mad_193254.json +++ b/tests/examples/pacer/dockets/district/mad_193254.json @@ -251,6 +251,11 @@ } ], "docket_number": "3:17-cv-12090", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MGM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "Federal Question", "jury_demand": "Plaintiff", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/moed.json b/tests/examples/pacer/dockets/district/moed.json index 24e4750d8..f6e2100df 100644 --- a/tests/examples/pacer/dockets/district/moed.json +++ b/tests/examples/pacer/dockets/district/moed.json @@ -67,6 +67,11 @@ } ], "docket_number": "4:17-cr-00367", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "SNLJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/mowd.json b/tests/examples/pacer/dockets/district/mowd.json index 1fe1df358..5c4a0ad71 100644 --- a/tests/examples/pacer/dockets/district/mowd.json +++ b/tests/examples/pacer/dockets/district/mowd.json @@ -291,6 +291,11 @@ } ], "docket_number": "2:08-cr-04005", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "NKL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/ncwd_1.json b/tests/examples/pacer/dockets/district/ncwd_1.json index f8197a48a..f668bcbe2 100644 --- a/tests/examples/pacer/dockets/district/ncwd_1.json +++ b/tests/examples/pacer/dockets/district/ncwd_1.json @@ -1283,6 +1283,11 @@ } ], "docket_number": "1:03-cr-00076", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "MR", + "federal_dn_judge_initials_referred": "DLH", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/ned.json b/tests/examples/pacer/dockets/district/ned.json index c1cd47030..013fbb03f 100644 --- a/tests/examples/pacer/dockets/district/ned.json +++ b/tests/examples/pacer/dockets/district/ned.json @@ -1099,6 +1099,11 @@ } ], "docket_number": "4:13-cr-03121", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "RGK", + "federal_dn_judge_initials_referred": "CRZ", + "federal_dn_office_code": "4", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/njd_365922.json b/tests/examples/pacer/dockets/district/njd_365922.json index 4b3f2c83c..1e021507f 100644 --- a/tests/examples/pacer/dockets/district/njd_365922.json +++ b/tests/examples/pacer/dockets/district/njd_365922.json @@ -35,6 +35,11 @@ } ], "docket_number": "2:18-cv-01510", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ES", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "U.S. Government Defendant", "jury_demand": "None", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/njd_509180.html b/tests/examples/pacer/dockets/district/njd_509180.html new file mode 100644 index 000000000..b0092a502 --- /dev/null +++ b/tests/examples/pacer/dockets/district/njd_509180.html @@ -0,0 +1,1593 @@ + + + + + CM/ECF LIVE - U.S. District Court for the District of New Jersey + + + + + + + + + +
    +
    + +
    +
    +
    +
    + +
    + + + + + +
    + ANDA, + SCHEDO +
    +

    U.S. District Court
    +District of New Jersey [LIVE] (Newark)
    +CIVIL DOCKET FOR CASE #: 2:23-cv-01194-MEF-JRA

    + + + + + +
    +
    CATALYST PHARMACEUTICALS, INC. et al v. ANNORA PHARMA PRIVATE LIMITED et al +
    Assigned to: Judge Michael E. Farbiarz +
    Referred to: Magistrate Judge Jose R. Almonte +
    Cause: 35:271 Patent Infringement
    +
    Date Filed: 03/01/2023 +
    Jury Demand: None +
    Nature of Suit: 835 Patent - Abbreviated New Drug Application(ANDA) +
    Jurisdiction: Federal Question
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Plaintiff
    + CATALYST PHARMACEUTICALS, INC. + represented by + DENNIES VARUGHESE +
    STERNE KESSLER GOLDSTEIN & FOX +
    1101 K STREET, N.W. +
    10TH FLOOR +
    WASHINGTON, DC 20005 +
    202-772-8805 +
    Email: dvarughese@sternekessler.com +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + CHRISTINE A. GADDIS +
    GIBBONS P.C. +
    141 WEST FRONT STREET +
    SUITE 240 +
    RED BANK, NJ 07701 +
    732-704-5801 +
    Email: cgaddis@gibbonslaw.com +
    + ATTORNEY TO BE NOTICED +
    +
    + CHARLES H. CHEVALIER +
    GIBBONS PC +
    ONE GATEWAY CENTER +
    NEWARK, NJ 07102 +
    973-596-4500 +
    Email: cchevalier@gibbonslaw.com +
    + ATTORNEY TO BE NOTICED +
    Plaintiff
    + SERB SA + represented by + DENNIES VARUGHESE +
    (See above for address) +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + CHRISTINE A. GADDIS +
    (See above for address) +
    + ATTORNEY TO BE NOTICED +
    +
    + CHARLES H. CHEVALIER +
    (See above for address) +
    + ATTORNEY TO BE NOTICED +
    +
    V. +
    +
    Defendant
    + ANNORA PHARMA PRIVATE LIMITED + represented by + ERIC I. ABRAHAM +
    HILL WALLACK, LLP +
    21 ROSZEL ROAD +
    PRINCETON, NJ 08543 +
    (609) 734-6358 +
    Email: eabraham@hillwallack.com +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + STEPHANIE-ROSE ORLANDO +
    HILL WALLACK LLP +
    2 BRIDGE AVE. +
    RED BANK, NJ 07701 +
    609-734-3905 +
    Email: sorlando@hillwallack.com +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + WILLIAM MURTHA +
    HILL WALLACK +
    NJ +
    21 ROSZEL ROAD +
    PRINCETON, NJ 08543 +
    609-924-0808 +
    Fax: 609-452-1888 +
    Email: wmurtha@hillwallack.com +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + DMITRY V. SHELHOFF +
    PERGAMENT & CEPEDA LLP +
    25A HANOVER ROAD +
    SUITE 104 +
    FLORHAM PARK, NJ 07932 +
    973-998-7722 +
    Email: dshelhoff@pergamentcepeda.com +
    + TERMINATED: 04/27/2023 +
    Defendant
    + GRACE CONSULTING SERVICES, INC. + represented by + ERIC I. ABRAHAM +
    (See above for address) +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + STEPHANIE-ROSE ORLANDO +
    (See above for address) +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + WILLIAM MURTHA +
    (See above for address) +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + DMITRY V. SHELHOFF +
    (See above for address) +
    + TERMINATED: 04/27/2023 +
    Defendant
    + HETERO LABS LIMITED + represented by + ERIC I. ABRAHAM +
    (See above for address) +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + STEPHANIE-ROSE ORLANDO +
    (See above for address) +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + WILLIAM MURTHA +
    (See above for address) +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + DMITRY V. SHELHOFF +
    (See above for address) +
    + TERMINATED: 04/27/2023 +
    Defendant
    + HETERO USA, INC. + represented by + ERIC I. ABRAHAM +
    (See above for address) +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + STEPHANIE-ROSE ORLANDO +
    (See above for address) +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + WILLIAM MURTHA +
    (See above for address) +
    + LEAD ATTORNEY +
    + ATTORNEY TO BE NOTICED +
    +
    + DMITRY V. SHELHOFF +
    (See above for address) +
    + TERMINATED: 04/27/2023 +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date Filed#Docket Text
    03/01/20231  + COMPLAINT against ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. ( Filing and Admin fee $ 402 receipt number ANJDC-14125450) , Related Case Selected, filed by CATALYST + PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Exhibit 1, # 2 Exhibit 2, # 3 Exhibit 3, # 4 Exhibit 4, # 5 Exhibit 5, # 6 Exhibit 6, # 7 Civil Cover Sheet, # 8 Certification Pursuant to Local Civil Rule 11.2)(CHEVALIER, CHARLES) (Entered: 03/01/2023)
    03/01/20232  + Corporate Disclosure Statement by CATALYST PHARMACEUTICALS, INC. identifying NONE as Corporate Parent.. (CHEVALIER, CHARLES) (Entered: 03/01/2023)
    03/01/20233  + Corporate Disclosure Statement by SERB SA identifying NONE as Corporate Parent.. (CHEVALIER, CHARLES) (Entered: 03/01/2023)
    03/02/20234  + NOTICE of Appearance by DMITRY V. SHELHOFF on behalf of All Defendants (SHELHOFF, DMITRY) (Entered: 03/02/2023)
    03/07/2023  + Judge Madeline Cox Arleo and Magistrate Judge Jose R. Almonte added. (ps) (Entered: 03/07/2023)
    03/08/20235  + SUMMONS ISSUED as to ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. Attached is the official court Summons, please fill out Defendant and Plaintiffs attorney information and serve. + (dam) (Entered: 03/08/2023)
    03/08/20236  + AO120 Patent Form filed. (Attachments: # 1 Complaint, # 2 Exhibits) (dam) (Entered: 03/08/2023)
    03/13/20237  + Annora Pharma Private Limited, Grace Consulting Services, Inc., Hetero Labs Limited and Hetero USA, Inc.'s ANSWER to Complaint by All Defendants.(SHELHOFF, DMITRY) (Entered: 03/13/2023)
    03/13/20238  + Corporate Disclosure Statement by ANNORA PHARMA PRIVATE LIMITED identifying Hetero Labs Ltd. as Corporate Parent.. (SHELHOFF, DMITRY) (Entered: 03/13/2023)
    03/14/20239  + LETTER ORDER Pursuant to Local Civil Rule 16.1. On 5/8/2023 at 10:30 AM there shall be an Initial Scheduling Conference before Magistrate Judge Jose R. Almonte, etc. Signed by Magistrate Judge Jose R. Almonte on 3/14/2023. (smf) (Entered: + 03/14/2023)
    03/20/202310  + SUMMONS Returned Executed by CATALYST PHARMACEUTICALS, INC., SERB SA. ANNORA PHARMA PRIVATE LIMITED served on 3/13/2023, answer due 4/3/2023. (CHEVALIER, CHARLES) (Entered: 03/20/2023)
    03/20/202311  + SUMMONS Returned Executed by CATALYST PHARMACEUTICALS, INC., SERB SA. GRACE CONSULTING SERVICES, INC. served on 3/13/2023, answer due 4/3/2023. (CHEVALIER, CHARLES) (Entered: 03/20/2023)
    03/20/202312  + SUMMONS Returned Executed by CATALYST PHARMACEUTICALS, INC., SERB SA. HETERO LABS LIMITED served on 3/13/2023, answer due 4/3/2023. (CHEVALIER, CHARLES) (Entered: 03/20/2023)
    03/20/202313  + SUMMONS Returned Executed by CATALYST PHARMACEUTICALS, INC., SERB SA. HETERO USA, INC. served on 3/13/2023, answer due 4/3/2023. (CHEVALIER, CHARLES) (Entered: 03/20/2023)
    03/23/202314  + Consent MOTION for Leave to Appear Pro Hac Vice by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Declaration of Charles H. Chevalier, # 2 Declaration of Adam C. LaRock, # 3 Declaration of Josephine Kim, # 4 Declaration of Lauren A. Watt, # 5 Declaration of Christopher M. Gallo, Ph.D., # + 6 Declaration of Joseph H. Kim, # 7 Declaration of Alexander Alfano, # 8 Declaration of Davin B. Guinn, # 9 Declaration of Ryan E. Conkin, # 10 Text of Proposed Order)(CHEVALIER, CHARLES) + (Entered: 03/23/2023)
    03/23/2023  + Set Deadlines as to 14 Consent MOTION for Leave to Appear Pro Hac Vice. Motion set for + 4/17/2023 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s + Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 03/23/2023)
    03/23/202315  + ORDER granting 14 Motion for Leave to Appear Pro Hac Vice as to Attorneys ADAM C. LAROCK, + JOSEPHINE KIM, LAUREN A. WATT, CHRISTOPHER M. GALLO, JOSEPH H. KIM, ALEXANDER ALFANO, DAVIN B. GUINN, and RYAN E. CONKIN. Signed by Magistrate Judge Jose R. Almonte on 3/23/2023. (jd, ) (Entered: 03/23/2023)
    03/23/202316  + Notice of Request by Pro Hac Vice Adam C. LaRock to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193039.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)
    03/23/202317  + Notice of Request by Pro Hac Vice Josephine Kim to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193051.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)
    03/23/202318  + Notice of Request by Pro Hac Vice Lauren A. Watt to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193058.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)
    03/23/202319  + Notice of Request by Pro Hac Vice Christopher M. Gallo, Ph.D. to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193070.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)
    03/23/202320  + Notice of Request by Pro Hac Vice Joseph H. Kim to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193084.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)
    03/23/202321  + Notice of Request by Pro Hac Vice Alexander Alfano to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193092.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)
    03/23/202322  + NOTICE of Appearance by CHRISTINE A. GADDIS on behalf of CATALYST PHARMACEUTICALS, INC., SERB SA (GADDIS, CHRISTINE) (Entered: 03/23/2023)
    03/23/202323  + Notice of Request by Pro Hac Vice Davin B. Guinn to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193096.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)
    03/23/202324  + Notice of Request by Pro Hac Vice Ryan E. Conkin to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193105.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)
    03/27/202325  + NOTICE of Appearance by DENNIES VARUGHESE on behalf of All Plaintiffs (VARUGHESE, DENNIES) (Entered: 03/27/2023)
    03/27/2023  + Pro Hac Vice counsel, ADAM C. LAROCK, JOSEPHINE KIM, LAUREN A. WATT, CHRISTOPHER M. GALLO, JOSEPH H. KIM, ALEXANDER ALFANO, DAVIN B. GUINN and RYAN E. CONKIN, has been added to receive Notices of Electronic Filing. Pursuant to L.Civ.R. + 101.1, only local counsel are entitled to sign and file papers, enter appearances and receive payments on judgments, decrees or orders. (jd, ) (Entered: 03/27/2023)
    04/12/202326  + NOTICE of Appearance by ERIC I. ABRAHAM on behalf of ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. (ABRAHAM, ERIC) (Entered: 04/12/2023)
    04/12/202327  + NOTICE of Appearance by WILLIAM MURTHA on behalf of ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. (MURTHA, WILLIAM) (Entered: 04/12/2023)
    04/13/202328  + MOTION for Leave to Appear Pro Hac Vice Keri L. Schaubert, Esq., W. Blake Coblentz, Esq. and Aaron S. Lukas, Esq. by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (Attachments: + # 1 Certification Eric I. Abraham, Esq., # 2 Certification Keri L. Schaubert, Esq., # 3 Certification Aaron S. Lukas, Esq., # 4 Certification W. Blake Coblentz, Esq., # + 5 Text of Proposed Order)(ABRAHAM, ERIC) (Entered: 04/13/2023)
    04/14/202329  + ORDER granting 28 Motion for W. BLAKE COBLENTZ, ESQ., AARON S. LUKAS, ESQ., and KERI + L. SCHAUBERT, ESQ. to Appear Pro Hac Vice. Signed by Magistrate Judge Jose R. Almonte on 4/14/2023. (mxw) (Entered: 04/14/2023)
    04/18/202330  + Notice of Request by Pro Hac Vice W. Blake Coblentz, Esq. to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14253904.) (ABRAHAM, ERIC) (Entered: 04/18/2023)
    04/18/202331  + Notice of Request by Pro Hac Vice Aaron Lukas, Esq. to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14253911.) (ABRAHAM, ERIC) (Entered: 04/18/2023)
    04/18/202332  + Notice of Request by Pro Hac Vice Keri Schaubert, Esq. to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14253921.) (ABRAHAM, ERIC) (Entered: 04/18/2023)
    04/19/2023  + Pro Hac Vice counsel, W. BLAKE COBLENTZ, AARON LUKAS and KERI L. SCHAUBERT, has been added to receive Notices of Electronic Filing. Pursuant to L.Civ.R. 101.1, only local counsel are entitled to sign and file papers, enter appearances + and receive payments on judgments, decrees or orders. (jd, ) (Entered: 04/19/2023)
    04/27/202333  + Notice to be terminated and withdraw from Notices of Electronic filing as to case. Attorney DMITRY V. SHELHOFF terminated. (SHELHOFF, DMITRY) (Entered: 04/27/2023)
    04/27/202334  + Consent MOTION for Leave to Appear Pro Hac Vice by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Declaration of Charles H. Chevalier, # 2 Declaration of Paul A. Ainsworth, # 3 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 04/27/2023)
    04/28/2023  + Set Deadlines as to 34 Consent MOTION for Leave to Appear Pro Hac Vice. Motion set + for 6/5/2023 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the + Clerk`s Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 04/28/2023)
    04/28/202335  + ORDER granting 34 Motion for Leave to Appear Pro Hac Vice as to PAUL A. AINSWORTH. + Signed by Magistrate Judge Jose R. Almonte on 4/28/2023. (jd, ) (Entered: 04/28/2023)
    05/01/202336  + Notice of Request by Pro Hac Vice Paul A. Ainsworth to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14283013.) (CHEVALIER, CHARLES) (Entered: 05/01/2023)
    05/02/2023  + Pro Hac Vice counsel, PAUL AINSWORTH, has been added to receive Notices of Electronic Filing. Pursuant to L.Civ.R. 101.1, only local counsel are entitled to sign and file papers, enter appearances and receive payments on judgments, + decrees or orders. (jd, ) (Entered: 05/02/2023)
    05/03/202337  + Joint Discovery Plan by All Plaintiffs. (Attachments: # 1 Text of Proposed Order)(CHEVALIER, + CHARLES) (Entered: 05/03/2023)
    05/08/202338  + PRETRIAL SCHEDULING ORDER. Signed by Magistrate Judge Jose R. Almonte on 5/8/2023. (jd, ) (Entered: 05/08/2023)
    05/08/2023  + Minute Entry for proceedings held before Magistrate Judge Jose R. Almonte: Initial Pretrial Conference held on 5/8/2023 2023 in related matters 23-1194 (Catalyst Pharms. Inc., et al. v. Annora Pharma Private Ltd., et al.), 23-1197 + (Catalyst Pharms. Inc., et al. v. Lupin, et al.), and 23-1190 (Catalyst Pharms. Inc., et al. v. Teva Pharms., Inc., et al.). The Court will enter a Pretrial Scheduling Order setting forth discovery deadlines in the 23-1194 and 23-1197 + matters, which are consistent with the 23-1190 matter. (smf) (Entered: 05/08/2023)
    05/08/202339  + TEXT ORDER: The Court has held an initial scheduling conference in all three related matters: 23-1194 (Catalyst Pharms. Inc., et al. v. Annora Pharma Private Ltd., et al.), 23-1197 (Catalyst Pharms. Inc., et al. v. Lupin, et al.), + and 23-1190 (Catalyst Pharms. Inc., et al. v. Teva Pharms., Inc., et al.). In all three matters, Plaintiffs requested that the Court impose the deadline for Defendants to produce Federal Drug Administration correspondence pursuant + to L. Pat. R. 3.6(j)(2). Defendants Teva Pharms., Inc., et al. and Annora Pharma Private Ltd., et al. requested an extension to the Rule in their Joint Discovery Plans (to allow 14 days), and Defendants Lupin Ltd., et al. orally asserted + the same request during the Rule 16 conference. The Court has considered the parties' arguments and has concluded that there is not a sufficient reason to deviate from the 7-day rule required under L. Pat. R. 3.6(j)(2). The Court + will enter a Pretrial Scheduling Order setting forth discovery deadlines. A status conference is scheduled for July 31, 2023, at 2:30 p.m. Please dial (888) 684-8852 and enter access code 1364268. No later than July 24, 2023, the parties + shall file a joint letter not to exceed five (5) pages summarizing the status of the case. To the extent the parties wish to raise a discovery dispute, they shall do so consistent with the Court's Case Management Order. + So Ordered by Magistrate Judge Jose R. Almonte on 5/8/2023. (smf) (Entered: 05/08/2023)
    05/11/202340  + Transcript of Rule 16 Hearing held on May 8, 2023, before Magistrate Judge Jose R. Almonte. Transcriber: King Transcription Services (973-237-6080). + NOTICE REGARDING (1) REDACTION OF PERSONAL IDENTIFIERS IN TRANSCRIPTS AND (2) MOTION TO REDACT AND SEAL: The parties have seven (7) calendar days to file with the Court a Notice of Intent to Request Redaction of this Transcript to comply with Fed.R.Civ.P.5.2(a) (personal identifiers). Parties seeking to redact and seal this Transcript, + or portions thereof, pursuant to L.Civ.R. 5.3(g) must e-file a Motion to Redact and Seal utilizing the event `Redact and Seal Transcript/Digital Recording`. Redaction Request to Transcription Agency due, but not filed, by + 6/1/2023. Redacted Transcript Deadline set for 6/12/2023. Release of Transcript Restriction set for 8/9/2023. (adc) (Entered: 05/12/2023)
    05/22/202341  + Letter from Charles H. Chevalier to the Honorable Jose R. Almonte, U.S.M.J.. (Attachments: # 1 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 05/22/2023)
    05/23/202342  + Discovery Confidentiality Order. Signed by Magistrate Judge Jose R. Almonte on 5/23/2023. (jd, ) (Entered: 05/23/2023)
    05/24/202343  + TEXT ORDER REASSIGNING CASE. Case reassigned to Judge Michael E. Farbiarz for all further proceedings. Judge Madeline Cox Arleo no longer assigned to case. So Ordered by Chief Judge Renee Marie Bumb on 5/24/23. (ak, ) (Entered: 05/24/2023)
    07/24/202344  + Letter from Charles H. Chevalier to the Honorable Jose R. Almonte, U.S.M.J.. (CHEVALIER, CHARLES) (Entered: 07/24/2023)
    07/25/202345  + Letter from Charles H. Chevalier to the Honorable Jose R. Almonte, U.S.M.J.. (CHEVALIER, CHARLES) (Entered: 07/25/2023)
    07/25/202346  + TEXT ORDER: In light of the status of this matter (ECF No. 44), the status conference scheduled for July 31, 2023 is adjourned to October 30, 2023, at 3:00 p.m. Please dial (888) 684-8852 and enter access code 1364268. No later than + October 23, 2023, the parties shall file a joint letter not to exceed five (5) pages summarizing the status of the case. To the extent the parties wish to raise a discovery dispute, they shall do so consistent with the Courts Case Management Order. So Ordered by Magistrate Judge Jose R. Almonte on 7/25/2023. (akw) Modified on 7/25/2023 (akw). (Entered: 07/25/2023)
    08/04/202347  + NOTICE of Change of Address by CHARLES H. CHEVALIER (CHEVALIER, CHARLES) (Entered: 08/04/2023)
    08/07/2023  + CLERK'S QUALITY CONTROL MESSAGE - The 47 Notice of Address + Change submitted by CHARLES H. CHEVALIER on behalf of multiple attorneys of record on 8/4/2023 appears to have address information that does not match the court's records for this case. Please be advised that each attorney must + update their information by logging into their individual accounts. Please refer to the court's website at www.njd.uscourts.gov for information and instructions on maintaining your account. (jd, ) (Entered: 08/07/2023)
    08/18/202348  + NOTICE of Appearance by STEPHANIE-ROSE ORLANDO on behalf of ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. (ORLANDO, STEPHANIE-ROSE) (Entered: 08/18/2023)
    09/28/202349  + Letter from Douglas Weider, Esq. re: Consent Order. (WEIDER, DOUGLAS) (Entered: 09/28/2023)
    09/29/202350  + LETTER ORDER granting 49 Defendants request for an extension of time to exchange evidence, + on or before 10/2/2023. Signed by Magistrate Judge Jose R. Almonte on 9/29/2023. (jd, ) (Entered: 09/29/2023)
    10/06/202351  + Letter from Douglas Weider re: Indefiniteness. (Attachments: # 1 Exhibit 1, # 2 Exhibit 2, # 3 Exhibit 3, # 4 Exhibit 4)(WEIDER, DOUGLAS) (Entered: 10/06/2023)
    10/09/202352  + STIPULATION Joint Stipulation Regarding Discovery of Electronically Stored Information by CATALYST PHARMACEUTICALS, INC., SERB SA. (CHEVALIER, CHARLES) (Entered: 10/09/2023)
    10/10/202353  + STIPULATION AND ORDER regarding Discovery of Electronically stored information. Signed by Magistrate Judge Jose R. Almonte on 10/10/2023. (jd, ) (Entered: 10/10/2023)
    10/23/202354  + Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 10/23/2023)
    10/24/202355  + LETTER ORDER granting 54 Joint letter requesting an extension of the deadline to file + status letters, until 10/24/2023. Signed by Magistrate Judge Jose R. Almonte on 10/24/2023. (jd, ) (Entered: 10/24/2023)
    10/24/202356  + Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 10/24/2023)
    10/30/202357  + STATEMENT JOINT CLAIM CONSTRUCTION AND PREHEARING STATEMENT by All Plaintiffs. (CHEVALIER, CHARLES) (Entered: 10/30/2023)
    10/30/2023  + Minute Entry for proceedings held before Magistrate Judge Jose R. Almonte. A status conference was held on October 30, 2023. At the conference, the Court encouraged the parties to engage in settlement discussions prior to the next + status conference. (akw) (Entered: 11/01/2023)
    10/30/202358  + TEXT ORDER: A status conference is scheduled for February 13, 2024, at 2:00 p.m. For the conference, please dial 973-437-5535 and enter Phone Conference ID: 455 187 757#. No later than February 6, 2024, the parties shall file a joint + letter not to exceed five (5) pages summarizing the status of the case. To the extent the parties wish to raise a discovery dispute, they shall do so consistent with the Court's Case Management Order. + So Ordered by Magistrate Judge Jose R. Almonte on 10/30/2023. (akw) (Entered: 11/01/2023)
    10/30/2023  + Amended Minute Entry for proceedings held before Magistrate Judge Jose R. Almonte. A status conference was held on October 30, 2023. At the conference, the Court encouraged the parties to engage in settlement discussions prior to the + next status conference. (akw) (Entered: 11/16/2023)
    11/16/2023  + CLERK'S QUALITY CONTROL MESSAGE - Please note the MINUTE ENTRY filed by the Clerk's office on 10/30/2023 was docketed in error. Please disregard and refer to the amended minute entry.(akw) (Entered: + 11/16/2023)
    12/07/202359  + Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 12/07/2023)
    12/08/202360  + TEXT ORDER: Plaintiffs' request for an emergency status conference (ECF No. 59 ) is DENIED. The parties shall continue to exchange discovery in accordance with the Court's Pretrial Scheduling Order (ECF No. 38 ). However, the Court reminds the parties of their obligation to conduct discover in good faith. To the extent that any party engages in gamesmanship or acts in bad faith, this Court will impose necessary sanctions. Prior to the next + status conference, the parties shall include in their JOINT letter, the efforts that they have made to meet and confer ONLY via video conference or in person to resolve these issues. So Ordered by Magistrate Judge Jose R. Almonte on + 12/8/2023. (akw, ) (Entered: 12/12/2023)
    12/22/202361  + MARKMAN OPENING BRIEF (Attachments: # 1 Declaration of Lauren Watt, Esq., # + 2 Exhibit 1, # 3 Exhibit 2, # 4 Exhibit 3, # 5 Exhibit 4, # 6 Exhibit 5, # 7 Exhibit 6, # 8 Exhibit 7, # 9 Exhibit 8, # 10 Exhibit 9, # 11 Exhibit 10, # 12 Exhibit 11, # 13 Exhibit 12, # 14 Exhibit 13, # 15 Exhibit 14, # 16 Exhibit 15, # 17 Exhibit 16, # 18 Exhibit 17)(CHEVALIER, CHARLES) (Entered: 12/22/2023)
    12/22/202362  + BRIEF Opening Claim Construction Brief (WEIDER, DOUGLAS) (Entered: 12/22/2023)
    12/22/202363  + DECLARATION of Alison M. King re 62 Brief Opening Claim Construction Brief by + HETERO LABS LIMITED. (Attachments: # 1 Exhibit 1 U.S. Patent No. 10,626,088, # 2 Exhibit 2 U.S. Patent No. 11,060,128, # 3 Exhibit 3 U.S. Patent No. 11,268,128, # 4 Exhibit 4 U.S. Patent No. 11,274,331, # + 5 Exhibit 5 U.S. Patent No. 11,274,332, # 6 Exhibit 6 Morris, # 7 Exhibit 7 Munowitz, # 8 Exhibit 8 Thomas, # 9 Exhibit 9 Shewale, # 10 Exhibit 10 Mahata, # 11 Exhibit 11 Pande, # 12 Exhibit 12 Sabbagh, # 13 Exhibit 13 Walraven, # 14 Exhibit 14 Bolt, # 15 Exhibit 15 Garcia-Martin, # 16 Exhibit 16 McDonagh, # 17 Exhibit 17 Fukunaga, # 18 Exhibit 18 Jetter, # 19 Exhibit 19 Chen, # 20 Exhibit 20 Morris, # 21 Declaration Dr. Pleasure, # 22 Declaration Dr. Lepore)(WEIDER, DOUGLAS) (Entered: 12/22/2023)
    01/22/202464  + Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 01/22/2024)
    01/23/202465  + LETTER ORDER granting 64 request for an extension of the Markman deadlines. Signed + by Magistrate Judge Jose R. Almonte on 1/23/2024. (jd, ) (Entered: 01/23/2024)
    02/06/202466  + Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 02/06/2024)
    02/13/2024  + Minute Entry for proceedings held before Magistrate Judge Jose R. Almonte. A status conference was held on February 13, 2024. At the conference, the Court heard argument concerning the issue raised at ECF No. 66 , ordered the parties to meet and confer regarding the dispute, and, to the extent the parties are unable to resolve the dispute, provided + a briefing schedule and scheduled an in-person discovery dispute hearing. (akw, ) (Entered: 02/13/2024)
    02/13/202467  + TEXT ORDER: The parties shall meet and confer in good faith regarding the dispute raised at ECF No. 66 by February 20, 2024. To the extent the parties are unable to resolve the dispute, the parties shall brief the issue as follows: Plaintiffs shall file their opening brief by February 27, 2024. Defendants' response shall be filed + by March 12, 2024. Plaintiffs' reply, if any, shall be filed by March 19, 2024. The Court will resolve the remaining disputes at an in-person discovery dispute hearing scheduled for April 24, 2024, at 10:00 a.m. The parties shall + appear in person at the Frank R. Lautenberg Post Office and U.S. Courthouse, 2 Federal Square, Courtroom 9, Newark, New Jersey. To the extent Defendants seek to file a motion concerning Plaintiffs infringement contentions, any motion + shall be filed in accordance with the aforementioned briefing schedule. So Ordered by Magistrate Judge Jose R. Almonte on 2/13/2024. (akw, ) (Entered: 02/13/2024)
    02/15/202468  + Transcript of Status Conference held on February 13, 2024, before Magistrate Judge Jose R. Almonte. Transcriber: King Transcription Services (973-237-6080). + NOTICE REGARDING (1) REDACTION OF PERSONAL IDENTIFIERS IN TRANSCRIPTS AND (2) MOTION TO REDACT AND SEAL: The parties have seven (7) calendar days to file with the Court a Notice of Intent to Request Redaction of this Transcript to comply with Fed.R.Civ.P.5.2(a) (personal identifiers). Parties seeking to redact and seal this Transcript, + or portions thereof, pursuant to L.Civ.R. 5.3(g) must e-file a Motion to Redact and Seal utilizing the event `Redact and Seal Transcript/Digital Recording`. Redaction Request to Transcription Agency due, but not filed, by + 3/7/2024. Redacted Transcript Deadline set for 3/18/2024. Release of Transcript Restriction set for 5/15/2024. (adc) (Entered: 02/15/2024)
    02/20/202469  + Letter from Defendant Anora Pharma Private Limited, et al., re consent order on briefing schedule. (WEIDER, DOUGLAS) (Entered: 02/20/2024)
    02/21/202470  + TEXT ORDER: The Court adopts the parties' proposed briefing schedule for Defendants' proposed motion for leave to amend their invalidity contentions (ECF No. 69 ). Defendants shall file their opening brief on or before February 27, 2024. Plaintiffs shall file their opposition brief on or before March 19, 2024. Defendants shall file their reply brief on or before April 2, 2024. So Ordered by + Magistrate Judge Jose R. Almonte on 2/21/2024. (akw) (Entered: 02/21/2024)
    02/27/202471  + MOTION to Amend/Correct Invalidity Contentions by All Defendants. (Attachments: # 1 Brief, # 2 Declaration, # 3 Text of Proposed Order)(MURTHA, WILLIAM) (Entered: 02/27/2024)
    02/27/202472  + Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (Attachments: # 1 Exhibit C, # 2 Exhibit F, # 3 Exhibit G, # 4 Exhibit H)(CHEVALIER, CHARLES) +
    NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 02/27/2024)
    02/27/202473  + Exhibit to 72 Letter,, Exhibit A by CATALYST PHARMACEUTICALS, INC., SERB SA. + (Attachments: # 1 Exhibit B, # 2 Exhibit D, # 3 Exhibit E, # 4 Exhibit I)(CHEVALIER, CHARLES) (Entered: 02/27/2024)
    02/28/2024  + Set Deadlines as to 71 MOTION to Amend/Correct Invalidity Contentions. Motion set for + 4/1/2024 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s + Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 02/28/2024)
    03/12/202474  + TEXT ORDER: By March 14, 2024, the parties shall file a joint letter informing the Court whether the issues raised at ECF No. 66 have been resolved. See ECF No. 67 . So Ordered by Magistrate Judge Jose R. Almonte on 3/12/2024. (akw) + (Entered: 03/12/2024)
    03/12/202475  + Letter from Defendants to Judge Almonte - (Under Seal). (ABRAHAM, ERIC) +
    NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 03/12/2024)
    03/14/202476  + Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. re 74 Order. (CHEVALIER, CHARLES) (Entered: 03/14/2024)
    03/19/202477  + Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. re 75 Letter,,. + (Attachments: # 1 Exhibit J, # 2 Exhibit K, # 3 Exhibit L)(CHEVALIER, CHARLES) +
    NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 03/19/2024)
    03/19/202478  + Exhibit to 77 Letter,, Exhibit M by CATALYST PHARMACEUTICALS, INC., SERB SA. + (Attachments: # 1 Exhibit N, # 2 Exhibit O, # 3 Exhibit P, # 4 Exhibit Q, # 5 Exhibit R, # 6 Exhibit S, # 7 Exhibit T)(CHEVALIER, CHARLES) (Entered: 03/19/2024)
    03/19/202479  + RESPONSE in Opposition filed by CATALYST PHARMACEUTICALS, INC., SERB SA re 71 MOTION + to Amend/Correct Invalidity Contentions (Attachments: # 1 Exhibit 2)(CHEVALIER, + CHARLES) +
    NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 03/19/2024)
    03/19/202480  + DECLARATION of of Alex Alfano re 79 Response in Opposition to Motion,, by CATALYST + PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Exhibit 4, # 2 Exhibit 5, # 3 Exhibit 6, # 4 Exhibit 7, # 5 Exhibit 8, # 6 Exhibit 9, # 7 Exhibit 10, # 8 Exhibit 11, # 9 Exhibit 12, # 10 Exhibit 13, # 11 Exhibit 14, # 12 Exhibit 15)(CHEVALIER, CHARLES) (Entered: 03/19/2024)
    03/28/202481  + MARKMAN RESPONSE BRIEF re 61 Markman Opening Brief, (Attachments: # 1 Declaration Declaration of Alison King, # 2 Exhibit Exhibit 21, # 3 Exhibit Exhibit 22, # 4 Exhibit Exhibit 23, # 5 Exhibit Exhibit 24, # 6 Exhibit Exhibit 25, # 7 Declaration Declaration of Dr. Lepore, # 8 Declaration Declaration of Dr. Pleasure)(MURTHA, WILLIAM) +
    NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 03/28/2024)
    03/28/202482  + MARKMAN RESPONSE BRIEF re 61 Markman Opening Brief, (Attachments: # 1 Declaration of Lauren Watt, # 2 Exhibit 18, # 3 Exhibit 19, # 4 Exhibit 20, # 5 Exhibit 21, # 6 Exhibit 22, # 7 Exhibit 23, # 8 Exhibit 24, # 9 Exhibit 25, # 10 Exhibit 26, # 11 Exhibit 27, # 12 Exhibit 28, # 13 Exhibit 29, # 14 Exhibit 30, # 15 Exhibit 31, # 16 Exhibit 32, # 17 Exhibit 33, # 18 Exhibit 34, # 19 Exhibit 35, # 20 Exhibit 36, # 21 Exhibit 37, # 22 Exhibit 38)(CHEVALIER, CHARLES) (Entered: 03/28/2024)
    04/02/202483  + REPLY BRIEF to Opposition to Motion filed by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. re 71 MOTION to Amend/Correct Invalidity Contentions (WEIDER, DOUGLAS) (Entered: 04/02/2024)
    04/02/202484  + MOTION to Seal by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (Attachments: # 1 Declaration Declaration of Alison M. King, # 2 Exhibit 1, # 3 Exhibit 2, # 4 Exhibit 3, # 5 Exhibit 4, # 6 Exhibit 5, # 7 Declaration Declaration of William Murtha, # 8 Exhibit 1, # 9 Declaration Declaration of James Richter, # 10 Text of Proposed Order)(WEIDER, DOUGLAS) (Entered: 04/02/2024)
    04/02/202485  + *REDACTED* Transcript of Status Conference held on February 13, 2024, before Magistrate Judge Jose R. Almonte. Transcriber: King Transcription Services (973-237-6080). + NOTICE REGARDING (1) REDACTION OF PERSONAL IDENTIFIERS IN TRANSCRIPTS AND (2) MOTION TO REDACT AND SEAL: The parties have seven (7) calendar days to file with the Court a Notice of Intent to Request Redaction of this Transcript to comply with Fed.R.Civ.P.5.2(a) (personal identifiers). Parties seeking to redact and seal this Transcript, + or portions thereof, pursuant to L.Civ.R. 5.3(g) must e-file a Motion to Redact and Seal utilizing the event `Redact and Seal Transcript/Digital Recording`. Redaction Request to Transcription Agency due, but not filed, by + 4/23/2024. Redacted Transcript Deadline set for 5/3/2024. Release of Transcript Restriction set for 7/1/2024. (adc) (Entered: 04/03/2024)
    04/03/202486  + ORDER granting Defendants' 84 Motion to Seal. Signed by Magistrate Judge Jose + R. Almonte on 4/3/2024. (wh) (Entered: 04/03/2024)
    04/11/202487  + MOTION to Seal by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Declaration of Charles H. Chevalier, # 2 Index, # 3 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 04/11/2024)
    04/11/202488  + Letter from Douglas Weider. (WEIDER, DOUGLAS) (Entered: 04/11/2024)
    04/11/202489  + REDACTION to 81 Markman Response Brief,,, by CATALYST PHARMACEUTICALS, INC., + SERB SA. (Attachments: # 1 Exhibit 21, # 2 Declaration of Samuel Pleasure, M.D., Ph.D.)(CHEVALIER, CHARLES) (Entered: 04/11/2024)
    04/11/202490  + Letter from Charles H. Chevalier to The Honorable Michael E. Farbiarz, U.S.D.J. (CHEVALIER, CHARLES) (Entered: 04/11/2024)
    04/12/202491  + ORDER granting 87 Motion to Seal. Signed by Magistrate Judge Jose R. Almonte on 4/12/2024. + (jd, ) (Entered: 04/12/2024)
    04/12/202492  + LETTER ORDER granting 88 the parties request for leave to file respective motions to + strike and proposed briefing schedule. Signed by Magistrate Judge Jose R. Almonte on 4/12/2024. (jd, ) (Entered: 04/12/2024)
    04/15/202493  + TEXT ORDER: The Court understands the parties letter at Docket Entry 121 to suggest the Markman hearing should be held after some or all of the parties various open motions have been resolved by Judge Almonte. The parties shall file + a brief joint letter on or before April 18 explaining which of these open motions they believe should be resolved prior to holding the Markman hearing. So Ordered by Judge Michael E. Farbiarz on 4/15/2024. (ro, ) (Entered: 04/15/2024)
    04/16/202494  + MOTION to Seal ECF 79 by All Defendants. (Attachments: # 1 Declaration, # + 2 Index, # 3 Text of Proposed Order)(MURTHA, WILLIAM) (Entered: 04/16/2024)
    04/18/2024  + Set Deadlines as to 94 MOTION to Seal ECF 79. Motion set for 5/20/2024 before Magistrate + Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s Office and does not + supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 04/18/2024)
    04/18/202495  + Letter from Charles H. Chevalier to The Honorable Michael E. Farbiarz, U.S.D.J re 93 Order,. (CHEVALIER, CHARLES) (Entered: 04/18/2024)
    04/19/202496  + ORDER granting 94 Motion to Seal. Signed by Magistrate Judge Jose R. Almonte on 4/19/2024. + (jd, ) (Entered: 04/19/2024)
    04/19/202497  + LETTER ORDER granting the parties' request as set forth in the parties' joint letter dated 4/18/2024 that the parties be allowed to submit a joint status letter within three days of the resolution of forthcoming motions to + strike. Signed by Judge Michael E. Farbiarz on 4/19/2024. (mxw, ) Modified on 4/22/2024 (ams, ). (Entered: 04/19/2024)
    04/19/202498  + MOTION to Strike by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (Attachments: # 1 Brief, # 2 Declaration of Alison King, # 3 Exhibit 1, # 4 Exhibit 2, # 5 Exhibit 3, # 6 Exhibit 4, # 7 Text of Proposed Order)(WEIDER, DOUGLAS) (Entered: 04/19/2024)
    04/19/202499  + MOTION to Strike 81 Markman Response Brief,,, by CATALYST PHARMACEUTICALS, + INC., SERB SA. (Attachments: # 1 Declaration of Lauren Watt, Esq., # 2 Exhibit D, # 3 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 04/19/2024)
    04/19/2024100  + MEMORANDUM in Support filed by CATALYST PHARMACEUTICALS, INC., SERB SA re 99 MOTION + to Strike 81 Markman Response Brief,,, (Attachments: # 1 Exhibit A, # 2 Exhibit B, # 3 Exhibit C)(CHEVALIER, CHARLES) +
    NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 04/19/2024)
    04/22/2024  + Set Deadlines as to 99 MOTION to Strike 81 Markman Response Brief, 98 MOTION to Strike. Motion set for 5/20/2024 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically + generated message from the Clerk`s Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 04/22/2024)
    04/24/2024  + Minute Entry for proceedings held before Magistrate Judge Jose R. Almonte. A discovery dispute hearing was held on April 24, 2024. The parties presented their arguments regarding whether the production of stability samples should be + compelled. The Court reserved judgment and will issue a letter order. (Court Reporter, ECR) (akw, ) (Entered: 05/01/2024)
    04/26/2024105  + Transcript of Status Conference held on April 24, 2024, before Magistrate Judge Jose R. Almonte. Transcriber: King Transcription Services (973-237-6080). + NOTICE REGARDING (1) REDACTION OF PERSONAL IDENTIFIERS IN TRANSCRIPTS AND (2) MOTION TO REDACT AND SEAL: The parties have seven (7) calendar days to file with the Court a Notice of Intent to Request Redaction of this Transcript to comply with Fed.R.Civ.P.5.2(a) (personal identifiers). Parties seeking to redact and seal this Transcript, + or portions thereof, pursuant to L.Civ.R. 5.3(g) must e-file a Motion to Redact and Seal utilizing the event `Redact and Seal Transcript/Digital Recording`. Redaction Request to Transcription Agency due, but not filed, by + 5/17/2024. Redacted Transcript Deadline set for 5/28/2024. Release of Transcript Restriction set for 7/25/2024. (adc) (Entered: 05/02/2024)
    04/29/2024101  + REDACTION to 75 Letter,, by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING + SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (ABRAHAM, ERIC) (Entered: 04/29/2024)
    04/29/2024102  + REDACTION to 77 Letter,, by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING + SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (ABRAHAM, ERIC) (Entered: 04/29/2024)
    04/29/2024103  + REDACTION to 72 Letter,, by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING + SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (ABRAHAM, ERIC) (Entered: 04/29/2024)
    04/30/2024104  + Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 04/30/2024)
    05/02/2024106  + LETTER ORDER re 104 Directing the Clerk of Court to unseal specified documents. Signed + by Magistrate Judge Jose R. Almonte on 5/2/2024. (jd, ) (Entered: 05/03/2024)
    05/03/2024107  + LETTER ORDER denying Plaintiffs' request to compel the production of stability samples. Signed by Magistrate Judge Jose R. Almonte on 5/3/2024. (mxw, ) (Entered: 05/03/2024)
    05/03/2024108  + BRIEF in Opposition filed by CATALYST PHARMACEUTICALS, INC., SERB SA re 98 MOTION to + Strike (Attachments: # 1 Declaration of Lauren Watt, Esq., # 2 Exhibit A, # 3 Exhibit B, # 4 Exhibit C, # 5 Exhibit D, # 6 Exhibit E, # 7 Exhibit F)(CHEVALIER, CHARLES) (Entered: 05/03/2024)
    05/03/2024109  + BRIEF in Opposition filed by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. re 99 MOTION to Strike 81 Markman Response Brief,,, (Attachments: # 1 Declaration of Alison King, # 2 Exhibit Exhibit 1, # 3 Exhibit Exhibit 2, # 4 Exhibit Exhibit 3, # 5 Exhibit Exhibit 4, # 6 Exhibit Exhibit 5, # 7 Exhibit Exhibit 6, # 8 Exhibit Exhibit 7, # 9 Exhibit Appendix A)(WEIDER, DOUGLAS) +
    NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 05/03/2024)
    05/07/2024110  + MOTION for Leave to Appear Pro Hac Vice of Cristen A. Corry by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Declaration of Charles H. Chevalier, # 2 Declaration of Cristen A. Corry, # 3 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 05/07/2024)
    05/08/2024111  + ORDER granting 110 Motion for Leave to Appear Pro Hac Vice as to Attorney, CRISTEN + A. CORRY. Signed by Magistrate Judge Jose R. Almonte on 5/8/2024. (jd, ) (Entered: 05/08/2024)
    05/09/2024112  + Notice of Request by Pro Hac Vice Cristen A. Corry to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 250 receipt number ANJDC-15353654.) (CHEVALIER, CHARLES) (Entered: 05/09/2024)
    05/10/2024  + Pro Hac Vice counsel, CRISTEN A. CORRY, has been added to receive Notices of Electronic Filing. Pursuant to L.Civ.R. 101.1, only local counsel are entitled to sign and file papers, enter appearances and receive payments on judgments, + decrees or orders. (jd, ) (Entered: 05/10/2024)
    05/15/2024113  + RESPONSE in Support filed by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. re 98 MOTION to Strike (WEIDER, DOUGLAS) (Entered: 05/15/2024)
    05/15/2024114  + REPLY BRIEF to Opposition to Motion filed by CATALYST PHARMACEUTICALS, INC., SERB SA re 99 MOTION to Strike 81 Markman Response Brief,,, (Attachments: # 1 Declaration of Lauren Watt, # 2 Exhibit E)(CHEVALIER, CHARLES) (Entered: 05/15/2024)
    05/17/2024115  + Letter from Eric Abraham To the Honorable Jose R. Almonte, U.S.M.J. with Redacted Order. (Attachments: # 1 Supplement Redacted Order)(MURTHA, WILLIAM) (Entered: 05/17/2024)
    05/17/2024116  + APPEAL OF MAGISTRATE JUDGE DECISION to District Court by CATALYST PHARMACEUTICALS, INC., SERB SA re 107 Order (Attachments: # 1 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 05/17/2024)
    05/17/2024117  + MEMORANDUM in Support filed by CATALYST PHARMACEUTICALS, INC., SERB SA re 116 APPEAL + OF MAGISTRATE JUDGE DECISION to District Court by CATALYST PHARMACEUTICALS, INC., SERB SA re 107 Order (CHEVALIER, CHARLES) +
    NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 05/17/2024)
    05/21/2024118  + LETTER ORDER granting 115 Defendants request that portions of the letter Order remain + under seal. Signed by Magistrate Judge Jose R. Almonte on 5/21/2024. (jd, ) (Entered: 05/21/2024)
    05/22/2024  + Set Deadlines as to 116 APPEAL OF MAGISTRATE JUDGE DECISION to District Court by CATALYST + PHARMACEUTICALS, INC., SERB SA re 107 Order. Motion set for 6/17/2024 before Judge + Michael E. Farbiarz. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s Office and does not + supersede any previous or subsequent orders from the Court. (sm) (Entered: 05/22/2024)
    05/29/2024119  + MOTION to Seal by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Declaration of Charles H. Chevalier, # 2 Index, # 3 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 05/29/2024)
    05/29/2024120  + REDACTION to 100 Memorandum in Support of Motion,, by CATALYST PHARMACEUTICALS, + INC., SERB SA. (Attachments: # 1 Exhibit A, # 2 Exhibit B, # 3 Exhibit C)(CHEVALIER, CHARLES) (Entered: 05/29/2024)
    05/29/2024121  + REDACTION to 109 Brief in Opposition to Motion,,, by CATALYST PHARMACEUTICALS, + INC., SERB SA. (CHEVALIER, CHARLES) (Entered: 05/29/2024)
    05/29/2024  + Set Deadlines as to 119 MOTION to Seal. Motion set for 7/1/2024 before Magistrate Judge + Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk's Office and does not supersede + any previous or subsequent orders from the Court. (dam) (Entered: 05/29/2024)
    05/31/2024122  + ORDER granting 119 Motion to Seal. Signed by Magistrate Judge Jose R. Almonte on 5/31/2024. + (jd, ) (Entered: 05/31/2024)
    06/03/2024123  + RESPONSE in Opposition filed by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. re 116 APPEAL OF MAGISTRATE JUDGE DECISION to District Court by CATALYST PHARMACEUTICALS, INC., SERB SA re 107 Order (WEIDER, DOUGLAS) +
    NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 06/03/2024)
    06/03/2024124  + Letter from Charles H. Chevalier to The Honorable Michael E. Farbiarz, U.S.D.J. (CHEVALIER, CHARLES) (Entered: 06/03/2024)
    06/03/2024125  + Exhibit to 124 Letter by CATALYST PHARMACEUTICALS, INC., SERB SA. (CHEVALIER, + CHARLES) +
    NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 06/03/2024)
    06/10/2024126  + REPLY to Response to Motion filed by CATALYST PHARMACEUTICALS, INC., SERB SA re 116 APPEAL OF MAGISTRATE JUDGE DECISION to District Court by CATALYST PHARMACEUTICALS, INC., SERB SA re 107 Order (CHEVALIER, CHARLES) +
    NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 06/10/2024)
    06/24/2024127  + MOTION to Seal by All Defendants. (Attachments: # 1 Declaration, # 2 Exhibit Index, # 3 Exhibit, # 4 Exhibit, # 5 Exhibit, # 6 Exhibit, # 7 Text of Proposed Order)(MURTHA, WILLIAM) (Entered: 06/24/2024)
    06/25/2024128  + ORDER granting Defendants' 127 Motion to Seal. Signed by Magistrate Judge Jose + R. Almonte on 6/25/2024. (wh) (Entered: 06/26/2024)
    06/26/2024  + Set Deadlines as to 127 MOTION to Seal . Motion set for 8/5/2024 before Magistrate + Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s Office and does not + supersede any previous or subsequent orders from the Court. (mxw, ) (Entered: 06/26/2024)
    07/01/2024129  + TEXT ORDER: In light of our order at ECF No. 128 which sealed the exhibit at ECF No. + 125 , the Court orders the seal of the transcript at ECF No. 105 , which is identical to the exhibit sealed at 125. The parties may write to the Court within seven (7) business days if they wish to object. + So Ordered by Magistrate Judge Jose R. Almonte on 7/1/2024. (akw, ) (Entered: 07/01/2024)
    07/01/2024130  + SEALED LETTER ORDER. Signed by Magistrate Judge Jose R. Almonte on 7/1/2024. (wh) (Entered: 07/02/2024)
    07/15/2024131  + MOTION for Leave to Appear Pro Hac Vice by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Declaration of Charles H. Chevalier, # 2 Declaration of Andrew Z. Barnett, # 3 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 07/15/2024)
    07/16/2024  + Set Deadlines as to 131 MOTION for Leave to Appear Pro Hac Vice. Motion set for 8/19/2024 + before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s + Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 07/16/2024)
    07/16/2024132  + Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 07/16/2024)
    07/16/2024133  + ORDER granting 131 Motion for Leave to Appear Pro Hac Vice as to Counsel ANDREW Z. + BARNETT. Signed by Magistrate Judge Jose R. Almonte on 7/16/2024. (jd, ) (Entered: 07/16/2024)
    07/16/2024134  + Notice of Request by Pro Hac Vice Andrew Z. Barnett to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 250 receipt number ANJDC-15521855.) (CHEVALIER, CHARLES) (Entered: 07/16/2024)
    07/18/2024  + Pro Hac Vice counsel, ANDREW Z. BARNETT, has been added to receive Notices of Electronic Filing. Pursuant to L.Civ.R. 101.1, only local counsel are entitled to sign and file papers, enter appearances and receive payments on judgments, + decrees or orders. (jd, ) (Entered: 07/18/2024)
    08/12/2024135  + TEXT ORDER: A status conference is scheduled for August 20, 2024, at 4:00 p.m. For the conference, please dial 973-43-5535 and enter Phone conference ID: 577 551 351#. The purpose of the conference is to discuss whether, in light of + recent developments in the cases, the Court still needs to decide (1) Lupin's motion to compel Plaintiffs to supplement their infringement contentions (ECF No. 80 in the Lupin Action), (2) the parties' competing motions to + strike Markman Hearing submissions, and (3) the discovery dispute raised at ECF No. 161 in the Lupin action. So Ordered by Magistrate Judge Jose R. Almonte on 8/12/2024. (akw, ) (Entered: 08/12/2024)
    08/12/2024136  + MOTION for Leave to Appear Pro Hac Vice Geng Hua, Esq. by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (Attachments: # 1 Certification Eric I. Abraham, Esq., # 2 Certification Geng Hua, Esq., # 3 Text of Proposed Order)(ABRAHAM, ERIC) (Entered: + 08/12/2024)
    08/13/2024  + Set Deadlines as to 136 MOTION for Leave to Appear Pro Hac Vice Geng Hua, Esq.. Motion + set for 9/16/2024 before Judge Michael E. Farbiarz. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s + Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 08/13/2024)
    08/13/2024  + Reset Deadlines as to 136 MOTION for Leave to Appear Pro Hac Vice Geng Hua, Esq.. Motion + reset for 9/16/2024 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from + the Clerk`s Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 08/13/2024)
    08/13/2024137  + ORDER granting 136 Motion for Leave to Appear Pro Hac Vice as to attorney, GENG HUA. + Signed by Magistrate Judge Jose R. Almonte on 8/13/2024. (jd, ) (Entered: 08/13/2024)
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + PACER Service Center +
    + Transaction Receipt +
    + 08/15/2024 00:10:50 +
    + PACER Login: + + [REDACTED] + + + Client Code: + + +
    + Description: + + Docket Report + + Search Criteria: + + 2:23-cv-01194-MEF-JRA Start date: 1/1/1980 End date: 8/15/2024 +
    + Billable Pages: + + 17 + + Cost: + + 1.70 +
    +
    + +
    + + + diff --git a/tests/examples/pacer/dockets/district/njd_509180.json b/tests/examples/pacer/dockets/district/njd_509180.json new file mode 100644 index 000000000..e81e8a28f --- /dev/null +++ b/tests/examples/pacer/dockets/district/njd_509180.json @@ -0,0 +1,1531 @@ +{ + "assigned_to_str": "Michael E. Farbiarz", + "case_name": "CATALYST PHARMACEUTICALS, INC. v. ANNORA PHARMA PRIVATE LIMITED", + "cause": "35:271 Patent Infringement", + "court_id": "njd", + "date_converted": null, + "date_discharged": null, + "date_filed": "2023-03-01", + "date_terminated": null, + "demand": "", + "docket_entries": [ + { + "date_entered": "2023-03-01", + "date_filed": "2023-03-01", + "description": "COMPLAINT against ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. ( Filing and Admin fee $ 402 receipt number ANJDC-14125450), Related Case Selected, filed by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Exhibit 1, # 2 Exhibit 2, # 3 Exhibit 3, # 4 Exhibit 4, # 5 Exhibit 5, # 6 Exhibit 6, # 7 Civil Cover Sheet, # 8 Certification Pursuant to Local Civil Rule 11.2)(CHEVALIER, CHARLES) (Entered: 03/01/2023)", + "document_number": "1", + "pacer_doc_id": "119019633000", + "pacer_seq_no": "7" + }, + { + "date_entered": "2023-03-01", + "date_filed": "2023-03-01", + "description": "Corporate Disclosure Statement by CATALYST PHARMACEUTICALS, INC. identifying NONE as Corporate Parent.. (CHEVALIER, CHARLES) (Entered: 03/01/2023)", + "document_number": "2", + "pacer_doc_id": "119019633209", + "pacer_seq_no": "11" + }, + { + "date_entered": "2023-03-01", + "date_filed": "2023-03-01", + "description": "Corporate Disclosure Statement by SERB SA identifying NONE as Corporate Parent.. (CHEVALIER, CHARLES) (Entered: 03/01/2023)", + "document_number": "3", + "pacer_doc_id": "119019633225", + "pacer_seq_no": "13" + }, + { + "date_entered": "2023-03-02", + "date_filed": "2023-03-02", + "description": "NOTICE of Appearance by DMITRY V. SHELHOFF on behalf of All Defendants (SHELHOFF, DMITRY) (Entered: 03/02/2023)", + "document_number": "4", + "pacer_doc_id": "119019634904", + "pacer_seq_no": "15" + }, + { + "date_entered": "2023-03-07", + "date_filed": "2023-03-07", + "description": "Judge Madeline Cox Arleo and Magistrate Judge Jose R. Almonte added. (ps) (Entered: 03/07/2023)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-03-08", + "date_filed": "2023-03-08", + "description": "SUMMONS ISSUED as to ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. Attached is the official court Summons, please fill out Defendant and Plaintiffs attorney information and serve. (dam) (Entered: 03/08/2023)", + "document_number": "5", + "pacer_doc_id": "119019651074", + "pacer_seq_no": "25" + }, + { + "date_entered": "2023-03-08", + "date_filed": "2023-03-08", + "description": "AO120 Patent Form filed. (Attachments: # 1 Complaint, # 2 Exhibits) (dam) (Entered: 03/08/2023)", + "document_number": "6", + "pacer_doc_id": "119019651222", + "pacer_seq_no": "27" + }, + { + "date_entered": "2023-03-13", + "date_filed": "2023-03-13", + "description": "Annora Pharma Private Limited, Grace Consulting Services, Inc., Hetero Labs Limited and Hetero USA, Inc.'s ANSWER to Complaint by All Defendants.(SHELHOFF, DMITRY) (Entered: 03/13/2023)", + "document_number": "7", + "pacer_doc_id": "119019663885", + "pacer_seq_no": "29" + }, + { + "date_entered": "2023-03-13", + "date_filed": "2023-03-13", + "description": "Corporate Disclosure Statement by ANNORA PHARMA PRIVATE LIMITED identifying Hetero Labs Ltd. as Corporate Parent.. (SHELHOFF, DMITRY) (Entered: 03/13/2023)", + "document_number": "8", + "pacer_doc_id": "119019663912", + "pacer_seq_no": "31" + }, + { + "date_entered": "2023-03-14", + "date_filed": "2023-03-14", + "description": "LETTER ORDER Pursuant to Local Civil Rule 16.1. On 5/8/2023 at 10:30 AM there shall be an Initial Scheduling Conference before Magistrate Judge Jose R. Almonte, etc. Signed by Magistrate Judge Jose R. Almonte on 3/14/2023. (smf) (Entered: 03/14/2023)", + "document_number": "9", + "pacer_doc_id": "119019667851", + "pacer_seq_no": "33" + }, + { + "date_entered": "2023-03-20", + "date_filed": "2023-03-20", + "description": "SUMMONS Returned Executed by CATALYST PHARMACEUTICALS, INC., SERB SA. ANNORA PHARMA PRIVATE LIMITED served on 3/13/2023, answer due 4/3/2023. (CHEVALIER, CHARLES) (Entered: 03/20/2023)", + "document_number": "10", + "pacer_doc_id": "119019709938", + "pacer_seq_no": "35" + }, + { + "date_entered": "2023-03-20", + "date_filed": "2023-03-20", + "description": "SUMMONS Returned Executed by CATALYST PHARMACEUTICALS, INC., SERB SA. GRACE CONSULTING SERVICES, INC. served on 3/13/2023, answer due 4/3/2023. (CHEVALIER, CHARLES) (Entered: 03/20/2023)", + "document_number": "11", + "pacer_doc_id": "119019709966", + "pacer_seq_no": "37" + }, + { + "date_entered": "2023-03-20", + "date_filed": "2023-03-20", + "description": "SUMMONS Returned Executed by CATALYST PHARMACEUTICALS, INC., SERB SA. HETERO LABS LIMITED served on 3/13/2023, answer due 4/3/2023. (CHEVALIER, CHARLES) (Entered: 03/20/2023)", + "document_number": "12", + "pacer_doc_id": "119019709995", + "pacer_seq_no": "39" + }, + { + "date_entered": "2023-03-20", + "date_filed": "2023-03-20", + "description": "SUMMONS Returned Executed by CATALYST PHARMACEUTICALS, INC., SERB SA. HETERO USA, INC. served on 3/13/2023, answer due 4/3/2023. (CHEVALIER, CHARLES) (Entered: 03/20/2023)", + "document_number": "13", + "pacer_doc_id": "119019710025", + "pacer_seq_no": "41" + }, + { + "date_entered": "2023-03-23", + "date_filed": "2023-03-23", + "description": "Consent MOTION for Leave to Appear Pro Hac Vice by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Declaration of Charles H. Chevalier, # 2 Declaration of Adam C. LaRock, # 3 Declaration of Josephine Kim, # 4 Declaration of Lauren A. Watt, # 5 Declaration of Christopher M. Gallo, Ph.D., # 6 Declaration of Joseph H. Kim, # 7 Declaration of Alexander Alfano, # 8 Declaration of Davin B. Guinn, # 9 Declaration of Ryan E. Conkin, # 10 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 03/23/2023)", + "document_number": "14", + "pacer_doc_id": "119019727947", + "pacer_seq_no": "43" + }, + { + "date_entered": "2023-03-23", + "date_filed": "2023-03-23", + "description": "Set Deadlines as to 14 Consent MOTION for Leave to Appear Pro Hac Vice. Motion set for 4/17/2023 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 03/23/2023)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-03-23", + "date_filed": "2023-03-23", + "description": "ORDER granting 14 Motion for Leave to Appear Pro Hac Vice as to Attorneys ADAM C. LAROCK, JOSEPHINE KIM, LAUREN A. WATT, CHRISTOPHER M. GALLO, JOSEPH H. KIM, ALEXANDER ALFANO, DAVIN B. GUINN, and RYAN E. CONKIN. Signed by Magistrate Judge Jose R. Almonte on 3/23/2023. (jd, ) (Entered: 03/23/2023)", + "document_number": "15", + "pacer_doc_id": "119019729271", + "pacer_seq_no": "48" + }, + { + "date_entered": "2023-03-23", + "date_filed": "2023-03-23", + "description": "Notice of Request by Pro Hac Vice Adam C. LaRock to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193039.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)", + "document_number": "16", + "pacer_doc_id": "119019730048", + "pacer_seq_no": "50" + }, + { + "date_entered": "2023-03-23", + "date_filed": "2023-03-23", + "description": "Notice of Request by Pro Hac Vice Josephine Kim to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193051.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)", + "document_number": "17", + "pacer_doc_id": "119019730062", + "pacer_seq_no": "52" + }, + { + "date_entered": "2023-03-23", + "date_filed": "2023-03-23", + "description": "Notice of Request by Pro Hac Vice Lauren A. Watt to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193058.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)", + "document_number": "18", + "pacer_doc_id": "119019730077", + "pacer_seq_no": "54" + }, + { + "date_entered": "2023-03-23", + "date_filed": "2023-03-23", + "description": "Notice of Request by Pro Hac Vice Christopher M. Gallo, Ph.D. to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193070.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)", + "document_number": "19", + "pacer_doc_id": "119019730083", + "pacer_seq_no": "56" + }, + { + "date_entered": "2023-03-23", + "date_filed": "2023-03-23", + "description": "Notice of Request by Pro Hac Vice Joseph H. Kim to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193084.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)", + "document_number": "20", + "pacer_doc_id": "119019730097", + "pacer_seq_no": "58" + }, + { + "date_entered": "2023-03-23", + "date_filed": "2023-03-23", + "description": "Notice of Request by Pro Hac Vice Alexander Alfano to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193092.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)", + "document_number": "21", + "pacer_doc_id": "119019730108", + "pacer_seq_no": "60" + }, + { + "date_entered": "2023-03-23", + "date_filed": "2023-03-23", + "description": "NOTICE of Appearance by CHRISTINE A. GADDIS on behalf of CATALYST PHARMACEUTICALS, INC., SERB SA (GADDIS, CHRISTINE) (Entered: 03/23/2023)", + "document_number": "22", + "pacer_doc_id": "119019730124", + "pacer_seq_no": "62" + }, + { + "date_entered": "2023-03-23", + "date_filed": "2023-03-23", + "description": "Notice of Request by Pro Hac Vice Davin B. Guinn to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193096.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)", + "document_number": "23", + "pacer_doc_id": "119019730127", + "pacer_seq_no": "66" + }, + { + "date_entered": "2023-03-23", + "date_filed": "2023-03-23", + "description": "Notice of Request by Pro Hac Vice Ryan E. Conkin to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14193105.) (CHEVALIER, CHARLES) (Entered: 03/23/2023)", + "document_number": "24", + "pacer_doc_id": "119019730139", + "pacer_seq_no": "68" + }, + { + "date_entered": "2023-03-27", + "date_filed": "2023-03-27", + "description": "NOTICE of Appearance by DENNIES VARUGHESE on behalf of All Plaintiffs (VARUGHESE, DENNIES) (Entered: 03/27/2023)", + "document_number": "25", + "pacer_doc_id": "119019736655", + "pacer_seq_no": "70" + }, + { + "date_entered": "2023-03-27", + "date_filed": "2023-03-27", + "description": "Pro Hac Vice counsel, ADAM C. LAROCK, JOSEPHINE KIM, LAUREN A. WATT, CHRISTOPHER M. GALLO, JOSEPH H. KIM, ALEXANDER ALFANO, DAVIN B. GUINN and RYAN E. CONKIN, has been added to receive Notices of Electronic Filing. Pursuant to L.Civ.R. 101.1, only local counsel are entitled to sign and file papers, enter appearances and receive payments on judgments, decrees or orders. (jd, ) (Entered: 03/27/2023)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-04-12", + "date_filed": "2023-04-12", + "description": "NOTICE of Appearance by ERIC I. ABRAHAM on behalf of ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. (ABRAHAM, ERIC) (Entered: 04/12/2023)", + "document_number": "26", + "pacer_doc_id": "119019788639", + "pacer_seq_no": "84" + }, + { + "date_entered": "2023-04-12", + "date_filed": "2023-04-12", + "description": "NOTICE of Appearance by WILLIAM MURTHA on behalf of ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. (MURTHA, WILLIAM) (Entered: 04/12/2023)", + "document_number": "27", + "pacer_doc_id": "119019788659", + "pacer_seq_no": "90" + }, + { + "date_entered": "2023-04-13", + "date_filed": "2023-04-13", + "description": "MOTION for Leave to Appear Pro Hac Vice Keri L. Schaubert, Esq., W. Blake Coblentz, Esq. and Aaron S. Lukas, Esq. by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (Attachments: # 1 Certification Eric I. Abraham, Esq., # 2 Certification Keri L. Schaubert, Esq., # 3 Certification Aaron S. Lukas, Esq., # 4 Certification W. Blake Coblentz, Esq., # 5 Text of Proposed Order)(ABRAHAM, ERIC) (Entered: 04/13/2023)", + "document_number": "28", + "pacer_doc_id": "119019796107", + "pacer_seq_no": "96" + }, + { + "date_entered": "2023-04-14", + "date_filed": "2023-04-14", + "description": "ORDER granting 28 Motion for W. BLAKE COBLENTZ, ESQ., AARON S. LUKAS, ESQ., and KERI L. SCHAUBERT, ESQ. to Appear Pro Hac Vice. Signed by Magistrate Judge Jose R. Almonte on 4/14/2023. (mxw) (Entered: 04/14/2023)", + "document_number": "29", + "pacer_doc_id": "119019798667", + "pacer_seq_no": "98" + }, + { + "date_entered": "2023-04-18", + "date_filed": "2023-04-18", + "description": "Notice of Request by Pro Hac Vice W. Blake Coblentz, Esq. to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14253904.) (ABRAHAM, ERIC) (Entered: 04/18/2023)", + "document_number": "30", + "pacer_doc_id": "119019805228", + "pacer_seq_no": "100" + }, + { + "date_entered": "2023-04-18", + "date_filed": "2023-04-18", + "description": "Notice of Request by Pro Hac Vice Aaron Lukas, Esq. to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14253911.) (ABRAHAM, ERIC) (Entered: 04/18/2023)", + "document_number": "31", + "pacer_doc_id": "119019805240", + "pacer_seq_no": "102" + }, + { + "date_entered": "2023-04-18", + "date_filed": "2023-04-18", + "description": "Notice of Request by Pro Hac Vice Keri Schaubert, Esq. to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14253921.) (ABRAHAM, ERIC) (Entered: 04/18/2023)", + "document_number": "32", + "pacer_doc_id": "119019805253", + "pacer_seq_no": "104" + }, + { + "date_entered": "2023-04-19", + "date_filed": "2023-04-19", + "description": "Pro Hac Vice counsel, W. BLAKE COBLENTZ, AARON LUKAS and KERI L. SCHAUBERT, has been added to receive Notices of Electronic Filing. Pursuant to L.Civ.R. 101.1, only local counsel are entitled to sign and file papers, enter appearances and receive payments on judgments, decrees or orders. (jd, ) (Entered: 04/19/2023)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-04-27", + "date_filed": "2023-04-27", + "description": "Notice to be terminated and withdraw from Notices of Electronic filing as to case. Attorney DMITRY V. SHELHOFF terminated. (SHELHOFF, DMITRY) (Entered: 04/27/2023)", + "document_number": "33", + "pacer_doc_id": "119019834610", + "pacer_seq_no": "111" + }, + { + "date_entered": "2023-04-27", + "date_filed": "2023-04-27", + "description": "Consent MOTION for Leave to Appear Pro Hac Vice by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Declaration of Charles H. Chevalier, # 2 Declaration of Paul A. Ainsworth, # 3 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 04/27/2023)", + "document_number": "34", + "pacer_doc_id": "119019835855", + "pacer_seq_no": "113" + }, + { + "date_entered": "2023-04-28", + "date_filed": "2023-04-28", + "description": "Set Deadlines as to 34 Consent MOTION for Leave to Appear Pro Hac Vice. Motion set for 6/5/2023 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 04/28/2023)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-04-28", + "date_filed": "2023-04-28", + "description": "ORDER granting 34 Motion for Leave to Appear Pro Hac Vice as to PAUL A. AINSWORTH. Signed by Magistrate Judge Jose R. Almonte on 4/28/2023. (jd, ) (Entered: 04/28/2023)", + "document_number": "35", + "pacer_doc_id": "119019839915", + "pacer_seq_no": "118" + }, + { + "date_entered": "2023-05-01", + "date_filed": "2023-05-01", + "description": "Notice of Request by Pro Hac Vice Paul A. Ainsworth to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 150 receipt number ANJDC-14283013.) (CHEVALIER, CHARLES) (Entered: 05/01/2023)", + "document_number": "36", + "pacer_doc_id": "119019842116", + "pacer_seq_no": "120" + }, + { + "date_entered": "2023-05-02", + "date_filed": "2023-05-02", + "description": "Pro Hac Vice counsel, PAUL AINSWORTH, has been added to receive Notices of Electronic Filing. Pursuant to L.Civ.R. 101.1, only local counsel are entitled to sign and file papers, enter appearances and receive payments on judgments, decrees or orders. (jd, ) (Entered: 05/02/2023)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-05-03", + "date_filed": "2023-05-03", + "description": "Joint Discovery Plan by All Plaintiffs. (Attachments: # 1 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 05/03/2023)", + "document_number": "37", + "pacer_doc_id": "119019855587", + "pacer_seq_no": "125" + }, + { + "date_entered": "2023-05-08", + "date_filed": "2023-05-08", + "description": "PRETRIAL SCHEDULING ORDER. Signed by Magistrate Judge Jose R. Almonte on 5/8/2023. (jd, ) (Entered: 05/08/2023)", + "document_number": "38", + "pacer_doc_id": "119019866477", + "pacer_seq_no": "127" + }, + { + "date_entered": "2023-05-08", + "date_filed": "2023-05-08", + "description": "Minute Entry for proceedings held before Magistrate Judge Jose R. Almonte: Initial Pretrial Conference held on 5/8/2023 2023 in related matters 23-1194 (Catalyst Pharms. Inc., et al. v. Annora Pharma Private Ltd., et al.), 23-1197 (Catalyst Pharms. Inc., et al. v. Lupin, et al.), and 23-1190 (Catalyst Pharms. Inc., et al. v. Teva Pharms., Inc., et al.). The Court will enter a Pretrial Scheduling Order setting forth discovery deadlines in the 23-1194 and 23-1197 matters, which are consistent with the 23-1190 matter. (smf) (Entered: 05/08/2023)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-05-08", + "date_filed": "2023-05-08", + "description": "TEXT ORDER: The Court has held an initial scheduling conference in all three related matters: 23-1194 (Catalyst Pharms. Inc., et al. v. Annora Pharma Private Ltd., et al.), 23-1197 (Catalyst Pharms. Inc., et al. v. Lupin, et al.), and 23-1190 (Catalyst Pharms. Inc., et al. v. Teva Pharms., Inc., et al.). In all three matters, Plaintiffs requested that the Court impose the deadline for Defendants to produce Federal Drug Administration correspondence pursuant to L. Pat. R. 3.6(j)(2). Defendants Teva Pharms., Inc., et al. and Annora Pharma Private Ltd., et al. requested an extension to the Rule in their Joint Discovery Plans (to allow 14 days), and Defendants Lupin Ltd., et al. orally asserted the same request during the Rule 16 conference. The Court has considered the parties' arguments and has concluded that there is not a sufficient reason to deviate from the 7-day rule required under L. Pat. R. 3.6(j)(2). The Court will enter a Pretrial Scheduling Order setting forth discovery deadlines. A status conference is scheduled for July 31, 2023, at 2:30 p.m. Please dial (888) 684-8852 and enter access code 1364268. No later than July 24, 2023, the parties shall file a joint letter not to exceed five (5) pages summarizing the status of the case. To the extent the parties wish to raise a discovery dispute, they shall do so consistent with the Court's Case Management Order. So Ordered by Magistrate Judge Jose R. Almonte on 5/8/2023. (smf) (Entered: 05/08/2023)", + "document_number": "39", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-05-12", + "date_filed": "2023-05-11", + "description": "Transcript of Rule 16 Hearing held on May 8, 2023, before Magistrate Judge Jose R. Almonte. Transcriber: King Transcription Services (973-237-6080). NOTICE REGARDING (1) REDACTION OF PERSONAL IDENTIFIERS IN TRANSCRIPTS AND (2) MOTION TO REDACT AND SEAL: The parties have seven (7) calendar days to file with the Court a Notice of Intent to Request Redaction of this Transcript to comply with Fed.R.Civ.P.5.2(a) (personal identifiers). Parties seeking to redact and seal this Transcript, or portions thereof, pursuant to L.Civ.R. 5.3(g) must e-file a Motion to Redact and Seal utilizing the event `Redact and Seal Transcript/Digital Recording`. Redaction Request to Transcription Agency due, but not filed, by 6/1/2023. Redacted Transcript Deadline set for 6/12/2023. Release of Transcript Restriction set for 8/9/2023. (adc) (Entered: 05/12/2023)", + "document_number": "40", + "pacer_doc_id": "119019881660", + "pacer_seq_no": "133" + }, + { + "date_entered": "2023-05-22", + "date_filed": "2023-05-22", + "description": "Letter from Charles H. Chevalier to the Honorable Jose R. Almonte, U.S.M.J.. (Attachments: # 1 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 05/22/2023)", + "document_number": "41", + "pacer_doc_id": "119019908710", + "pacer_seq_no": "135" + }, + { + "date_entered": "2023-05-23", + "date_filed": "2023-05-23", + "description": "Discovery Confidentiality Order. Signed by Magistrate Judge Jose R. Almonte on 5/23/2023. (jd, ) (Entered: 05/23/2023)", + "document_number": "42", + "pacer_doc_id": "119019913443", + "pacer_seq_no": "137" + }, + { + "date_entered": "2023-05-24", + "date_filed": "2023-05-24", + "description": "TEXT ORDER REASSIGNING CASE. Case reassigned to Judge Michael E. Farbiarz for all further proceedings. Judge Madeline Cox Arleo no longer assigned to case. So Ordered by Chief Judge Renee Marie Bumb on 5/24/23. (ak, ) (Entered: 05/24/2023)", + "document_number": "43", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-07-24", + "date_filed": "2023-07-24", + "description": "Letter from Charles H. Chevalier to the Honorable Jose R. Almonte, U.S.M.J.. (CHEVALIER, CHARLES) (Entered: 07/24/2023)", + "document_number": "44", + "pacer_doc_id": "119020101297", + "pacer_seq_no": "142" + }, + { + "date_entered": "2023-07-25", + "date_filed": "2023-07-25", + "description": "Letter from Charles H. Chevalier to the Honorable Jose R. Almonte, U.S.M.J.. (CHEVALIER, CHARLES) (Entered: 07/25/2023)", + "document_number": "45", + "pacer_doc_id": "119020103060", + "pacer_seq_no": "144" + }, + { + "date_entered": "2023-07-25", + "date_filed": "2023-07-25", + "description": "TEXT ORDER: In light of the status of this matter (ECF No. 44), the status conference scheduled for July 31, 2023 is adjourned to October 30, 2023, at 3:00 p.m. Please dial (888) 684-8852 and enter access code 1364268. No later than October 23, 2023, the parties shall file a joint letter not to exceed five (5) pages summarizing the status of the case. To the extent the parties wish to raise a discovery dispute, they shall do so consistent with the Courts Case Management Order. So Ordered by Magistrate Judge Jose R. Almonte on 7/25/2023. (akw) Modified on 7/25/2023 (akw). (Entered: 07/25/2023)", + "document_number": "46", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-08-04", + "date_filed": "2023-08-04", + "description": "NOTICE of Change of Address by CHARLES H. CHEVALIER (CHEVALIER, CHARLES) (Entered: 08/04/2023)", + "document_number": "47", + "pacer_doc_id": "119020139492", + "pacer_seq_no": "148" + }, + { + "date_entered": "2023-08-07", + "date_filed": "2023-08-07", + "description": "CLERK'S QUALITY CONTROL MESSAGE - The 47 Notice of Address Change submitted by CHARLES H. CHEVALIER on behalf of multiple attorneys of record on 8/4/2023 appears to have address information that does not match the court's records for this case. Please be advised that each attorney must update their information by logging into their individual accounts. Please refer to the court's website at www.njd.uscourts.gov for information and instructions on maintaining your account. (jd, ) (Entered: 08/07/2023)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-08-18", + "date_filed": "2023-08-18", + "description": "NOTICE of Appearance by STEPHANIE-ROSE ORLANDO on behalf of ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. (ORLANDO, STEPHANIE-ROSE) (Entered: 08/18/2023)", + "document_number": "48", + "pacer_doc_id": "119020192736", + "pacer_seq_no": "152" + }, + { + "date_entered": "2023-09-28", + "date_filed": "2023-09-28", + "description": "Letter from Douglas Weider, Esq. re: Consent Order. (WEIDER, DOUGLAS) (Entered: 09/28/2023)", + "document_number": "49", + "pacer_doc_id": "119020446001", + "pacer_seq_no": "158" + }, + { + "date_entered": "2023-09-29", + "date_filed": "2023-09-29", + "description": "LETTER ORDER granting 49 Defendants request for an extension of time to exchange evidence, on or before 10/2/2023. Signed by Magistrate Judge Jose R. Almonte on 9/29/2023. (jd, ) (Entered: 09/29/2023)", + "document_number": "50", + "pacer_doc_id": "119020449586", + "pacer_seq_no": "160" + }, + { + "date_entered": "2023-10-06", + "date_filed": "2023-10-06", + "description": "Letter from Douglas Weider re: Indefiniteness. (Attachments: # 1 Exhibit 1, # 2 Exhibit 2, # 3 Exhibit 3, # 4 Exhibit 4)(WEIDER, DOUGLAS) (Entered: 10/06/2023)", + "document_number": "51", + "pacer_doc_id": "119020480979", + "pacer_seq_no": "163" + }, + { + "date_entered": "2023-10-09", + "date_filed": "2023-10-09", + "description": "STIPULATION Joint Stipulation Regarding Discovery of Electronically Stored Information by CATALYST PHARMACEUTICALS, INC., SERB SA. (CHEVALIER, CHARLES) (Entered: 10/09/2023)", + "document_number": "52", + "pacer_doc_id": "119020485009", + "pacer_seq_no": "165" + }, + { + "date_entered": "2023-10-10", + "date_filed": "2023-10-10", + "description": "STIPULATION AND ORDER regarding Discovery of Electronically stored information. Signed by Magistrate Judge Jose R. Almonte on 10/10/2023. (jd, ) (Entered: 10/10/2023)", + "document_number": "53", + "pacer_doc_id": "119020489192", + "pacer_seq_no": "167" + }, + { + "date_entered": "2023-10-23", + "date_filed": "2023-10-23", + "description": "Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 10/23/2023)", + "document_number": "54", + "pacer_doc_id": "119020540361", + "pacer_seq_no": "169" + }, + { + "date_entered": "2023-10-24", + "date_filed": "2023-10-24", + "description": "LETTER ORDER granting 54 Joint letter requesting an extension of the deadline to file status letters, until 10/24/2023. Signed by Magistrate Judge Jose R. Almonte on 10/24/2023. (jd, ) (Entered: 10/24/2023)", + "document_number": "55", + "pacer_doc_id": "119020543683", + "pacer_seq_no": "171" + }, + { + "date_entered": "2023-10-24", + "date_filed": "2023-10-24", + "description": "Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 10/24/2023)", + "document_number": "56", + "pacer_doc_id": "119020544918", + "pacer_seq_no": "174" + }, + { + "date_entered": "2023-10-30", + "date_filed": "2023-10-30", + "description": "STATEMENT JOINT CLAIM CONSTRUCTION AND PREHEARING STATEMENT by All Plaintiffs. (CHEVALIER, CHARLES) (Entered: 10/30/2023)", + "document_number": "57", + "pacer_doc_id": "119020563631", + "pacer_seq_no": "176" + }, + { + "date_entered": "2023-11-01", + "date_filed": "2023-10-30", + "description": "Minute Entry for proceedings held before Magistrate Judge Jose R. Almonte. A status conference was held on October 30, 2023. At the conference, the Court encouraged the parties to engage in settlement discussions prior to the next status conference. (akw) (Entered: 11/01/2023)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-11-01", + "date_filed": "2023-10-30", + "description": "TEXT ORDER: A status conference is scheduled for February 13, 2024, at 2:00 p.m. For the conference, please dial 973-437-5535 and enter Phone Conference ID: 455 187 757#. No later than February 6, 2024, the parties shall file a joint letter not to exceed five (5) pages summarizing the status of the case. To the extent the parties wish to raise a discovery dispute, they shall do so consistent with the Court's Case Management Order. So Ordered by Magistrate Judge Jose R. Almonte on 10/30/2023. (akw) (Entered: 11/01/2023)", + "document_number": "58", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-11-16", + "date_filed": "2023-10-30", + "description": "Amended Minute Entry for proceedings held before Magistrate Judge Jose R. Almonte. A status conference was held on October 30, 2023. At the conference, the Court encouraged the parties to engage in settlement discussions prior to the next status conference. (akw) (Entered: 11/16/2023)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-11-16", + "date_filed": "2023-11-16", + "description": "CLERK'S QUALITY CONTROL MESSAGE - Please note the MINUTE ENTRY filed by the Clerk's office on 10/30/2023 was docketed in error. Please disregard and refer to the amended minute entry.(akw) (Entered: 11/16/2023)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-12-07", + "date_filed": "2023-12-07", + "description": "Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 12/07/2023)", + "document_number": "59", + "pacer_doc_id": "119020691089", + "pacer_seq_no": "186" + }, + { + "date_entered": "2023-12-12", + "date_filed": "2023-12-08", + "description": "TEXT ORDER: Plaintiffs' request for an emergency status conference (ECF No. 59 ) is DENIED. The parties shall continue to exchange discovery in accordance with the Court's Pretrial Scheduling Order (ECF No. 38 ). However, the Court reminds the parties of their obligation to conduct discover in good faith. To the extent that any party engages in gamesmanship or acts in bad faith, this Court will impose necessary sanctions. Prior to the next status conference, the parties shall include in their JOINT letter, the efforts that they have made to meet and confer ONLY via video conference or in person to resolve these issues. So Ordered by Magistrate Judge Jose R. Almonte on 12/8/2023. (akw, ) (Entered: 12/12/2023)", + "document_number": "60", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2023-12-22", + "date_filed": "2023-12-22", + "description": "MARKMAN OPENING BRIEF (Attachments: # 1 Declaration of Lauren Watt, Esq., # 2 Exhibit 1, # 3 Exhibit 2, # 4 Exhibit 3, # 5 Exhibit 4, # 6 Exhibit 5, # 7 Exhibit 6, # 8 Exhibit 7, # 9 Exhibit 8, # 10 Exhibit 9, # 11 Exhibit 10, # 12 Exhibit 11, # 13 Exhibit 12, # 14 Exhibit 13, # 15 Exhibit 14, # 16 Exhibit 15, # 17 Exhibit 16, # 18 Exhibit 17)(CHEVALIER, CHARLES) (Entered: 12/22/2023)", + "document_number": "61", + "pacer_doc_id": "119020747217", + "pacer_seq_no": "190" + }, + { + "date_entered": "2023-12-22", + "date_filed": "2023-12-22", + "description": "BRIEF Opening Claim Construction Brief (WEIDER, DOUGLAS) (Entered: 12/22/2023)", + "document_number": "62", + "pacer_doc_id": "119020747364", + "pacer_seq_no": "192" + }, + { + "date_entered": "2023-12-22", + "date_filed": "2023-12-22", + "description": "DECLARATION of Alison M. King re 62 Brief Opening Claim Construction Brief by HETERO LABS LIMITED. (Attachments: # 1 Exhibit 1 U.S. Patent No. 10,626,088, # 2 Exhibit 2 U.S. Patent No. 11,060,128, # 3 Exhibit 3 U.S. Patent No. 11,268,128, # 4 Exhibit 4 U.S. Patent No. 11,274,331, # 5 Exhibit 5 U.S. Patent No. 11,274,332, # 6 Exhibit 6 Morris, # 7 Exhibit 7 Munowitz, # 8 Exhibit 8 Thomas, # 9 Exhibit 9 Shewale, # 10 Exhibit 10 Mahata, # 11 Exhibit 11 Pande, # 12 Exhibit 12 Sabbagh, # 13 Exhibit 13 Walraven, # 14 Exhibit 14 Bolt, # 15 Exhibit 15 Garcia-Martin, # 16 Exhibit 16 McDonagh, # 17 Exhibit 17 Fukunaga, # 18 Exhibit 18 Jetter, # 19 Exhibit 19 Chen, # 20 Exhibit 20 Morris, # 21 Declaration Dr. Pleasure, # 22 Declaration Dr. Lepore)(WEIDER, DOUGLAS) (Entered: 12/22/2023)", + "document_number": "63", + "pacer_doc_id": "119020747382", + "pacer_seq_no": "194" + }, + { + "date_entered": "2024-01-22", + "date_filed": "2024-01-22", + "description": "Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 01/22/2024)", + "document_number": "64", + "pacer_doc_id": "119020823810", + "pacer_seq_no": "197" + }, + { + "date_entered": "2024-01-23", + "date_filed": "2024-01-23", + "description": "LETTER ORDER granting 64 request for an extension of the Markman deadlines. Signed by Magistrate Judge Jose R. Almonte on 1/23/2024. (jd, ) (Entered: 01/23/2024)", + "document_number": "65", + "pacer_doc_id": "119020831159", + "pacer_seq_no": "199" + }, + { + "date_entered": "2024-02-06", + "date_filed": "2024-02-06", + "description": "Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 02/06/2024)", + "document_number": "66", + "pacer_doc_id": "119020882137", + "pacer_seq_no": "202" + }, + { + "date_entered": "2024-02-13", + "date_filed": "2024-02-13", + "description": "Minute Entry for proceedings held before Magistrate Judge Jose R. Almonte. A status conference was held on February 13, 2024. At the conference, the Court heard argument concerning the issue raised at ECF No. 66, ordered the parties to meet and confer regarding the dispute, and, to the extent the parties are unable to resolve the dispute, provided a briefing schedule and scheduled an in-person discovery dispute hearing. (akw, ) (Entered: 02/13/2024)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-02-13", + "date_filed": "2024-02-13", + "description": "TEXT ORDER: The parties shall meet and confer in good faith regarding the dispute raised at ECF No. 66 by February 20, 2024. To the extent the parties are unable to resolve the dispute, the parties shall brief the issue as follows: Plaintiffs shall file their opening brief by February 27, 2024. Defendants' response shall be filed by March 12, 2024. Plaintiffs' reply, if any, shall be filed by March 19, 2024. The Court will resolve the remaining disputes at an in-person discovery dispute hearing scheduled for April 24, 2024, at 10:00 a.m. The parties shall appear in person at the Frank R. Lautenberg Post Office and U.S. Courthouse, 2 Federal Square, Courtroom 9, Newark, New Jersey. To the extent Defendants seek to file a motion concerning Plaintiffs infringement contentions, any motion shall be filed in accordance with the aforementioned briefing schedule. So Ordered by Magistrate Judge Jose R. Almonte on 2/13/2024. (akw, ) (Entered: 02/13/2024)", + "document_number": "67", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-02-15", + "date_filed": "2024-02-15", + "description": "Transcript of Status Conference held on February 13, 2024, before Magistrate Judge Jose R. Almonte. Transcriber: King Transcription Services (973-237-6080). NOTICE REGARDING (1) REDACTION OF PERSONAL IDENTIFIERS IN TRANSCRIPTS AND (2) MOTION TO REDACT AND SEAL: The parties have seven (7) calendar days to file with the Court a Notice of Intent to Request Redaction of this Transcript to comply with Fed.R.Civ.P.5.2(a) (personal identifiers). Parties seeking to redact and seal this Transcript, or portions thereof, pursuant to L.Civ.R. 5.3(g) must e-file a Motion to Redact and Seal utilizing the event `Redact and Seal Transcript/Digital Recording`. Redaction Request to Transcription Agency due, but not filed, by 3/7/2024. Redacted Transcript Deadline set for 3/18/2024. Release of Transcript Restriction set for 5/15/2024. (adc) (Entered: 02/15/2024)", + "document_number": "68", + "pacer_doc_id": "119020912748", + "pacer_seq_no": "208" + }, + { + "date_entered": "2024-02-20", + "date_filed": "2024-02-20", + "description": "Letter from Defendant Anora Pharma Private Limited, et al., re consent order on briefing schedule. (WEIDER, DOUGLAS) (Entered: 02/20/2024)", + "document_number": "69", + "pacer_doc_id": "119020928366", + "pacer_seq_no": "210" + }, + { + "date_entered": "2024-02-21", + "date_filed": "2024-02-21", + "description": "TEXT ORDER: The Court adopts the parties' proposed briefing schedule for Defendants' proposed motion for leave to amend their invalidity contentions (ECF No. 69 ). Defendants shall file their opening brief on or before February 27, 2024. Plaintiffs shall file their opposition brief on or before March 19, 2024. Defendants shall file their reply brief on or before April 2, 2024. So Ordered by Magistrate Judge Jose R. Almonte on 2/21/2024. (akw) (Entered: 02/21/2024)", + "document_number": "70", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-02-27", + "date_filed": "2024-02-27", + "description": "MOTION to Amend/Correct Invalidity Contentions by All Defendants. (Attachments: # 1 Brief, # 2 Declaration, # 3 Text of Proposed Order)(MURTHA, WILLIAM) (Entered: 02/27/2024)", + "document_number": "71", + "pacer_doc_id": "119020964105", + "pacer_seq_no": "214" + }, + { + "date_entered": "2024-02-27", + "date_filed": "2024-02-27", + "description": "Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (Attachments: # 1 Exhibit C, # 2 Exhibit F, # 3 Exhibit G, # 4 Exhibit H)(CHEVALIER, CHARLES) NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 02/27/2024)", + "document_number": "72", + "pacer_doc_id": "119020964161", + "pacer_seq_no": "216" + }, + { + "date_entered": "2024-02-27", + "date_filed": "2024-02-27", + "description": "Exhibit to 72 Letter,, Exhibit A by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Exhibit B, # 2 Exhibit D, # 3 Exhibit E, # 4 Exhibit I)(CHEVALIER, CHARLES) (Entered: 02/27/2024)", + "document_number": "73", + "pacer_doc_id": "119020964173", + "pacer_seq_no": "218" + }, + { + "date_entered": "2024-02-28", + "date_filed": "2024-02-28", + "description": "Set Deadlines as to 71 MOTION to Amend/Correct Invalidity Contentions. Motion set for 4/1/2024 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 02/28/2024)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-03-12", + "date_filed": "2024-03-12", + "description": "TEXT ORDER: By March 14, 2024, the parties shall file a joint letter informing the Court whether the issues raised at ECF No. 66 have been resolved. See ECF No. 67 . So Ordered by Magistrate Judge Jose R. Almonte on 3/12/2024. (akw) (Entered: 03/12/2024)", + "document_number": "74", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-03-12", + "date_filed": "2024-03-12", + "description": "Letter from Defendants to Judge Almonte - (Under Seal). (ABRAHAM, ERIC) NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 03/12/2024)", + "document_number": "75", + "pacer_doc_id": "119021022055", + "pacer_seq_no": "226" + }, + { + "date_entered": "2024-03-14", + "date_filed": "2024-03-14", + "description": "Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. re 74 Order. (CHEVALIER, CHARLES) (Entered: 03/14/2024)", + "document_number": "76", + "pacer_doc_id": "119021035182", + "pacer_seq_no": "228" + }, + { + "date_entered": "2024-03-19", + "date_filed": "2024-03-19", + "description": "Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. re 75 Letter,,. (Attachments: # 1 Exhibit J, # 2 Exhibit K, # 3 Exhibit L)(CHEVALIER, CHARLES) NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 03/19/2024)", + "document_number": "77", + "pacer_doc_id": "119021057720", + "pacer_seq_no": "231" + }, + { + "date_entered": "2024-03-19", + "date_filed": "2024-03-19", + "description": "Exhibit to 77 Letter,, Exhibit M by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Exhibit N, # 2 Exhibit O, # 3 Exhibit P, # 4 Exhibit Q, # 5 Exhibit R, # 6 Exhibit S, # 7 Exhibit T)(CHEVALIER, CHARLES) (Entered: 03/19/2024)", + "document_number": "78", + "pacer_doc_id": "119021057751", + "pacer_seq_no": "234" + }, + { + "date_entered": "2024-03-19", + "date_filed": "2024-03-19", + "description": "RESPONSE in Opposition filed by CATALYST PHARMACEUTICALS, INC., SERB SA re 71 MOTION to Amend/Correct Invalidity Contentions (Attachments: # 1 Exhibit 2)(CHEVALIER, CHARLES) NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 03/19/2024)", + "document_number": "79", + "pacer_doc_id": "119021058444", + "pacer_seq_no": "237" + }, + { + "date_entered": "2024-03-19", + "date_filed": "2024-03-19", + "description": "DECLARATION of of Alex Alfano re 79 Response in Opposition to Motion,, by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Exhibit 4, # 2 Exhibit 5, # 3 Exhibit 6, # 4 Exhibit 7, # 5 Exhibit 8, # 6 Exhibit 9, # 7 Exhibit 10, # 8 Exhibit 11, # 9 Exhibit 12, # 10 Exhibit 13, # 11 Exhibit 14, # 12 Exhibit 15)(CHEVALIER, CHARLES) (Entered: 03/19/2024)", + "document_number": "80", + "pacer_doc_id": "119021058451", + "pacer_seq_no": "240" + }, + { + "date_entered": "2024-03-28", + "date_filed": "2024-03-28", + "description": "MARKMAN RESPONSE BRIEF re 61 Markman Opening Brief, (Attachments: # 1 Declaration Declaration of Alison King, # 2 Exhibit Exhibit 21, # 3 Exhibit Exhibit 22, # 4 Exhibit Exhibit 23, # 5 Exhibit Exhibit 24, # 6 Exhibit Exhibit 25, # 7 Declaration Declaration of Dr. Lepore, # 8 Declaration Declaration of Dr. Pleasure)(MURTHA, WILLIAM) NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 03/28/2024)", + "document_number": "81", + "pacer_doc_id": "119021128134", + "pacer_seq_no": "243" + }, + { + "date_entered": "2024-03-28", + "date_filed": "2024-03-28", + "description": "MARKMAN RESPONSE BRIEF re 61 Markman Opening Brief, (Attachments: # 1 Declaration of Lauren Watt, # 2 Exhibit 18, # 3 Exhibit 19, # 4 Exhibit 20, # 5 Exhibit 21, # 6 Exhibit 22, # 7 Exhibit 23, # 8 Exhibit 24, # 9 Exhibit 25, # 10 Exhibit 26, # 11 Exhibit 27, # 12 Exhibit 28, # 13 Exhibit 29, # 14 Exhibit 30, # 15 Exhibit 31, # 16 Exhibit 32, # 17 Exhibit 33, # 18 Exhibit 34, # 19 Exhibit 35, # 20 Exhibit 36, # 21 Exhibit 37, # 22 Exhibit 38)(CHEVALIER, CHARLES) (Entered: 03/28/2024)", + "document_number": "82", + "pacer_doc_id": "119021128204", + "pacer_seq_no": "246" + }, + { + "date_entered": "2024-04-02", + "date_filed": "2024-04-02", + "description": "REPLY BRIEF to Opposition to Motion filed by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. re 71 MOTION to Amend/Correct Invalidity Contentions (WEIDER, DOUGLAS) (Entered: 04/02/2024)", + "document_number": "83", + "pacer_doc_id": "119021151404", + "pacer_seq_no": "249" + }, + { + "date_entered": "2024-04-02", + "date_filed": "2024-04-02", + "description": "MOTION to Seal by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (Attachments: # 1 Declaration Declaration of Alison M. King, # 2 Exhibit 1, # 3 Exhibit 2, # 4 Exhibit 3, # 5 Exhibit 4, # 6 Exhibit 5, # 7 Declaration Declaration of William Murtha, # 8 Exhibit 1, # 9 Declaration Declaration of James Richter, # 10 Text of Proposed Order)(WEIDER, DOUGLAS) (Entered: 04/02/2024)", + "document_number": "84", + "pacer_doc_id": "119021151456", + "pacer_seq_no": "252" + }, + { + "date_entered": "2024-04-03", + "date_filed": "2024-04-02", + "description": "*REDACTED* Transcript of Status Conference held on February 13, 2024, before Magistrate Judge Jose R. Almonte. Transcriber: King Transcription Services (973-237-6080). NOTICE REGARDING (1) REDACTION OF PERSONAL IDENTIFIERS IN TRANSCRIPTS AND (2) MOTION TO REDACT AND SEAL: The parties have seven (7) calendar days to file with the Court a Notice of Intent to Request Redaction of this Transcript to comply with Fed.R.Civ.P.5.2(a) (personal identifiers). Parties seeking to redact and seal this Transcript, or portions thereof, pursuant to L.Civ.R. 5.3(g) must e-file a Motion to Redact and Seal utilizing the event `Redact and Seal Transcript/Digital Recording`. Redaction Request to Transcription Agency due, but not filed, by 4/23/2024. Redacted Transcript Deadline set for 5/3/2024. Release of Transcript Restriction set for 7/1/2024. (adc) (Entered: 04/03/2024)", + "document_number": "85", + "pacer_doc_id": "119021153615", + "pacer_seq_no": "254" + }, + { + "date_entered": "2024-04-03", + "date_filed": "2024-04-03", + "description": "ORDER granting Defendants' 84 Motion to Seal. Signed by Magistrate Judge Jose R. Almonte on 4/3/2024. (wh) (Entered: 04/03/2024)", + "document_number": "86", + "pacer_doc_id": "119021153638", + "pacer_seq_no": "256" + }, + { + "date_entered": "2024-04-11", + "date_filed": "2024-04-11", + "description": "MOTION to Seal by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Declaration of Charles H. Chevalier, # 2 Index, # 3 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 04/11/2024)", + "document_number": "87", + "pacer_doc_id": "119021198525", + "pacer_seq_no": "258" + }, + { + "date_entered": "2024-04-11", + "date_filed": "2024-04-11", + "description": "Letter from Douglas Weider. (WEIDER, DOUGLAS) (Entered: 04/11/2024)", + "document_number": "88", + "pacer_doc_id": "119021198747", + "pacer_seq_no": "260" + }, + { + "date_entered": "2024-04-11", + "date_filed": "2024-04-11", + "description": "REDACTION to 81 Markman Response Brief,,, by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Exhibit 21, # 2 Declaration of Samuel Pleasure, M.D., Ph.D.)(CHEVALIER, CHARLES) (Entered: 04/11/2024)", + "document_number": "89", + "pacer_doc_id": "119021199063", + "pacer_seq_no": "262" + }, + { + "date_entered": "2024-04-11", + "date_filed": "2024-04-11", + "description": "Letter from Charles H. Chevalier to The Honorable Michael E. Farbiarz, U.S.D.J. (CHEVALIER, CHARLES) (Entered: 04/11/2024)", + "document_number": "90", + "pacer_doc_id": "119021199126", + "pacer_seq_no": "265" + }, + { + "date_entered": "2024-04-12", + "date_filed": "2024-04-12", + "description": "ORDER granting 87 Motion to Seal. Signed by Magistrate Judge Jose R. Almonte on 4/12/2024. (jd, ) (Entered: 04/12/2024)", + "document_number": "91", + "pacer_doc_id": "119021201154", + "pacer_seq_no": "267" + }, + { + "date_entered": "2024-04-12", + "date_filed": "2024-04-12", + "description": "LETTER ORDER granting 88 the parties request for leave to file respective motions to strike and proposed briefing schedule. Signed by Magistrate Judge Jose R. Almonte on 4/12/2024. (jd, ) (Entered: 04/12/2024)", + "document_number": "92", + "pacer_doc_id": "119021204159", + "pacer_seq_no": "269" + }, + { + "date_entered": "2024-04-15", + "date_filed": "2024-04-15", + "description": "TEXT ORDER: The Court understands the parties letter at Docket Entry 121 to suggest the Markman hearing should be held after some or all of the parties various open motions have been resolved by Judge Almonte. The parties shall file a brief joint letter on or before April 18 explaining which of these open motions they believe should be resolved prior to holding the Markman hearing. So Ordered by Judge Michael E. Farbiarz on 4/15/2024. (ro, ) (Entered: 04/15/2024)", + "document_number": "93", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-04-16", + "date_filed": "2024-04-16", + "description": "MOTION to Seal ECF 79 by All Defendants. (Attachments: # 1 Declaration, # 2 Index, # 3 Text of Proposed Order)(MURTHA, WILLIAM) (Entered: 04/16/2024)", + "document_number": "94", + "pacer_doc_id": "119021217857", + "pacer_seq_no": "274" + }, + { + "date_entered": "2024-04-18", + "date_filed": "2024-04-18", + "description": "Set Deadlines as to 94 MOTION to Seal ECF 79. Motion set for 5/20/2024 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 04/18/2024)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-04-18", + "date_filed": "2024-04-18", + "description": "Letter from Charles H. Chevalier to The Honorable Michael E. Farbiarz, U.S.D.J re 93 Order,. (CHEVALIER, CHARLES) (Entered: 04/18/2024)", + "document_number": "95", + "pacer_doc_id": "119021230347", + "pacer_seq_no": "279" + }, + { + "date_entered": "2024-04-19", + "date_filed": "2024-04-19", + "description": "ORDER granting 94 Motion to Seal. Signed by Magistrate Judge Jose R. Almonte on 4/19/2024. (jd, ) (Entered: 04/19/2024)", + "document_number": "96", + "pacer_doc_id": "119021234294", + "pacer_seq_no": "282" + }, + { + "date_entered": "2024-04-19", + "date_filed": "2024-04-19", + "description": "LETTER ORDER granting the parties' request as set forth in the parties' joint letter dated 4/18/2024 that the parties be allowed to submit a joint status letter within three days of the resolution of forthcoming motions to strike. Signed by Judge Michael E. Farbiarz on 4/19/2024. (mxw, ) Modified on 4/22/2024 (ams, ). (Entered: 04/19/2024)", + "document_number": "97", + "pacer_doc_id": "119021235522", + "pacer_seq_no": "284" + }, + { + "date_entered": "2024-04-19", + "date_filed": "2024-04-19", + "description": "MOTION to Strike by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (Attachments: # 1 Brief, # 2 Declaration of Alison King, # 3 Exhibit 1, # 4 Exhibit 2, # 5 Exhibit 3, # 6 Exhibit 4, # 7 Text of Proposed Order)(WEIDER, DOUGLAS) (Entered: 04/19/2024)", + "document_number": "98", + "pacer_doc_id": "119021235843", + "pacer_seq_no": "286" + }, + { + "date_entered": "2024-04-19", + "date_filed": "2024-04-19", + "description": "MOTION to Strike 81 Markman Response Brief,,, by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Declaration of Lauren Watt, Esq., # 2 Exhibit D, # 3 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 04/19/2024)", + "document_number": "99", + "pacer_doc_id": "119021235853", + "pacer_seq_no": "288" + }, + { + "date_entered": "2024-04-19", + "date_filed": "2024-04-19", + "description": "MEMORANDUM in Support filed by CATALYST PHARMACEUTICALS, INC., SERB SA re 99 MOTION to Strike 81 Markman Response Brief,,, (Attachments: # 1 Exhibit A, # 2 Exhibit B, # 3 Exhibit C)(CHEVALIER, CHARLES) NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 04/19/2024)", + "document_number": "100", + "pacer_doc_id": "119021235875", + "pacer_seq_no": "291" + }, + { + "date_entered": "2024-04-22", + "date_filed": "2024-04-22", + "description": "Set Deadlines as to 99 MOTION to Strike 81 Markman Response Brief, 98 MOTION to Strike. Motion set for 5/20/2024 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 04/22/2024)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-05-01", + "date_filed": "2024-04-24", + "description": "Minute Entry for proceedings held before Magistrate Judge Jose R. Almonte. A discovery dispute hearing was held on April 24, 2024. The parties presented their arguments regarding whether the production of stability samples should be compelled. The Court reserved judgment and will issue a letter order. (Court Reporter, ECR) (akw, ) (Entered: 05/01/2024)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-05-02", + "date_filed": "2024-04-26", + "description": "Transcript of Status Conference held on April 24, 2024, before Magistrate Judge Jose R. Almonte. Transcriber: King Transcription Services (973-237-6080). NOTICE REGARDING (1) REDACTION OF PERSONAL IDENTIFIERS IN TRANSCRIPTS AND (2) MOTION TO REDACT AND SEAL: The parties have seven (7) calendar days to file with the Court a Notice of Intent to Request Redaction of this Transcript to comply with Fed.R.Civ.P.5.2(a) (personal identifiers). Parties seeking to redact and seal this Transcript, or portions thereof, pursuant to L.Civ.R. 5.3(g) must e-file a Motion to Redact and Seal utilizing the event `Redact and Seal Transcript/Digital Recording`. Redaction Request to Transcription Agency due, but not filed, by 5/17/2024. Redacted Transcript Deadline set for 5/28/2024. Release of Transcript Restriction set for 7/25/2024. (adc) (Entered: 05/02/2024)", + "document_number": "105", + "pacer_doc_id": "119021284842", + "pacer_seq_no": "311" + }, + { + "date_entered": "2024-04-29", + "date_filed": "2024-04-29", + "description": "REDACTION to 75 Letter,, by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (ABRAHAM, ERIC) (Entered: 04/29/2024)", + "document_number": "101", + "pacer_doc_id": "119021265097", + "pacer_seq_no": "298" + }, + { + "date_entered": "2024-04-29", + "date_filed": "2024-04-29", + "description": "REDACTION to 77 Letter,, by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (ABRAHAM, ERIC) (Entered: 04/29/2024)", + "document_number": "102", + "pacer_doc_id": "119021265106", + "pacer_seq_no": "301" + }, + { + "date_entered": "2024-04-29", + "date_filed": "2024-04-29", + "description": "REDACTION to 72 Letter,, by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (ABRAHAM, ERIC) (Entered: 04/29/2024)", + "document_number": "103", + "pacer_doc_id": "119021265114", + "pacer_seq_no": "304" + }, + { + "date_entered": "2024-04-30", + "date_filed": "2024-04-30", + "description": "Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 04/30/2024)", + "document_number": "104", + "pacer_doc_id": "119021276074", + "pacer_seq_no": "307" + }, + { + "date_entered": "2024-05-03", + "date_filed": "2024-05-02", + "description": "LETTER ORDER re 104 Directing the Clerk of Court to unseal specified documents. Signed by Magistrate Judge Jose R. Almonte on 5/2/2024. (jd, ) (Entered: 05/03/2024)", + "document_number": "106", + "pacer_doc_id": "119021290852", + "pacer_seq_no": "313" + }, + { + "date_entered": "2024-05-03", + "date_filed": "2024-05-03", + "description": "LETTER ORDER denying Plaintiffs' request to compel the production of stability samples. Signed by Magistrate Judge Jose R. Almonte on 5/3/2024. (mxw, ) (Entered: 05/03/2024)", + "document_number": "107", + "pacer_doc_id": "119021293042", + "pacer_seq_no": "316" + }, + { + "date_entered": "2024-05-03", + "date_filed": "2024-05-03", + "description": "BRIEF in Opposition filed by CATALYST PHARMACEUTICALS, INC., SERB SA re 98 MOTION to Strike (Attachments: # 1 Declaration of Lauren Watt, Esq., # 2 Exhibit A, # 3 Exhibit B, # 4 Exhibit C, # 5 Exhibit D, # 6 Exhibit E, # 7 Exhibit F)(CHEVALIER, CHARLES) (Entered: 05/03/2024)", + "document_number": "108", + "pacer_doc_id": "119021293715", + "pacer_seq_no": "318" + }, + { + "date_entered": "2024-05-03", + "date_filed": "2024-05-03", + "description": "BRIEF in Opposition filed by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. re 99 MOTION to Strike 81 Markman Response Brief,,, (Attachments: # 1 Declaration of Alison King, # 2 Exhibit Exhibit 1, # 3 Exhibit Exhibit 2, # 4 Exhibit Exhibit 3, # 5 Exhibit Exhibit 4, # 6 Exhibit Exhibit 5, # 7 Exhibit Exhibit 6, # 8 Exhibit Exhibit 7, # 9 Exhibit Appendix A)(WEIDER, DOUGLAS) NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 05/03/2024)", + "document_number": "109", + "pacer_doc_id": "119021293747", + "pacer_seq_no": "321" + }, + { + "date_entered": "2024-05-07", + "date_filed": "2024-05-07", + "description": "MOTION for Leave to Appear Pro Hac Vice of Cristen A. Corry by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Declaration of Charles H. Chevalier, # 2 Declaration of Cristen A. Corry, # 3 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 05/07/2024)", + "document_number": "110", + "pacer_doc_id": "119021299842", + "pacer_seq_no": "326" + }, + { + "date_entered": "2024-05-08", + "date_filed": "2024-05-08", + "description": "ORDER granting 110 Motion for Leave to Appear Pro Hac Vice as to Attorney, CRISTEN A. CORRY. Signed by Magistrate Judge Jose R. Almonte on 5/8/2024. (jd, ) (Entered: 05/08/2024)", + "document_number": "111", + "pacer_doc_id": "119021307274", + "pacer_seq_no": "328" + }, + { + "date_entered": "2024-05-09", + "date_filed": "2024-05-09", + "description": "Notice of Request by Pro Hac Vice Cristen A. Corry to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 250 receipt number ANJDC-15353654.) (CHEVALIER, CHARLES) (Entered: 05/09/2024)", + "document_number": "112", + "pacer_doc_id": "119021310061", + "pacer_seq_no": "330" + }, + { + "date_entered": "2024-05-10", + "date_filed": "2024-05-10", + "description": "Pro Hac Vice counsel, CRISTEN A. CORRY, has been added to receive Notices of Electronic Filing. Pursuant to L.Civ.R. 101.1, only local counsel are entitled to sign and file papers, enter appearances and receive payments on judgments, decrees or orders. (jd, ) (Entered: 05/10/2024)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-05-15", + "date_filed": "2024-05-15", + "description": "RESPONSE in Support filed by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. re 98 MOTION to Strike (WEIDER, DOUGLAS) (Entered: 05/15/2024)", + "document_number": "113", + "pacer_doc_id": "119021335343", + "pacer_seq_no": "335" + }, + { + "date_entered": "2024-05-15", + "date_filed": "2024-05-15", + "description": "REPLY BRIEF to Opposition to Motion filed by CATALYST PHARMACEUTICALS, INC., SERB SA re 99 MOTION to Strike 81 Markman Response Brief,,, (Attachments: # 1 Declaration of Lauren Watt, # 2 Exhibit E)(CHEVALIER, CHARLES) (Entered: 05/15/2024)", + "document_number": "114", + "pacer_doc_id": "119021335426", + "pacer_seq_no": "338" + }, + { + "date_entered": "2024-05-17", + "date_filed": "2024-05-17", + "description": "Letter from Eric Abraham To the Honorable Jose R. Almonte, U.S.M.J. with Redacted Order. (Attachments: # 1 Supplement Redacted Order)(MURTHA, WILLIAM) (Entered: 05/17/2024)", + "document_number": "115", + "pacer_doc_id": "119021344098", + "pacer_seq_no": "341" + }, + { + "date_entered": "2024-05-17", + "date_filed": "2024-05-17", + "description": "APPEAL OF MAGISTRATE JUDGE DECISION to District Court by CATALYST PHARMACEUTICALS, INC., SERB SA re 107 Order (Attachments: # 1 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 05/17/2024)", + "document_number": "116", + "pacer_doc_id": "119021344315", + "pacer_seq_no": "343" + }, + { + "date_entered": "2024-05-17", + "date_filed": "2024-05-17", + "description": "MEMORANDUM in Support filed by CATALYST PHARMACEUTICALS, INC., SERB SA re 116 APPEAL OF MAGISTRATE JUDGE DECISION to District Court by CATALYST PHARMACEUTICALS, INC., SERB SA re 107 Order (CHEVALIER, CHARLES) NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 05/17/2024)", + "document_number": "117", + "pacer_doc_id": "119021344319", + "pacer_seq_no": "346" + }, + { + "date_entered": "2024-05-21", + "date_filed": "2024-05-21", + "description": "LETTER ORDER granting 115 Defendants request that portions of the letter Order remain under seal. Signed by Magistrate Judge Jose R. Almonte on 5/21/2024. (jd, ) (Entered: 05/21/2024)", + "document_number": "118", + "pacer_doc_id": "119021351732", + "pacer_seq_no": "349" + }, + { + "date_entered": "2024-05-22", + "date_filed": "2024-05-22", + "description": "Set Deadlines as to 116 APPEAL OF MAGISTRATE JUDGE DECISION to District Court by CATALYST PHARMACEUTICALS, INC., SERB SA re 107 Order. Motion set for 6/17/2024 before Judge Michael E. Farbiarz. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s Office and does not supersede any previous or subsequent orders from the Court. (sm) (Entered: 05/22/2024)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-05-29", + "date_filed": "2024-05-29", + "description": "MOTION to Seal by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Declaration of Charles H. Chevalier, # 2 Index, # 3 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 05/29/2024)", + "document_number": "119", + "pacer_doc_id": "119021374937", + "pacer_seq_no": "355" + }, + { + "date_entered": "2024-05-29", + "date_filed": "2024-05-29", + "description": "REDACTION to 100 Memorandum in Support of Motion,, by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Exhibit A, # 2 Exhibit B, # 3 Exhibit C)(CHEVALIER, CHARLES) (Entered: 05/29/2024)", + "document_number": "120", + "pacer_doc_id": "119021374957", + "pacer_seq_no": "357" + }, + { + "date_entered": "2024-05-29", + "date_filed": "2024-05-29", + "description": "REDACTION to 109 Brief in Opposition to Motion,,, by CATALYST PHARMACEUTICALS, INC., SERB SA. (CHEVALIER, CHARLES) (Entered: 05/29/2024)", + "document_number": "121", + "pacer_doc_id": "119021374974", + "pacer_seq_no": "360" + }, + { + "date_entered": "2024-05-29", + "date_filed": "2024-05-29", + "description": "Set Deadlines as to 119 MOTION to Seal. Motion set for 7/1/2024 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk's Office and does not supersede any previous or subsequent orders from the Court. (dam) (Entered: 05/29/2024)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-05-31", + "date_filed": "2024-05-31", + "description": "ORDER granting 119 Motion to Seal. Signed by Magistrate Judge Jose R. Almonte on 5/31/2024. (jd, ) (Entered: 05/31/2024)", + "document_number": "122", + "pacer_doc_id": "119021385704", + "pacer_seq_no": "366" + }, + { + "date_entered": "2024-06-03", + "date_filed": "2024-06-03", + "description": "RESPONSE in Opposition filed by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC. re 116 APPEAL OF MAGISTRATE JUDGE DECISION to District Court by CATALYST PHARMACEUTICALS, INC., SERB SA re 107 Order (WEIDER, DOUGLAS) NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 06/03/2024)", + "document_number": "123", + "pacer_doc_id": "119021395651", + "pacer_seq_no": "368" + }, + { + "date_entered": "2024-06-03", + "date_filed": "2024-06-03", + "description": "Letter from Charles H. Chevalier to The Honorable Michael E. Farbiarz, U.S.D.J. (CHEVALIER, CHARLES) (Entered: 06/03/2024)", + "document_number": "124", + "pacer_doc_id": "119021395685", + "pacer_seq_no": "371" + }, + { + "date_entered": "2024-06-03", + "date_filed": "2024-06-03", + "description": "Exhibit to 124 Letter by CATALYST PHARMACEUTICALS, INC., SERB SA. (CHEVALIER, CHARLES) NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 06/03/2024)", + "document_number": "125", + "pacer_doc_id": "119021395688", + "pacer_seq_no": "373" + }, + { + "date_entered": "2024-06-10", + "date_filed": "2024-06-10", + "description": "REPLY to Response to Motion filed by CATALYST PHARMACEUTICALS, INC., SERB SA re 116 APPEAL OF MAGISTRATE JUDGE DECISION to District Court by CATALYST PHARMACEUTICALS, INC., SERB SA re 107 Order (CHEVALIER, CHARLES) NOTICE TO COUNSEL: Counsel is advised that pursuant to Local Civil Rule 5.3(c)(2), a single, consolidated motion to seal shall be filed within 14 days following the completed briefing of the materials sought to be sealed, or within 14 days following the date on which the last of such materials was filed under temporary seal if the motion is resolved, unless otherwise directed by the Court. (Entered: 06/10/2024)", + "document_number": "126", + "pacer_doc_id": "119021421261", + "pacer_seq_no": "376" + }, + { + "date_entered": "2024-06-24", + "date_filed": "2024-06-24", + "description": "MOTION to Seal by All Defendants. (Attachments: # 1 Declaration, # 2 Exhibit Index, # 3 Exhibit, # 4 Exhibit, # 5 Exhibit, # 6 Exhibit, # 7 Text of Proposed Order)(MURTHA, WILLIAM) (Entered: 06/24/2024)", + "document_number": "127", + "pacer_doc_id": "119021474189", + "pacer_seq_no": "379" + }, + { + "date_entered": "2024-06-26", + "date_filed": "2024-06-25", + "description": "ORDER granting Defendants' 127 Motion to Seal. Signed by Magistrate Judge Jose R. Almonte on 6/25/2024. (wh) (Entered: 06/26/2024)", + "document_number": "128", + "pacer_doc_id": "119021482202", + "pacer_seq_no": "384" + }, + { + "date_entered": "2024-06-26", + "date_filed": "2024-06-26", + "description": "Set Deadlines as to 127 MOTION to Seal . Motion set for 8/5/2024 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s Office and does not supersede any previous or subsequent orders from the Court. (mxw, ) (Entered: 06/26/2024)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-07-01", + "date_filed": "2024-07-01", + "description": "TEXT ORDER: In light of our order at ECF No. 128 which sealed the exhibit at ECF No. 125, the Court orders the seal of the transcript at ECF No. 105, which is identical to the exhibit sealed at 125. The parties may write to the Court within seven (7) business days if they wish to object. So Ordered by Magistrate Judge Jose R. Almonte on 7/1/2024. (akw, ) (Entered: 07/01/2024)", + "document_number": "129", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-07-02", + "date_filed": "2024-07-01", + "description": "SEALED LETTER ORDER. Signed by Magistrate Judge Jose R. Almonte on 7/1/2024. (wh) (Entered: 07/02/2024)", + "document_number": "130", + "pacer_doc_id": "119021502855", + "pacer_seq_no": "388" + }, + { + "date_entered": "2024-07-15", + "date_filed": "2024-07-15", + "description": "MOTION for Leave to Appear Pro Hac Vice by CATALYST PHARMACEUTICALS, INC., SERB SA. (Attachments: # 1 Declaration of Charles H. Chevalier, # 2 Declaration of Andrew Z. Barnett, # 3 Text of Proposed Order)(CHEVALIER, CHARLES) (Entered: 07/15/2024)", + "document_number": "131", + "pacer_doc_id": "119021541345", + "pacer_seq_no": "392" + }, + { + "date_entered": "2024-07-16", + "date_filed": "2024-07-16", + "description": "Set Deadlines as to 131 MOTION for Leave to Appear Pro Hac Vice. Motion set for 8/19/2024 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 07/16/2024)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-07-16", + "date_filed": "2024-07-16", + "description": "Letter from Charles H. Chevalier to The Honorable Jose R. Almonte, U.S.M.J. (CHEVALIER, CHARLES) (Entered: 07/16/2024)", + "document_number": "132", + "pacer_doc_id": "119021549144", + "pacer_seq_no": "397" + }, + { + "date_entered": "2024-07-16", + "date_filed": "2024-07-16", + "description": "ORDER granting 131 Motion for Leave to Appear Pro Hac Vice as to Counsel ANDREW Z. BARNETT. Signed by Magistrate Judge Jose R. Almonte on 7/16/2024. (jd, ) (Entered: 07/16/2024)", + "document_number": "133", + "pacer_doc_id": "119021549305", + "pacer_seq_no": "399" + }, + { + "date_entered": "2024-07-16", + "date_filed": "2024-07-16", + "description": "Notice of Request by Pro Hac Vice Andrew Z. Barnett to receive Notices of Electronic Filings. ( Pro Hac Vice fee $ 250 receipt number ANJDC-15521855.) (CHEVALIER, CHARLES) (Entered: 07/16/2024)", + "document_number": "134", + "pacer_doc_id": "119021549451", + "pacer_seq_no": "401" + }, + { + "date_entered": "2024-07-18", + "date_filed": "2024-07-18", + "description": "Pro Hac Vice counsel, ANDREW Z. BARNETT, has been added to receive Notices of Electronic Filing. Pursuant to L.Civ.R. 101.1, only local counsel are entitled to sign and file papers, enter appearances and receive payments on judgments, decrees or orders. (jd, ) (Entered: 07/18/2024)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-08-12", + "date_filed": "2024-08-12", + "description": "TEXT ORDER: A status conference is scheduled for August 20, 2024, at 4:00 p.m. For the conference, please dial 973-43-5535 and enter Phone conference ID: 577 551 351#. The purpose of the conference is to discuss whether, in light of recent developments in the cases, the Court still needs to decide (1) Lupin's motion to compel Plaintiffs to supplement their infringement contentions (ECF No. 80 in the Lupin Action), (2) the parties' competing motions to strike Markman Hearing submissions, and (3) the discovery dispute raised at ECF No. 161 in the Lupin action. So Ordered by Magistrate Judge Jose R. Almonte on 8/12/2024. (akw, ) (Entered: 08/12/2024)", + "document_number": "135", + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-08-12", + "date_filed": "2024-08-12", + "description": "MOTION for Leave to Appear Pro Hac Vice Geng Hua, Esq. by ANNORA PHARMA PRIVATE LIMITED, GRACE CONSULTING SERVICES, INC., HETERO LABS LIMITED, HETERO USA, INC.. (Attachments: # 1 Certification Eric I. Abraham, Esq., # 2 Certification Geng Hua, Esq., # 3 Text of Proposed Order)(ABRAHAM, ERIC) (Entered: 08/12/2024)", + "document_number": "136", + "pacer_doc_id": "119021630192", + "pacer_seq_no": "409" + }, + { + "date_entered": "2024-08-13", + "date_filed": "2024-08-13", + "description": "Set Deadlines as to 136 MOTION for Leave to Appear Pro Hac Vice Geng Hua, Esq.. Motion set for 9/16/2024 before Judge Michael E. Farbiarz. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 08/13/2024)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-08-13", + "date_filed": "2024-08-13", + "description": "Reset Deadlines as to 136 MOTION for Leave to Appear Pro Hac Vice Geng Hua, Esq.. Motion reset for 9/16/2024 before Magistrate Judge Jose R. Almonte. Unless otherwise directed by the Court, this motion will be decided on the papers and no appearances are required. Note that this is an automatically generated message from the Clerk`s Office and does not supersede any previous or subsequent orders from the Court. (jd, ) (Entered: 08/13/2024)", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null + }, + { + "date_entered": "2024-08-13", + "date_filed": "2024-08-13", + "description": "ORDER granting 136 Motion for Leave to Appear Pro Hac Vice as to attorney, GENG HUA. Signed by Magistrate Judge Jose R. Almonte on 8/13/2024. (jd, ) (Entered: 08/13/2024)", + "document_number": "137", + "pacer_doc_id": "119021634507", + "pacer_seq_no": "417" + } + ], + "docket_number": "2:23-cv-01194", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MEF", + "federal_dn_judge_initials_referred": "JRA", + "federal_dn_office_code": "2", + "jurisdiction": "Federal Question", + "jury_demand": "None", + "mdl_status": "", + "nature_of_suit": "835 Patent - Abbreviated New Drug Application(ANDA)", + "ordered_by": "date_filed", + "parties": [ + { + "attorneys": [ + { + "contact": "STERNE KESSLER GOLDSTEIN & FOX\n1101 K STREET, N.W.\n10TH FLOOR\nWASHINGTON, DC 20005\n202-772-8805\nEmail: dvarughese@sternekessler.com\n", + "name": "DENNIES VARUGHESE", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "GIBBONS P.C.\n141 WEST FRONT STREET\nSUITE 240\nRED BANK, NJ 07701\n732-704-5801\nEmail: cgaddis@gibbonslaw.com\n", + "name": "CHRISTINE A. GADDIS", + "roles": [ + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "GIBBONS PC\nONE GATEWAY CENTER\nNEWARK, NJ 07102\n973-596-4500\nEmail: cchevalier@gibbonslaw.com\n", + "name": "CHARLES H. CHEVALIER", + "roles": [ + "ATTORNEY TO BE NOTICED" + ] + } + ], + "date_terminated": null, + "extra_info": "", + "name": "CATALYST PHARMACEUTICALS, INC.", + "type": "Plaintiff" + }, + { + "attorneys": [ + { + "contact": "STERNE KESSLER GOLDSTEIN & FOX\n1101 K STREET, N.W.\n10TH FLOOR\nWASHINGTON, DC 20005\n202-772-8805\nEmail: dvarughese@sternekessler.com\n", + "name": "DENNIES VARUGHESE", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "GIBBONS P.C.\n141 WEST FRONT STREET\nSUITE 240\nRED BANK, NJ 07701\n732-704-5801\nEmail: cgaddis@gibbonslaw.com\n", + "name": "CHRISTINE A. GADDIS", + "roles": [ + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "GIBBONS PC\nONE GATEWAY CENTER\nNEWARK, NJ 07102\n973-596-4500\nEmail: cchevalier@gibbonslaw.com\n", + "name": "CHARLES H. CHEVALIER", + "roles": [ + "ATTORNEY TO BE NOTICED" + ] + } + ], + "date_terminated": null, + "extra_info": "", + "name": "SERB SA", + "type": "Plaintiff" + }, + { + "attorneys": [ + { + "contact": "HILL WALLACK, LLP\n21 ROSZEL ROAD\nPRINCETON, NJ 08543\n(609) 734-6358\nEmail: eabraham@hillwallack.com\n", + "name": "ERIC I. ABRAHAM", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "HILL WALLACK LLP\n2 BRIDGE AVE.\nRED BANK, NJ 07701\n609-734-3905\nEmail: sorlando@hillwallack.com\n", + "name": "STEPHANIE-ROSE ORLANDO", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "HILL WALLACK\nNJ\n21 ROSZEL ROAD\nPRINCETON, NJ 08543\n609-924-0808\nFax: 609-452-1888\nEmail: wmurtha@hillwallack.com\n", + "name": "WILLIAM MURTHA", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "PERGAMENT & CEPEDA LLP\n25A HANOVER ROAD\nSUITE 104\nFLORHAM PARK, NJ 07932\n973-998-7722\nEmail: dshelhoff@pergamentcepeda.com\n", + "name": "DMITRY V. SHELHOFF", + "roles": [ + "TERMINATED: 04/27/2023" + ] + } + ], + "date_terminated": null, + "extra_info": "", + "name": "ANNORA PHARMA PRIVATE LIMITED", + "type": "Defendant" + }, + { + "attorneys": [ + { + "contact": "HILL WALLACK, LLP\n21 ROSZEL ROAD\nPRINCETON, NJ 08543\n(609) 734-6358\nEmail: eabraham@hillwallack.com\n", + "name": "ERIC I. ABRAHAM", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "HILL WALLACK LLP\n2 BRIDGE AVE.\nRED BANK, NJ 07701\n609-734-3905\nEmail: sorlando@hillwallack.com\n", + "name": "STEPHANIE-ROSE ORLANDO", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "HILL WALLACK\nNJ\n21 ROSZEL ROAD\nPRINCETON, NJ 08543\n609-924-0808\nFax: 609-452-1888\nEmail: wmurtha@hillwallack.com\n", + "name": "WILLIAM MURTHA", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "PERGAMENT & CEPEDA LLP\n25A HANOVER ROAD\nSUITE 104\nFLORHAM PARK, NJ 07932\n973-998-7722\nEmail: dshelhoff@pergamentcepeda.com\n", + "name": "DMITRY V. SHELHOFF", + "roles": [ + "TERMINATED: 04/27/2023" + ] + } + ], + "date_terminated": null, + "extra_info": "", + "name": "GRACE CONSULTING SERVICES, INC.", + "type": "Defendant" + }, + { + "attorneys": [ + { + "contact": "HILL WALLACK, LLP\n21 ROSZEL ROAD\nPRINCETON, NJ 08543\n(609) 734-6358\nEmail: eabraham@hillwallack.com\n", + "name": "ERIC I. ABRAHAM", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "HILL WALLACK LLP\n2 BRIDGE AVE.\nRED BANK, NJ 07701\n609-734-3905\nEmail: sorlando@hillwallack.com\n", + "name": "STEPHANIE-ROSE ORLANDO", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "HILL WALLACK\nNJ\n21 ROSZEL ROAD\nPRINCETON, NJ 08543\n609-924-0808\nFax: 609-452-1888\nEmail: wmurtha@hillwallack.com\n", + "name": "WILLIAM MURTHA", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "PERGAMENT & CEPEDA LLP\n25A HANOVER ROAD\nSUITE 104\nFLORHAM PARK, NJ 07932\n973-998-7722\nEmail: dshelhoff@pergamentcepeda.com\n", + "name": "DMITRY V. SHELHOFF", + "roles": [ + "TERMINATED: 04/27/2023" + ] + } + ], + "date_terminated": null, + "extra_info": "", + "name": "HETERO LABS LIMITED", + "type": "Defendant" + }, + { + "attorneys": [ + { + "contact": "HILL WALLACK, LLP\n21 ROSZEL ROAD\nPRINCETON, NJ 08543\n(609) 734-6358\nEmail: eabraham@hillwallack.com\n", + "name": "ERIC I. ABRAHAM", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "HILL WALLACK LLP\n2 BRIDGE AVE.\nRED BANK, NJ 07701\n609-734-3905\nEmail: sorlando@hillwallack.com\n", + "name": "STEPHANIE-ROSE ORLANDO", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "HILL WALLACK\nNJ\n21 ROSZEL ROAD\nPRINCETON, NJ 08543\n609-924-0808\nFax: 609-452-1888\nEmail: wmurtha@hillwallack.com\n", + "name": "WILLIAM MURTHA", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ] + }, + { + "contact": "PERGAMENT & CEPEDA LLP\n25A HANOVER ROAD\nSUITE 104\nFLORHAM PARK, NJ 07932\n973-998-7722\nEmail: dshelhoff@pergamentcepeda.com\n", + "name": "DMITRY V. SHELHOFF", + "roles": [ + "TERMINATED: 04/27/2023" + ] + } + ], + "date_terminated": null, + "extra_info": "", + "name": "HETERO USA, INC.", + "type": "Defendant" + } + ], + "referred_to_str": "Jose R. Almonte" +} \ No newline at end of file diff --git a/tests/examples/pacer/dockets/district/nvd_128568.json b/tests/examples/pacer/dockets/district/nvd_128568.json index 7f1b58d7f..173a8ab6f 100644 --- a/tests/examples/pacer/dockets/district/nvd_128568.json +++ b/tests/examples/pacer/dockets/district/nvd_128568.json @@ -51,6 +51,11 @@ } ], "docket_number": "2:18-mj-00137", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": "CWH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/nvd_21855.json b/tests/examples/pacer/dockets/district/nvd_21855.json index b239711e8..23b49344d 100644 --- a/tests/examples/pacer/dockets/district/nvd_21855.json +++ b/tests/examples/pacer/dockets/district/nvd_21855.json @@ -51,6 +51,11 @@ } ], "docket_number": "2:98-cv-01203", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JBR", + "federal_dn_judge_initials_referred": "RLH", + "federal_dn_office_code": "2", "jurisdiction": "Federal Question", "jury_demand": "None", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/nyed.json b/tests/examples/pacer/dockets/district/nyed.json index aa3e1036c..c0e085d2b 100644 --- a/tests/examples/pacer/dockets/district/nyed.json +++ b/tests/examples/pacer/dockets/district/nyed.json @@ -179,6 +179,11 @@ } ], "docket_number": "1:14-cv-07524", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "VVP", + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "Plaintiff", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/nysd.json b/tests/examples/pacer/dockets/district/nysd.json index dc97a0019..49520f442 100644 --- a/tests/examples/pacer/dockets/district/nysd.json +++ b/tests/examples/pacer/dockets/district/nysd.json @@ -171,6 +171,11 @@ } ], "docket_number": "1:02-cv-07300", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "GBD", + "federal_dn_judge_initials_referred": "SN", + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "Plaintiff", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/nysd_1.json b/tests/examples/pacer/dockets/district/nysd_1.json index 682b27810..a292ed76f 100644 --- a/tests/examples/pacer/dockets/district/nysd_1.json +++ b/tests/examples/pacer/dockets/district/nysd_1.json @@ -43,6 +43,11 @@ } ], "docket_number": "1:08-md-01963", + "federal_defendant_number": null, + "federal_dn_case_type": "md", + "federal_dn_judge_initials_assigned": "RWS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "Defendant", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/nysd_2.json b/tests/examples/pacer/dockets/district/nysd_2.json index 813924a97..d65c0d4c6 100644 --- a/tests/examples/pacer/dockets/district/nysd_2.json +++ b/tests/examples/pacer/dockets/district/nysd_2.json @@ -19,6 +19,11 @@ } ], "docket_number": "1:18-mj-03161", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": "KMW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/nysd_4.json b/tests/examples/pacer/dockets/district/nysd_4.json index 700f76ec4..613109a9a 100644 --- a/tests/examples/pacer/dockets/district/nysd_4.json +++ b/tests/examples/pacer/dockets/district/nysd_4.json @@ -707,6 +707,11 @@ } ], "docket_number": "1:20-cv-10821", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "GHW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "Both", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/nysd_441170.json b/tests/examples/pacer/dockets/district/nysd_441170.json index b334e7473..7daf9eb05 100644 --- a/tests/examples/pacer/dockets/district/nysd_441170.json +++ b/tests/examples/pacer/dockets/district/nysd_441170.json @@ -27,6 +27,11 @@ } ], "docket_number": "1:15-mc-00105", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "P1", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/nysd_4606.json b/tests/examples/pacer/dockets/district/nysd_4606.json index 3b8e2c236..1ced079bd 100644 --- a/tests/examples/pacer/dockets/district/nysd_4606.json +++ b/tests/examples/pacer/dockets/district/nysd_4606.json @@ -187,6 +187,11 @@ } ], "docket_number": "1:00-cv-01898", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "VSB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "Both", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/nysd_491943.json b/tests/examples/pacer/dockets/district/nysd_491943.json index e44f8c046..2e6ebd304 100644 --- a/tests/examples/pacer/dockets/district/nysd_491943.json +++ b/tests/examples/pacer/dockets/district/nysd_491943.json @@ -10,6 +10,11 @@ "demand": "", "docket_entries": [], "docket_number": "1:18-mj-03161", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": "KMW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/pamd.json b/tests/examples/pacer/dockets/district/pamd.json index 386d7bd0b..d02d6aeb0 100644 --- a/tests/examples/pacer/dockets/district/pamd.json +++ b/tests/examples/pacer/dockets/district/pamd.json @@ -27,6 +27,11 @@ } ], "docket_number": "1:20-cv-01787", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MWB", + "federal_dn_judge_initials_referred": "MP", + "federal_dn_office_code": "1", "jurisdiction": "Federal Question", "jury_demand": "Both", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/txed.json b/tests/examples/pacer/dockets/district/txed.json index 2305422a8..5704c18a2 100644 --- a/tests/examples/pacer/dockets/district/txed.json +++ b/tests/examples/pacer/dockets/district/txed.json @@ -211,6 +211,11 @@ } ], "docket_number": "6:07-cv-00354", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JDL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6", "jurisdiction": "Federal Question", "jury_demand": "Both", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/txsd.json b/tests/examples/pacer/dockets/district/txsd.json index 84b619b40..e6c264ff1 100644 --- a/tests/examples/pacer/dockets/district/txsd.json +++ b/tests/examples/pacer/dockets/district/txsd.json @@ -59,6 +59,11 @@ } ], "docket_number": "5:19-cv-00049", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", "jurisdiction": "Diversity", "jury_demand": "Defendant", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/txsd_1.html b/tests/examples/pacer/dockets/district/txsd_1.html new file mode 100644 index 000000000..0a4853589 --- /dev/null +++ b/tests/examples/pacer/dockets/district/txsd_1.html @@ -0,0 +1,156 @@ +DC CM/ECF LIVE- US District Court-Texas Southern +
    + + +
    INTERPRETER
    +

    U.S. District Court
    +SOUTHERN DISTRICT OF TEXAS (Corpus Christi)
    +CRIMINAL DOCKET FOR CASE #: 2:20-cr-00606-1

    + + + +

    Case title: USA v. Arias-Hernandez

    +
    Magistrate judge case number: 2:20-mj-00927
    +

    Date Filed: 03/27/2020

    +Date Terminated: 04/17/2020
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Assigned to: Judge David S Morales

    Defendant (1)
    + Martin Arias-Hernandez +
    TERMINATED: 04/17/2020 +
    represented byFederal Public Defender - Corpus Christi +
    606 N Carancahua +
    Ste 401 +
    Corpus Christi, TX 78476 +
    361-888-3532 +
    Email: Mary_Montoya@fd.org +
    LEAD ATTORNEY +
    ATTORNEY TO BE NOTICED +
    Designation: Public Defender or Community Defender Appointment

    +Rachel Elizabeth Braver +
    Office of the Federal Public Defender +
    606 N. Carancahua +
    Ste. 401 +
    Corpus Christi, TX 78401-0697 +
    361-888-3532 +
    Fax: 361-888-3534 +
    Email: rachel_braver@fd.org +
    LEAD ATTORNEY +
    ATTORNEY TO BE NOTICED +
    Designation: Public Defender or Community Defender Appointment

    +Corpus Christi Interpreter +
    ATTORNEY TO BE NOTICED +
    Designation: Retained

    Pending Counts

    Disposition
    REENTRY OF DEPORTED ALIENS
    (1)
    TIME SERVED; $100 Special Assessment (remitted)

    Highest Offense Level (Opening)
    Felony

    Terminated Counts

    Disposition
    None

    Highest Offense Level (Terminated)
    None

    Complaints

    Disposition
    8:1326.F--REENTRY OF DEPORTED ALIENS

    + + + + + + + +

    Plaintiff
    + USA + represented byNeel Kapur +
    US Attorney's Office +
    800 N Shoreline Blvd +
    Ste 500 +
    Corpus Christi, TX 78401 +
    361-888-3111 +
    Email: neel.kapur@usdoj.gov +
    LEAD ATTORNEY +
    ATTORNEY TO BE NOTICED +
    Designation: Retained
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Date Filed#Docket Text
    03/14/2020 Arrest of Martin Arias-Hernandez. (KendraPearsonadi, 2) [2:20-mj-00927] (Entered: 03/16/2020)
    03/15/20201 COMPLAINT as to Martin Arias-Hernandez (1), filed. (Brooks) Initial Appearance set for 3/16/2020 at 11:15 AM before Magistrate Judge Jason B Libby (Attachments: # 1 Affidavit) (fcarbia, 2) [2:20-mj-00927] (Entered: 03/15/2020)
    03/16/2020 Interpreter needed as to Martin Arias-Hernandez. Language: SPANISH. Corpus Christi Interpreter for Martin Arias-Hernandez added. (KendraPearsonadi, 2) [2:20-mj-00927] (Entered: 03/16/2020)
    03/16/2020 Minute Entry for proceedings held before Magistrate Judge Jason B Libby: INITIAL APPEARANCE as to Martin Arias-Hernandez, (Deft informed of rights) held on 3/16/2020. Defendant requests appointed counsel. Court grants request for appointment of counsel. Government moves for detention and requests a continuance. Court grants Government's request for continuance. Rights to consular notification given; defendant or counsel may notify the Court if they request notification. Preliminary Examination & Detention Hearing set for 3/19/2020 at 09:00 AM before Magistrate Judge Jason B Libby. Appearances: Amanda Gould, AUSA; USM: George Butcher; Christopher Porche. (Digital # 11:15:30-11:21:35) (ERO: Annette Martinez) (Interpreter: L. Parada-Valdes and S. Buckley/used) Deft remanded to custody. (KendraPearsonadi, 2) [2:20-mj-00927] (Entered: 03/16/2020)
    03/17/2020 US ATTORNEY'S NOTICE OF APPEARANCE. Neel Kapur appearing for USA, filed.(Kapur, Neel) [2:20-mj-00927] (Entered: 03/17/2020)
    03/17/20202 ORDER APPOINTING FEDERAL PUBLIC DEFENDER. (Signed by Magistrate Judge Jason B. Libby) Parties notified. (mjassoadi, 2) [2:20-mj-00927] (Entered: 03/17/2020)
    03/17/2020 NOTICE OF ATTORNEY APPEARANCE Rachel Elizabeth Braver, Federal Public Defender, in case as to Martin Arias-Hernandez, filed.(Braver, Rachel) [2:20-mj-00927] (Entered: 03/17/2020)
    03/19/2020 Minute Entry for proceedings held before Magistrate Judge Jason B Libby: PRELIMINARY EXAMINATION & DETENTION HEARING as to Martin Arias-Hernandez held on 3/19/2020 Defense counsel orally waives both hearings in open court with the permission of defendant. Appearances: Cody Barnes, AUSA; Rachel Braver f/Defendant; USPO: Joann Torres-Cadena; USM: Robin Richards; Christopher Porche. (Digital # 9;13:38-9:14:36) (ERO: Kellie Papaioannou) (Interpreter: M. Wallace/not used) Deft remanded to custody. (KendraPearsonadi, 2) [2:20-mj-00927] (Entered: 03/19/2020)
    03/19/20203 ORDER OF DETENTION PENDING TRIAL as to Martin Arias-Hernandez ( Signed by Magistrate Judge Jason B Libby) Parties notified. (KendraPearsonadi, 2) [2:20-mj-00927] (Entered: 03/19/2020)
    03/25/20204 Pretrial Services Report (Sealed) as to Martin Arias-Hernandez, filed. (ErinLandrum, 2) [2:20-mj-00927] (Entered: 03/25/2020)
    03/27/20205 INFORMATION as to Martin Arias-Hernandez (1) count(s) 1, filed. (KelliePapaioannou, 2) (Entered: 03/30/2020)
    03/27/20206 US Attys Criminal Docket Sheet as to Martin Arias-Hernandez, filed.(KelliePapaioannou, 2) (Entered: 03/30/2020)
    03/31/20207 NOTICE OF SETTING as to Martin Arias-Hernandez. Plea and Sentence set for 4/8/2020 at 09:00 AM before Judge David S Morales, filed. (arodriguez, 2) (Entered: 03/31/2020)
    04/02/2020 **Terminate Deadlines and Hearings as to Martin Arias-Hernandez: Plea and Sentence CANCELED - case not found eligible for expedited hearing. (arodriguez, 2) (Entered: 04/02/2020)
    04/06/20208 SCHEDULING ORDER as to Martin Arias-Hernandez. Arraignment set for 4/9/2020 at 10:00 AM before Magistrate Judge Jason B.Libby. Final Pretrial Conference set for 4/30/2020 at 02:00 PM before Magistrate Judge Jason B.Libby. Jury Trial set for 5/4/2020 at 08:30 AM before Judge David S. Morales. (Signed by Magistrate Judge Jason B.Libby) Parties notified. (KendraPearson, 2) (Entered: 04/06/2020)
    04/06/20209 WAIVER of Presence at Arraignment and Entry of Plea of Not Guilty, filed.(Braver, Rachel) (Entered: 04/06/2020)
    04/06/202010 ORDER as to Martin Arias-Hernandez 9 WAIVER of Presence at Arraignment and Entry of Plea of Not Guilty ( Signed by Magistrate Judge Jason B Libby) Parties notified. (legarza, 2) (Entered: 04/06/2020)
    04/09/202011 NOTICE OF SETTING as to Martin Arias-Hernandez. Re-Arraignment set for 4/14/2020 at 09:00 AM before Magistrate Judge Jason B Libby, filed. (KendraPearson, 2) (Entered: 04/09/2020)
    04/09/202012 NOTICE of Resetting as to Martin Arias-Hernandez. Parties notified. Re-Arraignment reset for 4/14/2020 at 09:00 AM before Magistrate Judge Jason B Libby, filed. Defendants will appear by video-conference. Attorneys may appear by telephone and follow these instructions: Dial in to the Court's Conference phone number of 361-693-6518 (this line will be open 5 minutes prior to the hearing); when prompted, enter your conference ID (26518); when prompted, enter your password (13579); you will now be connected to the conference call. (KendraPearson, 2) (Entered: 04/09/2020)
    04/09/202013 NOTICE OF SETTING as to Martin Arias-Hernandez. Plea and Sentence set for 4/15/2020 at 03:00 PM before Judge David S Morales, filed. (arodriguez, 2) (Entered: 04/09/2020)
    04/10/2020 **Terminate Deadlines and Hearings as to Martin Arias-Hernandez: Re-Arraignment reset for 4/14/2020 at 09:00 AM before Magistrate Judge Jason B Libby is canceled. (KendraPearson, 2) (Entered: 04/10/2020)
    04/15/2020 Minute Entry for proceedings held before Judge David S Morales: RE-ARRAIGNMENT held on 4/15/2020. Martin Arias-Hernandez (1) Guilty Count 1. Deft states he/she is ready to plea guilty today. Deft consents to entering guilty plea by video conference. Deft waives Indictment by Grand Jury. Court accepts the guilty plea. No plea agreement. The standard agreement was offered and explained to the deft, but the deft rejected the agreement. Deft wishes to waive the preparation of a PSR and proceed immediately to sentencing. Appearances:AUSA Y. Zheng; FPD Rachel Braver; USPO CC.(Digital # 2:41 - 3:10)(ERO:K. Papaioannou) (Interpreter: S. Buckley) Deft remanded to custody of USMS, filed.(arodriguez, 2) (Entered: 04/15/2020)
    04/15/2020 Minute Entry for proceedings held before Judge David S Morales: Sentencing held on 4/15/2020 for Martin Arias-Hernandez (1), Count(s) 1, TIME SERVED; $100 Special Assessment (remitted). Deft requests to proceed without the preparation of a PSR. No objection from the Gvmt. The Court waives the requirement of the presentence investigation and adopts the findings in the worksheet as prepared by Probation. Deft is advised of his right to appeal his conviction and sentence. Appearances:AUSA Y. Zheng; FPD Rachel Braver; USPO CC.(Digital # 2:41 - 3:10)(ERO: K. Papaioannou) (Interpreter: S. Buckley) Deft remanded to custody of USMS, filed.(arodriguez, 2) (Entered: 04/15/2020)
    04/17/202014  JUDGMENT as to Martin Arias-Hernandez ( Signed by Judge David S Morales) Parties notified. (MaraSalas, 2) (Entered: 04/17/2020)
    04/17/202015 Statement of Reasons (Sealed) as to Martin Arias-Hernandez. NOTICE: Document available to applicable parties only. Authorized users enter CM/ECF Filer login and password first for authentication. Instructions available at http://www.txs.uscourts.gov/attorney-information - Electronic Access to Sealed Documents. Be sure to SAVE the document locally at the time of viewing, filed. (Entered: 04/17/2020)

    +
    PACER Service Center
    Transaction Receipt
    [DATE REMOVED]
    PACER Login: [LOGIN REMOVED] Client Code:
    Description: Docket Report Search Criteria: 2:20-cr-00606
    Billable Pages: 4 Cost: 0.40
    \ No newline at end of file diff --git a/tests/examples/pacer/dockets/district/txsd_1.json b/tests/examples/pacer/dockets/district/txsd_1.json new file mode 100644 index 000000000..2d83c56d7 --- /dev/null +++ b/tests/examples/pacer/dockets/district/txsd_1.json @@ -0,0 +1,291 @@ +{ + "court_id": "txsd", + "docket_number": "2:20-cr-00606", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", + "case_name": "United States v. Arias-Hernandez", + "date_filed": "2020-03-27", + "date_terminated": "2020-04-17", + "date_converted": null, + "date_discharged": null, + "assigned_to_str": "David S. Morales", + "referred_to_str": "", + "cause": "", + "nature_of_suit": "", + "jury_demand": "", + "demand": "", + "jurisdiction": "", + "mdl_status": "", + "ordered_by": "date_filed", + "parties": [ + { + "type": "Defendant", + "name": "Martin Arias-Hernandez", + "extra_info": "TERMINATED: 04/17/2020", + "date_terminated": "2020-04-17", + "attorneys": [ + { + "name": "Federal Public Defender - Corpus Christi", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ], + "contact": "606 N Carancahua\nSte 401\nCorpus Christi, TX 78476\n361-888-3532\nEmail: Mary_Montoya@fd.org\n" + }, + { + "name": "Rachel Elizabeth Braver", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ], + "contact": "Office of the Federal Public Defender\n606 N. Carancahua\nSte. 401\nCorpus Christi, TX 78401-0697\n361-888-3532\nFax: 361-888-3534\nEmail: rachel_braver@fd.org\n" + }, + { + "name": "Corpus Christi Interpreter", + "roles": [ + "ATTORNEY TO BE NOTICED" + ], + "contact": "" + } + ], + "criminal_data": { + "counts": [ + { + "name": "REENTRY OF DEPORTED ALIENS(1)", + "disposition": "TIME SERVED; $100 Special Assessment (remitted)", + "status": "pending" + } + ], + "complaints": [ + { + "name": "8:1326.F--REENTRY OF DEPORTED ALIENS", + "disposition": "" + } + ], + "highest_offense_level_opening": "Felony", + "highest_offense_level_terminated": "None" + } + }, + { + "type": "Plaintiff", + "name": "USA", + "extra_info": "", + "date_terminated": null, + "attorneys": [ + { + "name": "Neel Kapur", + "roles": [ + "LEAD ATTORNEY", + "ATTORNEY TO BE NOTICED" + ], + "contact": "US Attorney's Office\n800 N Shoreline Blvd\nSte 500\nCorpus Christi, TX 78401\n361-888-3111\nEmail: neel.kapur@usdoj.gov\n" + } + ] + } + ], + "docket_entries": [ + { + "date_filed": "2020-03-14", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null, + "description": "Arrest of Martin Arias-Hernandez. (KendraPearsonadi, 2) [2:20-mj-00927] (Entered: 03/16/2020)", + "date_entered": "2020-03-16" + }, + { + "date_filed": "2020-03-15", + "document_number": "1", + "pacer_doc_id": "179035790896", + "pacer_seq_no": "7", + "description": "COMPLAINT as to Martin Arias-Hernandez (1), filed. (Brooks) Initial Appearance set for 3/16/2020 at 11:15 AM before Magistrate Judge Jason B Libby (Attachments: # 1 Affidavit) (fcarbia, 2) [2:20-mj-00927] (Entered: 03/15/2020)", + "date_entered": "2020-03-15" + }, + { + "date_filed": "2020-03-16", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null, + "description": "Interpreter needed as to Martin Arias-Hernandez. Language: SPANISH. Corpus Christi Interpreter for Martin Arias-Hernandez added. (KendraPearsonadi, 2) [2:20-mj-00927] (Entered: 03/16/2020)", + "date_entered": "2020-03-16" + }, + { + "date_filed": "2020-03-16", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null, + "description": "Minute Entry for proceedings held before Magistrate Judge Jason B Libby: INITIAL APPEARANCE as to Martin Arias-Hernandez, (Deft informed of rights) held on 3/16/2020. Defendant requests appointed counsel. Court grants request for appointment of counsel. Government moves for detention and requests a continuance. Court grants Government's request for continuance. Rights to consular notification given; defendant or counsel may notify the Court if they request notification. Preliminary Examination & Detention Hearing set for 3/19/2020 at 09:00 AM before Magistrate Judge Jason B Libby. Appearances: Amanda Gould, AUSA; USM: George Butcher; Christopher Porche. (Digital # 11:15:30-11:21:35) (ERO: Annette Martinez) (Interpreter: L. Parada-Valdes and S. Buckley/used) Deft remanded to custody. (KendraPearsonadi, 2) [2:20-mj-00927] (Entered: 03/16/2020)", + "date_entered": "2020-03-16" + }, + { + "date_filed": "2020-03-17", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null, + "description": "US ATTORNEY'S NOTICE OF APPEARANCE. Neel Kapur appearing for USA, filed.(Kapur, Neel) [2:20-mj-00927] (Entered: 03/17/2020)", + "date_entered": "2020-03-17" + }, + { + "date_filed": "2020-03-17", + "document_number": "2", + "pacer_doc_id": "179035790908", + "pacer_seq_no": "12", + "description": "ORDER APPOINTING FEDERAL PUBLIC DEFENDER. (Signed by Magistrate Judge Jason B. Libby) Parties notified. (mjassoadi, 2) [2:20-mj-00927] (Entered: 03/17/2020)", + "date_entered": "2020-03-17" + }, + { + "date_filed": "2020-03-17", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null, + "description": "NOTICE OF ATTORNEY APPEARANCE Rachel Elizabeth Braver, Federal Public Defender, in case as to Martin Arias-Hernandez, filed.(Braver, Rachel) [2:20-mj-00927] (Entered: 03/17/2020)", + "date_entered": "2020-03-17" + }, + { + "date_filed": "2020-03-19", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null, + "description": "Minute Entry for proceedings held before Magistrate Judge Jason B Libby: PRELIMINARY EXAMINATION & DETENTION HEARING as to Martin Arias-Hernandez held on 3/19/2020 Defense counsel orally waives both hearings in open court with the permission of defendant. Appearances: Cody Barnes, AUSA; Rachel Braver f/Defendant; USPO: Joann Torres-Cadena; USM: Robin Richards; Christopher Porche. (Digital # 9;13:38-9:14:36) (ERO: Kellie Papaioannou) (Interpreter: M. Wallace/not used) Deft remanded to custody. (KendraPearsonadi, 2) [2:20-mj-00927] (Entered: 03/19/2020)", + "date_entered": "2020-03-19" + }, + { + "date_filed": "2020-03-19", + "document_number": "3", + "pacer_doc_id": "179035790915", + "pacer_seq_no": "15", + "description": "ORDER OF DETENTION PENDING TRIAL as to Martin Arias-Hernandez ( Signed by Magistrate Judge Jason B Libby) Parties notified. (KendraPearsonadi, 2) [2:20-mj-00927] (Entered: 03/19/2020)", + "date_entered": "2020-03-19" + }, + { + "date_filed": "2020-03-25", + "document_number": "4", + "pacer_doc_id": "179035790919", + "pacer_seq_no": "16", + "description": "Pretrial Services Report (Sealed) as to Martin Arias-Hernandez, filed. (ErinLandrum, 2) [2:20-mj-00927] (Entered: 03/25/2020)", + "date_entered": "2020-03-25" + }, + { + "date_filed": "2020-03-27", + "document_number": "5", + "pacer_doc_id": "179035790942", + "pacer_seq_no": "34", + "description": "INFORMATION as to Martin Arias-Hernandez (1) count(s) 1, filed. (KelliePapaioannou, 2) (Entered: 03/30/2020)", + "date_entered": "2020-03-30" + }, + { + "date_filed": "2020-03-27", + "document_number": "6", + "pacer_doc_id": "179035790963", + "pacer_seq_no": "41", + "description": "US Attys Criminal Docket Sheet as to Martin Arias-Hernandez, filed.(KelliePapaioannou, 2) (Entered: 03/30/2020)", + "date_entered": "2020-03-30" + }, + { + "date_filed": "2020-03-31", + "document_number": "7", + "pacer_doc_id": "179035804933", + "pacer_seq_no": "43", + "description": "NOTICE OF SETTING as to Martin Arias-Hernandez. Plea and Sentence set for 4/8/2020 at 09:00 AM before Judge David S Morales, filed. (arodriguez, 2) (Entered: 03/31/2020)", + "date_entered": "2020-03-31" + }, + { + "date_filed": "2020-04-02", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null, + "description": "**Terminate Deadlines and Hearings as to Martin Arias-Hernandez: Plea and Sentence CANCELED - case not found eligible for expedited hearing. (arodriguez, 2) (Entered: 04/02/2020)", + "date_entered": "2020-04-02" + }, + { + "date_filed": "2020-04-06", + "document_number": "8", + "pacer_doc_id": "179035824307", + "pacer_seq_no": "47", + "description": "SCHEDULING ORDER as to Martin Arias-Hernandez. Arraignment set for 4/9/2020 at 10:00 AM before Magistrate Judge Jason B.Libby. Final Pretrial Conference set for 4/30/2020 at 02:00 PM before Magistrate Judge Jason B.Libby. Jury Trial set for 5/4/2020 at 08:30 AM before Judge David S. Morales. (Signed by Magistrate Judge Jason B.Libby) Parties notified. (KendraPearson, 2) (Entered: 04/06/2020)", + "date_entered": "2020-04-06" + }, + { + "date_filed": "2020-04-06", + "document_number": "9", + "pacer_doc_id": "179035826684", + "pacer_seq_no": "49", + "description": "WAIVER of Presence at Arraignment and Entry of Plea of Not Guilty, filed.(Braver, Rachel) (Entered: 04/06/2020)", + "date_entered": "2020-04-06" + }, + { + "date_filed": "2020-04-06", + "document_number": "10", + "pacer_doc_id": "179035828339", + "pacer_seq_no": "52", + "description": "ORDER as to Martin Arias-Hernandez 9 WAIVER of Presence at Arraignment and Entry of Plea of Not Guilty ( Signed by Magistrate Judge Jason B Libby) Parties notified. (legarza, 2) (Entered: 04/06/2020)", + "date_entered": "2020-04-06" + }, + { + "date_filed": "2020-04-09", + "document_number": "11", + "pacer_doc_id": "179035845174", + "pacer_seq_no": "54", + "description": "NOTICE OF SETTING as to Martin Arias-Hernandez. Re-Arraignment set for 4/14/2020 at 09:00 AM before Magistrate Judge Jason B Libby, filed. (KendraPearson, 2) (Entered: 04/09/2020)", + "date_entered": "2020-04-09" + }, + { + "date_filed": "2020-04-09", + "document_number": "12", + "pacer_doc_id": "179035845645", + "pacer_seq_no": "56", + "description": "NOTICE of Resetting as to Martin Arias-Hernandez. Parties notified. Re-Arraignment reset for 4/14/2020 at 09:00 AM before Magistrate Judge Jason B Libby, filed. Defendants will appear by video-conference. Attorneys may appear by telephone and follow these instructions: Dial in to the Court's Conference phone number of 361-693-6518 (this line will be open 5 minutes prior to the hearing); when prompted, enter your conference ID (26518); when prompted, enter your password (13579); you will now be connected to the conference call. (KendraPearson, 2) (Entered: 04/09/2020)", + "date_entered": "2020-04-09" + }, + { + "date_filed": "2020-04-09", + "document_number": "13", + "pacer_doc_id": "179035848767", + "pacer_seq_no": "58", + "description": "NOTICE OF SETTING as to Martin Arias-Hernandez. Plea and Sentence set for 4/15/2020 at 03:00 PM before Judge David S Morales, filed. (arodriguez, 2) (Entered: 04/09/2020)", + "date_entered": "2020-04-09" + }, + { + "date_filed": "2020-04-10", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null, + "description": "**Terminate Deadlines and Hearings as to Martin Arias-Hernandez: Re-Arraignment reset for 4/14/2020 at 09:00 AM before Magistrate Judge Jason B Libby is canceled. (KendraPearson, 2) (Entered: 04/10/2020)", + "date_entered": "2020-04-10" + }, + { + "date_filed": "2020-04-15", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null, + "description": "Minute Entry for proceedings held before Judge David S Morales: RE-ARRAIGNMENT held on 4/15/2020. Martin Arias-Hernandez (1) Guilty Count 1. Deft states he/she is ready to plea guilty today. Deft consents to entering guilty plea by video conference. Deft waives Indictment by Grand Jury. Court accepts the guilty plea. No plea agreement. The standard agreement was offered and explained to the deft, but the deft rejected the agreement. Deft wishes to waive the preparation of a PSR and proceed immediately to sentencing. Appearances:AUSA Y. Zheng; FPD Rachel Braver; USPO CC.(Digital # 2:41 - 3:10)(ERO:K. Papaioannou) (Interpreter: S. Buckley) Deft remanded to custody of USMS, filed.(arodriguez, 2) (Entered: 04/15/2020)", + "date_entered": "2020-04-15" + }, + { + "date_filed": "2020-04-15", + "document_number": null, + "pacer_doc_id": null, + "pacer_seq_no": null, + "description": "Minute Entry for proceedings held before Judge David S Morales: Sentencing held on 4/15/2020 for Martin Arias-Hernandez (1), Count(s) 1, TIME SERVED; $100 Special Assessment (remitted). Deft requests to proceed without the preparation of a PSR. No objection from the Gvmt. The Court waives the requirement of the presentence investigation and adopts the findings in the worksheet as prepared by Probation. Deft is advised of his right to appeal his conviction and sentence. Appearances:AUSA Y. Zheng; FPD Rachel Braver; USPO CC.(Digital # 2:41 - 3:10)(ERO: K. Papaioannou) (Interpreter: S. Buckley) Deft remanded to custody of USMS, filed.(arodriguez, 2) (Entered: 04/15/2020)", + "date_entered": "2020-04-15" + }, + { + "date_filed": "2020-04-17", + "document_number": "14", + "pacer_doc_id": "179035880890", + "pacer_seq_no": "69", + "description": "JUDGMENT as to Martin Arias-Hernandez ( Signed by Judge David S Morales) Parties notified. (MaraSalas, 2) (Entered: 04/17/2020)", + "date_entered": "2020-04-17" + }, + { + "date_filed": "2020-04-17", + "document_number": "15", + "pacer_doc_id": "179035880907", + "pacer_seq_no": "72", + "description": "Statement of Reasons (Sealed) as to Martin Arias-Hernandez. NOTICE: Document available to applicable parties only. Authorized users enter CM/ECF Filer login and password first for authentication. Instructions available at http://www.txs.uscourts.gov/attorney-information - Electronic Access to Sealed Documents. Be sure to SAVE the document locally at the time of viewing, filed. (Entered: 04/17/2020)", + "date_entered": "2020-04-17" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/dockets/district/utd.json b/tests/examples/pacer/dockets/district/utd.json index b8abdef45..11a7fd64b 100644 --- a/tests/examples/pacer/dockets/district/utd.json +++ b/tests/examples/pacer/dockets/district/utd.json @@ -979,6 +979,11 @@ } ], "docket_number": "2:08-cr-00125", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "DAK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/vaed.json b/tests/examples/pacer/dockets/district/vaed.json index 4a3712734..350184ce1 100644 --- a/tests/examples/pacer/dockets/district/vaed.json +++ b/tests/examples/pacer/dockets/district/vaed.json @@ -475,6 +475,11 @@ } ], "docket_number": "1:19-cv-00632", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "TSE", + "federal_dn_judge_initials_referred": "JFA", + "federal_dn_office_code": "1", "jurisdiction": "Diversity", "jury_demand": "Plaintiff", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/district/wawd.json b/tests/examples/pacer/dockets/district/wawd.json index aeb56849f..524b8d0fa 100644 --- a/tests/examples/pacer/dockets/district/wawd.json +++ b/tests/examples/pacer/dockets/district/wawd.json @@ -107,6 +107,11 @@ } ], "docket_number": "2:15-cr-00099", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "MJP", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/fake-rss/dcd.json b/tests/examples/pacer/dockets/fake-rss/dcd.json index a4fdf6d89..52ea20ffd 100644 --- a/tests/examples/pacer/dockets/fake-rss/dcd.json +++ b/tests/examples/pacer/dockets/fake-rss/dcd.json @@ -19,6 +19,11 @@ } ], "docket_number": "1:17-cr-00201", + "federal_defendant_number": "2", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "ABJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/fake-rss/mad.json b/tests/examples/pacer/dockets/fake-rss/mad.json index 2ddd5ddfa..7c39525dc 100644 --- a/tests/examples/pacer/dockets/fake-rss/mad.json +++ b/tests/examples/pacer/dockets/fake-rss/mad.json @@ -19,6 +19,11 @@ } ], "docket_number": "1:17-cv-12580", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FDS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/special/cit.json b/tests/examples/pacer/dockets/special/cit.json index 459da6b12..50120fb30 100644 --- a/tests/examples/pacer/dockets/special/cit.json +++ b/tests/examples/pacer/dockets/special/cit.json @@ -131,6 +131,11 @@ } ], "docket_number": "1:08-cv-00398", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "GWC", + "federal_dn_judge_initials_referred": "TCS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "No", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/special/cit_2.json b/tests/examples/pacer/dockets/special/cit_2.json index 4402bcb4a..876011189 100644 --- a/tests/examples/pacer/dockets/special/cit_2.json +++ b/tests/examples/pacer/dockets/special/cit_2.json @@ -51,6 +51,11 @@ } ], "docket_number": "1:10-cv-00011", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RKM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "No", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/special/cit_3.json b/tests/examples/pacer/dockets/special/cit_3.json index e9557ac4a..34f50d902 100644 --- a/tests/examples/pacer/dockets/special/cit_3.json +++ b/tests/examples/pacer/dockets/special/cit_3.json @@ -43,6 +43,11 @@ } ], "docket_number": "1:09-cv-00523", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "N/A", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "No", "mdl_status": "", diff --git a/tests/examples/pacer/dockets/special/cit_4.json b/tests/examples/pacer/dockets/special/cit_4.json index e9557ac4a..34f50d902 100644 --- a/tests/examples/pacer/dockets/special/cit_4.json +++ b/tests/examples/pacer/dockets/special/cit_4.json @@ -43,6 +43,11 @@ } ], "docket_number": "1:09-cv-00523", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "N/A", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "No", "mdl_status": "", diff --git a/tests/examples/pacer/dockets_internet_archive/almd_49523.json b/tests/examples/pacer/dockets_internet_archive/almd_49523.json index 280308cae..d645c8740 100644 --- a/tests/examples/pacer/dockets_internet_archive/almd_49523.json +++ b/tests/examples/pacer/dockets_internet_archive/almd_49523.json @@ -1146,6 +1146,14 @@ "short_description": "Order on Motion to Withdraw as Attorney" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Advertisement Certification Report and Notice of Forfeiture", + "pacer_doc_id": "01702313993", + "pacer_seq_no": null + } + ], "date_filed": "2014-07-09", "description": "NOTICE (Declaration of Publication) by USA as to Willie C. Moody (Attachments: # (1) Advertisement Certification Report and Notice of Forfeiture)(Davidson, Kevin)", "document_number": "625", @@ -1154,15 +1162,14 @@ "short_description": "Notice (Other)" }, { - "attachment_number": "1", - "date_filed": "2014-07-09", - "description": "", - "document_number": "625", - "pacer_doc_id": "01702313993", - "pacer_seq_no": null, - "short_description": "Advertisement Certification Report and Notice of Forfeiture" - }, - { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit A", + "pacer_doc_id": "01702314758", + "pacer_seq_no": null + } + ], "date_filed": "2014-07-09", "description": "NOTICE of Claim of Property by Vernon F. Johnson as to Willie C. Moody (Attachments: # (1) Exhibit A)(war, )", "document_number": "626", @@ -1170,15 +1177,6 @@ "pacer_seq_no": null, "short_description": "Notice (Other)" }, - { - "attachment_number": "1", - "date_filed": "2014-07-09", - "description": "", - "document_number": "626", - "pacer_doc_id": "01702314758", - "pacer_seq_no": null, - "short_description": "Exhibit A" - }, { "date_filed": "2014-07-10", "description": "TEXT ORDER as to Willie C. Moody: Sentencing set for 8/26/14 is RESET to 8/29/2014 at 10:00 AM in Courtroom 2FMJ before Honorable Judge Myron H. Thompson. Entered by Honorable Judge Myron H. Thompson on 7/10/14. (war, )", @@ -1188,6 +1186,14 @@ "short_description": "Order" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit A", + "pacer_doc_id": "01702315696", + "pacer_seq_no": null + } + ], "date_filed": "2014-07-09", "description": "NOTICE Of Claim of Vernon F. Johnson as to Willie C. Moody (Attachments: # (1) Exhibit A)(ag, )", "document_number": "629", @@ -1195,15 +1201,6 @@ "pacer_seq_no": null, "short_description": "Notice (Other)" }, - { - "attachment_number": "1", - "date_filed": "2014-07-09", - "description": "", - "document_number": "629", - "pacer_doc_id": "01702315696", - "pacer_seq_no": null, - "short_description": "Exhibit A" - }, { "date_filed": "2014-07-14", "description": "ORDER as to Willie C. Moody re [629] Notice of Claim: Government and defendant Willie C. Moody's Responses to Notice of Claim due by 7/25/2014; Evidentiary Hearing on the Notice of Claim set for 8/29/2014 10:00 AM in Courtroom 2FMJ before Honorable Judge Myron H. Thompson; Claimant Johnson must be present and should be prepared to present admissible evidence in support of his claim; United States Magistrate Judge Susan Walker shall take care of subpoenaing any witnesses on behalf of claimant Johnson, including entering any appropriate orders regarding such matter; Claimant Johnson is informed that if he needs help in subpoenaing witnesses or obtaining documents, he should contact Magistrate Judge Walker. Signed by Honorable Judge Myron H. Thompson on 7/14/14. (war, )", @@ -1229,6 +1226,20 @@ "short_description": "Response to Court Order" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Stipulation of Final Settlement and Release of All Claims as to Third Party Pet", + "pacer_doc_id": "01702325954", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Text of Proposed Order", + "pacer_doc_id": "01702325955", + "pacer_seq_no": null + } + ], "date_filed": "2014-07-28", "description": "MOTION for Approval of Stipulation of Final Settlement and Release of All Claims as to Third Party Petition of Vernon F. Johnson re [626] Notice (Other) by USA as to Willie C. Moody. (Attachments: # (1) Stipulation of Final Settlement and Release of All Claims as to Third Party Petition of Vernon F. Johnson, # (2) Text of Proposed Order)(Davidson, Kevin)", "document_number": "635", @@ -1236,24 +1247,6 @@ "pacer_seq_no": null, "short_description": "Motion for Miscellaneous Relief" }, - { - "attachment_number": "1", - "date_filed": "2014-07-28", - "description": "", - "document_number": "635", - "pacer_doc_id": "01702325954", - "pacer_seq_no": null, - "short_description": "Stipulation of Final Settlement and Release of All Claims as to Third Party Pet" - }, - { - "attachment_number": "2", - "date_filed": "2014-07-28", - "description": "", - "document_number": "635", - "pacer_doc_id": "01702325955", - "pacer_seq_no": null, - "short_description": "Text of Proposed Order" - }, { "date_filed": "2014-08-13", "description": "TEXT ORDER granting [641] Motion to Seal as to Willie C. Moody (5). Entered by Honorable Judge Myron H. Thompson on 8/13/2014. (ag, )", diff --git a/tests/examples/pacer/dockets_internet_archive/azd_1061043.json b/tests/examples/pacer/dockets_internet_archive/azd_1061043.json index 68e6ecc20..5b267d126 100644 --- a/tests/examples/pacer/dockets_internet_archive/azd_1061043.json +++ b/tests/examples/pacer/dockets_internet_archive/azd_1061043.json @@ -10,6 +10,56 @@ "demand": "", "docket_entries": [ { + "attachments": [ + { + "attachment_number": "1", + "description": "Civil Cover Sheet", + "pacer_doc_id": "025018027677", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Exhibit", + "pacer_doc_id": "025018027678", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Exhibit", + "pacer_doc_id": "025018027679", + "pacer_seq_no": null + }, + { + "attachment_number": "4", + "description": "Exhibit", + "pacer_doc_id": "025018027680", + "pacer_seq_no": null + }, + { + "attachment_number": "5", + "description": "Exhibit", + "pacer_doc_id": "025018027681", + "pacer_seq_no": null + }, + { + "attachment_number": "6", + "description": "Exhibit", + "pacer_doc_id": "025018027682", + "pacer_seq_no": null + }, + { + "attachment_number": "7", + "description": "Exhibit", + "pacer_doc_id": "025018027683", + "pacer_seq_no": null + }, + { + "attachment_number": "8", + "description": "Exhibit", + "pacer_doc_id": "025018027684", + "pacer_seq_no": null + } + ], "date_filed": "2017-10-25", "description": "COMPLAINT. Filing fee received: $ 400.00, receipt number 0970-14794507 filed by Suzanne Powers.(Submitted by Dana LeJune) (Attachments: # 1 Civil Cover Sheet, # 2 Exhibit, # 3 Exhibit, # 4 Exhibit, # 5 Exhibit, # 6 Exhibit, # 7 Exhibit, # 8 Exhibit)(KAS) (Entered: 10/25/2017)", "document_number": "1", @@ -17,78 +67,6 @@ "pacer_seq_no": null, "short_description": "" }, - { - "attachment_number": "1", - "date_filed": "2017-10-25", - "description": "", - "document_number": "1", - "pacer_doc_id": "025018027677", - "pacer_seq_no": null, - "short_description": "Civil Cover Sheet" - }, - { - "attachment_number": "2", - "date_filed": "2017-10-25", - "description": "", - "document_number": "1", - "pacer_doc_id": "025018027678", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "3", - "date_filed": "2017-10-25", - "description": "", - "document_number": "1", - "pacer_doc_id": "025018027679", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "4", - "date_filed": "2017-10-25", - "description": "", - "document_number": "1", - "pacer_doc_id": "025018027680", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "5", - "date_filed": "2017-10-25", - "description": "", - "document_number": "1", - "pacer_doc_id": "025018027681", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "6", - "date_filed": "2017-10-25", - "description": "", - "document_number": "1", - "pacer_doc_id": "025018027682", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "7", - "date_filed": "2017-10-25", - "description": "", - "document_number": "1", - "pacer_doc_id": "025018027683", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "8", - "date_filed": "2017-10-25", - "description": "", - "document_number": "1", - "pacer_doc_id": "025018027684", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, { "date_filed": "2017-10-25", "description": "Filing fee paid, receipt number 0970-14794507. This case has been assigned to the Honorable Judge Douglas L Rayes. All future pleadings or documents should bear the correct case number: CV-17-3923-PHX-DLR. Notice of Availability of Magistrate Judge to Exercise Jurisdiction form attached. (KAS) (Entered: 10/25/2017)", diff --git a/tests/examples/pacer/dockets_internet_archive/azd_318008.json b/tests/examples/pacer/dockets_internet_archive/azd_318008.json index 6a651e0e8..1a6086ecf 100644 --- a/tests/examples/pacer/dockets_internet_archive/azd_318008.json +++ b/tests/examples/pacer/dockets_internet_archive/azd_318008.json @@ -10,6 +10,14 @@ "demand": "", "docket_entries": [ { + "attachments": [ + { + "attachment_number": "1", + "description": "Civil Cover Sheet", + "pacer_doc_id": "02501840501", + "pacer_seq_no": null + } + ], "date_filed": "2006-09-07", "description": "COMPLAINT, filed by Soilworks LLC. (Attachments: # 1 Civil Cover Sheet)(Dosek, E) (Entered: 09/07/2006)", "document_number": "1", @@ -17,15 +25,6 @@ "pacer_seq_no": null, "short_description": "" }, - { - "attachment_number": "1", - "date_filed": "2006-09-07", - "description": "", - "document_number": "1", - "pacer_doc_id": "02501840501", - "pacer_seq_no": null, - "short_description": "Civil Cover Sheet" - }, { "date_filed": null, "description": "", @@ -547,6 +546,56 @@ "short_description": "" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit A: Riverdeep Complaint", + "pacer_doc_id": "02502837709", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Exhibit B: Westlaw Cases", + "pacer_doc_id": "02502837710", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Exhibit C - Midwest's Answer's to Plaintiff's Second Set of Inter", + "pacer_doc_id": "02502837711", + "pacer_seq_no": null + }, + { + "attachment_number": "4", + "description": "Exhibit D: 071130 Midwest's Settlement Letter", + "pacer_doc_id": "02502837712", + "pacer_seq_no": null + }, + { + "attachment_number": "5", + "description": "Exhibit E - Midwest's Settlement Conference Memorandum", + "pacer_doc_id": "02502837713", + "pacer_seq_no": null + }, + { + "attachment_number": "6", + "description": "Exhibit F - Excerpts from Deposition of Robert Vitale1", + "pacer_doc_id": "02502837714", + "pacer_seq_no": null + }, + { + "attachment_number": "7", + "description": "Exhibit G - U.S. Trademark Registration No. 3,318,243", + "pacer_doc_id": "02502837715", + "pacer_seq_no": null + }, + { + "attachment_number": "8", + "description": "Text of Proposed Order", + "pacer_doc_id": "02502837716", + "pacer_seq_no": null + } + ], "date_filed": "2008-03-26", "description": "MOTION for for Order to Include \"Synthetic Organic Dust Control\" as part of \"Midwest's Marks\" by Midwest Industrial Supply Inc. (Attachments: # 1 Exhibit A: Riverdeep Complaint, # 2 Exhibit B: Westlaw Cases, # 3 Exhibit C - Midwest's Answer's to Plaintiff's Second Set of Interrogatories, # 4 Exhibit D: 071130 Midwest's Settlement Letter, # 5 Exhibit E - Midwest's Settlement Conference Memorandum, # 6 Exhibit F - Excerpts from Deposition of Robert Vitale1, # 7 Exhibit G - U.S. Trademark Registration No. 3,318,243, # 8 Text of Proposed Order)(Skeriotis, John) (Entered: 03/26/2008)", "document_number": "67", @@ -554,78 +603,6 @@ "pacer_seq_no": null, "short_description": "" }, - { - "attachment_number": "1", - "date_filed": "2008-03-26", - "description": "", - "document_number": "67", - "pacer_doc_id": "02502837709", - "pacer_seq_no": null, - "short_description": "Exhibit A: Riverdeep Complaint" - }, - { - "attachment_number": "2", - "date_filed": "2008-03-26", - "description": "", - "document_number": "67", - "pacer_doc_id": "02502837710", - "pacer_seq_no": null, - "short_description": "Exhibit B: Westlaw Cases" - }, - { - "attachment_number": "3", - "date_filed": "2008-03-26", - "description": "", - "document_number": "67", - "pacer_doc_id": "02502837711", - "pacer_seq_no": null, - "short_description": "Exhibit C - Midwest's Answer's to Plaintiff's Second Set of Inter" - }, - { - "attachment_number": "4", - "date_filed": "2008-03-26", - "description": "", - "document_number": "67", - "pacer_doc_id": "02502837712", - "pacer_seq_no": null, - "short_description": "Exhibit D: 071130 Midwest's Settlement Letter" - }, - { - "attachment_number": "5", - "date_filed": "2008-03-26", - "description": "", - "document_number": "67", - "pacer_doc_id": "02502837713", - "pacer_seq_no": null, - "short_description": "Exhibit E - Midwest's Settlement Conference Memorandum" - }, - { - "attachment_number": "6", - "date_filed": "2008-03-26", - "description": "", - "document_number": "67", - "pacer_doc_id": "02502837714", - "pacer_seq_no": null, - "short_description": "Exhibit F - Excerpts from Deposition of Robert Vitale1" - }, - { - "attachment_number": "7", - "date_filed": "2008-03-26", - "description": "", - "document_number": "67", - "pacer_doc_id": "02502837715", - "pacer_seq_no": null, - "short_description": "Exhibit G - U.S. Trademark Registration No. 3,318,243" - }, - { - "attachment_number": "8", - "date_filed": "2008-03-26", - "description": "", - "document_number": "67", - "pacer_doc_id": "02502837716", - "pacer_seq_no": null, - "short_description": "Text of Proposed Order" - }, { "date_filed": "2008-03-28", "description": "ORDER granting 66 Motion to Withdraw as Counsel. That Bryan Cave LLP and attorneys Lawrence G. Scarborough and George C. Chen shall withdraw as counsel for defendant/counterclaimant Midwest Industrial Supply, Inc., effective upon entry of this Order. Signed by Judge David G Campbell on 3/28/08.(MAP) (Entered: 03/28/2008)", @@ -707,6 +684,14 @@ "short_description": "" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Memorandum in Support of Motion for Partial Summary Judgment", + "pacer_doc_id": "02502995843", + "pacer_seq_no": null + } + ], "date_filed": "2008-05-09", "description": "MOTION for Partial Summary Judgment by Midwest Industrial Supply Inc, Midwest Industrial Supply Inc. (Attachments: # 1 Memorandum in Support of Motion for Partial Summary Judgment)(Grinham, Jill) (Entered: 05/09/2008)", "document_number": "78", @@ -715,15 +700,26 @@ "short_description": "" }, { - "attachment_number": "1", - "date_filed": "2008-05-09", - "description": "", - "document_number": "78", - "pacer_doc_id": "02502995843", - "pacer_seq_no": null, - "short_description": "Memorandum in Support of Motion for Partial Summary Judgment" - }, - { + "attachments": [ + { + "attachment_number": "1", + "description": "Supplement Statement of Facts in Support of Plaintiff's Motion for Summary", + "pacer_doc_id": "02502996134", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Exhibit Exhibits 1-7 to SOF in Support of Motion for Summary Judgment", + "pacer_doc_id": "02502996135", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Exhibit Exhibits 7-14 to SOF in Support of Motion for Summary Judgment", + "pacer_doc_id": "02502996136", + "pacer_seq_no": null + } + ], "date_filed": "2008-05-09", "description": "MEMORANDUM in Support re 78 MOTION for Summary Judgment by Soilworks LLC, Soilworks LLC. (Attachments: # 1 Supplement Statement of Facts in Support of Plaintiff's Motion for Summary Judgment, # 2 Exhibit Exhibits 1-7 to SOF in Support of Motion for Summary Judgment, # 3 Exhibit Exhibits 7-14 to SOF in Support of Motion for Summary Judgment)(Dosek, E) Modified on 5/12/2008 (SAT). INCORRECT EVENT SELECTED. THIS ENTRY HAS BEEN MODIFIED FROM \"MOTION\" TO \"MEMORANDUM IN SUPPORT OF\". DOCKET TEXT MODIFIED TO CORRECT DOCUMENT LINKAGE. (Entered: 05/09/2008)", "document_number": "79", @@ -731,33 +727,6 @@ "pacer_seq_no": null, "short_description": "" }, - { - "attachment_number": "1", - "date_filed": "2008-05-09", - "description": "", - "document_number": "79", - "pacer_doc_id": "02502996134", - "pacer_seq_no": null, - "short_description": "Supplement Statement of Facts in Support of Plaintiff's Motion for Summary" - }, - { - "attachment_number": "2", - "date_filed": "2008-05-09", - "description": "", - "document_number": "79", - "pacer_doc_id": "02502996135", - "pacer_seq_no": null, - "short_description": "Exhibit Exhibits 1-7 to SOF in Support of Motion for Summary Judgment" - }, - { - "attachment_number": "3", - "date_filed": "2008-05-09", - "description": "", - "document_number": "79", - "pacer_doc_id": "02502996136", - "pacer_seq_no": null, - "short_description": "Exhibit Exhibits 7-14 to SOF in Support of Motion for Summary Judgment" - }, { "date_filed": "2008-05-09", "description": "STATEMENT of Material Facts by Counter Claimant Midwest Industrial Supply Inc, Defendant Midwest Industrial Supply Inc, Counter Defendant Midwest Industrial Supply Inc. (Attachments: # 1 Exhibit List to Midwest's Statement of Material Facts, # 2 Exhibit A - Deposition of Robert Vitale (I), # 3 Exhibit B - Deposition of Robert Vitale (II), # 4 Exhibit C - Declaration of Robert Vitale, # 5 Vitale Declaration (Attachment 1), # 6 Vitale Declaration (Attachment 2), # 7 Vitale Declaration (Attachment 3), # 8 Vitale Declaration (Attachment 4), # 9 Vitale Declaration (Attachment 5), # 10 Vitale Declaration (Attachment 6), # 11 Vitale Declaration (Attachment 7), # 12 Vitale Declaration (Attachment 9), # 13 Vitale Declaration (Attachment 9), # 14 Vitale Declaration (Attachment 10), # 15 Exhibit C - Deposition of Chad Falkenberg, # 16 Chad Falkenberg Deposition (Ex. 12), # 17 Chad Falkenberg Deposition (Ex. 44), # 18 Chad Falkenberg Deposition (Ex. 45), # 19 Chad Falkenberg Deposition (Ex. 48), # 20 Chad Falkenberg Deposition (Ex. 49), # 21 Chad Falkenberg Deposition (Ex. 49), # 22 Chad Falkenberg Deposition (Ex. 53), # 23 Chad Falkenberg Deposition (Ex. 54), # 24 Chad Falkenberg Deposition (Ex. 55), # 25 Chad Falkenberg Deposition (Ex. 56), # 26 Chad Falkenberg Deposition (Ex. 57), # 27 Exhibit E - Dorian Falkenberg Deposition, # 28 Dorian Falkenberg Deposition (Ex. 13), # 29 Exhibit F - Soilworks' Rule 26 Initial Disclosures, # 30 Exhibit G - Soilworks' Responses, # 31 Exhibit H - Midwest's Interrogatories, # 32 Exhibit I - Midwest's First Document Production Request, # 33 Exhibit J - Midwest's Second Document Production Request, # 34 Exhibit K - Declaration of John Skeriotis, # 35 Skeriotis (Attachment A), # 36 Skeriotis Declaration (Attachment B), # 37 Skeriotis Declaration (Attachment C), # 38 Skeriotis Declaration (Attachment D), # 39 Exhibit I - Soilworks' Responses to First Set of Document Requests, # 40 Exhibit M - Soilworks' Responses to Second Document Requests, # 41 Exhibit N - Steve Hickman Deposition, # 42 Exhibit O - Steve Gordner Deposition)(Grinham, Jill) (Entered: 05/09/2008)", @@ -1423,6 +1392,22 @@ "short_description": "" }, { + "attachments": [ + { + "attachment_number": "1", + "date_filed": "2009-03-16", + "description": "", + "pacer_doc_id": "02513170767", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "date_filed": "2009-03-16", + "description": "", + "pacer_doc_id": "02513170768", + "pacer_seq_no": null + } + ], "date_filed": "2009-03-16", "description": "SEALED Minute Entry. Proceedings held before Judge David G Campbell on 3/16/2009. (Court Reporter Patricia Lyons.) (cc: Dosek/Marvinney/CD)(MAP) (Entered: 03/17/2009)", "document_number": "163", @@ -1430,24 +1415,6 @@ "pacer_seq_no": null, "short_description": "" }, - { - "attachment_number": "1", - "date_filed": "2009-03-16", - "description": "Attachment 1SEALED Minute Entry. Proceedings held before Judge David G Campbell on 3/16/2009. (Court Reporter Patricia Lyons.) (cc: Dosek/Marvinney/CD)(MAP)", - "document_number": "163", - "pacer_doc_id": "02513170767", - "pacer_seq_no": null, - "short_description": "" - }, - { - "attachment_number": "2", - "date_filed": "2009-03-16", - "description": "Attachment 2SEALED Minute Entry. Proceedings held before Judge David G Campbell on 3/16/2009. (Court Reporter Patricia Lyons.) (cc: Dosek/Marvinney/CD)(MAP)", - "document_number": "163", - "pacer_doc_id": "02513170768", - "pacer_seq_no": null, - "short_description": "" - }, { "date_filed": "2009-03-27", "description": "Mail Returned as Undeliverable. Mail sent to Johnathan Lee Riches. Reason for return: Return to Sender. Not Deliverable as addressed. Unable to Forward. Document number 160. (HLA) (Entered: 03/30/2009)", @@ -1505,6 +1472,29 @@ "short_description": "" }, { + "attachments": [ + { + "attachment_number": "1", + "date_filed": null, + "description": "", + "pacer_doc_id": "02513307026", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "date_filed": null, + "description": "", + "pacer_doc_id": "02513307027", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "date_filed": null, + "description": "", + "pacer_doc_id": "02513307028", + "pacer_seq_no": null + } + ], "date_filed": null, "description": "", "document_number": "195", @@ -1512,33 +1502,6 @@ "pacer_seq_no": null, "short_description": "" }, - { - "attachment_number": "1", - "date_filed": null, - "description": "", - "document_number": "195", - "pacer_doc_id": "02513307026", - "pacer_seq_no": null, - "short_description": "" - }, - { - "attachment_number": "2", - "date_filed": null, - "description": "", - "document_number": "195", - "pacer_doc_id": "02513307027", - "pacer_seq_no": null, - "short_description": "" - }, - { - "attachment_number": "3", - "date_filed": null, - "description": "", - "document_number": "195", - "pacer_doc_id": "02513307028", - "pacer_seq_no": null, - "short_description": "" - }, { "date_filed": null, "description": "", diff --git a/tests/examples/pacer/dockets_internet_archive/cacb_1669936.json b/tests/examples/pacer/dockets_internet_archive/cacb_1669936.json index 6191dcc1b..5119896b3 100644 --- a/tests/examples/pacer/dockets_internet_archive/cacb_1669936.json +++ b/tests/examples/pacer/dockets_internet_archive/cacb_1669936.json @@ -10,6 +10,32 @@ "demand": "", "docket_entries": [ { + "attachments": [ + { + "attachment_number": "1", + "description": "", + "pacer_doc_id": "973073614340", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "", + "pacer_doc_id": "973073614343", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "", + "pacer_doc_id": "973073614346", + "pacer_seq_no": null + }, + { + "attachment_number": "4", + "description": "", + "pacer_doc_id": "973073614349", + "pacer_seq_no": null + } + ], "date_filed": "2014-09-10", "description": "Adversary case 2:14-ap-01596. Notice of Removal by Aramid Entertainment Fund Limited, Aramid Grantor Trust . Fee Amount $350 Nature of Suit: (02 (Other (e.g. other actions that would have been brought in state court if unrelated to bankruptcy))) (Arias, Jose) Additional attachment(s) added on 9/10/2014 (Arias, Jose). (Entered: 09/10/2014)", "document_number": "1", @@ -17,42 +43,6 @@ "pacer_seq_no": null, "short_description": "" }, - { - "attachment_number": "1", - "date_filed": "2014-09-10", - "description": "", - "document_number": "1", - "pacer_doc_id": "973073614340", - "pacer_seq_no": null, - "short_description": "" - }, - { - "attachment_number": "2", - "date_filed": "2014-09-10", - "description": "", - "document_number": "1", - "pacer_doc_id": "973073614343", - "pacer_seq_no": null, - "short_description": "" - }, - { - "attachment_number": "3", - "date_filed": "2014-09-10", - "description": "", - "document_number": "1", - "pacer_doc_id": "973073614346", - "pacer_seq_no": null, - "short_description": "" - }, - { - "attachment_number": "4", - "date_filed": "2014-09-10", - "description": "", - "document_number": "1", - "pacer_doc_id": "973073614349", - "pacer_seq_no": null, - "short_description": "" - }, { "date_filed": "2014-06-27", "description": "Adversary case 9:14-ap-01048. Notice of Removal by Royal Business Bank, a California banking corporation . Fee Amount $350 Nature of Suit: (01 (Determination of removed claim or cause)) (Collins, Kim S.) (Entered: 06/27/2014)", diff --git a/tests/examples/pacer/dockets_internet_archive/cand_194617.json b/tests/examples/pacer/dockets_internet_archive/cand_194617.json index a86431450..d0446bbd0 100644 --- a/tests/examples/pacer/dockets_internet_archive/cand_194617.json +++ b/tests/examples/pacer/dockets_internet_archive/cand_194617.json @@ -18,6 +18,26 @@ "short_description": "Complaint" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Standing Order", + "pacer_doc_id": "03503892652", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "CM Standing Order", + "pacer_doc_id": "03503894028", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "", + "pacer_doc_id": "03503613775", + "pacer_seq_no": null + } + ], "date_filed": "2007-08-01", "description": "ADR SCHEDULING ORDER: Case Management Statement due by 11/2/2007. Case Management Conference set for 11/9/2007 01:30 PM. (Attachments: # ([2]) (gm, COURT STAFF) (Filed on 8/1/2007) Additional attachment(s) added on 8/6/2007 (bw, COURT STAFF). Modified on 8/6/2007 (bw, COURT STAFF).", "document_number": "2", @@ -25,33 +45,6 @@ "pacer_seq_no": null, "short_description": "ADR Scheduling Order" }, - { - "attachment_number": "1", - "date_filed": "2007-08-01", - "description": "", - "document_number": "2", - "pacer_doc_id": "03503892652", - "pacer_seq_no": null, - "short_description": "Standing Order" - }, - { - "attachment_number": "2", - "date_filed": "2007-08-01", - "description": "", - "document_number": "2", - "pacer_doc_id": "03503894028", - "pacer_seq_no": null, - "short_description": "CM Standing Order" - }, - { - "attachment_number": "3", - "date_filed": "2007-08-01", - "description": "", - "document_number": "2", - "pacer_doc_id": "03503613775", - "pacer_seq_no": null, - "short_description": "" - }, { "date_filed": "2007-08-03", "description": "CLERK'S NOTICE Re-Setting Initial Case Management Conference. Case Management Conference re-set for 11/13/2007 01:30 PM in Courtroom 2. Case Management Statement due by 11/6/2007. All other dates in court's Initial Order Setting Case Management Conference are adjusted accordingly. (hrllc2, COURT STAFF) (Filed on 8/3/2007)", @@ -237,6 +230,14 @@ "short_description": "Joint Case Management Statement" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Proposed Order", + "pacer_doc_id": "03503948510", + "pacer_seq_no": null + } + ], "date_filed": "2007-11-16", "description": "MOTION to Compel Filing of a Complete Administrative Record filed by Pineros Y Campesinos Unidos Del Noroeste, Beyond Pesticides, United Farm Workers, AFL-CIO, Frente Indigena de Organizaciones Binacionales, Farm Labor Organizing Committee, AFL-CIO, Teamsters Local 890, Martha Rodriguez, Silvina Canez, Sea Mar Community Health Center. (Attachments: # (1) Proposed Order)(Goldman, Patti) (Filed on 11/16/2007)", "document_number": "26", @@ -245,15 +246,44 @@ "short_description": "Motion to Compel" }, { - "attachment_number": "1", - "date_filed": "2007-11-16", - "description": "", - "document_number": "26", - "pacer_doc_id": "03503948510", - "pacer_seq_no": null, - "short_description": "Proposed Order" - }, - { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit 1", + "pacer_doc_id": "03503901275", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Exhibit 2", + "pacer_doc_id": "03503951142", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Exhibit 3", + "pacer_doc_id": "03503951351", + "pacer_seq_no": null + }, + { + "attachment_number": "4", + "description": "Exhibit 4", + "pacer_doc_id": "03503948773", + "pacer_seq_no": null + }, + { + "attachment_number": "5", + "description": "Exhibit 5", + "pacer_doc_id": "03503950641", + "pacer_seq_no": null + }, + { + "attachment_number": "6", + "description": "Exhibit 6", + "pacer_doc_id": "03503923345", + "pacer_seq_no": null + } + ], "date_filed": "2007-11-16", "description": "Declaration of Joshua Osborne-Klein in Support of [26] MOTION to Compel Filing of a Complete Administrative Record filed byPineros Y Campesinos Unidos Del Noroeste, Beyond Pesticides, United Farm Workers, AFL-CIO, Frente Indigena de Organizaciones Binacionales, Farm Labor Organizing Committee, AFL-CIO, Teamsters Local 890, Martha Rodriguez, Silvina Canez, Sea Mar Community Health Center. (Attachments: # (1) Exhibit 1# (2) Exhibit 2# (3) Exhibit 3# (4) Exhibit 4# (5) Exhibit 5# (6) Exhibit 6)(Related document(s)[26]) (Goldman, Patti) (Filed on 11/16/2007)", "document_number": "27", @@ -261,60 +291,6 @@ "pacer_seq_no": null, "short_description": "Declaration in Support" }, - { - "attachment_number": "1", - "date_filed": "2007-11-16", - "description": "", - "document_number": "27", - "pacer_doc_id": "03503901275", - "pacer_seq_no": null, - "short_description": "Exhibit 1" - }, - { - "attachment_number": "2", - "date_filed": "2007-11-16", - "description": "", - "document_number": "27", - "pacer_doc_id": "03503951142", - "pacer_seq_no": null, - "short_description": "Exhibit 2" - }, - { - "attachment_number": "3", - "date_filed": "2007-11-16", - "description": "", - "document_number": "27", - "pacer_doc_id": "03503951351", - "pacer_seq_no": null, - "short_description": "Exhibit 3" - }, - { - "attachment_number": "4", - "date_filed": "2007-11-16", - "description": "", - "document_number": "27", - "pacer_doc_id": "03503948773", - "pacer_seq_no": null, - "short_description": "Exhibit 4" - }, - { - "attachment_number": "5", - "date_filed": "2007-11-16", - "description": "", - "document_number": "27", - "pacer_doc_id": "03503950641", - "pacer_seq_no": null, - "short_description": "Exhibit 5" - }, - { - "attachment_number": "6", - "date_filed": "2007-11-16", - "description": "", - "document_number": "27", - "pacer_doc_id": "03503923345", - "pacer_seq_no": null, - "short_description": "Exhibit 6" - }, { "date_filed": "2007-11-16", "description": "Minute Entry: Initial Case Management Conference held on 11/16/2007 before Judge Jeremy Fogel (Date Filed: 11/16/2007). Further Case Management Conference set for 2/22/2008 10:30 AM. (Court Reporter Summer Clanton.) (dlm, COURT STAFF) (Date Filed: 11/16/2007)", @@ -324,6 +300,14 @@ "short_description": "Case Management Conference - Initial" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit Decision in Ohio Valley Environmental Coalition v. Whitman", + "pacer_doc_id": "03501864454", + "pacer_seq_no": null + } + ], "date_filed": "2007-11-30", "description": "Memorandum in Opposition re [26] MOTION to Compel Filing of a Complete Administrative Record filed byAdministrator, U.S. Environmental Protection Agency. (Attachments: # (1) Exhibit Decision in Ohio Valley Environmental Coalition v. Whitman)(Rave, Norman) (Filed on 11/30/2007)", "document_number": "29", @@ -331,15 +315,6 @@ "pacer_seq_no": null, "short_description": "Memorandum in Opposition" }, - { - "attachment_number": "1", - "date_filed": "2007-11-30", - "description": "", - "document_number": "29", - "pacer_doc_id": "03501864454", - "pacer_seq_no": null, - "short_description": "Exhibit Decision in Ohio Valley Environmental Coalition v. Whitman" - }, { "date_filed": "2007-12-07", "description": "NOTICE by Pineros Y Campesinos Unidos Del Noroeste, Beyond Pesticides, United Farm Workers, AFL-CIO, Frente Indigena de Organizaciones Binacionales, Farm Labor Organizing Committee, AFL-CIO, Teamsters Local 890, Martha Rodriguez, Silvina Canez, Sea Mar Community Health Center re [26] MOTION to Compel Filing of a Complete Administrative Record Notice of Scheduling Re: Motion to Compel (Goldman, Patti) (Filed on 12/7/2007)", @@ -357,6 +332,14 @@ "short_description": "Reply to Opposition" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit 1", + "pacer_doc_id": "03504127613", + "pacer_seq_no": null + } + ], "date_filed": "2007-12-07", "description": "Declaration of Joshua Osborne-Klein in Support of [31] Reply to Opposition,, filed byPineros Y Campesinos Unidos Del Noroeste, Beyond Pesticides, United Farm Workers, AFL-CIO, Frente Indigena de Organizaciones Binacionales, Farm Labor Organizing Committee, AFL-CIO, Teamsters Local 890, Martha Rodriguez, Silvina Canez, Sea Mar Community Health Center. (Attachments: # (1) Exhibit 1)(Related document(s)[31]) (Goldman, Patti) (Filed on 12/7/2007)", "document_number": "32", @@ -364,15 +347,6 @@ "pacer_seq_no": null, "short_description": "Declaration in Support" }, - { - "attachment_number": "1", - "date_filed": "2007-12-07", - "description": "", - "document_number": "32", - "pacer_doc_id": "03504127613", - "pacer_seq_no": null, - "short_description": "Exhibit 1" - }, { "date_filed": "2007-12-12", "description": "[Proposed] Answer of Intervenor-Defendant Dow AgroSciences LLC to First Amended Complaint ANSWER to Amended Complaint byDow Agrosciences LLC. (Weiss, Laurence) (Filed on 12/12/2007)", @@ -446,6 +420,14 @@ "short_description": "Order on Motion for Pro Hac Vice" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit A", + "pacer_doc_id": "03504204927", + "pacer_seq_no": null + } + ], "date_filed": "2008-01-10", "description": "STATEMENT OF RECENT DECISION pursuant to Civil Local Rule 7-3.d filed byPineros Y Campesinos Unidos Del Noroeste, Beyond Pesticides, United Farm Workers, AFL-CIO, Frente Indigena de Organizaciones Binacionales, Farm Labor Organizing Committee, AFL-CIO, Teamsters Local 890, Martha Rodriguez, Silvina Canez, Sea Mar Community Health Center. (Attachments: # (1) Exhibit A)(Goldman, Patti) (Filed on 1/10/2008)", "document_number": "42", @@ -453,15 +435,6 @@ "pacer_seq_no": null, "short_description": "Statement of Recent Decision" }, - { - "attachment_number": "1", - "date_filed": "2008-01-10", - "description": "", - "document_number": "42", - "pacer_doc_id": "03504204927", - "pacer_seq_no": null, - "short_description": "Exhibit A" - }, { "date_filed": "2008-01-15", "description": "STIPULATION re [28] Case Management Conference - Initial,, Set Hearings, Stipulation and [Proposed] Order to Reschedule Case Management Conference by Pineros Y Campesinos Unidos Del Noroeste, Beyond Pesticides, United Farm Workers, AFL-CIO, Frente Indigena de Organizaciones Binacionales, Farm Labor Organizing Committee, AFL-CIO, Teamsters Local 890, Martha Rodriguez, Silvina Canez, Sea Mar Community Health Center. (Goldman, Patti) (Filed on 1/15/2008)", @@ -487,6 +460,14 @@ "short_description": "Reply Memorandum" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit A", + "pacer_doc_id": "03504232561", + "pacer_seq_no": null + } + ], "date_filed": "2008-01-18", "description": "STATEMENT OF RECENT DECISION pursuant to Civil Local Rule 7-3.d filed byPineros Y Campesinos Unidos Del Noroeste, Beyond Pesticides, United Farm Workers, AFL-CIO, Frente Indigena de Organizaciones Binacionales, Farm Labor Organizing Committee, AFL-CIO, Teamsters Local 890, Martha Rodriguez, Silvina Canez, Sea Mar Community Health Center. (Attachments: # (1) Exhibit A)(Goldman, Patti) (Filed on 1/18/2008)", "document_number": "46", @@ -494,15 +475,6 @@ "pacer_seq_no": null, "short_description": "Statement of Recent Decision" }, - { - "attachment_number": "1", - "date_filed": "2008-01-18", - "description": "", - "document_number": "46", - "pacer_doc_id": "03504232561", - "pacer_seq_no": null, - "short_description": "Exhibit A" - }, { "date_filed": "2008-02-01", "description": "Minute Entry: Motion Hearing held on 2/1/2008 before Judge Jeremy Fogel (Date Filed: 2/1/2008) re [26] MOTION to Compel Filing of a Complete Administrative Record and re [34] MOTION to Intervene. The Motion to Compel is taken under submission. The Motion to Intervene is granted. (Court Reporter Summer Clanton.) (dlm, COURT STAFF) (Date Filed: 2/1/2008)", @@ -528,6 +500,14 @@ "short_description": "Order" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Proposed Order Granting Motion by Intervenor-Defendant Dow AgroSciences LLC to D", + "pacer_doc_id": "03504400072", + "pacer_seq_no": null + } + ], "date_filed": "2008-03-13", "description": "MOTION to Dismiss and Memorandum of Points and Authorities in Support of Motion filed by Dow Agrosciences LLC. Motion Hearing set for 5/9/2008 09:00 AM in Courtroom 3, 5th Floor, San Jose. (Attachments: # (1) Proposed Order Granting Motion by Intervenor-Defendant Dow AgroSciences LLC to Dismiss)(Weiss, Laurence) (Filed on 3/13/2008)", "document_number": "50", @@ -536,15 +516,14 @@ "short_description": "Motion to Dismiss" }, { - "attachment_number": "1", - "date_filed": "2008-03-13", - "description": "", - "document_number": "50", - "pacer_doc_id": "03504400072", - "pacer_seq_no": null, - "short_description": "Proposed Order Granting Motion by Intervenor-Defendant Dow AgroSciences LLC to D" - }, - { + "attachments": [ + { + "attachment_number": "1", + "description": "Standing Order", + "pacer_doc_id": "03504405100", + "pacer_seq_no": null + } + ], "date_filed": "2008-03-14", "description": "CERTIFICATE OF SERVICE by Pesticide Action Network North America, Pineros Y Campesinos Unidos Del Noroeste, Beyond Pesticides, United Farm Workers, AFL-CIO, Frente Indigena de Organizaciones Binacionales, Farm Labor Organizing Committee, AFL-CIO, Teamsters Local 890, Martha Rodriguez, Silvina Canez, Sea Mar Community Health Center (Attachments: # (1) Standing Order)(Boyles, Kristen) (Filed on 3/14/2008)", "document_number": "51", @@ -552,15 +531,6 @@ "pacer_seq_no": null, "short_description": "Certificate of Service" }, - { - "attachment_number": "1", - "date_filed": "2008-03-14", - "description": "", - "document_number": "51", - "pacer_doc_id": "03504405100", - "pacer_seq_no": null, - "short_description": "Standing Order" - }, { "date_filed": "2008-03-19", "description": "JOINT CASE MANAGEMENT STATEMENT Supplement to Joint Case Management Statement filed by Pineros Y Campesinos Unidos Del Noroeste, Pesticide Action Network North America, Beyond Pesticides, United Farm Workers, AFL-CIO, Frente Indigena de Organizaciones Binacionales, Farm Labor Organizing Committee, AFL-CIO, Teamsters Local 890, Martha Rodriguez, Silvina Canez, Sea Mar Community Health Center. (Boyles, Kristen) (Filed on 3/19/2008)", @@ -586,6 +556,14 @@ "short_description": "Memorandum in Opposition" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Proposed Order", + "pacer_doc_id": "03504526274", + "pacer_seq_no": null + } + ], "date_filed": "2008-04-23", "description": "Consent MOTION to Appear by Telephone at Hearing on Intervenor's Motion to Dismiss filed by Administrator, U.S. Environmental Protection Agency. (Attachments: # (1) Proposed Order)(Rave, Norman) (Filed on 4/23/2008)", "document_number": "55", @@ -593,15 +571,6 @@ "pacer_seq_no": null, "short_description": "Motion to Appear by Telephone" }, - { - "attachment_number": "1", - "date_filed": "2008-04-23", - "description": "", - "document_number": "55", - "pacer_doc_id": "03504526274", - "pacer_seq_no": null, - "short_description": "Proposed Order" - }, { "date_filed": "2008-04-25", "description": "REPLY in support of Motion to Dismiss filed byDow Agrosciences LLC. (Weiss, Laurence) (Filed on 4/25/2008) Modified on 4/28/2008 (gm, COURT STAFF).", @@ -643,6 +612,20 @@ "short_description": "Order" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit 1", + "pacer_doc_id": "03504612718", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Proposed Order Granting Intervenor Dow AgroSciences LLC's Motion for Leave", + "pacer_doc_id": "03504612719", + "pacer_seq_no": null + } + ], "date_filed": "2008-05-22", "description": "MOTION for Leave to File Statement of Recent Decision filed by Dow Agrosciences LLC. (Attachments: # (1) Exhibit 1, # (2) Proposed Order Granting Intervenor Dow AgroSciences LLC's Motion for Leave to File Statement of Recent Decision)(Weiss, Laurence) (Filed on 5/22/2008)", "document_number": "61", @@ -650,24 +633,6 @@ "pacer_seq_no": null, "short_description": "Motion for Leave to File" }, - { - "attachment_number": "1", - "date_filed": "2008-05-22", - "description": "", - "document_number": "61", - "pacer_doc_id": "03504612718", - "pacer_seq_no": null, - "short_description": "Exhibit 1" - }, - { - "attachment_number": "2", - "date_filed": "2008-05-22", - "description": "", - "document_number": "61", - "pacer_doc_id": "03504612719", - "pacer_seq_no": null, - "short_description": "Proposed Order Granting Intervenor Dow AgroSciences LLC's Motion for Leave" - }, { "date_filed": "2008-05-22", "description": "Response re [61] MOTION for Leave to File Statement of Recent Decision UFW's Response to Dow's Motion for Leave to File Statement of Recent Decision byPineros Y Campesinos Unidos Del Noroeste, Pesticide Action Network North America, Beyond Pesticides, United Farm Workers, AFL-CIO, Frente Indigena de Organizaciones Binacionales, Farm Labor Organizing Committee, AFL-CIO, Teamsters Local 890, Martha Rodriguez, Silvina Canez, Sea Mar Community Health Center. (Boyles, Kristen) (Filed on 5/22/2008)", @@ -733,30 +698,26 @@ "short_description": "Order" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Proposed Motion for Reconsideration", + "pacer_doc_id": "03504931595", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Exhibit 1 to Motion for Reconsideration", + "pacer_doc_id": "03504931596", + "pacer_seq_no": null + } + ], "date_filed": "2008-09-16", "description": "MOTION for Leave to File a Motion for Reconsideration Pursuant to Local Rule 7-9(a) filed by Dow Agrosciences LLC. (Attachments: # (1) Proposed Motion for Reconsideration, # (2) Exhibit 1 to Motion for Reconsideration)(Weiss, Laurence) (Filed on 9/16/2008)", "document_number": "70", "pacer_doc_id": "03504931594", "pacer_seq_no": null, "short_description": "Motion for Leave to File" - }, - { - "attachment_number": "1", - "date_filed": "2008-09-16", - "description": "", - "document_number": "70", - "pacer_doc_id": "03504931595", - "pacer_seq_no": null, - "short_description": "Proposed Motion for Reconsideration" - }, - { - "attachment_number": "2", - "date_filed": "2008-09-16", - "description": "", - "document_number": "70", - "pacer_doc_id": "03504931596", - "pacer_seq_no": null, - "short_description": "Exhibit 1 to Motion for Reconsideration" } ], "docket_number": "5:07-cv-03950", diff --git a/tests/examples/pacer/dockets_internet_archive/cand_287492.json b/tests/examples/pacer/dockets_internet_archive/cand_287492.json index f6aa35c65..a6fa1e5cb 100644 --- a/tests/examples/pacer/dockets_internet_archive/cand_287492.json +++ b/tests/examples/pacer/dockets_internet_archive/cand_287492.json @@ -818,6 +818,14 @@ "short_description": "" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Proposed Order", + "pacer_doc_id": "035015013360", + "pacer_seq_no": null + } + ], "date_filed": "2017-01-06", "description": "OPPOSITION/RESPONSE (re 99 MOTION to Dismiss Portions of Third Amended Complaint ) filed byMarc Anderson, Juliette Morizur, Kelly Nelson. (Attachments: # 1 Proposed Order)(Haskett, Christine) (Filed on 1/6/2017) (Entered: 01/06/2017)", "document_number": "102", @@ -825,15 +833,6 @@ "pacer_seq_no": null, "short_description": "" }, - { - "attachment_number": "1", - "date_filed": "2017-01-06", - "description": "", - "document_number": "102", - "pacer_doc_id": "035015013360", - "pacer_seq_no": null, - "short_description": "Proposed Order" - }, { "date_filed": "2017-01-20", "description": "REPLY (re 99 MOTION to Dismiss Portions of Third Amended Complaint ) filed bySeaWorld Parks and Entertainment, Inc.. (Simpson, John) (Filed on 1/20/2017) (Entered: 01/20/2017)", diff --git a/tests/examples/pacer/dockets_internet_archive/dcd_119997.json b/tests/examples/pacer/dockets_internet_archive/dcd_119997.json index 50ab75798..8de77ced1 100644 --- a/tests/examples/pacer/dockets_internet_archive/dcd_119997.json +++ b/tests/examples/pacer/dockets_internet_archive/dcd_119997.json @@ -10,6 +10,140 @@ "demand": "", "docket_entries": [ { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit 1", + "pacer_doc_id": "04501625604", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Exhibit 2", + "pacer_doc_id": "04501625292", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Exhibit 3", + "pacer_doc_id": "04501625587", + "pacer_seq_no": null + }, + { + "attachment_number": "4", + "description": "Exhibit 4", + "pacer_doc_id": "04501624966", + "pacer_seq_no": null + }, + { + "attachment_number": "5", + "description": "Exhibit 5", + "pacer_doc_id": "04501625517", + "pacer_seq_no": null + }, + { + "attachment_number": "6", + "description": "Exhibit 6", + "pacer_doc_id": "04501625075", + "pacer_seq_no": null + }, + { + "attachment_number": "7", + "description": "Exhibit 7", + "pacer_doc_id": "04501625429", + "pacer_seq_no": null + }, + { + "attachment_number": "8", + "description": "Exhibit 8", + "pacer_doc_id": "04501624951", + "pacer_seq_no": null + }, + { + "attachment_number": "9", + "description": "Exhibit 9", + "pacer_doc_id": "04501625472", + "pacer_seq_no": null + }, + { + "attachment_number": "10", + "description": "Exhibit 10", + "pacer_doc_id": "04501625189", + "pacer_seq_no": null + }, + { + "attachment_number": "11", + "description": "Exhibit 11", + "pacer_doc_id": "04501625642", + "pacer_seq_no": null + }, + { + "attachment_number": "12", + "description": "Exhibit 12", + "pacer_doc_id": "04501625427", + "pacer_seq_no": null + }, + { + "attachment_number": "13", + "description": "Exhibit 13", + "pacer_doc_id": "04501624969", + "pacer_seq_no": null + }, + { + "attachment_number": "14", + "description": "Exhibit 14", + "pacer_doc_id": "04501625177", + "pacer_seq_no": null + }, + { + "attachment_number": "15", + "description": "Exhibit 15", + "pacer_doc_id": "04501625094", + "pacer_seq_no": null + }, + { + "attachment_number": "16", + "description": "Exhibit 16", + "pacer_doc_id": "04501625639", + "pacer_seq_no": null + }, + { + "attachment_number": "17", + "description": "Exhibit 17", + "pacer_doc_id": "04501625192", + "pacer_seq_no": null + }, + { + "attachment_number": "18", + "description": "Exhibit 18", + "pacer_doc_id": "04501625358", + "pacer_seq_no": null + }, + { + "attachment_number": "19", + "description": "Exhibit 19", + "pacer_doc_id": "04501625290", + "pacer_seq_no": null + }, + { + "attachment_number": "20", + "description": "Exhibit 20", + "pacer_doc_id": "04501625140", + "pacer_seq_no": null + }, + { + "attachment_number": "21", + "description": "Exhibit 21", + "pacer_doc_id": "04501625701", + "pacer_seq_no": null + }, + { + "attachment_number": "22", + "description": "Exhibit 22", + "pacer_doc_id": "04501625033", + "pacer_seq_no": null + } + ], "date_filed": "2006-03-29", "description": "COMPLAINT against DISTRICT OF COLUMBIA (Filing fee $ 250) filed by LUNETTE RUSSELL, KAREN FISHER, KEISHA GANTT, MARGARET A. MORGAN, CATHY JOHNSON, GUADALUPE VAQUERO, PAMELA KING, WILLIAM MARROW, LISA MILLER, JEAN ABDUR RASHID, GLORIA SANTAMARIA, JEAUNEL PARTRIDGE, THERESA BROWN, KAREN TATE, JASMINE THOMAS, TERRY JOHNSON, JEANETTE WILLIAMS, GEORGE MARSHALL, BARBARA YOUNG, CHAMISA ARMSTEAD, TIFFANIE LITTLE, MELISA BOYD. (Attachments: # (1) Exhibit 1# (2) Exhibit 2# (3) Exhibit 3# (4) Exhibit 4# (5) Exhibit 5# (6) Exhibit 6# (7) Exhibit 7# (8) Exhibit 8# (9) Exhibit 9# (10) Exhibit 10# (11) Exhibit 11# (12) Exhibit 12# (13) Exhibit 13# (14) Exhibit 14# (15) Exhibit 15# (16) Exhibit 16# (17) Exhibit 17# (18) Exhibit 18# (19) Exhibit 19# (20) Exhibit 20# (21) Exhibit 21# (22) Exhibit 22)(jf, )", "document_number": "1", @@ -17,204 +151,6 @@ "pacer_seq_no": null, "short_description": "Complaint" }, - { - "attachment_number": "1", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625604", - "pacer_seq_no": null, - "short_description": "Exhibit 1" - }, - { - "attachment_number": "2", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625292", - "pacer_seq_no": null, - "short_description": "Exhibit 2" - }, - { - "attachment_number": "3", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625587", - "pacer_seq_no": null, - "short_description": "Exhibit 3" - }, - { - "attachment_number": "4", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501624966", - "pacer_seq_no": null, - "short_description": "Exhibit 4" - }, - { - "attachment_number": "5", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625517", - "pacer_seq_no": null, - "short_description": "Exhibit 5" - }, - { - "attachment_number": "6", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625075", - "pacer_seq_no": null, - "short_description": "Exhibit 6" - }, - { - "attachment_number": "7", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625429", - "pacer_seq_no": null, - "short_description": "Exhibit 7" - }, - { - "attachment_number": "8", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501624951", - "pacer_seq_no": null, - "short_description": "Exhibit 8" - }, - { - "attachment_number": "9", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625472", - "pacer_seq_no": null, - "short_description": "Exhibit 9" - }, - { - "attachment_number": "10", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625189", - "pacer_seq_no": null, - "short_description": "Exhibit 10" - }, - { - "attachment_number": "11", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625642", - "pacer_seq_no": null, - "short_description": "Exhibit 11" - }, - { - "attachment_number": "12", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625427", - "pacer_seq_no": null, - "short_description": "Exhibit 12" - }, - { - "attachment_number": "13", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501624969", - "pacer_seq_no": null, - "short_description": "Exhibit 13" - }, - { - "attachment_number": "14", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625177", - "pacer_seq_no": null, - "short_description": "Exhibit 14" - }, - { - "attachment_number": "15", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625094", - "pacer_seq_no": null, - "short_description": "Exhibit 15" - }, - { - "attachment_number": "16", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625639", - "pacer_seq_no": null, - "short_description": "Exhibit 16" - }, - { - "attachment_number": "17", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625192", - "pacer_seq_no": null, - "short_description": "Exhibit 17" - }, - { - "attachment_number": "18", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625358", - "pacer_seq_no": null, - "short_description": "Exhibit 18" - }, - { - "attachment_number": "19", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625290", - "pacer_seq_no": null, - "short_description": "Exhibit 19" - }, - { - "attachment_number": "20", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625140", - "pacer_seq_no": null, - "short_description": "Exhibit 20" - }, - { - "attachment_number": "21", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625701", - "pacer_seq_no": null, - "short_description": "Exhibit 21" - }, - { - "attachment_number": "22", - "date_filed": "2006-03-29", - "description": "", - "document_number": "1", - "pacer_doc_id": "04501625033", - "pacer_seq_no": null, - "short_description": "Exhibit 22" - }, { "date_filed": "2006-05-17", "description": "Consent MOTION for Extension of Time to File Answer by DISTRICT OF COLUMBIA. (Taptich, Edward)", @@ -264,6 +200,14 @@ "short_description": "Motion for Extension of Time to File Response/Reply" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "*Restricted*", + "pacer_doc_id": "04501803019", + "pacer_seq_no": null + } + ], "date_filed": "2006-08-07", "description": "Memorandum in opposition to re [6] MOTION to Dismiss filed by TIFFANIE LITTLE. (Attachments: # (1))(Gerald, Tilman)", "document_number": "8", @@ -271,15 +215,6 @@ "pacer_seq_no": null, "short_description": "Memorandum in Opposition" }, - { - "attachment_number": "1", - "date_filed": "2006-08-07", - "description": "", - "document_number": "8", - "pacer_doc_id": "04501803019", - "pacer_seq_no": null, - "short_description": "*Restricted*" - }, { "date_filed": "2006-08-07", "description": "NOTICE of Voluntary Dismissal Partial (Gerald, Tilman)", @@ -313,6 +248,20 @@ "short_description": "Order" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit Memorandum of Points and Authorities", + "pacer_doc_id": "04501642354", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Answer to Complaint", + "pacer_doc_id": "04501623622", + "pacer_seq_no": null + } + ], "date_filed": "2007-03-15", "description": "Consent MOTION for Leave to File answer to complaint by DISTRICT OF COLUMBIA (Attachments: # (1) Exhibit Memorandum of Points and Authorities# (2) Answer to Complaint)(Caspari, Amy)", "document_number": "13", @@ -320,24 +269,6 @@ "pacer_seq_no": null, "short_description": "Motion for Leave to File" }, - { - "attachment_number": "1", - "date_filed": "2007-03-15", - "description": "", - "document_number": "13", - "pacer_doc_id": "04501642354", - "pacer_seq_no": null, - "short_description": "Exhibit Memorandum of Points and Authorities" - }, - { - "attachment_number": "2", - "date_filed": "2007-03-15", - "description": "", - "document_number": "13", - "pacer_doc_id": "04501623622", - "pacer_seq_no": null, - "short_description": "Answer to Complaint" - }, { "date_filed": "2007-03-29", "description": "ANSWER to Complaint by DISTRICT OF COLUMBIA. Related document: [1] Complaint,,, filed by JEANETTE WILLIAMS, TERRY JOHNSON, LUNETTE RUSSELL, JEAUNEL PARTRIDGE, BARBARA YOUNG, THERESA BROWN, CHAMISA ARMSTEAD, JEAN ABDUR RASHID, TIFFANIE LITTLE, PAMELA KING, GUADALUPE VAQUERO, WILLIAM MARROW, KAREN FISHER, JASMINE THOMAS, GEORGE MARSHALL, CATHY JOHNSON, MELISA BOYD, LISA MILLER, KEISHA GANTT, MARGARET A. MORGAN, KAREN TATE, GLORIA SANTAMARIA.(jf, )", @@ -371,6 +302,116 @@ "short_description": "Scheduling Order" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Statement of Facts", + "pacer_doc_id": "0450871721", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Exhibit Affidavit of Roberta Gambale", + "pacer_doc_id": "0450871976", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Exhibit Affidavit of Miguel Hull", + "pacer_doc_id": "0450872460", + "pacer_seq_no": null + }, + { + "attachment_number": "4", + "description": "Exhibit Affidavit of Christopher West", + "pacer_doc_id": "0450871983", + "pacer_seq_no": null + }, + { + "attachment_number": "5", + "description": "Exhibit Affidavit of Roxanne D. Neloms", + "pacer_doc_id": "0450872471", + "pacer_seq_no": null + }, + { + "attachment_number": "6", + "description": "Exhibit Affidavit of Domiento Hill", + "pacer_doc_id": "0450871899", + "pacer_seq_no": null + }, + { + "attachment_number": "7", + "description": "Exhibit Ex. 4", + "pacer_doc_id": "0450872157", + "pacer_seq_no": null + }, + { + "attachment_number": "8", + "description": "Exhibit Ex.5", + "pacer_doc_id": "0450871842", + "pacer_seq_no": null + }, + { + "attachment_number": "9", + "description": "Exhibit Ex.6", + "pacer_doc_id": "0450872092", + "pacer_seq_no": null + }, + { + "attachment_number": "10", + "description": "Exhibit Ex. 6", + "pacer_doc_id": "0450872074", + "pacer_seq_no": null + }, + { + "attachment_number": "11", + "description": "Exhibit Ex. 9", + "pacer_doc_id": "0450871711", + "pacer_seq_no": null + }, + { + "attachment_number": "12", + "description": "Exhibit Ex. 11", + "pacer_doc_id": "0450872393", + "pacer_seq_no": null + }, + { + "attachment_number": "13", + "description": "Exhibit Ex. 13", + "pacer_doc_id": "0450872141", + "pacer_seq_no": null + }, + { + "attachment_number": "14", + "description": "Exhibit Ex. 14", + "pacer_doc_id": "0450872294", + "pacer_seq_no": null + }, + { + "attachment_number": "15", + "description": "Exhibit Ex. 15", + "pacer_doc_id": "0450872033", + "pacer_seq_no": null + }, + { + "attachment_number": "16", + "description": "Exhibit Ex. 16", + "pacer_doc_id": "0450872047", + "pacer_seq_no": null + }, + { + "attachment_number": "17", + "description": "Exhibit Ex. 20", + "pacer_doc_id": "0450872400", + "pacer_seq_no": null + }, + { + "attachment_number": "18", + "description": "Exhibit Ex. 22", + "pacer_doc_id": "0450872007", + "pacer_seq_no": null + } + ], "date_filed": "2007-06-08", "description": "MOTION for Summary Judgment by MELISA BOYD (Attachments: # (1) Statement of Facts # (2) Exhibit Affidavit of Roberta Gambale# (3) Exhibit Affidavit of Miguel Hull# (4) Exhibit Affidavit of Christopher West# (5) Exhibit Affidavit of Roxanne D. Neloms# (6) Exhibit Affidavit of Domiento Hill# (7) Exhibit Ex. 4# (8) Exhibit Ex.5# (9) Exhibit Ex.6# (10) Exhibit Ex. 6# (11) Exhibit Ex. 9# (12) Exhibit Ex. 11# (13) Exhibit Ex. 13# (14) Exhibit Ex. 14# (15) Exhibit Ex. 15# (16) Exhibit Ex. 16# (17) Exhibit Ex. 20# (18) Exhibit Ex. 22)(Gerald, Tilman)", "document_number": "18", @@ -378,168 +419,6 @@ "pacer_seq_no": null, "short_description": "Motion for Summary Judgment" }, - { - "attachment_number": "1", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450871721", - "pacer_seq_no": null, - "short_description": "Statement of Facts" - }, - { - "attachment_number": "2", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450871976", - "pacer_seq_no": null, - "short_description": "Exhibit Affidavit of Roberta Gambale" - }, - { - "attachment_number": "3", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450872460", - "pacer_seq_no": null, - "short_description": "Exhibit Affidavit of Miguel Hull" - }, - { - "attachment_number": "4", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450871983", - "pacer_seq_no": null, - "short_description": "Exhibit Affidavit of Christopher West" - }, - { - "attachment_number": "5", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450872471", - "pacer_seq_no": null, - "short_description": "Exhibit Affidavit of Roxanne D. Neloms" - }, - { - "attachment_number": "6", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450871899", - "pacer_seq_no": null, - "short_description": "Exhibit Affidavit of Domiento Hill" - }, - { - "attachment_number": "7", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450872157", - "pacer_seq_no": null, - "short_description": "Exhibit Ex. 4" - }, - { - "attachment_number": "8", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450871842", - "pacer_seq_no": null, - "short_description": "Exhibit Ex.5" - }, - { - "attachment_number": "9", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450872092", - "pacer_seq_no": null, - "short_description": "Exhibit Ex.6" - }, - { - "attachment_number": "10", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450872074", - "pacer_seq_no": null, - "short_description": "Exhibit Ex. 6" - }, - { - "attachment_number": "11", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450871711", - "pacer_seq_no": null, - "short_description": "Exhibit Ex. 9" - }, - { - "attachment_number": "12", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450872393", - "pacer_seq_no": null, - "short_description": "Exhibit Ex. 11" - }, - { - "attachment_number": "13", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450872141", - "pacer_seq_no": null, - "short_description": "Exhibit Ex. 13" - }, - { - "attachment_number": "14", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450872294", - "pacer_seq_no": null, - "short_description": "Exhibit Ex. 14" - }, - { - "attachment_number": "15", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450872033", - "pacer_seq_no": null, - "short_description": "Exhibit Ex. 15" - }, - { - "attachment_number": "16", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450872047", - "pacer_seq_no": null, - "short_description": "Exhibit Ex. 16" - }, - { - "attachment_number": "17", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450872400", - "pacer_seq_no": null, - "short_description": "Exhibit Ex. 20" - }, - { - "attachment_number": "18", - "date_filed": "2007-06-08", - "description": "", - "document_number": "18", - "pacer_doc_id": "0450872007", - "pacer_seq_no": null, - "short_description": "Exhibit Ex. 22" - }, { "date_filed": "2007-06-08", "description": "NOTICE of Voluntary Dismissal re Keisha Gantt (Gerald, Tilman)", @@ -557,6 +436,26 @@ "short_description": "Substitution of Counsel" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit", + "pacer_doc_id": "0450904612", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Exhibit", + "pacer_doc_id": "0450904804", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Exhibit", + "pacer_doc_id": "0450904453", + "pacer_seq_no": null + } + ], "date_filed": "2007-07-13", "description": "Memorandum in opposition to re [18] MOTION for Summary Judgment filed by DISTRICT OF COLUMBIA. (Attachments: # (1) Exhibit # (2) Exhibit # (3) Exhibit)(Caspari, Amy)", "document_number": "21", @@ -565,33 +464,68 @@ "short_description": "Memorandum in Opposition" }, { - "attachment_number": "1", - "date_filed": "2007-07-13", - "description": "", - "document_number": "21", - "pacer_doc_id": "0450904612", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "2", - "date_filed": "2007-07-13", - "description": "", - "document_number": "21", - "pacer_doc_id": "0450904804", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "3", - "date_filed": "2007-07-13", - "description": "", - "document_number": "21", - "pacer_doc_id": "0450904453", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { + "attachments": [ + { + "attachment_number": "1", + "description": "Memorandum of Points and Authorities", + "pacer_doc_id": "0450905049", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Statement of Facts", + "pacer_doc_id": "0450904361", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Exhibit", + "pacer_doc_id": "0450904702", + "pacer_seq_no": null + }, + { + "attachment_number": "4", + "description": "*Restricted*", + "pacer_doc_id": "0450905027", + "pacer_seq_no": null + }, + { + "attachment_number": "5", + "description": "Exhibit", + "pacer_doc_id": "0450904597", + "pacer_seq_no": null + }, + { + "attachment_number": "6", + "description": "Exhibit", + "pacer_doc_id": "0450904573", + "pacer_seq_no": null + }, + { + "attachment_number": "7", + "description": "Exhibit", + "pacer_doc_id": "0450905025", + "pacer_seq_no": null + }, + { + "attachment_number": "8", + "description": "Exhibit", + "pacer_doc_id": "0450904442", + "pacer_seq_no": null + }, + { + "attachment_number": "9", + "description": "*Restricted*", + "pacer_doc_id": "0450904941", + "pacer_seq_no": null + }, + { + "attachment_number": "10", + "description": "Text of Proposed Order", + "pacer_doc_id": "0450904829", + "pacer_seq_no": null + } + ], "date_filed": "2007-07-13", "description": "MOTION for Summary Judgment by DISTRICT OF COLUMBIA (Attachments: # (1) Memorandum of Points and Authorities# (2) Statement of Facts # (3) Exhibit # (4) # (5) Exhibit # (6) Exhibit # (7) Exhibit # (8) Exhibit # (9) # (10) Text of Proposed Order)(Caspari, Amy)", "document_number": "22", @@ -600,605 +534,372 @@ "short_description": "Motion for Summary Judgment" }, { - "attachment_number": "1", + "attachments": [ + { + "attachment_number": "1", + "description": "Opposition", + "pacer_doc_id": "0450904333", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Statement of Facts in Dispute", + "pacer_doc_id": "0450905032", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Exhibit", + "pacer_doc_id": "0450904657", + "pacer_seq_no": null + }, + { + "attachment_number": "4", + "description": "Exhibit", + "pacer_doc_id": "0450904392", + "pacer_seq_no": null + }, + { + "attachment_number": "5", + "description": "Exhibit", + "pacer_doc_id": "0450904787", + "pacer_seq_no": null + } + ], "date_filed": "2007-07-13", - "description": "", - "document_number": "22", - "pacer_doc_id": "0450905049", + "description": "ERRATA by DISTRICT OF COLUMBIA. (Attachments: # (1) Opposition# (2) Statement of Facts in Dispute# (3) Exhibit # (4) Exhibit # (5) Exhibit)(Caspari, Amy)", + "document_number": "23", + "pacer_doc_id": "0450904861", "pacer_seq_no": null, - "short_description": "Memorandum of Points and Authorities" + "short_description": "Errata" }, { - "attachment_number": "2", - "date_filed": "2007-07-13", - "description": "", - "document_number": "22", - "pacer_doc_id": "0450904361", + "attachments": [ + { + "attachment_number": "1", + "description": "Statement of Facts", + "pacer_doc_id": "0450923161", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Statement of Facts", + "pacer_doc_id": "0450923212", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Exhibit", + "pacer_doc_id": "0450923049", + "pacer_seq_no": null + }, + { + "attachment_number": "4", + "description": "Exhibit", + "pacer_doc_id": "0450923413", + "pacer_seq_no": null + }, + { + "attachment_number": "5", + "description": "Exhibit", + "pacer_doc_id": "0450923277", + "pacer_seq_no": null + }, + { + "attachment_number": "6", + "description": "Exhibit", + "pacer_doc_id": "0450923664", + "pacer_seq_no": null + }, + { + "attachment_number": "7", + "description": "Exhibit", + "pacer_doc_id": "0450923192", + "pacer_seq_no": null + }, + { + "attachment_number": "8", + "description": "Exhibit", + "pacer_doc_id": "0450923550", + "pacer_seq_no": null + }, + { + "attachment_number": "9", + "description": "Exhibit", + "pacer_doc_id": "0450923188", + "pacer_seq_no": null + }, + { + "attachment_number": "10", + "description": "Exhibit", + "pacer_doc_id": "0450923207", + "pacer_seq_no": null + }, + { + "attachment_number": "11", + "description": "Exhibit", + "pacer_doc_id": "0450923411", + "pacer_seq_no": null + }, + { + "attachment_number": "12", + "description": "Exhibit", + "pacer_doc_id": "0450923447", + "pacer_seq_no": null + }, + { + "attachment_number": "13", + "description": "Exhibit", + "pacer_doc_id": "0450923156", + "pacer_seq_no": null + }, + { + "attachment_number": "14", + "description": "Exhibit", + "pacer_doc_id": "0450923181", + "pacer_seq_no": null + }, + { + "attachment_number": "15", + "description": "Exhibit", + "pacer_doc_id": "0450923120", + "pacer_seq_no": null + }, + { + "attachment_number": "16", + "description": "Exhibit", + "pacer_doc_id": "0450923490", + "pacer_seq_no": null + }, + { + "attachment_number": "17", + "description": "Exhibit", + "pacer_doc_id": "0450923527", + "pacer_seq_no": null + }, + { + "attachment_number": "18", + "description": "Exhibit", + "pacer_doc_id": "0450923410", + "pacer_seq_no": null + }, + { + "attachment_number": "19", + "description": "Exhibit", + "pacer_doc_id": "0450923130", + "pacer_seq_no": null + }, + { + "attachment_number": "20", + "description": "Exhibit", + "pacer_doc_id": "0450923045", + "pacer_seq_no": null + }, + { + "attachment_number": "21", + "description": "Exhibit", + "pacer_doc_id": "0450923342", + "pacer_seq_no": null + } + ], + "date_filed": "2007-08-03", + "description": "REPLY to opposition to motion re [18] MOTION for Summary Judgment filed by GLORIA SANTAMARIA. (Attachments: # (1) Statement of Facts # (2) Statement of Facts # (3) Exhibit # (4) Exhibit # (5) Exhibit # (6) Exhibit # (7) Exhibit # (8) Exhibit # (9) Exhibit # (10) Exhibit # (11) Exhibit # (12) Exhibit # (13) Exhibit # (14) Exhibit # (15) Exhibit # (16) Exhibit # (17) Exhibit # (18) Exhibit # (19) Exhibit # (20) Exhibit # (21) Exhibit)(Neloms, Roxanne) Modified on 8/6/2007 (nmw, ).", + "document_number": "24", + "pacer_doc_id": "0450923452", "pacer_seq_no": null, - "short_description": "Statement of Facts" + "short_description": "Reply to opposition to Motion" }, { - "attachment_number": "3", - "date_filed": "2007-07-13", - "description": "", - "document_number": "22", - "pacer_doc_id": "0450904702", + "attachments": [ + { + "attachment_number": "1", + "description": "Statement of Facts", + "pacer_doc_id": "04501918588", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Statement of Facts Plaintiff reply the defendents statement of material facts", + "pacer_doc_id": "04501918926", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Exhibit", + "pacer_doc_id": "04501918648", + "pacer_seq_no": null + }, + { + "attachment_number": "4", + "description": "Exhibit", + "pacer_doc_id": "04501918986", + "pacer_seq_no": null + }, + { + "attachment_number": "5", + "description": "Exhibit", + "pacer_doc_id": "04501919040", + "pacer_seq_no": null + }, + { + "attachment_number": "6", + "description": "Exhibit", + "pacer_doc_id": "04501918800", + "pacer_seq_no": null + }, + { + "attachment_number": "7", + "description": "Exhibit", + "pacer_doc_id": "04501919150", + "pacer_seq_no": null + }, + { + "attachment_number": "8", + "description": "Exhibit", + "pacer_doc_id": "04501918838", + "pacer_seq_no": null + }, + { + "attachment_number": "9", + "description": "Exhibit", + "pacer_doc_id": "04501919023", + "pacer_seq_no": null + }, + { + "attachment_number": "10", + "description": "Exhibit", + "pacer_doc_id": "04501918808", + "pacer_seq_no": null + }, + { + "attachment_number": "11", + "description": "Exhibit", + "pacer_doc_id": "04501919162", + "pacer_seq_no": null + }, + { + "attachment_number": "12", + "description": "Exhibit", + "pacer_doc_id": "04501918990", + "pacer_seq_no": null + }, + { + "attachment_number": "13", + "description": "Exhibit", + "pacer_doc_id": "04501918711", + "pacer_seq_no": null + }, + { + "attachment_number": "14", + "description": "Exhibit", + "pacer_doc_id": "04501918863", + "pacer_seq_no": null + }, + { + "attachment_number": "15", + "description": "Exhibit", + "pacer_doc_id": "04501918607", + "pacer_seq_no": null + }, + { + "attachment_number": "16", + "description": "Exhibit", + "pacer_doc_id": "04501919121", + "pacer_seq_no": null + }, + { + "attachment_number": "17", + "description": "Exhibit", + "pacer_doc_id": "04501918892", + "pacer_seq_no": null + }, + { + "attachment_number": "18", + "description": "Exhibit", + "pacer_doc_id": "04501919088", + "pacer_seq_no": null + }, + { + "attachment_number": "19", + "description": "Exhibit", + "pacer_doc_id": "04501918763", + "pacer_seq_no": null + }, + { + "attachment_number": "20", + "description": "Exhibit", + "pacer_doc_id": "04501918729", + "pacer_seq_no": null + }, + { + "attachment_number": "21", + "description": "Exhibit", + "pacer_doc_id": "04501919071", + "pacer_seq_no": null + } + ], + "date_filed": "2007-08-03", + "description": "Memorandum in opposition to re [22] MOTION for Summary Judgment filed by GLORIA SANTAMARIA. (Attachments: # (1) Statement of Facts # (2) Statement of Facts Plaintiff reply the defendents statement of material facts# (3) Exhibit # (4) Exhibit # (5) Exhibit # (6) Exhibit # (7) Exhibit # (8) Exhibit # (9) Exhibit # (10) Exhibit # (11) Exhibit # (12) Exhibit # (13) Exhibit # (14) Exhibit # (15) Exhibit # (16) Exhibit # (17) Exhibit # (18) Exhibit # (19) Exhibit # (20) Exhibit # (21) Exhibit)(Neloms, Roxanne)", + "document_number": "25", + "pacer_doc_id": "04501919136", "pacer_seq_no": null, - "short_description": "Exhibit" + "short_description": "Memorandum in Opposition" }, { - "attachment_number": "4", - "date_filed": "2007-07-13", - "description": "", - "document_number": "22", - "pacer_doc_id": "0450905027", - "pacer_seq_no": null, - "short_description": "*Restricted*" - }, - { - "attachment_number": "5", - "date_filed": "2007-07-13", - "description": "", - "document_number": "22", - "pacer_doc_id": "0450904597", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "6", - "date_filed": "2007-07-13", - "description": "", - "document_number": "22", - "pacer_doc_id": "0450904573", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "7", - "date_filed": "2007-07-13", - "description": "", - "document_number": "22", - "pacer_doc_id": "0450905025", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "8", - "date_filed": "2007-07-13", - "description": "", - "document_number": "22", - "pacer_doc_id": "0450904442", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "9", - "date_filed": "2007-07-13", - "description": "", - "document_number": "22", - "pacer_doc_id": "0450904941", - "pacer_seq_no": null, - "short_description": "*Restricted*" - }, - { - "attachment_number": "10", - "date_filed": "2007-07-13", - "description": "", - "document_number": "22", - "pacer_doc_id": "0450904829", - "pacer_seq_no": null, - "short_description": "Text of Proposed Order" - }, - { - "date_filed": "2007-07-13", - "description": "ERRATA by DISTRICT OF COLUMBIA. (Attachments: # (1) Opposition# (2) Statement of Facts in Dispute# (3) Exhibit # (4) Exhibit # (5) Exhibit)(Caspari, Amy)", - "document_number": "23", - "pacer_doc_id": "0450904861", - "pacer_seq_no": null, - "short_description": "Errata" - }, - { - "attachment_number": "1", - "date_filed": "2007-07-13", - "description": "", - "document_number": "23", - "pacer_doc_id": "0450904333", - "pacer_seq_no": null, - "short_description": "Opposition" - }, - { - "attachment_number": "2", - "date_filed": "2007-07-13", - "description": "", - "document_number": "23", - "pacer_doc_id": "0450905032", - "pacer_seq_no": null, - "short_description": "Statement of Facts in Dispute" - }, - { - "attachment_number": "3", - "date_filed": "2007-07-13", - "description": "", - "document_number": "23", - "pacer_doc_id": "0450904657", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "4", - "date_filed": "2007-07-13", - "description": "", - "document_number": "23", - "pacer_doc_id": "0450904392", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "5", - "date_filed": "2007-07-13", - "description": "", - "document_number": "23", - "pacer_doc_id": "0450904787", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "date_filed": "2007-08-03", - "description": "REPLY to opposition to motion re [18] MOTION for Summary Judgment filed by GLORIA SANTAMARIA. (Attachments: # (1) Statement of Facts # (2) Statement of Facts # (3) Exhibit # (4) Exhibit # (5) Exhibit # (6) Exhibit # (7) Exhibit # (8) Exhibit # (9) Exhibit # (10) Exhibit # (11) Exhibit # (12) Exhibit # (13) Exhibit # (14) Exhibit # (15) Exhibit # (16) Exhibit # (17) Exhibit # (18) Exhibit # (19) Exhibit # (20) Exhibit # (21) Exhibit)(Neloms, Roxanne) Modified on 8/6/2007 (nmw, ).", - "document_number": "24", - "pacer_doc_id": "0450923452", + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit", + "pacer_doc_id": "0450939916", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Exhibit", + "pacer_doc_id": "0450939622", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Exhibit", + "pacer_doc_id": "0450940052", + "pacer_seq_no": null + }, + { + "attachment_number": "4", + "description": "Exhibit", + "pacer_doc_id": "0450939597", + "pacer_seq_no": null + }, + { + "attachment_number": "5", + "description": "*Restricted*", + "pacer_doc_id": "0450939790", + "pacer_seq_no": null + }, + { + "attachment_number": "6", + "description": "ATTACHMENT B", + "pacer_doc_id": "0450939646", + "pacer_seq_no": null + } + ], + "date_filed": "2007-08-24", + "description": "REPLY to opposition to motion re [22] MOTION for Summary Judgment filed by DISTRICT OF COLUMBIA. (Attachments: # (1) Exhibit # (2) Exhibit # (3) Exhibit # (4) Exhibit # (5) # (6) ATTACHMENT B)(Caspari, Amy)", + "document_number": "26", + "pacer_doc_id": "0450939861", "pacer_seq_no": null, "short_description": "Reply to opposition to Motion" }, { - "attachment_number": "1", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923161", - "pacer_seq_no": null, - "short_description": "Statement of Facts" - }, - { - "attachment_number": "2", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923212", - "pacer_seq_no": null, - "short_description": "Statement of Facts" - }, - { - "attachment_number": "3", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923049", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "4", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923413", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "5", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923277", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "6", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923664", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "7", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923192", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "8", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923550", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "9", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923188", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "10", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923207", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "11", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923411", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "12", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923447", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "13", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923156", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "14", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923181", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "15", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923120", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "16", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923490", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "17", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923527", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "18", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923410", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "19", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923130", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "20", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923045", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "21", - "date_filed": "2007-08-03", - "description": "", - "document_number": "24", - "pacer_doc_id": "0450923342", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "date_filed": "2007-08-03", - "description": "Memorandum in opposition to re [22] MOTION for Summary Judgment filed by GLORIA SANTAMARIA. (Attachments: # (1) Statement of Facts # (2) Statement of Facts Plaintiff reply the defendents statement of material facts# (3) Exhibit # (4) Exhibit # (5) Exhibit # (6) Exhibit # (7) Exhibit # (8) Exhibit # (9) Exhibit # (10) Exhibit # (11) Exhibit # (12) Exhibit # (13) Exhibit # (14) Exhibit # (15) Exhibit # (16) Exhibit # (17) Exhibit # (18) Exhibit # (19) Exhibit # (20) Exhibit # (21) Exhibit)(Neloms, Roxanne)", - "document_number": "25", - "pacer_doc_id": "04501919136", - "pacer_seq_no": null, - "short_description": "Memorandum in Opposition" - }, - { - "attachment_number": "1", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918588", - "pacer_seq_no": null, - "short_description": "Statement of Facts" - }, - { - "attachment_number": "2", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918926", - "pacer_seq_no": null, - "short_description": "Statement of Facts Plaintiff reply the defendents statement of material facts" - }, - { - "attachment_number": "3", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918648", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "4", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918986", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "5", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501919040", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "6", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918800", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "7", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501919150", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "8", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918838", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "9", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501919023", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "10", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918808", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "11", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501919162", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "12", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918990", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "13", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918711", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "14", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918863", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "15", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918607", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "16", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501919121", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "17", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918892", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "18", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501919088", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "19", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918763", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "20", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501918729", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "21", - "date_filed": "2007-08-03", - "description": "", - "document_number": "25", - "pacer_doc_id": "04501919071", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "date_filed": "2007-08-24", - "description": "REPLY to opposition to motion re [22] MOTION for Summary Judgment filed by DISTRICT OF COLUMBIA. (Attachments: # (1) Exhibit # (2) Exhibit # (3) Exhibit # (4) Exhibit # (5) # (6) ATTACHMENT B)(Caspari, Amy)", - "document_number": "26", - "pacer_doc_id": "0450939861", - "pacer_seq_no": null, - "short_description": "Reply to opposition to Motion" - }, - { - "attachment_number": "1", - "date_filed": "2007-08-24", - "description": "", - "document_number": "26", - "pacer_doc_id": "0450939916", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "2", - "date_filed": "2007-08-24", - "description": "", - "document_number": "26", - "pacer_doc_id": "0450939622", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "3", - "date_filed": "2007-08-24", - "description": "", - "document_number": "26", - "pacer_doc_id": "0450940052", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "4", - "date_filed": "2007-08-24", - "description": "", - "document_number": "26", - "pacer_doc_id": "0450939597", - "pacer_seq_no": null, - "short_description": "Exhibit" - }, - { - "attachment_number": "5", - "date_filed": "2007-08-24", - "description": "", - "document_number": "26", - "pacer_doc_id": "0450939790", - "pacer_seq_no": null, - "short_description": "*Restricted*" - }, - { - "attachment_number": "6", - "date_filed": "2007-08-24", - "description": "", - "document_number": "26", - "pacer_doc_id": "0450939646", - "pacer_seq_no": null, - "short_description": "ATTACHMENT B" - }, - { + "attachments": [ + { + "attachment_number": "1", + "description": "Supplement", + "pacer_doc_id": "0450923908", + "pacer_seq_no": null + } + ], "date_filed": "2007-12-04", "description": "NOTICE OF SUPPLEMENTAL AUTHORITY by DISTRICT OF COLUMBIA (Attachments: # (1) Supplement)(Caspari, Amy)", "document_number": "27", @@ -1206,15 +907,6 @@ "pacer_seq_no": null, "short_description": "NOTICE OF SUPPLEMENTAL AUTHORITY" }, - { - "attachment_number": "1", - "date_filed": "2007-12-04", - "description": "", - "document_number": "27", - "pacer_doc_id": "0450923908", - "pacer_seq_no": null, - "short_description": "Supplement" - }, { "date_filed": "2008-02-08", "description": "NOTICE of Appearance by Veronica A. Porter on behalf of DISTRICT OF COLUMBIA (Porter, Veronica)", diff --git a/tests/examples/pacer/dockets_internet_archive/flmd_330522.json b/tests/examples/pacer/dockets_internet_archive/flmd_330522.json index 66db566be..d69a5a319 100644 --- a/tests/examples/pacer/dockets_internet_archive/flmd_330522.json +++ b/tests/examples/pacer/dockets_internet_archive/flmd_330522.json @@ -10,6 +10,26 @@ "demand": "", "docket_entries": [ { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit A", + "pacer_doc_id": "047016761589", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Exhibit B", + "pacer_doc_id": "047016761590", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Civil Cover Sheet", + "pacer_doc_id": "047016761591", + "pacer_seq_no": null + } + ], "date_filed": "2016-11-14", "description": "COMPLAINT against Sanjay Patel, Purple Square Management Company, LLC with Jury Demand (Filing fee $ 400 receipt number TPA040166) filed by Justin Lott. (Attachments: # 1 Exhibit A, # 2 Exhibit B, # 3 Civil Cover Sheet)(CTR) (Entered: 11/14/2016)", "document_number": "1", @@ -17,33 +37,6 @@ "pacer_seq_no": null, "short_description": "" }, - { - "attachment_number": "1", - "date_filed": "2016-11-14", - "description": "", - "document_number": "1", - "pacer_doc_id": "047016761589", - "pacer_seq_no": null, - "short_description": "Exhibit A" - }, - { - "attachment_number": "2", - "date_filed": "2016-11-14", - "description": "", - "document_number": "1", - "pacer_doc_id": "047016761590", - "pacer_seq_no": null, - "short_description": "Exhibit B" - }, - { - "attachment_number": "3", - "date_filed": "2016-11-14", - "description": "", - "document_number": "1", - "pacer_doc_id": "047016761591", - "pacer_seq_no": null, - "short_description": "Civil Cover Sheet" - }, { "date_filed": "2016-11-14", "description": "SUMMONS issued as to Purple Square Management Company, LLC. (CTR) (Entered: 11/14/2016)", diff --git a/tests/examples/pacer/dockets_internet_archive/nysd_476194.json b/tests/examples/pacer/dockets_internet_archive/nysd_476194.json index 6af8a73a2..aff85334c 100644 --- a/tests/examples/pacer/dockets_internet_archive/nysd_476194.json +++ b/tests/examples/pacer/dockets_internet_archive/nysd_476194.json @@ -610,39 +610,32 @@ "short_description": "" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit Exhibit A", + "pacer_doc_id": "127021236431", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Exhibit Exhibit B", + "pacer_doc_id": "127021236432", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Exhibit Exhibit C", + "pacer_doc_id": "127021236433", + "pacer_seq_no": null + } + ], "date_filed": "2017-10-25", "description": "LETTER addressed to Magistrate Judge Katharine H. Parker from David A. Straite dated 10/25/2017 re: Response to Correspondence from Defendant. Document filed by Melina Bernardino. (Attachments: # 1 Exhibit Exhibit A, # 2 Exhibit Exhibit B, # 3 Exhibit Exhibit C)(Straite, David) (Entered: 10/25/2017)", "document_number": "76", "pacer_doc_id": "127021236430", "pacer_seq_no": null, "short_description": "" - }, - { - "attachment_number": "1", - "date_filed": "2017-10-25", - "description": "", - "document_number": "76", - "pacer_doc_id": "127021236431", - "pacer_seq_no": null, - "short_description": "Exhibit Exhibit A" - }, - { - "attachment_number": "2", - "date_filed": "2017-10-25", - "description": "", - "document_number": "76", - "pacer_doc_id": "127021236432", - "pacer_seq_no": null, - "short_description": "Exhibit Exhibit B" - }, - { - "attachment_number": "3", - "date_filed": "2017-10-25", - "description": "", - "document_number": "76", - "pacer_doc_id": "127021236433", - "pacer_seq_no": null, - "short_description": "Exhibit Exhibit C" } ], "docket_number": "1:17-cv-04570", diff --git a/tests/examples/pacer/dockets_internet_archive/ohsd_141796.json b/tests/examples/pacer/dockets_internet_archive/ohsd_141796.json index f315f38c8..6707acbf3 100644 --- a/tests/examples/pacer/dockets_internet_archive/ohsd_141796.json +++ b/tests/examples/pacer/dockets_internet_archive/ohsd_141796.json @@ -9,15 +9,6 @@ "date_terminated": null, "demand": "", "docket_entries": [ - { - "attachment_number": "1", - "date_filed": null, - "description": "", - "document_number": "16", - "pacer_doc_id": "14303530519", - "pacer_seq_no": null, - "short_description": "Exhibit A" - }, { "date_filed": "2012-04-30", "description": "ORDER granting 31 Motion to Vacate deadline for defendant expert disclosures. Plaintiff to serve responses to outstanding discovery and provide authorization forms by 5/4/12. Phone conference set for 5/17/12 @ 10:00 for scheduling. Signed by Magistrate Judge Stephanie K. Bowman on 4/30/12. (jl1)", diff --git a/tests/examples/pacer/dockets_internet_archive/ohsd_170541.json b/tests/examples/pacer/dockets_internet_archive/ohsd_170541.json index a5c100406..92edc0018 100644 --- a/tests/examples/pacer/dockets_internet_archive/ohsd_170541.json +++ b/tests/examples/pacer/dockets_internet_archive/ohsd_170541.json @@ -10,6 +10,32 @@ "demand": "", "docket_entries": [ { + "attachments": [ + { + "attachment_number": "1", + "description": "Exhibit A", + "pacer_doc_id": "14304939403", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Exhibit B", + "pacer_doc_id": "14304939404", + "pacer_seq_no": null + }, + { + "attachment_number": "3", + "description": "Civil Cover Sheet", + "pacer_doc_id": "14304939405", + "pacer_seq_no": null + }, + { + "attachment_number": "4", + "description": "Summons Form", + "pacer_doc_id": "14304939406", + "pacer_seq_no": null + } + ], "date_filed": "2014-04-11", "description": "COMPLAINT with JURY DEMAND against Retrieval-Masters Creditors Bureau, Inc. ( Filing fee $ 400 paid - receipt number: 0648-4522269), filed by Karla Hook. (Attachments: # 1 Exhibit A, # 2 Exhibit B, # 3 Civil Cover Sheet, # 4 Summons Form) (Weiss, Ronald) (Entered: 04/11/2014)", "document_number": "1", @@ -17,42 +43,6 @@ "pacer_seq_no": null, "short_description": "" }, - { - "attachment_number": "1", - "date_filed": "2014-04-11", - "description": "", - "document_number": "1", - "pacer_doc_id": "14304939403", - "pacer_seq_no": null, - "short_description": "Exhibit A" - }, - { - "attachment_number": "2", - "date_filed": "2014-04-11", - "description": "", - "document_number": "1", - "pacer_doc_id": "14304939404", - "pacer_seq_no": null, - "short_description": "Exhibit B" - }, - { - "attachment_number": "3", - "date_filed": "2014-04-11", - "description": "", - "document_number": "1", - "pacer_doc_id": "14304939405", - "pacer_seq_no": null, - "short_description": "Civil Cover Sheet" - }, - { - "attachment_number": "4", - "date_filed": "2014-04-11", - "description": "", - "document_number": "1", - "pacer_doc_id": "14304939406", - "pacer_seq_no": null, - "short_description": "Summons Form" - }, { "date_filed": "2014-04-11", "description": "MOTION to Certify Class by Plaintiff Karla Hook. Responses due by 5/5/2014 (Weiss, Ronald) (Entered: 04/11/2014)", diff --git a/tests/examples/pacer/dockets_internet_archive/txnd_202294.json b/tests/examples/pacer/dockets_internet_archive/txnd_202294.json index 26e90d9bb..bfe228c9d 100644 --- a/tests/examples/pacer/dockets_internet_archive/txnd_202294.json +++ b/tests/examples/pacer/dockets_internet_archive/txnd_202294.json @@ -10,6 +10,20 @@ "demand": "", "docket_entries": [ { + "attachments": [ + { + "attachment_number": "1", + "description": "Cover Sheet", + "pacer_doc_id": "17705464614", + "pacer_seq_no": null + }, + { + "attachment_number": "2", + "description": "Exhibit(s) List of Does", + "pacer_doc_id": "17705464615", + "pacer_seq_no": null + } + ], "date_filed": "2011-01-02", "description": "COMPLAINT against DOES 1-109 filed by Serious Bidness, LLC. Summons(es) not requested at this time. In each Notice of Electronic Filing, the judge assignment is indicated, and a link to the Judges Copy Requirements is provided. The court reminds the filer that any required copy of this and future documents must be delivered to the judge, in the manner prescribed, within three business days of filing. (Filing fee $350; Receipt number 0539-3650207) Unless exempted, attorneys who are not admitted to practice in the Northern District of Texas should seek admission promptly. Forms and Instructions found at www.txnd.uscourts.gov, or by clicking here: Attorney Information - Bar Membership (Attachments: # 1 Cover Sheet, # 2 Exhibit(s) List of Does) (Stone, Evan) (Entered: 01/02/2011)", "document_number": "1", @@ -17,24 +31,6 @@ "pacer_seq_no": "5", "short_description": "Complaint" }, - { - "attachment_number": "1", - "date_filed": "2011-01-02", - "description": "", - "document_number": "1", - "pacer_doc_id": "17705464614", - "pacer_seq_no": null, - "short_description": "Cover Sheet" - }, - { - "attachment_number": "2", - "date_filed": "2011-01-02", - "description": "", - "document_number": "1", - "pacer_doc_id": "17705464615", - "pacer_seq_no": null, - "short_description": "Exhibit(s) List of Does" - }, { "date_filed": "2011-01-02", "description": "CERTIFICATE OF INTERESTED PERSONS/DISCLOSURE STATEMENT by Serious Bidness, LLC. (Stone, Evan) (Entered: 01/02/2011)", diff --git a/tests/examples/pacer/dockets_internet_archive/utd_103577.json b/tests/examples/pacer/dockets_internet_archive/utd_103577.json index 82d49d8e6..0b320a495 100644 --- a/tests/examples/pacer/dockets_internet_archive/utd_103577.json +++ b/tests/examples/pacer/dockets_internet_archive/utd_103577.json @@ -18,6 +18,14 @@ "short_description": "" }, { + "attachments": [ + { + "attachment_number": "1", + "description": "Civil Cover Sheet civil cover sheet", + "pacer_doc_id": "18303853603", + "pacer_seq_no": null + } + ], "date_filed": "2017-01-05", "description": "COMPLAINT against McDonalds Real Estate Company (Filing fee $ 400, receipt number 1088-2669567) filed by Carolyn Ford. (Attachments: # 1 Civil Cover Sheet civil cover sheet) Assigned to Magistrate Judge Evelyn J. Furse (Crane, Matthew) (Entered: 01/05/2017)", "document_number": "2", @@ -25,15 +33,6 @@ "pacer_seq_no": null, "short_description": "" }, - { - "attachment_number": "1", - "date_filed": "2017-01-05", - "description": "", - "document_number": "2", - "pacer_doc_id": "18303853603", - "pacer_seq_no": null, - "short_description": "Civil Cover Sheet civil cover sheet" - }, { "date_filed": "2017-01-05", "description": "**RESTRICTED DOCUMENT**Summons Issued Electronically as to McDonalds Real Estate Company. Instructions to Counsel:1. Click on the document number.2. If you are prompted for an ECF login, enter your 'Attorney' login to CM/ECF.3. Print the issued summons for service. (mms) (Entered: 01/05/2017)", diff --git a/tests/examples/pacer/free_opinion_report/areb_1.html b/tests/examples/pacer/free_opinion_report/areb_1.html new file mode 100644 index 000000000..d0570a7b0 --- /dev/null +++ b/tests/examples/pacer/free_opinion_report/areb_1.html @@ -0,0 +1,87 @@ + + +Eastern District of Arkansas + + + +
    +

    Written Opinions Report

    +

    U.S. Bankruptcy Court -- Eastern District of Arkansas

    +

    Filed Report Period: 3/1/2024 - 4/1/2024

    + + + + + + + + + + + + + +
    Case Number & Name:Date Filed:Doc. #Description:
    4:23-bk-10939 Todd Armstrong03/18/202450Memorandum Opinion and Order (RE: related document(s) 25 Objection to Claim Number 4 by Claimant Hayley Keeton Filed by Kevin P. Keech on behalf of Todd Armstrong (Attachments: # 1 Exhibit # 2 Exhibit), 33 Response to Objection to Claim Filed by Creditor Hayley Keeton ( Claim # 4 ) Filed by Sydney Lynn Rasch on behalf of Hayley Keeton (RE: related document(s) 25 Objection to Claim filed by Todd Armstrong) (Attachments: # 1 List of 20 Largest Creditors Matrix)) Entered on 3/18/2024(Wilkins, Tanya)
    +
    +
      Total number of opinions reported: 1
    +

    Selection Criteria for Report

    + + + + + +
    Case NumberAll
    OfficeAll
    Filed date3/1/2024 - 4/1/2024
    Sort byCase Number
    +
    +
    \ No newline at end of file diff --git a/tests/examples/pacer/free_opinion_report/areb_1.json b/tests/examples/pacer/free_opinion_report/areb_1.json new file mode 100644 index 000000000..b13939d2f --- /dev/null +++ b/tests/examples/pacer/free_opinion_report/areb_1.json @@ -0,0 +1,20 @@ +[ + { + "case_name": "Todd Armstrong", + "cause": "", + "court_id": "areb", + "date_filed": "2024-03-18", + "description": "Memorandum Opinion and Order (RE: related document(s) 25 Objection to Claim Number 4 by Claimant Hayley Keeton Filed by Kevin P. Keech on behalf of Todd Armstrong (Attachments: # 1 Exhibit # 2 Exhibit), 33 Response to Objection to Claim Filed by Creditor Hayley Keeton ( Claim # 4 ) Filed by Sydney Lynn Rasch on behalf of Hayley Keeton (RE: related document(s) 25 Objection to Claim filed by Todd Armstrong) (Attachments: # 1 List of 20 Largest Creditors Matrix)) Entered on 3/18/2024(Wilkins, Tanya) ", + "docket_number": "4:23-bk-10939", + "document_number": "50", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", + "nature_of_suit": "", + "pacer_case_id": "301867", + "pacer_doc_id": "026027668006", + "pacer_seq_no": null + } +] \ No newline at end of file diff --git a/tests/examples/pacer/free_opinion_report/arwb_1.html b/tests/examples/pacer/free_opinion_report/arwb_1.html new file mode 100644 index 000000000..9f0c4694f --- /dev/null +++ b/tests/examples/pacer/free_opinion_report/arwb_1.html @@ -0,0 +1,87 @@ + + +Western District of Arkansas + + + +
    +

    Written Opinions Report

    +

    U.S. Bankruptcy Court -- Western District of Arkansas

    +

    Filed Report Period: 3/6/2023 - 4/1/2024

    + + + + + + + + + + + + + +
    Case Number & Name:Date Filed:Doc. #Description:
    5:18-ap-07075 Brown v. Rouse, Jr. et al12/14/2023119Memorandum Opinion(RE: related document(s) 1 Adversary case 5:18-ap-07075. Complaint COMPLAINT TO DENY DISCHARGE PURSUANT TO 11 U.S.C. § 727 AND TO DETERMINE DISCHARGEABILITY OF DEBT PURSUANT TO 11 U.S.C. § 523 by Ron Brown against Earl Devoe Rouse Jr., Stephanie Marie Rouse. Fee Amount (Attachments: # 1 Complaint and Exhibits) Nature of Suit: (68 (Dischargeability - 523(a)(6), willful and malicious injury)) (67 (Dischargeability - 523(a)(4), fraud as fiduciary, embezzlement, larceny)) (91 (Declaratory judgment)) (65 (Dischargebility Other)), (02 (Other))(Hargis, Joel) Modified on 12/3/2018 .) Entered on 12/14/2023 (Ayers, Brittany)
    +
    +
      Total number of opinions reported: 1
    +

    Selection Criteria for Report

    + + + + + +
    Case NumberAll
    OfficeAll
    Filed date3/6/2023 - 4/1/2024
    Sort byCase Number
    +
    +
    \ No newline at end of file diff --git a/tests/examples/pacer/free_opinion_report/arwb_1.json b/tests/examples/pacer/free_opinion_report/arwb_1.json new file mode 100644 index 000000000..4cdc488ee --- /dev/null +++ b/tests/examples/pacer/free_opinion_report/arwb_1.json @@ -0,0 +1,20 @@ +[ + { + "case_name": "Brown v. Rouse, Jr.", + "cause": "", + "court_id": "arwb", + "date_filed": "2023-12-14", + "description": "Memorandum Opinion(RE: related document(s) 1 Adversary case 5:18-ap-07075. Complaint COMPLAINT TO DENY DISCHARGE PURSUANT TO 11 U.S.C. \u00a7 727 AND TO DETERMINE DISCHARGEABILITY OF DEBT PURSUANT TO 11 U.S.C. \u00a7 523 by Ron Brown against Earl Devoe Rouse Jr., Stephanie Marie Rouse. Fee Amount (Attachments: # 1 Complaint and Exhibits) Nature of Suit: (68 (Dischargeability - 523(a)(6), willful and malicious injury)) (67 (Dischargeability - 523(a)(4), fraud as fiduciary, embezzlement, larceny)) (91 (Declaratory judgment)) (65 (Dischargebility Other)), (02 (Other))(Hargis, Joel) Modified on 12/3/2018 .) Entered on 12/14/2023 (Ayers, Brittany)", + "docket_number": "5:18-ap-07075", + "document_number": "119", + "federal_defendant_number": null, + "federal_dn_case_type": "ap", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", + "nature_of_suit": "", + "pacer_case_id": "162935", + "pacer_doc_id": "028014008409", + "pacer_seq_no": null + } +] \ No newline at end of file diff --git a/tests/examples/pacer/free_opinion_report/cacd_1.html b/tests/examples/pacer/free_opinion_report/cacd_1.html new file mode 100644 index 000000000..6cf1eec0c --- /dev/null +++ b/tests/examples/pacer/free_opinion_report/cacd_1.html @@ -0,0 +1,92 @@ + + +CM/ECF - California Central District +
    +

    Written Opinions Report

    +

    UNITED STATES DISTRICT COURT -- CENTRAL DISTRICT OF CALIFORNIA

    +

    Filed Report Period: 4/1/2024 - 4/1/2024

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Case Number & Name:Date Filed:Doc. #Description:Notes:
    2:23-cv-04855-E
    Jaqueline Egstrom v. Martin O'Malley
    04/01/202425ORDER AWARDING EAJA FEES by Magistrate Judge Charles F. Eick. IT IS HEREBY ORDERED that EAJA fees are awarded in the amount of $5,820.00 in attorney's fees, subject to the terms of the stipulation. 22 (vmun)Office: Western Division - Los Angeles
    Case Flags: ACCO,CLOSED,CONMAG
    NOS: Social Security: SSID Tit. XIV
    Cause: 42:405 Review of HHS Decision (SSID)
    8:24-cv-00646-FLA-KES
    Robert Mena v. Papa Liquor, Inc. et al
    04/01/202411ORDER TO SHOW CAUSE WHY THE COURT SHOULD EXERCISE SUPPLEMENTAL JURISDICTION OVER THE STATE LAW CLAIM by Judge Fernando L. Aenlle-Rocha. Response to Order to Show Cause due by 4/15/2024. (tf)Office: Southern Division - Santa Ana
    Case Flags: ACCO,(KESx),DISCOVERY,MANADR
    NOS: Civil Rights: Americans with Disabilities - Other
    Cause: 42:12101 Americans With Disabilities Act

    Total number of opinions reported:2

    Selection Criteria for Report

    + + + + + + + + + +
    Case NumberAll
    OfficeAll
    Case TypeAll
    Case FlagsAll
    Nature of SuitAll
    CauseAll
    Filed Date4/1/2024 - 4/1/2024
    Sort byCase Number
    +
    +
    \ No newline at end of file diff --git a/tests/examples/pacer/free_opinion_report/cacd_1.json b/tests/examples/pacer/free_opinion_report/cacd_1.json new file mode 100644 index 000000000..9d1297075 --- /dev/null +++ b/tests/examples/pacer/free_opinion_report/cacd_1.json @@ -0,0 +1,38 @@ +[ + { + "case_name": "Jaqueline Egstrom v. Martin O'Malley", + "cause": "42:405 Review of HHS Decision (SSID)", + "court_id": "cacd", + "date_filed": "2024-04-01", + "description": "ORDER AWARDING EAJA FEES by Magistrate Judge Charles F. Eick. IT IS HEREBY ORDERED that EAJA fees are awarded in the amount of $5,820.00 in attorney's fees, subject to the terms of the stipulation. 22 (vmun)", + "docket_number": "2:23-cv-04855", + "document_number": "25", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "E", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", + "nature_of_suit": "Social Security: SSID Tit. XIV", + "pacer_case_id": "888478", + "pacer_doc_id": "031042115150", + "pacer_seq_no": "76" + }, + { + "case_name": "Robert Mena v. Papa Liquor, Inc.", + "cause": "42:12101 Americans With Disabilities Act", + "court_id": "cacd", + "date_filed": "2024-04-01", + "description": "ORDER TO SHOW CAUSE WHY THE COURT SHOULD EXERCISE SUPPLEMENTAL JURISDICTION OVER THE STATE LAW CLAIM by Judge Fernando L. Aenlle-Rocha. Response to Order to Show Cause due by 4/15/2024. (tf)", + "docket_number": "8:24-cv-00646", + "document_number": "11", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FLA", + "federal_dn_judge_initials_referred": "KES", + "federal_dn_office_code": "8", + "nature_of_suit": "Civil Rights: Americans with Disabilities - Other", + "pacer_case_id": "919680", + "pacer_doc_id": "031042114987", + "pacer_seq_no": "40" + } +] \ No newline at end of file diff --git a/tests/examples/pacer/free_opinion_report/cand_2.html b/tests/examples/pacer/free_opinion_report/cand_2.html new file mode 100644 index 000000000..06580f693 --- /dev/null +++ b/tests/examples/pacer/free_opinion_report/cand_2.html @@ -0,0 +1,164 @@ + + +CAND-ECF +
    +

    Written Opinions Report

    +

    U.S. District Court -- California Northern District

    +

    Filed Report Period: 4/2/2024 - 4/3/2024

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Case Number & Name:Date Filed:Doc. #Description:Notes:
    3:11-cv-04454-SI
    Dykes v. Ayers
    04/02/2024164Order Regarding Confidentiality of Settlement Materials. Signed by Judge Vince Chhabria on 4/2/2024. (vclc3, COURT STAFF) (Filed on 4/2/2024)Office: San Francisco
    Case Flags: CAPITAL,HABEAS,ProSe,REFDIS,STAYED
    NOS: Death Penalty - Habeas Corpus
    Cause: 28:2254 Ptn for Writ of H/C - Stay of Execution
    3:24-cv-01223-TLT
    Gonzales v. Wells Fargo & Company et al
    04/02/202445Judicial Referral for Purpose of Determining Relationship of Cases re C-24-1468-JD. Signed by Judge James Donato on 4/2/2024. (lrc, COURT STAFF) (Filed on 4/2/2024)Office: San Francisco
    Case Flags: ADRMOP,RELATE
    NOS: Other Statutory Actions
    Cause: 28:1332 Diversity-Fraud
    4:22-cv-07609-HSG
    Zimmerman v. L'Oreal USA, Inc.
    04/02/202496ORDER GRANTING 95 ADMINISTRATIVE MOTION to Withdraw as Attorney. Attorney Elianni De La Cruz TERMINATED. Signed by Judge Haywood S. Gilliam, Jr. on 4/2/2024. (ndr, COURT STAFF) (Filed on 4/2/2024)Office: Oakland
    Case Flags: ADRMOP,PRVADR
    NOS: Other Fraud
    Cause: 28:1332 Diversity-Fraud
    4:23-cv-04033-HSG
    Hiscox Syndicates Limited v. Paper Bird, Inc. et al
    04/03/202490ORDER by Judge Haywood S. Gilliam, Jr. GRANTING 89 Request for Reimbursement from Court Registry. (ndr, COURT STAFF) (Filed on 4/3/2024)Office: Oakland
    Case Flags: ADRMOP,CLOSED
    NOS: Insurance
    Cause: 28:1335 Interpleader Action
    5:22-cv-01932-NC
    Palm Street Capital LLC et al v. Xie
    04/02/202496ORDER TO SHOW CAUSE to Plaintiffs and their counsel concerning failure to disclose bankruptcy case. Signed by Judge Nathanael M. Cousins on 4/2/2024. (lmh, COURT STAFF) (Filed on 4/2/2024)Office: San Jose
    Case Flags: ADRMOP,CONSENT,REFSET-SK,STAYED
    NOS: Other Fraud
    Cause: 28:1332 Diversity-Fraud
    5:22-cv-05832-BLF
    Washington v. Serrato et al
    04/02/202430 ORDER DENYING REQUESTS FOR EXPERT WITNESSES, SUBPOENA, AND TO DEPOSE BY WRITTEN INTERROGATORIES; GRANTING EXTENSION OF TIME TO FILE OPPOSITION. Singed by Judge Beth Labson Freeman. Opposition due by 5/24/2024.
    (Attachments: # 1 Certificate/Proof of Service)(tsh, COURT STAFF) (Filed on 4/2/2024)
    Any non-CM/ECF Participants have been served by First Class Mail to the addresses of record listed on the Notice of Electronic Filing (NEF)
    Office: San Jose
    Case Flags: ProSe
    NOS: Prisoner: Prison Condition
    Cause: 42:1983 Civil Rights Act
    5:23-cv-03903-SVK
    Sherry v. City of Monterey
    04/02/202422 ORDER TO SHOW CAUSE RE SETTLEMENT Re: Dkt. No. 21. Signed by Judge Susan van Keulen on 4/2/24.
    Order to Show Cause Hearing set for 6/11/2024 10:00 AM. This proceeding will be held via a Zoom webinar.
    Dismissal or Show Cause Respons e due by 6/4/2024.

    Webinar Access: All counsel, members of the public, and media may access the webinar information at https://www.cand.uscourts.gov/svk

    General Order 58 . Persons granted access to court proceedings held by telephone or videoconference are reminded that photographing, recording, and rebroadcasting of court proceedings, including screenshots or other visual copying of a hearing, is absolutely prohibited.

    Zoom Guidance and Setup: https://www.cand.uscourts.gov/zoom/.

    (jhf, COURT STAFF) (Filed on 4/2/2024)
    Office: San Jose
    Case Flags: CONSENT
    NOS: American with Disabilities - Other
    Cause: 42:12101 Americans w/ Disabilities Act (ADA)
    5:23-cv-04580-BLF
    Campbell v. People of the State of California
    04/02/202412 ORDER. Signed by Judge Beth Labson Freeman on 4/2/2024. Habeas Answer due by 5/2/2024.
    (Attachments: # 1 Certificate/Proof of Service)(tsh, COURT STAFF) (Filed on 4/2/2024)
    Any non-CM/ECF Participants have been served by First Class Mail to the addresses of record listed on the Notice of Electronic Filing (NEF)
    Office: San Jose
    Case Flags: HABEAS,ProSe
    NOS: Habeas Corpus (General)
    Cause: 28:2254 Petition for Writ of Habeas Corpus (State)
    5:23-cv-05182-EJD
    Jaiyeola v. AT&T et al
    04/02/2024101ORDER GRANTING 28 38 45 MOTIONS TO DISMISS; DENYING 88 MOTION FOR LEAVE TO FILE AMENDED COMPLAINT. Signed by Judge Edward J. Davila on 4/2/2024.(ejdlc3, COURT STAFF) (Filed on 4/2/2024)Office: San Jose
    Case Flags: ADRMOP,APPEAL,CLOSED,E-ProSe,ProSe
    NOS: Other Statutory Actions
    Cause: 28:1331 Fed. Question
    5:23-cv-05906-BLF
    Do v. California Corrections Health Care Services et al
    04/02/202411 ORDER GRANTING MOTION FOR LEAVE TO PROCEED IN FORMA PAUPERIS re 9 MOTION for Leave to Proceed in forma pauperis filed by Minh Cong Do. Signed by Judge Beth Labson Freeman on 4/2/2024.
    (tsh, COURT STAFF) (Filed on 4/2/2024)
    Any non-CM/ECF Participants have been served by First Class Mail to the addresses of record listed on the Notice of Electronic Filing (NEF)
    (Additional attachment(s) added on 4/2/2024: # 1 Certificate/Proof of Service) (tsh, COURT STAFF).
    Office: San Jose
    Case Flags: ProSe
    NOS: Prisoner: Prison Condition
    Cause: 42:1983 Prisoner Civil Rights
     04/02/202412 ORDER OF DISMISSAL WITH LEAVE TO AMEND. Signed by Judge Beth Labson Freeman on 4/2/2024. Amended Pleadings due by 4/30/2024.
    (Attachments: # 1 Certificate/Proof of Service)(tsh, COURT STAFF) (Filed on 4/2/2024)
    Any non-CM/ECF Participants have been served by First Class Mail to the addresses of record listed on the Notice of Electronic Filing (NEF)
    Office: San Jose
    Case Flags: ProSe
    NOS: Prisoner: Prison Condition
    Cause: 42:1983 Prisoner Civil Rights
    5:24-mc-80078-BLF
    Masutani
    04/02/20246ORDER GRANTING 1 EX PARTE APPLICATION TO AUTHORIZE FOREIGN DISCOVERY. Signed by Judge Beth Labson Freeman on 4/2/2024. (blflc3, COURT STAFF) (Filed on 4/2/2024)Office: San Jose
    NOS: Other Statutory Actions
    Cause: Civil Miscellaneous Case

    Total number of opinions reported:52

    Selection Criteria for Report

    + + + + + + + + + +
    Case NumberAll
    OfficeAll
    Case TypeAll
    Case FlagsAll
    Nature of SuitAll
    CauseAll
    Filed Date4/2/2024 - 4/3/2024
    Sort byCase Number
    +
    +
    diff --git a/tests/examples/pacer/free_opinion_report/cand_2.json b/tests/examples/pacer/free_opinion_report/cand_2.json new file mode 100644 index 000000000..1c0ec9652 --- /dev/null +++ b/tests/examples/pacer/free_opinion_report/cand_2.json @@ -0,0 +1,218 @@ +[ + { + "case_name": "Dykes v. Ayers", + "cause": "28:2254 Ptn for Writ of H/C - Stay of Execution", + "court_id": "cand", + "date_filed": "2024-04-02", + "description": "Order Regarding Confidentiality of Settlement Materials. Signed by Judge Vince Chhabria on 4/2/2024. (vclc3, COURT STAFF) (Filed on 4/2/2024)", + "docket_number": "3:11-cv-04454", + "document_number": "164", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SI", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", + "nature_of_suit": "Death Penalty - Habeas Corpus", + "pacer_case_id": "245089", + "pacer_doc_id": "035024246783", + "pacer_seq_no": "465" + }, + { + "case_name": "Gonzales v. Wells Fargo & Company", + "cause": "28:1332 Diversity-Fraud", + "court_id": "cand", + "date_filed": "2024-04-02", + "description": "Judicial Referral for Purpose of Determining Relationship of Cases re C-24-1468-JD. Signed by Judge James Donato on 4/2/2024. (lrc, COURT STAFF) (Filed on 4/2/2024)", + "docket_number": "3:24-cv-01223", + "document_number": "45", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "TLT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", + "nature_of_suit": "Other Statutory Actions", + "pacer_case_id": "425552", + "pacer_doc_id": "035024244450", + "pacer_seq_no": "118" + }, + { + "case_name": "Zimmerman v. L'Oreal USA, Inc.", + "cause": "28:1332 Diversity-Fraud", + "court_id": "cand", + "date_filed": "2024-04-02", + "description": "ORDER GRANTING 95 ADMINISTRATIVE MOTION to Withdraw as Attorney. Attorney Elianni De La Cruz TERMINATED. Signed by Judge Haywood S. Gilliam, Jr. on 4/2/2024. (ndr, COURT STAFF) (Filed on 4/2/2024)", + "docket_number": "4:22-cv-07609", + "document_number": "96", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "HSG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", + "nature_of_suit": "Other Fraud", + "pacer_case_id": "404686", + "pacer_doc_id": "035024243859", + "pacer_seq_no": "286" + }, + { + "case_name": "Hiscox Syndicates Limited v. Paper Bird, Inc.", + "cause": "28:1335 Interpleader Action", + "court_id": "cand", + "date_filed": "2024-04-03", + "description": "ORDER by Judge Haywood S. Gilliam, Jr. GRANTING 89 Request for Reimbursement from Court Registry. (ndr, COURT STAFF) (Filed on 4/3/2024)", + "docket_number": "4:23-cv-04033", + "document_number": "90", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "HSG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4", + "nature_of_suit": "Insurance", + "pacer_case_id": "416632", + "pacer_doc_id": "035024248166", + "pacer_seq_no": "268" + }, + { + "case_name": "Palm Street Capital LLC v. Xie", + "cause": "28:1332 Diversity-Fraud", + "court_id": "cand", + "date_filed": "2024-04-02", + "description": "ORDER TO SHOW CAUSE to Plaintiffs and their counsel concerning failure to disclose bankruptcy case. Signed by Judge Nathanael M. Cousins on 4/2/2024. (lmh, COURT STAFF) (Filed on 4/2/2024)", + "docket_number": "5:22-cv-01932", + "document_number": "96", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", + "nature_of_suit": "Other Fraud", + "pacer_case_id": "393647", + "pacer_doc_id": "035024244278", + "pacer_seq_no": "299" + }, + { + "case_name": "Washington v. Serrato", + "cause": "42:1983 Civil Rights Act", + "court_id": "cand", + "date_filed": "2024-04-02", + "description": " ORDER DENYING REQUESTS FOR EXPERT WITNESSES, SUBPOENA, AND TO DEPOSE BY WRITTEN INTERROGATORIES; GRANTING EXTENSION OF TIME TO FILE OPPOSITION. Singed by Judge Beth Labson Freeman. Opposition due by 5/24/2024. (Attachments: # 1 Certificate/Proof of Service)(tsh, COURT STAFF) (Filed on 4/2/2024)Any non-CM/ECF Participants have been served by First Class Mail to the addresses of record listed on the Notice of Electronic Filing (NEF)", + "docket_number": "5:22-cv-05832", + "document_number": "30", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BLF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", + "nature_of_suit": "Prisoner: Prison Condition", + "pacer_case_id": "401658", + "pacer_doc_id": "035024245704", + "pacer_seq_no": "100" + }, + { + "case_name": "Sherry v. City of Monterey", + "cause": "42:12101 Americans w/ Disabilities Act (ADA)", + "court_id": "cand", + "date_filed": "2024-04-02", + "description": " ORDER TO SHOW CAUSE RE SETTLEMENT Re: Dkt. No. 21. Signed by Judge Susan van Keulen on 4/2/24. Order to Show Cause Hearing set for 6/11/2024 10:00 AM. This proceeding will be held via a Zoom webinar.Dismissal or Show Cause Respons e due by 6/4/2024.Webinar Access: All counsel, members of the public, and media may access the webinar information at https://www.cand.uscourts.gov/svk General Order 58 . Persons granted access to court proceedings held by telephone or videoconference are reminded that photographing, recording, and rebroadcasting of court proceedings, including screenshots or other visual copying of a hearing, is absolutely prohibited.Zoom Guidance and Setup: https://www.cand.uscourts.gov/zoom/.(jhf, COURT STAFF) (Filed on 4/2/2024)", + "docket_number": "5:23-cv-03903", + "document_number": "22", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SVK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", + "nature_of_suit": "American with Disabilities - Other", + "pacer_case_id": "416391", + "pacer_doc_id": "035024244183", + "pacer_seq_no": "57" + }, + { + "case_name": "Campbell v. People of the State of California", + "cause": "28:2254 Petition for Writ of Habeas Corpus (State)", + "court_id": "cand", + "date_filed": "2024-04-02", + "description": " ORDER. Signed by Judge Beth Labson Freeman on 4/2/2024. Habeas Answer due by 5/2/2024. (Attachments: # 1 Certificate/Proof of Service)(tsh, COURT STAFF) (Filed on 4/2/2024)Any non-CM/ECF Participants have been served by First Class Mail to the addresses of record listed on the Notice of Electronic Filing (NEF)", + "docket_number": "5:23-cv-04580", + "document_number": "12", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BLF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", + "nature_of_suit": "Habeas Corpus (General)", + "pacer_case_id": "417942", + "pacer_doc_id": "035024244579", + "pacer_seq_no": "38" + }, + { + "case_name": "Jaiyeola v. AT&T", + "cause": "28:1331 Fed. Question", + "court_id": "cand", + "date_filed": "2024-04-02", + "description": "ORDER GRANTING 28 38 45 MOTIONS TO DISMISS; DENYING 88 MOTION FOR LEAVE TO FILE AMENDED COMPLAINT. Signed by Judge Edward J. Davila on 4/2/2024.(ejdlc3, COURT STAFF) (Filed on 4/2/2024)", + "docket_number": "5:23-cv-05182", + "document_number": "101", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "EJD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", + "nature_of_suit": "Other Statutory Actions", + "pacer_case_id": "419349", + "pacer_doc_id": "035024243334", + "pacer_seq_no": "378" + }, + { + "case_name": "Do v. California Corrections Health Care Services", + "cause": "42:1983 Prisoner Civil Rights", + "court_id": "cand", + "date_filed": "2024-04-02", + "description": " ORDER GRANTING MOTION FOR LEAVE TO PROCEED IN FORMA PAUPERIS re 9 MOTION for Leave to Proceed in forma pauperis filed by Minh Cong Do. Signed by Judge Beth Labson Freeman on 4/2/2024. (tsh, COURT STAFF) (Filed on 4/2/2024)Any non-CM/ECF Participants have been served by First Class Mail to the addresses of record listed on the Notice of Electronic Filing (NEF) (Additional attachment(s) added on 4/2/2024: # 1 Certificate/Proof of Service) (tsh, COURT STAFF).", + "docket_number": "5:23-cv-05906", + "document_number": "11", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BLF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", + "nature_of_suit": "Prisoner: Prison Condition", + "pacer_case_id": "420951", + "pacer_doc_id": "035024244443", + "pacer_seq_no": "41" + }, + { + "case_name": "Do v. California Corrections Health Care Services", + "cause": "42:1983 Prisoner Civil Rights", + "court_id": "cand", + "date_filed": "2024-04-02", + "description": " ORDER OF DISMISSAL WITH LEAVE TO AMEND. Signed by Judge Beth Labson Freeman on 4/2/2024. Amended Pleadings due by 4/30/2024. (Attachments: # 1 Certificate/Proof of Service)(tsh, COURT STAFF) (Filed on 4/2/2024)Any non-CM/ECF Participants have been served by First Class Mail to the addresses of record listed on the Notice of Electronic Filing (NEF)", + "docket_number": "5:23-cv-05906", + "document_number": "12", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", + "nature_of_suit": "Prisoner: Prison Condition", + "pacer_case_id": "420951", + "pacer_doc_id": "035024244456", + "pacer_seq_no": "46" + }, + { + "case_name": "Masutani", + "cause": "Civil Miscellaneous Case", + "court_id": "cand", + "date_filed": "2024-04-02", + "description": "ORDER GRANTING 1 EX PARTE APPLICATION TO AUTHORIZE FOREIGN DISCOVERY. Signed by Judge Beth Labson Freeman on 4/2/2024. (blflc3, COURT STAFF) (Filed on 4/2/2024)", + "docket_number": "5:24-mc-80078", + "document_number": "6", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "BLF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5", + "nature_of_suit": "Other Statutory Actions", + "pacer_case_id": "427377", + "pacer_doc_id": "035024245950", + "pacer_seq_no": "14" + } +] \ No newline at end of file diff --git a/tests/examples/pacer/nda/ca11_1.json b/tests/examples/pacer/nda/ca11_1.json index ce91afbd5..da4050487 100644 --- a/tests/examples/pacer/nda/ca11_1.json +++ b/tests/examples/pacer/nda/ca11_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Marjorie Taylor Greene v. Secretary of State for the State of Georgia", - "date_filed": "2022-08-10", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-10", @@ -19,7 +19,12 @@ "short_description": "Appellant's Motion to Take Judicial Notice" } ], - "docket_number": "22-11299" + "docket_number": "22-11299", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nda/ca11_2.json b/tests/examples/pacer/nda/ca11_2.json index ae005a6a5..01f98fe60 100644 --- a/tests/examples/pacer/nda/ca11_2.json +++ b/tests/examples/pacer/nda/ca11_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Marjorie Taylor Greene v. Secretary of State for the State of Georgia", - "date_filed": "2022-08-22", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-22", @@ -19,7 +19,12 @@ "short_description": "Court Order Filed Granted by Court Withdraw as Counsel" } ], - "docket_number": "22-11299" + "docket_number": "22-11299", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nda/ca2_1.json b/tests/examples/pacer/nda/ca2_1.json index bb2eaf603..b667f3336 100644 --- a/tests/examples/pacer/nda/ca2_1.json +++ b/tests/examples/pacer/nda/ca2_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "New York State Telecommunicati v. James", - "date_filed": "2022-07-27", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-07-27", @@ -19,7 +19,12 @@ "short_description": "Letter RECEIVED" } ], - "docket_number": "21-1975" + "docket_number": "21-1975", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca2_2.json b/tests/examples/pacer/nda/ca2_2.json index 4fe44eff2..84b36e86d 100644 --- a/tests/examples/pacer/nda/ca2_2.json +++ b/tests/examples/pacer/nda/ca2_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "New York State Telecommunicati v. James", - "date_filed": "2022-06-14", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-06-14", @@ -19,7 +19,12 @@ "short_description": "Letter RECEIVED" } ], - "docket_number": "21-1975" + "docket_number": "21-1975", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca2_3.json b/tests/examples/pacer/nda/ca2_3.json index 00ba8d498..2a9e53b1f 100644 --- a/tests/examples/pacer/nda/ca2_3.json +++ b/tests/examples/pacer/nda/ca2_3.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "New York State Telecommunicati v. James", - "date_filed": "2022-03-23", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-03-23", @@ -19,7 +19,12 @@ "short_description": "Appellant/Petitioner Reply Brief FILED" } ], - "docket_number": "21-1975" + "docket_number": "21-1975", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca2_4.json b/tests/examples/pacer/nda/ca2_4.json index 1f767c4f4..72cf19a73 100644 --- a/tests/examples/pacer/nda/ca2_4.json +++ b/tests/examples/pacer/nda/ca2_4.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "New York State Telecommunicati v. James", - "date_filed": "2022-03-03", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-03-03", @@ -19,7 +19,12 @@ "short_description": "Defective Document Notice" } ], - "docket_number": "21-1975" + "docket_number": "21-1975", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca2_5.json b/tests/examples/pacer/nda/ca2_5.json index 3ce75ec15..1407855a6 100644 --- a/tests/examples/pacer/nda/ca2_5.json +++ b/tests/examples/pacer/nda/ca2_5.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Elisa W. v. The City of New York", - "date_filed": "2022-08-10", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-10", @@ -19,7 +19,12 @@ "short_description": "Appendix FILED" } ], - "docket_number": "22-7" + "docket_number": "22-7", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca3_1.json b/tests/examples/pacer/nda/ca3_1.json index e71680131..168d02d17 100644 --- a/tests/examples/pacer/nda/ca3_1.json +++ b/tests/examples/pacer/nda/ca3_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Madison Lara v. Commissioner PA State Police", - "date_filed": "2022-08-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-08", @@ -19,7 +19,12 @@ "short_description": "Supplemental Brief" } ], - "docket_number": "21-1832" + "docket_number": "21-1832", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nda/ca3_2.json b/tests/examples/pacer/nda/ca3_2.json index 15639fd98..1e723a896 100644 --- a/tests/examples/pacer/nda/ca3_2.json +++ b/tests/examples/pacer/nda/ca3_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Port Hamilton Refining and Transportation LLLP v. EPA", - "date_filed": "2023-01-27", + "date_filed": null, "docket_entries": [ { "date_filed": "2023-01-27", @@ -19,7 +19,12 @@ "short_description": "Motion for expedited proceeding" } ], - "docket_number": "23-1094" + "docket_number": "23-1094", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nda/ca4_1.json b/tests/examples/pacer/nda/ca4_1.json index 23ade8f82..1df4d3c22 100644 --- a/tests/examples/pacer/nda/ca4_1.json +++ b/tests/examples/pacer/nda/ca4_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Neuhtah Opiotennione v. Bozzuto Management Company", - "date_filed": "2022-08-19", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-19", @@ -19,7 +19,12 @@ "short_description": "Case continued from tentative calendar" } ], - "docket_number": "21-1919" + "docket_number": "21-1919", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca4_2.json b/tests/examples/pacer/nda/ca4_2.json index d4208b717..244f87736 100644 --- a/tests/examples/pacer/nda/ca4_2.json +++ b/tests/examples/pacer/nda/ca4_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Neuhtah Opiotennione v. Bozzuto Management Company", - "date_filed": "2022-08-18", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-18", @@ -19,7 +19,12 @@ "short_description": "Notice re: Regarding Resolution of Conflict with Proposed Argument dates" } ], - "docket_number": "21-1919" + "docket_number": "21-1919", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca5_1.json b/tests/examples/pacer/nda/ca5_1.json index 971483d2c..af6a0fed3 100644 --- a/tests/examples/pacer/nda/ca5_1.json +++ b/tests/examples/pacer/nda/ca5_1.json @@ -5,11 +5,11 @@ "dockets": [ { "case_name": "Certain Underwriters v. Cox Operating", - "date_filed": "2022-08-16", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-16", - "description": "RECORD EXCERPTS FILED by Appellant Certain Underwriters at Lloyds London. Date of service: 08/16/2022 via email - Attorney for Appellants: Bohman, Morse Attorney for Appellees: Lowe, Shipman [22-30371] (Harry E. Morse )", + "description": "RECORD EXCERPTS FILED by Appellant Certain Underwriters at Lloyds London. Date of service: 08/16/2022 via email - Attorney for Appellants: Bohman, Morse; Attorney for Appellees: Lowe, Shipman [22-30371] (Harry E. Morse )", "document_number": null, "document_url": "https://ecf.ca5.uscourts.gov/docs1/00506433781?uid=12e61e2debdbca3f", "pacer_case_id": "208667", @@ -19,7 +19,12 @@ "short_description": "Record Excerpts Filed" } ], - "docket_number": "22-30371" + "docket_number": "22-30371", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca5_2.json b/tests/examples/pacer/nda/ca5_2.json index 106c117cc..556eee08c 100644 --- a/tests/examples/pacer/nda/ca5_2.json +++ b/tests/examples/pacer/nda/ca5_2.json @@ -5,11 +5,11 @@ "dockets": [ { "case_name": "Kenai Ironclad v. CP Marine Services", - "date_filed": "2022-09-26", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-09-26", - "description": "OPPOSED MOTION filed by Appellants CP Marine Services, L.L.C. and Ten Mile Exchange, L.L.C. for leave to file document [9947188-2]. Date of service: 09/26/2022 via email - Attorney for Appellees: Bohman, Morse Attorney for Appellant: Rufty [22-30311] (Alfred Jackson Rufty III)", + "description": "OPPOSED MOTION filed by Appellants CP Marine Services, L.L.C. and Ten Mile Exchange, L.L.C. for leave to file document [9947188-2]. Date of service: 09/26/2022 via email - Attorney for Appellees: Bohman, Morse; Attorney for Appellant: Rufty [22-30311] (Alfred Jackson Rufty III)", "document_number": null, "document_url": "https://ecf.ca5.uscourts.gov/docs1/00506485029?uid=c0adda9683f9e753", "pacer_case_id": "208282", @@ -19,7 +19,12 @@ "short_description": "Motion Filed on Behalf of Party leave to file document" } ], - "docket_number": "22-30311" + "docket_number": "22-30311", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca6_1.json b/tests/examples/pacer/nda/ca6_1.json index b7641de6f..4bfbfb743 100644 --- a/tests/examples/pacer/nda/ca6_1.json +++ b/tests/examples/pacer/nda/ca6_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Andrea Goldblum v. UC", - "date_filed": "2022-08-15", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-15", @@ -19,7 +19,12 @@ "short_description": "motion extend time to file brief" } ], - "docket_number": "22-3289" + "docket_number": "22-3289", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca6_2.json b/tests/examples/pacer/nda/ca6_2.json index be570c4db..5cc45b3a1 100644 --- a/tests/examples/pacer/nda/ca6_2.json +++ b/tests/examples/pacer/nda/ca6_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Anthony Eid v. Wayne State University", - "date_filed": "2022-08-17", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-17", @@ -19,7 +19,12 @@ "short_description": "Reset Briefing Schedule Letter" } ], - "docket_number": "22-1458" + "docket_number": "22-1458", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca9_1.json b/tests/examples/pacer/nda/ca9_1.json index d2ac9110e..02047be39 100644 --- a/tests/examples/pacer/nda/ca9_1.json +++ b/tests/examples/pacer/nda/ca9_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Rosemarie Vargas v. Facebook, Inc.", - "date_filed": "2022-08-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-08", @@ -19,7 +19,12 @@ "short_description": "Appellants' Response to Appellee Facebook's July 29, 2022 letter" } ], - "docket_number": "21-16499" + "docket_number": "21-16499", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca9_2.json b/tests/examples/pacer/nda/ca9_2.json index 5a3df157b..8c4b146ef 100644 --- a/tests/examples/pacer/nda/ca9_2.json +++ b/tests/examples/pacer/nda/ca9_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Mackenzie Brown v. State of Arizona", - "date_filed": "2022-08-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-08", @@ -19,7 +19,12 @@ "short_description": "Amicus Brief by Government or with Consent" } ], - "docket_number": "20-15568" + "docket_number": "20-15568", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca9_3.json b/tests/examples/pacer/nda/ca9_3.json index a9d7cf205..52ecd69a9 100644 --- a/tests/examples/pacer/nda/ca9_3.json +++ b/tests/examples/pacer/nda/ca9_3.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Rosemarie Vargas v. Facebook, Inc.", - "date_filed": "2022-08-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-08", @@ -19,7 +19,12 @@ "short_description": "28(j) Letter (Citation of Supplemental Authorities)" } ], - "docket_number": "21-16499" + "docket_number": "21-16499", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca9_4.json b/tests/examples/pacer/nda/ca9_4.json index 2beec4320..3ee72d040 100644 --- a/tests/examples/pacer/nda/ca9_4.json +++ b/tests/examples/pacer/nda/ca9_4.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Mackenzie Brown v. State of Arizona", - "date_filed": "2022-08-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-08", @@ -19,7 +19,12 @@ "short_description": "Deleted Entry" } ], - "docket_number": "20-15568" + "docket_number": "20-15568", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/ca9_5.json b/tests/examples/pacer/nda/ca9_5.json index cf8d9ab4a..1169b42ab 100644 --- a/tests/examples/pacer/nda/ca9_5.json +++ b/tests/examples/pacer/nda/ca9_5.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "City of Oakland v. BP PLC", - "date_filed": "2022-12-05", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-12-05", @@ -19,7 +19,12 @@ "short_description": "Add Attorney" } ], - "docket_number": "22-16810" + "docket_number": "22-16810", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/cafc_1.json b/tests/examples/pacer/nda/cafc_1.json index ac001d824..fcb75ff2c 100644 --- a/tests/examples/pacer/nda/cafc_1.json +++ b/tests/examples/pacer/nda/cafc_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Corephotonics, Ltd. v. Apple Inc.", - "date_filed": "2022-08-22", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-22", @@ -19,7 +19,12 @@ "short_description": "Clerk Order Filed" } ], - "docket_number": "22-1455" + "docket_number": "22-1455", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nda/cafc_2.json b/tests/examples/pacer/nda/cafc_2.json index 05494501b..28508ac18 100644 --- a/tests/examples/pacer/nda/cafc_2.json +++ b/tests/examples/pacer/nda/cafc_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Corephotonics, Ltd. v. Apple Inc.", - "date_filed": "2022-08-19", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-19", @@ -19,7 +19,12 @@ "short_description": "Motion EXTEND TIME TO FILE BRIEF" } ], - "docket_number": "22-1455" + "docket_number": "22-1455", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/ared_1.json b/tests/examples/pacer/nef/ared_1.json index 35be60f65..2ce46fc54 100644 --- a/tests/examples/pacer/nef/ared_1.json +++ b/tests/examples/pacer/nef/ared_1.json @@ -5,11 +5,11 @@ "dockets": [ { "case_name": "Bryson v. Protho Junction LLC", - "date_filed": "2021-06-10", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-10", - "description": "ORDER granting [20] joint motion for dismissal with prejudice and dismissing with prejudice Ms. Bryson's claims against defendants Protho Junction LLC, Anant Patel, Kal Makan, and Bhu Makan. Signed by Judge Kristine G. Baker on 6/10/2021. (jbh)", + "description": "ORDER granting [20] joint motion for dismissal with prejudice; and dismissing with prejudice Ms. Bryson's claims against defendants Protho Junction LLC, Anant Patel, Kal Makan, and Bhu Makan. Signed by Judge Kristine G. Baker on 6/10/2021. (jbh)", "document_number": "27", "document_url": "https://ecf.ared.uscourts.gov/doc1/02715212035?caseid=120574&de_seq_num=83&magic_num=99963705", "pacer_case_id": "120574", @@ -19,7 +19,12 @@ "short_description": "" } ], - "docket_number": "4:20-cv-00065" + "docket_number": "4:20-cv-00065", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ERE", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/ared_2.json b/tests/examples/pacer/nef/ared_2.json index ad14ef44d..43acfed61 100644 --- a/tests/examples/pacer/nef/ared_2.json +++ b/tests/examples/pacer/nef/ared_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Santiago v. United Parcel Service Inc", - "date_filed": "2021-06-10", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-10", @@ -19,7 +19,12 @@ "short_description": "" } ], - "docket_number": "4:21-cv-00428" + "docket_number": "4:21-cv-00428", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/ared_3.json b/tests/examples/pacer/nef/ared_3.json index 22fd14d80..947a663a3 100644 --- a/tests/examples/pacer/nef/ared_3.json +++ b/tests/examples/pacer/nef/ared_3.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Pitts v. Fire Extinguisher Sales & Services of Arkansas LLC", - "date_filed": "2021-06-10", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-10", @@ -19,7 +19,12 @@ "short_description": "" } ], - "docket_number": "4:21-cv-00075" + "docket_number": "4:21-cv-00075", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LPR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/arwd.json b/tests/examples/pacer/nef/arwd.json index 559fbcbbd..57e7c0647 100644 --- a/tests/examples/pacer/nef/arwd.json +++ b/tests/examples/pacer/nef/arwd.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Kizziar v. Zakirali", - "date_filed": "2021-06-10", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-10", @@ -19,7 +19,12 @@ "short_description": "" } ], - "docket_number": "2:21-cv-02016" + "docket_number": "2:21-cv-02016", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/cacd.json b/tests/examples/pacer/nef/cacd.json index bb0b7c642..0309f3152 100644 --- a/tests/examples/pacer/nef/cacd.json +++ b/tests/examples/pacer/nef/cacd.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Kelvin Hernandez Roman v. Chad F. Wolf", - "date_filed": "2021-04-19", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-04-19", @@ -19,7 +19,12 @@ "short_description": "" } ], - "docket_number": "5:20-cv-00768" + "docket_number": "5:20-cv-00768", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "TJH", + "federal_dn_judge_initials_referred": "PVC", + "federal_dn_office_code": "5" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/cand.json b/tests/examples/pacer/nef/cand.json index 2d312e583..543f671fb 100644 --- a/tests/examples/pacer/nef/cand.json +++ b/tests/examples/pacer/nef/cand.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Epic Games, Inc. v. Apple Inc.", - "date_filed": "2021-04-19", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-04-19", @@ -19,7 +19,12 @@ "short_description": "" } ], - "docket_number": "4:20-cv-05640" + "docket_number": "4:20-cv-05640", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "YGR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/ned.json b/tests/examples/pacer/nef/ned.json index bd2fd22c2..5465cdd29 100644 --- a/tests/examples/pacer/nef/ned.json +++ b/tests/examples/pacer/nef/ned.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Hicks v. Hawkins Construction Company", - "date_filed": "2021-06-10", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-10", @@ -19,7 +19,12 @@ "short_description": "" } ], - "docket_number": "8:20-cv-00510" + "docket_number": "8:20-cv-00510", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BCB", + "federal_dn_judge_initials_referred": "MDN", + "federal_dn_office_code": "8" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/almd_1.json b/tests/examples/pacer/nef/s3/almd_1.json index a85e375b9..a98b5c0c2 100644 --- a/tests/examples/pacer/nef/s3/almd_1.json +++ b/tests/examples/pacer/nef/s3/almd_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Stapler v. Automatic Food Service, Inc.", - "date_filed": "2021-08-09", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-08-09", @@ -19,7 +19,12 @@ "short_description": "Notice (Other)" } ], - "docket_number": "3:21-cv-00437" + "docket_number": "3:21-cv-00437", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ECM", + "federal_dn_judge_initials_referred": "SRW", + "federal_dn_office_code": "3" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/almd_2.json b/tests/examples/pacer/nef/s3/almd_2.json index ac22858b6..555c6c0ef 100644 --- a/tests/examples/pacer/nef/s3/almd_2.json +++ b/tests/examples/pacer/nef/s3/almd_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Stapler v. Automatic Food Service, Inc.", - "date_filed": "2021-08-09", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-08-09", @@ -19,7 +19,12 @@ "short_description": "Notice (Other)" } ], - "docket_number": "3:21-cv-00437" + "docket_number": "3:21-cv-00437", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ECM", + "federal_dn_judge_initials_referred": "SRW", + "federal_dn_office_code": "3" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/almd_3_plain.json b/tests/examples/pacer/nef/s3/almd_3_plain.json index a436ca46d..2cd9aa62e 100644 --- a/tests/examples/pacer/nef/s3/almd_3_plain.json +++ b/tests/examples/pacer/nef/s3/almd_3_plain.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "United States v. MANAFORT", - "date_filed": "2019-03-15", + "date_filed": null, "docket_entries": [ { "date_filed": "2019-03-15", @@ -19,7 +19,12 @@ "short_description": "Status Report" } ], - "docket_number": "1:17-cr-00201" + "docket_number": "1:17-cr-00201", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "ABJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/almd_4_plain.json b/tests/examples/pacer/nef/s3/almd_4_plain.json index 94b8ca3d9..1b7843045 100644 --- a/tests/examples/pacer/nef/s3/almd_4_plain.json +++ b/tests/examples/pacer/nef/s3/almd_4_plain.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "United States v. MANAFORT", - "date_filed": "2019-03-15", + "date_filed": null, "docket_entries": [ { "date_filed": "2019-03-15", @@ -19,7 +19,12 @@ "short_description": "Status Report" } ], - "docket_number": "1:17-cr-00201" + "docket_number": "1:17-cr-00201", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "ABJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/almd_4_plain.txt b/tests/examples/pacer/nef/s3/almd_4_plain.txt index 300f6570b..52002c7d2 100644 --- a/tests/examples/pacer/nef/s3/almd_4_plain.txt +++ b/tests/examples/pacer/nef/s3/almd_4_plain.txt @@ -166,11 +166,3 @@ Document description: Main Document Original filename: suppressed Electronic document Stamp: [STAMP dcecfStamp_ID=973800458 [Date=3/15/2019] [FileNumber=5919796-0] [717bcae4fd13b40a3b62bca1ad6ea5dbd5646af9111fc1ed5a689cc000861edb09a3792ba796791f060e277a1399ce9af46cd936b516f2234c67bcae4154f601]] - -Document description: Main Document - Original filename: suppressed - Electronic document Stamp: - [STAMP dcecfStamp_ID=973800458 [Date=3/15/2019] [FileNumber=5919796-0] [717bcae4fd13b40a3b62bca1ad6ea5dbd5646af9111fc1ed5a689cc000861edb09a3792ba796791f060e277a1399ce9af46cd936b516f2234c67bcae4154f601]] - - - diff --git a/tests/examples/pacer/nef/s3/alsd_1.json b/tests/examples/pacer/nef/s3/alsd_1.json index df833c843..063f9765c 100644 --- a/tests/examples/pacer/nef/s3/alsd_1.json +++ b/tests/examples/pacer/nef/s3/alsd_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Troxel v. Gunite Pros, LLC", - "date_filed": "2021-06-28", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-28", @@ -19,7 +19,12 @@ "short_description": "Document Noted" } ], - "docket_number": "1:21-cv-00057" + "docket_number": "1:21-cv-00057", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WS", + "federal_dn_judge_initials_referred": "N", + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/alsd_2.json b/tests/examples/pacer/nef/s3/alsd_2.json index df833c843..063f9765c 100644 --- a/tests/examples/pacer/nef/s3/alsd_2.json +++ b/tests/examples/pacer/nef/s3/alsd_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Troxel v. Gunite Pros, LLC", - "date_filed": "2021-06-28", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-28", @@ -19,7 +19,12 @@ "short_description": "Document Noted" } ], - "docket_number": "1:21-cv-00057" + "docket_number": "1:21-cv-00057", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WS", + "federal_dn_judge_initials_referred": "N", + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/alsd_3.json b/tests/examples/pacer/nef/s3/alsd_3.json index 73791125b..2938a54c7 100644 --- a/tests/examples/pacer/nef/s3/alsd_3.json +++ b/tests/examples/pacer/nef/s3/alsd_3.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Autrey v. Harrigan Lumber Co., Inc.", - "date_filed": "2021-08-11", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-08-11", @@ -19,7 +19,12 @@ "short_description": "Notice of Settlement" } ], - "docket_number": "1:20-cv-00572" + "docket_number": "1:20-cv-00572", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WS", + "federal_dn_judge_initials_referred": "MU", + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/ared_1.json b/tests/examples/pacer/nef/s3/ared_1.json index 245d8cf30..a44661dd6 100644 --- a/tests/examples/pacer/nef/s3/ared_1.json +++ b/tests/examples/pacer/nef/s3/ared_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Fuller v. Singleton Farms LLC", - "date_filed": "2021-06-28", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-28", @@ -19,7 +19,12 @@ "short_description": "Response to Statement of Facts" } ], - "docket_number": "2:20-cv-00082" + "docket_number": "2:20-cv-00082", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BSM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/ared_2.json b/tests/examples/pacer/nef/s3/ared_2.json index 5ce8e1e28..d120f65ba 100644 --- a/tests/examples/pacer/nef/s3/ared_2.json +++ b/tests/examples/pacer/nef/s3/ared_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Taylor v. Envolve Community Management LLC", - "date_filed": "2021-06-28", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-28", @@ -19,7 +19,12 @@ "short_description": "Notice of Appearance" } ], - "docket_number": "4:20-cv-01091" + "docket_number": "4:20-cv-01091", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BRW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/ared_3.json b/tests/examples/pacer/nef/s3/ared_3.json index d76b5e8a1..4fffb7754 100644 --- a/tests/examples/pacer/nef/s3/ared_3.json +++ b/tests/examples/pacer/nef/s3/ared_3.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Santiago v. United Parcel Service Inc", - "date_filed": "2021-07-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-07-08", @@ -19,7 +19,12 @@ "short_description": "Amended Complaint" } ], - "docket_number": "4:21-cv-00428" + "docket_number": "4:21-cv-00428", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/ared_4.json b/tests/examples/pacer/nef/s3/ared_4.json index 7125b35ab..9a5c53cad 100644 --- a/tests/examples/pacer/nef/s3/ared_4.json +++ b/tests/examples/pacer/nef/s3/ared_4.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Huffman v. Associated Management Ltd", - "date_filed": "2021-07-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-07-08", @@ -19,7 +19,12 @@ "short_description": "Motion for Recusal" } ], - "docket_number": "4:20-cv-01296" + "docket_number": "4:20-cv-01296", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BRW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/ared_5.json b/tests/examples/pacer/nef/s3/ared_5.json index 515a26c24..164439bde 100644 --- a/tests/examples/pacer/nef/s3/ared_5.json +++ b/tests/examples/pacer/nef/s3/ared_5.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Taylor v. Envolve Community Management LLC", - "date_filed": "2021-06-28", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-28", @@ -19,7 +19,12 @@ "short_description": "Motion for Extension of Time to Complete Discovery" } ], - "docket_number": "4:20-cv-01091" + "docket_number": "4:20-cv-01091", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BRW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/ared_6.json b/tests/examples/pacer/nef/s3/ared_6.json index 718edc45f..6295b69d2 100644 --- a/tests/examples/pacer/nef/s3/ared_6.json +++ b/tests/examples/pacer/nef/s3/ared_6.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Huffman v. Associated Management Ltd", - "date_filed": "2021-07-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-07-08", @@ -19,7 +19,12 @@ "short_description": "Brief in Support" } ], - "docket_number": "4:20-cv-01296" + "docket_number": "4:20-cv-01296", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BRW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/ared_7.json b/tests/examples/pacer/nef/s3/ared_7.json index 4e7132421..be326afae 100644 --- a/tests/examples/pacer/nef/s3/ared_7.json +++ b/tests/examples/pacer/nef/s3/ared_7.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Bailey v. Jefferson County, Arkansas", - "date_filed": "2021-08-12", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-08-12", @@ -19,7 +19,12 @@ "short_description": "Motion for Attorney Fees" } ], - "docket_number": "5:18-cv-00222" + "docket_number": "5:18-cv-00222", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DPM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/arwb_1.json b/tests/examples/pacer/nef/s3/arwb_1.json new file mode 100644 index 000000000..23b6a2f31 --- /dev/null +++ b/tests/examples/pacer/nef/s3/arwb_1.json @@ -0,0 +1,43 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "arwb", + "dockets": [ + { + "case_name": "Lowry Farms, Inc.", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-09-10", + "description": "Notice of Appearance and Request for Notice Filed by FirstName LastName Interested Party Company, LLC (LastName, FirstName)", + "document_number": "48", + "document_url": "https://ecf.arwb.uscourts.gov/doc1/028014329650?pdf_header=&magic_num=8174049&de_seq_num=146&caseid=175501", + "pacer_case_id": "175501", + "pacer_doc_id": "028014329650", + "pacer_magic_num": "8174049", + "pacer_seq_no": "146", + "short_description": "Notice of Appearance" + } + ], + "docket_number": "1:24-bk-70535", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" + } + ], + "email_recipients": [ + { + "email_addresses": [ + "xxx@lawfirm.com", + "yyy@lawfirm.com;zzz@lawfirm.com", + "person@gmail.com", + "user@recap.email", + "USTPRegion13.LR.ECF@usdoj.gov", + "Shari.Sherman@usdoj.gov;jill.p.eschbacher@usdoj.gov;mary.b.mansfield@usdoj.gov;kent.h.johnson@usdoj.gov" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/arwb_1.txt b/tests/examples/pacer/nef/s3/arwb_1.txt new file mode 100644 index 000000000..d70286932 --- /dev/null +++ b/tests/examples/pacer/nef/s3/arwb_1.txt @@ -0,0 +1,118 @@ +Return-Path: +Received: from icmecf201.gtwy.uscourts.gov (icmecf201.gtwy.uscourts.gov [63.241.40.204]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id 4v8lgrdmv68piiljccp6aeg3lt7e7c4j7fmnsg01 + for user@recap.email; + Tue, 10 Sep 2024 17:08:44 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of arwb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=askecf@arwb.uscourts.gov; helo=icmecf201.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of arwb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=askecf@arwb.uscourts.gov; helo=icmecf201.gtwy.uscourts.gov; + dmarc=none header.from=arwb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFIS29LV3dmTkNVcW9KQWhPNFVHNGYzbWZnQkFSN1JpTUlibmpmd1VydTBYRTNZTlZrSEJtY2ZhT29acHJhcU83MnNWbC9IN0M2OUdkSnhSNWpnbVlxMGpvQ21WNmhiNmVvMUMyMGY2Um5ab3BhZ2JlMzBZcHVnQTA1SjVGYjkrR1E5V3R1YUppeFZScHRwUGtvL3laRlhsUHFiNngxTkJhN3lOUHF5VXNWbWt0RDhka3JlTElmN1QvaVJLUUJKZ3M3ZWNSVWVUTnJJTEhFWjFOOWZnbFJEQStJRXhGbVNxaVlpejljTldPYmlBakp2MkZBV2gxSzZLa1FIZzJMS3NkWWtNK2hGUjhvTXJ3YjJCRW54Vi9tVlBFd2xRaGZDQnlNYXBNRHNlYTdLSEE9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=fWBQO9Ze0kGoExUuYzlH8aY/IJOhWwzJwKpJv8e/lsYAje69yo/EAKfj4ejGQjqcSCVSs4dFoN1+fKf+tuPM1I7uggxTsr8epTxON7J/zMVqfKFNbnWJGDj35CwMOMahi2Ey6eu1myYKSLwdr0KJ23Axoev1H6+qQm6DZbhn2/Q=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1725988126; v=1; bh=znyG/qKN2C371M4o5LcqBYXmVl0afQV1KTL84T/xCTw=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.56.112 +Received: from arwbdb.arwb.gtwy.dcn ([156.119.56.112]) + by icmecf201.gtwy.uscourts.gov with ESMTP; 10 Sep 2024 13:08:44 -0400 +Received: from arwbdb.arwb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by arwbdb.arwb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 48AH8hna124224; + Tue, 10 Sep 2024 12:08:44 -0500 +Received: (from ecf_web@localhost) + by arwbdb.arwb.gtwy.dcn (8.14.7/8.14.4/Submit) id 48AH8git124152; + Tue, 10 Sep 2024 12:08:42 -0500 +Date: Tue, 10 Sep 2024 12:08:42 -0500 +MIME-Version:1.0 +From:askecf@arwb.uscourts.gov +To:Courtmail@arwb.uscourts.gov +Message-Id:<13822418@arwb.uscourts.gov> +Subject:Ch-7 1:24-bk-70535 Notice of Appearance; Lowry Farms, Inc. +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Western District of Arkansas

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from Hani W. Hashem entered on 9/10/2024 at 12:08 PM CDT and filed on 9/10/2024 + +
    + + + + + + + + + +
    Case Name: +Lowry Farms, Inc.
    Case Number:1:24-bk-70535
    Document Number: +48 +
    + + + + +

    Docket Text: + +
    + Notice of Appearance and Request for Notice Filed by FirstName LastName Interested Party Company, LLC (LastName, FirstName) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:NOA_001.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=990647545 [Date=9/10/2024] [FileNumber=13822416-0 +
    ] [3d4adc46d0e6a7bc7679cfe61e3f6c5890161b700417e4964f30a1b0e2dfb00efb4 +
    d5cc9004a5b4f27281bb004635f1fc6edbe34a3a33f37a1a5048b6d88480f]] +
    + +
    +
    + + + + +
    +1:24-bk-70535 Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Interested Party Company, LLC +
    xxx@lawfirm.com, yyy@lawfirm.com;zzz@lawfirm.com +
    +
    FirstName LastName on behalf of Creditor FirstName LastName, et al. +
    person@gmail.com, user@recap.email +
    +
    U.S. Trustee (ust) +
    USTPRegion13.LR.ECF@usdoj.gov, Shari.Sherman@usdoj.gov;jill.p.eschbacher@usdoj.gov;mary.b.mansfield@usdoj.gov;kent.h.johnson@usdoj.gov +
    + +
    + +1:24-bk-70535 Notice will not be electronically mailed to: + + +
    + +
    +
    + +
    + + + + +
    +
    diff --git a/tests/examples/pacer/nef/s3/arwb_2.json b/tests/examples/pacer/nef/s3/arwb_2.json new file mode 100644 index 000000000..eea89a456 --- /dev/null +++ b/tests/examples/pacer/nef/s3/arwb_2.json @@ -0,0 +1,43 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "arwb", + "dockets": [ + { + "case_name": "Michael Clayton Lowry", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-09-10", + "description": "(LastName, FirstName)", + "document_number": "76", + "document_url": "https://ecf.arwb.uscourts.gov/doc1/0280?pdf_header=&magic_num=35238047&de_seq_num=242&caseid=175500", + "pacer_case_id": "175500", + "pacer_doc_id": "0280", + "pacer_magic_num": "35238047", + "pacer_seq_no": "242", + "short_description": "Meeting of Creditors - Second Non-Appearance" + } + ], + "docket_number": "1:24-bk-70534", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" + } + ], + "email_recipients": [ + { + "email_addresses": [ + "xxx@lawfirm.com", + "zz@domain.com", + "user@gmail.com", + "user@recap.email", + "USTPRegion13.LR.ECF@usdoj.gov", + "Shari.Sherman@usdoj.gov;jill.p.eschbacher@usdoj.gov;mary.b.mansfield@usdoj.gov;kent.h.johnson@usdoj.gov" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/arwb_2.txt b/tests/examples/pacer/nef/s3/arwb_2.txt new file mode 100644 index 000000000..f2f3ab35a --- /dev/null +++ b/tests/examples/pacer/nef/s3/arwb_2.txt @@ -0,0 +1,113 @@ +Return-Path: +Received: from icmecf202.gtwy.uscourts.gov (icmecf202.gtwy.uscourts.gov [63.241.40.205]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id tvljh98d1kufghijobkja5jttk6a3te17j4lkp01 + for user@recap.email; + Tue, 10 Sep 2024 12:54:28 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of arwb.uscourts.gov designates 63.241.40.205 as permitted sender) client-ip=63.241.40.205; envelope-from=askecf@arwb.uscourts.gov; helo=icmecf202.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of arwb.uscourts.gov designates 63.241.40.205 as permitted sender) client-ip=63.241.40.205; envelope-from=askecf@arwb.uscourts.gov; helo=icmecf202.gtwy.uscourts.gov; + dmarc=none header.from=arwb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHMDFCRU9aMWlRR1NObWlMRGxkV3Mxb3B5bVVwSXRkQ3NOMFZVT2Z0dFNCaVpEZDlibVozSHRLVEt1bHYzaDBHTjFDM2pYcGw0dDBnKzAzNForY1liSWtSVFIyVUxXWnNTZXpnR1A4NUh1MFlhcU9zS21EV1dkMDE2SVJ5cy9sc3JZM2ZDbkhNdy8vMmRBdEM1bVlsT1ovRXluMmdjMWNvNUNoMlFtOE5aS0F1UHhiN2xZTHpsSVFtWm1pZThrcW5FUG4vWUFFS090QXRYWXhDT2VSKzVGdm4rbWd2Z04vTGFEd2xaNG1TUEFPemY3QzZJSVdxclhPUmNBNTg5QStDajZMUENWeVpnSlNBZWZqZGZiMSthT0VlL3FLM0FmekhRRUJCTUdhUCtrSWc9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=MDm16T++eLwdR1Sa1a2mcRkJr3Bp9wIJZzaYgduG7XChHDw/PegpdhgHyVuJ8GR9aj0A5voJ69O9JcYDCYc2zCsrLxQWkgG1Uq4IJAlAvybfafDi05s+6MFdQK55b5ftEs1xDqPkLgMBpBSxe/0WmU0JzJBe6fKYE0MIGlBpeBE=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1725972869; v=1; bh=a2JLNw+gmy/6W/k+5Gr4+ch4tLrrfef1QU84nuhgUxE=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.56.112 +Received: from arwbdb.arwb.gtwy.dcn ([156.119.56.112]) + by icmecf202.gtwy.uscourts.gov with ESMTP; 10 Sep 2024 08:54:28 -0400 +Received: from arwbdb.arwb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by arwbdb.arwb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 48ACrhbe008090; + Tue, 10 Sep 2024 07:53:44 -0500 +Received: (from ecf_web@localhost) + by arwbdb.arwb.gtwy.dcn (8.14.7/8.14.4/Submit) id 48ACrKIH006782; + Tue, 10 Sep 2024 07:53:20 -0500 +Date: Tue, 10 Sep 2024 07:53:20 -0500 +MIME-Version:1.0 +From:askecf@arwb.uscourts.gov +To:Courtmail@arwb.uscourts.gov +Message-Id:<13821921@arwb.uscourts.gov> +Subject:Ch-13 1:24-bk-70534 Meeting of Creditors - Second Non-Appearance; Michael Clayton Lowry +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Western District of Arkansas

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from McCann, Daryl entered on 9/10/2024 at 7:53 AM CDT and filed on 9/10/2024 + +
    + + + + + + + + + +
    Case Name: +Michael Clayton Lowry
    Case Number:1:24-bk-70534
    Document Number: +76 +
    + + + + +

    Docket Text: + +
    +Meeting of Creditors - Second Non-Appearance Scheduled 9/9/2024 for Debtor(s) Michael Clayton Lowry with Notice of Opportunity to Respond. Filed by Trustee (LastName, FirstName) +

    + +

    The following document(s) are associated with this transaction:

    + + +
    +
    + + + + +
    +1:24-bk-70534 Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Corp Corporation +
    xxx@lawfirm.com +
    +
    FirstName LastName +
    zz@domain.com +
    +
    FirstName LastName on behalf of Creditor FirstName LastName, et al. +
    user@gmail.com, user@recap.email +
    +
    U.S. Trustee (ust) +
    USTPRegion13.LR.ECF@usdoj.gov, Shari.Sherman@usdoj.gov;jill.p.eschbacher@usdoj.gov;mary.b.mansfield@usdoj.gov;kent.h.johnson@usdoj.gov +
    + +
    + +1:24-bk-70534 Notice will not be electronically mailed to: + + +
    + +
    +
    + +
    + + + + +
    +
    diff --git a/tests/examples/pacer/nef/s3/arwd_1.json b/tests/examples/pacer/nef/s3/arwd_1.json index 1cf10e983..ee25ba8e4 100644 --- a/tests/examples/pacer/nef/s3/arwd_1.json +++ b/tests/examples/pacer/nef/s3/arwd_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Greenlee v. Driven Brands, INC.", - "date_filed": "2021-06-28", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-28", @@ -19,7 +19,12 @@ "short_description": "Answer to Complaint (Attorney filed Complaint)" } ], - "docket_number": "2:21-cv-02107" + "docket_number": "2:21-cv-02107", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/arwd_2.json b/tests/examples/pacer/nef/s3/arwd_2.json index e40f2492d..d948f2e26 100644 --- a/tests/examples/pacer/nef/s3/arwd_2.json +++ b/tests/examples/pacer/nef/s3/arwd_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Greenlee v. Driven Brands, INC.", - "date_filed": "2021-06-28", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-28", @@ -19,7 +19,12 @@ "short_description": "Corporate Disclosure Statement - Filed by Attorney" } ], - "docket_number": "2:21-cv-02107" + "docket_number": "2:21-cv-02107", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/arwd_3.json b/tests/examples/pacer/nef/s3/arwd_3.json index 1f46fb323..4f0543848 100644 --- a/tests/examples/pacer/nef/s3/arwd_3.json +++ b/tests/examples/pacer/nef/s3/arwd_3.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Johnson v. Ozark Mountain Poultry, Inc.", - "date_filed": "2021-07-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-07-08", @@ -19,7 +19,12 @@ "short_description": "Final Scheduling Order" } ], - "docket_number": "5:21-cv-05075" + "docket_number": "5:21-cv-05075", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/arwd_4.json b/tests/examples/pacer/nef/s3/arwd_4.json index 8dfc39576..e2d761187 100644 --- a/tests/examples/pacer/nef/s3/arwd_4.json +++ b/tests/examples/pacer/nef/s3/arwd_4.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Greenlee v. Driven Brands, INC.", - "date_filed": "2021-06-28", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-28", @@ -19,7 +19,12 @@ "short_description": "Initial Scheduling Order" } ], - "docket_number": "2:21-cv-02107" + "docket_number": "2:21-cv-02107", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/arwd_5.json b/tests/examples/pacer/nef/s3/arwd_5.json index 046c698b4..7408a02f2 100644 --- a/tests/examples/pacer/nef/s3/arwd_5.json +++ b/tests/examples/pacer/nef/s3/arwd_5.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Allen v. K-MAC Enterprises, Inc.", - "date_filed": "2021-08-12", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-08-12", @@ -19,7 +19,12 @@ "short_description": "Motion for Extension of Time to File Response/Reply" } ], - "docket_number": "1:21-cv-01008" + "docket_number": "1:21-cv-01008", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SOH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/cacb_1.json b/tests/examples/pacer/nef/s3/cacb_1.json index 6e292c9bb..e78692a08 100644 --- a/tests/examples/pacer/nef/s3/cacb_1.json +++ b/tests/examples/pacer/nef/s3/cacb_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Matthew Condran", - "date_filed": "2022-10-05", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-10-05", @@ -19,7 +19,12 @@ "short_description": "Statement About Your Social Security Numbers (Official Form 121)" } ], - "docket_number": "6:22-bk-13768" + "docket_number": "6:22-bk-13768", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6" } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/cacb_2.json b/tests/examples/pacer/nef/s3/cacb_2.json index 84121367b..9e407eb58 100644 --- a/tests/examples/pacer/nef/s3/cacb_2.json +++ b/tests/examples/pacer/nef/s3/cacb_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Matthew Condran", - "date_filed": "2022-10-06", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-10-06", @@ -19,7 +19,12 @@ "short_description": "Request for courtesy Notice of Electronic Filing (NEF)" } ], - "docket_number": "6:22-bk-13768" + "docket_number": "6:22-bk-13768", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "MH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6" } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/cacb_3.json b/tests/examples/pacer/nef/s3/cacb_3.json index 197475191..d9c4ca827 100644 --- a/tests/examples/pacer/nef/s3/cacb_3.json +++ b/tests/examples/pacer/nef/s3/cacb_3.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Maximo Arturo Arriola", - "date_filed": "2022-10-04", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-10-04", @@ -19,7 +19,12 @@ "short_description": "Request for courtesy Notice of Electronic Filing (NEF)" } ], - "docket_number": "6:22-bk-13643" + "docket_number": "6:22-bk-13643", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "SY", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6" } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/cacb_6.json b/tests/examples/pacer/nef/s3/cacb_6.json index 8058c7837..a4b0ef969 100644 --- a/tests/examples/pacer/nef/s3/cacb_6.json +++ b/tests/examples/pacer/nef/s3/cacb_6.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Lara Fakhoury", - "date_filed": "2023-03-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2023-03-08", @@ -19,7 +19,12 @@ "short_description": "Hearing Rescheduled/Continued (Motion) (BK Case - BNC Option)" } ], - "docket_number": "6:22-bk-13036" + "docket_number": "6:22-bk-13036", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "SY", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/cand_1.json b/tests/examples/pacer/nef/s3/cand_1.json index 8663a1fc1..de2b58b1a 100644 --- a/tests/examples/pacer/nef/s3/cand_1.json +++ b/tests/examples/pacer/nef/s3/cand_1.json @@ -5,11 +5,11 @@ "dockets": [ { "case_name": "Simon v. City and County of San Francisco", - "date_filed": "2023-01-13", + "date_filed": null, "docket_entries": [ { "date_filed": "2023-01-13", - "description": "CLERKS NOTICE SETTING ZOOM HEARING. Motion Hearing set for 1/19/2023 02:00 PM in Oakland, - Videoconference Only before Judge Jon S. Tigar. This proceeding will be held via a Zoom webinar. Webinar Access: All counsel, members of the public, and media may access the webinar information at https://www.cand.uscourts.gov/jst Court Appearances: Advanced notice is required of counsel or parties who wish to be identified by the court as making an appearance or will be participating in the argument at the hearing. One list of names of all counsel appearing for all parties must be sent in one email to the CRD at JSTCRD@cand.uscourts.gov no later than January 18, 2023 by 2:00 p.m. General Order 58. Persons granted access to court proceedings held by telephone or videoconference are reminded that photographing, recording, and rebroadcasting of court proceedings, including screenshots or other visual copying of a hearing, is absolutely prohibited. Zoom Guidance and Setup: https://www.cand.uscourts.gov/zoom/., Set/Reset Deadlines as to [30] MOTION to Certify Class Notice of Motion and Motion for Class Certification, Appoint Class Representatives, and Appoint Class Counsel Memorandum of Points and Authorities in Support Thereof, [22] MOTION for Preliminary Injunction , [24] MOTION to Dismiss . Motion Hearing set for 1/19/2023 02:00 PM in Oakland, - Videoconference Only before Judge Jon S. Tigar. (This is a text-only entry generated by the court. There is no document associated with this entry.) (mll, COURT STAFF) (Filed on 1/13/2023)", + "description": "CLERKS NOTICE SETTING ZOOM HEARING. Motion Hearing set for 1/19/2023 02:00 PM in Oakland, - Videoconference Only before Judge Jon S. Tigar. This proceeding will be held via a Zoom webinar. Webinar Access: All counsel, members of the public, and media may access the webinar information at https://www.cand.uscourts.gov/jst Court Appearances: Advanced notice is required of counsel or parties who wish to be identified by the court as making an appearance or will be participating in the argument at the hearing. One list of names of all counsel appearing for all parties must be sent in one email to the CRD at JSTCRD@cand.uscourts.gov no later than January 18, 2023 by 2:00 p.m. General Order 58. Persons granted access to court proceedings held by telephone or videoconference are reminded that photographing, recording, and rebroadcasting of court proceedings, including screenshots or other visual copying of a hearing, is absolutely prohibited. Zoom Guidance and Setup: https://www.cand.uscourts.gov/zoom/., Set/Reset Deadlines as to [30] MOTION to Certify Class Notice of Motion and Motion for Class Certification, Appoint Class Representatives, and Appoint Class Counsel; Memorandum of Points and Authorities in Support Thereof, [22] MOTION for Preliminary Injunction , [24] MOTION to Dismiss . Motion Hearing set for 1/19/2023 02:00 PM in Oakland, - Videoconference Only before Judge Jon S. Tigar. (This is a text-only entry generated by the court. There is no document associated with this entry.) (mll, COURT STAFF) (Filed on 1/13/2023)", "document_number": "45", "document_url": null, "pacer_case_id": "401001", @@ -19,7 +19,12 @@ "short_description": "" } ], - "docket_number": "4:22-cv-05541" + "docket_number": "4:22-cv-05541", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JST", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/cand_3.json b/tests/examples/pacer/nef/s3/cand_3.json index 4664bee73..a463501cc 100644 --- a/tests/examples/pacer/nef/s3/cand_3.json +++ b/tests/examples/pacer/nef/s3/cand_3.json @@ -5,11 +5,11 @@ "dockets": [ { "case_name": "The People of the State of California v. BP P.L.C.", - "date_filed": "2022-09-28", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-09-28", - "description": "Minute Entry for proceedings held before Judge William Alsup: Motion Hearing held on 9/28/2022 re [409][341] Joint MOTION for Entry of Judgment under Rule 54(b) [342][286] MOTION to Remand to State Court. Parties stated appearances and proffered argument. Court takes motions under submission. Total Time in Court: 9:02 - 10:37 = 1 Hour 35 Minutes. Court Reporter: Joan Columbini. Plaintiff Attorneys: Michael Rubin, Vic Sher, Alex Holtzman, Ronald Lee, Sara Eisenberg, Zoe Savinsky. Defendant Attorneys: Dawn Sestito, Daniel Toal, T. Connor O'Carroll, Raymond Cardoza, Daniel Brody, Theodore Boutrous, Jonathan Hughes, Daniel Severson, Gary Lafayette, Joshua Dick. (This is a text-only entry generated by the court. There is no document associated with this entry.) (afm, COURT STAFF) (Date Filed: 9/28/2022)", + "description": "Minute Entry for proceedings held before Judge William Alsup: Motion Hearing held on 9/28/2022 re [409][341] Joint MOTION for Entry of Judgment under Rule 54(b); [342][286] MOTION to Remand to State Court. Parties stated appearances and proffered argument. Court takes motions under submission. Total Time in Court: 9:02 - 10:37 = 1 Hour; 35 Minutes. Court Reporter: Joan Columbini. Plaintiff Attorneys: Michael Rubin, Vic Sher, Alex Holtzman, Ronald Lee, Sara Eisenberg, Zoe Savinsky. Defendant Attorneys: Dawn Sestito, Daniel Toal, T. Connor O'Carroll, Raymond Cardoza, Daniel Brody, Theodore Boutrous, Jonathan Hughes, Daniel Severson, Gary Lafayette, Joshua Dick. (This is a text-only entry generated by the court. There is no document associated with this entry.) (afm, COURT STAFF) (Date Filed: 9/28/2022)", "document_number": "419", "document_url": null, "pacer_case_id": "318403", @@ -19,15 +19,20 @@ "short_description": "Motion Hearing" } ], - "docket_number": "3:17-cv-06011" + "docket_number": "3:17-cv-06011", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WHA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3" }, { "case_name": "The People of the State of California v. BP P.L.C.", - "date_filed": "2022-09-28", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-09-28", - "description": "Minute Entry for proceedings held before Judge William Alsup: Motion Hearing held on 9/28/2022 re [409][341] Joint MOTION for Entry of Judgment under Rule 54(b) [342][286] MOTION to Remand to State Court. Parties stated appearances and proffered argument. Court takes motions under submission. Total Time in Court: 9:02 - 10:37 = 1 Hour 35 Minutes. Court Reporter: Joan Columbini. Plaintiff Attorneys: Michael Rubin, Vic Sher, Alex Holtzman, Ronald Lee, Sara Eisenberg, Zoe Savinsky. Defendant Attorneys: Dawn Sestito, Daniel Toal, T. Connor O'Carroll, Raymond Cardoza, Daniel Brody, Theodore Boutrous, Jonathan Hughes, Daniel Severson, Gary Lafayette, Joshua Dick. (This is a text-only entry generated by the court. There is no document associated with this entry.) (afm, COURT STAFF) (Date Filed: 9/28/2022)", + "description": "Minute Entry for proceedings held before Judge William Alsup: Motion Hearing held on 9/28/2022 re [409][341] Joint MOTION for Entry of Judgment under Rule 54(b); [342][286] MOTION to Remand to State Court. Parties stated appearances and proffered argument. Court takes motions under submission. Total Time in Court: 9:02 - 10:37 = 1 Hour; 35 Minutes. Court Reporter: Joan Columbini. Plaintiff Attorneys: Michael Rubin, Vic Sher, Alex Holtzman, Ronald Lee, Sara Eisenberg, Zoe Savinsky. Defendant Attorneys: Dawn Sestito, Daniel Toal, T. Connor O'Carroll, Raymond Cardoza, Daniel Brody, Theodore Boutrous, Jonathan Hughes, Daniel Severson, Gary Lafayette, Joshua Dick. (This is a text-only entry generated by the court. There is no document associated with this entry.) (afm, COURT STAFF) (Date Filed: 9/28/2022)", "document_number": "351", "document_url": null, "pacer_case_id": "318404", @@ -37,7 +42,12 @@ "short_description": "Motion Hearing" } ], - "docket_number": "3:17-cv-06012" + "docket_number": "3:17-cv-06012", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WHA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/cob.json b/tests/examples/pacer/nef/s3/cob.json new file mode 100644 index 000000000..c53df64dc --- /dev/null +++ b/tests/examples/pacer/nef/s3/cob.json @@ -0,0 +1,31 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "cob", + "dockets": [ + { + "case_name": "Delta, LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2023-09-25", + "description": "Motion to Dismiss Case For Other Reasons the debtor entity does not have a need for bankruptcy protection Filed by FilerFirstname FilerLastName on behalf of Delta, LLC. (Attachments: (1) Proposed/Unsigned Order) (FilerLastName, FilerFirstname)", + "document_number": "27", + "document_url": "https://ecf.cob.uscourts.gov/doc1/038040602882?pdf_header=&magic_num=16522018&de_seq_num=95&caseid=516007", + "pacer_case_id": "516007", + "pacer_doc_id": "038040602882", + "pacer_magic_num": "16522018", + "pacer_seq_no": "95", + "short_description": "Motion to Dismiss Case" + } + ], + "docket_number": "23-14130", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JGR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/cob.txt b/tests/examples/pacer/nef/s3/cob.txt new file mode 100644 index 000000000..1427bd3ed --- /dev/null +++ b/tests/examples/pacer/nef/s3/cob.txt @@ -0,0 +1,71 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id uh1jdnaqtdqolk941bfo994tuc9a9p95j2r2a6o1 + for recipient@recap.email; + Mon, 25 Sep 2023 20:33:06 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of cob.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=cmecf-reply@cob.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of cob.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=cmecf-reply@cob.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=cob.uscourts.gov; +X-SBRS: None +X-REMOTE-IP: 156.119.193.180 +Received: from cobdb-rep.cob.gtwy.dcn ([156.119.193.180]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 25 Sep 2023 16:33:05 -0400 +Received: from cobdb-rep.cob.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by cobdb-rep.cob.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 38PKVmDr073308; + Mon, 25 Sep 2023 14:31:55 -0600 +Received: (from ecf_web@localhost) + by cobdb-rep.cob.gtwy.dcn (8.14.7/8.14.4/Submit) id 38PKVh2Y073206; + Mon, 25 Sep 2023 14:31:43 -0600 +Date: Mon, 25 Sep 2023 14:31:43 -0600 +X-Authentication-Warning: cobdb-rep.cob.gtwy.dcn: ecf_web set sender to cmecf-reply@cob.uscourts.gov using -f +MIME-Version:1.0 +From:cmecf-reply@cob.uscourts.gov +To:courtmail@cob.uscourts.gov +Message-Id:<48774699@cob.uscourts.gov> +Subject:23-14130-JGR Motion to Dismiss Case +Content-Type: text/plain + +***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply. + +U.S. Bankruptcy Court +District of Colorado + +Notice of Electronic Filing +The following transaction was received from FirstName Last Name entered on 9/25/2023 at 2:31 PM MDT and filed on 9/25/2023 + +Case Name: Delta, LLC +Case Number: 23-14130-JGR https://ecf.cob.uscourts.gov/cgi-bin/DktRpt.pl?516007 + +Document Number: 27 +Copy the URL address from the line below into the location bar of your Web browser to view the document: https://ecf.cob.uscourts.gov/doc1/038040602882?pdf_header=&magic_num=16522018&de_seq_num=95&caseid=516007 + +Docket Text: + Motion to Dismiss Case For Other Reasons the debtor entity does not have a need for bankruptcy protection Filed by FilerFirstname FilerLastName on behalf of Delta, LLC. (Attachments: # (1) Proposed/Unsigned Order) (FilerLastName, FilerFirstname) + +The following document(s) are associated with this transaction: +Document description: Main Document + Original filename: Dismissal.pdf + Electronic document Stamp: + [STAMP bkecfStamp_ID=985638001 [Date=9/25/2023] [FileNumber=48774698-0] [ad540b5d97ef1738274ab45e91c33cb34d46c4ea12d40070860aa383a9c33d8bade5e4ceb25f28af8647ab34d0ce7085a93200a15270c5a5e51353a7a79edba9]] + Document description: Proposed/Unsigned Order + Original filename: C:\fakepath\Ex A - Proposed Order.pdf + Electronic document Stamp: + [STAMP bkecfStamp_ID=985638001 [Date=9/25/2023] [FileNumber=48774698-1] [06f97e6a23f90c93e04b24659af0d156b12d3694b68f527325fee1a54f101f3e5cf9587ff565009042203876d040b7e0bf418eeb94635534be99f134d37f999d]] + + +23-14130-JGR Notice will be electronically mailed to: +Recipient_FirstName, Recipient_LastName on behalf of Debtor Delta, LLC +recipient@example.com, recipient.example.com@recap.email + +Trustee First name Trustee Last Name on behalf of U.S. Trustee US Trustee +trustee@usdoj.gov + + US Trustee +USTPRegion19.DV.ECF@usdoj.gov + + + +23-14130-JGR Notice will not be electronically mailed to: diff --git a/tests/examples/pacer/nef/s3/ctb_1.json b/tests/examples/pacer/nef/s3/ctb_1.json index 14dd018f2..093d2ae8a 100644 --- a/tests/examples/pacer/nef/s3/ctb_1.json +++ b/tests/examples/pacer/nef/s3/ctb_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Alan E. Waskowicz", - "date_filed": "2023-02-16", + "date_filed": null, "docket_entries": [ { "date_filed": "2023-02-16", @@ -19,7 +19,12 @@ "short_description": "Corrected Amendment" } ], - "docket_number": "23-20091" + "docket_number": "23-20091", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/ctb_2.json b/tests/examples/pacer/nef/s3/ctb_2.json index 4c3fdaa81..5a50a1d47 100644 --- a/tests/examples/pacer/nef/s3/ctb_2.json +++ b/tests/examples/pacer/nef/s3/ctb_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Alan E. Waskowicz", - "date_filed": "2023-02-17", + "date_filed": null, "docket_entries": [ { "date_filed": "2023-02-17", @@ -19,7 +19,12 @@ "short_description": "Generate BNC Notice/Form" } ], - "docket_number": "23-20091" + "docket_number": "23-20091", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/dcb_1.json b/tests/examples/pacer/nef/s3/dcb_1.json new file mode 100644 index 000000000..387031055 --- /dev/null +++ b/tests/examples/pacer/nef/s3/dcb_1.json @@ -0,0 +1,48 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "dcb", + "dockets": [ + { + "case_name": "Avamere NPS Carpenters LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-02-01", + "description": "PDF with attached Audio File. Court Date & Time [ 1/31/2024 10:31:49 AM ]. File Size [ 3128 KB ]. Run Time [ 00:06:31 ]. (Audio Duplicate Docket.). (admin).", + "document_number": "45", + "document_url": "https://ecf.dcb.uscourts.gov/doc1/04402826049?pdf_header=&magic_num=3652693&de_seq_num=130&caseid=49636", + "pacer_case_id": "49636", + "pacer_doc_id": "04402826049", + "pacer_magic_num": "3652693", + "pacer_seq_no": "130", + "short_description": "" + } + ], + "docket_number": "23-00286", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "ELG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "Kristen.S.Eustis@usdoj.gov", + "Robert.W.Ours@usdoj.gov", + "example@domain.com", + "example@domain.com;example@domain.com;x.example@domain.com", + "sara.kathryn.mayson@usdoj.gov", + "Robert.W.Ours@usdoj.gov", + "example@domain.com", + "example@domain.com;example@domain.com;example@domain.com;example@domain.com;x.example@domain.com", + "USTPRegion04.DC.ECF@USDOJ.GOV", + "example@domain.com", + "example@domain.com;example@domain.com;x.example@domain.com;x@recap.email" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/dcb_1.txt b/tests/examples/pacer/nef/s3/dcb_1.txt new file mode 100644 index 000000000..273e0284e --- /dev/null +++ b/tests/examples/pacer/nef/s3/dcb_1.txt @@ -0,0 +1,125 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id 6nid5ninai5dc7kqu95qksl1ee927hh98jumsk01 + for example@domain.com; + Fri, 02 Feb 2024 14:06:32 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of dcb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=ecf_dcb@dcb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of dcb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=ecf_dcb@dcb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=dcb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFGYkExU2paODBFS2V4WTF1c3p0ckFvUncwWTMrUjZWQ09pZEZwc2ZFWS9JU0xjajFRTjF3SDlERTVia3pQQjFYR0JGRG9FckhnYzNxZ0t2VHZjR0lsaW1SRE80MURqckVjZE13YS9YUllIMm5jeVFlR0V1L2RtVVI3TWdTVit4c0ZRbkFFTDZteE9YSnJaZENabHhPb3o4M01JbUs3eFJveHE0cUFWUlp1UHowL1l1REIyWm9zSEVEYzVtQk1SdmhsY3g4NkpURWgwOGdldWZvdDlHSzdFZzdXWE5FQmMvdnZUNVd4VjhpemNmbHg1aUdGR2hEWG8zYUlqNjg0blY3UkVhcENGTm1EeFo3Z0JrYmF5dDVkb05tMjlVTWRtZjViOWhLTlU1OVJBd1E9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=mNPqgfvh+kAppz8qUtezLtpXIHkyp/Ag7Oe+b+f/qjEJCsjXv6EC1vV77S3RtTJKckppwa/fzSCFrxrxXTxv43IN9lJ2KiZmZSd5mmqZKWEcak+5TVihrZx1YJsKKRTHzseaIWkuTDP8j+4G+uM5Ju4feMQgbe6kNRVqKYxej7k=; c=relaxed/simple; s=hsbnp7p3ensaochzwyq5wwmceodymuwv; d=amazonses.com; t=1706882794; v=1; bh=re1ptExT3cySftvqN3rhnCMD4oa5HCHo8vFtRhJhDkk=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.113 +Received: from dcbdb.dcb.gtwy.dcn ([156.119.190.113]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 02 Feb 2024 09:06:32 -0500 +Received: from dcbdb.dcb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by dcbdb.dcb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 412E5jox025787; + Fri, 2 Feb 2024 09:05:50 -0500 +Received: (from ecf_web@localhost) + by dcbdb.dcb.gtwy.dcn (8.14.7/8.14.4/Submit) id 412E56vw024511; + Fri, 2 Feb 2024 09:05:06 -0500 +Date: Fri, 2 Feb 2024 09:05:06 -0500 +X-Authentication-Warning: dcbdb.dcb.gtwy.dcn: ecf_web set sender to ecf_dcb@dcb.uscourts.gov using -f +MIME-Version:1.0 +From:ecf_dcb@dcb.uscourts.gov +To:courtmail@dcb.uscourts.gov +Message-Id:<2731415@dcb.uscourts.gov> +Subject:23-00286-ELG CH11 - Avamere NPS Carpenters LLC +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    United States Bankruptcy Court for the District of Columbia

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from admin entered on 02/02/2024 at 00:30 AM EST and filed on 02/01/2024 + +
    + + + + + + + + + +
    Case Name: +Avamere NPS Carpenters LLC
    Case Number:23-00286-ELG
    Document Number: +45 +
    + + + + +

    Docket Text: + +
    +PDF with attached Audio File. Court Date & Time [ 1/31/2024 10:31:49 AM ]. File Size [ 3128 KB ]. Run Time [ 00:06:31 ]. (Audio Duplicate Docket.). (admin). +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:/data/docs0/ECF/ADI/dcb_live/batch/documents/1bk2023-00286_20240131-103149-MP3.pdf +
    Electronic document Stamp: +
    [STAMP bkecfStamp_ID=1011211900 [Date=02/02/2024] [FileNumber=2731369-0] [31eb9fcf5d43a65e85abcf1f5f43988876d6ab8b52c3660edd063d5f7beb234904d68bb7fe6e40634543a4dbcca4710a805d7cdd6c8ec75b3956016ac7617076]] +
    + +
    +
    + + + + +
    +23-00286-ELG Notice will be electronically mailed to: + + +
    + +
    Kristen S. Eustis on behalf of U.S. Trustee U. S. Trustee for Region Four +
    Kristen.S.Eustis@usdoj.gov, Robert.W.Ours@usdoj.gov +
    +
    FirstName LastName on behalf of Debtor In Possession Avamere NPS Carpenters LLC +
    example@domain.com, example@domain.com;example@domain.com;x.example@domain.com +
    +
    Sara Kathryn Mayson on behalf of U.S. Trustee U. S. Trustee for Region Four +
    sara.kathryn.mayson@usdoj.gov, Robert.W.Ours@usdoj.gov +
    +
    FirstName LastName on behalf of Debtor In Possession Avamere NPS Carpenters LLC +
    example@domain.com, example@domain.com;example@domain.com;example@domain.com;example@domain.com;x.example@domain.com +
    +
    U. S. Trustee for Region Four +
    USTPRegion04.DC.ECF@USDOJ.GOV +
    +
    Firstnane Lastname on behalf of Creditor WCP Fund I LLC +
    example@domain.com, example@domain.com;example@domain.com;x.example@domain.com;x@recap.email +
    + +
    + +23-00286-ELG Notice will not be electronically mailed to: + + +
    + +
    +
    + +
    + + + + +
    +
    diff --git a/tests/examples/pacer/nef/s3/dcb_2.json b/tests/examples/pacer/nef/s3/dcb_2.json new file mode 100644 index 000000000..de62ad963 --- /dev/null +++ b/tests/examples/pacer/nef/s3/dcb_2.json @@ -0,0 +1,48 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "dcb", + "dockets": [ + { + "case_name": "Avamere NPS Stables LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-01-31", + "description": "Minute Entry RE: Hearing Held (BK) (RE: related document(s)[49] Motion to Approve) Appearances: FirstName LastName, FirstName LastName, FirstName LastName. Motion Granted, Order to be Submitted. Hearing on Approval of Disclosure Statement and Confirmation of Plan Set for 3/13/2024 at 1:00 PM. (FirstName LastName)", + "document_number": "56", + "document_url": null, + "pacer_case_id": "49635", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Hearing Held" + } + ], + "docket_number": "23-00285", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "ELG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "Kristen.S.Eustis@usdoj.gov", + "Robert.W.Ours@usdoj.gov", + "example@domain.com", + "example@domain.com;example@domain.com;example@domain.com", + "sara.kathryn.mayson@usdoj.gov", + "Robert.W.Ours@usdoj.gov", + "example@domain.com", + "example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com", + "USTPRegion04.DC.ECF@USDOJ.GOV", + "example@domain.com", + "example@domain.com;example@domain.com;example@domain.com;c@recap.email" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/dcb_2.txt b/tests/examples/pacer/nef/s3/dcb_2.txt new file mode 100644 index 000000000..7b735b0c8 --- /dev/null +++ b/tests/examples/pacer/nef/s3/dcb_2.txt @@ -0,0 +1,120 @@ +Return-Path: +Received: from icmecf102.gtwy.uscourts.gov (icmecf102.gtwy.uscourts.gov [199.107.16.202]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id qeihvdi4sjibug8fnhbarm8jfieiphc880gr5301 + for example@domain.com; + Thu, 01 Feb 2024 21:15:29 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of dcb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=ecf_dcb@dcb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of dcb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=ecf_dcb@dcb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; + dmarc=none header.from=dcb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFUklMM0xUUUNKbmthcXVCZnM3Qk0rSWZ0bXBjVmxsQmVzTWhjVWlESThzSEhjWXlyUUpjKytoQmxaVWhZdGJMQVlpMzJpWFNEdVpXQittcFgwOC9OaFNMSEpQOXBxSGl5S2wzbkJsRm1qMVhwOFJHeHcyckJ5S2Q5dGhDQTFZZHdVQ0dldXRYaFQ3TU8rRlFHRkZlNUZqeit6QnJHTzI4VHB5U1lySlYyTkZxQWlhbGhNZVQxNnh0WVM3Ky9ac0prQlNscy9ZMlNrM0JhWkdhSHJNdjVPbnB3RW5RajRndEtCVTVnV2xkVUhKVWdheUZaci9UbGNvcjRkZkZQeWdvZ0V1Y0xITzRaUzBVUjk2UW1Edk1qWVRwSjJWUmVueXlRUEhhN1FFSzVtR3c9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=OoHr3CMz78YBMWx5FNZGJ6iYNvxV8vj9+R//KOgpmwWEwpzRh6zhI7JQT/cAriCffdJN/LUjmd91uDqFBiFq1GZRkoYXCHNjajpZ5UG5VxRcEH2EBzWRFLwLVxNb5JgSO1kMSXl+HYgHtxjUtjL8cMpJHgvTSEgfPrEYbYdgTy4=; c=relaxed/simple; s=hsbnp7p3ensaochzwyq5wwmceodymuwv; d=amazonses.com; t=1706822130; v=1; bh=5B9UPv+HsO8o5ByrK5/3gZ81Q0yGpBqdUo5nYk2F1v0=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.113 +Received: from dcbdb.dcb.gtwy.dcn ([156.119.190.113]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 01 Feb 2024 16:15:29 -0500 +Received: from dcbdb.dcb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by dcbdb.dcb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 411LEibh102749; + Thu, 1 Feb 2024 16:14:44 -0500 +Received: (from ecf_web@localhost) + by dcbdb.dcb.gtwy.dcn (8.14.7/8.14.4/Submit) id 411LE4Gf102139; + Thu, 1 Feb 2024 16:14:04 -0500 +Date: Thu, 1 Feb 2024 16:14:04 -0500 +X-Authentication-Warning: dcbdb.dcb.gtwy.dcn: ecf_web set sender to ecf_dcb@dcb.uscourts.gov using -f +MIME-Version:1.0 +From:ecf_dcb@dcb.uscourts.gov +To:courtmail@dcb.uscourts.gov +Message-Id:<2731273@dcb.uscourts.gov> +Subject:23-00285-ELG CH11 Hearing Held (BK) - Avamere NPS Stables LLC +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    United States Bankruptcy Court for the District of Columbia

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from Mathewes, Aimee entered on 2/1/2024 at 4:14 PM EST and filed on 1/31/2024 + +
    + + + + + + + + + +
    Case Name: +Avamere NPS Stables LLC
    Case Number:23-00285-ELG
    Document Number: +56 +
    + + + + +

    Docket Text: + +
    +Minute Entry RE: Hearing Held (BK) (RE: related document(s)[49] Motion to Approve) Appearances: FirstName LastName, FirstName LastName, FirstName LastName. Motion Granted, Order to be Submitted. Hearing on Approval of Disclosure Statement and Confirmation of Plan Set for 3/13/2024 at 1:00 PM. (FirstName LastName) +

    + +

    The following document(s) are associated with this transaction:

    + + +
    +
    + + + + +
    +23-00285-ELG Notice will be electronically mailed to: + + +
    + +
    Kristen S. Eustis on behalf of U.S. Trustee U. S. Trustee for Region Four +
    Kristen.S.Eustis@usdoj.gov, Robert.W.Ours@usdoj.gov +
    +
    FirstName LastName on behalf of Debtor In Possession Avamere NPS Stables LLC +
    example@domain.com, example@domain.com;example@domain.com;example@domain.com +
    +
    Sara Kathryn Mayson on behalf of U.S. Trustee U. S. Trustee for Region Four +
    sara.kathryn.mayson@usdoj.gov, Robert.W.Ours@usdoj.gov +
    +
    FirstName LastName on behalf of Debtor In Possession Avamere NPS Stables LLC +
    example@domain.com, example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com +
    +
    U. S. Trustee for Region Four +
    USTPRegion04.DC.ECF@USDOJ.GOV +
    +
    FirstName LastName on behalf of Creditor WCP Fund I LLC +
    example@domain.com, example@domain.com;example@domain.com;example@domain.com;c@recap.email +
    + +
    + +23-00285-ELG Notice will not be electronically mailed to: + + +
    + +
    +
    + +
    + + + + +
    +
    \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/deb_1.json b/tests/examples/pacer/nef/s3/deb_1.json new file mode 100644 index 000000000..30719e8b3 --- /dev/null +++ b/tests/examples/pacer/nef/s3/deb_1.json @@ -0,0 +1,41 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "deb", + "dockets": [ + { + "case_name": "JOANN Inc.", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-04-23", + "description": "Declaration (related document(s)[226]) Filed by JOANN Inc.. (LastName, FirstName)", + "document_number": "297", + "document_url": "https://ecf.deb.uscourts.gov/doc1/042021533455?pdf_header=&magic_num=47456538&de_seq_num=1312&caseid=192329", + "pacer_case_id": "192329", + "pacer_doc_id": "042021533455", + "pacer_magic_num": "47456538", + "pacer_seq_no": "1312", + "short_description": "Declaration" + } + ], + "docket_number": "24-10418", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CTG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "xx@bb.org", + "xx@bb.org", + "yy@zz.com", + "yy@zz.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/deb_1.txt b/tests/examples/pacer/nef/s3/deb_1.txt new file mode 100644 index 000000000..90af4b66c --- /dev/null +++ b/tests/examples/pacer/nef/s3/deb_1.txt @@ -0,0 +1,112 @@ +Return-Path: +Received: from icmecf102.gtwy.uscourts.gov (icmecf102.gtwy.uscourts.gov [199.107.16.202]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id rv8bbs6984ubijncfifmaoi4f6c2na6pdse8vc81 + for user@recap.email; + Tue, 23 Apr 2024 20:51:49 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of deb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=DEBdb_ECF_Reply@deb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of deb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=DEBdb_ECF_Reply@deb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; + dmarc=pass header.from=deb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHNVpFY3hEK253S29lbEhlWjY4VndRUVdRblZFS21QWVl3aTVFYkxzMlFmUGNUNC9WMVFvTU9vcnlrd2ZFWExSQ3J0R3hnZjBjb3hiRFdHL2xoa1lWNDBST01sRTVhSlYrdkc3V1hYTnpiSnBXTU9iVDRWZ2VoUnFvR1JBV3lKL3lQSFlrU1hxNTFiTTEvNU56Zm5JN1hqM05Cb3lzTVBtdmJBTEdiRjlvQTVnb2JYZjQxZDYrZXBTTjFaNVNMUkFuUW1NUTlOVGlGNnJ2ay9laFFYVStqUnJJS0Z6b3U2anBDTHZBSkZJdzIwSms3Q0x2SkdqdkZJaFljamNkRzAwQXJsRk5EVWVUUzhMVzhxYzl3ZS9rTVBHY1FIYTZaUnNjYUtKRElHSytHYmRIL3F1QVBqaFFSYjNWM1EvZkhOeGM9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=oMW9mRChuJUAr3ZqeH4esHNmFMRmY1re9Nczl9mrXix6OKx0aSFN4is9q/EnxSVEAB1AxaP1JEt7ePglyCfuG3qi5QgSxtDigKgWqUit8hgGUu9MsnvvYWO+YzlxxxZLE+7gIIBOcTUJZL9WViaUlwMzMFBUlHX5oWPv8zUPRaQ=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1713905511; v=1; bh=2t42oGnyedk34f7Dux9GaXWEeKC4z1dog7QKMeXE+8w=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.33 +Received: from debdb.deb.gtwy.dcn ([156.119.190.33]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 23 Apr 2024 16:51:49 -0400 +Received: from debdb.deb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by debdb.deb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 43NKp2sc108959; + Tue, 23 Apr 2024 16:51:05 -0400 +Received: (from ecf_web@localhost) + by debdb.deb.gtwy.dcn (8.14.7/8.14.4/Submit) id 43NKoPLl107903; + Tue, 23 Apr 2024 16:50:25 -0400 +Date: Tue, 23 Apr 2024 16:50:25 -0400 +X-Authentication-Warning: debdb.deb.gtwy.dcn: ecf_web set sender to DEBdb_ECF_Reply@deb.uscourts.gov using -f +MIME-Version:1.0 +From:DEBdb_ECF_Reply@deb.uscourts.gov +To:dummail@deb.uscourts.gov +Message-Id:<18536834@deb.uscourts.gov> +Subject:Ch-11 24-10418-CTG JOANN Inc. Declaration +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    District of Delaware

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from Rebecca L Lamb entered on 4/23/2024 at 4:50 PM EDT and filed on 4/23/2024 + +
    + + + + + + + + + +
    Case Name: +JOANN Inc.
    Case Number:24-10418-CTG
    Document Number: +297 +
    + + + + +

    Docket Text: + +
    + Declaration of Ordinary Course Professional Dickinson Wright PLLC (related document(s)[226]) Filed by JOANN Inc.. (LastName, FirstName) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:N:\Bankruptcy\Joann Fabrics - 103513.1001\To Be Filed\NOT Dickinson Wright OCP Declaration.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=983460418 [Date=4/23/2024] [FileNumber=18536832-0 +
    ] [a4bc9c188e60f81dff29720bdb2b184215cca147e1606ea064da8109b0f9188763f +
    8190b47adca4db486d71cd2b16c655de9f32b96f63e97e1a312814ed6b143]] +
    + +
    +
    + + + + +
    +24-10418-CTG Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Creditor Broward County +
    xx@bb.org, xx@bb.org +
    +
    FirstName LastName on behalf of Creditor Bank of America, N.A. +
    yy@zz.com, yy@zz.com +
    +
    FirstName LastName on behalf of Interested Party Win Properties, Inc. +
    AA BB & CC LLP +
    1 World Trade Center +
    170 Greenwich Street +
    New York, NY 60001 +
    + +
    + + + + +
    +
    diff --git a/tests/examples/pacer/nef/s3/deb_2.json b/tests/examples/pacer/nef/s3/deb_2.json new file mode 100644 index 000000000..a61b5a062 --- /dev/null +++ b/tests/examples/pacer/nef/s3/deb_2.json @@ -0,0 +1,42 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "deb", + "dockets": [ + { + "case_name": "Akorn Holding Company LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-04-23", + "description": "Order Approving Confidentiality and Non-Disclosure Agreement Between Chapter 7 Trustee and Thea Pharma Inc. (related document(s)[794]) Order Signed on 4/23/2024. (Attachments: (1) Exhibit 1) (Mml)", + "document_number": "795", + "document_url": "https://ecf.deb.uscourts.gov/doc1/042021533640?pdf_header=&magic_num=39159314&de_seq_num=2728&caseid=189188", + "pacer_case_id": "189188", + "pacer_doc_id": "042021533640", + "pacer_magic_num": "39159314", + "pacer_seq_no": "2728", + "short_description": "Order" + } + ], + "docket_number": "23-10253", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KBO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "xx@gg.com", + "yy@gg.com", + "zz@gg.com", + "cc@dd.com", + "aa@bb.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/deb_2.txt b/tests/examples/pacer/nef/s3/deb_2.txt new file mode 100644 index 000000000..702d8c2c8 --- /dev/null +++ b/tests/examples/pacer/nef/s3/deb_2.txt @@ -0,0 +1,114 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id 9ifv6rb3p2dhtn5oclbtfsummpbu8pq08ip227o1 + for user@recap.email; + Tue, 23 Apr 2024 21:45:49 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of deb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=DEBdb_ECF_Reply@deb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of deb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=DEBdb_ECF_Reply@deb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=pass header.from=deb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFGeFNWdWxycGppb2JkTmw5Zmpsa0xtUDNZalpoSTFNWHZXWFhvREU0MTJTZ1VaOXp1OVIvOWkzcU5KZkJzWC9QSHVrbzYxZ2tRSHJTMzNUUllQd1ZHWW5idGRNMnhRQXhWbHFmQWx2TlVjeWRpYzd0ZytiWkI1c0dHKzlkOWlpWXpSRXJ6bXk5RnpQM2s5QWlmSCt2elVHUmJUMzNZdStyK2JrSnp4QVpIUHNmL0tUNG1LU3FxNGhoTXI4TEpFMDVyaGg1QlQ4WHNuZndPekF3U0VDSnp6aUtjenZkZk9ldmlWUVFxSFhDRTQ2djNETW5DTWpXOUovcCszTXc4RjJib1RiWkJLUzUvSzlWN3ZqZ2NaNmRudXJ2YmlRZGNQVjFTZVY2QnU5cDdOZjNoYzBLOHRqdXg3dktnMERXOThnYjQ9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=fr+iwDe/s12sS2qubWxo7LBY57GoZej3lRMJEzb1GS7dqxZgcuOBw9B4vzasxC5pQuhZ/2S9y7pwKrKNSDQUQh9vq4Ey4E2RPwUFq72F9vLD9F6fMgVVdaSBTFn6/vaa4J6Wijd0WGDu4cq3XodgUqb/nU0rLgY0Suy6VcRXztQ=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1713908750; v=1; bh=bdnPdkBHkGTrcEeLKzBHorW0n7g+YnQLApFYRKwGUfM=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.33 +Received: from debdb.deb.gtwy.dcn ([156.119.190.33]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 23 Apr 2024 17:45:49 -0400 +Received: from debdb.deb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by debdb.deb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 43NLj2lx113046; + Tue, 23 Apr 2024 17:45:05 -0400 +Received: (from ecf_web@localhost) + by debdb.deb.gtwy.dcn (8.14.7/8.14.4/Submit) id 43NLiLVD111354; + Tue, 23 Apr 2024 17:44:21 -0400 +Date: Tue, 23 Apr 2024 17:44:21 -0400 +X-Authentication-Warning: debdb.deb.gtwy.dcn: ecf_web set sender to DEBdb_ECF_Reply@deb.uscourts.gov using -f +MIME-Version:1.0 +From:DEBdb_ECF_Reply@deb.uscourts.gov +To:dummail@deb.uscourts.gov +Message-Id:<18536996@deb.uscourts.gov> +Subject:Ch-7 23-10253-KBO Akorn Holding Comp Order +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    District of Delaware

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from Mml entered on 4/23/2024 at 5:44 PM EDT and filed on 4/23/2024 + +
    + + + + + + + + + +
    Case Name: +Akorn Holding Company LLC
    Case Number:23-10253-KBO
    Document Number: +795 +
    + + + + +

    Docket Text: + +
    +Order Approving Confidentiality and Non-Disclosure Agreement Between Chapter 7 Trustee and Thea Pharma Inc. (related document(s)[794]) Order Signed on 4/23/2024. (Attachments: # (1) Exhibit 1) (Mml) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:Akorn_-_Order_to_Upload.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=983460418 [Date=4/23/2024] [FileNumber=18536994-0 +
    ] [41bdc1718287547878a190d76ffbeb97e17665bca02f30a185e8f45bf5f282e1504 +
    0b457e214c9c672d0849064b8e5192865096f9b6443b4dfdd588954ecbee3]] +
    +Document description:Exhibit 1 +
    Original filename:Akorn_-_Order_to_Upload_ex_1.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=983460418 [Date=4/23/2024] [FileNumber=18536994-1 +
    ] [975a753649dd4fbf7b341f9aab4a98e214adf409c1cd7800022bdbec6c912ccaec7 +
    e420b6f8b002f939e1f5f1baaca091c7378949ce4322da889e22a90945876]] +
    + +
    +
    + + + + +
    +23-10253-KBO Notice will be electronically mailed to: + + +
    + +
    FistName LastName on behalf of Creditor Stira Pharmaceuticals, LLC +
    xx@gg.com +
    +
    +
    FistName LastName on behalf of Interested Party AmerisourceBergen Drug Corporation +
    yy@gg.com, zz@gg.com +
    +
    FistName LastName on behalf of Creditor Weldon Chin +
    cc@dd.com +
    +
    FistName LastName on behalf of Creditor HYG Financial Service, Inc. +
    aa@bb.com +
    +< \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/ded_1.json b/tests/examples/pacer/nef/s3/ded_1.json index d5abd8229..0fd45a9d9 100644 --- a/tests/examples/pacer/nef/s3/ded_1.json +++ b/tests/examples/pacer/nef/s3/ded_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "CBV, Inc. v. ChanBond, LLC", - "date_filed": "2022-08-03", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-03", @@ -19,7 +19,12 @@ "short_description": "Letter" } ], - "docket_number": "1:21-cv-01456" + "docket_number": "1:21-cv-01456", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MN", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/ded_2.json b/tests/examples/pacer/nef/s3/ded_2.json index 33c0b47da..161e29954 100644 --- a/tests/examples/pacer/nef/s3/ded_2.json +++ b/tests/examples/pacer/nef/s3/ded_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "CBV, Inc. v. ChanBond, LLC", - "date_filed": "2022-08-05", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-05", @@ -19,7 +19,12 @@ "short_description": "Letter" } ], - "docket_number": "1:21-cv-01456" + "docket_number": "1:21-cv-01456", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MN", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/gand_1.json b/tests/examples/pacer/nef/s3/gand_1.json index 9eccb94c1..9fad9ba20 100644 --- a/tests/examples/pacer/nef/s3/gand_1.json +++ b/tests/examples/pacer/nef/s3/gand_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Kinder v. Koch Industries, Inc.", - "date_filed": "2021-07-30", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-07-30", @@ -19,7 +19,12 @@ "short_description": "Order" } ], - "docket_number": "1:20-cv-02973" + "docket_number": "1:20-cv-02973", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MHC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/ianb.json b/tests/examples/pacer/nef/s3/ianb.json new file mode 100644 index 000000000..071605e24 --- /dev/null +++ b/tests/examples/pacer/nef/s3/ianb.json @@ -0,0 +1,42 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "ianb", + "dockets": [ + { + "case_name": "Mercy Hospital, Iowa City, Iowa", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-02-01", + "description": "Motion for Relief from Stay . Fee Amount $199. Filed by Corporation (Attachments: (1) Proposed Order (2) Ex. A - Account Statement (3) Ex. B - Exposure Statement (4) Ex. C - Credit App.(Redacted)) (FirstName LastName)", + "document_number": "701", + "document_url": "https://ecf.ianb.uscourts.gov/doc1/07404369078?pdf_header=&magic_num=82978176&de_seq_num=2927&caseid=108151", + "pacer_case_id": "108151", + "pacer_doc_id": "07404369078", + "pacer_magic_num": "82978176", + "pacer_seq_no": "2927", + "short_description": "Motion for Relief From Stay (Fee)" + } + ], + "docket_number": "23-00623", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "example@domain.com", + "example@domain.com;example@domain.com", + "example@domain.com", + "example@domain.com", + "example@domain.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/ianb.txt b/tests/examples/pacer/nef/s3/ianb.txt new file mode 100644 index 000000000..461a9a21a --- /dev/null +++ b/tests/examples/pacer/nef/s3/ianb.txt @@ -0,0 +1,158 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id 1tmqk3g6ndpmjqadf44bqog0eub2fjnqlckbn181 + for c@recap.email; + Thu, 01 Feb 2024 23:27:01 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of ianb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=cmecf@ianb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of ianb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=cmecf@ianb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=ianb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFIVFF4TnN1d2F0djZjRHl1aW1yK1dKVlpZaVR0WVpyMEZycC92a1ZlTGN0V1pkRlpKREFYdDZRdmh0akt1NDIvdklDa2crZWxZUkdUOFRlMzdMOHJIT0s0d3lLcS9OWDNqSS9hQVN1WkY0Q2l1QkM5TFFVRTQxc0FyZklKMlQ5OWZWd3JKNEMyQU9rTXFaWjl2VEtxTmJHWk1yZ0ZxR1o2bGsrRE82czBBeUJsUEhqeGt4U1lieUVmOTdrbmxEWEFNYVZ6VVBXN1lPdGVsbjhxdU0rbHBhMTU5OGQ5MkxMN3RnSlh3K2pockZsWElmcjNRT1ZBLzVBT1htMGxwWmE3MkFWYWxXaUxFRmd1bnlmdkh6MVJ5V2FDV1FYUXVPbGxkNTNENkg3U0NORlE9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=Qppdb3D73icpIXvE6NyDjUdpHje8yYVJsTj8+uTqi4mybZEFK9iTKrZjRVp6S8RchG5oK2FEO8GPcM3I7HijQsDRstfdujlNdd/iO3meCnS/TWg32w51DMz83EdjugxCWk72gM86n6JXi2Y+bLAOT6zZwa5jLFaYnyKImZu+N+k=; c=relaxed/simple; s=hsbnp7p3ensaochzwyq5wwmceodymuwv; d=amazonses.com; t=1706830022; v=1; bh=gEzNZ6L3Hw1Ba5D1lLWDBu4bj17bUlN3Wxp94ShZhnc=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.193.116 +Received: from ianbdb-rep.ianb.gtwy.dcn ([156.119.193.116]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 01 Feb 2024 18:27:00 -0500 +Received: from ianbdb-rep.ianb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by ianbdb-rep.ianb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 411NQDxf102231; + Thu, 1 Feb 2024 17:26:24 -0600 +Received: (from ecf_web@localhost) + by ianbdb-rep.ianb.gtwy.dcn (8.14.7/8.14.4/Submit) id 411NQ61V101387; + Thu, 1 Feb 2024 17:26:06 -0600 +Date: Thu, 1 Feb 2024 17:26:06 -0600 +X-Authentication-Warning: ianbdb-rep.ianb.gtwy.dcn: ecf_web set sender to cmecf@ianb.uscourts.gov using -f +MIME-Version:1.0 +From:cmecf@ianb.uscourts.gov +To:courtmail@ianb.uscourts.gov +Message-Id:<4477685@ianb.uscourts.gov> +Subject:23-00623 Motion for Relief From Stay (Fee) +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    United States Bankruptcy Court

    + +

    Northern District of Iowa

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from FirstName LastName entered on 2/1/2024 at 5:25 PM CST and filed on 2/1/2024 + +
    + + + + + + + + + +
    Case Name: +Mercy Hospital, Iowa City, Iowa
    Case Number:23-00623
    Document Number: +701 +
    + + + + +

    Docket Text: + +
    + Motion for Relief from Stay and for Order Authorizing and Directing the Distribution of Proceeds from the Sale of the Debtors' Assets. Fee Amount $199. Filed by Corporation (Attachments: # (1) Proposed Order # (2) Ex. A - Account Statement # (3) Ex. B - Exposure Statement # (4) Ex. C - Credit App.(Redacted)) (FirstName LastName) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:2024 02 01 Mercy - Motion for Order Directing Sale Proceeds Allocation.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=993675052 [Date=2/1/2024] [FileNumber=4477683-0] +
    [55d576de494ba53085658d2a68c569ed36b3f818236bb4a9a71ee55092fc50c20590a +
    8e8bc9d32b918bc0b928706d4a5ef194753d20afc1f96c91d7e2334e193]] +
    +Document description:Proposed Order +
    Original filename:C:\fakepath\2024 02 01 Mercy - Proposed Order Granting Motion for Sale Proceeds Allocation.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=993675052 [Date=2/1/2024] [FileNumber=4477683-1] +
    [3771ba384e880c379613e4dd02c04fae7478bf5338a1e77bee43e9bf622de63526890 +
    50acc17ed9be31da74374a3c4107120d051da72c2d2d969be8c43198035]] +
    +Document description: Ex. A - Account Statement +
    Original filename:C:\fakepath\Ex A Mercy Statement.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=993675052 [Date=2/1/2024] [FileNumber=4477683-2] +
    [a832f8eb7d5a660b3abc6898d4f938da7c379ffbb56d435ada1c95d68c17744cebd0f +
    216b2e8b98e9ae0cf122dff936e373eeb9cbe86397afa3f46cb5a15814b]] +
    +Document description: Ex. B - Exposure Statement +
    Original filename:C:\fakepath\Ex B Copy of Med Surg Mercy Exposure.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=993675052 [Date=2/1/2024] [FileNumber=4477683-3] +
    [46348447392c941e3e940dba24deb26996adaabfbb36cfc91d7d68210ce365242e372 +
    65bfe8ec04282c34d10a27e0b13ec91852d598540ed94047e2582ae50e9]] +
    +Document description: Ex. C - Credit App.(Redacted) +
    Original filename:C:\fakepath\Ex C Specialty Mercy Credit App UCC_Redacted1.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=993675052 [Date=2/1/2024] [FileNumber=4477683-4] +
    [df3e41da02575f58cc68f67e3a9dcc3af68c3eef00255d838d0acb7c3c334be8e6972 +
    2ba0c9df5aae9053e0844e4189624eee301fa709ee62f797f76ce2b7f51]] +
    + +
    +
    + + + + +
    +23-00623 Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Creditor UnitedHealth Group +
    example@domain.com, example@domain.com;example@domain.com +
    +
    FirstName LastName on behalf of Creditor LiquidAgents Healthcare, LLC +
    example@domain.com +
    +
    FirstName LastName on behalf of Interested Party State University of Iowa +
    example@domain.com, example@domain.com +
    + +
    + +23-00623 Notice will not be electronically mailed to: + + +
    + +
    CompanyMedical Staffing +
    c/o FirstName LastName +
    Becker LLC +
    Livingston, NJ 07039 +
    +
    Altera Digital Health, Inc. +
    c/o FirstName LastName, Corporate Counsel +
    Chicago, IL 60654 +
    + +
    + + + + +
    +
    diff --git a/tests/examples/pacer/nef/s3/ilnd_1.json b/tests/examples/pacer/nef/s3/ilnd_1.json index 07c5652cd..5ee68241b 100644 --- a/tests/examples/pacer/nef/s3/ilnd_1.json +++ b/tests/examples/pacer/nef/s3/ilnd_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Street v. Footprint Acquisition, LLC", - "date_filed": "2021-08-12", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-08-12", @@ -19,7 +19,12 @@ "short_description": "status report" } ], - "docket_number": "1:21-cv-02975" + "docket_number": "1:21-cv-02975", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/jpml_1.json b/tests/examples/pacer/nef/s3/jpml_1.json index df0a5e025..211d96680 100644 --- a/tests/examples/pacer/nef/s3/jpml_1.json +++ b/tests/examples/pacer/nef/s3/jpml_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "IN RE: Clearview AI, Inc., Consumer Privacy Litigation", - "date_filed": "2022-10-09", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-10-09", @@ -19,11 +19,16 @@ "short_description": "Notice of Change of Address" } ], - "docket_number": "MDL No. 2967" + "docket_number": "MDL No. 2967", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null }, { "case_name": "Hurvitz v. Clearview AI, Inc.", - "date_filed": "2022-10-09", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-10-09", @@ -37,11 +42,16 @@ "short_description": "Notice of Change of Address" } ], - "docket_number": "1:21-cv-02960" + "docket_number": "1:21-cv-02960", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" }, { "case_name": "Calderon v. Clearview AI, Inc.", - "date_filed": "2022-10-09", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-10-09", @@ -55,11 +65,16 @@ "short_description": "Notice of Change of Address" } ], - "docket_number": "1:20-cv-01296" + "docket_number": "1:20-cv-01296", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" }, { "case_name": "Burke v. Clearview AI, Inc.", - "date_filed": "2022-10-09", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-10-09", @@ -73,7 +88,12 @@ "short_description": "Notice of Change of Address" } ], - "docket_number": "1:20-cv-03104" + "docket_number": "1:20-cv-03104", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/laed_1.json b/tests/examples/pacer/nef/s3/laed_1.json index 9787b0dac..b5a7bc5ea 100644 --- a/tests/examples/pacer/nef/s3/laed_1.json +++ b/tests/examples/pacer/nef/s3/laed_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Lou v. Lopinto", - "date_filed": "2022-08-10", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-10", @@ -19,7 +19,12 @@ "short_description": "Motion for Partial Summary Judgment" } ], - "docket_number": "2:21-cv-00080" + "docket_number": "2:21-cv-00080", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WBV", + "federal_dn_judge_initials_referred": "DPC", + "federal_dn_office_code": "2" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/laed_2.json b/tests/examples/pacer/nef/s3/laed_2.json index 852b66157..fd0c91917 100644 --- a/tests/examples/pacer/nef/s3/laed_2.json +++ b/tests/examples/pacer/nef/s3/laed_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Grant v. Gusman", - "date_filed": "2022-08-11", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-11", @@ -19,7 +19,12 @@ "short_description": "Scheduling Order" } ], - "docket_number": "2:17-cv-02797" + "docket_number": "2:17-cv-02797", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NJB", + "federal_dn_judge_initials_referred": "DMD", + "federal_dn_office_code": "2" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/mdb_1.json b/tests/examples/pacer/nef/s3/mdb_1.json new file mode 100644 index 000000000..224206c8c --- /dev/null +++ b/tests/examples/pacer/nef/s3/mdb_1.json @@ -0,0 +1,50 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "mdb", + "dockets": [ + { + "case_name": "Charles Martin", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-04-16", + "description": "Response on behalf of Charles Martin Filed by Charles Martin (related document(s)[522] Motion to Sell and Notice of Motion filed by Trustee Cheryl E. Rose). Hearing scheduled for 5/8/2024 at 02:00 PM by videoconference or teleconference. For hearing access information see www.mdb.uscourts.gov/hearings or call 410-962-2688. (FirstName LastName)", + "document_number": "525", + "document_url": "https://ecf.mdb.uscourts.gov/doc1/092051699384?pdf_header=&magic_num=63947579&de_seq_num=1997&caseid=751901", + "pacer_case_id": "751901", + "pacer_doc_id": "092051699384", + "pacer_magic_num": "63947579", + "pacer_seq_no": "1997", + "short_description": "Response" + } + ], + "docket_number": "20-18680", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "ab@maryland.gov", + "USTPRegion04.GB.ECF@USDOJ.GOV", + "uyy@zzz.com", + "aa@bb.com", + "aa@xx.com", + "cc@yy.com", + "user@notify.bestcase.com", + "user@recap.email", + "aa@bb.com", + "aa@bb.com", + "AA@BB.net", + "A@kk.com", + "b@kk.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/mdb_1.txt b/tests/examples/pacer/nef/s3/mdb_1.txt new file mode 100644 index 000000000..2545d66be --- /dev/null +++ b/tests/examples/pacer/nef/s3/mdb_1.txt @@ -0,0 +1,121 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id n6hfeb3o73btqoftedndlt6abmu0sqdbadhf3jo1 + for user@recap.email; + Tue, 16 Apr 2024 17:52:27 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of mdb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@mdb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of mdb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@mdb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=mdb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFGU1d5Q2ZHRS9DY1NxZHRtVUF6S2RtcEh3b0s1TjM0KytqeldGd3Y2VlV5OCtFRTI1MkNvOEpGWStHUzZtMFlQMkRqcUYyNERKbll3VldpcHp5UWhRdTNadUVLdzVWT2dFaWZyQ0N4U0ZoSTVTdmQ4WEFZSFBaOE52SmxaUXVabDhYOFUzREYzZjBaRStLRGduQ0NxelloQ2dzUlY5ZHNZRW9sUlJmV0lrdWF5Q1YxVEN5aE0wUjVYMERNTk9TcTR2V0pLUXIzTjZpNXZIbURwZTgwMnF6ODlFb3ZEQldTMXJ0Q1l3L3cwb0kxaXRvK0dMWE8rOFFISlpsQ0U1anMwQjNQc3hRaVQ1SWczYnM2N2pwTXFRZ0h1L2F2T2JGaTlvZmc2Tm1YdTJWeVE9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=BldOWgD0OWt1th0rR6mIgfdJqjD5wajF7tky7/P4qphQMSj5FYgzRMnO5TvdUnWWdQiYeEa89oiDCqCtHYBgTdT+rOXDSkY4RsgSzIpZjKyIuhLO5np51uwVRWhh+dnhWMzdpJrca5JICd9ml8uOso8qC2jc/AI+wuzBx0nohgw=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1713289948; v=1; bh=4T/d7yF86JogPUD1CKlXC/2mFQE5lzy1klpv0NB9mlU=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.184 +Received: from mdbdb.mdb.gtwy.dcn ([156.119.190.184]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 16 Apr 2024 13:52:26 -0400 +Received: from mdbdb.mdb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by mdbdb.mdb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 43GHqKLU071293; + Tue, 16 Apr 2024 13:52:23 -0400 +Received: (from ecf_web@localhost) + by mdbdb.mdb.gtwy.dcn (8.14.7/8.14.4/Submit) id 43GHplkQ070736; + Tue, 16 Apr 2024 13:51:47 -0400 +Date: Tue, 16 Apr 2024 13:51:47 -0400 +MIME-Version:1.0 +From:BKECF_LiveDB@mdb.uscourts.gov +To:courtmail@mdb.uscourts.gov +Message-Id:<47751327@mdb.uscourts.gov> +Subject:20-18680 Response - CH7 - Charles Martin +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    District of Maryland

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from Oliver, Yvette entered on 4/16/2024 at 1:51 PM EDT and filed on 4/16/2024 + +
    + + + + + + + + + +
    Case Name: +Charles Martin
    Case Number:20-18680
    Document Number: +525 +
    + + + + +

    Docket Text: + +
    +Response on behalf of Charles Martin Filed by Charles Martin (related document(s)[522] Motion to Sell and Notice of Motion filed by Trustee Cheryl E. Rose). Hearing scheduled for 5/8/2024 at 02:00 PM by videoconference or teleconference. For hearing access information see www.mdb.uscourts.gov/hearings or call 410-962-2688. (FirstName LastName) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:20-18680 ba-001.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=1013806484 [Date=4/16/2024] [FileNumber=47751325- +
    0] [1b706080f9378f5d3324a1654a3d9655187e264097d3ed1e58752ebee03cced8b2 +
    c6763291f8a71ed56f7c14982ebd19284a65d5002b9a9b75c6e7b7ba93734e]] +
    + +
    +
    + + + + +
    +20-18680 Notice will be electronically mailed to: + + +
    + +
    FirstName LastName ab@maryland.gov +
    +
    US Trustee - Greenbelt USTPRegion04.GB.ECF@USDOJ.GOV +
    +
    FirstName LastName uyy@zzz.com, +
    aa@bb.com, +
    aa@xx.com, +
    cc@yy.com, +
    user@notify.bestcase.com, +
    user@recap.email +
    +
    FirstName LastName aa@bb.com, +
    aa@bb.com, +
    AA@BB.net, +
    A@kk.com, +
    b@kk.com +
    + +
    + +20-18680 Notice will not be electronically mailed to: + + +
    + +
    Debtor(s): FirstName LastName; FirstName LastName; FirstName LastName +
    FirstName LastName +
    11111 Atown Road +
    Atown, MD 20810 +
    diff --git a/tests/examples/pacer/nef/s3/mdb_2.json b/tests/examples/pacer/nef/s3/mdb_2.json new file mode 100644 index 000000000..acd732102 --- /dev/null +++ b/tests/examples/pacer/nef/s3/mdb_2.json @@ -0,0 +1,38 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "mdb", + "dockets": [ + { + "case_name": "Jefferson v. Alter", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-04-19", + "description": "Order Denying Motion To Quash (related document(s):[97] Motion for Protective Order filed by 3rd Party Plaintiff Jennifer L. Alter, Defendant Jennifer L. Alter, 3rd Party Plaintiff Eagle Premier Title Group, LLC, Defendant Eagle Premier Title Group, LLC, Motion to Quash). (LastName, FirstName)", + "document_number": "99", + "document_url": "https://ecf.mdb.uscourts.gov/doc1/092051714783?pdf_header=&magic_num=11582823&de_seq_num=409&caseid=768557", + "pacer_case_id": "768557", + "pacer_doc_id": "092051714783", + "pacer_magic_num": "11582823", + "pacer_seq_no": "409", + "short_description": "Order on Motion To Quash" + } + ], + "docket_number": "22-00193", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "a@b.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/mdb_2.txt b/tests/examples/pacer/nef/s3/mdb_2.txt new file mode 100644 index 000000000..d9a630a09 --- /dev/null +++ b/tests/examples/pacer/nef/s3/mdb_2.txt @@ -0,0 +1,106 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id ibr3vk7f6t482tr3kn5ercbot85rjg38tjumsk01 + for user@recap.email; + Fri, 19 Apr 2024 12:45:04 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of mdb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@mdb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of mdb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@mdb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=mdb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFb0FJb014VHdjM0xTQ20yTlVZbGNIdmF1Y0JRNWxNN2I3MzMydjY5b3M2MTBlVFg3cVVsU3RVNW5XVzV2aDJiL1RBdit4NkxrQnBjdkJ1VVkwUjlzMlFOUTJ5THV5WmV0SGRETHRmcVlIZGdUdGhJMXZSZXdDcWVHUm1hUVk1NHNDc2ltNTZKSzNHQkxQb1g2aDkrRnFNN1NUN3FvTlFiUzZBdGpSc2RSQTNKQmVDSmJXUktBY0lHNGZ5dnRuRUtPMDZ6RHZNQWZUY3hycjd1U3pJQ0lMOGdhM2hKalFRN1VxdFU1VVNNdHd6b3c2S29uVUJYdWtmWTlTSTRGb3NtYzc4V2FsemFyNXJzeG9xQmF1SFpHdVhBbEJxK0JyM3dScDhxU3dacjBsY0E9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=isoxmxwKm31yKkH3VRCk/bg0HDb33JxwYynkTlme1eg90DWsLvz8N4Q0gm58NPS3szvxybsDVrjMrFFGYSgBSlbu6uxxaZyYphJOL7KPOVVEcugC1Gq02aVH+BwRqpstb+7YvX7YhkCta6sxiyFLFmlodXLxJcUq9DOD2rG0YjA=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1713530706; v=1; bh=Mljc8QSweEMHvfMI2fKWARVLs4HQK51lhFLdETJcJJk=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.184 +Received: from mdbdb.mdb.gtwy.dcn ([156.119.190.184]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 19 Apr 2024 08:45:04 -0400 +Received: from mdbdb.mdb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by mdbdb.mdb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 43JCiwho075911; + Fri, 19 Apr 2024 08:44:59 -0400 +Received: (from ecf_web@localhost) + by mdbdb.mdb.gtwy.dcn (8.14.7/8.14.4/Submit) id 43JCinki075611; + Fri, 19 Apr 2024 08:44:49 -0400 +Date: Fri, 19 Apr 2024 08:44:49 -0400 +MIME-Version:1.0 +From:BKECF_LiveDB@mdb.uscourts.gov +To:courtmail@mdb.uscourts.gov +Message-Id:<47764967@mdb.uscourts.gov> +Subject:22-00193 Order on Motion To Quash - CH - Jefferson v. Alter et al +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    District of Maryland

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from LastName, FirstName entered on 4/19/2024 at 8:44 AM EDT and filed on 4/19/2024 + +
    + + + + + + + + + +
    Case Name: +Jefferson v. Alter et al
    Case Number:22-00193
    Document Number: +99 +
    + + + + +

    Docket Text: + +
    +Order Denying Motion To Quash (related document(s):[97] Motion for Protective Order filed by 3rd Party Plaintiff Jennifer L. Alter, Defendant Jennifer L. Alter, 3rd Party Plaintiff Eagle Premier Title Group, LLC, Defendant Eagle Premier Title Group, LLC, Motion to Quash). (LastName, FirstName) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:/opt/BKECF/live/web/eorderDocs/poStampedDocs/lss/1309252-signed.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=1013806484 [Date=4/19/2024] [FileNumber=47764965- +
    0] [08e29cea0e33c7dafb5a4002663cdd825fdf4d72e8c69b2c94b595fa74c7d83949 +
    3f99e7ebbcad9ae4b7cae5f93de45b5ec1cac099a0bee7a20d7b3a258469c7]] +
    + +
    +
    + + + + +
    +22-00193 Notice will be electronically mailed to: + + +
    + +
    FirstName LastName a@b.com +
    + +
    + +22-00193 Notice will not be electronically mailed to: + + +
    + +
    FirstName LastName +
    c/o Company Group, LLC +
    234 Street, Suite C +
    Baltimore, MD 11111 +
    diff --git a/tests/examples/pacer/nef/s3/mdb_3.json b/tests/examples/pacer/nef/s3/mdb_3.json new file mode 100644 index 000000000..8e3ae64ba --- /dev/null +++ b/tests/examples/pacer/nef/s3/mdb_3.json @@ -0,0 +1,41 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "mdb", + "dockets": [ + { + "case_name": "Aligned Development LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-03-27", + "description": "BNC Certificate of Mailing - PDF Document. (related document(s)[35] Order Dissolving Show Cause Order). No. of Notices: 1. Notice Date 03/27/2024. (Admin.)", + "document_number": "37", + "document_url": "https://ecf.mdb.uscourts.gov/doc1/092051619029?pdf_header=&magic_num=44278661&de_seq_num=160&caseid=782151", + "pacer_case_id": "782151", + "pacer_doc_id": "092051619029", + "pacer_magic_num": "44278661", + "pacer_seq_no": "160", + "short_description": "BNC Certificate of Mailing - PDF Document" + } + ], + "docket_number": "24-11929", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "USTPRegion04.GB.ECF@USDOJ.GOV", + "b@dcbankruptcy.com", + "aa@notify.bestcase.com", + "user@recap.email" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/mdb_3.txt b/tests/examples/pacer/nef/s3/mdb_3.txt new file mode 100644 index 000000000..fd4cce5cb --- /dev/null +++ b/tests/examples/pacer/nef/s3/mdb_3.txt @@ -0,0 +1,100 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id 2tv22b5fcb7g0quqg84c5p176jameqvfeklrh1g1 + for user@recap.email; + Thu, 28 Mar 2024 04:26:51 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of mdb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@mdb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of mdb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@mdb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=mdb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHZkhhdnpYY0NHYXI0RWFzVnk1TGdFQTJVZ1M3MEZnaVMyTEZSMGs0V2R0N2hKZU14TVdqZEM2SE53enJOMFo2a3J1Tmw3dWRMYnNUVlRsMElwNnZ4bUlwaXZRalEzWEFrbC82SUgvQjRUZkZ1Q21yTTh3aU9sbXJXK2YzTDdOT0szNGY3d3ppUUdhNzF4NzVjL3ovQjAwOG54N2xlUEdIS2F0bjkvMEtMdkY2RDJDRVU4YkFiRE80N0I0WS9KTHM3aG5WYTZNc20rcFlWQmVJZ2xUcmFxaDcyYm5EWW9VYXNNNDBSQWNZc0g0dFdydjR2UVdkSHhqcm5oU2dCQkFJRmJwRDlINnY0dnAvVnpmY01qQlJhUmQ1SmZEc2NwQnAwNU80M2pjWmV4bWc9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=G+CAYhZMWS3a4KwkOzxmaW3kOkXrI/xn2ia07Gh0b34Y0BLuBOrHY2OhYD0yKtouthogW0XEowq0eAlcmqpvjowKHpiNT1Yu0iuKAFlr7+58QfTsdAtGMM8Zyz9wuEKkn+nFbPB58ljJlMaZimhEvgQciBsTOiBcdi254xm1k84=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1711600012; v=1; bh=t2WyDf+yBRTmg1IJKl7V9rj6G5VAp67j9Yhe7UmM/HE=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.184 +Received: from mdbdb.mdb.gtwy.dcn ([156.119.190.184]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 28 Mar 2024 00:26:51 -0400 +Received: from mdbdb.mdb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by mdbdb.mdb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 42S4Psal097523; + Thu, 28 Mar 2024 00:26:18 -0400 +Received: (from ecf_web@localhost) + by mdbdb.mdb.gtwy.dcn (8.14.7/8.14.4/Submit) id 42S4PaBS096602; + Thu, 28 Mar 2024 00:25:36 -0400 +Date: Thu, 28 Mar 2024 00:25:36 -0400 +MIME-Version:1.0 +From:BKECF_LiveDB@mdb.uscourts.gov +To:courtmail@mdb.uscourts.gov +Message-Id:<47679670@mdb.uscourts.gov> +Subject:24-11929 BNC Certificate of Mailing - PDF Document - CH11 - Aligned Development LLC +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + +

    U.S. Bankruptcy Court

    + +

    District of Maryland

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from Admin entered on 03/28/2024 at 00:23 AM EDT and filed on 03/27/2024 + +
    + + + + + + + + + +
    Case Name: +Aligned Development LLC
    Case Number:24-11929
    Document Number: +37 +
    + + + + +

    Docket Text: + +
    +BNC Certificate of Mailing - PDF Document. (related document(s)[35] Order Dissolving Show Cause Order). No. of Notices: 1. Notice Date 03/27/2024. (Admin.) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Imaged Certificate of Notice +
    Original filename:P02411929pdfparty0150.pdf +
    Electronic document Stamp: +
    [STAMP bkecfStamp_ID=1013806484 [Date=3/28/2024] [FileNumber=47679287-0] [97850691e041c77126a3840387ce0edb446824f6994f23f6e0035713c5a4edee6c5878cdcdd0fe732e4687b1de60585e8fe428620278735bdf395b80226b11e3]] +
    + +
    +
    + +
    +24-11929 Notice will be electronically mailed to: + + +
    +
    US Trustee - Greenbelt USTPRegion04.GB.ECF@USDOJ.GOV +
    +
    FirstName LastName +
    b@dcbankruptcy.com, +
    aa@notify.bestcase.com, +
    user@recap.email +
    + +
    + +24-11929 Notice will not be electronically mailed to: + + +
    +
    Debtor(s): Company LLC +
    For Internal Use Only +
    , +
    + diff --git a/tests/examples/pacer/nef/s3/ndb_1.json b/tests/examples/pacer/nef/s3/ndb_1.json new file mode 100644 index 000000000..de6d8b383 --- /dev/null +++ b/tests/examples/pacer/nef/s3/ndb_1.json @@ -0,0 +1,39 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "ndb", + "dockets": [ + { + "case_name": "Drain Services Inc. v. Houdyshell", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-02-02", + "description": "Clerk's Entry of Default (RE: related document(s)[1] Complaint filed by Plaintiff Drain Services Inc.) (vck, Court)", + "document_number": "5", + "document_url": "https://ecf.ndb.uscourts.gov/doc1/13601595078?pdf_header=&magic_num=63506631&de_seq_num=22&caseid=45339", + "pacer_case_id": "45339", + "pacer_doc_id": "13601595078", + "pacer_magic_num": "63506631", + "pacer_seq_no": "22", + "short_description": "Clerk's Entry of Default" + } + ], + "docket_number": "23-07017", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "example@domain.com", + "example@domain.com;example@domain.com;c@recap.email" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/ndb_1.txt b/tests/examples/pacer/nef/s3/ndb_1.txt new file mode 100644 index 000000000..623da5473 --- /dev/null +++ b/tests/examples/pacer/nef/s3/ndb_1.txt @@ -0,0 +1,121 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id glmo25n50fd84qdufgc8o3uekt3fe4nfi5nfrgo1 + for example@domain.com; + Fri, 02 Feb 2024 14:26:08 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of ndb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=ecf@ndb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of ndb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=ecf@ndb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=ndb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFIbUhjbWdGS2daQVc5MnpOdHBXZ0tLRmpMWkd6ejJBOHVRUmxzUHhnaWtTZFZYY3Aya1hOVlY1TEMvSHlzaG41UXJrU0tDVWFWRngvdUJMME1TOWgrOVduQ3FWNEpOa3grRFB0TUt4TjhaOFpaL01xa1M4L20yOEJocmhEYlNzeUtYVUVRZDIyUUZzdHBiWmpGb0VsaVZ0cWZRRVd3dm5nVG5kVjZDc1dad2l1VFBRNGsyYVczeDJNdW5FSWsxN0hJQUlUQkkxQ1NrYXBjVzJOeStwRkFnS2ZnQU5zdUlnMmVabFNwQWlEOXRxZCtuSFhNTU1LZngrMm5xNzYxTDAyYUZzVjJCeTcxQ2diNEx0ektUdVNhREdKR1hybUk5Q09pbWxJa2xSYmxlU1E9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=mhPpoySeDvZtQt6jEeD460/pxkbUe+koqlGb5TiZQx+T9dpprvyfT2MD3pl+zLwC0WyU7W0QlLHSPKET9S6Ij1ucBRqqGaPtLbVSk8GYnj6oNA2ADWXeTCrI2KXrDTsDtIlce3Pad8dlrnJ8xwA5ziWIC5uwkrrUuf4xfznXRK4=; c=relaxed/simple; s=hsbnp7p3ensaochzwyq5wwmceodymuwv; d=amazonses.com; t=1706883969; v=1; bh=N8AZnwlrG8xPV+3InvyNp+w17kX5aKRHp7LS0Vh0G2s=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.193.242 +Received: from ndbdb-rep.ndb.gtwy.dcn ([156.119.193.242]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 02 Feb 2024 09:26:08 -0500 +Received: from ndbdb-rep.ndb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by ndbdb-rep.ndb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 412EPNFN052971; + Fri, 2 Feb 2024 08:25:23 -0600 +Received: (from ecf_web@localhost) + by ndbdb-rep.ndb.gtwy.dcn (8.14.7/8.14.4/Submit) id 412EOlPR051566; + Fri, 2 Feb 2024 08:24:47 -0600 +Date: Fri, 2 Feb 2024 08:24:47 -0600 +X-Authentication-Warning: ndbdb-rep.ndb.gtwy.dcn: ecf_web set sender to ecf@ndb.uscourts.gov using -f +MIME-Version:1.0 +From:ecf@ndb.uscourts.gov +To:nate_olson@ndb.uscourts.gov +Message-Id:<1604226@ndb.uscourts.gov> +Subject:23-07017 Drain Services Inc. v. Houdyshell et al Clerk's Entry of Default +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    District of North Dakota

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from vck, Court entered on 2/2/2024 at 8:24 AM CST and filed on 2/2/2024 + +
    + + + + + + + + + +
    Case Name: +Drain Services Inc. v. Houdyshell et al
    Case Number:23-07017
    Document Number: +5 +
    + + + + +

    Docket Text: + +
    +Clerk's Entry of Default (RE: related document(s)[1] Complaint filed by Plaintiff Drain Services Inc.) (vck, Court) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:23-7017 Drain Services v SD Clerks Notice of Default.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=1065028669 [Date=2/2/2024] [FileNumber=1604224-0] +
    [6784c7c8eafb1d97e2229f42651772cd9c720d0e92a789333b5d01bfe4b6126f0d69 +
    7adfa5dbfbd3be634412fd00491935cf062172ccf1452d993c6135af5f53]] +
    + +
    +
    + + + + +
    +23-07017 Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Plaintiff Drain Services Inc. +
    example@domain.com, example@domain.com;example@domain.com;c@recap.email +
    + +
    + +23-07017 Notice will not be electronically mailed to: + + +
    + +
    Michael Houdyshell +
    South Dakota Department of Revenue +
    445 E Capitol Avenue +
    Pierre, SD 57501 +
    +
    The State of South Dakota +
    c/o Kristi Noem, Governor +
    500 East Capitol Avenue +
    Pierre, SD 57501 +
    + +
    + + + + +
    +
    \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/nhb_1.json b/tests/examples/pacer/nef/s3/nhb_1.json new file mode 100644 index 000000000..271b79826 --- /dev/null +++ b/tests/examples/pacer/nef/s3/nhb_1.json @@ -0,0 +1,41 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "nhb", + "dockets": [ + { + "case_name": "Mykle Lepene", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-07-15", + "description": "Affidavit of Compliance with Discharge Requirements pursuant to Section 1328. (LastName, FirstName)", + "document_number": "87", + "document_url": "https://ecf.nhb.uscourts.gov/doc1/11606636485?pdf_header=&magic_num=10004684&de_seq_num=302&caseid=117776", + "pacer_case_id": "117776", + "pacer_doc_id": "11606636485", + "pacer_magic_num": "10004684", + "pacer_seq_no": "302", + "short_description": "Affidavit of Compliance with Discharge Requirements" + } + ], + "docket_number": "21-10245", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BAH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "attorney@lawfirm.com", + "attoreny@lawfirm.com;user@recap.email", + "name@lawfirm.org", + "name0@lawfirm.org;name1@lawfirm.org;name2@lawfirm.org;name3@lawfirm.org" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/nhb_1.txt b/tests/examples/pacer/nef/s3/nhb_1.txt new file mode 100644 index 000000000..3064fe7eb --- /dev/null +++ b/tests/examples/pacer/nef/s3/nhb_1.txt @@ -0,0 +1,107 @@ +Return-Path: +Received: from icmecf102.gtwy.uscourts.gov (icmecf102.gtwy.uscourts.gov [199.107.16.202]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id oib6vl71gp8m14jnarbscvk1biuh2a87unknkh01 + for user@recap.email; + Mon, 15 Jul 2024 19:36:54 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of nhb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=ecf_mail@nhb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of nhb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=ecf_mail@nhb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; + dmarc=none header.from=nhb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFIOUpFR1hFY2hUVHlLYWdhTUh5ajc1dEhPSUI3Tnh2TlZkR1RSZ2lTc3ZDSmJDTXpneHJQUWpXQ1k2b0N3MXRlMlJHYStoY3ltaVBnM0RQKzFEaDNiUGlObHVVNlorR2RWQm55dkZqZFRwVUpoQlJtY0p1Z1F2WkozcitYY1g1dUp6OFhLdFFUdzhUNzViMkwrOGZ3WG5QY2RhdXIvRHRXUFdKRWdoYW9UN0JNRE9DNE9TbHEyVjB3dFF3TDlOeVowdHVFVExydENmMzRwNmpjWkN2WG1WZ2lHQVRPUGtyRlRqSU1MWnBra3Q4OFlyTEVGZ0xQZDdPMmtNRjBUV1F5eWNCNk5pYkxQZFROSmVBYVlxWTZOenhnc3RKeFc5NnVZaThrY2xvUHZFT0E9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=z8NiVi7meTZa3S9xWJR30O5D9b5pnNLDZed6H/SDNBPdk7/Rt9Ekc7i0aZZbICgPWSYHPRpnvv126U4t5ltahjNMVoDZNgjQlI8GbjMDZe57WoaFJ/YcY81vNKxX9AcaZK6x2UAevpYzg7KUtKY7e7FVQ9d+HC2OttEAfrZEJ1M=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1721072215; v=1; bh=irsOVo9gYcfgp8l1YprBuQ/xgshCQcorC2tXFzchBt4=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.55 +Received: from nhbdb.nhb.gtwy.dcn ([156.119.190.55]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 15 Jul 2024 15:36:54 -0400 +Received: from nhbdb.nhb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by nhbdb.nhb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 46FJa8Pv042509 + for ; Mon, 15 Jul 2024 15:36:10 -0400 +Received: (from ecf_web@localhost) + by nhbdb.nhb.gtwy.dcn (8.14.7/8.14.4/Submit) id 46FJZW9x041355; + Mon, 15 Jul 2024 15:35:32 -0400 +Date: Mon, 15 Jul 2024 15:35:32 -0400 +MIME-Version:1.0 +From:ecf_mail@nhb.uscourts.gov +To:user@recap.email +Message-Id:<6625450@nhb.uscourts.gov> +Subject:21-10245-BAH Chapter 13 Mykle Lepene Affidavit of Compliance with Discharge Requirements +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    District of New Hampshire Live Database

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from Sumski, Lawrence entered on 7/15/2024 at 3:35 PM EDT and filed on 7/15/2024 + +
    + + + + + + + + + +
    Case Name: +Mykle Lepene
    Case Number:21-10245-BAH
    Document Number: +87 +
    + + + + +

    Docket Text: + +
    +Affidavit of Compliance with Discharge Requirements pursuant to Section 1328. (LastName, FirstName) +

    + +

    The following document(s) are associated with this transaction:

    + + +
    Case Number: 21-10245-BAH +
    Document description: +
    Original filename:C:\fakepath\21-10245 xPleading AFFIDAVIT re Discharge of Debtor.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=988526710 [Date=7/15/2024] [FileNumber=6625433-0] +
    [23845912d719a3e9f8b9bd699c6f8bbee251bcaba2f812a4f43747c6a442d367cdaa +
    ab007f3a5efc6b972d526811f5885f383c3c6c597560f4df46d240cc4407]] +
    + +
    +
    + + + + +
    +21-10245-BAH Notice will be electronically mailed to: + + +
    + +
    FirstName M. LastName on behalf of Creditor Eliza Conley-Lepene +
    attorney@lawfirm.com, attoreny@lawfirm.com;user@recap.email +
    +
    FirstName LastName on behalf of Debtor Mykle Lepene +
    name@lawfirm.org, name0@lawfirm.org;name1@lawfirm.org;name2@lawfirm.org;name3@lawfirm.org +
    + +
    + +21-10245-BAH Notice will not be electronically mailed to: + + +
    + diff --git a/tests/examples/pacer/nef/s3/njb_1.json b/tests/examples/pacer/nef/s3/njb_1.json index d663bd15f..934af4cff 100644 --- a/tests/examples/pacer/nef/s3/njb_1.json +++ b/tests/examples/pacer/nef/s3/njb_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Hollister Construction Services, LLC", - "date_filed": "2023-01-19", + "date_filed": null, "docket_entries": [ { "date_filed": "2023-01-19", @@ -19,7 +19,12 @@ "short_description": "Determination of Adjournment Request" } ], - "docket_number": "19-27439" + "docket_number": "19-27439", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MBK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/njb_2.json b/tests/examples/pacer/nef/s3/njb_2.json index 741a5e6ce..a63353520 100644 --- a/tests/examples/pacer/nef/s3/njb_2.json +++ b/tests/examples/pacer/nef/s3/njb_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Hollister Construction Services, LLC", - "date_filed": "2023-01-27", + "date_filed": null, "docket_entries": [ { "date_filed": "2023-01-27", @@ -19,7 +19,12 @@ "short_description": "BNC Certificate of Notice - Order" } ], - "docket_number": "19-27439" + "docket_number": "19-27439", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MBK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/njb_3.json b/tests/examples/pacer/nef/s3/njb_3.json new file mode 100644 index 000000000..e29bbf8ee --- /dev/null +++ b/tests/examples/pacer/nef/s3/njb_3.json @@ -0,0 +1,64 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "njb", + "dockets": [ + { + "case_name": "Sklar v. JM Custom Homes LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-04-24", + "description": "Adversary Case (1:23-ap-1196) Closed. (def)", + "document_number": null, + "document_url": null, + "pacer_case_id": "1101619", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Close Adversary Case" + } + ], + "docket_number": "23-01196", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "ABA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + }, + { + "case_name": "Orbit Energy & Power, LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-04-24", + "description": "Adversary Case (1:23-ap-1196) Closed. (def)", + "document_number": null, + "document_url": null, + "pacer_case_id": "1094352", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Close Adversary Case" + } + ], + "docket_number": "22-19628", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "ABA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "aaa@firm.com", + "person@firm.com", + "person@firm.com", + "person@firm.comperson@firm.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/njb_3.txt b/tests/examples/pacer/nef/s3/njb_3.txt new file mode 100644 index 000000000..be173e35d --- /dev/null +++ b/tests/examples/pacer/nef/s3/njb_3.txt @@ -0,0 +1,128 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id 7q9drjsjk6uldcb8pch3k085hpntogopbtqudm01 + for user@recap.email; + Wed, 24 Apr 2024 14:45:11 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of njb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=cmecf_help_desk@njb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of njb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=cmecf_help_desk@njb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=njb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFIMForamF4Y2oydTNGMEdnUzdFOVMrN2JrdjJab1V1SXNMcGhIaFM2TWNaZEJzeTl5TlFaeGNxY1pYb2ZVV2QwdWo0a0swZ0F0dkE5RXEzdHVBUVAvc2E4WDJKTGJ2cFczUldrSnR4aFpqTUs2cElDTDRMajBaOVlDYmxZcFJhSWQvS3JRa0p1R25KU3UxdHdaeURTYklHdm9QMWZVWUoyUjdZL3VMWDhiUmlCYjcyWk5qVlkxd2J6em12enE1dU9xTGN0L3lPbE00UG50V2RoVEhFc29oRGhlbjBlc24xYU9QTDFMNHdobWRkdjVQbnJURzhrQVRPVlp6U2ZVZGQvRUVFRFlDTHNjN3U0eUdUWURFcDh5aDEvbm5VYk85emJMcXN3NXpNQmZ5YTBpV1JWbGpaQ2s1Q21Od2wzZ2pTTnM9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=n0lxGw63v1EymKTB+LmiKU10UblAkO+ytIJ88CWlOHPFEtj7W/ivYO6QY9IitX/ntkS5NhD5jauKGmIbDIauIFyDZduQ5/jdYf7ie/w7Oe0iLEIhJOnzyEmBKGDHO/AMP02DtsWsf7yjLQQbjYRBS7Qh5WCHrsvHrEcZBfqUIQk=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1713969912; v=1; bh=E0+T6lkYHvTCl4jmR0bZGh4ayprnGk4srr+zKTq24Lw=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.77 +Received: from unknown (HELO njbdb.njb.gtwy.dcn) ([156.119.190.77]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 24 Apr 2024 10:45:11 -0400 +Received: from njbdb.njb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by njbdb.njb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 43OEiPeA123965; + Wed, 24 Apr 2024 10:44:28 -0400 +Received: (from ecf_web@localhost) + by njbdb.njb.gtwy.dcn (8.14.7/8.14.4/Submit) id 43OEhhLp121900; + Wed, 24 Apr 2024 10:43:43 -0400 +Date: Wed, 24 Apr 2024 10:43:43 -0400 +MIME-Version:1.0 +From:cmecf_help_desk@njb.uscourts.gov +To:no-reply@njb.uscourts.gov +Message-Id:<62950014@njb.uscourts.gov> +Subject:Ch-7 22-19628-ABA Close Adversary Case - Orbit Energy & Pow +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    District of New Jersey

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from def entered on 4/24/2024 at 10:43 AM EDT and filed on 4/24/2024 + +
    + + + + + + + + + +
    Case Name: +Sklar v. JM Custom Homes LLC
    Case Number:23-01196-ABA
    WARNING: CASE CLOSED on 04/24/2024
    Document Number: + +
    + + + + + + + + + +
    Case Name: +Orbit Energy & Power, LLC
    Case Number:22-19628-ABA
    Document Number: + +
    + + + + +

    Docket Text: + +
    +Adversary Case (1:23-ap-1196) Closed. (def) +

    + +

    The following document(s) are associated with this transaction:

    + + +
    +
    + + + + +
    +23-01196-ABA Notice will be electronically mailed to: + + +
    + +
    E. FirstName LastName on behalf of Plaintiff FirstName +
    aaa@firm.com +
    + +
    + +23-01196-ABA Notice will not be electronically mailed to: + + +
    + + + + +
    +
    + + + + +
    +22-19628-ABA Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Creditor TVT 2.0 LLC +
    person@firm.com +
    +
    FirstName LastName on behalf of Creditor Associate Refrigeration, Inc. +
    person@firm.com, person@firm.com,person@firm.com +
    \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/njb_4.json b/tests/examples/pacer/nef/s3/njb_4.json new file mode 100644 index 000000000..a5d832036 --- /dev/null +++ b/tests/examples/pacer/nef/s3/njb_4.json @@ -0,0 +1,69 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "njb", + "dockets": [ + { + "case_name": "Goldberg v. Weingarten Nostat, LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-05-17", + "description": "Adversary case 24-01365. Complaint by FirstName LastName against Weingarten Nostat, LLC. Fee Amount $ 350.. (12 (Recovery of money/property - 547 preference)) (Attachments: (1) Exhibit A) (FirstName LastName)", + "document_number": "1", + "document_url": "https://ecf.njb.uscourts.gov/doc1/118066947529?pdf_header=&magic_num=56972776&de_seq_num=3&caseid=1112881", + "pacer_case_id": "1112881", + "pacer_doc_id": "118066947529", + "pacer_magic_num": "56972776", + "pacer_seq_no": "3", + "short_description": "Complaint" + } + ], + "docket_number": "24-01365", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "VFP", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + }, + { + "case_name": "Bed Bath & Beyond Inc.", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-05-17", + "description": "Adversary case 24-01365. Complaint by FirstName LastName against Weingarten Nostat, LLC. Fee Amount $ 350.. (12 (Recovery of money/property - 547 preference)) (Attachments: (1) Exhibit A) (FirstName LastName)", + "document_number": "3229", + "document_url": "https://ecf.njb.uscourts.gov/doc1/118066947531?pdf_header=&magic_num=16113382&de_seq_num=11806&caseid=1098474", + "pacer_case_id": "1098474", + "pacer_doc_id": "118066947531", + "pacer_magic_num": "16113382", + "pacer_seq_no": "11806", + "short_description": "Complaint" + } + ], + "docket_number": "23-13359", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "VFP", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "aa@domain.com", + "bb@domain.com" + ], + "name": "" + }, + { + "email_addresses": [ + "person@firm.com", + "person@firm.com" + ], + "name": "Address 1 Address 2 Town, NY 1111" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/njb_4.txt b/tests/examples/pacer/nef/s3/njb_4.txt new file mode 100644 index 000000000..ea5d911cf --- /dev/null +++ b/tests/examples/pacer/nef/s3/njb_4.txt @@ -0,0 +1,164 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id jq5c7rchbis0odf0kad7mgv913klkknpaaj3a2o1 + for user@recap.email; + Fri, 17 May 2024 16:26:54 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of njb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=cmecf_help_desk@njb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of njb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=cmecf_help_desk@njb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=njb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHclZ4RkZGRmZHVlZBOWo1eXFKOStrS1hPdThwWE1aZVZJMlR3aEw3d25lSUxWUmlEdndTQ2c2WitSRTJUeDdiVzM0Y2YrM1ZqZ0V5UVlqWFRscTVabVF3aEkwam12L21CSzhGOUFOdDliM1dmNUk4OEkyK2tuc2FqdHowK0IvaUxaakVzVnowTDNzVVZsc0V1ekduYXNhYXcxRlROWUEyaXBySDhHT1NSdUxnTUhsbXRJcFptaGNDNG1vd0RINFBlckE2UWYyQlEwaHkzck9DaFVQMDBpbjAyTjUvYzNYRE4xZ0N1b0ZUamt0V0Z3U1IxVkZjQzFla1g0cmhvdmJNSWkwcGoxQWw0OFIvbEZxUGFvWUoxTGZwN2xsWlpIYjRPWmlqNVdyREhxVHBQd29WNnFwQ0Q2VlJiYmord3ZNd2M9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=zpbM2+TKniCYnRx/Dd6FUiseaeK/6X0dbt3yRZ9k2bMESLAsq6FVWNuKaKITRMc9KD1+DKqRdx+RjoarH/MpayqqhKcx6xxH22e8djFfH9PDrtysHfoYHFLY/sRbVnrAFwV3AHeAdtIchbriJ+gIYy/CWGqdTfKZHd/VQ4U7tqk=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1715963215; v=1; bh=5yrTDfWlP/tSqaFSvASO6Pz+iA1v8edyKjWhXm6J4kY=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.77 +Received: from unknown (HELO njbdb.njb.gtwy.dcn) ([156.119.190.77]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 17 May 2024 12:26:54 -0400 +Received: from njbdb.njb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by njbdb.njb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 44HGQ54h062290; + Fri, 17 May 2024 12:26:09 -0400 +Received: (from ecf_web@localhost) + by njbdb.njb.gtwy.dcn (8.14.7/8.14.4/Submit) id 44HGQ5ME062182; + Fri, 17 May 2024 12:26:05 -0400 +Date: Fri, 17 May 2024 12:26:05 -0400 +MIME-Version:1.0 +From:cmecf_help_desk@njb.uscourts.gov +To:no-reply@njb.uscourts.gov +Message-Id:<63067338@njb.uscourts.gov> +Subject:Ch-11 23-13359-VFP Complaint - Bed Bath & Beyond +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    District of New Jersey

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from Marianna Udem entered on 5/17/2024 at 12:25 PM EDT and filed on 5/17/2024 + +
    + + + + + + + + + +
    Case Name: +Goldberg v. Weingarten Nostat, LLC
    Case Number:24-01365-VFP
    Document Number: +1 +
    + + + + + + + + + +
    Case Name: +Bed Bath & Beyond Inc.
    Case Number:23-13359-VFP
    Document Number: +3229 +
    + + + + +

    Docket Text: + +
    +Adversary case 24-01365. Complaint by FirstName LastName against Weingarten Nostat, LLC. Fee Amount $ 350.. (12 (Recovery of money/property - 547 preference)) (Attachments: # (1) Exhibit A) (FirstName LastName) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:Weingarten Nostat complaint.pdf +
    Electronic document Stamp: +
    [STAMP bkecfStamp_ID=1002741850 [Date=5/17/2024] [FileNumber=63067333- +
    0] [8513a4713e43f2ece0e22f6e4584ab2a5c0aae9d5849c1f43f9a3f8e04e44bf42d +
    630d8d52258f508bfe0bf6fd558a62a606552b73d98639bf0a6f1456e333ce]] +
    +Document description:Exhibit A +
    Original filename:C:\fakepath\Weingarten Nostat, LLC fdba Weingarten Nostat, Inc. (2278419), Exhibit A.pdf +
    Electronic document Stamp: +
    [STAMP bkecfStamp_ID=1002741850 [Date=5/17/2024] [FileNumber=63067333- +
    1] [90360a35d12670b7f860d77d94c311db71e8be4fc65f8e34a6f4cbaa30f32a4cef +
    5eb8ec38ab9f4197ca2871fef111be12eacd706892a6f1c861e8f1fb94ba26]] +
    +Document description:Main Document +
    Original filename:Weingarten Nostat complaint.pdf +
    Electronic document Stamp: +
    [STAMP bkecfStamp_ID=1002741850 [Date=5/17/2024] [FileNumber=63067334- +
    0] [64956adc41cc75446eed03ed8814ea14370835d1cc41848a92306d046f180d3a6e +
    32c0bbf55cd1356210382c8cccd1b1aa478af75f6710ef6fe219f54b5c3924]] +
    +Document description:Exhibit A +
    Original filename:C:\fakepath\Weingarten Nostat, LLC fdba Weingarten Nostat, Inc. (2278419), Exhibit A.pdf +
    Electronic document Stamp: +
    [STAMP bkecfStamp_ID=1002741850 [Date=5/17/2024] [FileNumber=63067334- +
    1] [a0e55b20da355319b750c9d18714accbd9868a401f6881f8667066d5d2c3049f4f +
    003be3bbd6c9b5db33ee1362867269a087bc59163a93f32a8d03edc1b67208]] +
    + +
    +
    + + + + +
    +24-01365-VFP Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Plaintiff FirstName LastName +
    aa@domain.com +
    +
    FirstName LastName on behalf of Plaintiff FirstName LastName +
    bb@domain.com +
    + +
    + +24-01365-VFP Notice will not be electronically mailed to: + + +
    + +
    Company, LLC +
    Address 1 +
    Address 2 +
    Town, NY 1111 +
    + +
    + + + + +
    +
    + + + + +
    +23-13359-VFP Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Other Prof. Golf & Tennis Pro Shops, Inc. (d/b/a/ PGA TOUR Superstore) +
    person@firm.com, person@firm.com +
    diff --git a/tests/examples/pacer/nef/s3/njd_1.json b/tests/examples/pacer/nef/s3/njd_1.json index 8d0deabb8..a1d77e0b8 100644 --- a/tests/examples/pacer/nef/s3/njd_1.json +++ b/tests/examples/pacer/nef/s3/njd_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "KOONES v. KEHATI", - "date_filed": "2023-01-30", + "date_filed": null, "docket_entries": [ { "date_filed": "2023-01-30", @@ -19,7 +19,12 @@ "short_description": "Status Conference" } ], - "docket_number": "2:22-cv-06575" + "docket_number": "2:22-cv-06575", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JMV", + "federal_dn_judge_initials_referred": "LDW", + "federal_dn_office_code": "2" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/nyeb_1.json b/tests/examples/pacer/nef/s3/nyeb_1.json new file mode 100644 index 000000000..ec8f25835 --- /dev/null +++ b/tests/examples/pacer/nef/s3/nyeb_1.json @@ -0,0 +1,40 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "nyeb", + "dockets": [ + { + "case_name": "L. v. Rivera", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-04-23", + "description": "Marked Off; Entered correctly in the main case. (related document(s): [15] Motion for Relief From Stay filed by Rutledge Apartments LLC) (FirstName LastName)", + "document_number": null, + "document_url": null, + "pacer_case_id": "509127", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Hearing Settled/Withdrawn/Marked Off Without Hearing (Case Owned BK)" + } + ], + "docket_number": "1-23-01071", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "nhl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "xx@HWRPC.com", + "xx@domain.com", + "user@recap.email" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/nyeb_1.txt b/tests/examples/pacer/nef/s3/nyeb_1.txt new file mode 100644 index 000000000..eb91e14d2 --- /dev/null +++ b/tests/examples/pacer/nef/s3/nyeb_1.txt @@ -0,0 +1,109 @@ +Return-Path: +Received: from icmecf102.gtwy.uscourts.gov (icmecf102.gtwy.uscourts.gov [199.107.16.202]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id ohnvclip2ql2om1u95hd1l2dfme2vb1jdcgr5301 + for user@recap.email; + Tue, 23 Apr 2024 19:00:01 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of nyeb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=BKECF_LiveDB@nyeb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of nyeb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=BKECF_LiveDB@nyeb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; + dmarc=none header.from=nyeb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFGWkpBNFhHRE0zcVV3bFB0RXMxdzRPVCtrSDR3SXIyU3ptZlNMcWtibkNLMGtWdGZhdThpZ2FFeEJMdERJVC9CdENCRGQrWHNlS09tWjBwSEZoUEgxZkRJT0V4aHlEWEMwd0h5alJybWk0QkxROGJzL2FReVFCbHJPMExNZkVBZkxqbnNUWUY3M2E1ZWtvY2VyQ3JZay8xVnNSaVJyd0N4aGFhYTQ5a20wZnlHZ1dkRXZaKzNlVHNsOUdaWG00S2s4VGFXbWU4Q3hrbU05cmRyRmYzV1Y3dWJRTzZEVFBvck5YRm5JbXlEYXRoczl4NCtLNXNxeWQ1bUxHMjZkYWZ5WXpnOXNvQ3V1TWNRMmx4R1o0WFp1Y0c4RzYvMTJrQU15U2kxN3ZIVlp0MU9MVEZsQWZIei9wVDlpOW9WVHhnM0E9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=fNyP2duitQzTAIXMhEZQptaUZkdRFMF9obUAcN5CruMhzXEnziBB73bkT2TM70LywwfmuEvjfjQQssmfTgBAa8c2iyylfxDl9VpjQgMMrBRQQcuqxwtGzllLLYMcQWRZJx4ub4ijKkGefxiPNb2wMOfpAGPwbBVUu/HMeiJYltw=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1713898802; v=1; bh=K94Vr+ssv9gcJX0A76jSbxvhS4v6i281MjQthFGX4JQ=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.191.219 +Received: from nyebdb.nyeb.gtwy.dcn ([156.119.191.219]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 23 Apr 2024 15:00:00 -0400 +Received: from nyebdb.nyeb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by nyebdb.nyeb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 43NIxGNZ095084; + Tue, 23 Apr 2024 14:59:16 -0400 +Received: (from ecf_web@localhost) + by nyebdb.nyeb.gtwy.dcn (8.14.7/8.14.4/Submit) id 43NIwwuF093495; + Tue, 23 Apr 2024 14:58:58 -0400 +Date: Tue, 23 Apr 2024 14:58:58 -0400 +MIME-Version:1.0 +From:BKECF_LiveDB@nyeb.uscourts.gov +To:noreply@ao.uscourts.gov +Message-Id:<26486878@nyeb.uscourts.gov> +Subject:1-23-01071-nhl Hearing Settled/Withdrawn/Marked Off Without Hearing (Case Owned BK) +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Eastern District of New York

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from agh entered on 04/23/2024 at 2:58 PM EDT and filed on 04/23/2024 + +
    + + + + + + + + + +
    Case Name: +L. v. Rivera
    Case Number:1-23-01071-nhl
    Document Number: + +
    + + + + +

    Docket Text: + +
    +Marked Off; Entered correctly in the main case. (related document(s): [15] Motion for Relief From Stay filed by Rutledge Apartments LLC) (FirstName LastName) +

    + +

    The following document(s) are associated with this transaction:

    + + +
    +
    + + + + +
    +1-23-01071-nhl Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Creditor Rutledge Apartments LLC +
    xx@HWRPC.com +
    +
    FirstName LastName on behalf of Plaintiff K. L. +
    xx@domain.com, user@recap.email +
    + +
    + +1-23-01071-nhl Notice will not be electronically mailed to: + + +
    + +
    FirstName LastName +
    88-11 Address Blvd, Apt. 22 +
    Town, NY 11111 +
    + +
    + + + + +
    +
    diff --git a/tests/examples/pacer/nef/s3/nyeb_2.json b/tests/examples/pacer/nef/s3/nyeb_2.json new file mode 100644 index 000000000..26faa7f6c --- /dev/null +++ b/tests/examples/pacer/nef/s3/nyeb_2.json @@ -0,0 +1,39 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "nyeb", + "dockets": [ + { + "case_name": "Joel Rivera and Rutledge Apartments LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-04-23", + "description": "Amended Motion for Relief from Stay Fee Amount $199. Filed by FirstName LastName on behalf of Rutledge Apartments LLC. Hearing scheduled for 5/15/2024 at 10:00 AM (check with court for location). (Attachments: (1) amended motion Randi Gilbet (2) declaration (3) Exhibit A (4) Exhibit B (5) Exhibit C (6) Exhibit D) (FirstName LastName)", + "document_number": "18", + "document_url": "https://ecf.nyeb.uscourts.gov/doc1/122029188017?pdf_header=&magic_num=25017521&de_seq_num=65&caseid=508217", + "pacer_case_id": "508217", + "pacer_doc_id": "122029188017", + "pacer_magic_num": "25017521", + "pacer_seq_no": "65", + "short_description": "Motion for Relief From Stay" + } + ], + "docket_number": "1-23-42603", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "nhl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "xx@domain.com", + "user@recap.email" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/nyeb_2.txt b/tests/examples/pacer/nef/s3/nyeb_2.txt new file mode 100644 index 000000000..da4cf316b --- /dev/null +++ b/tests/examples/pacer/nef/s3/nyeb_2.txt @@ -0,0 +1,142 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id ukp6udd6stkf21qq0ol0lugfkl2fet7jb6egsc01 + for user@recap.email; + Tue, 23 Apr 2024 18:51:46 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of nyeb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@nyeb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of nyeb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@nyeb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=nyeb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFZGVYdk9WQmQ1YTJQUjk5WndDd2lteFBCUjFNVWtuWnR4eTdmTXBkRmdqUDBPY0xXMWJZbysrTDcxd3JtQXl4TmVMT2liMTdxeWE2a1NvbkwvV2lIblpCWHo2TjF3SExONUZpZC9nVC8rTGJEczdVMjRNVGhuREVQcUdsdkJSc2FkZjhYdEdNWmJDTTUwUVpwZG4xMG9PYmJGK3hwcHlFUU4rRVVqVW42MnVWUkdkbzRGUU5xdTJoQ0pKT1Npd05FRGsyOFAveU96d3dPMXNBTS80SE1NZVBKMUwzNUlBQWh6cVJUdnZOYWhIaUwrTGp2WVlNRTVMM0ZIY2NGUmg3bjlaYXVZcXRaMkNFUGxwbm9pb3JUWkN4aDI0WG9OMStKbHNCWTdwelNtN29xRHplY0k5VWVIQlJ5YVZ1Q0hVS2s9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=mFTfRPscyYCI3G6uDn5/UXrVNQ6N2U4vMItLB4ulc7VN7q7XrbeeU2sg45UYfckRT4M2oC9u9G2uSZxDJsJAu3pkvN49b/81Seqln9IlVxfhztqDLSwzd/p9RdIg7UDy1gj8R1664MgeEvSO3BydOY2dPpRYKYHLlefYqkfOWYU=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1713898306; v=1; bh=SrDvHJXfKWBqdzz3XwD/cHo7/YtEBygFgs7VDOYudh8=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.191.219 +Received: from nyebdb.nyeb.gtwy.dcn ([156.119.191.219]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 23 Apr 2024 14:51:45 -0400 +Received: from nyebdb.nyeb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by nyebdb.nyeb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 43NIp1Gf070496; + Tue, 23 Apr 2024 14:51:01 -0400 +Received: (from ecf_web@localhost) + by nyebdb.nyeb.gtwy.dcn (8.14.7/8.14.4/Submit) id 43NIos25069599; + Tue, 23 Apr 2024 14:50:54 -0400 +Date: Tue, 23 Apr 2024 14:50:54 -0400 +MIME-Version:1.0 +From:BKECF_LiveDB@nyeb.uscourts.gov +To:noreply@ao.uscourts.gov +Message-Id:<26486814@nyeb.uscourts.gov> +Subject:1-23-42603-nhl Motion for Relief From Stay +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Eastern District of New York

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from Randi Beth Gilbert entered on 4/23/2024 at 2:50 PM EDT and filed on 4/23/2024 + +
    + + + + + + + + + +
    Case Name: +Joel Rivera and Rutledge Apartments LLC
    Case Number:1-23-42603-nhl
    Document Number: +18 +
    + + + + +

    Docket Text: + +
    +Amended Motion for Relief from Stay Fee Amount $199. Filed by FirstName LastName on behalf of Rutledge Apartments LLC. Hearing scheduled for 5/15/2024 at 10:00 AM (check with court for location). (Attachments: # (1) amended motion Randi Gilbet # (2) declaration # (3) Exhibit A # (4) Exhibit B # (5) Exhibit C # (6) Exhibit D) (FirstName LastName) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:nomamended riv.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=979333796 [Date=4/23/2024] [FileNumber=26486812-0 +
    ] [81eb87c74442c60c36bdc355f44f8b86c61df34ad680a3801f0045111408ef61444 +
    78f530d637a021c8e3eb2b7eb44f2fa366d772402541708da4cc7ae5caa31]] +
    +Document description: amended motion FirstName LastName +
    Original filename:C:\fakepath\amend RG Rivera.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=979333796 [Date=4/23/2024] [FileNumber=26486812-1 +
    ] [3f1049408dc7fc850808aa173cbec22df7ab88c0224401b4d3ca970552d42e8cd58 +
    48668acbda74d1ba471f2016322c9df95ee4912d842e42d3296b9adfdc064]] +
    +Document description: declaration +
    Original filename:C:\fakepath\Declaration in Supportriv.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=979333796 [Date=4/23/2024] [FileNumber=26486812-2 +
    ] [178852c481ca8c18809e0699c01d4cb923095ad44d9a0786d7ca6c021628509e246 +
    551039b2598d9f8d91a169638a8ba28a11edcbeb31fee8b1594d02902ebbd]] +
    +Document description:Exhibit A +
    Original filename:C:\fakepath\Exhibit A - Leaseriv.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=979333796 [Date=4/23/2024] [FileNumber=26486812-3 +
    ] [8d9545fbc191f4a5d6757037e4a9cdb22e75dd568004b46410507ca05b93fc2561c +
    6ddfd3f19ad4fcf0b941086296b56e459bb2b68526ce8c9f22e1c2d72d13e]] +
    +Document description:Exhibit B +
    Original filename:C:\fakepath\Exhibit B - Petitionriv.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=979333796 [Date=4/23/2024] [FileNumber=26486812-4 +
    ] [097940fdd977c5bfbfdabe42babf69be727c769bd5a22accdb893d300150d4fc010 +
    d9b22584274d37d7398bea75a8ba00459eb2f6590db696ccbe47856d477db]] +
    +Document description:Exhibit C +
    Original filename:C:\fakepath\Exhibit C - Rent Breakdownriv.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=979333796 [Date=4/23/2024] [FileNumber=26486812-5 +
    ] [2ee9cfcaa84b80aabd62ea79cab8a12482cbfe39bebea958cb822b51f11cb473c1e +
    7f80e92ab4a890133ed0c215405ca57f7c5bf5824d0d669f5328ada6238f3]] +
    +Document description:Exhibit D +
    Original filename:C:\fakepath\Exhibit D - Order proposed.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=979333796 [Date=4/23/2024] [FileNumber=26486812-6 +
    ] [128c49daa79403286f3f78446658808b105123b66f6a7dfa0f0c7ef7f6733648fd1 +
    3485c60d6123761857eea54ae97d0be1c179eabe7f3aa698711e7fec9233e]] +
    + +
    +
    + + + + +
    +1-23-42603-nhl Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Plaintiff K. L. +
    xx@domain.com, user@recap.email +
    diff --git a/tests/examples/pacer/nef/s3/nyed_1.json b/tests/examples/pacer/nef/s3/nyed_1.json index 920631d84..ae560789e 100644 --- a/tests/examples/pacer/nef/s3/nyed_1.json +++ b/tests/examples/pacer/nef/s3/nyed_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Cunningham v. The City of New York", - "date_filed": "2022-08-01", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-01", @@ -19,7 +19,12 @@ "short_description": "Case Management Statement" } ], - "docket_number": "1:22-cv-00588" + "docket_number": "1:22-cv-00588", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LDH", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/nyed_2.json b/tests/examples/pacer/nef/s3/nyed_2.json index 308e16979..52ad6d2d8 100644 --- a/tests/examples/pacer/nef/s3/nyed_2.json +++ b/tests/examples/pacer/nef/s3/nyed_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Acosta v. City of New York", - "date_filed": "2022-08-05", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-05", @@ -19,7 +19,12 @@ "short_description": "Letter" } ], - "docket_number": "1:22-cv-00576" + "docket_number": "1:22-cv-00576", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FB", + "federal_dn_judge_initials_referred": "RER", + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/nysb_1.json b/tests/examples/pacer/nef/s3/nysb_1.json index 9b3c43da0..f5d3315af 100644 --- a/tests/examples/pacer/nef/s3/nysb_1.json +++ b/tests/examples/pacer/nef/s3/nysb_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Gerasimos Stefanitsis", - "date_filed": "2022-12-21", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-12-21", @@ -19,7 +19,12 @@ "short_description": "Affidavit" } ], - "docket_number": "22-22507" + "docket_number": "22-22507", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/nysb_2.json b/tests/examples/pacer/nef/s3/nysb_2.json index 3a7839d91..2e9ca2947 100644 --- a/tests/examples/pacer/nef/s3/nysb_2.json +++ b/tests/examples/pacer/nef/s3/nysb_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Gerasimos Stefanitsis", - "date_filed": "2023-02-27", + "date_filed": null, "docket_entries": [ { "date_filed": "2023-02-27", @@ -19,7 +19,12 @@ "short_description": "Affidavit" } ], - "docket_number": "22-22507" + "docket_number": "22-22507", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/nysb_3.json b/tests/examples/pacer/nef/s3/nysb_3.json index 33887e4f8..108ea959d 100644 --- a/tests/examples/pacer/nef/s3/nysb_3.json +++ b/tests/examples/pacer/nef/s3/nysb_3.json @@ -5,11 +5,11 @@ "dockets": [ { "case_name": "Gerasimos Stefanitsis", - "date_filed": "2022-12-07", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-12-07", - "description": "Notice of Adjournment of Hearing re: Motion to Dismiss Case application and certificate of service filed by Krista M. Preuss on behalf of Krista M. Preuss (related document(s)[41]) Motion to Dismiss granted, submit order. Further hearing on 2016(b) Statement to be held 2/22/2023 at 09:00 AM at Videoconference (ZoomGov) (CGM) (DuBois, Linda).", + "description": "Notice of Adjournment of Hearing re: Motion to Dismiss Case application and certificate of service filed by Krista M. Preuss on behalf of Krista M. Preuss (related document(s)[41]); Motion to Dismiss granted, submit order. Further hearing on 2016(b) Statement to be held 2/22/2023 at 09:00 AM at Videoconference (ZoomGov) (CGM) (DuBois, Linda).", "document_number": "48", "document_url": null, "pacer_case_id": "313115", @@ -19,7 +19,12 @@ "short_description": "Notice of Adjournment of Hearing" } ], - "docket_number": "22-22507" + "docket_number": "22-22507", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/nysd_1.json b/tests/examples/pacer/nef/s3/nysd_1.json index 2e61d9fdc..bfee07b58 100644 --- a/tests/examples/pacer/nef/s3/nysd_1.json +++ b/tests/examples/pacer/nef/s3/nysd_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "IN RE: NEW YORK CITY POLICING DURING SUMMER 2020 DEMONSTRATIONS", - "date_filed": "2022-08-04", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-04", @@ -19,7 +19,12 @@ "short_description": "Motion for Extension of Time to Complete Discovery" } ], - "docket_number": "1:20-cv-08924" + "docket_number": "1:20-cv-08924", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/nysd_2.json b/tests/examples/pacer/nef/s3/nysd_2.json index 9f10db494..0fb4f71ce 100644 --- a/tests/examples/pacer/nef/s3/nysd_2.json +++ b/tests/examples/pacer/nef/s3/nysd_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "IN RE: NEW YORK CITY POLICING DURING SUMMER 2020 DEMONSTRATIONS", - "date_filed": "2022-08-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-08", @@ -19,7 +19,12 @@ "short_description": "Letter" } ], - "docket_number": "1:20-cv-08924" + "docket_number": "1:20-cv-08924", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/nysd_3.json b/tests/examples/pacer/nef/s3/nysd_3.json index ec3002e98..b4202a2d4 100644 --- a/tests/examples/pacer/nef/s3/nysd_3.json +++ b/tests/examples/pacer/nef/s3/nysd_3.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "IN RE: NEW YORK CITY POLICING DURING SUMMER 2020 DEMONSTRATIONS", - "date_filed": "2022-09-29", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-09-29", @@ -19,11 +19,16 @@ "short_description": "Motion for Extension of Time" } ], - "docket_number": "1:20-cv-08924" + "docket_number": "1:20-cv-08924", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" }, { "case_name": "Wood v. De Blasio", - "date_filed": "2022-09-29", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-09-29", @@ -37,11 +42,16 @@ "short_description": "Motion for Extension of Time" } ], - "docket_number": "1:20-cv-10541" + "docket_number": "1:20-cv-10541", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" }, { "case_name": "People of the State of New York v. City Of New York", - "date_filed": "2022-09-29", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-09-29", @@ -55,11 +65,16 @@ "short_description": "Motion for Extension of Time" } ], - "docket_number": "1:21-cv-00322" + "docket_number": "1:21-cv-00322", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" }, { "case_name": "Sierra v. City of New York", - "date_filed": "2022-09-29", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-09-29", @@ -73,11 +88,16 @@ "short_description": "Motion for Extension of Time" } ], - "docket_number": "1:20-cv-10291" + "docket_number": "1:20-cv-10291", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" }, { "case_name": "Gray v. City of New York", - "date_filed": "2022-09-29", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-09-29", @@ -91,7 +111,12 @@ "short_description": "Motion for Extension of Time" } ], - "docket_number": "1:21-cv-06610" + "docket_number": "1:21-cv-06610", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/nysd_4.json b/tests/examples/pacer/nef/s3/nysd_4.json index 14b679685..50d44711b 100644 --- a/tests/examples/pacer/nef/s3/nysd_4.json +++ b/tests/examples/pacer/nef/s3/nysd_4.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "IN RE: NEW YORK CITY POLICING DURING SUMMER 2020 DEMONSTRATIONS", - "date_filed": "2022-09-12", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-09-12", @@ -19,11 +19,16 @@ "short_description": "Mediation Conference Scheduled/Re-Scheduled" } ], - "docket_number": "1:20-cv-08924" + "docket_number": "1:20-cv-08924", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" }, { "case_name": "Wood v. De Blasio", - "date_filed": "2022-09-12", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-09-12", @@ -37,7 +42,12 @@ "short_description": "Mediation Conference Scheduled/Re-Scheduled" } ], - "docket_number": "1:20-cv-10541" + "docket_number": "1:20-cv-10541", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/nysd_5.json b/tests/examples/pacer/nef/s3/nysd_5.json index 47de50fd7..3bbac7173 100644 --- a/tests/examples/pacer/nef/s3/nysd_5.json +++ b/tests/examples/pacer/nef/s3/nysd_5.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "IN RE: NEW YORK CITY POLICING DURING SUMMER 2020 DEMONSTRATIONS", - "date_filed": "2022-10-18", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-10-18", @@ -19,11 +19,16 @@ "short_description": "Mediation Conference" } ], - "docket_number": "1:20-cv-08924" + "docket_number": "1:20-cv-08924", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" }, { "case_name": "Wood v. De Blasio", - "date_filed": "2022-10-18", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-10-18", @@ -37,7 +42,12 @@ "short_description": "Mediation Conference" } ], - "docket_number": "1:20-cv-10541" + "docket_number": "1:20-cv-10541", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/ohnd_1.json b/tests/examples/pacer/nef/s3/ohnd_1.json index 510dcea13..fd0a54125 100644 --- a/tests/examples/pacer/nef/s3/ohnd_1.json +++ b/tests/examples/pacer/nef/s3/ohnd_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "In Re: Sonic Corp. Customer Data Security Breach", - "date_filed": "2022-08-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-08", @@ -19,7 +19,12 @@ "short_description": "Motion for attorney fees" } ], - "docket_number": "1:17-md-02807" + "docket_number": "1:17-md-02807", + "federal_defendant_number": null, + "federal_dn_case_type": "md", + "federal_dn_judge_initials_assigned": "JSG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/ohsd_2.json b/tests/examples/pacer/nef/s3/ohsd_2.json index a7cf0dd6b..1ad7c4990 100644 --- a/tests/examples/pacer/nef/s3/ohsd_2.json +++ b/tests/examples/pacer/nef/s3/ohsd_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Roe v. University Of Cincinnati", - "date_filed": "2022-08-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-08", @@ -19,7 +19,12 @@ "short_description": "Motion for Extension of Time to File Response/Reply" } ], - "docket_number": "1:22-cv-00376" + "docket_number": "1:22-cv-00376", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MWM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/okeb_1.json b/tests/examples/pacer/nef/s3/okeb_1.json new file mode 100644 index 000000000..9ffe6753c --- /dev/null +++ b/tests/examples/pacer/nef/s3/okeb_1.json @@ -0,0 +1,42 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "okeb", + "dockets": [ + { + "case_name": "C M Heavy Machinery, LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-08-08", + "description": "Notice of Motion and Hearing All Parties entitled to receive notice were served by the CM/ECF system. Filed by FirstName LastName on behalf of C M Heavy Machinery, LLC (RE: [3] Generic Motion filed by Debtor C M Heavy Machinery, LLC). Objections due by 8/22/2024. Hearing scheduled 9/11/2024 at 10:00 AM at Ed Edmondson Courthouse 101 N 5th Muskogee Crtrm 4. (LastName, FirstName)", + "document_number": "11", + "document_url": "https://ecf.okeb.uscourts.gov/doc1/14404575986?pdf_header=&magic_num=44432589&de_seq_num=37&caseid=89920", + "pacer_case_id": "89920", + "pacer_doc_id": "14404575986", + "pacer_magic_num": "44432589", + "pacer_seq_no": "37", + "short_description": "420A Form - Notice of Motion/Hearing Set" + } + ], + "docket_number": "24-80617", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "user2@firm.com", + "user@firm.com", + "user@domain.com", + "user@recap.email", + "karen.walsh@usdoj.gov" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/okeb_1.txt b/tests/examples/pacer/nef/s3/okeb_1.txt new file mode 100644 index 000000000..a2d359b6f --- /dev/null +++ b/tests/examples/pacer/nef/s3/okeb_1.txt @@ -0,0 +1,111 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id 6dfttdd0hl6s7d5kktrrtjiok91usl826l1d3ro1 + for user@recap.email; + Fri, 09 Aug 2024 00:48:54 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of okeb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=CMECF_help@okeb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of okeb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=CMECF_help@okeb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=okeb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFRlFkLy9NRm9mRG1iT0h0MXV1UjVNVXBDUUkvenR2ZDNvWkV1WHdDRmRXTE1CT2NmSktFSm4xbEhYVHVqRDJpbWVraUJadVFqeHZNZXFtUi9RdzZxRGZIVkYwY2xseEppZXp4T0M0c2huNTIrbkZUQlFqVWQzbmNXZDcyWmJ1enpBZnJWYWk1QmZsb1hIRC9hcVZZVWdsbnZ1Nms2NHc3akxvRXU1aG1RRk9iV3RDQnExM09nRkZUZm4vd3N1eWFxL2MwcmpzNHN0dlpwdzhHeCtXOXd5OUs0aWhKY1N5M2p4cFNxdUgyNzZUODVvdTlUeVorN2R0bkJkRGt5bEJPMkJxR3B4eTZhMUxPRjFxekxCbjI2MmtoTlYycnMwY2E3ZnltWmdhb0lKMkE9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=G7X0YmaUnZ0OSfEpaMmvipaXBOVY3uQ6BbzMUnGIObk4Z3gnmG61LBrJXY5cZZ6Kwn2x+n8oG7UQBWjt620TpfcVu/ldXguWTwNVZmTAcqoTgKpEBEVt4qWB3x4dORHrmGALcwuymjfgjOjZDeYCXlyZ6CqEXUQ5elYQqA5bqvg=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1723164535; v=1; bh=FvbVUY+qQp/objivN4zH141CjE57LKzrm3LmMnwA8no=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.56.93 +Received: from okebdb.okeb.gtwy.dcn ([156.119.56.93]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 08 Aug 2024 20:48:53 -0400 +Received: from okebdb.okeb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by okebdb.okeb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4790m5KK026168; + Thu, 8 Aug 2024 19:48:06 -0500 +Received: (from ecf_web@localhost) + by okebdb.okeb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4790lZ3G025931; + Thu, 8 Aug 2024 19:47:35 -0500 +Date: Thu, 8 Aug 2024 19:47:35 -0500 +MIME-Version:1.0 +From:CMECF_help@okeb.uscourts.gov +To:Courtmail@okeb.uscourts.gov +Message-Id:<4656734@okeb.uscourts.gov> +Subject:24-80617 420A Form - Notice of Motion/Hearing Set +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Eastern District of Oklahoma

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from FirstName LastName entered on 8/8/2024 at 7:47 PM CDT and filed on 8/8/2024 + +
    + + + + + + + + + +
    Case Name: +C M Heavy Machinery, LLC
    Chapter:11
    Case Number:24-80617
    Document Number: +11 +
    + + + + +

    Docket Text: + +
    + Notice of Motion and Hearing All Parties entitled to receive notice were served by the CM/ECF system. Filed by FirstName LastName on behalf of C M Heavy Machinery, LLC (RE: [3] Generic Motion filed by Debtor C M Heavy Machinery, LLC). Objections due by 8/22/2024. Hearing scheduled 9/11/2024 at 10:00 AM at Ed Edmondson Courthouse 101 N 5th Muskogee Crtrm 4. (LastName, FirstName) +

    + +

    The following document(s) are associated with this transaction:

    + + +
    +
    + + + + +
    +24-80617 Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Creditor Great Plains National Bank +
    user2@firm.com, user@firm.com +
    +
    FirstName LastName on behalf of Debtor C M Heavy Machinery, LLC +
    user@domain.com, user@recap.email +
    +
    Karen Carden Walsh on behalf of U.S. Trustee Office of the United States Trustee +
    karen.walsh@usdoj.gov +
    + +
    + +24-80617 Notice will not be electronically mailed to: + + +
    + +
    No Trustee +
    , +
    + +
    + + + + +
    +
    diff --git a/tests/examples/pacer/nef/s3/okeb_2.json b/tests/examples/pacer/nef/s3/okeb_2.json new file mode 100644 index 000000000..a9d3a19d2 --- /dev/null +++ b/tests/examples/pacer/nef/s3/okeb_2.json @@ -0,0 +1,42 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "okeb", + "dockets": [ + { + "case_name": "C M Heavy Machinery, LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-08-08", + "description": "Notice of Appearance and Request for Notice Filed by FirstName MiddleName LastName on behalf of Great Plains National Bank. (LastName, FirstName)", + "document_number": "10", + "document_url": "https://ecf.okeb.uscourts.gov/doc1/14404575983?pdf_header=&magic_num=57995228&de_seq_num=34&caseid=89920", + "pacer_case_id": "89920", + "pacer_doc_id": "14404575983", + "pacer_magic_num": "57995228", + "pacer_seq_no": "34", + "short_description": "Notice of Appearance by Attorney" + } + ], + "docket_number": "24-80617", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "user2@firm.com", + "user@firm.com", + "name@company.com", + "user@recap.email", + "karen.walsh@usdoj.gov" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/okeb_2.txt b/tests/examples/pacer/nef/s3/okeb_2.txt new file mode 100644 index 000000000..393472cd0 --- /dev/null +++ b/tests/examples/pacer/nef/s3/okeb_2.txt @@ -0,0 +1,119 @@ +Return-Path: +Received: from icmecf201.gtwy.uscourts.gov (icmecf201.gtwy.uscourts.gov [63.241.40.204]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id pcl89af36uqccleiqo4p8n529img1ev3runjo0g1 + for user@recap.email; + Fri, 09 Aug 2024 00:39:06 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of okeb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=CMECF_help@okeb.uscourts.gov; helo=icmecf201.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of okeb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=CMECF_help@okeb.uscourts.gov; helo=icmecf201.gtwy.uscourts.gov; + dmarc=none header.from=okeb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFL2Y5NDZvVGtLV0tFbGE5ZUFZaVd6UkNZSnNKbnkwRHRoVGgrQ283S1VWU3IrbVhud2JtT0NoN3FDODdjOVJxdlpKNDErRUVmMVIwZjNYUnRzNkJIMUI5L0RLVDJlQ1NZT2dMQ1c1U2dFZjdWcnlKOUQ4bnExNmtSUmtPU1MrZHJtOGREM0c3S2p3SXl1cXNIazlVOEVmbE84d0xDMll3SDFlUlpyRjFwdHM0U0dwT09BV2Frd20rN2gyUUsrQVA1OG94RFR6V1h0YWJYUEVUbjlmSTIvUXFaeExHZVo0dXZhSzVacUNXclN6bjBRdGFubzE3YkRrcG1uS0xEcXRjU0xlbGpudUIvRXV2alphWWlRVUFBRXZRMWk1aHBod2dLNHlxZXZveDZXTXc9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=jKstKPwBZS7VVbH808Y8Ly5iARAoIZyCcAyCVP4WBKxHR/NqSrtMi+yW2kze9arBtUDwMONEJ0JCzfW/98d4BHSyKVklR93iFxu3RUatO7S+I090ngFtNG1x83immmfv1VOGPgLeRsRVwfu1qKxJbrgPfqX9Y9GEB3qlXug2JoU=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1723163946; v=1; bh=ampORXDSwAeLbRwCo/otGL7fApRGdZn4KcNrWHjuiBM=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.56.93 +Received: from okebdb.okeb.gtwy.dcn ([156.119.56.93]) + by icmecf201.gtwy.uscourts.gov with ESMTP; 08 Aug 2024 20:39:05 -0400 +Received: from okebdb.okeb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by okebdb.okeb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4790cKxV013301; + Thu, 8 Aug 2024 19:38:21 -0500 +Received: (from ecf_web@localhost) + by okebdb.okeb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4790baxZ012866; + Thu, 8 Aug 2024 19:37:36 -0500 +Date: Thu, 8 Aug 2024 19:37:36 -0500 +MIME-Version:1.0 +From:CMECF_help@okeb.uscourts.gov +To:Courtmail@okeb.uscourts.gov +Message-Id:<4656731@okeb.uscourts.gov> +Subject:24-80617 Notice of Appearance by Attorney +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Eastern District of Oklahoma

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from FirstName MiddleName LastName entered on 8/8/2024 at 7:37 PM CDT and filed on 8/8/2024 + +
    + + + + + + + + + +
    Case Name: +C M Heavy Machinery, LLC
    Chapter:11
    Case Number:24-80617
    Document Number: +10 +
    + + + + +

    Docket Text: + +
    + Notice of Appearance and Request for Notice Filed by FirstName MiddleName LastName on behalf of Great Plains National Bank. (LastName, FirstName) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:Great Plains_C M_ Entry of Appearance - Carsey.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=1022787214 [Date=8/8/2024] [FileNumber=4656729-0] +
    [68e09b9025b24c0e9280b3cef067fda7368553f7821566a83fdf16eefb936c8164d3 +
    d619be87d2eafc32c2cb8b42083112562d48e289fe4d53eceee26ea60c8e]] +
    + +
    +
    + + + + +
    +24-80617 Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Creditor Great Plains National Bank +
    user2@firm.com, user@firm.com +
    +
    FirstName LastName on behalf of Debtor C M Heavy Machinery, LLC +
    name@company.com, user@recap.email +
    +
    Karen Carden Walsh on behalf of U.S. Trustee Office of the United States Trustee +
    karen.walsh@usdoj.gov +
    + +
    + +24-80617 Notice will not be electronically mailed to: + + +
    + +
    No Trustee +
    , +
    + +
    + + + + +
    +
    diff --git a/tests/examples/pacer/nef/s3/oknd_1.json b/tests/examples/pacer/nef/s3/oknd_1.json index d9dbcc512..05cdf858c 100644 --- a/tests/examples/pacer/nef/s3/oknd_1.json +++ b/tests/examples/pacer/nef/s3/oknd_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Wilson v. Filtrex Service Group Inc", - "date_filed": "2021-08-09", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-08-09", @@ -19,7 +19,12 @@ "short_description": "Joint Status Report per LCvR16-1(b)(1)" } ], - "docket_number": "4:18-cv-00499" + "docket_number": "4:18-cv-00499", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JED", + "federal_dn_judge_initials_referred": "CDL", + "federal_dn_office_code": "4" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/paeb_1.json b/tests/examples/pacer/nef/s3/paeb_1.json new file mode 100644 index 000000000..12f4b1fdb --- /dev/null +++ b/tests/examples/pacer/nef/s3/paeb_1.json @@ -0,0 +1,42 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "paeb", + "dockets": [ + { + "case_name": "Br Cun", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-01-31", + "description": "BNC Certificate of Mailing - Financial Management Course Certificate. Number of Notices Mailed: (related document(s) (Related Doc [13])). No. of Notices: 1. Notice Date 01/31/2024. (Admin.)", + "document_number": "15", + "document_url": "https://ecf.paeb.uscourts.gov/doc1/152032522337?pdf_header=&magic_num=26909320&de_seq_num=47&caseid=510078", + "pacer_case_id": "510078", + "pacer_doc_id": "152032522337", + "pacer_magic_num": "26909320", + "pacer_seq_no": "47", + "short_description": "BNC Certificate of Mailing - Financial Management Course Certificate" + } + ], + "docket_number": "23-13129", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "amc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "example@domain.com", + "example@domain.com;c@recap.email;example@domain.com;example@domain.com;example@domain.com", + "example@domain.com", + "example@domain.com", + "USTPRegion03.PH.ECF@usdoj.gov" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/paeb_1.txt b/tests/examples/pacer/nef/s3/paeb_1.txt new file mode 100644 index 000000000..5a8ef80e4 --- /dev/null +++ b/tests/examples/pacer/nef/s3/paeb_1.txt @@ -0,0 +1,116 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id gr7j927cksekb3r57t82qqn7n9duk1n7767ho8g1 + for c@recap.email; + Thu, 01 Feb 2024 05:36:06 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of paeb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@paeb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of paeb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@paeb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=paeb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFUVVUWEU0ZTk2K2hpL3F0RXBuNGlPSW5SUGdKRmdHZlNQMmJPeTVmaWZjVVdKWTlDTXBRRENCc29qczhvckV1NXpsVU9qNlpnMWlaV0pybDJBYk1nT3U1RllBS3I2Sk92T1NqYzM2OTZhNThzY2tLa2plM0YrZlNUT2ZJVmFDQi9aU1VoUnhSQTFoTVJqcFpPbWJHSjl0WEY1YUdzcUlVU1dxYXZpa2VrZXhyT0ljSjFEdjg2RjFPeUxUbHFSUGpZdlRBRnVnbGpPVkxYV0ZEelE1R1JuQXBDQ2Q5NXZMcVE0Z0RzZEE3WVdUTUh5ZFlVYUNsOTEzOWNNM3RwTUtOa2V3ejEvZGNDRkp1cFVSSTRBaTFmMU4zUENzSkdmckJjRTlKUCtxUmg0Y0RWbm5iOWM3WERCdjBndG16WG1sbHc9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=qCWaR494cPqH6G7VWrbwbjCnWeFEUog6BmGIS3VWy6lGUaFen2UO3xmubql28IQfKNpVk+e7d6VKuHTPSVnN77+jx8N3l4K2Xf9a4RtsJgMhHBlQPbxtM7dSxB8oOg9MA4zMEghnzaqeslAeBo3FuWxZucYv1eLmBg4fhVocE2Q=; c=relaxed/simple; s=hsbnp7p3ensaochzwyq5wwmceodymuwv; d=amazonses.com; t=1706765767; v=1; bh=/cgupJQnS9lMXPGcmG71IvLQH9pHc4nrz3/NUCuQ7OE=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.80 +Received: from paebdb.paeb.gtwy.dcn ([156.119.190.80]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 01 Feb 2024 00:36:06 -0500 +Received: from paebdb.paeb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by paebdb.paeb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4115ZDu4021851; + Thu, 1 Feb 2024 00:35:24 -0500 +Received: (from ecf_web@localhost) + by paebdb.paeb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4115YrRU019823; + Thu, 1 Feb 2024 00:34:53 -0500 +Date: Thu, 1 Feb 2024 00:34:53 -0500 +X-Authentication-Warning: paebdb.paeb.gtwy.dcn: ecf_web set sender to BKECF_LiveDB@paeb.uscourts.gov using -f +MIME-Version:1.0 +From:BKECF_LiveDB@paeb.uscourts.gov +To:Courtmail@paeb.uscourts.gov +Message-Id:<31788189@paeb.uscourts.gov> +Subject:Ch-7 23-13129-amc BNC Certificate of Mailing - Financial Management Course Certificate - FirstName LastName +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Eastern District of Pennsylvania

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from Admin entered on 02/01/2024 at 00:34 AM EST and filed on 01/31/2024 + +
    + + + + + + + + + +
    Case Name: +Br Cun
    Case Number:23-13129-amc
    Document Number: +15 +
    + + + + +

    Docket Text: + +
    +BNC Certificate of Mailing - Financial Management Course Certificate. Number of Notices Mailed: (related document(s) (Related Doc [13])). No. of Notices: 1. Notice Date 01/31/2024. (Admin.) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Imaged Certificate of Notice +
    Original filename:P223131292110042.pdf +
    Electronic document Stamp: +
    [STAMP bkecfStamp_ID=1008166204 [Date=2/1/2024] [FileNumber=31788077-0] [a2c0fc1682ead43f8689775d728ce63f2576f2f20aab77085a0c40952e821c6f266d3d3a65357d4a9d7addee8f09035d5bf17001fe3b7da85dbcfa2d95a65e59]] +
    + +
    +
    + + + + +
    +23-13129-amc Notice will be electronically mailed to: + + +
    + +
    MICHAEL A. CIBIK on behalf of Debtor Brittany Cunningham +
    example@domain.com, example@domain.com;c@recap.email;example@domain.com;example@domain.com;example@domain.com +
    +
    CHRISTINE C. SHUBERT +
    example@domain.com, example@domain.com +
    +
    United States Trustee +
    USTPRegion03.PH.ECF@usdoj.gov +
    + +
    + +23-13129-amc Notice will not be electronically mailed to: + + +
    + +
    +
    + +
    + + + + +
    +
    \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/paeb_2.json b/tests/examples/pacer/nef/s3/paeb_2.json new file mode 100644 index 000000000..99716749a --- /dev/null +++ b/tests/examples/pacer/nef/s3/paeb_2.json @@ -0,0 +1,45 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "paeb", + "dockets": [ + { + "case_name": "Alexander Michael Brader-Sims", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-02-01", + "description": "Hearing Continued on Confirmation. Hearing scheduled 03/14/2024 at 10:00 AM at Zoom. For Zoom link, see the current Hearing Calendar for the Judge on the Court website. (Roman, Sara)", + "document_number": "36", + "document_url": null, + "pacer_case_id": "508646", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "CHAP - Hearing Continued" + } + ], + "docket_number": "23-11723", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "pmm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "example@domain.com", + "example@domain.com;c@recap.email;example@domain.com;example@domain.com;example@domain.com", + "example@domain.com", + "example@domain.com", + "example@domain.com", + "example@domain.com", + "example@domain.com", + "example@domain.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/paeb_2.txt b/tests/examples/pacer/nef/s3/paeb_2.txt new file mode 100644 index 000000000..45e0cf2e8 --- /dev/null +++ b/tests/examples/pacer/nef/s3/paeb_2.txt @@ -0,0 +1,118 @@ +Return-Path: +Received: from icmecf102.gtwy.uscourts.gov (icmecf102.gtwy.uscourts.gov [199.107.16.202]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id gp1i24vfmj6jirm7m83kqnrsf6c2jgpkpmt2i5o1 + for c@recap.email; + Thu, 01 Feb 2024 15:15:07 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of paeb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=BKECF_LiveDB@paeb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of paeb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=BKECF_LiveDB@paeb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; + dmarc=none header.from=paeb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFVkNDUEdVMTNTYStZbE1DK3Jrc0U1eVZMT2VSRVVDTDV6SVVlQjhDdDgyN1BTcTV4Z21RMXdITWk5MjZuSkI2bDVwcVdURlFMQ3dGaGZhaXg3YmQ4aWZlTVF3Q1FjQ3psOENhSzBUcDFHTEVXUHROd3BEaUEzTG55c2NsYjRwUjlEUW1KM2FORHAzcjFLNW0yNUswaWJxT0hDSDdwdVpIanRKdjFzOTE0b201Tlgxd2FZMkhLemtKaU56a0YvNFV4U2FhRThLYlExd1VmM1FtNU4wZXN5aWJacldkTjA3K003Smo1L0V6WEtZT0t1Smc1c29yTms3aERiYVhwdE1GaWFlVDRmSVA4TWdNT1k2VGFMOUlxV0hkMDc1Y2drRzJ2aUpxVlllTzJFRG1Gc1UwcktzdU5VUmJiS0lBbTZCdUU9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=hbcJD9rF6sLPIqO8YB1dSEmbhetxTl+RTX82YBtS79ktszWPnWsfNpTNWZE8BSBE6zqhBImudIn//xP/nk+QJj2zLBWFb+c1NY9kd+HYfh/xbfgf6j7P+IGC1MD2d6WjUGs4j6Cta6eraeBPuIgipSBFGlvaY4JSYi8wc4Dsmos=; c=relaxed/simple; s=hsbnp7p3ensaochzwyq5wwmceodymuwv; d=amazonses.com; t=1706800508; v=1; bh=VKaG7T1hC8/0kuo/yDOb+Z/OIOh71910ZoGVZf2jG7s=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.80 +Received: from paebdb.paeb.gtwy.dcn ([156.119.190.80]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 01 Feb 2024 10:15:06 -0500 +Received: from paebdb.paeb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by paebdb.paeb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 411FEE0v117057; + Thu, 1 Feb 2024 10:14:30 -0500 +Received: (from ecf_web@localhost) + by paebdb.paeb.gtwy.dcn (8.14.7/8.14.4/Submit) id 411FDqKk115530; + Thu, 1 Feb 2024 10:13:52 -0500 +Date: Thu, 1 Feb 2024 10:13:52 -0500 +X-Authentication-Warning: paebdb.paeb.gtwy.dcn: ecf_web set sender to BKECF_LiveDB@paeb.uscourts.gov using -f +MIME-Version:1.0 +From:BKECF_LiveDB@paeb.uscourts.gov +To:Courtmail@paeb.uscourts.gov +Message-Id:<31788748@paeb.uscourts.gov> +Subject:Ch-13 23-11723-pmm CHAP - Hearing Continued (Bk Other) - Alexander Michael +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Eastern District of Pennsylvania

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from Roman, Sara entered on 02/01/2024 at 10:13 AM EST and filed on 02/01/2024 + +
    + + + + + + + + + +
    Case Name: +Alexander Michael Brader-Sims
    Case Number:23-11723-pmm
    Document Number: +36 +
    + + + + +

    Docket Text: + +
    +Hearing Continued on Confirmation. Hearing scheduled 03/14/2024 at 10:00 AM at Zoom. For Zoom link, see the current Hearing Calendar for the Judge on the Court website. (Roman, Sara) +

    + +

    The following document(s) are associated with this transaction:

    + + +
    +
    + + + + +
    +23-11723-pmm Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Debtor A M S +
    example@domain.com, example@domain.com;c@recap.email;example@domain.com;example@domain.com;example@domain.com +
    +
    FirstName LastName on behalf of Creditor x Financial Services +
    example@domain.com, example@domain.com +
    +
    FirstName LastName on behalf of Creditor XXXX Financial Services +
    example@domain.com, example@domain.com +
    +
    United States Trustee +
    example@domain.com +
    +
    SCOTT F. WATERMAN [Chapter 13] +
    example@domain.com +
    + +
    + +23-11723-pmm Notice will not be electronically mailed to: + + +
    + +
    Wilmington Savings Fund Society, FSB, d/b/a Ch Trust, not in its individual capacity, but solely as indenture trustee of Citigroup Mortgage Loan Trust 2015-RP2 +
    c/o FirstName LastName, LLC +
    Bankruptcy Department +
    1544 Old Alabama Rd +
    Roswell, GA 30076 +
    + +
    + + + diff --git a/tests/examples/pacer/nef/s3/paeb_3.json b/tests/examples/pacer/nef/s3/paeb_3.json new file mode 100644 index 000000000..7f7ab72d5 --- /dev/null +++ b/tests/examples/pacer/nef/s3/paeb_3.json @@ -0,0 +1,73 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "paeb", + "dockets": [ + { + "case_name": "Tri-State Paper, Inc. v. Foodarama Caterers Inc.", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-02-01", + "description": "Adversary Case 2:23-ap-75 Terminated for Statistical Purposes. (R., LastName)", + "document_number": null, + "document_url": null, + "pacer_case_id": "510318", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "" + } + ], + "docket_number": "23-00075", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "pmm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + }, + { + "case_name": "Tri-State Paper, Inc.", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-02-01", + "description": "Adversary Case 2:23-ap-75 Terminated for Statistical Purposes. (R., LastName)", + "document_number": null, + "document_url": null, + "pacer_case_id": "510187", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "" + } + ], + "docket_number": "23-13237", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "pmm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "example@domain.com", + "example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com", + "example@domain.com", + "example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com" + ], + "name": "" + }, + { + "email_addresses": [ + "example@domain.com", + "example@domain.com", + "example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com", + "USTPRegion03.PH.ECF@usdoj.gov" + ], + "name": "4510A Adams Circle Bensalem, PA 19020" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/paeb_3.txt b/tests/examples/pacer/nef/s3/paeb_3.txt new file mode 100644 index 000000000..009c20465 --- /dev/null +++ b/tests/examples/pacer/nef/s3/paeb_3.txt @@ -0,0 +1,177 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id clofkr5crceoju0ek1t6jh162fp47ah3bmr2a6o1 + for c@recap.email; + Thu, 01 Feb 2024 20:00:46 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of paeb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@paeb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of paeb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@paeb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=paeb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFNzh4QzY2VDFGTllHc3o4MzJpSyswcE9TYlJwVHF1RDZFbmczV1YzdTVLTDZHeHZiVUlIVHI2WXZLd0RjSkJjY2drL3VNYnpLQzlVeFpoRTZSUUVoTmxEMDMzd0JWbllJRFp4Wml4NkZiQzVXdktobFE2RS80VlhrSmVQb2llUVh1bGtVTjVDR2pMVE5JcXl6ZDNmak1ueGNKeGNiSmRrQWRPWWZvdDRaVDJ5bTZ4bjhlUlhPYTBCdHpGdkwxamF0Y0I1bTVWQ3VKaVRmSmxMRXJ2MEhtMFgxcW9jWlM0R3FtL0Q2UDBhRWRHbmMyeGR3ajhPbGJadE9PMWlseERnWTU2QW9rSzdJTHpyRjY2ZXE0SzEyck1wcjBZcDd1TUwyY3lWSWY5Ym4rUTc3d09SSWswNkxTU2s5aXFnYW1FVVk9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=fVGG8ZUQJv0zsk8KeQIXbAewV5oXtxOQdxNeMKyLHuUYVvNI+zGOl0hlHfQjAfw0ue+VI6xuhggrQT+Nu5EfE4GDkGCvrKkdR5gwzIOIeK8+aR9aXl4PVkJLeeJRPM6dKffdAJy0NB3nHfhhSGdU1XuXlEjTm0/ePofnyRP9B0Q=; c=relaxed/simple; s=hsbnp7p3ensaochzwyq5wwmceodymuwv; d=amazonses.com; t=1706817647; v=1; bh=oRdaJ5s9YC1C5Ty8XUuD4CaI4EMuOD2LlxsEcEfY2Uw=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.80 +Received: from paebdb.paeb.gtwy.dcn ([156.119.190.80]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 01 Feb 2024 15:00:45 -0500 +Received: from paebdb.paeb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by paebdb.paeb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 411K0iKA075435; + Thu, 1 Feb 2024 15:00:45 -0500 +Received: (from ecf_web@localhost) + by paebdb.paeb.gtwy.dcn (8.14.7/8.14.4/Submit) id 411K0RBC075196; + Thu, 1 Feb 2024 15:00:27 -0500 +Date: Thu, 1 Feb 2024 15:00:27 -0500 +X-Authentication-Warning: paebdb.paeb.gtwy.dcn: ecf_web set sender to BKECF_LiveDB@paeb.uscourts.gov using -f +MIME-Version:1.0 +From:BKECF_LiveDB@paeb.uscourts.gov +To:Courtmail@paeb.uscourts.gov +Message-Id:<31790064@paeb.uscourts.gov> +Subject:Ch-11 23-13237-pmm Close Adversary Case - Tri-State Paper, I +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Eastern District of Pennsylvania

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from R., Yvette entered on 2/1/2024 at 3:00 PM EST and filed on 2/1/2024 + +
    + + + + + + + + + +
    Case Name: +Tri-State Paper, Inc. v. Foodarama Caterers Inc.
    Case Number:23-00075-pmm
    WARNING: CASE CLOSED on 02/01/2024
    Document Number: + +
    + + + + + + + + + +
    Case Name: +Tri-State Paper, Inc.
    Case Number:23-13237-pmm
    Document Number: + +
    + + + + +

    Docket Text: + +
    +Adversary Case 2:23-ap-75 Terminated for Statistical Purposes. (R., LastName) +

    + +

    The following document(s) are associated with this transaction:

    + + +
    +
    + + + + +
    +23-00075-pmm Notice will be electronically mailed to: + + +
    + +
    FIRSTNAME LASTNAME on behalf of Plaintiff Company, Inc. +
    example@domain.com, example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com +
    +
    FIRSTNAME LASTNAME on behalf of Plaintiff Company, Inc. +
    example@domain.com, example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com +
    + +
    + +23-00075-pmm Notice will not be electronically mailed to: + + +
    + +
    Foodarama Caterers Inc. +
    4510A Adams Circle +
    Bensalem, PA 19020 +
    + +
    + + + + +
    +
    + + + + +
    +23-13237-pmm Notice will be electronically mailed to: + + +
    + +
    DAVE P. ADAMS on behalf of U.S. Trustee United States Trustee +
    example@domain.com +
    +
    MICHAEL I. ASSAD on behalf of Creditor Citizens Bank, N.A., successor by merger to Citizens Bank of Pennsylvania +
    example@domain.com, example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com +
    + +
    United States Trustee +
    USTPRegion03.PH.ECF@usdoj.gov +
    + +
    + +23-13237-pmm Notice will not be electronically mailed to: + + +
    + +
    Law Company, P.C. +
    Deleted +
    Suite 900 +
    Philadelphia, PA 19102 +
    +
    First Name +
    Deleted +
    Philadelphia, PA 19116-3850 +
    +
    Realty Associates, Inc. +
    Deleted +
    Ardmore, PA 19003 +
    +
    Adjustment Company, Inc. +
    c/o FirstNane LastName +
    Deleted +
    Blue Bell, PA 19422 +
    + +
    + + + + +
    +
    \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/pamb_1.json b/tests/examples/pacer/nef/s3/pamb_1.json new file mode 100644 index 000000000..9f8311e4f --- /dev/null +++ b/tests/examples/pacer/nef/s3/pamb_1.json @@ -0,0 +1,41 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "pamb", + "dockets": [ + { + "case_name": "Maria Victoria Diri", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-05-03", + "description": "Motion to Reopen Chapter 7 Case. Filing Fee due in the amount of $260.00. Filed by FirstName LastName of firm, P.C. on behalf of Maria Victoria Diri (RE: related document(s)[64]). (Attachments: (1) Proposed Order (2) Certificate of Service) (FirstName LastName)", + "document_number": "78", + "document_url": "https://ecf.pamb.uscourts.gov/doc1/154018337184?pdf_header=&magic_num=83584343&de_seq_num=341&caseid=270840", + "pacer_case_id": "270840", + "pacer_doc_id": "154018337184", + "pacer_magic_num": "83584343", + "pacer_seq_no": "341", + "short_description": "Motion to Reopen Case" + } + ], + "docket_number": "5:21-bk-00329", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "MJC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5" + } + ], + "email_recipients": [ + { + "email_addresses": [ + "help@lawfirm.com", + "a@lawfirm.com;b@lawfirm.com;c@lawfirm.com;noreply04@lawfirm.com;noreply05@lawfirm.com;lawfirmpc@domain.net;lawfirm@recap.email;ecf@casedriver.com", + "a@b.com", + "c@b.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/pamb_1.txt b/tests/examples/pacer/nef/s3/pamb_1.txt new file mode 100644 index 000000000..0766fa055 --- /dev/null +++ b/tests/examples/pacer/nef/s3/pamb_1.txt @@ -0,0 +1,113 @@ +Return-Path: +Received: from icmecf102.gtwy.uscourts.gov (icmecf102.gtwy.uscourts.gov [199.107.16.202]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id t76hahcikcvql0a6qetq4ha0m18u4kkuvvk7mh81 + for user@recap.email; + Fri, 03 May 2024 15:16:43 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of pamb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=PAMB_LiveDB@pamb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of pamb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=PAMB_LiveDB@pamb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; + dmarc=none header.from=pamb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFRUE1bE5DU3lXbGpaZTY0d0NPck5STm1PL1MrclJtNGxFUm0valhlanZPeGU4VUw3TTBmZVppSHp1cE1JQXhudTA0aHhDSEs5UGNFS0E5TEh0dmhieVBmUWxCQ2wvbzdkMkdRZW5EVEJqUllKbXFmZmxTeVZxMEQ0djJVdXdFTE52a1hGRUJ0ZkRrZ29wK3lnb3hvd2Vsc1BKZFZwenZyMnkrYWI0b1Z5R2JQd3B4dTlISmRnbEhJUmplYnZKNnE4V0pubGczSW9MVjY5NDg1TVo0RXRiem9xOE5pL3lQcnBGVEMrbXNMb0prNkR4dXF5QlhaaWVyU2tBbHd6MDFJa1Rmc2FmQXpkcG9BWnQydXdnV3BoT2pDSVpsb2hZanhPYTg1VGVGWVhpYlE9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=TH0BntyzMqxIIgacH5cnxvF46N7jJ/ExsHwnonIVO7oB2ElMeiDO296AsS8zU+/H6H+pahNdjWb16rr6xsW4QdwJXoi/aWdxs+2WCC80qddYs12hp109DXaWYfhT+9iQjnZ4vHCE3ywkdywbJJAb70YXM/ndCvgd9Tzq6yFGYs4=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1714749404; v=1; bh=Qrkt0OUBDUUrxDuUFv2A4PQ8jdpWQJhuiQ/HPJ2eQ/8=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.181 +Received: from pambdb.pamb.gtwy.dcn ([156.119.190.181]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 03 May 2024 11:16:43 -0400 +Received: from pambdb.pamb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by pambdb.pamb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 443FFvTL094209; + Fri, 3 May 2024 11:15:58 -0400 +Received: (from ecf_web@localhost) + by pambdb.pamb.gtwy.dcn (8.14.7/8.14.4/Submit) id 443FFtbm094077; + Fri, 3 May 2024 11:15:55 -0400 +Date: Fri, 3 May 2024 11:15:55 -0400 +MIME-Version:1.0 +From:PAMB_LiveDB@pamb.uscourts.gov +To:Courtmail@pamb.uscourts.gov +Reply-To: pambecf_helpdesk@pamb.uscourts.gov +Message-Id:<18007556@pamb.uscourts.gov> +Subject:Ch-7 5:21-bk-00329-MJC -Maria Victoria Dir Motion to Reopen Case +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Middle District of Pennsylvania

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from FirstName LastName entered on 5/3/2024 at 11:15 AM EDT and filed on 5/3/2024 + +
    + + + + + + + + + +
    Case Name: +Maria Victoria Diri
    Case Number:5:21-bk-00329-MJC
    WARNING: CASE CLOSED on 10/19/2022
    Document Number: +78 +
    + + + + +

    Docket Text: + +
    + Motion to Reopen Chapter 7 Case. Filing Fee due in the amount of $260.00. Filed by FirstName LastName of firm, P.C. on behalf of Maria Victoria Diri (RE: related document(s)[64]). (Attachments: # (1) Proposed Order # (2) Certificate of Service) (FirstName LastName) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:motion +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=1009835235 [Date=5/3/2024] [FileNumber=18007554-0 +
    ] [3c447d21210e95e1f528e3c7dde4106b82265e1be1815516981a4bc9cf17e5458f1 +
    cc5d141a755e5fd180afa7fea116f64463bcf3668e25a632afd9bf72ae01f]] +
    +Document description:Proposed Order +
    Original filename:C:\fakepath\Order +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=1009835235 [Date=5/3/2024] [FileNumber=18007554-1 +
    ] [c439a1eb44b249359c8bf859c081bc652de2e937249e9f6539a0ae1be6ec196731b +
    7dd199c44169bee33b5dd3119576f59e0db1e97f3392ce6ab2eaf6fdbb671]] +
    +Document description:Certificate of Service +
    Original filename:C:\fakepath\Certificate of Service +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=1009835235 [Date=5/3/2024] [FileNumber=18007554-2 +
    ] [5a53a0e4e0a3a308714ef056933b29ccdc96a86b84353a6933df77cb935efadc497 +
    5717ed443e16e0ca39a1f4aa53c72ce3338658fc8d9046f5eb7213cba9780]] +
    + +
    +
    + + + + +
    +5:21-bk-00329-MJC Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Debtor 1 Maria Victoria Diri +
    help@lawfirm.com, a@lawfirm.com;b@lawfirm.com;c@lawfirm.com;noreply04@lawfirm.com;noreply05@lawfirm.com;lawfirmpc@domain.net;lawfirm@recap.email;ecf@casedriver.com +
    +
    FirstName LastName on behalf of Creditor Andrews Federal Credit Union +
    a@b.com, c@b.com diff --git a/tests/examples/pacer/nef/s3/pamb_2.json b/tests/examples/pacer/nef/s3/pamb_2.json new file mode 100644 index 000000000..ef0f3cefa --- /dev/null +++ b/tests/examples/pacer/nef/s3/pamb_2.json @@ -0,0 +1,39 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "pamb", + "dockets": [ + { + "case_name": "Sandra Sattof and David Sattof", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-05-21", + "description": "Motion for Relief from Automatic Stay (2635 Blytheburn Road Rd, Mountain Top, PA) ([35]) filed by NewRez, LLC dba Shellpoint Mortgage Servicing; Objection by the Debtors ([36]) Jill E. Durkin, Esq. (by remote appearance) Hearing held and continued. The automatic stay shall remain in effect through the conclusion of the continued hearing. IT IS SO ORDERED /s/ Mark J. Conway. Record made. (FirstName LastName)", + "document_number": "38", + "document_url": null, + "pacer_case_id": "276698", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Hearing Continued" + } + ], + "docket_number": "5:23-bk-00774", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "MJC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5" + } + ], + "email_recipients": [ + { + "email_addresses": [ + "help@lawfirm.com", + "noreply01@lawfirm.com;noreply02@lawfirm.com;noreply03@lawfirm.com;noreply04@lawfirm.com;noreply05@lawfirm.com;lawfirmpc@jubileebk.net;lawfirm@recap.email;ecf@casedriver.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/pamb_2.txt b/tests/examples/pacer/nef/s3/pamb_2.txt new file mode 100644 index 000000000..4a326cf14 --- /dev/null +++ b/tests/examples/pacer/nef/s3/pamb_2.txt @@ -0,0 +1,91 @@ +Return-Path: +Received: from icmecf102.gtwy.uscourts.gov (icmecf102.gtwy.uscourts.gov [199.107.16.202]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id j1u9gedfmb05gdmb7aiseuqaci2jc8geaef0qco1 + for lawfirm@recap.email; + Tue, 21 May 2024 16:06:18 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of pamb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=PAMB_LiveDB@pamb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of pamb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=PAMB_LiveDB@pamb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; + dmarc=none header.from=pamb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHT08zZ1hhQ2hLNnhrb0RQdHl6eXBwVlNHT2k5dGFvWitXelRPa0hyQktWSXYzR1dXY3NkUTRFaWtURkxVM05LMVdETmZxbll3ZU8rbDJSV2xXQnRQSWxTM1o3K0ovM0pWclVCWW5QZUgwWHI4YjBYOStJK2lWUWZtdUVnNmV0WG1TV1NpeXV4NUJtZU1ERDFqZVhwNzVvZzJiOWZSNVhTSDVYOUFRZE4xQnJ0VzBONDRKcTBNL3plM1NJRDRiOWtVMkR0dmI5WjU2eEsxc1ozWm9heEZqRHhKNmVESGFBbWJ2VmE0ZWV1cUM0dW05NnJWMFJDTjRwWTVXZ3d3NkF4d09YSFZKZWRkb1F1T3cyYlRzRDg1TVlBcGZmaE9ZM1ZDRTBQYVRLTjBNcUE9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=JshU4xO4U9YUa8IIFhZ8L/OroUtaOiI5f8fmnOu1iWRvS+TsW7YF0A/6rCY86/mPYxYQNy0lT7rwqhY4AIt7ngX/g6NFCMpIW9ZlUMWOtSghoUduM2zzhAhoUM6k9Q/x+z4mAbCuRM9nd6IzjO+2WHP1fyekxrS3ufLaQK3zj8Q=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1716307579; v=1; bh=hhM4QaLvXx8GKTTn/qNK0u++d/gZiPLofEAltR2TN2Y=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.181 +Received: from pambdb.pamb.gtwy.dcn ([156.119.190.181]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 21 May 2024 12:06:17 -0400 +Received: from pambdb.pamb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by pambdb.pamb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 44LG5Twr011524; + Tue, 21 May 2024 12:05:35 -0400 +Received: (from ecf_web@localhost) + by pambdb.pamb.gtwy.dcn (8.14.7/8.14.4/Submit) id 44LG5DOp011164; + Tue, 21 May 2024 12:05:13 -0400 +Date: Tue, 21 May 2024 12:05:13 -0400 +MIME-Version:1.0 +From:PAMB_LiveDB@pamb.uscourts.gov +To:Courtmail@pamb.uscourts.gov +Reply-To: pambecf_helpdesk@pamb.uscourts.gov +Message-Id:<18028722@pamb.uscourts.gov> +Subject:Ch-13 5:23-bk-00774-MJC -Sandra Sattof Hearing Continued +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Middle District of Pennsylvania

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from FirstName LastName entered on 05/21/2024 at 11:54 AM EDT and filed on 05/21/2024 + +
    + + + + + + + + + +
    Case Name: +Sandra Sattof and David Sattof
    Case Number:5:23-bk-00774-MJC
    Document Number: +38 +
    + + + + +

    Docket Text: + +
    +Proceeding Memo for hearing scheduled on: 05/21/2024 +
    MATTER:
    Motion for Relief from Automatic Stay (2635 Blytheburn Road Rd, Mountain Top, PA) (#[35]) filed by NewRez, LLC dba Shellpoint Mortgage Servicing; Objection by the Debtors (#[36]) +
    APPEARANCES: Jill E. Durkin, Esq. (by remote appearance) +
    DISPOSITION: Hearing held and continued. The automatic stay shall remain in effect through the conclusion of the continued hearing. IT IS SO ORDERED /s/ Mark J. Conway. Record made. +
    HEARING Scheduled for 06/04/2024 at 10:00 AM at U.S. Courthouse, 197 S. Main St. Wilkes-Barre, PA. (FirstName LastName) +

    + +

    The following document(s) are associated with this transaction:

    + + +
    +
    + + + + +
    +5:23-bk-00774-MJC Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Debtor 1 Sandra Sattof +
    help@lawfirm.com, noreply01@lawfirm.com;noreply02@lawfirm.com;noreply03@lawfirm.com;noreply04@lawfirm.com;noreply05@lawfirm.com;lawfirmpc@jubileebk.net;lawfirm@recap.email;ecf@casedriver.com +
    diff --git a/tests/examples/pacer/nef/s3/pamb_3.json b/tests/examples/pacer/nef/s3/pamb_3.json new file mode 100644 index 000000000..498d5fa6d --- /dev/null +++ b/tests/examples/pacer/nef/s3/pamb_3.json @@ -0,0 +1,41 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "pamb", + "dockets": [ + { + "case_name": "Dennis Edward Layman, Jr", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-04-22", + "description": "Employee Income Records Filed by FirstName LastName of Law Firm, P.C. on behalf of Dennis Edward Layman Jr. (FirstName LastName)", + "document_number": "13", + "document_url": "https://ecf.pamb.uscourts.gov/doc1/154018318112?pdf_header=&magic_num=77077650&de_seq_num=58&caseid=279776", + "pacer_case_id": "279776", + "pacer_doc_id": "154018318112", + "pacer_magic_num": "77077650", + "pacer_seq_no": "58", + "short_description": "Employee Income Records" + } + ], + "docket_number": "1:24-bk-00833", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "HWV", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" + } + ], + "email_recipients": [ + { + "email_addresses": [ + "help@lawfirm.com", + "noreply01@lawfirm.com;noreply02@lawfirm.com;noreply03@lawfirm.com;noreply04@lawfirm.com;noreply05@lawfirm.com;lawfirmpc@jubileebk.net;lawfirm@recap.email;ecf@casedriver.com", + "ustpregion03.ha.ecf@usdoj.gov", + "TWecf@pamd13trustee.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/pamb_3.txt b/tests/examples/pacer/nef/s3/pamb_3.txt new file mode 100644 index 000000000..482c0f400 --- /dev/null +++ b/tests/examples/pacer/nef/s3/pamb_3.txt @@ -0,0 +1,102 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id dgb0ijh26ohg96nppm39o5hmd643ncgcgrk7mh81 + for lawfirm@recap.email; + Mon, 22 Apr 2024 15:38:41 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of pamb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=PAMB_LiveDB@pamb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of pamb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=PAMB_LiveDB@pamb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=pamb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFRktzTzlDdTR2YVhJdEwrVWxUMUdnR1A3aE9ZbCtpbG5yb2xOeklOZEdocFBkeCtwelZjbVBlQmkxeHdxNk5wSlR5b2owV0pCNkZGSk53SkdjV0ZSV3dGOWNKSDQ4MUh5Y2dyZHFDbXRQR1NPbmtidkFJZHpOSVNWd29FTXpybDdwTVByVVBCQkdEbjVSMXVKOUpBTnY1dGNEaXE4a24zYndRY1dTK2hvQTRFUmlvOUhwSjdxMkhBczkwblJWQW1aMWhhK3hhV0JsSG11VWUxYmk3UTF1VFl5eElKeTFxWEVtSkZTWlNSNTE4RXlFWmU5QWU4OG5iZzJVbTFoTlFSY2lYbkdza2NldTVTK3A0RVpUK0xRS0R6WlhIWnlqWXV2YTJpZEd1U28xRWc9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=Qj2mMWFFBmqQ15NIa0AhGpALrIFqRkEmfjfHOzCp06vyFCDd5nZT+wQRH3n1K9GvwQ4g+w2SgH4sEckZepqcVADU0WE/PgU0RLVWJEDF86ROJMmX1HwjndQ0QfW2Po027uEHD1Ei7dHdT36pfAXczpiakTKvHsR0+ou4Ah96Ikc=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1713800322; v=1; bh=NsQ93dZETMVVyY1ANkhl1du4lH8dvYw6sXqLIyYxmRs=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.181 +Received: from pambdb.pamb.gtwy.dcn ([156.119.190.181]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 22 Apr 2024 11:38:41 -0400 +Received: from pambdb.pamb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by pambdb.pamb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 43MFbtqB096339; + Mon, 22 Apr 2024 11:37:56 -0400 +Received: (from ecf_web@localhost) + by pambdb.pamb.gtwy.dcn (8.14.7/8.14.4/Submit) id 43MFbhQM096096; + Mon, 22 Apr 2024 11:37:43 -0400 +Date: Mon, 22 Apr 2024 11:37:43 -0400 +MIME-Version:1.0 +From:PAMB_LiveDB@pamb.uscourts.gov +To:Courtmail@pamb.uscourts.gov +Reply-To: pambecf_helpdesk@pamb.uscourts.gov +Message-Id:<17990203@pamb.uscourts.gov> +Subject:Ch-13 1:24-bk-00833-HWV -Dennis Edward Laym Employee Income Records +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Middle District of Pennsylvania

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from FirstName LastName entered on 4/22/2024 at 11:37 AM EDT and filed on 4/22/2024 + +
    + + + + + + + + + +
    Case Name: +Dennis Edward Layman, Jr
    Case Number:1:24-bk-00833-HWV
    Document Number: +13 +
    + + + + +

    Docket Text: + +
    + Employee Income Records Filed by FirstName LastName of Law Firm, P.C. on behalf of Dennis Edward Layman Jr. (FirstName LastName) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:Paystubs10123to32924.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=1009835235 [Date=4/22/2024] [FileNumber=17990201- +
    0] [69519a0be97f7a0ebe4072b37ad43ce5b35878a9594a022ed9a6049b5801c6a461 +
    c0398aecefeb09b54d5d01e83c78eebf5c6a99913d801af4422e5e183dce05]] +
    + +
    +
    + + + + +
    +1:24-bk-00833-HWV Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Debtor 1 Dennis Edward Layman, Jr +
    help@lawfirm.com, noreply01@lawfirm.com;noreply02@lawfirm.com;noreply03@lawfirm.com;noreply04@lawfirm.com;noreply05@lawfirm.com;lawfirmpc@jubileebk.net;lawfirm@recap.email;ecf@casedriver.com +
    +
    United States Trustee +
    ustpregion03.ha.ecf@usdoj.gov +
    +
    FirstName LastName +
    TWecf@pamd13trustee.com +
    + diff --git a/tests/examples/pacer/nef/s3/pawb_2.json b/tests/examples/pacer/nef/s3/pawb_2.json index 5d75de71e..ba2a130bf 100644 --- a/tests/examples/pacer/nef/s3/pawb_2.json +++ b/tests/examples/pacer/nef/s3/pawb_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "U LOCK INC", - "date_filed": "2023-01-24", + "date_filed": null, "docket_entries": [ { "date_filed": "2023-01-24", @@ -19,7 +19,12 @@ "short_description": "Reply" } ], - "docket_number": "22-20823" + "docket_number": "22-20823", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "GLT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/pawb_3.json b/tests/examples/pacer/nef/s3/pawb_3.json index 909b7d30e..aad57bafd 100644 --- a/tests/examples/pacer/nef/s3/pawb_3.json +++ b/tests/examples/pacer/nef/s3/pawb_3.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Daniel J. Adamson", - "date_filed": "2023-02-27", + "date_filed": null, "docket_entries": [ { "date_filed": "2023-02-27", @@ -19,7 +19,12 @@ "short_description": "Notice of Additional Filing Deficiencies" } ], - "docket_number": "23-20396" + "docket_number": "23-20396", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "GLT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/pawb_4.json b/tests/examples/pacer/nef/s3/pawb_4.json index e38fa228c..cc9dfd802 100644 --- a/tests/examples/pacer/nef/s3/pawb_4.json +++ b/tests/examples/pacer/nef/s3/pawb_4.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Moses Dolz", - "date_filed": "2023-01-24", + "date_filed": null, "docket_entries": [ { "date_filed": "2023-01-24", @@ -19,7 +19,12 @@ "short_description": "Corrective Entry" } ], - "docket_number": "23-70022" + "docket_number": "23-70022", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JAD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/tnmb_1.json b/tests/examples/pacer/nef/s3/tnmb_1.json new file mode 100644 index 000000000..e3fc0dc85 --- /dev/null +++ b/tests/examples/pacer/nef/s3/tnmb_1.json @@ -0,0 +1,42 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "tnmb", + "dockets": [ + { + "case_name": "Jeffery Wayne Lovell and Tiffany Nicole Lovell", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-07-15", + "description": "Order Continuing Hearing Re: (RE: related document(s)[21] Objection to Confirmation of the Plan (Creditor), [3] Chapter 13 Plan). Hearing has been rescheduled for 08/14/2024 at 09:00 AM, Joint Hearing Courtroom (NSH); (Virtual hearing if allowed; see website for details); 701 Broadway, Nashville, TN 37203. (las)", + "document_number": "27", + "document_url": null, + "pacer_case_id": "393537", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Docket Order - Continue Hearing (Auto) Ch 13" + } + ], + "docket_number": "1:24-bk-01377", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" + } + ], + "email_recipients": [ + { + "email_addresses": [ + "attorney@lawfirm.com", + "user@recap.email", + "user@firm.com", + "user@firm.COM", + "ustpregion08.na.ecf@usdoj.gov" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/tnmb_1.txt b/tests/examples/pacer/nef/s3/tnmb_1.txt new file mode 100644 index 000000000..918d735b6 --- /dev/null +++ b/tests/examples/pacer/nef/s3/tnmb_1.txt @@ -0,0 +1,105 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id daavku0f2g9ggfq261vvbg89di6i25musc9o1fg1 + for user@recap.email; + Mon, 15 Jul 2024 20:08:54 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of tnmb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=TNMBADMIN_ECF@tnmb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of tnmb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=TNMBADMIN_ECF@tnmb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=tnmb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHZEhoYXFyMHlzNEZTWWl2NDNuV2pZOWp1SzZKRWx1Y1J4MTYyNGJFTU5walNBRGJlUGdpU2NvY2JyelF2KzduaTRjTlFzbEIxN1ZTTzVBWVNVMWcyVUc1TU0wbGFoNWZmWDZPU2s4VGtPOSswdVg2R0JySzBvQmNxZ1VVS0xKODJ4Rmd0Nk5Gdk10SVl5ZXBSaVl6Skxzc1VQOTFpVGhLYWw3WE9WOFVBazRUVTJuRm5HZFFFNTIrcFIvVFBKdGw0enlyU3BRQlpKM3h2R242VENTYWJBYTdpNVRxMFhoS1VwSEpBZXIzQ2UvNEluSUtteXNWZEhILzVjejVXck0xS0RRYWpPQXZJMGhXeElTaEc1Wk9YSzRaOENvWkRyWGFqT1dGNDViTHV3TFZucG5SdElpVnJiNGp1MmJpYkZjeTQ9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=ihIL5Nqb3okvC8h7OsYNw451nLF42mbtRo0CJMcNFo/LOXPujqeF50ouLHGKEkbw3axIKTqdp7HtdHM9ASz/xcFEPsvlxjfdODlrJHerEP+kKmcKnmo5uh36xGwxK/L2BnsAD439NFFgQBI6XSk3WtymDz8BpSiY6Z5oI5L1hvs=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1721074135; v=1; bh=30ZVL55+i3Kbvg8XQRvA5gped81caHwib7jphYzMFHg=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.130 +Received: from tnmbdb.tnmb.gtwy.dcn ([156.119.190.130]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 15 Jul 2024 16:08:54 -0400 +Received: from tnmbdb.tnmb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by tnmbdb.tnmb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 46FK889V110934; + Mon, 15 Jul 2024 15:08:09 -0500 +Received: (from ecf_web@localhost) + by tnmbdb.tnmb.gtwy.dcn (8.14.7/8.14.4/Submit) id 46FK7fwX110404; + Mon, 15 Jul 2024 15:07:41 -0500 +Date: Mon, 15 Jul 2024 15:07:41 -0500 +X-Authentication-Warning: tnmbdb.tnmb.gtwy.dcn: ecf_web set sender to TNMBADMIN_ECF@tnmb.uscourts.gov using -f +MIME-Version:1.0 +From:TNMBADMIN_ECF@tnmb.uscourts.gov +To:courtmail@tnmb.uscourts.gov +Message-Id:<29433560@tnmb.uscourts.gov> +Subject: Docket Order - Continue Hearing (Auto) Ch 13 Jeffery Wayne Lovell and Tiffany Nicole Lovell 1:24-bk-01377 +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    MIDDLE DISTRICT OF TENNESSEE

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from las entered on 07/15/2024 at 3:07 PM CDT and filed on 07/15/2024 + +
    + + + + + + + + + +
    Case Name: +Jeffery Wayne Lovell and Tiffany Nicole Lovell
    Case Number:1:24-bk-01377
    Document Number: +27 +
    + + + + +

    Docket Text: + +
    +Order Continuing Hearing Re: (RE: related document(s)[21] Objection to Confirmation of the Plan (Creditor), [3] Chapter 13 Plan). Hearing has been rescheduled for 08/14/2024 at 09:00 AM, Joint Hearing Courtroom (NSH); (Virtual hearing if allowed; see website for details); 701 Broadway, Nashville, TN 37203. (las) +

    + +

    The following document(s) are associated with this transaction:

    + + +
    +
    + + + + +
    +1:24-bk-01377 Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Creditor Advanced Building Solutions, Inc. +
    attorney@lawfirm.com, user@recap.email +
    +
    FirstName LastName on behalf of Creditor Onslow Bay Financial LLC +
    user@firm.com, user@firm.COM +
    +
    US TRUSTEE +
    ustpregion08.na.ecf@usdoj.gov +
    + +
    + +1:24-bk-01377 Notice will not be electronically mailed to: + + +
    + +
    Capital One Auto Finance, a division of Capital One, N.A., c/o AIS Portfolio Services, LLC +
    11111 N SomeAve. Dept. +
    Some City, OK 11111 +
    diff --git a/tests/examples/pacer/nef/s3/txnb_1.json b/tests/examples/pacer/nef/s3/txnb_1.json new file mode 100644 index 000000000..4350cc6e6 --- /dev/null +++ b/tests/examples/pacer/nef/s3/txnb_1.json @@ -0,0 +1,40 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "txnb", + "dockets": [ + { + "case_name": "AREYA HOLDER AURZADA, CHAPTER 7 TRUSTEE FOR THE BA v. FUNDERZ.NET, LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-06-25", + "description": "Clerk's correspondence requesting Stipulation from attorney for plaintiff. (RE: related document(s)[13] INCORRECT ENTRY. WRONG EVENT CODE USED. Trustee's Notice filed by Plaintiff AREYA HOLDER AURZADA, CHAPTER 7 TRUSTEE FOR THE BANKRUPTCY ESTATE OF DENNIS JAMES ROGERS II (RE: related document(s)[5] Motion to dismiss adversary proceeding filed by Defendant FUNDERZ.NET, LLC). (LastName, FirstName) Modified on 6/25/2024 .) Responses due by 7/2/2024. (LastName, FirstName)", + "document_number": "14", + "document_url": "https://ecf.txnb.uscourts.gov/doc1/1760?pdf_header=&magic_num=97272925&de_seq_num=57&caseid=515854", + "pacer_case_id": "515854", + "pacer_doc_id": "1760", + "pacer_magic_num": "97272925", + "pacer_seq_no": "57", + "short_description": "Clerk's correspondence" + } + ], + "docket_number": "24-03028", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "swe", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "user@xxa.com", + "user2@lawfirm.com", + "user@lawfirm.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/txnb_1.txt b/tests/examples/pacer/nef/s3/txnb_1.txt new file mode 100644 index 000000000..91a034c09 --- /dev/null +++ b/tests/examples/pacer/nef/s3/txnb_1.txt @@ -0,0 +1,104 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id 66c90ggpa2ctk68fkmusavugq0opqgsj19ecvs81 + for user@recap.email; + Tue, 25 Jun 2024 20:34:37 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of txnb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@txnb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of txnb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@txnb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=txnb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFITld2N2VDQlhmV2ZmbGRjYXp6UzZvRlZsOEdtL2l4U2JoaVNmdUhLY3oyS0NORVhldGFKQjRWM0ZrekN4RlBwRkNyQjg3UGNYcXdtMkxLS1hHU3RDQXYxRE5sLzM5b2ZaZjZnZmhwRXQ5NUFldmh3QmFxNEl1OVowVWJHSkljZ0Q3OFRRTDlId3B0RWkrVzRBamJIWnFqUW1SbDB6NTBjMWxBMXR6aWNmOVg0SXErWU9QdUI1bXJkZ0sxN2p5dGgrSFVmbzFpMVJ3UTVudElqTEtoNnBLVVdTRlQ3ZVROL1I4ZmxaYnhDa0djMTNGaVZkODdsbVVtTGJnM3NhM0hSbFNTS0NsUDViazA4M2YrMmpRTlNteDRIQm1WeHhYakpjWjBoMU0rNlBOb1dYYjl6eTJuWktzUHBEOGtjZ3VrTXM9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=u6lZ4Y7PgGS1WbluqdrMQIgK7ClV3d1rHJfEwt00PYXl0XM12zRORUgTmKETVZS4L1ys7vDYe3bgEXodDa5ZCZlaZthcAjbjTOR2Hy1XPWgjWlJ2Suoa2bqalarrYNgfTieVY0rq4YD4OyNqgYZCOZFbV9vVatXrSI1nznj2boY=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1719347678; v=1; bh=YzVknDjl8Ab2VTsMxTZlfI1yebWDP77FAk5rBohRaU4=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.56.48 +Received: from txnbdb.txnb.gtwy.dcn ([156.119.56.48]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 25 Jun 2024 16:34:36 -0400 +Received: from txnbdb.txnb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by txnbdb.txnb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 45PKXnb5060677; + Tue, 25 Jun 2024 15:33:50 -0500 +Received: (from ecf_web@localhost) + by txnbdb.txnb.gtwy.dcn (8.14.7/8.14.4/Submit) id 45PKXJLI059075; + Tue, 25 Jun 2024 15:33:19 -0500 +Date: Tue, 25 Jun 2024 15:33:19 -0500 +X-Authentication-Warning: txnbdb.txnb.gtwy.dcn: ecf_web set sender to BKECF_LiveDB@txnb.uscourts.gov using -f +MIME-Version:1.0 +From:BKECF_LiveDB@txnb.uscourts.gov +To:Courtmail@txnb.uscourts.gov +Message-Id:<50348129@txnb.uscourts.gov> +Subject:24-03028-swe Clerk's correspondence +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Northern District of Texas

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from LastName, FirstName entered on 6/25/2024 at 3:33 PM CDT and filed on 6/25/2024 + +
    + + + + + + + + + +
    Case Name: +AREYA HOLDER AURZADA, CHAPTER 7 TRUSTEE FOR THE BA v. FUNDERZ.NET, LLC
    Case Number:24-03028-swe
    Document Number: +14 +
    + + + + +

    Docket Text: + +
    +Clerk's correspondence requesting Stipulation from attorney for plaintiff. (RE: related document(s)[13] INCORRECT ENTRY. WRONG EVENT CODE USED. Trustee's Notice of Stipulation Regarding Response Deadlines filed by Plaintiff AREYA HOLDER AURZADA, CHAPTER 7 TRUSTEE FOR THE BANKRUPTCY ESTATE OF DENNIS JAMES ROGERS II (RE: related document(s)[5] Motion to dismiss adversary proceeding filed by Defendant FUNDERZ.NET, LLC). (LastName, FirstName) Modified on 6/25/2024 .) Responses due by 7/2/2024. (LastName, FirstName) +

    + +

    The following document(s) are associated with this transaction:

    + + +
    +
    + + + + +
    +24-03028-swe Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Defendant company.net, LLC +
    user@xxa.com +
    +
    FirstName LastName on behalf of Plaintiff FirstName LastName, CHAPTER 7 TRUSTEE FOR THE BANKRUPTCY ESTATE OF FirstName LastName II +
    user2@lawfirm.com, user@lawfirm.com +
    + +
    + +24-03028-swe Notice will not be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Defendant company.net, LLC +
    FirstName LastName LLP +
    333 Some Avenue, Suite 999 +
    Miami, FL 1111 +
    + diff --git a/tests/examples/pacer/nef/s3/txnb_2.json b/tests/examples/pacer/nef/s3/txnb_2.json new file mode 100644 index 000000000..9480f1a57 --- /dev/null +++ b/tests/examples/pacer/nef/s3/txnb_2.json @@ -0,0 +1,40 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "txnb", + "dockets": [ + { + "case_name": "AREYA HOLDER AURZADA, CHAPTER 7 TRUSTEE FOR THE BA v. FUNDERZ.NET, LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-06-25", + "description": "Trustee's Notice filed by Plaintiff AREYA HOLDER AURZADA, CHAPTER 7 TRUSTEE FOR THE BANKRUPTCY ESTATE OF DENNIS JAMES ROGERS II (RE: related document(s)[5] Motion to dismiss adversary proceeding filed by Defendant FUNDERZ.NET, LLC). (LastName, FirstName)", + "document_number": "13", + "document_url": "https://ecf.txnb.uscourts.gov/doc1/176049160960?pdf_header=&magic_num=61404186&de_seq_num=54&caseid=515854", + "pacer_case_id": "515854", + "pacer_doc_id": "176049160960", + "pacer_magic_num": "61404186", + "pacer_seq_no": "54", + "short_description": "Notice (generic)" + } + ], + "docket_number": "24-03028", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "swe", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "user@xxa.com", + "user2@lawfirm.com", + "user@lawfirm.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/txnb_2.txt b/tests/examples/pacer/nef/s3/txnb_2.txt new file mode 100644 index 000000000..52d56e27f --- /dev/null +++ b/tests/examples/pacer/nef/s3/txnb_2.txt @@ -0,0 +1,104 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id 9s95mdrr8hj4fnvc0l3ca1p7jhut23mr5hmvtg01 + for user@recap.email; + Tue, 25 Jun 2024 15:58:40 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of txnb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@txnb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of txnb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@txnb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=txnb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFS041SE5vZlVHb3IxRjRDdU1LcGxtNkhPeXR4MWNlSmtaS0ZmNTZnUzlobDZkRXZnbnFKWEt4RVYyd0pxYjVSLzhpWVB4bHpZU09XNUZyVmtOa0p4NGNyRGRBZ1FNZXFZcmN5Z1dkNGVKSUxGNWwwbDVlRWNBN2NJaXJMRWdVeDBhUjdVMkcrNmhHcmpuVThjT1dOakt2b0d0ZmY0VGFCaEs3dVRUWnJtTlRuV2tuWW96MWFVam4rN1BELzc5bnVTNGtqZnh6Z0V4L0ZHVTA0UkcxaEJaZFk5UTkzTFFKQnFzeG8zeDI3NXVyNEZia0kxVzk2RllHdlBwWHo3czF0Sk80bm9hYjBwM3MrTGdPZE9mamJ6R0ZaQUc2dERweDBBYlArVWxtQTh0cUkrYmVXTVMrTHlRd1ZsVHpVajVlM3c9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=1tDgzB6r54B1EvPHFmFQD74LsAE7W0Mj8DZOYix1YVZEEcFgB4ug8TIKhR+6F4YjmsmklTg9ubcNktK1EivUbprl+jKvqvD42Y9BquWJj2/4SXHLRLu9eprQXCo+0Mj+WqPNtEL55DNxyJiGVZoLiEg1bEJo1XZFDkYRMBJc4/Y=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1719331121; v=1; bh=cIHdvSMjQGkmjRpf+QvKXRHjAQbsL4XoZaoZ5OsMVhs=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.56.48 +Received: from txnbdb.txnb.gtwy.dcn ([156.119.56.48]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 25 Jun 2024 11:58:40 -0400 +Received: from txnbdb.txnb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by txnbdb.txnb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 45PFvnJF093362; + Tue, 25 Jun 2024 10:57:50 -0500 +Received: (from ecf_web@localhost) + by txnbdb.txnb.gtwy.dcn (8.14.7/8.14.4/Submit) id 45PFvWtm092148; + Tue, 25 Jun 2024 10:57:32 -0500 +Date: Tue, 25 Jun 2024 10:57:32 -0500 +X-Authentication-Warning: txnbdb.txnb.gtwy.dcn: ecf_web set sender to BKECF_LiveDB@txnb.uscourts.gov using -f +MIME-Version:1.0 +From:BKECF_LiveDB@txnb.uscourts.gov +To:Courtmail@txnb.uscourts.gov +Message-Id:<50346206@txnb.uscourts.gov> +Subject:24-03028-swe Notice (generic) +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Northern District of Texas

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from David Brian Miller entered on 6/25/2024 at 10:57 AM CDT and filed on 6/25/2024 + +
    + + + + + + + + + +
    Case Name: +AREYA HOLDER AURZADA, CHAPTER 7 TRUSTEE FOR THE BA v. FUNDERZ.NET, LLC
    Case Number:24-03028-swe
    Document Number: +13 +
    + + + + +

    Docket Text: + +
    +Trustee's Notice of Stipulation Regarding Response Deadlines filed by Plaintiff AREYA HOLDER AURZADA, CHAPTER 7 TRUSTEE FOR THE BANKRUPTCY ESTATE OF DENNIS JAMES ROGERS II (RE: related document(s)[5] Motion to dismiss adversary proceeding filed by Defendant FUNDERZ.NET, LLC). (LastName, FirstName) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Main Document +
    Original filename:Stipulation Regarding Response Deadlines.pdf +
    Electronic document + Stamp: +
    [STAMP bkecfStamp_ID=1017686615 [Date=6/25/2024] [FileNumber=50346204- +
    0] [4e23cd022d29a463f8f4f749d2cffab77060e10600c01410a60698e948c5637862 +
    598e816acb6ea12743b9fc0428b80a9a85687a5650a29711d35389b9e6f5fa]] +
    + +
    +
    + + + + +
    +24-03028-swe Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of Defendant company.net, LLC +
    user@xxa.com +
    +
    FirstName LastName on behalf of Plaintiff FirstName LastName, CHAPTER 7 TRUSTEE FOR THE BANKRUPTCY ESTATE OF FirstName LastName II +
    user2@lawfirm.com, user@lawfirm.com +
    +
    + +24-03028-swe Notice will not be electronically mailed to: + + +
    diff --git a/tests/examples/pacer/nef/s3/txnd_1.json b/tests/examples/pacer/nef/s3/txnd_1.json index afe7529a0..7d2f82ebb 100644 --- a/tests/examples/pacer/nef/s3/txnd_1.json +++ b/tests/examples/pacer/nef/s3/txnd_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Caulkins v. Ditmore", - "date_filed": "2021-08-16", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-08-16", @@ -19,7 +19,12 @@ "short_description": "Notice of Attorney Appearance" } ], - "docket_number": "4:21-cv-00953" + "docket_number": "4:21-cv-00953", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "P", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "4" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/txsd_1.json b/tests/examples/pacer/nef/s3/txsd_1.json index fc048a61f..4eff2368b 100644 --- a/tests/examples/pacer/nef/s3/txsd_1.json +++ b/tests/examples/pacer/nef/s3/txsd_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "United States of America, ex rel v. Merida Health Care Group", - "date_filed": "2022-08-10", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-08-10", @@ -19,7 +19,12 @@ "short_description": "Motion for Partial Summary Judgment" } ], - "docket_number": "2:15-cv-00208" + "docket_number": "2:15-cv-00208", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/txwd_1.json b/tests/examples/pacer/nef/s3/txwd_1.json index d11514037..13667cd18 100644 --- a/tests/examples/pacer/nef/s3/txwd_1.json +++ b/tests/examples/pacer/nef/s3/txwd_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Segovia v. Fuelco Energy LLC", - "date_filed": "2021-06-25", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-25", @@ -19,7 +19,12 @@ "short_description": "Response" } ], - "docket_number": "5:17-cv-01246" + "docket_number": "5:17-cv-01246", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JKP", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/txwd_2.json b/tests/examples/pacer/nef/s3/txwd_2.json index 2aabbd753..2e109d639 100644 --- a/tests/examples/pacer/nef/s3/txwd_2.json +++ b/tests/examples/pacer/nef/s3/txwd_2.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Fenwick v. Amistad Homecare, Inc.", - "date_filed": "2021-07-07", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-07-07", @@ -19,7 +19,12 @@ "short_description": "Order on Motion for Leave to File" } ], - "docket_number": "5:20-cv-01403" + "docket_number": "5:20-cv-01403", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/txwd_3.json b/tests/examples/pacer/nef/s3/txwd_3.json index 774a26a24..f6f781bcf 100644 --- a/tests/examples/pacer/nef/s3/txwd_3.json +++ b/tests/examples/pacer/nef/s3/txwd_3.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Ginger Beeler v. Colonial Management Group, L.P.", - "date_filed": "2021-07-08", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-07-08", @@ -19,7 +19,12 @@ "short_description": "Summons Issued" } ], - "docket_number": "5:21-cv-00634" + "docket_number": "5:21-cv-00634", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/txwd_4.json b/tests/examples/pacer/nef/s3/txwd_4.json index 5edb71393..d6ae202aa 100644 --- a/tests/examples/pacer/nef/s3/txwd_4.json +++ b/tests/examples/pacer/nef/s3/txwd_4.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Didler v. Maofu Home Health Care Services Incorporated", - "date_filed": "2021-08-11", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-08-11", @@ -19,7 +19,12 @@ "short_description": "Motion for Extension of Time to File" } ], - "docket_number": "5:21-cv-00306" + "docket_number": "5:21-cv-00306", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "XR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/txwd_5.json b/tests/examples/pacer/nef/s3/txwd_5.json index dd96d823f..959513524 100644 --- a/tests/examples/pacer/nef/s3/txwd_5.json +++ b/tests/examples/pacer/nef/s3/txwd_5.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Collins v. Pel-State Bulk Plant, LLC", - "date_filed": "2021-08-09", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-08-09", @@ -19,7 +19,12 @@ "short_description": "Response in Opposition to Motion" } ], - "docket_number": "7:20-cv-00083" + "docket_number": "7:20-cv-00083", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DC", + "federal_dn_judge_initials_referred": "RCG", + "federal_dn_office_code": "7" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/txwd_6.json b/tests/examples/pacer/nef/s3/txwd_6.json index 1db7054cb..be984e438 100644 --- a/tests/examples/pacer/nef/s3/txwd_6.json +++ b/tests/examples/pacer/nef/s3/txwd_6.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Tanis v. Austin Private Car Service, Corp.", - "date_filed": "2021-08-11", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-08-11", @@ -19,7 +19,12 @@ "short_description": "Motion for Extension of Time to File" } ], - "docket_number": "1:20-cv-01202" + "docket_number": "1:20-cv-01202", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RP", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/s3/txwd_7.json b/tests/examples/pacer/nef/s3/txwd_7.json index a31c014e5..c41680724 100644 --- a/tests/examples/pacer/nef/s3/txwd_7.json +++ b/tests/examples/pacer/nef/s3/txwd_7.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Lionra Technologies Limited v. Apple Inc.", - "date_filed": "2022-10-05", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-10-05", @@ -19,7 +19,12 @@ "short_description": "Redacted Copy" } ], - "docket_number": "6:22-cv-00351" + "docket_number": "6:22-cv-00351", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADA", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6" } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/s3/vaeb_1.json b/tests/examples/pacer/nef/s3/vaeb_1.json new file mode 100644 index 000000000..c9d7fa394 --- /dev/null +++ b/tests/examples/pacer/nef/s3/vaeb_1.json @@ -0,0 +1,49 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "vaeb", + "dockets": [ + { + "case_name": "Tanese Renee Newton-Love", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-02-01", + "description": "Notice of Dismissal (Re: related document(s)[32] Order on Motion to Dismiss Case by Trustee (Batch)) (Admin.)", + "document_number": "33", + "document_url": "https://ecf.vaeb.uscourts.gov/doc1/188040985133?pdf_header=&magic_num=49963627&de_seq_num=101&caseid=752725", + "pacer_case_id": "752725", + "pacer_doc_id": "188040985133", + "pacer_magic_num": "49963627", + "pacer_seq_no": "101", + "short_description": "Notice of Dismissal" + } + ], + "docket_number": "23-31747", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KLP", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "example@domain.com", + "example@domain.com", + "example@domain.com", + "example@domain.com;example@domain.com", + "example@domain.com", + "example@domain.com", + "example@domain.com;example@domain.com;example@domain.com", + "USTPRegion04.RH.ECF@usdoj.gov", + "example@domain.com", + "example@domain.com;example@domain.com", + "example@domain.com", + "example@domain.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/vaeb_1.txt b/tests/examples/pacer/nef/s3/vaeb_1.txt new file mode 100644 index 000000000..9d063b8d5 --- /dev/null +++ b/tests/examples/pacer/nef/s3/vaeb_1.txt @@ -0,0 +1,130 @@ +Return-Path: +Received: from icmecf102.gtwy.uscourts.gov (icmecf102.gtwy.uscourts.gov [199.107.16.202]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id dmqt97lgfc7eu5tu4090otni6na6b0gedsc8nd81 + for c@recap.email; + Fri, 02 Feb 2024 05:25:29 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of vaeb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=live_ecf@vaeb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of vaeb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=live_ecf@vaeb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; + dmarc=none header.from=vaeb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFIdysvdkM5TEdaRlBKUnFObkN2MEZUbGZzM2Nad1lBVzRmd0kwQXcvckl1T25uV3lNR21vYnRLZFA3b0tEWGRmMzRUV2FxUk1zMnBYVVRvM1RpTmoyaFd2ZjhJVDZEczVSakhpSGhOY3RzbXhjanhBSjJ0aFk4M0pQZjl5ajVXZWlOeW44RnF3OGFJd3VWdlc3ejNBU0ZmUm4xQU45TXpHVG1acU1rbE9lZGRrYW9RN2EyZTRvSEFsVXNrclZWclR0NmN4VkU4WE12a2VFZU5NTGduc2dSVy9IN3lUdk51RzByUm51Y244RUx5UmZBWFJkbUlsUTJxTU1xa1NEQnpjOXpZTzNKRlB2OU92UWFhQ1cweUN3c1p0SVBiYi9HVWNRQzNMbDhPa0xKTVE9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=G2ZOPs7mc4GAXgafzFhAjrzqau4UgITz1m9CkiJbscl12As7ttqKymNjuWEnYNV6hCKbawyoZ4fCMeoRAy5VomhZFYm49xm91dcVhKlH9tzxOv3jlJ+j5+6UukxuViryldHJr1mir/vAqYnClpmfhWalgTKRHRyWS97nd3Q6LAk=; c=relaxed/simple; s=hsbnp7p3ensaochzwyq5wwmceodymuwv; d=amazonses.com; t=1706851529; v=1; bh=tk5TSRqVZL5aHklIZOSFCyGIWGE5P9Z6DaENB8HGV4I=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.191.40 +Received: from vaebdb.vaeb.gtwy.dcn ([156.119.191.40]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 02 Feb 2024 00:25:28 -0500 +Received: from vaebdb.vaeb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by vaebdb.vaeb.gtwy.dcn (8.14.4/8.14.4) with ESMTP id 4125OOO4128637; + Fri, 2 Feb 2024 00:24:57 -0500 +Received: (from ecf_web@localhost) + by vaebdb.vaeb.gtwy.dcn (8.14.4/8.14.4/Submit) id 4125NlNC126083; + Fri, 2 Feb 2024 00:23:47 -0500 +Date: Fri, 2 Feb 2024 00:23:47 -0500 +X-Authentication-Warning: vaebdb.vaeb.gtwy.dcn: ecf_web set sender to live_ecf@vaeb.uscourts.gov using -f +MIME-Version:1.0 +From:live_ecf@vaeb.uscourts.gov +To:Courtmail@vaeb.uscourts.gov +Message-Id:<40573088@vaeb.uscourts.gov> +Subject:Tanese Renee Newton-Love 23-31747-KLP Ch 13 Notice of Dismissal - CerDocTyp +Content-Type: text/html + +

    ***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

    + + + + +

    U.S. Bankruptcy Court

    + +

    Eastern District of Virginia

    +Notice of Electronic Filing +
    +
    +
    The following transaction was received from Admin entered on 02/02/2024 at 00:20 AM EST and filed on 02/01/2024 + +
    + + + + + + + + + +
    Case Name: +Tanese Renee Newton-Love
    Case Number:23-31747-KLP
    Document Number: +33 +
    + + + + +

    Docket Text: + +
    +Notice of Dismissal (Re: related document(s)[32] Order on Motion to Dismiss Case by Trustee (Batch)) (Admin.) +

    + +

    The following document(s) are associated with this transaction:

    + +Document description:Imaged Certificate of Notice +
    Original filename:P72331747VAN0150094.pdf +
    Electronic document Stamp: +
    [STAMP VAEBStamp_ID=875559604 [Date=2/2/2024] [FileNumber=40572492-0] [5e1098c1773080ccd0396aeb2c4a1656fea377eb4276143dc7760dbd62661d37d764ec31e4897c2525195b9d3f7518eaa6aa933a8ffe1d910daa424dbc4efd1b]] +
    + +
    +
    + + + + +
    +23-31747-KLP Notice will be electronically mailed to: + + +
    + +
    FirstName LastName on behalf of FirstName LastName +
    example@domain.com, example@domain.com +
    +
    FirstName LastName on behalf of FirstName LastName +
    example@domain.com, example@domain.com;example@domain.com +
    +
    FirstName LastName on behalf of Creditor Santander Consumer USA Inc. +
    example@domain.com +
    +
    JFirstName LastName on behalf of Creditor XXX, LLC +
    example@domain.com, example@domain.com;example@domain.com;example@domain.com +
    +
    Gerard R. Vetter +
    USTPRegion04.RH.ECF@usdoj.gov +
    +
    FirstName LastName +
    example@domain.com, example@domain.com;example@domain.com +
    +
    FirstName LastName on behalf of FirstName LastName +
    example@domain.com, example@domain.com +
    + +
    + +23-31747-KLP Notice will not be electronically mailed to: + + +
    + +
    Atlas Acquisitions LLC +
    492C Cedar Lane, Ste 442 +
    Teaneck, NJ 07666 +
    + +
    + + + + +
    +
    diff --git a/tests/examples/pacer/nef/s3/vaed_1.json b/tests/examples/pacer/nef/s3/vaed_1.json index 38ab290f8..a4c22ac3e 100644 --- a/tests/examples/pacer/nef/s3/vaed_1.json +++ b/tests/examples/pacer/nef/s3/vaed_1.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Glover and Pridemore v. Hryniewich", - "date_filed": "2022-10-05", + "date_filed": null, "docket_entries": [ { "date_filed": "2022-10-05", @@ -19,7 +19,12 @@ "short_description": "Case Assigned/Reassigned" } ], - "docket_number": "2:17-cv-00109" + "docket_number": "2:17-cv-00109", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "EWH", + "federal_dn_judge_initials_referred": "LRL", + "federal_dn_office_code": "2" } ], "email_recipients": [] diff --git a/tests/examples/pacer/nef/txed.json b/tests/examples/pacer/nef/txed.json index 14ad76db5..7a132f658 100644 --- a/tests/examples/pacer/nef/txed.json +++ b/tests/examples/pacer/nef/txed.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Alexander v. Clean Shot, LLC", - "date_filed": "2021-06-10", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-10", @@ -19,7 +19,12 @@ "short_description": "" } ], - "docket_number": "9:21-cv-00029" + "docket_number": "9:21-cv-00029", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MJT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "9" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/txnd.json b/tests/examples/pacer/nef/txnd.json index 6ccf7000d..42d065711 100644 --- a/tests/examples/pacer/nef/txnd.json +++ b/tests/examples/pacer/nef/txnd.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Sanchez v. Palacios", - "date_filed": "2021-06-10", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-10", @@ -19,7 +19,12 @@ "short_description": "" } ], - "docket_number": "3:21-cv-00071" + "docket_number": "3:21-cv-00071", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "B", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3" } ], "email_recipients": [ diff --git a/tests/examples/pacer/nef/txwd.json b/tests/examples/pacer/nef/txwd.json index 82dd2bd80..eb373422d 100644 --- a/tests/examples/pacer/nef/txwd.json +++ b/tests/examples/pacer/nef/txwd.json @@ -5,7 +5,7 @@ "dockets": [ { "case_name": "Newsome, Jr. v. QES Pressure Control, LLC", - "date_filed": "2021-06-10", + "date_filed": null, "docket_entries": [ { "date_filed": "2021-06-10", @@ -19,7 +19,12 @@ "short_description": "" } ], - "docket_number": "7:19-cv-00150" + "docket_number": "7:19-cv-00150", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DC", + "federal_dn_judge_initials_referred": "RCG", + "federal_dn_office_code": "7" } ], "email_recipients": [ diff --git a/tests/examples/pacer/rss_feeds/ca10.json b/tests/examples/pacer/rss_feeds/ca10.json index 9430de98c..befe51415 100644 --- a/tests/examples/pacer/rss_feeds/ca10.json +++ b/tests/examples/pacer/rss_feeds/ca10.json @@ -21,6 +21,11 @@ } ], "docket_number": "19-8054", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -53,6 +58,11 @@ } ], "docket_number": "21-9589", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -85,6 +95,11 @@ } ], "docket_number": "22-1120", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -117,6 +132,11 @@ } ], "docket_number": "22-1298", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -149,6 +169,11 @@ } ], "docket_number": "22-8039", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -181,6 +206,11 @@ } ], "docket_number": "21-9568", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", diff --git a/tests/examples/pacer/rss_feeds/ca11.json b/tests/examples/pacer/rss_feeds/ca11.json index 9549f66a2..f943e95e0 100644 --- a/tests/examples/pacer/rss_feeds/ca11.json +++ b/tests/examples/pacer/rss_feeds/ca11.json @@ -21,6 +21,11 @@ } ], "docket_number": "21-14262", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -53,6 +58,11 @@ } ], "docket_number": "22-11012", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -85,6 +95,11 @@ } ], "docket_number": "21-10390", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -117,6 +132,11 @@ } ], "docket_number": "22-10567", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -149,6 +169,11 @@ } ], "docket_number": "22-10762", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -181,6 +206,11 @@ } ], "docket_number": "22-11811", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -213,6 +243,11 @@ } ], "docket_number": "22-10942", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -245,6 +280,11 @@ } ], "docket_number": "21-12788", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -277,6 +317,11 @@ } ], "docket_number": "21-12995", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -309,6 +354,11 @@ } ], "docket_number": "19-14387", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", diff --git a/tests/examples/pacer/rss_feeds/ca2_1.json b/tests/examples/pacer/rss_feeds/ca2_1.json index 900aacc06..473714b3f 100644 --- a/tests/examples/pacer/rss_feeds/ca2_1.json +++ b/tests/examples/pacer/rss_feeds/ca2_1.json @@ -21,6 +21,11 @@ } ], "docket_number": "22-3054", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -53,6 +58,11 @@ } ], "docket_number": "22-1495", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -85,6 +95,11 @@ } ], "docket_number": "22-1406", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -117,6 +132,11 @@ } ], "docket_number": "22-1684", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", diff --git a/tests/examples/pacer/rss_feeds/ca4_1.json b/tests/examples/pacer/rss_feeds/ca4_1.json index 57577edd8..bce4daa45 100644 --- a/tests/examples/pacer/rss_feeds/ca4_1.json +++ b/tests/examples/pacer/rss_feeds/ca4_1.json @@ -21,6 +21,11 @@ } ], "docket_number": "11-8", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -53,6 +58,11 @@ } ], "docket_number": "23-6105", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -85,6 +95,11 @@ } ], "docket_number": "23-1124", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -117,6 +132,11 @@ } ], "docket_number": "23-6106", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -149,6 +169,11 @@ } ], "docket_number": "23-4060", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -181,6 +206,11 @@ } ], "docket_number": "22-7158", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -213,6 +243,11 @@ } ], "docket_number": "22-4492", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -245,6 +280,11 @@ } ], "docket_number": "23-1124", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -277,6 +317,11 @@ } ], "docket_number": "20-4482", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -309,6 +354,11 @@ } ], "docket_number": "22-1027", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -341,6 +391,11 @@ } ], "docket_number": "22-2033", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -373,6 +428,11 @@ } ], "docket_number": "23-4014", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -405,6 +465,11 @@ } ], "docket_number": "23-4018", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -437,6 +502,11 @@ } ], "docket_number": "21-1230", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -469,6 +539,11 @@ } ], "docket_number": "23-4014", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -501,6 +576,11 @@ } ], "docket_number": "21-4374", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -533,6 +613,11 @@ } ], "docket_number": "22-4300", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -565,6 +650,11 @@ } ], "docket_number": "22-1257", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -597,6 +687,11 @@ } ], "docket_number": "23-1057", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -629,6 +724,11 @@ } ], "docket_number": "22-1257", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", diff --git a/tests/examples/pacer/rss_feeds/ca6.json b/tests/examples/pacer/rss_feeds/ca6.json index 28abe0c0a..b7bb6123e 100644 --- a/tests/examples/pacer/rss_feeds/ca6.json +++ b/tests/examples/pacer/rss_feeds/ca6.json @@ -21,6 +21,11 @@ } ], "docket_number": "23-1104", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -53,6 +58,11 @@ } ], "docket_number": "21-1611", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -85,6 +95,11 @@ } ], "docket_number": "21-5984", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -117,6 +132,11 @@ } ], "docket_number": "22-3439", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -149,6 +169,11 @@ } ], "docket_number": "21-1845", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -181,6 +206,11 @@ } ], "docket_number": "21-3753", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -213,6 +243,11 @@ } ], "docket_number": "22-2151", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -245,6 +280,11 @@ } ], "docket_number": "22-5847", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -277,6 +317,11 @@ } ], "docket_number": "22-5928", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", diff --git a/tests/examples/pacer/rss_feeds/cadc.json b/tests/examples/pacer/rss_feeds/cadc.json index 853625c30..3d7daa7ea 100644 --- a/tests/examples/pacer/rss_feeds/cadc.json +++ b/tests/examples/pacer/rss_feeds/cadc.json @@ -21,6 +21,11 @@ } ], "docket_number": "22-1214", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -53,6 +58,11 @@ } ], "docket_number": "22-1315", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -85,6 +95,11 @@ } ], "docket_number": "23-3014", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -117,6 +132,11 @@ } ], "docket_number": "22-7131", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -149,6 +169,11 @@ } ], "docket_number": "22-5043", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -181,6 +206,11 @@ } ], "docket_number": "23-7009", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -213,6 +243,11 @@ } ], "docket_number": "23-7013", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -245,6 +280,11 @@ } ], "docket_number": "22-7061", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -277,6 +317,11 @@ } ], "docket_number": "22-5330", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -309,6 +354,11 @@ } ], "docket_number": "22-1271", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -341,6 +391,11 @@ } ], "docket_number": "22-1302", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -373,6 +428,11 @@ } ], "docket_number": "22-1303", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -405,6 +465,11 @@ } ], "docket_number": "22-7114", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", diff --git a/tests/examples/pacer/rss_feeds/cafc.json b/tests/examples/pacer/rss_feeds/cafc.json index 2ca0d2df7..e156cd3ee 100644 --- a/tests/examples/pacer/rss_feeds/cafc.json +++ b/tests/examples/pacer/rss_feeds/cafc.json @@ -21,6 +21,11 @@ } ], "docket_number": "20-1140", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -53,6 +58,11 @@ } ], "docket_number": "20-1140", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", diff --git a/tests/examples/pacer/rss_feeds/mdb_1.json b/tests/examples/pacer/rss_feeds/mdb_1.json index 31694fd1e..1166ab8a9 100644 --- a/tests/examples/pacer/rss_feeds/mdb_1.json +++ b/tests/examples/pacer/rss_feeds/mdb_1.json @@ -21,6 +21,11 @@ } ], "docket_number": "18-00079", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -53,6 +58,11 @@ } ], "docket_number": "18-90003", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", diff --git a/tests/examples/pacer/rss_feeds/mdb_2.json b/tests/examples/pacer/rss_feeds/mdb_2.json index 115b866b9..75d34f385 100644 --- a/tests/examples/pacer/rss_feeds/mdb_2.json +++ b/tests/examples/pacer/rss_feeds/mdb_2.json @@ -21,6 +21,11 @@ } ], "docket_number": "18-00079", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", diff --git a/tests/examples/pacer/rss_feeds/nyed_1.json b/tests/examples/pacer/rss_feeds/nyed_1.json index 8d1286414..eeaaed22d 100644 --- a/tests/examples/pacer/rss_feeds/nyed_1.json +++ b/tests/examples/pacer/rss_feeds/nyed_1.json @@ -21,6 +21,11 @@ } ], "docket_number": "1:17-cr-00554", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -53,6 +58,11 @@ } ], "docket_number": "1:12-cv-04402", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -85,6 +95,11 @@ } ], "docket_number": "1:16-cv-05836", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -117,6 +132,11 @@ } ], "docket_number": "1:17-cv-02925", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -149,6 +169,11 @@ } ], "docket_number": "1:97-cv-07285", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DLI", + "federal_dn_judge_initials_referred": "RML", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -181,6 +206,11 @@ } ], "docket_number": "1:17-cv-07547", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ENV", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -213,6 +243,11 @@ } ], "docket_number": "1:18-cv-03026", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -245,6 +280,11 @@ } ], "docket_number": "1:17-cv-04295", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "RER", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -277,6 +317,11 @@ } ], "docket_number": "1:18-cv-02857", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -309,6 +354,11 @@ } ], "docket_number": "1:17-cv-07252", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FB", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -341,6 +391,11 @@ } ], "docket_number": "1:17-cv-03787", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -373,6 +428,11 @@ } ], "docket_number": "1:18-cv-03025", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -405,6 +465,11 @@ } ], "docket_number": "2:17-cv-04327", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -437,6 +502,11 @@ } ], "docket_number": "1:17-cv-05317", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AMD", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -469,6 +539,11 @@ } ], "docket_number": "1:17-cv-07583", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -501,6 +576,11 @@ } ], "docket_number": "1:18-cv-03024", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -533,6 +613,11 @@ } ], "docket_number": "1:18-cv-02543", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -565,6 +650,11 @@ } ], "docket_number": "1:16-cv-01183", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FB", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -597,6 +687,11 @@ } ], "docket_number": "1:17-cv-05273", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ILG", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -629,6 +724,11 @@ } ], "docket_number": "1:17-cv-07395", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -661,6 +761,11 @@ } ], "docket_number": "1:17-cv-05041", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ILG", + "federal_dn_judge_initials_referred": "RER", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -693,6 +798,11 @@ } ], "docket_number": "1:14-cv-03694", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJ", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -725,6 +835,11 @@ } ], "docket_number": "1:16-cv-02941", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -757,6 +872,11 @@ } ], "docket_number": "1:17-cv-05003", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -789,6 +909,11 @@ } ], "docket_number": "1:18-cv-03023", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -821,6 +946,11 @@ } ], "docket_number": "1:17-cv-02239", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -853,6 +983,11 @@ } ], "docket_number": "1:17-cv-04714", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ILG", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -885,6 +1020,11 @@ } ], "docket_number": "1:17-cv-03053", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -917,6 +1057,11 @@ } ], "docket_number": "1:17-cv-04904", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RLM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -949,6 +1094,11 @@ } ], "docket_number": "1:17-cv-07063", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -981,6 +1131,11 @@ } ], "docket_number": "2:17-cv-04763", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": "GRB", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1013,6 +1168,11 @@ } ], "docket_number": "2:17-cv-04978", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "GRB", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1045,6 +1205,11 @@ } ], "docket_number": "1:14-cv-02379", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1077,6 +1242,11 @@ } ], "docket_number": "1:18-cv-02804", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ERK", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1109,6 +1279,11 @@ } ], "docket_number": "1:12-cv-06024", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1141,6 +1316,11 @@ } ], "docket_number": "1:13-cv-00586", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1173,6 +1353,11 @@ } ], "docket_number": "1:12-md-02331", + "federal_defendant_number": null, + "federal_dn_case_type": "md", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1205,6 +1390,11 @@ } ], "docket_number": "1:17-cv-02388", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1237,6 +1427,11 @@ } ], "docket_number": "1:18-cv-02243", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1269,6 +1464,11 @@ } ], "docket_number": "1:18-cv-02654", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "SMG", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1301,6 +1501,11 @@ } ], "docket_number": "2:15-cv-04064", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1333,6 +1538,11 @@ } ], "docket_number": "1:17-cv-04601", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": "RER", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1365,6 +1575,11 @@ } ], "docket_number": "1:18-cv-00165", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "SMG", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1397,6 +1612,11 @@ } ], "docket_number": "1:15-cv-07279", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NG", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1429,6 +1649,11 @@ } ], "docket_number": "1:18-cv-03022", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1461,6 +1686,11 @@ } ], "docket_number": "1:13-cr-00695", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1493,6 +1723,11 @@ } ], "docket_number": "1:17-cv-06504", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "SMG", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1525,6 +1760,11 @@ } ], "docket_number": "2:16-cv-02951", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1557,6 +1797,11 @@ } ], "docket_number": "2:18-cv-02373", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1589,6 +1834,11 @@ } ], "docket_number": "2:14-cv-04020", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AKT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1621,6 +1871,11 @@ } ], "docket_number": "2:13-cv-03184", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ARL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1653,6 +1908,11 @@ } ], "docket_number": "2:17-cv-03618", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1685,6 +1945,11 @@ } ], "docket_number": "2:15-cv-06698", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JMA", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1717,6 +1982,11 @@ } ], "docket_number": "2:16-cv-04164", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1749,6 +2019,11 @@ } ], "docket_number": "2:15-cv-03620", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1781,6 +2056,11 @@ } ], "docket_number": "1:17-cv-05521", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1813,6 +2093,11 @@ } ], "docket_number": "1:15-cv-07236", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ERK", + "federal_dn_judge_initials_referred": "RML", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1845,6 +2130,11 @@ } ], "docket_number": "1:18-cv-03020", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1877,6 +2167,11 @@ } ], "docket_number": "1:18-cv-01766", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LDH", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1909,6 +2204,11 @@ } ], "docket_number": "1:18-cv-00667", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CLP", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1941,6 +2241,11 @@ } ], "docket_number": "1:17-cv-04562", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1973,6 +2278,11 @@ } ], "docket_number": "1:16-cv-07103", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "RML", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2005,6 +2315,11 @@ } ], "docket_number": "1:17-cv-03706", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CBA", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2037,6 +2352,11 @@ } ], "docket_number": "1:17-cr-00390", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2069,6 +2389,11 @@ } ], "docket_number": "1:17-cv-07290", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NG", + "federal_dn_judge_initials_referred": "RML", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2101,6 +2426,11 @@ } ], "docket_number": "2:18-cv-03021", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2133,6 +2463,11 @@ } ], "docket_number": "1:18-cv-01176", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "RML", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2165,6 +2500,11 @@ } ], "docket_number": "1:18-cv-01135", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2197,6 +2537,11 @@ } ], "docket_number": "2:16-cv-01603", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LDH", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2229,6 +2574,11 @@ } ], "docket_number": "1:18-cv-01176", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "RML", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2261,6 +2611,11 @@ } ], "docket_number": "1:18-cv-00619", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2293,6 +2648,11 @@ } ], "docket_number": "1:18-cv-00605", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2325,6 +2685,11 @@ } ], "docket_number": "1:17-cv-02123", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": "SMG", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2357,6 +2722,11 @@ } ], "docket_number": "2:18-cv-00613", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2389,6 +2759,11 @@ } ], "docket_number": "1:17-cv-03475", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "RML", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2421,6 +2796,11 @@ } ], "docket_number": "2:17-cv-06029", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2453,6 +2833,11 @@ } ], "docket_number": "1:17-cv-03475", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "RML", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2485,6 +2870,11 @@ } ], "docket_number": "2:17-cv-05513", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2517,6 +2907,11 @@ } ], "docket_number": "1:17-cv-04012", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LDH", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2549,6 +2944,11 @@ } ], "docket_number": "1:15-cr-00333", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JMA", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2581,6 +2981,11 @@ } ], "docket_number": "1:12-cv-03141", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LDH", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2613,6 +3018,11 @@ } ], "docket_number": "2:15-cv-01818", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JMA", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2645,6 +3055,11 @@ } ], "docket_number": "1:16-cv-04737", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2677,6 +3092,11 @@ } ], "docket_number": "2:16-cv-04833", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2709,6 +3129,11 @@ } ], "docket_number": "1:18-cv-01550", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ENV", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2741,6 +3166,11 @@ } ], "docket_number": "1:14-cv-06806", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2773,6 +3203,11 @@ } ], "docket_number": "2:17-cv-06074", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2805,6 +3240,11 @@ } ], "docket_number": "1:18-cv-03019", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2837,6 +3277,11 @@ } ], "docket_number": "1:17-cv-07407", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ILG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2869,6 +3314,11 @@ } ], "docket_number": "1:16-cv-00834", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2901,6 +3351,11 @@ } ], "docket_number": "2:17-cv-06006", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2933,6 +3388,11 @@ } ], "docket_number": "2:18-cv-00598", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "GRB", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2965,6 +3425,11 @@ } ], "docket_number": "1:13-cv-04191", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ENV", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2997,6 +3462,11 @@ } ], "docket_number": "1:14-cv-06945", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AMD", + "federal_dn_judge_initials_referred": "RER", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3029,6 +3499,11 @@ } ], "docket_number": "1:17-cv-06406", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FB", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3061,6 +3536,11 @@ } ], "docket_number": "2:17-cv-02794", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3093,6 +3573,11 @@ } ], "docket_number": "2:16-cv-07034", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3125,6 +3610,11 @@ } ], "docket_number": "1:16-cv-03579", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LDH", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3157,6 +3647,11 @@ } ], "docket_number": "1:17-cv-04739", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JBW", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3189,6 +3684,11 @@ } ], "docket_number": "2:17-cv-01454", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3221,6 +3721,11 @@ } ], "docket_number": "1:18-mc-00004", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "UAD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3253,6 +3758,11 @@ } ], "docket_number": "1:18-cv-01933", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ARR", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3285,6 +3795,11 @@ } ], "docket_number": "2:18-cv-00395", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3317,6 +3832,11 @@ } ], "docket_number": "1:17-cv-04909", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3349,6 +3869,11 @@ } ], "docket_number": "1:15-cv-03880", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NG", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3381,6 +3906,11 @@ } ], "docket_number": "2:16-cv-02184", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3413,6 +3943,11 @@ } ], "docket_number": "1:16-cv-04502", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ARR", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3445,6 +3980,11 @@ } ], "docket_number": "1:16-cv-04753", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ENV", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3477,6 +4017,11 @@ } ], "docket_number": "2:15-cv-02925", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3509,6 +4054,11 @@ } ], "docket_number": "1:18-cv-03018", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3541,6 +4091,11 @@ } ], "docket_number": "1:17-cv-03053", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3573,6 +4128,11 @@ } ], "docket_number": "2:15-cv-02951", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3605,6 +4165,11 @@ } ], "docket_number": "2:18-cv-01041", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3637,6 +4202,11 @@ } ], "docket_number": "1:18-cv-01546", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3669,6 +4239,11 @@ } ], "docket_number": "2:17-cv-03831", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3701,6 +4276,11 @@ } ], "docket_number": "1:18-cv-03017", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3733,6 +4313,11 @@ } ], "docket_number": "2:18-cv-01041", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3765,6 +4350,11 @@ } ], "docket_number": "1:15-cv-06228", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3797,6 +4387,11 @@ } ], "docket_number": "2:13-cr-00186", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3829,6 +4424,11 @@ } ], "docket_number": "1:18-cv-02447", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3861,6 +4461,11 @@ } ], "docket_number": "1:18-cv-02188", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3893,6 +4498,11 @@ } ], "docket_number": "2:17-cv-06601", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3925,6 +4535,11 @@ } ], "docket_number": "2:18-cv-00979", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3957,6 +4572,11 @@ } ], "docket_number": "2:18-cr-00239", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3989,6 +4609,11 @@ } ], "docket_number": "1:14-cv-01088", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4021,6 +4646,11 @@ } ], "docket_number": "1:18-cv-01546", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4053,6 +4683,11 @@ } ], "docket_number": "2:18-cv-00705", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4085,6 +4720,11 @@ } ], "docket_number": "2:14-cv-06647", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4117,6 +4757,11 @@ } ], "docket_number": "2:18-cv-00395", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4149,6 +4794,11 @@ } ], "docket_number": "2:18-cv-02507", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JMA", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4181,6 +4831,11 @@ } ], "docket_number": "2:18-cv-01479", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4213,6 +4868,11 @@ } ], "docket_number": "1:16-cv-05674", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DLI", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4245,6 +4905,11 @@ } ], "docket_number": "1:18-cv-02182", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4277,6 +4942,11 @@ } ], "docket_number": "2:17-cv-07201", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4309,6 +4979,11 @@ } ], "docket_number": "1:18-cv-01280", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ENV", + "federal_dn_judge_initials_referred": "SMG", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4341,6 +5016,11 @@ } ], "docket_number": "2:17-cv-07077", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4373,6 +5053,11 @@ } ], "docket_number": "1:17-cv-03938", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4405,6 +5090,11 @@ } ], "docket_number": "1:18-cv-00398", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4437,6 +5127,11 @@ } ], "docket_number": "1:18-cv-02713", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4469,6 +5164,11 @@ } ], "docket_number": "2:11-cv-03655", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4501,6 +5201,11 @@ } ], "docket_number": "2:18-cv-03014", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4533,6 +5238,11 @@ } ], "docket_number": "1:18-cv-01126", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AMD", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4565,6 +5275,11 @@ } ], "docket_number": "1:18-mc-00004", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "UAD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4597,6 +5312,11 @@ } ], "docket_number": "1:17-cv-00547", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJ", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4629,6 +5349,11 @@ } ], "docket_number": "1:18-cv-00272", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CBA", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4661,6 +5386,11 @@ } ], "docket_number": "1:17-cv-06729", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4693,6 +5423,11 @@ } ], "docket_number": "1:18-cv-02442", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJ", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4725,6 +5460,11 @@ } ], "docket_number": "2:18-cv-01579", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "GRB", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4757,6 +5497,11 @@ } ], "docket_number": "1:18-cv-02179", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ERK", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4789,6 +5534,11 @@ } ], "docket_number": "2:14-cv-05924", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SIL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4821,6 +5571,11 @@ } ], "docket_number": "2:15-cv-00990", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SIL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4853,6 +5608,11 @@ } ], "docket_number": "1:18-cv-01102", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": "SMG", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4885,6 +5645,11 @@ } ], "docket_number": "1:18-cv-02509", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CBA", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4917,6 +5682,11 @@ } ], "docket_number": "1:17-cr-00664", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JBW", + "federal_dn_judge_initials_referred": "RER", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4949,6 +5719,11 @@ } ], "docket_number": "1:17-cr-00664", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JBW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4981,6 +5756,11 @@ } ], "docket_number": "1:17-cr-00664", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JBW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5013,6 +5793,11 @@ } ], "docket_number": "2:16-cv-04596", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5045,6 +5830,11 @@ } ], "docket_number": "1:17-cv-01168", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5077,6 +5867,11 @@ } ], "docket_number": "2:18-cv-01475", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5109,6 +5904,11 @@ } ], "docket_number": "1:17-cv-01311", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5141,6 +5941,11 @@ } ], "docket_number": "1:18-cv-02968", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5173,6 +5978,11 @@ } ], "docket_number": "1:18-cv-00356", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5205,6 +6015,11 @@ } ], "docket_number": "1:18-cv-03013", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5237,6 +6052,11 @@ } ], "docket_number": "1:17-cv-07369", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DLI", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5269,6 +6089,11 @@ } ], "docket_number": "2:15-cv-03562", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LDW", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5301,6 +6126,11 @@ } ], "docket_number": "2:15-cv-01818", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JMA", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5333,6 +6163,11 @@ } ], "docket_number": "1:18-cv-03012", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5365,6 +6200,11 @@ } ], "docket_number": "1:18-cv-01236", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5397,6 +6237,11 @@ } ], "docket_number": "1:18-cv-01830", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AMD", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5429,6 +6274,11 @@ } ], "docket_number": "1:17-cv-05205", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "RER", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5461,6 +6311,11 @@ } ], "docket_number": "1:18-cv-01135", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5493,6 +6348,11 @@ } ], "docket_number": "1:18-cv-01126", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AMD", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5525,6 +6385,11 @@ } ], "docket_number": "2:15-cv-00347", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CBA", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5557,6 +6422,11 @@ } ], "docket_number": "2:18-cv-03011", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5589,6 +6459,11 @@ } ], "docket_number": "1:00-cv-00858", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5621,6 +6496,11 @@ } ], "docket_number": "2:18-cv-03010", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5653,6 +6533,11 @@ } ], "docket_number": "1:17-cv-06565", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ARR", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5685,6 +6570,11 @@ } ], "docket_number": "1:00-cv-00858", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5717,6 +6607,11 @@ } ], "docket_number": "1:18-cv-01698", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5749,6 +6644,11 @@ } ], "docket_number": "1:17-cv-06414", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5781,6 +6681,11 @@ } ], "docket_number": "1:17-cv-06329", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5813,6 +6718,11 @@ } ], "docket_number": "2:18-cv-03009", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5845,6 +6755,11 @@ } ], "docket_number": "1:18-cv-00039", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5877,6 +6792,11 @@ } ], "docket_number": "1:16-cv-03008", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LDH", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5909,6 +6829,11 @@ } ], "docket_number": "1:17-cv-01633", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RER", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5941,6 +6866,11 @@ } ], "docket_number": "1:15-cv-05867", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5973,6 +6903,11 @@ } ], "docket_number": "1:17-cv-04322", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6005,6 +6940,11 @@ } ], "docket_number": "2:16-cv-03746", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6037,6 +6977,11 @@ } ], "docket_number": "1:17-cr-00664", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JBW", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6069,6 +7014,11 @@ } ], "docket_number": "2:14-cv-05863", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6101,6 +7051,11 @@ } ], "docket_number": "1:18-cv-00579", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6133,6 +7088,11 @@ } ], "docket_number": "1:18-cv-00579", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6165,6 +7125,11 @@ } ], "docket_number": "1:16-cv-06622", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6197,6 +7162,11 @@ } ], "docket_number": "1:17-cv-07503", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6229,6 +7199,11 @@ } ], "docket_number": "2:17-cv-06487", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6261,6 +7236,11 @@ } ], "docket_number": "1:16-cv-03029", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6293,6 +7273,11 @@ } ], "docket_number": "2:05-cv-04228", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6325,6 +7310,11 @@ } ], "docket_number": "2:05-cv-04177", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6357,6 +7347,11 @@ } ], "docket_number": "2:05-cv-04170", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6389,6 +7384,11 @@ } ], "docket_number": "2:05-cv-04090", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6421,6 +7421,11 @@ } ], "docket_number": "2:05-cv-03923", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6453,6 +7458,11 @@ } ], "docket_number": "1:16-cv-03029", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6485,6 +7495,11 @@ } ], "docket_number": "2:16-cv-04982", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JMA", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6517,6 +7532,11 @@ } ], "docket_number": "2:18-cv-03007", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": "GRB", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6549,6 +7569,11 @@ } ], "docket_number": "1:16-cv-06722", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6581,6 +7606,11 @@ } ], "docket_number": "1:16-cv-03029", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6613,6 +7643,11 @@ } ], "docket_number": "1:17-cv-05566", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CBA", + "federal_dn_judge_initials_referred": "SMG", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6645,6 +7680,11 @@ } ], "docket_number": "1:18-cv-01108", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6677,6 +7717,11 @@ } ], "docket_number": "1:17-cv-05398", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NG", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6709,6 +7754,11 @@ } ], "docket_number": "1:17-cv-02596", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RLM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6741,6 +7791,11 @@ } ], "docket_number": "1:17-cv-04563", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ERK", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6773,6 +7828,11 @@ } ], "docket_number": "1:18-cv-02807", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NG", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6805,6 +7865,11 @@ } ], "docket_number": "1:17-cv-00872", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6837,6 +7902,11 @@ } ], "docket_number": "1:15-cv-06119", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6869,6 +7939,11 @@ } ], "docket_number": "1:15-cv-06228", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6901,6 +7976,11 @@ } ], "docket_number": "1:17-cv-04016", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ILG", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6933,6 +8013,11 @@ } ], "docket_number": "1:18-cv-01112", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ILG", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6965,6 +8050,11 @@ } ], "docket_number": "1:18-cv-02921", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6997,6 +8087,11 @@ } ], "docket_number": "2:18-cv-03005", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7029,6 +8124,11 @@ } ], "docket_number": "2:17-cv-04897", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7061,6 +8161,11 @@ } ], "docket_number": "1:17-cv-02518", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PK", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7093,6 +8198,11 @@ } ], "docket_number": "1:18-cv-01409", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RLM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7125,6 +8235,11 @@ } ], "docket_number": "1:16-cv-02914", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7157,6 +8272,11 @@ } ], "docket_number": "1:15-cv-06228", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7189,6 +8309,11 @@ } ], "docket_number": "1:17-cv-05655", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JBW", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7221,6 +8346,11 @@ } ], "docket_number": "1:18-cv-01009", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LDH", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7253,6 +8383,11 @@ } ], "docket_number": "2:18-cv-01380", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7285,6 +8420,11 @@ } ], "docket_number": "2:16-cv-01545", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "GRB", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7317,6 +8457,11 @@ } ], "docket_number": "1:17-cv-06198", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "RER", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7349,6 +8494,11 @@ } ], "docket_number": "1:18-cv-00361", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JBW", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7381,6 +8531,11 @@ } ], "docket_number": "2:15-cv-07439", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7413,6 +8568,11 @@ } ], "docket_number": "1:18-cv-02993", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ARR", + "federal_dn_judge_initials_referred": "RML", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7445,6 +8605,11 @@ } ], "docket_number": "1:12-cv-06440", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7477,6 +8642,11 @@ } ], "docket_number": "2:17-cr-00093", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "JMA", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7509,6 +8679,11 @@ } ], "docket_number": "1:17-cv-02679", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7541,6 +8716,11 @@ } ], "docket_number": "1:18-cv-00590", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7573,6 +8753,11 @@ } ], "docket_number": "1:18-cv-02089", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7605,6 +8790,11 @@ } ], "docket_number": "1:17-cv-05739", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7637,6 +8827,11 @@ } ], "docket_number": "1:17-cv-04109", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "KAM", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7669,6 +8864,11 @@ } ], "docket_number": "1:18-cv-02959", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7701,6 +8901,11 @@ } ], "docket_number": "1:16-cv-04689", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7733,6 +8938,11 @@ } ], "docket_number": "1:18-cv-01850", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7765,6 +8975,11 @@ } ], "docket_number": "1:18-cv-02956", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7797,6 +9012,11 @@ } ], "docket_number": "1:14-cr-00042", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "SJ", + "federal_dn_judge_initials_referred": "RML", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7829,6 +9049,11 @@ } ], "docket_number": "1:12-cv-05567", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7861,6 +9086,11 @@ } ], "docket_number": "1:18-cv-00853", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "RML", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7893,6 +9123,11 @@ } ], "docket_number": "2:14-cv-02719", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AYS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7925,6 +9160,11 @@ } ], "docket_number": "1:16-cv-06942", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7957,6 +9197,11 @@ } ], "docket_number": "2:18-cv-02974", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7989,6 +9234,11 @@ } ], "docket_number": "2:18-cv-01309", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NG", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8021,6 +9271,11 @@ } ], "docket_number": "1:18-cv-02478", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ERK", + "federal_dn_judge_initials_referred": "SMG", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8053,6 +9308,11 @@ } ], "docket_number": "2:17-cv-06214", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "GRB", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8085,6 +9345,11 @@ } ], "docket_number": "2:16-cv-05642", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "GRB", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8117,6 +9382,11 @@ } ], "docket_number": "1:18-cv-00844", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AMD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8149,6 +9419,11 @@ } ], "docket_number": "2:18-cv-02825", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "GRB", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8181,6 +9456,11 @@ } ], "docket_number": "2:12-cv-04460", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8213,6 +9493,11 @@ } ], "docket_number": "2:17-cv-01752", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8245,6 +9530,11 @@ } ], "docket_number": "1:18-cv-00729", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8277,6 +9567,11 @@ } ], "docket_number": "1:17-cv-04448", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8309,6 +9604,11 @@ } ], "docket_number": "2:17-cv-06957", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8341,6 +9641,11 @@ } ], "docket_number": "2:17-cv-06956", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8373,6 +9678,11 @@ } ], "docket_number": "2:17-cr-00522", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "GRB", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8405,6 +9715,11 @@ } ], "docket_number": "1:17-cv-03931", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CLP", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8437,6 +9752,11 @@ } ], "docket_number": "1:17-cv-04001", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8469,6 +9789,11 @@ } ], "docket_number": "1:17-cv-07213", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NG", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8501,6 +9826,11 @@ } ], "docket_number": "2:18-cv-01914", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8533,6 +9863,11 @@ } ], "docket_number": "1:18-cv-01050", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8565,6 +9900,11 @@ } ], "docket_number": "1:18-cv-01481", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ARR", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8597,6 +9937,11 @@ } ], "docket_number": "2:17-cv-04698", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8629,6 +9974,11 @@ } ], "docket_number": "1:16-cv-00200", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "LB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8661,6 +10011,11 @@ } ], "docket_number": "2:17-cv-07168", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JMA", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8693,6 +10048,11 @@ } ], "docket_number": "2:16-cv-05211", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8725,6 +10085,11 @@ } ], "docket_number": "2:17-cv-05225", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8757,6 +10122,11 @@ } ], "docket_number": "2:15-cv-02024", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8789,6 +10159,11 @@ } ], "docket_number": "1:18-mc-01409", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "RLM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8821,6 +10196,11 @@ } ], "docket_number": "1:16-cv-05633", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ARR", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8853,6 +10233,11 @@ } ], "docket_number": "1:14-cr-00435", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8885,6 +10270,11 @@ } ], "docket_number": "1:17-cv-05958", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ARR", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8917,6 +10307,11 @@ } ], "docket_number": "1:16-cv-00541", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8949,6 +10344,11 @@ } ], "docket_number": "2:18-cv-02239", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "GRB", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8981,6 +10381,11 @@ } ], "docket_number": "1:17-cv-02906", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DLI", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9013,6 +10418,11 @@ } ], "docket_number": "1:17-cv-06858", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CBA", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9045,6 +10455,11 @@ } ], "docket_number": "1:16-cv-06703", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WFK", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9077,6 +10492,11 @@ } ], "docket_number": "1:18-cv-01827", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ARR", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9109,6 +10529,11 @@ } ], "docket_number": "1:18-cv-02879", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9141,6 +10566,11 @@ } ], "docket_number": "2:17-cv-04415", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "GRB", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9173,6 +10603,11 @@ } ], "docket_number": "2:18-cv-00031", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "ARL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9205,6 +10640,11 @@ } ], "docket_number": "2:14-cr-00221", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9237,6 +10677,11 @@ } ], "docket_number": "2:17-cv-07357", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9269,6 +10714,11 @@ } ], "docket_number": "1:17-cv-04574", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9301,6 +10751,11 @@ } ], "docket_number": "2:15-cv-06004", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SIL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9333,6 +10788,11 @@ } ], "docket_number": "1:14-cv-03725", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RER", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9365,6 +10825,11 @@ } ], "docket_number": "1:16-cv-00644", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9397,6 +10862,11 @@ } ], "docket_number": "2:15-cv-06692", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SIL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9429,6 +10899,11 @@ } ], "docket_number": "2:17-cr-00603", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9461,6 +10936,11 @@ } ], "docket_number": "1:17-cv-03041", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": "CLP", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9493,6 +10973,11 @@ } ], "docket_number": "1:18-cv-02435", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "BMC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9525,6 +11010,11 @@ } ], "docket_number": "1:18-cv-02445", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9557,6 +11047,11 @@ } ], "docket_number": "1:17-cv-05849", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JBW", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9589,6 +11084,11 @@ } ], "docket_number": "2:17-cv-07325", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9621,6 +11121,11 @@ } ], "docket_number": "1:17-cv-04931", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AMD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9653,6 +11158,11 @@ } ], "docket_number": "2:17-cv-06578", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9685,6 +11195,11 @@ } ], "docket_number": "2:17-cv-02722", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9717,6 +11232,11 @@ } ], "docket_number": "2:18-cv-02851", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "GRB", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9749,6 +11269,11 @@ } ], "docket_number": "1:16-cv-01465", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AMD", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9781,6 +11306,11 @@ } ], "docket_number": "1:18-cv-00361", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JBW", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9813,6 +11343,11 @@ } ], "docket_number": "1:17-cv-02303", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RJD", + "federal_dn_judge_initials_referred": "SMG", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9845,6 +11380,11 @@ } ], "docket_number": "2:18-cv-01370", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9877,6 +11417,11 @@ } ], "docket_number": "1:14-cv-06377", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SMG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9909,6 +11454,11 @@ } ], "docket_number": "1:16-cv-01238", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CBA", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9941,6 +11491,11 @@ } ], "docket_number": "2:17-cv-06011", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9973,6 +11528,11 @@ } ], "docket_number": "2:16-cv-02833", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10005,6 +11565,11 @@ } ], "docket_number": "2:17-cv-06980", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10037,6 +11602,11 @@ } ], "docket_number": "1:17-cv-05779", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FB", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10069,6 +11639,11 @@ } ], "docket_number": "1:17-cv-04223", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FB", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10101,6 +11676,11 @@ } ], "docket_number": "1:15-cr-00300", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "CBA", + "federal_dn_judge_initials_referred": "SMG", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10133,6 +11713,11 @@ } ], "docket_number": "1:18-cv-00415", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10165,6 +11750,11 @@ } ], "docket_number": "1:10-cr-00490", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "FB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10197,6 +11787,11 @@ } ], "docket_number": "2:14-cv-04424", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ADS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10229,6 +11824,11 @@ } ], "docket_number": "2:17-cv-06888", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10261,6 +11861,11 @@ } ], "docket_number": "1:17-cv-00755", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LDH", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10293,6 +11898,11 @@ } ], "docket_number": "1:17-cv-00283", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DLI", + "federal_dn_judge_initials_referred": "RLM", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10325,6 +11935,11 @@ } ], "docket_number": "2:17-cv-06048", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10357,6 +11972,11 @@ } ], "docket_number": "1:18-cv-00304", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FB", + "federal_dn_judge_initials_referred": "SMG", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10389,6 +12009,11 @@ } ], "docket_number": "1:17-cv-04873", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ERK", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10421,6 +12046,11 @@ } ], "docket_number": "1:17-cr-00251", + "federal_defendant_number": null, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "SJ", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10453,6 +12083,11 @@ } ], "docket_number": "1:14-cv-01088", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10485,6 +12120,11 @@ } ], "docket_number": "1:17-cv-07076", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "LDH", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10517,6 +12157,11 @@ } ], "docket_number": "2:17-cv-02758", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "DRH", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10549,6 +12194,11 @@ } ], "docket_number": "1:17-cv-04404", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10581,6 +12231,11 @@ } ], "docket_number": "2:16-cv-06970", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JMA", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10613,6 +12268,11 @@ } ], "docket_number": "1:17-cv-03964", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ARR", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10645,6 +12305,11 @@ } ], "docket_number": "2:16-cv-06100", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AYS", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10677,6 +12342,11 @@ } ], "docket_number": "1:17-cv-04052", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "NGG", + "federal_dn_judge_initials_referred": "RER", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10709,6 +12379,11 @@ } ], "docket_number": "2:18-cv-01445", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SJF", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10741,6 +12416,11 @@ } ], "docket_number": "2:16-cv-07161", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ENV", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10773,6 +12453,11 @@ } ], "docket_number": "1:18-mc-00005", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "JO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10805,6 +12490,11 @@ } ], "docket_number": "2:15-cv-04418", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "AYS", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10837,6 +12527,11 @@ } ], "docket_number": "2:17-cv-00818", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JMA", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10869,6 +12564,11 @@ } ], "docket_number": "2:18-cv-01479", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10901,6 +12601,11 @@ } ], "docket_number": "1:17-cv-01462", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10933,6 +12638,11 @@ } ], "docket_number": "2:17-cv-00455", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "RML", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10965,6 +12675,11 @@ } ], "docket_number": "2:17-cv-05067", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JFB", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10997,6 +12712,11 @@ } ], "docket_number": "2:18-cv-03004", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -11029,6 +12749,11 @@ } ], "docket_number": "1:14-cv-06377", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SMG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -11061,6 +12786,11 @@ } ], "docket_number": "1:14-cv-06377", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "SMG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -11093,6 +12823,11 @@ } ], "docket_number": "2:17-cv-06134", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": "SIL", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -11125,6 +12860,11 @@ } ], "docket_number": "1:15-cv-05867", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": "VMS", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -11157,6 +12897,11 @@ } ], "docket_number": "1:17-cv-07439", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "FB", + "federal_dn_judge_initials_referred": "SJB", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -11189,6 +12934,11 @@ } ], "docket_number": "1:17-cv-05116", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CBA", + "federal_dn_judge_initials_referred": "JO", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -11221,6 +12971,11 @@ } ], "docket_number": "2:17-cv-02530", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": "SMG", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -11253,6 +13008,11 @@ } ], "docket_number": "1:15-cv-06127", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MKB", + "federal_dn_judge_initials_referred": "RER", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -11285,6 +13045,11 @@ } ], "docket_number": "2:18-cv-01462", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JMA", + "federal_dn_judge_initials_referred": "AKT", + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -11317,6 +13082,11 @@ } ], "docket_number": "1:17-cv-03744", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PKC", + "federal_dn_judge_initials_referred": "RER", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -11349,6 +13119,11 @@ } ], "docket_number": "1:16-cv-04530", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "RRM", + "federal_dn_judge_initials_referred": "ST", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -11381,6 +13156,11 @@ } ], "docket_number": "1:18-cv-00590", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "JO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -11413,6 +13193,11 @@ } ], "docket_number": "1:16-cv-06561", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "ARR", + "federal_dn_judge_initials_referred": "PK", + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", diff --git a/tests/examples/pacer/rss_feeds/nysb_1.json b/tests/examples/pacer/rss_feeds/nysb_1.json index 6baec89a3..b6f06bab5 100644 --- a/tests/examples/pacer/rss_feeds/nysb_1.json +++ b/tests/examples/pacer/rss_feeds/nysb_1.json @@ -21,6 +21,11 @@ } ], "docket_number": "16-10992", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -53,6 +58,11 @@ } ], "docket_number": "18-22414", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -85,6 +95,11 @@ } ], "docket_number": "16-11390", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -117,6 +132,11 @@ } ], "docket_number": "17-13637", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -149,6 +169,11 @@ } ], "docket_number": "18-35642", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -181,6 +206,11 @@ } ], "docket_number": "18-35641", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -213,6 +243,11 @@ } ], "docket_number": "15-23469", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -245,6 +280,11 @@ } ], "docket_number": "18-35642", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -277,6 +317,11 @@ } ], "docket_number": "18-35642", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -309,6 +354,11 @@ } ], "docket_number": "18-35641", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -341,6 +391,11 @@ } ], "docket_number": "15-35825", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -373,6 +428,11 @@ } ], "docket_number": "15-35825", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -405,6 +465,11 @@ } ], "docket_number": "18-22449", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -437,6 +502,11 @@ } ], "docket_number": "17-10480", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mew", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -469,6 +539,11 @@ } ], "docket_number": "17-10480", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mew", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -501,6 +576,11 @@ } ], "docket_number": "18-10524", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "shl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -533,6 +613,11 @@ } ], "docket_number": "12-24155", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -565,6 +650,11 @@ } ], "docket_number": "18-11053", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mew", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -597,6 +687,11 @@ } ], "docket_number": "18-11053", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mew", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -629,6 +724,11 @@ } ], "docket_number": "18-35354", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -661,6 +761,11 @@ } ], "docket_number": "18-35354", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -693,6 +798,11 @@ } ], "docket_number": "17-13647", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkv", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -725,6 +835,11 @@ } ], "docket_number": "17-13647", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkv", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -757,6 +872,11 @@ } ], "docket_number": "17-23717", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -789,6 +909,11 @@ } ], "docket_number": "18-22259", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -821,6 +946,11 @@ } ], "docket_number": "18-22259", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -853,6 +983,11 @@ } ], "docket_number": "18-35640", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -885,6 +1020,11 @@ } ], "docket_number": "18-22259", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -917,6 +1057,11 @@ } ], "docket_number": "15-11158", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mew", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -949,6 +1094,11 @@ } ], "docket_number": "18-35640", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -981,6 +1131,11 @@ } ], "docket_number": "18-35640", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1013,6 +1168,11 @@ } ], "docket_number": "17-10123", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1045,6 +1205,11 @@ } ], "docket_number": "18-10964", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jlg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1077,6 +1242,11 @@ } ], "docket_number": "18-10947", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1109,6 +1279,11 @@ } ], "docket_number": "17-36000", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1141,6 +1316,11 @@ } ], "docket_number": "17-23974", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1173,6 +1353,11 @@ } ], "docket_number": "16-35015", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1205,6 +1390,11 @@ } ], "docket_number": "18-10753", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jlg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1237,6 +1427,11 @@ } ], "docket_number": "16-13491", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1269,6 +1464,11 @@ } ], "docket_number": "16-12835", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1301,6 +1501,11 @@ } ], "docket_number": "17-12889", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1333,6 +1538,11 @@ } ], "docket_number": "17-08295", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1365,6 +1575,11 @@ } ], "docket_number": "18-01020", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1397,6 +1612,11 @@ } ], "docket_number": "15-10465", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1429,6 +1649,11 @@ } ], "docket_number": "16-23508", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1461,6 +1686,11 @@ } ], "docket_number": "15-10465", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1493,6 +1723,11 @@ } ], "docket_number": "17-23099", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1525,6 +1760,11 @@ } ], "docket_number": "17-23846", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1557,6 +1797,11 @@ } ], "docket_number": "18-11070", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jlg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1589,6 +1834,11 @@ } ], "docket_number": "18-10966", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1621,6 +1871,11 @@ } ], "docket_number": "18-11071", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1653,6 +1908,11 @@ } ], "docket_number": "18-11071", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1685,6 +1945,11 @@ } ], "docket_number": "18-11071", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1717,6 +1982,11 @@ } ], "docket_number": "16-10992", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1749,6 +2019,11 @@ } ], "docket_number": "18-11070", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jlg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1781,6 +2056,11 @@ } ], "docket_number": "15-01420", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jlg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1813,6 +2093,11 @@ } ], "docket_number": "17-08307", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1845,6 +2130,11 @@ } ], "docket_number": "18-10174", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1877,6 +2167,11 @@ } ], "docket_number": "18-11070", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jlg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1909,6 +2204,11 @@ } ], "docket_number": "17-08317", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1941,6 +2241,11 @@ } ], "docket_number": "16-23682", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1973,6 +2278,11 @@ } ], "docket_number": "18-35626", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2005,6 +2315,11 @@ } ], "docket_number": "18-11070", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jlg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2037,6 +2352,11 @@ } ], "docket_number": "17-08291", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2069,6 +2389,11 @@ } ], "docket_number": "18-10164", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2101,6 +2426,11 @@ } ], "docket_number": "18-11070", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "jlg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2133,6 +2463,11 @@ } ], "docket_number": "17-08319", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2165,6 +2500,11 @@ } ], "docket_number": "18-22370", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2197,6 +2537,11 @@ } ], "docket_number": "17-35924", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2229,6 +2574,11 @@ } ], "docket_number": "18-22168", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2261,6 +2611,11 @@ } ], "docket_number": "15-23535", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2293,6 +2648,11 @@ } ], "docket_number": "17-13633", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkv", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2325,6 +2685,11 @@ } ], "docket_number": "17-36337", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2357,6 +2722,11 @@ } ], "docket_number": "17-36882", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2389,6 +2759,11 @@ } ], "docket_number": "16-10992", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2421,6 +2796,11 @@ } ], "docket_number": "18-01473", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2453,6 +2833,11 @@ } ], "docket_number": "18-22038", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2485,6 +2870,11 @@ } ], "docket_number": "18-10154", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mg", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2517,6 +2907,11 @@ } ], "docket_number": "18-35030", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2549,6 +2944,11 @@ } ], "docket_number": "18-35030", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2581,6 +2981,11 @@ } ], "docket_number": "08-01420", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2613,6 +3018,11 @@ } ], "docket_number": "18-10869", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2645,6 +3055,11 @@ } ], "docket_number": "08-01420", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2677,6 +3092,11 @@ } ], "docket_number": "18-10008", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "shl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2709,6 +3129,11 @@ } ], "docket_number": "18-22068", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2741,6 +3166,11 @@ } ], "docket_number": "17-37183", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2773,6 +3203,11 @@ } ], "docket_number": "08-01420", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2805,6 +3240,11 @@ } ], "docket_number": "18-10316", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkv", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2837,6 +3277,11 @@ } ], "docket_number": "08-01420", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2869,6 +3314,11 @@ } ], "docket_number": "15-11740", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "shl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2901,6 +3351,11 @@ } ], "docket_number": "17-36337", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2933,6 +3388,11 @@ } ], "docket_number": "15-11740", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "shl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2965,6 +3425,11 @@ } ], "docket_number": "18-01472", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2997,6 +3462,11 @@ } ], "docket_number": "18-01471", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3029,6 +3499,11 @@ } ], "docket_number": "18-01470", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3061,6 +3536,11 @@ } ], "docket_number": "18-01469", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3093,6 +3573,11 @@ } ], "docket_number": "18-01468", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3125,6 +3610,11 @@ } ], "docket_number": "18-01467", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3157,6 +3647,11 @@ } ], "docket_number": "18-01466", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3189,6 +3684,11 @@ } ], "docket_number": "18-01465", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3221,6 +3721,11 @@ } ], "docket_number": "17-13614", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3253,6 +3758,11 @@ } ], "docket_number": "18-11065", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3285,6 +3795,11 @@ } ], "docket_number": "16-36946", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3317,6 +3832,11 @@ } ], "docket_number": "15-12468", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mew", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3349,6 +3869,11 @@ } ], "docket_number": "18-11065", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3381,6 +3906,11 @@ } ], "docket_number": "15-11740", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "shl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3413,6 +3943,11 @@ } ], "docket_number": "18-01464", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3445,6 +3980,11 @@ } ], "docket_number": "18-01463", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3477,6 +4017,11 @@ } ], "docket_number": "18-01462", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3509,6 +4054,11 @@ } ], "docket_number": "18-01461", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3541,6 +4091,11 @@ } ], "docket_number": "18-01460", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3573,6 +4128,11 @@ } ], "docket_number": "17-36279", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3605,6 +4165,11 @@ } ], "docket_number": "17-13021", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3637,6 +4202,11 @@ } ], "docket_number": "15-11740", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "shl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3669,6 +4239,11 @@ } ], "docket_number": "16-10992", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3701,6 +4276,11 @@ } ], "docket_number": "18-01472", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3733,6 +4313,11 @@ } ], "docket_number": "18-11065", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3765,6 +4350,11 @@ } ], "docket_number": "18-01459", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3797,6 +4387,11 @@ } ], "docket_number": "18-01458", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3829,6 +4424,11 @@ } ], "docket_number": "18-01457", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3861,6 +4461,11 @@ } ], "docket_number": "15-11740", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "shl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3893,6 +4498,11 @@ } ], "docket_number": "18-11065", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3925,6 +4535,11 @@ } ], "docket_number": "17-13594", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkv", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3957,6 +4572,11 @@ } ], "docket_number": "16-10992", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3989,6 +4609,11 @@ } ], "docket_number": "18-01471", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4021,6 +4646,11 @@ } ], "docket_number": "14-23032", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4053,6 +4683,11 @@ } ], "docket_number": "13-01676", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4085,6 +4720,11 @@ } ], "docket_number": "16-10992", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4117,6 +4757,11 @@ } ], "docket_number": "18-01470", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4149,6 +4794,11 @@ } ], "docket_number": "17-13657", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4181,6 +4831,11 @@ } ], "docket_number": "13-01676", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "scc", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4213,6 +4868,11 @@ } ], "docket_number": "17-13657", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4245,6 +4905,11 @@ } ], "docket_number": "16-10992", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4277,6 +4942,11 @@ } ], "docket_number": "18-01469", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4309,6 +4979,11 @@ } ], "docket_number": "17-36679", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4341,6 +5016,11 @@ } ], "docket_number": "17-12899", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mew", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4373,6 +5053,11 @@ } ], "docket_number": "16-10992", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4405,6 +5090,11 @@ } ], "docket_number": "18-01468", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4437,6 +5127,11 @@ } ], "docket_number": "16-13151", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkv", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4469,6 +5164,11 @@ } ], "docket_number": "16-10992", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4501,6 +5201,11 @@ } ], "docket_number": "18-01467", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4533,6 +5238,11 @@ } ], "docket_number": "18-22313", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4565,6 +5275,11 @@ } ], "docket_number": "16-11575", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkv", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4597,6 +5312,11 @@ } ], "docket_number": "16-10992", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4629,6 +5349,11 @@ } ], "docket_number": "18-01466", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4661,6 +5386,11 @@ } ], "docket_number": "18-22542", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "rdd", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4693,6 +5423,11 @@ } ], "docket_number": "13-37531", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4725,6 +5460,11 @@ } ], "docket_number": "13-36150", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4757,6 +5497,11 @@ } ], "docket_number": "17-36971", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4789,6 +5534,11 @@ } ], "docket_number": "17-13364", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkv", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4821,6 +5571,11 @@ } ], "docket_number": "16-10992", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4853,6 +5608,11 @@ } ], "docket_number": "18-01465", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4885,6 +5645,11 @@ } ], "docket_number": "15-01091", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "mkv", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4917,6 +5682,11 @@ } ], "docket_number": "18-11069", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "cgm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4949,6 +5719,11 @@ } ], "docket_number": "16-13297", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "shl", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4981,6 +5756,11 @@ } ], "docket_number": "16-10992", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5013,6 +5793,11 @@ } ], "docket_number": "18-01464", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5045,6 +5830,11 @@ } ], "docket_number": "14-02385", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5077,6 +5867,11 @@ } ], "docket_number": "16-10992", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5109,6 +5904,11 @@ } ], "docket_number": "18-01463", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "smb", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null, "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", diff --git a/tests/examples/pacer/rss_feeds/sdny_1.json b/tests/examples/pacer/rss_feeds/sdny_1.json index 8b834078f..6e2b9b96e 100644 --- a/tests/examples/pacer/rss_feeds/sdny_1.json +++ b/tests/examples/pacer/rss_feeds/sdny_1.json @@ -21,6 +21,11 @@ } ], "docket_number": "1:18-cv-03365", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -53,6 +58,11 @@ } ], "docket_number": "1:18-cv-03365", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -85,6 +95,11 @@ } ], "docket_number": "1:17-cv-09141", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -117,6 +132,11 @@ } ], "docket_number": "1:18-cv-03365", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -149,6 +169,11 @@ } ], "docket_number": "7:17-cv-00792", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -181,6 +206,11 @@ } ], "docket_number": "1:18-cv-02445", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -213,6 +243,11 @@ } ], "docket_number": "1:17-cv-05839", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -245,6 +280,11 @@ } ], "docket_number": "1:18-mc-00150", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -277,6 +317,11 @@ } ], "docket_number": "1:18-cv-03364", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -309,6 +354,11 @@ } ], "docket_number": "1:15-cv-03419", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -341,6 +391,11 @@ } ], "docket_number": "1:17-cv-05839", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -373,6 +428,11 @@ } ], "docket_number": "1:18-cv-03364", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -405,6 +465,11 @@ } ], "docket_number": "1:17-cv-04489", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -437,6 +502,11 @@ } ], "docket_number": "1:15-cv-07985", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -469,6 +539,11 @@ } ], "docket_number": "1:18-cv-03364", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -501,6 +576,11 @@ } ], "docket_number": "1:18-cv-03364", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -533,6 +613,11 @@ } ], "docket_number": "1:18-mc-00013", + "federal_defendant_number": null, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -565,6 +650,11 @@ } ], "docket_number": "1:17-cv-09239", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -597,6 +687,11 @@ } ], "docket_number": "1:15-cv-09190", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -629,6 +724,11 @@ } ], "docket_number": "1:16-cv-05954", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -661,6 +761,11 @@ } ], "docket_number": "1:16-cv-05954", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -693,6 +798,11 @@ } ], "docket_number": "1:18-cv-03095", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -725,6 +835,11 @@ } ], "docket_number": "1:16-cv-05954", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -757,6 +872,11 @@ } ], "docket_number": "1:13-cv-03089", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -789,6 +909,11 @@ } ], "docket_number": "1:18-cr-00224", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -821,6 +946,11 @@ } ], "docket_number": "1:98-cr-01387", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -853,6 +983,11 @@ } ], "docket_number": "1:11-cv-06964", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -885,6 +1020,11 @@ } ], "docket_number": "1:15-cv-09190", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -917,6 +1057,11 @@ } ], "docket_number": "1:18-mj-03122", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -949,6 +1094,11 @@ } ], "docket_number": "1:14-cv-05743", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -981,6 +1131,11 @@ } ], "docket_number": "1:18-mj-03122", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1013,6 +1168,11 @@ } ], "docket_number": "1:18-cv-01063", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1045,6 +1205,11 @@ } ], "docket_number": "1:17-cv-07206", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1077,6 +1242,11 @@ } ], "docket_number": "1:17-cv-06693", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1109,6 +1279,11 @@ } ], "docket_number": "1:18-cv-02977", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1141,6 +1316,11 @@ } ], "docket_number": "1:15-cv-05793", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1173,6 +1353,11 @@ } ], "docket_number": "1:18-mj-03122", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1205,6 +1390,11 @@ } ], "docket_number": "1:18-cv-01119", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1237,6 +1427,11 @@ } ], "docket_number": "1:17-cv-01865", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1269,6 +1464,11 @@ } ], "docket_number": "1:17-cv-08461", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1301,6 +1501,11 @@ } ], "docket_number": "1:18-cv-03363", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1333,6 +1538,11 @@ } ], "docket_number": "1:17-cr-00723", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1365,6 +1575,11 @@ } ], "docket_number": "1:18-cv-03362", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1397,6 +1612,11 @@ } ], "docket_number": "1:18-cv-03361", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1429,6 +1649,11 @@ } ], "docket_number": "1:17-cv-05344", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1461,6 +1686,11 @@ } ], "docket_number": "1:18-cv-03360", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1493,6 +1723,11 @@ } ], "docket_number": "1:18-cv-01550", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1525,6 +1760,11 @@ } ], "docket_number": "1:18-cv-03359", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1557,6 +1797,11 @@ } ], "docket_number": "1:15-cv-08569", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1589,6 +1834,11 @@ } ], "docket_number": "1:17-cv-05344", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1621,6 +1871,11 @@ } ], "docket_number": "1:18-cv-03357", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1653,6 +1908,11 @@ } ], "docket_number": "1:17-cv-04297", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1685,6 +1945,11 @@ } ], "docket_number": "1:17-cv-01865", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1717,6 +1982,11 @@ } ], "docket_number": "1:18-cv-03356", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1749,6 +2019,11 @@ } ], "docket_number": "1:18-cv-03354", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1781,6 +2056,11 @@ } ], "docket_number": "1:17-cv-09150", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1813,6 +2093,11 @@ } ], "docket_number": "1:18-cv-03351", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1845,6 +2130,11 @@ } ], "docket_number": "1:18-cv-03323", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1877,6 +2167,11 @@ } ], "docket_number": "1:18-cr-00224", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1909,6 +2204,11 @@ } ], "docket_number": "1:18-cv-03348", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1941,6 +2241,11 @@ } ], "docket_number": "1:15-cv-08569", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -1973,6 +2278,11 @@ } ], "docket_number": "1:17-cv-09042", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2005,6 +2315,11 @@ } ], "docket_number": "1:18-cv-03323", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2037,6 +2352,11 @@ } ], "docket_number": "1:18-cv-03344", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2069,6 +2389,11 @@ } ], "docket_number": "1:18-mj-03122", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2101,6 +2426,11 @@ } ], "docket_number": "7:16-cv-07608", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2133,6 +2463,11 @@ } ], "docket_number": "1:18-cv-03343", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2165,6 +2500,11 @@ } ], "docket_number": "1:15-cv-00952", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2197,6 +2537,11 @@ } ], "docket_number": "1:18-cv-02920", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2229,6 +2574,11 @@ } ], "docket_number": "1:18-cv-02617", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2261,6 +2611,11 @@ } ], "docket_number": "1:18-mj-03122", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2293,6 +2648,11 @@ } ], "docket_number": "1:18-cv-00738", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2325,6 +2685,11 @@ } ], "docket_number": "1:16-cr-00370", + "federal_defendant_number": "2", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2357,6 +2722,11 @@ } ], "docket_number": "7:18-cv-01790", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2389,6 +2759,11 @@ } ], "docket_number": "1:17-cr-00723", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2421,6 +2796,11 @@ } ], "docket_number": "1:18-cv-03340", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2453,6 +2833,11 @@ } ], "docket_number": "7:18-cv-01790", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2485,6 +2870,11 @@ } ], "docket_number": "1:17-cv-04290", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2517,6 +2907,11 @@ } ], "docket_number": "7:18-cv-01790", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2549,6 +2944,11 @@ } ], "docket_number": "1:17-cv-08328", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2581,6 +2981,11 @@ } ], "docket_number": "1:18-cv-01542", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2613,6 +3018,11 @@ } ], "docket_number": "7:18-cv-01790", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2645,6 +3055,11 @@ } ], "docket_number": "1:18-cv-02709", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2677,6 +3092,11 @@ } ], "docket_number": "1:13-cr-00256", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2709,6 +3129,11 @@ } ], "docket_number": "7:17-cv-03609", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2741,6 +3166,11 @@ } ], "docket_number": "1:18-cv-02617", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2773,6 +3203,11 @@ } ], "docket_number": "1:18-mj-01147", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2805,6 +3240,11 @@ } ], "docket_number": "1:16-cr-00673", + "federal_defendant_number": "4", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2837,6 +3277,11 @@ } ], "docket_number": "1:16-cv-07286", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2869,6 +3314,11 @@ } ], "docket_number": "1:17-cv-09150", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2901,6 +3351,11 @@ } ], "docket_number": "1:18-mj-01147", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2933,6 +3388,11 @@ } ], "docket_number": "7:17-cv-03609", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2965,6 +3425,11 @@ } ], "docket_number": "1:17-cv-08328", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -2997,6 +3462,11 @@ } ], "docket_number": "7:17-cv-04025", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3029,6 +3499,11 @@ } ], "docket_number": "1:18-mj-02190", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3061,6 +3536,11 @@ } ], "docket_number": "1:18-cv-03363", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3093,6 +3573,11 @@ } ], "docket_number": "7:17-cv-06623", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3125,6 +3610,11 @@ } ], "docket_number": "7:16-cv-02451", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3157,6 +3647,11 @@ } ], "docket_number": "1:18-mj-02190", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3189,6 +3684,11 @@ } ], "docket_number": "1:18-cv-02617", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3221,6 +3721,11 @@ } ], "docket_number": "7:17-cv-05670", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3253,6 +3758,11 @@ } ], "docket_number": "1:14-cr-00608", + "federal_defendant_number": "4", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3285,6 +3795,11 @@ } ], "docket_number": "1:18-mj-02242", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3317,6 +3832,11 @@ } ], "docket_number": "1:18-cv-03031", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3349,6 +3869,11 @@ } ], "docket_number": "7:17-cv-03844", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3381,6 +3906,11 @@ } ], "docket_number": "7:17-cv-08000", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3413,6 +3943,11 @@ } ], "docket_number": "7:15-cv-01550", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3445,6 +3980,11 @@ } ], "docket_number": "1:18-cv-00683", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3477,6 +4017,11 @@ } ], "docket_number": "1:17-cv-09347", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3509,6 +4054,11 @@ } ], "docket_number": "1:18-cv-03362", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3541,6 +4091,11 @@ } ], "docket_number": "7:16-cv-09408", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3573,6 +4128,11 @@ } ], "docket_number": "7:17-cv-00895", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3605,6 +4165,11 @@ } ], "docket_number": "7:17-cv-06053", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3637,6 +4202,11 @@ } ], "docket_number": "1:17-cv-05153", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3669,6 +4239,11 @@ } ], "docket_number": "7:17-cv-09033", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3701,6 +4276,11 @@ } ], "docket_number": "1:17-cv-09414", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3733,6 +4313,11 @@ } ], "docket_number": "1:17-cv-05153", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3765,6 +4350,11 @@ } ], "docket_number": "7:16-cv-07986", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3797,6 +4387,11 @@ } ], "docket_number": "1:17-cv-09741", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3829,6 +4424,11 @@ } ], "docket_number": "1:18-cv-02883", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3861,6 +4461,11 @@ } ], "docket_number": "1:17-cv-09741", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3893,6 +4498,11 @@ } ], "docket_number": "7:12-cv-09193", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3925,6 +4535,11 @@ } ], "docket_number": "7:12-cv-09193", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3957,6 +4572,11 @@ } ], "docket_number": "1:18-cv-02892", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -3989,6 +4609,11 @@ } ], "docket_number": "1:17-cv-02757", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4021,6 +4646,11 @@ } ], "docket_number": "7:17-cv-05440", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4053,6 +4683,11 @@ } ], "docket_number": "1:18-cv-02511", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4085,6 +4720,11 @@ } ], "docket_number": "7:18-cv-01661", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4117,6 +4757,11 @@ } ], "docket_number": "1:18-cv-00905", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4149,6 +4794,11 @@ } ], "docket_number": "1:18-cv-02511", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4181,6 +4831,11 @@ } ], "docket_number": "1:18-cv-01439", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4213,6 +4868,11 @@ } ], "docket_number": "1:11-cv-00691", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4245,6 +4905,11 @@ } ], "docket_number": "1:18-cv-02896", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4277,6 +4942,11 @@ } ], "docket_number": "1:16-cv-03199", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4309,6 +4979,11 @@ } ], "docket_number": "1:16-cv-03199", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4341,6 +5016,11 @@ } ], "docket_number": "1:17-cv-01937", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4373,6 +5053,11 @@ } ], "docket_number": "1:17-cv-06024", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4405,6 +5090,11 @@ } ], "docket_number": "1:18-cr-00127", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4437,6 +5127,11 @@ } ], "docket_number": "1:18-cv-02786", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4469,6 +5164,11 @@ } ], "docket_number": "1:16-md-02742", + "federal_defendant_number": null, + "federal_dn_case_type": "md", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4501,6 +5201,11 @@ } ], "docket_number": "1:18-cv-03361", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4533,6 +5238,11 @@ } ], "docket_number": "1:16-cv-04569", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4565,6 +5275,11 @@ } ], "docket_number": "1:17-cv-07959", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4597,6 +5312,11 @@ } ], "docket_number": "7:17-cv-05440", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4629,6 +5349,11 @@ } ], "docket_number": "1:18-cv-01738", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4661,6 +5386,11 @@ } ], "docket_number": "1:18-cv-01439", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4693,6 +5423,11 @@ } ], "docket_number": "1:18-mj-02242", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4725,6 +5460,11 @@ } ], "docket_number": "1:17-cv-07959", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4757,6 +5497,11 @@ } ], "docket_number": "1:12-cv-06979", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4789,6 +5534,11 @@ } ], "docket_number": "7:17-cv-05440", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4821,6 +5571,11 @@ } ], "docket_number": "1:16-cv-00555", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4853,6 +5608,11 @@ } ], "docket_number": "1:18-cv-00479", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4885,6 +5645,11 @@ } ], "docket_number": "1:15-cv-08702", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4917,6 +5682,11 @@ } ], "docket_number": "1:18-cv-02968", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4949,6 +5719,11 @@ } ], "docket_number": "1:18-cv-03338", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -4981,6 +5756,11 @@ } ], "docket_number": "1:18-cv-02538", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5013,6 +5793,11 @@ } ], "docket_number": "1:07-cr-01229", + "federal_defendant_number": "2", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5045,6 +5830,11 @@ } ], "docket_number": "1:16-cr-00673", + "federal_defendant_number": "4", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5077,6 +5867,11 @@ } ], "docket_number": "1:18-mj-02289", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5109,6 +5904,11 @@ } ], "docket_number": "1:18-mj-02904", + "federal_defendant_number": "2", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5141,6 +5941,11 @@ } ], "docket_number": "1:17-cv-02432", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5173,6 +5978,11 @@ } ], "docket_number": "1:17-cv-07066", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5205,6 +6015,11 @@ } ], "docket_number": "1:18-cv-03066", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5237,6 +6052,11 @@ } ], "docket_number": "1:18-cv-01943", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5269,6 +6089,11 @@ } ], "docket_number": "1:18-mj-02289", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5301,6 +6126,11 @@ } ], "docket_number": "1:17-cv-04186", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5333,6 +6163,11 @@ } ], "docket_number": "1:17-cv-03847", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5365,6 +6200,11 @@ } ], "docket_number": "1:18-cv-02099", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5397,6 +6237,11 @@ } ], "docket_number": "1:18-cv-03358", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5429,6 +6274,11 @@ } ], "docket_number": "1:18-cv-03358", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5461,6 +6311,11 @@ } ], "docket_number": "1:17-cv-09401", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5493,6 +6348,11 @@ } ], "docket_number": "1:18-cv-00479", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5525,6 +6385,11 @@ } ], "docket_number": "1:18-cv-03358", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5557,6 +6422,11 @@ } ], "docket_number": "1:18-mj-02435", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5589,6 +6459,11 @@ } ], "docket_number": "1:14-cv-10116", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5621,6 +6496,11 @@ } ], "docket_number": "1:18-cv-02223", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5653,6 +6533,11 @@ } ], "docket_number": "1:17-cv-08165", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5685,6 +6570,11 @@ } ], "docket_number": "1:18-cv-03358", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5717,6 +6607,11 @@ } ], "docket_number": "1:18-cv-03360", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5749,6 +6644,11 @@ } ], "docket_number": "1:18-cv-03118", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5781,6 +6681,11 @@ } ], "docket_number": "1:18-mj-02435", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5813,6 +6718,11 @@ } ], "docket_number": "1:18-cv-03358", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5845,6 +6755,11 @@ } ], "docket_number": "7:16-cv-08538", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5877,6 +6792,11 @@ } ], "docket_number": "1:16-md-02742", + "federal_defendant_number": null, + "federal_dn_case_type": "md", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5909,6 +6829,11 @@ } ], "docket_number": "1:18-cv-01432", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5941,6 +6866,11 @@ } ], "docket_number": "1:17-cv-10161", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -5973,6 +6903,11 @@ } ], "docket_number": "1:18-cv-01318", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6005,6 +6940,11 @@ } ], "docket_number": "1:18-cv-00280", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6037,6 +6977,11 @@ } ], "docket_number": "1:18-cv-03312", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6069,6 +7014,11 @@ } ], "docket_number": "1:16-cv-05833", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6101,6 +7051,11 @@ } ], "docket_number": "1:12-cr-00120", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6133,6 +7088,11 @@ } ], "docket_number": "1:12-cr-00120", + "federal_defendant_number": "2", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6165,6 +7125,11 @@ } ], "docket_number": "1:12-cr-00120", + "federal_defendant_number": "3", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6197,6 +7162,11 @@ } ], "docket_number": "1:12-cr-00120", + "federal_defendant_number": "4", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6229,6 +7199,11 @@ } ], "docket_number": "1:12-cr-00120", + "federal_defendant_number": "5", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6261,6 +7236,11 @@ } ], "docket_number": "1:12-cr-00120", + "federal_defendant_number": "6", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6293,6 +7273,11 @@ } ], "docket_number": "1:17-cv-02010", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6325,6 +7310,11 @@ } ], "docket_number": "1:18-cv-02441", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6357,6 +7347,11 @@ } ], "docket_number": "1:18-mj-02904", + "federal_defendant_number": "2", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6389,6 +7384,11 @@ } ], "docket_number": "1:17-cv-10075", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6421,6 +7421,11 @@ } ], "docket_number": "1:18-cv-03228", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6453,6 +7458,11 @@ } ], "docket_number": "1:17-cv-05912", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6485,6 +7495,11 @@ } ], "docket_number": "1:18-cv-02270", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6517,6 +7532,11 @@ } ], "docket_number": "1:15-cv-02227", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6549,6 +7569,11 @@ } ], "docket_number": "1:18-cv-00295", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6581,6 +7606,11 @@ } ], "docket_number": "1:18-cv-02466", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6613,6 +7643,11 @@ } ], "docket_number": "7:16-cv-00916", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6645,6 +7680,11 @@ } ], "docket_number": "1:17-cv-03540", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6677,6 +7717,11 @@ } ], "docket_number": "1:17-cv-09841", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6709,6 +7754,11 @@ } ], "docket_number": "1:18-cv-00295", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6741,6 +7791,11 @@ } ], "docket_number": "1:17-cv-10085", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6773,6 +7828,11 @@ } ], "docket_number": "1:17-cv-06639", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6805,6 +7865,11 @@ } ], "docket_number": "1:12-cr-00758", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6837,6 +7902,11 @@ } ], "docket_number": "1:16-cv-06778", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6869,6 +7939,11 @@ } ], "docket_number": "1:17-cv-05198", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6901,6 +7976,11 @@ } ], "docket_number": "1:11-cv-02694", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6933,6 +8013,11 @@ } ], "docket_number": "1:16-cv-00520", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6965,6 +8050,11 @@ } ], "docket_number": "1:17-cv-06954", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -6997,6 +8087,11 @@ } ], "docket_number": "1:15-cr-00095", + "federal_defendant_number": "52", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7029,6 +8124,11 @@ } ], "docket_number": "1:16-cv-00520", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7061,6 +8161,11 @@ } ], "docket_number": "1:17-cv-10075", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7093,6 +8198,11 @@ } ], "docket_number": "1:15-cv-02227", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7125,6 +8235,11 @@ } ], "docket_number": "1:18-cv-01542", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7157,6 +8272,11 @@ } ], "docket_number": "1:18-cv-00173", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7189,6 +8309,11 @@ } ], "docket_number": "1:17-cv-00008", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7221,6 +8346,11 @@ } ], "docket_number": "1:15-cv-02227", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7253,6 +8383,11 @@ } ], "docket_number": "1:18-cv-03359", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7285,6 +8420,11 @@ } ], "docket_number": "1:18-cv-00069", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7317,6 +8457,11 @@ } ], "docket_number": "1:17-cv-06603", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7349,6 +8494,11 @@ } ], "docket_number": "1:18-cv-02977", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7381,6 +8531,11 @@ } ], "docket_number": "1:14-cv-07921", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7413,6 +8568,11 @@ } ], "docket_number": "1:16-cv-09858", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7445,6 +8605,11 @@ } ], "docket_number": "7:17-cv-05681", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7477,6 +8642,11 @@ } ], "docket_number": "1:14-cv-07921", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7509,6 +8679,11 @@ } ], "docket_number": "1:16-cv-05464", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7541,6 +8716,11 @@ } ], "docket_number": "1:18-cv-03358", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7573,6 +8753,11 @@ } ], "docket_number": "1:17-cv-04017", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7605,6 +8790,11 @@ } ], "docket_number": "1:18-cv-03358", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7637,6 +8827,11 @@ } ], "docket_number": "1:14-cv-07921", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7669,6 +8864,11 @@ } ], "docket_number": "1:10-cv-09545", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7701,6 +8901,11 @@ } ], "docket_number": "1:18-cv-02297", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7733,6 +8938,11 @@ } ], "docket_number": "1:18-cv-00615", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7765,6 +8975,11 @@ } ], "docket_number": "1:17-cv-09116", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7797,6 +9012,11 @@ } ], "docket_number": "7:17-cv-06251", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7829,6 +9049,11 @@ } ], "docket_number": "1:18-cv-00019", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7861,6 +9086,11 @@ } ], "docket_number": "1:17-cv-05452", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7893,6 +9123,11 @@ } ], "docket_number": "1:18-cv-00374", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7925,6 +9160,11 @@ } ], "docket_number": "1:15-cv-02172", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7957,6 +9197,11 @@ } ], "docket_number": "1:17-cv-05920", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -7989,6 +9234,11 @@ } ], "docket_number": "1:18-mj-02904", + "federal_defendant_number": "2", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8021,6 +9271,11 @@ } ], "docket_number": "1:14-cv-07921", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8053,6 +9308,11 @@ } ], "docket_number": "1:14-cv-06312", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8085,6 +9345,11 @@ } ], "docket_number": "1:18-cv-02475", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8117,6 +9382,11 @@ } ], "docket_number": "1:18-cv-01660", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8149,6 +9419,11 @@ } ], "docket_number": "1:18-cv-00374", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8181,6 +9456,11 @@ } ], "docket_number": "1:17-cv-00631", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8213,6 +9493,11 @@ } ], "docket_number": "1:16-cv-09129", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8245,6 +9530,11 @@ } ], "docket_number": "1:18-cv-01453", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8277,6 +9567,11 @@ } ], "docket_number": "1:18-cv-01932", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8309,6 +9604,11 @@ } ], "docket_number": "1:18-cv-01453", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8341,6 +9641,11 @@ } ], "docket_number": "1:18-mj-02904", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8373,6 +9678,11 @@ } ], "docket_number": "1:17-cv-04000", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8405,6 +9715,11 @@ } ], "docket_number": "1:18-cv-02466", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8437,6 +9752,11 @@ } ], "docket_number": "1:18-cr-00110", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8469,6 +9789,11 @@ } ], "docket_number": "1:17-cv-09101", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8501,6 +9826,11 @@ } ], "docket_number": "1:17-cv-00631", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8533,6 +9863,11 @@ } ], "docket_number": "1:16-cv-09183", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8565,6 +9900,11 @@ } ], "docket_number": "7:17-cr-00557", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8597,6 +9937,11 @@ } ], "docket_number": "7:17-cv-06251", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8629,6 +9974,11 @@ } ], "docket_number": "1:16-cv-09183", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8661,6 +10011,11 @@ } ], "docket_number": "1:18-cv-00976", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8693,6 +10048,11 @@ } ], "docket_number": "1:17-cv-04974", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8725,6 +10085,11 @@ } ], "docket_number": "1:18-cv-03357", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8757,6 +10122,11 @@ } ], "docket_number": "1:16-cv-07438", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8789,6 +10159,11 @@ } ], "docket_number": "1:16-cv-03876", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8821,6 +10196,11 @@ } ], "docket_number": "1:17-cv-09979", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8853,6 +10233,11 @@ } ], "docket_number": "1:16-cv-05735", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8885,6 +10270,11 @@ } ], "docket_number": "1:16-cv-08545", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8917,6 +10307,11 @@ } ], "docket_number": "1:18-mj-02904", + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8949,6 +10344,11 @@ } ], "docket_number": "1:18-cv-01063", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -8981,6 +10381,11 @@ } ], "docket_number": "7:17-cv-05440", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9013,6 +10418,11 @@ } ], "docket_number": "1:16-cv-05735", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9045,6 +10455,11 @@ } ], "docket_number": "1:17-cv-05142", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9077,6 +10492,11 @@ } ], "docket_number": "1:18-cv-02475", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9109,6 +10529,11 @@ } ], "docket_number": "7:17-cv-05440", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9141,6 +10566,11 @@ } ], "docket_number": "1:15-cv-09242", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9173,6 +10603,11 @@ } ], "docket_number": "1:17-cv-07005", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9205,6 +10640,11 @@ } ], "docket_number": "1:17-cv-05865", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9237,6 +10677,11 @@ } ], "docket_number": "1:15-cv-09242", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9269,6 +10714,11 @@ } ], "docket_number": "1:16-cv-09129", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9301,6 +10751,11 @@ } ], "docket_number": "7:10-cv-05044", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9333,6 +10788,11 @@ } ], "docket_number": "1:13-cr-00048", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9365,6 +10825,11 @@ } ], "docket_number": "1:18-cv-00818", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9397,6 +10862,11 @@ } ], "docket_number": "1:09-cv-10163", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9429,6 +10899,11 @@ } ], "docket_number": "1:18-cv-02099", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9461,6 +10936,11 @@ } ], "docket_number": "1:18-cv-02099", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9493,6 +10973,11 @@ } ], "docket_number": "7:16-cv-08871", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9525,6 +11010,11 @@ } ], "docket_number": "1:16-cv-05261", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9557,6 +11047,11 @@ } ], "docket_number": "1:16-cv-09645", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9589,6 +11084,11 @@ } ], "docket_number": "1:17-cv-06231", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9621,6 +11121,11 @@ } ], "docket_number": "1:17-cv-08897", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9653,6 +11158,11 @@ } ], "docket_number": "7:14-cv-09605", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9685,6 +11195,11 @@ } ], "docket_number": "1:18-cv-02756", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9717,6 +11232,11 @@ } ], "docket_number": "1:17-cv-08897", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9749,6 +11269,11 @@ } ], "docket_number": "7:16-cv-08871", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9781,6 +11306,11 @@ } ], "docket_number": "1:17-cr-00123", + "federal_defendant_number": "25", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9813,6 +11343,11 @@ } ], "docket_number": "1:17-cv-03001", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9845,6 +11380,11 @@ } ], "docket_number": "1:17-cv-09070", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9877,6 +11417,11 @@ } ], "docket_number": "1:17-cv-01153", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9909,6 +11454,11 @@ } ], "docket_number": "1:17-cv-05012", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9941,6 +11491,11 @@ } ], "docket_number": "1:18-cv-00107", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -9973,6 +11528,11 @@ } ], "docket_number": "1:18-cv-02756", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10005,6 +11565,11 @@ } ], "docket_number": "1:17-cv-07232", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10037,6 +11602,11 @@ } ], "docket_number": "1:17-cv-09508", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10069,6 +11639,11 @@ } ], "docket_number": "1:14-cv-05344", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10101,6 +11676,11 @@ } ], "docket_number": "1:17-cv-01153", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10133,6 +11713,11 @@ } ], "docket_number": "1:18-cv-03356", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10165,6 +11750,11 @@ } ], "docket_number": "7:17-cr-00701", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10197,6 +11787,11 @@ } ], "docket_number": "1:18-cv-03324", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10229,6 +11824,11 @@ } ], "docket_number": "1:02-cv-08881", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10261,6 +11861,11 @@ } ], "docket_number": "7:17-cv-00065", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10293,6 +11898,11 @@ } ], "docket_number": "1:18-cv-03355", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10325,6 +11935,11 @@ } ], "docket_number": "1:18-cv-02182", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10357,6 +11972,11 @@ } ], "docket_number": "1:14-cv-04394", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10389,6 +12009,11 @@ } ], "docket_number": "1:18-cv-02182", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10421,6 +12046,11 @@ } ], "docket_number": "1:17-cv-02697", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10453,6 +12083,11 @@ } ], "docket_number": "1:18-cv-03306", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10485,6 +12120,11 @@ } ], "docket_number": "1:17-cv-04124", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10517,6 +12157,11 @@ } ], "docket_number": "1:02-cr-01608", + "federal_defendant_number": "2", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10549,6 +12194,11 @@ } ], "docket_number": "7:18-cv-01427", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10581,6 +12231,11 @@ } ], "docket_number": "1:18-cv-03355", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10613,6 +12268,11 @@ } ], "docket_number": "1:17-cv-07512", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10645,6 +12305,11 @@ } ], "docket_number": "1:16-cv-03780", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10677,6 +12342,11 @@ } ], "docket_number": "1:17-cv-08436", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10709,6 +12379,11 @@ } ], "docket_number": "7:17-cv-09749", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10741,6 +12416,11 @@ } ], "docket_number": "1:18-cr-00001", + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10773,6 +12453,11 @@ } ], "docket_number": "1:16-cv-00132", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10805,6 +12490,11 @@ } ], "docket_number": "1:15-cv-04455", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10837,6 +12527,11 @@ } ], "docket_number": "1:18-cv-02977", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10869,6 +12564,11 @@ } ], "docket_number": "7:17-cv-07218", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "7", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -10901,6 +12601,11 @@ } ], "docket_number": "1:18-cv-00647", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", diff --git a/tests/examples/pacer/rss_feeds/wvsd.json b/tests/examples/pacer/rss_feeds/wvsd.json index 7cfebe83c..5387a6b99 100644 --- a/tests/examples/pacer/rss_feeds/wvsd.json +++ b/tests/examples/pacer/rss_feeds/wvsd.json @@ -21,6 +21,11 @@ } ], "docket_number": "2:13-cv-01808", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "2", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", @@ -53,6 +58,11 @@ } ], "docket_number": "3:15-cv-13328", + "federal_defendant_number": null, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "3", "jurisdiction": "", "jury_demand": "", "nature_of_suit": "", diff --git a/tests/local/test_DocketParseTest.py b/tests/local/test_DocketParseTest.py index 0e81d57b2..ac69cdf34 100644 --- a/tests/local/test_DocketParseTest.py +++ b/tests/local/test_DocketParseTest.py @@ -145,7 +145,6 @@ def assert_anonymized( report._parse_text(text) anon_text = report.get_anonymized_text() self.assertNotIn("LOGIN REMOVED", anon_text) - print(anon_text) def test_anonymize_district(self) -> None: path = os.path.join( @@ -183,3 +182,477 @@ def test_not_docket_dockets(self) -> None: # aren't actually dockets, it isn't there ahead of time. In that case, # skip the before test. self.assert_anonymized(path, skip_pre_test=True) + + +class DocketNumberParseTest(unittest.TestCase): + """Assert docket number components parsing.""" + + def test_district_docket_number_components_parsing(self) -> None: + report = DocketReport("akd") + + test_cases = [ + ( + "1:01-cv-00570-PCH", + { + "federal_defendant_number": None, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "PCH", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "1", + }, + ), + ( + "2:20-mc-00021-JES-M_M", + { + "federal_defendant_number": None, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "JES", + "federal_dn_judge_initials_referred": "M_M", + "federal_dn_office_code": "2", + }, + ), + ( + "2:20-mc-00021-JES-g_g", + { + "federal_defendant_number": None, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "JES", + "federal_dn_judge_initials_referred": "g_g", + "federal_dn_office_code": "2", + }, + ), + ( + "1:20-cv-00021-GBD-SLC", + { + "federal_defendant_number": None, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "GBD", + "federal_dn_judge_initials_referred": "SLC", + "federal_dn_office_code": "1", + }, + ), + ( + "1:20-cr-00033-CJW-MAR", + { + "federal_defendant_number": None, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "CJW", + "federal_dn_judge_initials_referred": "MAR", + "federal_dn_office_code": "1", + }, + ), + ( + "2:20-sw-00156-tmp", + { + "federal_defendant_number": None, + "federal_dn_case_type": "sw", + "federal_dn_judge_initials_assigned": "tmp", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "2", + }, + ), + ( + "3:20-cr-00061-TMB-MMS", + { + "federal_defendant_number": None, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "TMB", + "federal_dn_judge_initials_referred": "MMS", + "federal_dn_office_code": "3", + }, + ), + ( + "1:20-mj-00061-N", + { + "federal_defendant_number": None, + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": "N", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "1", + }, + ), + ( + "1:20-mj-00061-N-1", + { + "federal_defendant_number": "1", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": "N", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "1", + }, + ), + ( + "1:20-mj-00061-N-2", + { + "federal_defendant_number": "2", + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": "N", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "1", + }, + ), + ( + "1:20-cr-00061-KD", + { + "federal_defendant_number": None, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "KD", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "1", + }, + ), + ( + "1:20-cr-00060-CG-N", + { + "federal_defendant_number": None, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "CG", + "federal_dn_judge_initials_referred": "N", + "federal_dn_office_code": "1", + }, + ), + ( + "4:20-cv-00059-AW-MJF", + { + "federal_defendant_number": None, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "AW", + "federal_dn_judge_initials_referred": "MJF", + "federal_dn_office_code": "4", + }, + ), + ( + "3:20-cv-00059-MCR-GRJ", + { + "federal_defendant_number": None, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "MCR", + "federal_dn_judge_initials_referred": "GRJ", + "federal_dn_office_code": "3", + }, + ), + ( + "2:20-mj-00061-MHB", + { + "federal_defendant_number": None, + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": "MHB", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "2", + }, + ), + ( + "1:20-cv-00120-WJM-KMT", + { + "federal_defendant_number": None, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "WJM", + "federal_dn_judge_initials_referred": "KMT", + "federal_dn_office_code": "1", + }, + ), + ( + "3:20-cv-00021-GFVT-EBA", + { + "federal_defendant_number": None, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "GFVT", + "federal_dn_judge_initials_referred": "EBA", + "federal_dn_office_code": "3", + }, + ), + ( + "8:20-cr-00006-DOC", + { + "federal_defendant_number": None, + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "DOC", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "8", + }, + ), + ( + "2:16-CM-27244-CMR", + { + "federal_defendant_number": None, + "federal_dn_case_type": "CM", + "federal_dn_judge_initials_assigned": "CMR", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "2", + }, + ), + ( + "2:16-PV-27244-CMR", + { + "federal_defendant_number": None, + "federal_dn_case_type": "PV", + "federal_dn_judge_initials_assigned": "CMR", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "2", + }, + ), + ( + "2:16-AL-27244-CMR", + { + "federal_defendant_number": None, + "federal_dn_case_type": "AL", + "federal_dn_judge_initials_assigned": "CMR", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "2", + }, + ), + ( + "2:16-a2-27244-CMR", + { + "federal_defendant_number": None, + "federal_dn_case_type": "a2", + "federal_dn_judge_initials_assigned": "CMR", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "2", + }, + ), + ( + "3:21-~gr-00001", + { + "federal_defendant_number": None, + "federal_dn_case_type": "~gr", + "federal_dn_judge_initials_assigned": None, + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "3", + }, + ), + ( + "3:21-y-00001", + { + "federal_defendant_number": None, + "federal_dn_case_type": "y", + "federal_dn_judge_initials_assigned": None, + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "3", + }, + ), + ( + "1:21-2255-00001", + { + "federal_defendant_number": None, + "federal_dn_case_type": "2255", + "federal_dn_judge_initials_assigned": None, + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "1", + }, + ), + ( + "1:21-MDL-00001", + { + "federal_defendant_number": None, + "federal_dn_case_type": "MDL", + "federal_dn_judge_initials_assigned": None, + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "1", + }, + ), + ( + "1:21-adc-00001", + { + "federal_defendant_number": None, + "federal_dn_case_type": "adc", + "federal_dn_judge_initials_assigned": None, + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "1", + }, + ), + ( + "1:21-crcor-00001", + { + "federal_defendant_number": None, + "federal_dn_case_type": "crcor", + "federal_dn_judge_initials_assigned": None, + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "1", + }, + ), + ( + "2:24-gj-00075-JS-1", + { + "federal_defendant_number": "1", + "federal_dn_case_type": "gj", + "federal_dn_judge_initials_assigned": "JS", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "2", + }, + ), + ( + "3:20-cr-00070-TKW-MAL-1", + { + "federal_defendant_number": "1", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "TKW", + "federal_dn_judge_initials_referred": "MAL", + "federal_dn_office_code": "3", + }, + ), + ( + "3:20-cr-00070-TKW-2", + { + "federal_defendant_number": "2", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "TKW", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "3", + }, + ), + ( + "4:20-mj-00061-N/A", + { + "federal_defendant_number": None, + "federal_dn_case_type": "mj", + "federal_dn_judge_initials_assigned": "N/A", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "4", + }, + ), + ( + "4:20-cv-00061-CKJ-PSOT", + { + "federal_defendant_number": None, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "CKJ", + "federal_dn_judge_initials_referred": "PSOT", + "federal_dn_office_code": "4", + }, + ), + ( + "1:15-mc-00105-P1", + { + "federal_defendant_number": None, + "federal_dn_case_type": "mc", + "federal_dn_judge_initials_assigned": "P1", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "1", + }, + ), + ( + "1:17-cr-00350-KBF-27", + { + "federal_defendant_number": "27", + "federal_dn_case_type": "cr", + "federal_dn_judge_initials_assigned": "KBF", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "1", + }, + ), + ( + "1:08-cv-00398-GWC-TCS-LMG", + { + "federal_defendant_number": None, + "federal_dn_case_type": "cv", + "federal_dn_judge_initials_assigned": "GWC", + "federal_dn_judge_initials_referred": "TCS", + "federal_dn_office_code": "1", + }, + ), + ] + + for test in test_cases: + with self.subTest("Assert docket_number components", test=test): + dn_components = report._parse_dn_components(test[0]) + self.assertEqual( + dn_components, + test[1], + msg="The docket number components didn't match.", + ) + + def test_bankruptcy_docket_number_components_parsing(self) -> None: + report = DocketReport("akb") + + test_cases = [ + ( + "1:24-bk-10757", + { + "federal_defendant_number": None, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": None, + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "1", + }, + ), + ( + "02-00017-LMK", + { + "federal_defendant_number": None, + "federal_dn_case_type": None, + "federal_dn_judge_initials_assigned": "LMK", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": None, + }, + ), + ( + "15-32065-bjh11", + { + "federal_defendant_number": None, + "federal_dn_case_type": None, + "federal_dn_judge_initials_assigned": "bjh", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": None, + }, + ), + ( + "09-80591-JAC7", + { + "federal_defendant_number": None, + "federal_dn_case_type": None, + "federal_dn_judge_initials_assigned": "JAC", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": None, + }, + ), + ( + "04-45661-rfn13", + { + "federal_defendant_number": None, + "federal_dn_case_type": None, + "federal_dn_judge_initials_assigned": "rfn", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": None, + }, + ), + ( + "10-01083-8-RDD", + { + "federal_defendant_number": None, + "federal_dn_case_type": None, + "federal_dn_judge_initials_assigned": "RDD", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "8", + }, + ), + ( + "10-12431-1-rel", + { + "federal_defendant_number": None, + "federal_dn_case_type": None, + "federal_dn_judge_initials_assigned": "rel", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": "1", + }, + ), + ( + "13-07422-RLM-7A", + { + "federal_defendant_number": None, + "federal_dn_case_type": None, + "federal_dn_judge_initials_assigned": "RLM", + "federal_dn_judge_initials_referred": None, + "federal_dn_office_code": None, + }, + ), + ] + + for test in test_cases: + with self.subTest("Assert docket_number components", test=test): + dn_components = report._parse_dn_components(test[0]) + self.assertEqual( + dn_components, + test[1], + msg="The docket number components didn't match.", + ) diff --git a/tests/local/test_PacerFreeOpinionReportTest.py b/tests/local/test_PacerFreeOpinionReportTest.py new file mode 100644 index 000000000..22414fa0f --- /dev/null +++ b/tests/local/test_PacerFreeOpinionReportTest.py @@ -0,0 +1,21 @@ +import os + +from juriscraper.pacer.free_documents import FreeOpinionReport +from tests import TESTS_ROOT_EXAMPLES_PACER +from tests.local.PacerParseTestCase import PacerParseTestCase + +TESTS_ROOT_EXAMPLES_PACER_FREE_OPINION_REPORT = os.path.join( + TESTS_ROOT_EXAMPLES_PACER, "free_opinion_report" +) + + +class PacerFreeOpinionReportTest(PacerParseTestCase): + def setUp(self): + self.maxDiff = 200000 + + def test_free_opinion_report(self): + self.parse_files( + TESTS_ROOT_EXAMPLES_PACER_FREE_OPINION_REPORT, + "*.html", + FreeOpinionReport, + ) diff --git a/tests/local/test_PacerParseACMSAttachmentPageTest.py b/tests/local/test_PacerParseACMSAttachmentPageTest.py new file mode 100644 index 000000000..84b46aff4 --- /dev/null +++ b/tests/local/test_PacerParseACMSAttachmentPageTest.py @@ -0,0 +1,18 @@ +import os + +from juriscraper.pacer import ACMSAttachmentPage +from tests import TESTS_ROOT_EXAMPLES_PACER +from tests.local.PacerParseTestCase import PacerParseTestCase + + +class PacerParseAppellateDocketTest(PacerParseTestCase): + """Can we parse the appellate dockets effectively?""" + + def setUp(self): + self.maxDiff = 200000 + + def test_parsing_appellate_dockets(self): + path_root = os.path.join( + TESTS_ROOT_EXAMPLES_PACER, "appellate_attachment_pages", "acms" + ) + self.parse_files(path_root, "*.compare.json", ACMSAttachmentPage) diff --git a/tests/local/test_PacerParseACMSDocketTest.py b/tests/local/test_PacerParseACMSDocketTest.py new file mode 100644 index 000000000..bec574be8 --- /dev/null +++ b/tests/local/test_PacerParseACMSDocketTest.py @@ -0,0 +1,123 @@ +import os +import re +import sys + +from juriscraper.pacer import ACMSDocketReport +from tests import TESTS_ROOT_EXAMPLES_PACER +from tests.local.PacerParseTestCase import PacerParseTestCase + + +class PacerParseAppellateDocketTest(PacerParseTestCase): + """Can we parse the appellate dockets effectively?""" + + def setUp(self): + self.maxDiff = 200000 + + def test_parsing_appellate_dockets(self): + path_root = os.path.join(TESTS_ROOT_EXAMPLES_PACER, "dockets", "acms") + self.parse_files(path_root, "*.acms_json", ACMSDocketReport) + + def test_acms_datatypes(self): + """Ensure the proper types are returned for a faked-up docket. + + In particular, the standard tests compare JSON output but do + not validate datetime types. + """ + + faked_input = """ + { + "caseDetails": { + "caseId": "49d55502-744d-11ee-b5fa-e38eb4ba6cd2", + "caseNumber": "23-1", + "name": "Free Law Project v. People", + "caseOpened": "2023-10-26", + "aNumber": "46-3342480", + "receivedDate": "2023-10-26T22:18:31Z", + "partyAttorneyList": + "
    FREE LAW PARTY
    Intervenor
    pro se
    ", + "court": { + "name": "Originating court name", + "identifier": "OGC ID" + }, + "caseType": "Typical", + "caseSubType": "Subtypical", + "caseSubSubType": "Subsubtypical", + "districtCourtName": "FLP", + "feeStatus": "FLP" + }, + "docketInfo": { + "docketEntries": [ + { + "endDate": "2023-10-28", + "endDateFormatted": "10/28/2023", + "entryNumber": 1, + "docketEntryText": "

    NEW PARTY, Intervenor, Free Law Project. [Entered: 10/26/2023 6:18 PM]

    ", + "docketEntryId": "19b65316-744e-11ee-a0a4-13890013fe63", + "pageCount": 1 + } + ] + } + } +""" # noqa + + indented_padded_correct_repr_old = """ + {'court_id': 'flp', + 'pacer_case_id': '49d55502-744d-11ee-b5fa-e38eb4ba6cd2', + 'docket_number': '23-1', + 'case_name': 'Free Law Project v. People', + 'date_filed': datetime.date(2023, 10, 26), + 'appeal_from': 'Originating court name', + 'fee_status': 'FLP', + 'originating_court_information': + {'name': 'FLP', + 'identifier': 'OGC ID', + 'RESTRICTED_ALIEN_NUMBER': '46-3342480'}, + 'case_type_information': 'Typical, Subtypical, Subsubtypical', + 'parties': [OrderedDict([('name', + 'FREE LAW PARTY'), ('type', + 'Intervenor'), ('attorneys', [])])], + 'docket_entries': [{'document_number': 1, + 'description_html': '

    NEW PARTY, Intervenor, Free Law Project. [Entered: 10/26/2023 6:18 PM]

    ', + 'description': 'NEW PARTY, Intervenor, Free Law Project. [Entered: 10/26/2023 6:18 PM]', + 'date_entered': datetime.datetime(2023, 10, 26, 18, 18), + 'date_filed': datetime.datetime(2023, 10, 26, 18, 18), + 'pacer_doc_id': '19b65316-744e-11ee-a0a4-13890013fe63', + 'page_count': 1}]}""" # noqa + + indented_padded_correct_repr = """ + {'court_id': 'flp', + 'pacer_case_id': '49d55502-744d-11ee-b5fa-e38eb4ba6cd2', + 'docket_number': '23-1', + 'case_name': 'Free Law Project v. People', + 'date_filed': datetime.date(2023, 10, 26), + 'appeal_from': 'Originating court name', + 'fee_status': 'FLP', + 'originating_court_information': + {'name': 'FLP', + 'identifier': 'OGC ID', + 'RESTRICTED_ALIEN_NUMBER': '46-3342480'}, + 'case_type_information': 'Typical, Subtypical, Subsubtypical', + 'parties': [OrderedDict({'name': + 'FREE LAW PARTY', 'type': + 'Intervenor', 'attorneys': []})], + 'docket_entries': [{'document_number': 1, + 'description_html': '

    NEW PARTY, Intervenor, Free Law Project. [Entered: 10/26/2023 6:18 PM]

    ', + 'description': 'NEW PARTY, Intervenor, Free Law Project. [Entered: 10/26/2023 6:18 PM]', + 'date_entered': datetime.datetime(2023, 10, 26, 18, 18), + 'date_filed': datetime.datetime(2023, 10, 26, 18, 18), + 'pacer_doc_id': '19b65316-744e-11ee-a0a4-13890013fe63', + 'page_count': 1}]}""" # noqa + + # Python 3.12 changed the format of OrderedDict so pick the appropriate + # repr here. + if sys.version_info >= (3, 12, 0): + _ = indented_padded_correct_repr + else: + _ = indented_padded_correct_repr_old + _ = re.sub(r"(?m)^\s*", "", _) + correct_repr = _.replace("\n", " ") + + report = ACMSDocketReport("flp") + report._parse_text(faked_input) + + self.assertEqual(repr(report.data), correct_repr) diff --git a/tests/local/test_ScraperExtractFromTextTest.py b/tests/local/test_ScraperExtractFromTextTest.py index 05f13c105..2b94c06cc 100644 --- a/tests/local/test_ScraperExtractFromTextTest.py +++ b/tests/local/test_ScraperExtractFromTextTest.py @@ -1,3 +1,4 @@ +import datetime import unittest from juriscraper.lib.importer import build_module_list @@ -50,7 +51,7 @@ class ScraperExtractFromText(unittest.TestCase): # Some opinions don't have dockets because Arkansas publishes important announcements. ( """Cite as 2022 Ark. 14\nSUPREME COURT OF ARKANSAS Opinion Delivered: January 27, 2022""", - {"OpinionCluster": {"docket_number": ""}}, + {}, ), ], "juriscraper.opinions.united_states.state.arkctapp": [ @@ -85,19 +86,13 @@ class ScraperExtractFromText(unittest.TestCase): {"Docket": {"docket_number": "570613/17"}}, ), ], - "juriscraper.opinions.united_states.state.nysupct": [ - ( - """
    Index No. 154867/2022 Robert R. Reed, J. \nThe following """, - {"Docket": {"docket_number": "154867/2022"}}, - ), - ], "juriscraper.opinions.united_states.state.sd": [ ( """#30018-a-MES\n2023 S.D. 4""", {"Docket": {"docket_number": "#30018-a-MES"}}, ), ], - "juriscraper.opinions.united_states.territories.nmi": [ + "juriscraper.opinions.united_states.territories.nmariana": [ ( """#E-FILED\nCNMI SUPREME COURT\nE-filed: Apr 18 2022 06:53AM\nClerk Review: Apr 18 2022 06:54AM Filing ID: 67483376\nCase No.: 2021-SCC-0017-CIV\nJudy Aldan""", {"Docket": {"docket_number": "2021-SCC-0017-CIV"}}, @@ -129,6 +124,617 @@ class ScraperExtractFromText(unittest.TestCase): }, ), ], + "juriscraper.opinions.united_states.federal_bankruptcy.bap1": [ + ( + """UNITED STATES BANKRUPTCY APPELLATE PANEL\n FOR THE FIRST CIRCUIT\n _______________________________\n\n BAP No. MW 00-005\n _______________________________\n\n IN RE: INDIAN MOTOCYCLE CO., INC. ,\n INDIAN MOTOCYCLE APPAREL AND ACCESSORIES, INC.\n INDIAN MOTOCYCLE MANUF CO., INC.,\n Debtors.\n _______________________________\n\n UNITED STATES OF AMERICA,\n Appellant,\n\n v.\n\n STERLING CONSULTING CORP., COLORADO RECEIVER\n and STEVEN M. RODOLAKIS, CHAPTER 7 TRUSTEE,\n Appellees.\n _______________________________\n\n Appeal from the United States Bankruptcy Court\n for the District of Massachusetts (Worcester)\n (Hon. Henry J. Boroff, U.S. Bankruptcy Judge)\n\n _______________________________\n\n Before\n GOODMAN, DE JESÚS, VAUGHN, U.S. Bankruptcy Judges\n _______________________________\n\n Peter Sklarew, U.S. Department of Justice, and Donald K. Stern, U.S. Attorney, on\n brief for the Appellant.\n\n Joseph H. Baldiga, Paul W. Carey of Mirick, O’Connell, DeMallie & Lougee and\n Stephan M. Rodolakis, Mark S. Foss of Peters Massad & Rodolakis, on brief for the\n Appellees.\n\n _______________________________\n\n April 26, 2001\n _______________________________\n\n""", + { + "OpinionCluster": { + "date_filed": datetime.date(2001, 4, 26) + }, + }, + ), + ], + "juriscraper.opinions.united_states.state.nysupct_commercial": [ + ( + # https://nycourts.gov/reporter/3dseries/2023/2023_51345.htm + """\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    1125 Morris Ave. Realty LLC v Title Issues Agency\nLLC
    2023 NY Slip Op 51345(U) [81 Misc 3d 1215(A)]
    Decided on December 12, 2023
    Supreme Court, Bronx County
    Gomez, J.
    Published by New York State Law Reporting\nBureau pursuant to Judiciary Law § 431.
    This opinion is uncorrected and will not be\npublished in the printed Official Reports.


    1125 Morris\nAvenue Realty LLC, Plaintiff(s),\n\n

    against

    Title Issues Agency LLC, MARTIN E. KOFMAN,\nSTEVEN LOWENTHAL, ESQ., and LOWENTHAL PC, "JOHN DOE," "JANE DOE,"\n"ABC CORPORATION," AND "XYZ CORPORATION,"\nDefendant(s).


    \n\n


    Index No. 809156/23E\n


    \n
    Counsel for plaintiff: Law Office of Jan V Farensbach

    Counsel for\ndefendants: Rosenberg & Steinmetz PC
    \n
    \n\n\n
    Fidel E. Gomez, J.\n\n

    In this action for, inter alia, breach of contract, defendants TITLE ISSUES""", + { + "Docket": { + "docket_number": "Index No. 809156/23E", + "case_name_full": '1125 Morris Avenue Realty LLC, Plaintiff(s), against Title Issues Agency LLC, MARTIN E. KOFMAN, STEVEN LOWENTHAL, ESQ., and LOWENTHAL PC, "JOHN DOE," "JANE DOE," "ABC CORPORATION," AND "XYZ CORPORATION," Defendant(s).', + }, + "Opinion": {"author_str": "Fidel E. Gomez"}, + "Citation": { + "volume": "81", + "reporter": "Misc 3d", + "page": "1215(A)", + "type": 2, + }, + "OpinionCluster": { + "case_name_full": '1125 Morris Avenue Realty LLC, Plaintiff(s), against Title Issues Agency LLC, MARTIN E. KOFMAN, STEVEN LOWENTHAL, ESQ., and LOWENTHAL PC, "JOHN DOE," "JANE DOE," "ABC CORPORATION," AND "XYZ CORPORATION," Defendant(s).' + }, + }, + ) + ], + "juriscraper.opinions.united_states.state.nysupct": [ + ( + # https://www.nycourts.gov/reporter/pdfs/2019/2019_32654.pdf + """Deboer v Friedman\n2019 NY Slip Op 32654(U)\nSeptember 4, 2019\nSupreme Court, New York County\nDocket Number: 654329/2018\nJudge: Arthur F. Engoron""", + { + "Docket": {"docket_number": "654329/2018"}, + "Opinion": {"author_str": "Arthur F. Engoron"}, + }, + ), + ( + # https://www.nycourts.gov/reporter/pdfs/2019/2019_30152.pdf + """1809 Emns Ave Inc. v American Signcrafters LLC\n2019 NY Slip Op 30152(U)\nJanuary 10, 2019\nSupreme Court, Kings County\nDocket Number: 517955/18\nJudge: Leon Ruchelsman""", + { + "Docket": {"docket_number": "517955/18"}, + "Opinion": {"author_str": "Leon Ruchelsman"}, + }, + ), + ( + # https://www.nycourts.gov/reporter/pdfs/2021/2021_33275.pdf + """Ciardiello v Village of New Paltz\n2021 NY Slip Op 33275(U)\nMarch 8, 2021\nSupreme Court, Ulster County\nDocket Number: Index No. EF18-3323\nJudge: Christopher E. Cahill""", + { + "Docket": {"docket_number": "Index No. EF18-3323"}, + "Opinion": {"author_str": "Christopher E. Cahill"}, + }, + ), + ( + # https://www.nycourts.gov/reporter/pdfs/2018/2018_33709.pdf + """Matter of Micklas v Town of Halfmoon Planning Bd.\n2018 NY Slip Op 33709(U)\nJanuary 10, 2018\nSupreme Court, Saratoga County\n Docket Number: 20171554\nJudge: Thomas D. Buchanan\nCases posted with a "30000""", + { + "Docket": {"docket_number": "20171554"}, + "Opinion": {"author_str": "Thomas D. Buchanan"}, + }, + ), + ( + # https://www.nycourts.gov/reporter/pdfs/2023/2023_32445.pdf + """Rothman v Puretz\n2023 NY Slip Op 32445(U)\nJuly 18, 2023\nSupreme Court, Monroe County\nDocket Number: Index No. E2023001856\nJudge: J. Scott Odorisi\nCases posted with a "30000" identifier, i""", + { + "Docket": {"docket_number": "Index No. E2023001856"}, + "Opinion": {"author_str": "Scott Odorisi"}, + }, + ), + ( + # https://www.nycourts.gov/reporter/pdfs/2021/2021_30613.pdf + """Dodaj v Lofti\n2021 NY Slip Op 30613(U)\nJanuary 13, 2021\nSupreme Court, Bronx County\nDocket Number: 20240/2019E\nJudge: Veronica G. Hummel""", + { + "Docket": {"docket_number": "20240/2019E"}, + "Opinion": {"author_str": "Veronica G. Hummel"}, + }, + ), + ], + "juriscraper.opinions.united_states.state.nycountyct": [ + ( + # https://www.nycourts.gov/reporter/pdfs/2018/2018_33955.pdf + """People v Wiltshire\n2018 NY Slip Op 33955(U)\nAugust 15, 2018\nCounty Court, Westchester County\nDocket Number: 18-0465-01\nJudge: Larry J. Schwartz""", + { + "Docket": {"docket_number": "18-0465-01"}, + "Opinion": {"author_str": "Larry J. Schwartz"}, + }, + ), + ( + # https://www.nycourts.gov/reporter/3dseries/2020/2020_50084.htm Docket number seems to be censored + """\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    People v J.S.
    2020 NY Slip Op 50084(U) [66 Misc 3d 1213(A)]
    Decided on January 17, 2020
    County Court, Nassau County
    Singer, J.
    Published by New York State Law Reporting Bureau\npursuant to Judiciary Law § 431.
    This opinion is uncorrected and will not be\npublished in the printed Official Reports.
    \n

    \n\nDecided on January 17, 2020\n

    County Court, Nassau County
    \n\n

    The People of the\nState of New York, Plaintiff,\n\n

    against

    J.S., Adolescent Offender.


    \n\n


    FYC-00000-00\n

    \n

    N. Scott Banks, Attorney in Chief, Legal Aid Society of Nassau County, \n

    Max Sullivan, Esq. \n

    Hon. Madeline Singas, Nassau County District Attorney, \n

    Christopher Mango, Esq.

    \n\n\n
    Conrad D. Singer, J.\n\n

    The following paper""", + { + "Docket": { + "docket_number": "FYC-00000-00", + "case_name_full": "The People of the State of New York, against J.S., Adolescent Offender.", + }, + "Opinion": {"author_str": "Conrad D. Singer"}, + "Citation": { + "volume": "66", + "reporter": "Misc 3d", + "page": "1213(A)", + "type": 2, + }, + "OpinionCluster": { + "case_name_full": "The People of the State of New York, against J.S., Adolescent Offender." + }, + }, + ), + ], + "juriscraper.opinions.united_states.state.nycivct": [ + ( + # https://www.nycourts.gov/reporter/3dseries/2023/2023_23397.htm + """\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    City of New York v "Doe"
    2023 NY Slip Op 23397
    Decided on December 18, 2023
    Civil Court Of The City Of New York, Bronx County
    Zellan, J.
    Published by New York State Law Reporting Bureau pursuant to Judiciary Law § 431.
    This opinion is uncorrected and subject to revision before publication in the printed Official Reports.
    \n

    \nDecided on December 18, 2023\n
    Civil Court of the City of New York, Bronx County
    \n\n

    City \n\tof New York, Petitioner(s),\n\n

    against

    "John" "Doe" et al., Respondents.


    \n\n


    Index No. LT-300755-22/BX\n


    Maurice Dobson, Special Assistant Corporation Counsel, New York City Department of Housing Preservation & Development (Isidore Scipio, of counsel), New York, NY, for petitioner.

    April Whitehead, Irvington, NY, for respondents Alexander Aqel and Aqel Sheet Metal Inc.


    Jeffrey S. Zellan, J.

    Recitation, as required by CPLR 2219(a), of the papers considered in the review of this motion:

    """, + { + "Docket": { + "docket_number": "Index No. LT-300755-22/BX", + "case_name_full": 'City of New York, Petitioner(s), against "John" "Doe"', + }, + "Opinion": {"author_str": "Jeffrey S. Zellan"}, + "OpinionCluster": { + "case_name_full": 'City of New York, Petitioner(s), against "John" "Doe"' + }, + }, + ), + ( + # https://www.nycourts.gov/reporter/3dseries/2023/2023_51315.htm + """n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    201 E. 164th St. Assoc., LLC v Calderon
    2023 NY Slip Op 51315(U) [81 Misc 3d 1211(A)]
    Decided on December 4, 2023
    Civil Court Of The City Of New York, Bronx County
    Ibrahim, J.
    Published by New York State Law Reporting\nBureau pursuant to Judiciary Law § 431.
    This opinion is uncorrected and will not be\npublished in the printed Official Reports.
    \n

    \n\nDecided on December 4, 2023\n
    Civil Court of the City of New York, Bronx County
    \n\n

    201 East 164th\nStreet Associates, LLC, Petitioner,\n\n

    against

    Pastora Calderon & ROSA IDALIA\nABDELNOUR, Respondents, \n
    "JOHN DOE" & "JANE DOE" A/K/A DUNIA GOMEZ\nRespondents-Undertenants.


    \n\n


    Index No. 11523/2020\n

    \n
    For Petitioner: Hertz, Cherson & Rosenthal, PC

    For Respondent:\nThe Bronx Defenders by Adam Markovics, Esq.

    \n\n\nShorab Ibrahim, J.\n\n

    Recitation, as required by C.P.L.R. § 2219(a), of the papers considered in\nreview of this motion.

    """, + { + "Docket": { + "docket_number": "Index No. 11523/2020", + "case_name_full": '201 East 164th Street Associates, LLC, against Pastora Calderon & ROSA IDALIA ABDELNOUR, "JOHN DOE" & "JANE DOE" A/K/A DUNIA GOMEZ Respondents-Undertenants.', + }, + "Opinion": {"author_str": "Shorab Ibrahim"}, + "OpinionCluster": { + "case_name_full": '201 East 164th Street Associates, LLC, against Pastora Calderon & ROSA IDALIA ABDELNOUR, "JOHN DOE" & "JANE DOE" A/K/A DUNIA GOMEZ Respondents-Undertenants.' + }, + "Citation": { + "volume": "81", + "reporter": "Misc 3d", + "page": "1211(A)", + "type": 2, + }, + }, + ), + ], + "juriscraper.opinions.united_states.state.nysurct": [ + ( + # https://www.nycourts.gov/reporter/3dseries/2023/2023_50144.htm + """\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Matter of Pia Jeong Yoon
    2023 NY Slip Op 50144(U) [78 Misc 3d 1203(A)]
    Decided on February 28, 2023
    Surrogate\'s Court, Queens County
    Kelly, S.
    Published by New York State Law Reporting\nBureau pursuant to Judiciary Law § 431.
    This opinion is uncorrected and will not be\npublished in the printed Official Reports.
    \n

    \n\nDecided on February 28, 2023\n
    Surrogate\'s Court, Queens County
    \n\n

    Probate\nProceeding, Will of Pia Jeong Yoon, a/k/a PIA JEONG AE YOON, \n
    a/k/a PIA J. YOON, a/k/a JEONG YOON, a/k/a JEONG AE YOON,\nDeceased.\n


    \n


    File No. 2021-31/C\n

    \n
    Petitioner\'s Attorney: J. John Kim. Esq

    \n
    Petitioner's Attorney: J. John Kim. Esq.
    Pashman Stein Walder Hayden,\nPC
    2900 Westchester Avenue, Suite 204, Purchase, New York 10577
    (201)\n270-5470

    Respondent's Attorney: Charlotte C. Lee, Esq.
    277\nBroadway, Suite 400
    New York, NY 10007
    (212) 732-3366

    \n\n\nPeter J. Kelly, S.\n\n

    Petitioner moves for summary judgment in this proceeding which seeks leave to""", + { + "Docket": { + "docket_number": "File No. 2021-31/C", + "case_name_full": "Probate Proceeding, Will of Pia Jeong Yoon, a/k/a PIA JEONG AE YOON, a/k/a PIA J. YOON, a/k/a JEONG YOON, a/k/a JEONG AE YOON", + }, + "Opinion": {"author_str": "Peter J. Kelly"}, + "Citation": { + "volume": "78", + "reporter": "Misc 3d", + "page": "1203(A)", + "type": 2, + }, + "OpinionCluster": { + "case_name_full": "Probate Proceeding, Will of Pia Jeong Yoon, a/k/a PIA JEONG AE YOON, a/k/a PIA J. YOON, a/k/a JEONG YOON, a/k/a JEONG AE YOON" + }, + }, + ), + ( + # https://www.nycourts.gov/reporter/pdfs/2020/2020_34495.pdf + """Matter of Christopher J. A.\n2020 NY Slip Op 34495(U)\nMarch 16, 2020\nSurrogate\'s Court, Bronx County\nDocket Number: 81G1998/K\nJudge: Nelida Malave-Gonzalez\nCases posted with a "30000" identifier, i.e., 2013 NY Slip\nOp 30001(U)""", + { + "Docket": {"docket_number": "81G1998/K"}, + "Opinion": {"author_str": "Nelida Malave-Gonzalez"}, + }, + ), + ], + "juriscraper.opinions.united_states.state.nyfamct": [ + ( + # https://www.nycourts.gov/reporter/3dseries/2020/2020_50049.htm + """\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Matter of Robyn C. v William M.J.
    2020 NY Slip Op 50049(U) [66 Misc 3d 1210(A)]
    Decided on January 16, 2020
    Family Court, Kings County
    Vargas, J.
    Published by New York State Law Reporting Bureau\npursuant to Judiciary Law § 431.
    This opinion is uncorrected and will not be\npublished in the printed Official Reports.
    \n

    \n\nDecided on January 16, 2020\n

    Family Court, Kings County
    \n\n

    In the Matter of a\nProceeding Under Article 6 of the Family Court Act Robyn C., Petitioner,\n\n

    against

    William M. J. (Deceased) and EVA JANE P.,\nRespondent.


    \n\n


    G-10994-19\n


    The mother was represented by Elaine McKnight, Esq., 457 56th Street, Brooklyn,\nNY 11220, Tel. (917) 476-2900; Paramour was represented by Sharyn M. Duncan, Esq., 32\nCourt St., Suite 707, Brooklyn, NY 11201, sharynmdrushing@msn.com, Phone: (718)\n625-6777; and the Child is represented by Alyana Love, Esq, Children's Law Center.

    \n\n\n
    Javier E. Vargas, J.\n\n

    Papers Numbered

    Summons, Petition, Affidavit & Exhibits Annexed\n1

    Notice of Motion, Affirmation & Exhibits Annexed 2

    Notice of""", + { + "Docket": { + "docket_number": "G-10994-19", + "case_name_full": "In the Matter of a Proceeding Under Article 6 of the Family Court Act Robyn C., against William M. J. (Deceased) and EVA JANE P.", + }, + "Opinion": {"author_str": "Javier E. Vargas"}, + "Citation": { + "volume": "66", + "reporter": "Misc 3d", + "page": "1210(A)", + "type": 2, + }, + "OpinionCluster": { + "case_name_full": "In the Matter of a Proceeding Under Article 6 of the Family Court Act Robyn C., against William M. J. (Deceased) and EVA JANE P." + }, + }, + ), + ( + # https://www.nycourts.gov/reporter/3dseries/2022/2022_50020.htm + """\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Matter of Michelle B. v Thomas Y.
    2022 NY Slip Op 50020(U) [73 Misc 3d 1238(A)]
    Decided on January 11, 2022
    Family Court, Kings County
    Vargas, J.
    Published by New York State Law Reporting Bureau\npursuant to Judiciary Law § 431.
    This opinion is uncorrected and will not be\npublished in the printed Official Reports.
    \n

    \n\nDecided on January 11, 2022\n
    Family Court, Kings County
    \n\n

    In the Matter of a\nProceeding for Support Under Article 4 of the Family Court Act Michelle B., Petitioner,\n\n

    against

    Thomas Y., Respondent.


    \n\n


    Docket No. F-30317/2004/19F\n


    \n

    The mother was represented by Rena C. Dawson, Esq., Karasayk & Moschella,\nLLP, 233 Broadway, suite 2340, New York, NY 10006, Phone: (212) 233-3800,\nrdawson@kmattorneys.com ; the Father was unrepresented.

    \n\n\n
    Javier E. Vargas, J.\n""", + { + "Docket": { + "docket_number": "Docket No. F-30317/2004/19F", + "case_name_full": "In the Matter of a Proceeding for Support Under Article 4 of the Family Court Act Michelle B., against Thomas Y.", + }, + "Opinion": {"author_str": "Javier E. Vargas"}, + "Citation": { + "volume": "73", + "reporter": "Misc 3d", + "page": "1238(A)", + "type": 2, + }, + "OpinionCluster": { + "case_name_full": "In the Matter of a Proceeding for Support Under Article 4 of the Family Court Act Michelle B., against Thomas Y." + }, + }, + ), + ], + "juriscraper.opinions.united_states.state.nycrimct": [ + ( + # https://www.nycourts.gov/reporter/3dseries/2018/2018_50128.htm + """\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    People v Hot
    2018 NY Slip Op 50128(U) [58 Misc 3d 1215(A)]
    Decided on January 18, 2018
    Criminal Court Of The City Of New York, Kings County
    Leo, J.
    Published by New York State Law Reporting Bureau\npursuant to Judiciary Law § 431.
    This opinion is uncorrected and will not be\npublished in the printed Official Reports.
    \n

    \n\nDecided on January 18, 2018\n
    Criminal Court of the City of New York, Kings County
    \n\n

    The People of the\nState of New York\n\n

    against

    Amela Hot, Defendant.


    \n\n


    2017KN054132\n


    Labe M. Richman, 305 Broadway, Suite 100, New York, New York, 10007, attorney\nfor defendant Amela Hot

    Eric Gonzalez, District Attorney, Kings County, by Sapna\nKishnani Esq., Assistant District Attorney, Brooklyn, of Counsel for the People

    \n\n\n
    Donald Leo, J.\n""", + { + "Docket": { + "docket_number": "2017KN054132", + "case_name_full": "The People of the State of New York against Amela Hot", + }, + "Opinion": {"author_str": "Donald Leo"}, + "Citation": { + "volume": "58", + "reporter": "Misc 3d", + "page": "1215(A)", + "type": 2, + }, + "OpinionCluster": { + "case_name_full": "The People of the State of New York against Amela Hot" + }, + }, + ), + ( + # https://www.nycourts.gov/reporter/3dseries/2018/2018_50503.htm + """\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    People v Smith
    2018 NY Slip Op 50503(U) [59 Misc 3d 1211(A)]
    Decided on March 16, 2018
    Criminal Court Of The City Of New York, Queens County
    Drysdale, J.
    Published by New York State Law Reporting Bureau\npursuant to Judiciary Law § 431.
    This opinion is uncorrected and will not be\npublished in the printed Official Reports.
    \n

    \n\nDecided on March 16, 2018\n
    Criminal Court of the City of New York, Queens County
    \n\n

    The People of the\nState of New York, Plaintiff,\n\n

    against

    James Smith, Defendant.


    \n\n


    CR-024874-17QN\n

    \n

    ADA Mattew Powers, ADA Kevin Timpone & ADA Latoya Cryder, for the\nPeople

    Virginia A. Conroy, Esq., for the Defendant

    \n\n\n
    Althea E. Drysdale, J.\n\n

    The defendant, James Smith, is charged with driving while intoxicated (VTL §""", + { + "Docket": { + "docket_number": "CR-024874-17QN", + "case_name_full": "The People of the State of New York, against James Smith", + }, + "Opinion": {"author_str": "Althea E. Drysdale"}, + "Citation": { + "volume": "59", + "reporter": "Misc 3d", + "page": "1211(A)", + "type": 2, + }, + "OpinionCluster": { + "case_name_full": "The People of the State of New York, against James Smith" + }, + }, + ), + ], + "juriscraper.opinions.united_states.state.nyclaimsct": [ + ( + # https://www.nycourts.gov/reporter/pdfs/2018/2018_34469.pdf + """Lawrence v State of N.Y. Dept. of\nCommunity Supervision\n2018 NY Slip Op 34469(U)\nJanuary 10, 2018\nCourt of Claims\nDocket Number: Index No. 2010-038-505\nJudge: W. Brooks DeBow""", + { + "Docket": {"docket_number": "Index No. 2010-038-505"}, + "Opinion": {"author_str": "W. Brooks Debow"}, + }, + ), + ( + # https://www.nycourts.gov/reporter/3dseries/2023/2023_50204.htm + """

    \n\nMartinaj v State of New York (2023 NY Slip Op 50204(U))\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Martinaj v State of New York
    2023 NY Slip Op 50204(U) [78 Misc 3d 1211(A)]
    Decided on March 2, 2023
    Court Of Claims
    Vargas, J.
    Published by New York State Law Reporting\nBureau pursuant to Judiciary Law § 431.
    This opinion is uncorrected and will not be\npublished in the printed Official Reports.
    \n

    \n\nDecided on March 2, 2023\n
    Court of Claims
    \n\n

    Bernardo\nMartinaj, Claimant,\n\n

    against

    State of New York, Defendant.


    \n\n


    Claim No. 136323-A\n


    \n
    For Claimant:
    Bernardo Martinaj, Pro se

    For Defendant:
    Hon. Letitia James, Attorney General of the State of New York
    By: Douglas R.\nKemp, Esq. Assistant Attorney General

    \n\n\nJavier E. Vargas, J.\n\n

    This Court having presided over the instant trial on February 7, 2023, heard the""", + { + "Docket": { + "docket_number": "Claim No. 136323-A", + "case_name_full": "Bernardo Martinaj, against State of New York", + }, + "Opinion": {"author_str": "Javier E. Vargas"}, + "OpinionCluster": { + "case_name_full": "Bernardo Martinaj, against State of New York" + }, + "Citation": { + "volume": "78", + "reporter": "Misc 3d", + "page": "1211(A)", + "type": 2, + }, + }, + ), + ], + "juriscraper.opinions.united_states.state.nydistct": [ + ( + # https://nycourts.gov/reporter/3dseries/2023/2023_51308.htm + """\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Sims v Regis
    2023 NY Slip Op 51308(U) [81 Misc 3d 1210(A)]
    Decided on November 30, 2023
    District Court Of Nassau County, Second District
    Montesano, J.
    Published by New York State Law Reporting\nBureau pursuant to Judiciary Law § 431.
    This opinion is uncorrected and will not be\npublished in the printed Official Reports.
    \n

    \n\nDecided on November 30, 2023\n

    District Court of Nassau County, Second District
    \n\n

    Alistair Sims,\nClaimant,\n\n

    against

    Lance Frantz Regis A/K/A LANCE REGIS A/K/A\nLANCE F. REGIS A/K/A FRANTZ L. REGISTRE A/K/A REGISTRE FRANTZ\nA/K/A VANCE REGIS A/K/A REGIS LANCE A/K/A REGIS L. FRANTZ,\nDefendant(s).


    \n\n


    Index No. SC-000830-23/NA \n<

    \n
    Alistair Sims; Lance Regis
    \n\n\n
    Michael A. Montesano, J.\n\n

    Papers Considered:

    """, + { + "Docket": { + "docket_number": "Index No. SC-000830-23/NA", + "case_name_full": "Alistair Sims, against Lance Frantz Regis A/K/A LANCE REGIS A/K/A LANCE F. REGIS A/K/A FRANTZ L. REGISTRE A/K/A REGISTRE FRANTZ A/K/A VANCE REGIS A/K/A REGIS LANCE A/K/A REGIS L. FRANTZ, Defendant(s).", + }, + "Opinion": {"author_str": "Michael A. Montesano"}, + "Citation": { + "volume": "81", + "reporter": "Misc 3d", + "page": "1210(A)", + "type": 2, + }, + "OpinionCluster": { + "case_name_full": "Alistair Sims, against Lance Frantz Regis A/K/A LANCE REGIS A/K/A LANCE F. REGIS A/K/A FRANTZ L. REGISTRE A/K/A REGISTRE FRANTZ A/K/A VANCE REGIS A/K/A REGIS LANCE A/K/A REGIS L. FRANTZ, Defendant(s)." + }, + }, + ) + ], + "juriscraper.opinions.united_states.state.nyjustct": [ + ( + # https://nycourts.gov/reporter/3dseries/2023/2023_51421.htm + """\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    People v Brennan
    2023 NY Slip Op 51421(U)
    Decided on December 22, 2023
    Justice Court Of The Village Of Piermont, Rockland County
    Ruby, J.
    Published by New York State Law Reporting Bureau pursuant to Judiciary Law § 431.
    This opinion is uncorrected and will not be published in the printed Official Reports.
    \n

    \n\nDecided on December 22, 2023\n
    Justice Court of the Village of Piermont, Rockland County
    \n\n

    People of the State of New York, Plaintiff,\n\n

    against

    Matthew Brennan, Defendant.


    \n\n


    Case No. 23-050020\n

    \n

    For the People:Denise L. Weiss, Esq., Deputy Town Attorney, Town of Clarkstown \n

    For the Defendant:Matthew Brennan, pro se

    \n\n\n
    Marc R. Ruby, J.\n\n

    RELEVANT FACTS AND PROCEDURAL HISTORY

    \n

    This action was tra""", + { + "Docket": { + "docket_number": "Case No. 23-050020", + "case_name_full": "People of the State of New York, against Matthew Brennan", + }, + "Opinion": {"author_str": "Marc R. Ruby"}, + "OpinionCluster": { + "case_name_full": "People of the State of New York, against Matthew Brennan" + }, + }, + ) + ], + "juriscraper.opinions.united_states.state.nycityct": [ + ( + # https://nycourts.gov/reporter/3dseries/2023/2023_23374.htm + """

    \n\nPotentia Mgt. Group, LLC v D.W. (2023 NY Slip Op 23374)\n\n\n\n\n[*1]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Potentia Mgt. Group, LLC v D.W.
    2023 NY Slip Op 23374
    Decided on December 1, 2023
    Utica City Court
    Giruzzi, J.
    Published by New York State Law Reporting Bureau pursuant to Judiciary Law § 431.
    This opinion is uncorrected and subject to revision before publication in the printed Official Reports.
    \n

    \nDecided on December 1, 2023\n
    Utica City Court
    \n\n

    Potentia Management Group, LLC\n\n

    against

    D.W.


    \n\n


    Docket No. CV-00357-23\n<

    Ralph W. Fusco, Esq., for the Plaintiff

    Benjamin M. Burdick, Esq., for the Defendant

    \n\n\n
    F. Christopher Giruzzi, J.\n\n

    Procedural History

    \na. Initial Filings

    On February 10, 2023, Potentia Management Group, LLC, (hereinafter referred to as Potentia Management and / o""", + { + "Docket": { + "docket_number": "Docket No. CV-00357-23", + "case_name_full": "Potentia Management Group, LLC against D.W.", + }, + "Opinion": {"author_str": "F. Christopher Giruzzi"}, + "OpinionCluster": { + "case_name_full": "Potentia Management Group, LLC against D.W." + }, + }, + ), + ], + "juriscraper.opinions.united_states.state.nd": [ + ( + # Case without paragraph numbers + # https://www.courtlistener.com/api/rest/v3/opinions/10473075/ + """IN THE SUPREME COURT\n STATE OF NORTH DAKOTA\n\n 2024 ND 143\n\nRonald Wayne Wootan, Petitioner and Appellant\n v.\nState of North Dakota, Respondent and Appellee\n\n No. 20240025\n\nAppeal from the District Court of Rolette County, Northeast Judicial District,\nthe Honorable Anthony S. Benson, Judge.\n\nAFFIRMED.\n\nPer Curiam.\n\nKiara C. Kraus-Parr, Grand Forks, ND, for petitioner and appellant.\n\nBrian D. Grosinger, State’s Attorney, Rolla, ND, for respondent and appellee.\n\f Wootan v. State\n No. 20240025\n\nPer Curiam.\n\n Ronald Wootan appeals from an order denying his postconviction relief\napplication entered after the district court held an evidentiary hearing on\nremand. See Wootan v. State,""", + { + "Citation": { + "volume": "2024", + "reporter": "ND", + "page": "143", + "type": 8, + }, + }, + ), + ( + # Example of a consolidated case + # https://www.courtlistener.com/api/rest/v3/opinions/10473085/ + """IN THE SUPREME COURT\n STATE OF NORTH DAKOTA\n\n 2024 ND 141\n\nRenae Irene Gerszewski, Petitioner and Appellee\n v.\nConrad Keith Rostvet, Respondent and Appellant\n\n\n\n No. 20230361\n\n\n\nConrad Keith Rostvet, Petitioner and Appellant\n v.\nRenae Irene Gerszewski, Respondent and Appellee\n\n\n\n No. 20230362\n\n\n\nConrad Rostvet, Petitioner and Appellant\n v.\nWayne Gerszewski, Respondent and Appellee\n\n\n\n No. 20230363\n\n\n\nAppeal from the District Court of Walsh County, Northeast Judicial District, the Honorable\nBarbara L. Whelan, Judge.\n\fAFFIRMED.\n\nOpinion of the Court by Tufte, Justice.\n\nSamuel A. Gereszek, Grand Forks, N.D., for appellees.\n\nTimothy C. Lamb, Grand Forks, N.D., for appellant.\n\f Gerszewski v. Rostvet\n Nos. 20230361–20230363\n\nTufte, Justice.\n\n[¶1] Conrad Rostvet appeals from a district court’s order""", + { + "Citation": { + "volume": "2024", + "reporter": "ND", + "page": "141", + "type": 8, + }, + "OpinionCluster": {"case_name": "Gerszewski v. Rostvet"}, + "Docket": { + "case_name": "Gerszewski v. Rostvet", + "docket_number": "Nos. 20230361-20230363", + }, + }, + ), + ], + "juriscraper.opinions.united_states.state.wis": [ + ( + # https://www.wicourts.gov/sc/opinion/DisplayDocument.pdf?content=pdf&seqNo=669658 + """2023 WI 50\nS C W\nUPREME OURT OF ISCONSIN\nCASE NO.: 2021AP938-CR\nCOMPLETE TITLE: State of Wisconsin,""", + { + "Citation": { + "volume": "2023", + "reporter": "WI", + "page": "50", + "type": 8, + }, + }, + ) + ], + "juriscraper.opinions.united_states.state.wisctapp": [ + ( + # https://www.wicourts.gov/ca/opinion/DisplayDocument.pdf?content=pdf&seqNo=799325 + """2024 WI App 36\nCOURT OF APPEALS OF WISCONSIN\nPUBLISHED OPINION""", + { + "Citation": { + "volume": "2024", + "reporter": "WI App", + "page": "36", + "type": 8, + }, + }, + ) + ], + "juriscraper.opinions.united_states.state.conn": [ + # Example with Syllabus https://www.courtlistener.com/opinion/9505807/markley-v-state-elections-enforcement-commission/ + ( + """ 2 ,0 0 Conn. 1\n Markley v. State Elections Enforcement Commission\n\n\n JOE MARKLEY ET AL. v. STATE ELECTIONS\n ENFORCEMENT COMMISSION\n (SC 20726)\n Robinson, C. J., and McDonald, Mullins, Ecker and Alexander, Js.\n\n Syllabus\n\n The plaintiffs, M and S, candidates for state legislative offices in the 2014\n general election, appealed to the trial court from the decision of the\n defendant, the State Elections Enforcement Commission, which\n assessed fines against the plaintiffs upon determining that they had\n violated certain state statutes and regulations governing campaign\n financing and the Citizens’ Election Program (program) (§ 9-700 et seq.).\n The plaintiffs’ respective campaign committees had each applied for\n and received public funding grants through the program. During the 2014\n election cycle, the plaintiffs’ campaign committees published certain\n communications and advertisements that made various references to\n the record and policies of D, then the governor, who was running for\n reelection at that time. The communications both touted the plaintiffs’\n respective accomplishments and positions and referred to their opposi-\n tion to the agenda advanced by D and D’s Democratic allies, including\n tax hikes and increased spending. One of the communications high-\n lighted votes taken by S’s opponent in the 2014 election, C, when C\n was serving as a state representative. C filed a complaint with the\n commission, alleging that the communications were impermissible cam-\n paign expenditures under the program. C relied on an advisory opinion\n previously issued by the commission, in which it interpreted the statutes\n (§§ 9-601b and 9-607 (g)) defining the term ‘‘expenditure’’ and governing\n the permissibility of campaign expenditures, as well as the state regula-\n tions (§§ 9-706-1 and 9-706-2) implementing the program, and concluded\n that, in the absence of a statutory exception to the definition of ‘‘expendi-\n ture,’’ funds in a candidate committee’s account may not be used to\n make a communication that is not directly related to the candidate’s\n own electoral race and that also promotes the defeat of or attacks a\n candidate who is not a direct opponent of the candidate sponsoring the\n communication but who is running in a different race. After a hearing,\n the commission found that the plaintiffs had violated the applicable\n statutes and regulations by using their candidate committee funds to\n pay for communications that criticized D in the course of promoting\n their opposition to D’s policies. On appeal to the trial court, the plaintiffs\n claimed that the statutes and regulations imposing expenditure limita-\n tions as a condition of receiving public funding violated their rights\n under the first amendment to the United States constitution by restricting\n their ability to speak about other, nonopposing candidates. The trial\n court agreed with the commission’s conclusion that the plaintiffs had\n\x0c0, 0 CONNECTICUT LAW JOURNAL Page 1\n\n\n\n\n 0 Conn. 1 ,0 3\n Markley v. State Elections Enforcement Commission\n violated the applicable statutes and regulations, insofar as the communi-\n cations constituted the functional equivalent of express advocacy for\n the defeat of D in his reelection bid, and the trial court further concluded\n that the program constituted a valid, alternative route by which the\n plaintiffs voluntarily had elected to exercise their first amendment rights\n and that the program’s conditions did not abridge those rights. Accord-\n ingly, the trial court rendered judgment upholding the commission’s\n decision, from which the plaintiffs appealed. On appeal, the plaintiffs\n claimed, inter alia, that the commission’s enforcement of the applicable\n statutes and regulations to preclude publicly funded candidates from\n using their candidate committee funds to pay for campaign communica-\n tions, which, as a rhetorical device, invoke the name of a candidate in\n a different electoral race to refer more broadly to the policies or political\n party associated with that candidate, violated their first amendment\n rights.\n\n Held that the commission’s enforcement of the applicable statutes and\n regulations in accordance with its advisory opinion imposed an unconsti-\n tutional condition in violation of the first amendment to the extent that\n it penalized the plaintiffs for mentioning D’s name in a manner that was\n not the functional equivalent of speech squarely directed at D’s reelection\n campaign, and, accordingly, this court reversed the trial court’s judgment\n and remanded the case with direction to sustain the plaintiffs’ adminis-\n trative appeal:\n\n Following an examination of the United States Supreme Court’s decisions\n considering the constitutionality of various campaign finance reform\n laws under the first amendment and a discussion of the unconstitutional\n conditions doctrine, pursuant to which the government may not deny a\n benefit to a person on a basis that infringes his or her constitutionally\n protected freedom of speech, even if that person is not otherwise entitled\n to such a benefit, this court observed that, although laws that burden\n political speech, including expenditure limitations, ordinarily are subject\n to strict scrutiny, candidates who voluntarily accept public campaign\n funding also accept reasonable terms and conditions attendant to such\n programs that otherwise may abridge their free speech rights.\n\n Nevertheless, the fact that a candidate voluntarily participates in a gov-\n ernment program is not dispositive of the first amendment issue, when, as\n in the present case, the program restrictions at issue are not generalized\n expenditure limits but, rather, directly govern the specific content of\n a publicly financed candidate’s communications, and, because public\n campaign financing laws that restrict political expression operate to\n burden a candidate’s core first amendment speech, the court must look\n beyond voluntariness and apply strict scrutiny to determine whether the\n restrictions are narrowly tailored to achieve the traditional goals of public\n campaign financing, namely, promoting participation in the campaign\n financing program, reducing fundraising burdens and the corrupting\n\x0cPage 2 CONNECTICUT LAW JOURNAL 0, 0\n\n\n\n\n 4 ,0 0 Conn. 1\n Markley v. State Elections Enforcement Commission\n effects of contributions and the pursuit of contributions on government\n decision making, facilitating candidate communications with the elector-\n ate, and protecting the fiscal integrity of the program.\n\n Prohibiting publicly funded candidates from engaging in campaign\n speech concerning other electoral races survives strict scrutiny if it is\n narrowly tailored to protect the public fisc by enforcing the limitations\n of the program, and limitations on campaign speech that refer to a\n candidate in another race are narrowly tailored to achieve that compel-\n ling state interest only when the speech at issue is unquestionably the\n functional equivalent of express advocacy or campaign speech concern-\n ing the candidate involved in the other race, rather than a rhetorical\n device intended to communicate where the speaker stands on the issues.\n\n Moreover, this court recognized that candidates must be able to commu-\n nicate where they stand on issues in relation to other candidates and\n public officials, and invoking prominent political figures by name will\n sometimes provide the most meaningful and effective way for a candidate\n to explain to voters their political ideals, policy commitments, and the\n values they hope to bring to the office they seek, even if some of those\n political figures may happen to be candidates elsewhere on the ballot\n in a particular election, and the rhetorical value of being able to categorize\n oneself in relation to other political candidates is especially great in\n state legislative races.\n\n Nonetheless, the commission could apply the standard articulated in its\n advisory opinion to preclude publicly funded candidates from using\n committee funds to promote the defeat of or to attack a candidate who\n is not a direct opponent of the candidate sponsoring the communication\n but who is engaged in a different electoral race, as that standard was\n not, on its face, an unconstitutional condition in violation of the first\n amendment, to the extent that it ensured that public funds are spent\n only on qualifying campaigns without exceeding the amount of the grant\n allotted per race, but, if that standard is applied in a way that muzzles\n a publicly funded candidate’s political speech beyond that necessary to\n prevent the funding of campaign speech with respect to a clearly identi-\n fied candidate running in a different electoral race, it is a content based\n restriction that is an unconstitutional condition in violation of the\n first amendment.\n\n In determining whether campaign communications by a publicly funded\n candidate who uses the name of a candidate engaged in a different\n electoral race as a rhetorical device to refer to a set of policies opposed\n or supported by the publicly funded candidate constitutes impermissible\n electoral communications, rather than a constitutionally protected mes-\n sage in direct furtherance of the publicly funded candidate’s own cam-\n paign for office, this court relied on the opinion announcing the judgment\n of the United States Supreme Court in Federal Election Commission v.\n\x0c0, 0 CONNECTICUT LAW JOURNAL Page 3\n\n\n\n\n 0 Conn. 1 ,0 5\n Markley v. State Elections Enforcement Commission\n Wisconsin Right to Life, Inc. (551 U.S. 449), which held that a court\n should find that a campaign communication is the functional equivalent\n of express advocacy of election or defeat of a candidate, rather than\n permissible discussion of issues and candidates who are intimately tied\n to public issues, only if the communication is susceptible of no reasonable\n interpretation other than as an appeal to vote for or against a specific can-\n didate.\n\n Furthermore, the functional equivalent of express advocacy standard is\n objective and focuses on the substance of the communication rather\n than on its effect or considerations of the speaker’s intent to affect the\n election, and, although the distinction between permissible discussion\n of issues and candidates, on the one hand, and prohibited advocacy of\n election or defeat of candidates, on the other, may often dissolve in\n practical application, the functional equivalency standard gives the bene-\n fit of the doubt to protecting rather than stifling speech, such that, when\n the first amendment is implicated, the tie goes to the speaker rather\n than the censor.\n\n With respect to the communications and advertisements at issue, this\n court concluded that they were not the functional equivalent of express\n advocacy with respect to D’s reelection, insofar as they could not reason-\n ably be construed as anything more than a rhetorical device intended\n to communicate the merits of the plaintiffs’ candidacies as bulwarks\n against the policies endorsed by D and his Democratic allies.\n\n Three of the communications at issue revealed nothing that rendered\n them the functional equivalent of express advocacy with respect to D’s\n reelection, as they lacked any express references thereto, did not suggest\n that a vote for C would be tantamount to a vote for D or Democratic\n Party policies, and did not indicate in any way that D was running for\n reelection in 2014 or that support for the plaintiffs would be integral to\n defeating the candidacy of D or any other Democrat seeking office,\n and, instead, those communications highlighted the plaintiffs’ role as a\n legislative check and balance against policies endorsed by D and his\n Democratic allies, such that the communications did not convey a differ-\n ent meaning in 2014, when D was running for reelection as an incumbent,\n than they would have conveyed during the 2012 or 2016 midterm election\n cycles, when D was simply serving as the governor.\n\n Although the remaining two communications presented a closer question,\n insofar as they either used words somewhat evocative of an ongoing\n negative campaign against D, such as promoting a new direction and\n imploring voters to ‘‘change course’’ and stop D’s agenda, or expressly\n referred to D’s campaign for governor, this court could not concluded\n that those communications were the functional equivalent of express\n advocacy with respect to D’s reelection because they reasonably might\n be understood as urging electoral resistance to the leadership and initia-\n\x0cPage 4 CONNECTICUT LAW JOURNAL 0, 0\n\n\n\n\n 6 ,0 0 Conn. 1\n Markley v. State Elections Enforcement Commission\n tives of D and his Democratic allies, and, to the extent that the references\n to ‘‘change’’ and a ‘‘campaign’’ could be understood to be the functional\n equivalent of express advocacy, the tie went to the speakers, that is,\n the plaintiffs.\n Argued September 13, 2023—officially released May 21, 2024\n\n Procedural History\n\n Appeal from a decision of the defendant finding the\n plaintiffs in violation of state election laws and regula-\n tions, brought to the Superior Court in the judicial dis-\n trict of New Britain, where the court, Joseph M. Shortall,\n judge trial referee, granted the defendant’s motion to\n dismiss and, exercising the powers of the Superior\n Court, rendered judgment dismissing the action, from\n which the plaintiffs appealed; thereafter, this court\n reversed the trial court’s judgment and remanded the\n case for further proceedings; subsequently, the case\n was and tried to the court, Hon. Joseph M. Shortall,\n judge trial referee, who, exercising the powers of the\n Superior Court, rendered judgment affirming the deci-\n sion of the defendant, from which the plaintiffs appealed.\n Reversed; judgment directed.\n Charles Miller, pro hac vice, with whom were Mario\n Cerame and, on the brief, Adam J. Tragone, pro hac\n vice, for the appellants (plaintiffs).\n Maura Murphy Osborne, deputy associate attorney\n general, with whom, on the brief, was William Tong,\n attorney general, for the appellee (defendant).\n Opinion\n\n ROBINSON, C. J. This appeal presents an issue of\n first impression under the first amendment to the United\n States constitution, namely, the extent to which the stat-\n utes and regulations governing the public funding of\n state elections in connection with the Citizens’ Election\n Program (program), General Statutes § 9-700 et seq.,\n may be applied to preclude publicly funded candidates\n\x0c0, 0 CONNECTICUT LAW JOURNAL Page 5\n\n\n\n\n 0 Conn. 1 ,0 7\n Markley v. State Elections Enforcement Commission\n\n from using their candidate committee funds to pay for\n campaign advertisements that, as a rhetorical device,\n invoke the name of a candidate in a different race to refer\n more broadly to the policies or political party associated\n with that candidate. The defendant, the State Elections\n Enforcement Commission (commission), imposed fines\n on the plaintiffs, Joe Markley and Rob Sampson, who\n were publicly funded candidates for state legislative\n office during the 2014 general election cycle, on the\n ground that they had violated the statutes and regula-\n tions governing the program when they utilized their\n candidate committee funds to pay for communications\n that criticized then Governor Dannel Malloy, who was\n seeking reelection to that office in that same election\n cycle, in the course of promoting their opposition to\n his policies. The plaintiffs now appeal1 from the judg-\n ment of the trial court upholding the decision of the\n commission, claiming that the commission’s enforce-\n ment of the state election laws in that manner violated\n their first amendment rights. Although a compelling\n governmental interest is served by a condition that pre-\n cludes publicly funded candidates from using program\n funds to support or oppose candidates in other races,\n we conclude that the commission violated the plaintiffs’\n first amendment rights with respect to the five adver-\n tisements at issue in this case because they could rea-\n sonably be understood to be something other than an\n appeal to vote against Governor Malloy. Accordingly,\n we reverse the judgment of the trial court.\n The record reveals the following undisputed facts\n and procedural history. During the 2014 general election\n cycle, Markley was an unopposed candidate for state\n senator from the Sixteenth Senatorial District and regis-\n tered the candidate committee ‘‘Joe Markley for State\n 1\n The plaintiffs appealed from the judgment of the trial court to the Appel-\n late Court, and we transferred the appeal to this court pursuant to General\n Statutes § 51-199 (c) and Practice Book § 65-1.\n\x0cPage 6 CONNECTICUT LAW JOURNAL 0, 0\n\n\n\n\n 8 ,0 0 Conn. 1\n Markley v. State Elections Enforcement Commission\n\n Senate 2014.’’ Sampson, who was an incumbent state\n representative from the Eightieth General Assembly\n District, was seeking reelection to that office during the\n 2014 general election cycle and registered the candidate\n committee ‘‘Sampson for CT.’’ Sampson’s opponent in\n that race was John ‘‘Corky’’ Mazurek, who is the com-\n plainant before the commission in this case. Each of\n the plaintiffs’ campaign committees applied for and\n received public funding grants from the program, Mar-\n kley in the amount of $56,814, and Sampson in the\n amount of $27,850.\n During the 2014 general election cycle, the plaintiffs\n published five communications or advertisements that\n are at issue in this appeal. The first communication,\n exhibit 2 before the commission, was a large, double-\n sided postcard, jointly paid for by the plaintiffs’ respec-\n tive committees, the back side of which stated that\n the plaintiffs ‘‘are who we need to turn Connecticut\n around!’’ In addition to touting the plaintiffs’ work as\n state legislators on behalf of Southington’s schools,\n seniors, and veterans, and their opposition to criminal\n justice reforms and the New Britain""", + { + "OpinionCluster": { + "date_filed": datetime.date(2024, 5, 21), + "date_filed_is_approximate": False, + "judges": "Robinson; McDonald; Mullins; Ecker; Alexander", + "syllabus": "The plaintiffs, M and S, candidates for state legislative offices in the 2014 general election, appealed to the trial court from the decision of the defendant, the State Elections Enforcement Commission, which assessed fines against the plaintiffs upon determining that they had violated certain state statutes and regulations governing campaign financing and the Citizens' Election Program (program) (§ 9-700 et seq.). The plaintiffs' respective campaign committees had each applied for and received public funding grants through the program. During the 2014 election cycle, the plaintiffs' campaign committees published certain communications and advertisements that made various references to the record and policies of D, then the governor, who was running for reelection at that time. The communications both touted the plaintiffs' respective accomplishments and positions and referred to their opposi- tion to the agenda advanced by D and D's Democratic allies, including tax hikes and increased spending. One of the communications high- lighted votes taken by S's opponent in the 2014 election, C, when C was serving as a state representative. C filed a complaint with the commission, alleging that the communications were impermissible cam- paign expenditures under the program. C relied on an advisory opinion previously issued by the commission, in which it interpreted the statutes (§§ 9-601b and 9-607 (g)) defining the term ''expenditure'' and governing the permissibility of campaign expenditures, as well as the state regula- tions (§§ 9-706-1 and 9-706-2) implementing the program, and concluded that, in the absence of a statutory exception to the definition of ''expendi- ture,'' funds in a candidate committee's account may not be used to make a communication that is not directly related to the candidate's own electoral race and that also promotes the defeat of or attacks a candidate who is not a direct opponent of the candidate sponsoring the communication but who is running in a different race. After a hearing, the commission found that the plaintiffs had violated the applicable statutes and regulations by using their candidate committee funds to pay for communications that criticized D in the course of promoting their opposition to D's policies. On appeal to the trial court, the plaintiffs claimed that the statutes and regulations imposing expenditure limita- tions as a condition of receiving public funding violated their rights under the first amendment to the United States constitution by restricting their ability to speak about other, nonopposing candidates. The trial court agreed with the commission's conclusion that the plaintiffs had violated the applicable statutes and regulations, insofar as the communi- cations constituted the functional equivalent of express advocacy for the defeat of D in his reelection bid, and the trial court further concluded that the program constituted a valid, alternative route by which the plaintiffs voluntarily had elected to exercise their first amendment rights and that the program's conditions did not abridge those rights. Accord- ingly, the trial court rendered judgment upholding the commission's decision, from which the plaintiffs appealed. On appeal, the plaintiffs claimed, inter alia, that the commission's enforcement of the applicable statutes and regulations to preclude publicly funded candidates from using their candidate committee funds to pay for campaign communica- tions, which, as a rhetorical device, invoke the name of a candidate in a different electoral race to refer more broadly to the policies or political party associated with that candidate, violated their first amendment rights. Held that the commission's enforcement of the applicable statutes and regulations in accordance with its advisory opinion imposed an unconsti- tutional condition in violation of the first amendment to the extent that it penalized the plaintiffs for mentioning D's name in a manner that was not the functional equivalent of speech squarely directed at D's reelection campaign, and, accordingly, this court reversed the trial court's judgment and remanded the case with direction to sustain the plaintiffs' adminis- trative appeal: Following an examination of the United States Supreme Court's decisions considering the constitutionality of various campaign finance reform laws under the first amendment and a discussion of the unconstitutional conditions doctrine, pursuant to which the government may not deny a benefit to a person on a basis that infringes his or her constitutionally protected freedom of speech, even if that person is not otherwise entitled to such a benefit, this court observed that, although laws that burden political speech, including expenditure limitations, ordinarily are subject to strict scrutiny, candidates who voluntarily accept public campaign funding also accept reasonable terms and conditions attendant to such programs that otherwise may abridge their free speech rights. Nevertheless, the fact that a candidate voluntarily participates in a gov- ernment program is not dispositive of the first amendment issue, when, as in the present case, the program restrictions at issue are not generalized expenditure limits but, rather, directly govern the specific content of a publicly financed candidate's communications, and, because public campaign financing laws that restrict political expression operate to burden a candidate's core first amendment speech, the court must look beyond voluntariness and apply strict scrutiny to determine whether the restrictions are narrowly tailored to achieve the traditional goals of public campaign financing, namely, promoting participation in the campaign financing program, reducing fundraising burdens and the corrupting effects of contributions and the pursuit of contributions on government decision making, facilitating candidate communications with the elector- ate, and protecting the fiscal integrity of the program. Prohibiting publicly funded candidates from engaging in campaign speech concerning other electoral races survives strict scrutiny if it is narrowly tailored to protect the public fisc by enforcing the limitations of the program, and limitations on campaign speech that refer to a candidate in another race are narrowly tailored to achieve that compel- ling state interest only when the speech at issue is unquestionably the functional equivalent of express advocacy or campaign speech concern- ing the candidate involved in the other race, rather than a rhetorical device intended to communicate where the speaker stands on the issues. Moreover, this court recognized that candidates must be able to commu- nicate where they stand on issues in relation to other candidates and public officials, and invoking prominent political figures by name will sometimes provide the most meaningful and effective way for a candidate to explain to voters their political ideals, policy commitments, and the values they hope to bring to the office they seek, even if some of those political figures may happen to be candidates elsewhere on the ballot in a particular election, and the rhetorical value of being able to categorize oneself in relation to other political candidates is especially great in state legislative races. Nonetheless, the commission could apply the standard articulated in its advisory opinion to preclude publicly funded candidates from using committee funds to promote the defeat of or to attack a candidate who is not a direct opponent of the candidate sponsoring the communication but who is engaged in a different electoral race, as that standard was not, on its face, an unconstitutional condition in violation of the first amendment, to the extent that it ensured that public funds are spent only on qualifying campaigns without exceeding the amount of the grant allotted per race, but, if that standard is applied in a way that muzzles a publicly funded candidate's political speech beyond that necessary to prevent the funding of campaign speech with respect to a clearly identi- fied candidate running in a different electoral race, it is a content based restriction that is an unconstitutional condition in violation of the first amendment. In determining whether campaign communications by a publicly funded candidate who uses the name of a candidate engaged in a different electoral race as a rhetorical device to refer to a set of policies opposed or supported by the publicly funded candidate constitutes impermissible electoral communications, rather than a constitutionally protected mes- sage in direct furtherance of the publicly funded candidate's own cam- paign for office, this court relied on the opinion announcing the judgment of the United States Supreme Court in Federal Election Commission v. Wisconsin Right to Life, Inc. (551 U.S. 449), which held that a court should find that a campaign communication is the functional equivalent of express advocacy of election or defeat of a candidate, rather than permissible discussion of issues and candidates who are intimately tied to public issues, only if the communication is susceptible of no reasonable interpretation other than as an appeal to vote for or against a specific can- didate. Furthermore, the functional equivalent of express advocacy standard is objective and focuses on the substance of the communication rather than on its effect or considerations of the speaker's intent to affect the election, and, although the distinction between permissible discussion of issues and candidates, on the one hand, and prohibited advocacy of election or defeat of candidates, on the other, may often dissolve in practical application, the functional equivalency standard gives the bene- fit of the doubt to protecting rather than stifling speech, such that, when the first amendment is implicated, the tie goes to the speaker rather than the censor. With respect to the communications and advertisements at issue, this court concluded that they were not the functional equivalent of express advocacy with respect to D's reelection, insofar as they could not reason- ably be construed as anything more than a rhetorical device intended to communicate the merits of the plaintiffs' candidacies as bulwarks against the policies endorsed by D and his Democratic allies. Three of the communications at issue revealed nothing that rendered them the functional equivalent of express advocacy with respect to D's reelection, as they lacked any express references thereto, did not suggest that a vote for C would be tantamount to a vote for D or Democratic Party policies, and did not indicate in any way that D was running for reelection in 2014 or that support for the plaintiffs would be integral to defeating the candidacy of D or any other Democrat seeking office, and, instead, those communications highlighted the plaintiffs' role as a legislative check and balance against policies endorsed by D and his Democratic allies, such that the communications did not convey a differ- ent meaning in 2014, when D was running for reelection as an incumbent, than they would have conveyed during the 2012 or 2016 midterm election cycles, when D was simply serving as the governor. Although the remaining two communications presented a closer question, insofar as they either used words somewhat evocative of an ongoing negative campaign against D, such as promoting a new direction and imploring voters to ''change course'' and stop D's agenda, or expressly referred to D's campaign for governor, this court could not concluded that those communications were the functional equivalent of express advocacy with respect to D's reelection because they reasonably might be understood as urging electoral resistance to the leadership and initia- tives of D and his Democratic allies, and, to the extent that the references to ''change'' and a ''campaign'' could be understood to be the functional equivalent of express advocacy, the tie went to the speakers, that is, the plaintiffs. Argued September 13, 2023—officially released May 21, 2024", + "procedural_history": "Appeal from a decision of the defendant finding the plaintiffs in violation of state election laws and regula- tions, brought to the Superior Court in the judicial dis- trict of New Britain, where the court, Joseph M. Shortall, judge trial referee, granted the defendant's motion to dismiss and, exercising the powers of the Superior Court, rendered judgment dismissing the action, from which the plaintiffs appealed; thereafter, this court reversed the trial court's judgment and remanded the case for further proceedings; subsequently, the case was and tried to the court, Hon. Joseph M. Shortall, judge trial referee, who, exercising the powers of the Superior Court, rendered judgment affirming the deci- sion of the defendant, from which the plaintiffs appealed. Reversed; judgment directed. Charles Miller, pro hac vice, with whom were Mario Cerame and, on the brief, Adam J. Tragone, pro hac vice, for the appellants (plaintiffs). Maura Murphy Osborne, deputy associate attorney general, with whom, on the brief, was William Tong, attorney general, for the appellee (defendant).", + } + }, + ), + # Example of secondary opinion where nothing can be extracted + # https://www.courtlistener.com/opinion/9499073/northland-investment-corp-v-public-utilities-regulatory-authority/ + ( + """fPage 0 CONNECTICUT LAW JOURNAL 0, 0\n\n\n\n\n 2 ,0 0 Conn. 0\n Northland Investment Corp. v. Public Utilities Regulatory Authority\n\n\n ECKER, J., with whom ROBINSON, C. J., and MUL-\n LINS, J., join, dissenting. As a matter of good govern-\n ment, I have no quarrel with the majority’s conclusion\n that the result it reaches today advances a legitimate\n and even praiseworthy public policy. If a residential\n landlord who pays the utility bill for a multiunit apart-\n ment bui""", + {"OpinionCluster": {}}, + ), + # Example without syllabus + # https://www.courtlistener.com/opinion/9447934/state-v-gamer + ( + """The “officially released” date that appears near the be-\nginning of each opinion is the date the opinion will be pub-\nlished in the Connecticut Law Journal or the date it was\nreleased as a slip opinion. The operative date for the be-\nginning of all time periods for filing postopinion motions\nand petitions for certification is the “officially released”\ndate appearing in the opinion.\n\n All opinions are subject to modification and technical\ncorrection prior to official publication in the Connecticut\nReports and Connecticut Appellate Reports. In the event of\ndiscrepancies between the advance release version of an\nopinion and the latest version appearing in the Connecticut\nLaw Journal and subsequently in the Connecticut Reports\nor Connecticut Appellate Reports, the latest version is to\nbe considered authoritative.\n\n The syllabus and procedural history accompanying the\nopinion as it appears in the Connecticut Law Journal and\nbound volumes of official reports are copyrighted by the\nSecretary of the State, State of Connecticut, and may not\nbe reproduced and distributed without the express written\npermission of the Commission on Official Legal Publica-\ntions, Judicial Branch, State of Connecticut.\n***********************************************\n\x0c STATE OF CONNECTICUT v.\n CHARLES GAMER, JR.\n (SC 20771)\n Robinson, C. J., and D’Auria, Mullins, Ecker,\n Alexander, Dannehy and Alvord, Js.\n Argued October 20—officially released December 5, 2023\n\n Procedural History\n\n Information charging the defendant with violation of\nprobation, brought to the Superior Court in the judicial\ndistrict of Stamford-Norwalk, geographical area num-\nber twenty, where the case was tried to the court,\nMcLaughlin, J.; judgment revoking the defendant’s pro-\nbation, from which the defendant appealed to the Appel-\nlate Court, Bright, C. J., and Moll and Pellegrino, Js.,\nwhich affirmed the trial court’s judgment, and the defen-\ndant, on the granting of certification, appealed to this\ncourt. Appeal dismissed.\n James B. Streeto, senior assistant public defender,\nwith whom, on the brief, was Meaghan Kirby, for the\nappellant (defendant).\n Laurie N. Feldman, assistant state’s attorney, with\nwhom, on the brief, were Suzanne M. Vieux, supervi-\nsory assistant state’s attorney, and Elizabeth Moran,\nformer assistant state’s attorney, for the appellee (state).\n\x0c Opinion\n\n PER CURIAM. The defendant, Charles Gamer, Jr""", + { + "OpinionCluster": { + "date_filed": datetime.date(2023, 12, 5), + "date_filed_is_approximate": False, + "judges": "Robinson; D’Auria; Mullins; Ecker; Alexander; Dannehy; Alvord", + "procedural_history": "Information charging the defendant with violation of probation, brought to the Superior Court in the judicial district of Stamford-Norwalk, geographical area num- ber twenty, where the case was tried to the court, McLaughlin, J.; judgment revoking the defendant's pro- bation, from which the defendant appealed to the Appel- late Court, Bright, C. J., and Moll and Pellegrino, Js., which affirmed the trial court's judgment, and the defen- dant, on the granting of certification, appealed to this court. Appeal dismissed. James B. Streeto, senior assistant public defender, with whom, on the brief, was Meaghan Kirby, for the appellant (defendant). Laurie N. Feldman, assistant state's attorney, with whom, on the brief, were Suzanne M. Vieux, supervi- sory assistant state's attorney, and Elizabeth Moran, former assistant state's attorney, for the appellee (state).", + } + }, + ), + ], + "juriscraper.opinions.united_states.state.connappct": [ + ( + # https://www.courtlistener.com/opinion/9501662/coney-v-commissioner-of-correction/?q=court_id%3Aconnappct&type=o&order_by=dateFiled%20desc&stat_Published=on + """Connecticut Law Jour-\nnal and subsequently in the Connecticut Reports or\nConnecticut Appellate Reports are copyrighted by the\nSecretary of the State, State of Connecticut, and may\nnot be reproduced or distributed without the express\nwritten permission of the Commission on Official Legal\nPublications, Judicial Branch, State of Connecticut.\n************************************************\n\x0cPage 0 CONNECTICUT LAW JOURNAL 0, 0\n\n\n\n\n 2 ,0 0 Conn. App. 1\n Coney v. Commissioner of Correction\n\n\n PAUL CONEY v. COMMISSIONER OF CORRECTION\n (AC 41747)\n Alvord, Cradle and Suarez, Js.\n\n Syllabus\n\n The petitioner, who had been convicted, following a jury trial, of the crimes\n of murder and criminal possession of a pistol or revolver, filed a fourth\n petition for a writ of habeas corpus. The habeas court, upon the request\n of the respondent, the Commissioner of Correction, issued an order to\n show cause why the petition should not be dismissed as untimely given\n that it had been filed beyond the time limit for successive petitions set\n forth in the applicable statute (§ 52-470 (d)). The court held an eviden-\n tiary hearing, during which the petitioner testified that he had filed a\n timely third habeas petition but withdrew it prior to trial on the advice\n of his prior habeas counsel. The petitioner further testified that counsel\n did not discuss § 52-470 (d) and that, if the petitioner had known that\n withdrawing his third petition and refiling would result in an untimely\n petition, he would not have done so. The habeas court dismissed the\n fourth habeas petition as untimely, concluding that the petitioner had\n failed to demonstrate good cause for the delay in filing the petition.\n Thereafter, the petitioner, on the granting of certification, appealed to\n this court, which affirmed the judgment of the habeas court. The peti-\n tioner, on the granting of certification, appealed to the Supreme Court,\n which granted the petition for certification, vacated the judgment of\n this court, and remanded the case to this court for further consideration\n in light of Rose v. Commissioner of Correction (348 Conn. 333). Held\n that, after further consideration of the issue raised in this appeal, the\n proper remedy was to remand the matter to the habeas court for a\n new hearing and good cause determination under § 52-470 (d) and (e),\n consistent with the principles set forth in Rose, Rapp v. Commissioner\n of Correction (224 Conn. App. 336), and Hankerson v. Commissioner\n of Correction (223 Conn. App. 562).\n Argued April 8—officially released May 14, 2024\n\n Procedural History\n\n Petition for a writ of habeas corpus, brought to the\n Superior Court in the judicial district of Tolland, where\n the court, Sferrazza, J., rendered judgment dismissing\n the petition; thereafter, the petitioner, on the granting\n of certification, appealed to this court, Alvord, Elgo and\n Albis, Js., which affirmed the judgment of the habeas\n court; subsequently, on the granting of certification,\n\x0c0, 0 CONNECTICUT LAW JOURNAL Page 1\n\n\n\n\n 0 Conn. App. 1 ,0 3\n Coney v. Commissioner of Correction\n\n the petitioner appealed to the Supreme Court, which\n granted the petition to appeal, vacated the judgment of\n this court and remanded the case to this court for fur-\n ther proceedings. Reversed; further proceedings.\n Judie Marshall, assigned counsel, for the appellant\n (petitioner).\n Linda F. Rubertone, senior assistant state’s attorney,\n for the appellee (respondent).\n Opinion\n\n SUAREZ, J. This appeal returns to this court on\n remand from our Supreme Court with direction to fur-\n ther consider the claim raised by the petitioner, Paul\n Coney, that the habeas court erred in dismissing his\n petition for a writ of habeas corpus as untimely pursu-\n ant to General Statutes § 52-470 (d) and (e) because\n he failed to demonstrate good cause to overcome the\n statutory presumption of an unreasonable delay. See\n Coney v. Commissioner of Correction, 348 Conn. 946,\n 308 A.3d 35 (2024). We reverse the judgment of the\n habeas court and remand the matter for a new hearing\n and good cause determinat""", + { + "OpinionCluster": { + "date_filed": datetime.date(2024, 5, 14), + "date_filed_is_approximate": False, + "procedural_history": "Petition for a writ of habeas corpus, brought to the Superior Court in the judicial district of Tolland, where the court, Sferrazza, J., rendered judgment dismissing the petition; thereafter, the petitioner, on the granting of certification, appealed to this court, Alvord, Elgo and Albis, Js., which affirmed the judgment of the habeas court; subsequently, on the granting of certification, the petitioner appealed to the Supreme Court, which granted the petition to appeal, vacated the judgment of this court and remanded the case to this court for fur- ther proceedings. Reversed; further proceedings. Judie Marshall, assigned counsel, for the appellant (petitioner). Linda F. Rubertone, senior assistant state's attorney, for the appellee (respondent).", + "syllabus": "The petitioner, who had been convicted, following a jury trial, of the crimes of murder and criminal possession of a pistol or revolver, filed a fourth petition for a writ of habeas corpus. The habeas court, upon the request of the respondent, the Commissioner of Correction, issued an order to show cause why the petition should not be dismissed as untimely given that it had been filed beyond the time limit for successive petitions set forth in the applicable statute (§ 52-470 (d)). The court held an eviden- tiary hearing, during which the petitioner testified that he had filed a timely third habeas petition but withdrew it prior to trial on the advice of his prior habeas counsel. The petitioner further testified that counsel did not discuss § 52-470 (d) and that, if the petitioner had known that withdrawing his third petition and refiling would result in an untimely petition, he would not have done so. The habeas court dismissed the fourth habeas petition as untimely, concluding that the petitioner had failed to demonstrate good cause for the delay in filing the petition. Thereafter, the petitioner, on the granting of certification, appealed to this court, which affirmed the judgment of the habeas court. The peti- tioner, on the granting of certification, appealed to the Supreme Court, which granted the petition for certification, vacated the judgment of this court, and remanded the case to this court for further consideration in light of Rose v. Commissioner of Correction (348 Conn. 333). Held that, after further consideration of the issue raised in this appeal, the proper remedy was to remand the matter to the habeas court for a new hearing and good cause determination under § 52-470 (d) and (e), consistent with the principles set forth in Rose, Rapp v. Commissioner of Correction (224 Conn. App. 336), and Hankerson v. Commissioner of Correction (223 Conn. App. 562). Argued April 8—officially released May 14, 2024", + "judges": "Alvord; Cradle; Suarez", + } + }, + ), + ( + # 2 docket numbers + # https://www.courtlistener.com/opinion/9497599/lepkowski-v-planning-commission/?q=court_id%3Aconnappct&type=o&order_by=dateFiled+desc&stat_Published=on&page=2 + """Connecticut Law Jour-\nnal and subsequently in the Connecticut Reports or\nConnecticut Appellate Reports are copyrighted by the\nSecretary of the State, State of Connecticut, and may\nnot be reproduced or distributed without the express\nwritten permission of the Commission on Official Legal\nPublications, Judicial Branch, State of Connecticut.\n************************************************\n\x0cPage 0 CONNECTICUT LAW JOURNAL 0, 0\n\n\n\n\n 2 ,0 0 Conn. App. 1\n Lepkowski v. Planning Commission\n\n\n BRIAN LEPKOWSKI v. PLANNING COMMISSION OF\n THE TOWN OF EAST LYME ET AL.\n (AC 46146)\n (AC 46159)\n Bright, C. J., and Moll and Westbrook, Js.\n\n Syllabus\n\n Pursuant to a provision of the East Lyme Subdivision Regulations (§ 4-14-\n 3), ‘‘[s]ubdivisions of 20 lots or more where more than 50% of the\n parcel(s) to be subdivided consist of environmentally sensitive resources\n such as wetlands, steep slopes (>25%), watercourses, flood hazard areas\n or ridge lines, shall be subject to an [Environmental Review Team]\n evaluation . . . .’’\n The plaintiff appealed to the Superior Court from a decision of the defendant\n Planning Commission of the Town of East Lyme, approving the defen-\n dant R Co.’s resubdivision application. The plaintiff, an abutting land-\n owner, opposed the application, claiming, inter alia, that, pursuant to\n § 4-14-3 of the subdivision regulations, the defendants were required to\n obtain an evaluation to assess the natural resources on the property\n before the application was approved. The defendants were unable to\n obtain such an evaluation prior to the approval of the application\n because, when the commission contacted E Co., the entity that per-\n formed the evaluations, E Co. informed the commission that it was\n forgoing such evaluations until it had time to develop a new protocol\n for the reviews. E Co. did not specify a date on which it would resume\n conducting the evaluations. In light of this, the commission determined\n that it was impossible for R Co. to comply with § 4-14-3, and it approved\n the application. The Superior Court sustained the plaintiff’s appeal only\n with respect to his claim regarding R Co.’s failure to obtain an evaluation.\n The court determined that § 4-14-3 applied to the application, that the\n evaluation was a mandatory requirement pursuant to § 4-14-3, that the\n subdivision regulations did not expressly convey to the commission the\n authority to waive the requirement, and that, therefore, the commission\n illegally waived § 4-14-3. On the granting of certification, the defendants\n filed separate appeals to this court. Held that the Superior Court improp-\n erly sustained the plaintiff’s appeal with respect to his claim premised\n on § 4-14-3 of the subdivision regulations: the commission complied\n with § 4-14-3 of the subdivision regulations, which required it to request\n an evaluation in connection with R Co.’s application and to give E Co.\n a reasonable opportunity to perform the evaluation but did not mandate\n that the evaluation had to be completed, as, in contrast to other provi-\n sions in § 4-14 of the East Lyme Subdivision Regulations, § 4-14-3 does\n not indicate that a report with respect to an evaluation must be submitted\n to the commission, nor does it restrict the commission’s ability to act\n\x0c0, 0 CONNECTICUT LAW JOURNAL Page 1\n\n\n\n\n 0 Conn. App. 1 ,0 3\n Lepkowski v. Planning Commission\n on the application if an evaluation is not performed or assign the weight\n that the commission must afford to such a report; moreover, the interpre-\n tation that the evaluation was not mandatory aligned with the broader\n dictionary definitions of the phrase ‘‘subject to’’ as used in § 4-14-3;\n furthermore, as a municipal legislative enactment, § 4-14-3 was entitled\n to a presumption of validity and construing the regulation to mandate\n the completion of an evaluation would have rendered the provision\n invalid as an impermissible delegation of authority by the commission\n to E Co.; accordingly, by requesting the evaluation, the commission\n complied with § 4-14-3 despite that E Co. did not perform the evaluation\n and indicated that it had no intention of doing so until it established a\n new protocol for such evaluations at some unspecified future date.\n Argued January 10—officially released April 30, 2024\n\n Procedural History\n\n Appeal from the decision of the named defendant\n approving a resubdivision application filed by the defen-\n dant Real Estate Service of Conn., Inc., brought to the\n Superior Court in the judicial district of New London\n and tried to the court, O’Hanlan, J.; judgment sus-\n taining in part the plaintiff’s appeal, from which the\n defendants, on the granting of certification, filed sepa-\n rate appeals to this court. Reversed in part; judgment\n directed.\n Mark S. Zamarka, for the appellant in Docket No.\n AC 46146 and the appellee in Docket No. AC 46159\n (named defendant).\n Matthew Ranelli, with whom was Chelsea C. McCal-\n lum, for the appellant in Docket No. AC 46159 and the\n appellee in Docket No. AC 46146 (defendant Real Estate\n Service of Conn., Inc.).\n Paul H. D. Stoughton, with whom, on the brief, was\n John F. Healey, for the appellee in both appeals (plain-\n tiff).\n Opinion\n\n MOLL, J. The defendants, the Planning Commission\n of the Town of East Lyme (commission) and Real Estate\n\x0cPage 2 CONNECTICUT LAW JOURNAL 0, 0\n\n\n\n\n 4 """, + { + "OpinionCluster": { + "date_filed": datetime.date(2024, 4, 30), + "date_filed_is_approximate": False, + "procedural_history": "Appeal from the decision of the named defendant approving a resubdivision application filed by the defen- dant Real Estate Service of Conn., Inc., brought to the Superior Court in the judicial district of New London and tried to the court, O'Hanlan, J.; judgment sus- taining in part the plaintiff's appeal, from which the defendants, on the granting of certification, filed sepa- rate appeals to this court. Reversed in part; judgment directed. Mark S. Zamarka, for the appellant in Docket No. AC 46146 and the appellee in Docket No. AC 46159 (named defendant). Matthew Ranelli, with whom was Chelsea C. McCal- lum, for the appellant in Docket No. AC 46159 and the appellee in Docket No. AC 46146 (defendant Real Estate Service of Conn., Inc.). Paul H. D. Stoughton, with whom, on the brief, was John F. Healey, for the appellee in both appeals (plain- tiff).", + "syllabus": "Pursuant to a provision of the East Lyme Subdivision Regulations (§ 4-14- 3), ''[s]ubdivisions of 20 lots or more where more than 50% of the parcel(s) to be subdivided consist of environmentally sensitive resources such as wetlands, steep slopes (>25%), watercourses, flood hazard areas or ridge lines, shall be subject to an [Environmental Review Team] evaluation . . . .'' The plaintiff appealed to the Superior Court from a decision of the defendant Planning Commission of the Town of East Lyme, approving the defen- dant R Co.'s resubdivision application. The plaintiff, an abutting land- owner, opposed the application, claiming, inter alia, that, pursuant to § 4-14-3 of the subdivision regulations, the defendants were required to obtain an evaluation to assess the natural resources on the property before the application was approved. The defendants were unable to obtain such an evaluation prior to the approval of the application because, when the commission contacted E Co., the entity that per- formed the evaluations, E Co. informed the commission that it was forgoing such evaluations until it had time to develop a new protocol for the reviews. E Co. did not specify a date on which it would resume conducting the evaluations. In light of this, the commission determined that it was impossible for R Co. to comply with § 4-14-3, and it approved the application. The Superior Court sustained the plaintiff's appeal only with respect to his claim regarding R Co.'s failure to obtain an evaluation. The court determined that § 4-14-3 applied to the application, that the evaluation was a mandatory requirement pursuant to § 4-14-3, that the subdivision regulations did not expressly convey to the commission the authority to waive the requirement, and that, therefore, the commission illegally waived § 4-14-3. On the granting of certification, the defendants filed separate appeals to this court. Held that the Superior Court improp- erly sustained the plaintiff's appeal with respect to his claim premised on § 4-14-3 of the subdivision regulations: the commission complied with § 4-14-3 of the subdivision regulations, which required it to request an evaluation in connection with R Co.'s application and to give E Co. a reasonable opportunity to perform the evaluation but did not mandate that the evaluation had to be completed, as, in contrast to other provi- sions in § 4-14 of the East Lyme Subdivision Regulations, § 4-14-3 does not indicate that a report with respect to an evaluation must be submitted to the commission, nor does it restrict the commission's ability to act on the application if an evaluation is not performed or assign the weight that the commission must afford to such a report; moreover, the interpre- tation that the evaluation was not mandatory aligned with the broader dictionary definitions of the phrase ''subject to'' as used in § 4-14-3; furthermore, as a municipal legislative enactment, § 4-14-3 was entitled to a presumption of validity and construing the regulation to mandate the completion of an evaluation would have rendered the provision invalid as an impermissible delegation of authority by the commission to E Co.; accordingly, by requesting the evaluation, the commission complied with § 4-14-3 despite that E Co. did not perform the evaluation and indicated that it had no intention of doing so until it established a new protocol for such evaluations at some unspecified future date. Argued January 10—officially released April 30, 2024", + "judges": "Bright; Moll; Westbrook", + } + }, + ), + ], + "juriscraper.opinions.united_states.state.vt": [ + ( + # https://www.courtlistener.com/api/rest/v3/opinions/10566596/ + """NOTICE: This opinion is subject to motions for reargument under V.R.A.P. 40 as well as formal\nrevision before publication in the Vermont Reports. Readers are requested to notify the Reporter\nof Decisions by email at: JUD.Reporter@vtcourts.gov or by mail at: Vermont Supreme Court, 109\nState Street, Montpelier, Vermont 05609-0801, of any errors in order that corrections may be made\nbefore this opinion goes to press.\n\n\n 2024 VT 52\n\n No. 23-AP-226\n\nState of Vermont """, + { + "Citation": { + "volume": "2024", + "reporter": "VT", + "page": "52", + "type": 8, + } + }, + ) + ], + "juriscraper.opinions.united_states.state.vt_criminal": [ + ( + # https://www.courtlistener.com/api/rest/v3/clusters/7854285/ + """NOTICE: This opinion is subject to motions for reargument under V.R.A.P. 40 as well as formal\nrevision before publication in the Vermont Reports. Readers are requested to notify the Reporter\nof Decisions by email at: JUD.Reporter@vermont.gov or by mail at: Vermont Supreme Court, 109\nState Street, Montpelier, Vermont 05609-0801, of any errors in order that corrections may be made\nbefore this opinion goes to press.\n\n\n 2022 VT 35\n\n No. 2021-059\n\nState of Vermont Supreme Court\n\n On Appeal from\n v. Superior Court, Chittenden Unit,\n Criminal Division\n\nRandy F. Therrien """, + { + "Citation": { + "volume": "2022", + "reporter": "VT", + "page": "35", + "type": 8, + } + }, + ) + ], + "juriscraper.opinions.united_states.state.ny": [ + ( + # https://www.nycourts.gov/reporter/3dseries/2024/2024_04236.htm + '

    \n\nStefanik v Hochul (2024 NY Slip Op 04236)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Stefanik v Hochul
    2024 NY Slip Op 04236
    Decided on August 20, 2024
    Court of Appeals
    Wilson, Ch. J.
    Published by New York State Law Reporting Bureau pursuant to Judiciary Law § 431.
    This opinion is uncorrected and subject to revision before publication in the Official Reports.
    \n

    \nDecided on August 20, 2024\n
    \n
    No. 86 \n\n

    [*1]Elise Stefanik, et al., Appellants,\n

    v

    Kathy Hochul, & c., et al., Respondents.\n


    \n

    \n

    Michael Y. Hawrylchak, for appellants.

    \n

    Jeffrey W. Lang, for respondents Kathy Hochul et al.

    \n

    Nicholas J. Faso, for respondent Peter S. Kosinski.

    \n

    Aria C. Branch, for respondents Democratic Congressional Campaign Committee et al.

    \n

    Public Interest Legal Foundation, Common Cause New York, Richard Briffault, et al., Center for Election Confidence, Government Justice Center, Inc., amici curiae.

    \n

    \n\n
    \n', + { + "Docket": { + "docket_number": "No. 86", + }, + }, + ) + ], + "juriscraper.opinions.united_states.state.nyappdiv_1st": [ + ( + # https://www.nycourts.gov/reporter/3dseries/2024/2024_04182.htm + "Matter of Michael F.\n2024 NY Slip Op 04182\nDecided on August 08, 2024\nAppellate Division, First Department\nPublished by New York State Law Reporting Bureau pursuant to Judiciary Law § 431.\nThis opinion is uncorrected and subject to revision before publication in the Official Reports.\n\n\nDecided and Entered: August 08, 2024\nBefore: Kern, J.P., Oing, Kapnick, Higgitt, Michael, JJ.\n\n
    Docket No. D-01854/23 Appeal No. 2333 Case No. 2023-05467\n\n[*1]In the Matter of Michael F., A Person Alleged to be a Juvenile Delinquent, Appellant.", + { + "Docket": { + "docket_number": "Docket No. D-01854/23 Appeal No. 2333 Case No. 2023-05467", + }, + }, + ) + ], + "juriscraper.opinions.united_states.state.nyappdiv_2nd": [ + ( + # https://www.nycourts.gov/reporter/3dseries/2024/2024_04118.htm + "\nAWR Group, Inc. v 240 Echo Place Hous. Dev. Fund Corp.\n2024 NY Slip Op 04118\nDecided on August 7, 2024\nAppellate Division, Second Department\nPublished by New York State Law Reporting Bureau pursuant to Judiciary Law § 431.\nThis opinion is uncorrected and subject to revision before publication in the Official Reports.\n\n\nDecided on August 7, 2024 SUPREME COURT OF THE STATE OF NEW YORK Appellate Division, Second Judicial Department\nMARK C. DILLON, J.P.\nCHERYL E. CHAMBERS\nLARA J. GENOVESI\nLOURDES M. VENTURA, JJ.\n\n
    2023-03266\n
    (Index No. 705239/20)\n\n[*1]AWR Group, Inc., respondent,\n", + { + "Docket": { + "docket_number": "2023-03266; Index No. 705239/20", + }, + }, + ) + ], + "juriscraper.opinions.united_states.state.nyappdiv_3rd": [ + ( + # https://www.nycourts.gov/reporter/3dseries/2024/2024_04173.htm + "\nMatter of Attorneys in Violation of Judiciary Law § 468-a (Miyazaki)\n2024 NY Slip Op 04173\nDecided on August 8, 2024\nAppellate Division, Third Department\nPublished by New York State Law Reporting Bureau pursuant to Judiciary Law § 431.\nThis opinion is uncorrected and subject to revision before publication in the Official Reports.\n\n\nDecided and Entered:August 8, 2024\n\n
    PM-154-24\n\n[*1]In the Matter of Att", + { + "Docket": { + "docket_number": "PM-154-24", + }, + }, + ), + ( + # https://www.nycourts.gov/reporter/3dseries/2024/2024_04171.htm + "\nMatter of First United Methodist Church in Flushing v Assessor, Town of Callicoon\n2024 NY Slip Op 04171\nDecided on August 8, 2024\nAppellate Division, Third Department\nPublished by New York State Law Reporting Bureau pursuant to Judiciary Law § 431.\nThis opinion is uncorrected and subject to revision before publication in the Official Reports.\n\n\nDecided and Entered:August 8, 2024\n\n
    CV-23-1597\n\n", + { + "Docket": { + "docket_number": "CV-23-1597", + }, + }, + ), + ], + "juriscraper.opinions.united_states.federal_special.uscfc_vaccine": [ + ( + # https://ecf.cofc.uscourts.gov/cgi-bin/show_public_doc?2018vv1562-53-0= / https://www.courtlistener.com/api/rest/v3/opinions/5119138/ + " In the United States Court of Federal Claims\n OFFICE OF SPECIAL MASTERS\n\n*********************\nLINDA WIRTSHAFTER, *\n * No. 18-1562V\n Petitioner, * Special Master Christian J. Moran\n *\nv. * Filed: September 22, 2021\n *\nSECRETARY OF HEALTH * Attorneys’ fees and costs; remand\nAND HUMAN SERVICES, *\n *\n Respondent. *\n*********************\nHoward D. Mishkind, Mishkind Law Firm Co., L.P.A., Beachwood, OH, for\npetitioner;\nRyan D. Pyles, United States Dep’t of Justice, Washington, DC, for respondent.\n\nPUBLISHED DECISION AWARDING ATTORNEYS’ FEES AND COSTS1\n\n An April 16, 2021 decision found that Linda Wirtshafter was not eligible for\nan award of attorneys’ fees and costs because she did not establish that a\nreasonable basis supported the claim that", + { + "OpinionCluster": { + "precedential_status": "Published", + }, + }, + ), + ( + # https://www.courtlistener.com/api/rest/v3/opinions/4184749/ + " In the United States Court of Federal Claims\n OFFICE OF SPECIAL MASTERS\n No. 15-1404V\n (not to be published)\n\n*****************************\n *\nJEFFREY TREADWAY, * Special Master Corcoran\n *\n *\n Petitioner, * Filed: May 16, 2017\n *\n v. * Decision; Attorney’s Fees and Costs.\n *\n *\nSECRETARY OF HEALTH AND *\nHUMAN SERVICES, *\n *\n Respondent. *\n *\n*****************************\n\nWilliam E. Cochran, Black McLaren, et al., P.C., Memphis, TN, for Petitioner.\n\nAlexis B. Babcock, U. S. Dep’t of Justice, Washington, DC, for Respondent.\n\n DECISION GRANTING ATTORNEY’S FEES AND COSTS 1\n\n On November 11, 2015, Jeffrey Treadway filed a petition seeking compensation under the\nNational Vaccine Injury Compensation Program (the “Vaccine Program”), alleging that he suffers\nfrom Bell’s palsy as a result of his October 10, 2014 receipt of the influenza vaccine.2 The parties\neventually filed a stipulation for damages on February 14, 2017 (ECF No. 24), which I adopted as\nmy dec", + {}, + ), + ], + "juriscraper.opinions.united_states.state.sc": [ + ( + # https://www.courtlistener.com/api/rest/v4/opinions/10744852/ + " THE STATE OF SOUTH CAROLINA\n In The Supreme Court\n\n In the Matter of Lawrence J. Purvis, Jr., Respondent.\n\n Appellate Case No. 2024-000453\n\n\n Opinion No. 28244\n Submitted October 30, 2024 – Filed November 20, 2024\n\n\n", + { + "Docket": { + "docket_number": "2024-000453", + }, + }, + ) + ], + "juriscraper.opinions.united_states.state.sc_u": [ + ( + # https://www.courtlistener.com/api/rest/v4/opinions/10732544/ + "THIS OPINION HAS NO PRECEDENTIAL VALUE. IT SHOULD NOT BE\n CITED OR RELIED ON AS PRECEDENT IN ANY PROCEEDING\n EXCEPT AS PROVIDED BY RULE 268(d)(2), SCACR.\n\n THE STATE OF SOUTH CAROLINA\n In The Supreme Court\n\n Robin Allen, Petitioner,\n\n v.\n\n Richard Winn Academy, Kristen Chaisson (in her\n individual capacity and as Head of School), and John\n Ryan II, Respondents.\n\n Appellate Case No. 2023-000805\n\n\n\n ON WRIT OF CERTIORARI TO THE COURT OF APPEALS\n\n\n Appeal from Fairfield County\n Eugene C. Griffith, Jr., Circuit Court Judge\n\n\n Memorandum Opinion No. 2024-MO-024\n ", + { + "Docket": { + "docket_number": "2023-000805", + }, + }, + ) + ], + "juriscraper.opinions.united_states.state.scctapp_u": [ + ( + # https://www.courtlistener.com/api/rest/v4/opinions/10756176/ + "THIS OPINION HAS NO PRECEDENTIAL VALUE. IT SHOULD NOT BE\n CITED OR RELIED ON AS PRECEDENT IN ANY PROCEEDING\n EXCEPT AS PROVIDED BY RULE 268(d)(2), SCACR.\n\n THE STATE OF SOUTH CAROLINA\n In The Court of Appeals\n\n South Carolina Department of Social Services,\n Respondent,\n\n v.\n\n Corey M. Nelson, Appellant.\n\n In the interest of a minor under the age of eighteen.\n\n Appellate Case No. 2024-000816\n\n\n\n Appeal From Richland County\n M. Scott Rankin, Family Court Judge\n\n\n ", + { + "Docket": { + "docket_number": "2024-000816", + }, + }, + ) + ], + "juriscraper.opinions.united_states.state.scctapp": [ + ( + # https://www.courtlistener.com/api/rest/v4/opinions/10744853/ + " THE STATE OF SOUTH CAROLINA\n In The Court of Appeals\n\n Crescent Homes SC, LLC, Appellant,\n\n v.\n\n CJN, LLC, Respondent.\n\n Appellate Case No. 2022-000897\n\n\n\n Appeal From Greenville County\n Charles B. Simmons, Jr., Master-in-Equity\n\n\n Opinion No. 6093\n Heard May 9, 2024 – Filed November 20, 2024\n\n\n AFFIRMED\n\n\n Ellis Reed-Hill Lesemann and Benjamin Houston Joyce,\n both of Lesemann & Associates, LLC, of Charleston, for\n ", + { + "Docket": { + "docket_number": "2022-000897", + }, + }, + ) + ], } def test_extract_from_text(self): @@ -155,7 +761,6 @@ def test_extract_from_text_properly_implemented(self): mod = __import__( f"{package}.{module}", globals(), locals(), [module] ) - site = mod.Site() if mod.Site.extract_from_text == OpinionSite.extract_from_text: # Method is not overridden, so skip it. continue diff --git a/tests/local/test_ScraperSpotTest.py b/tests/local/test_ScraperSpotTest.py index ec6154a26..45b7abeea 100644 --- a/tests/local/test_ScraperSpotTest.py +++ b/tests/local/test_ScraperSpotTest.py @@ -2,7 +2,12 @@ import re import unittest -from juriscraper.opinions.united_states.state import colo, mass, massappct, nh +from juriscraper.opinions.united_states.state import ( + colo, + mass, + massappct, + nh_p, +) from juriscraper.oral_args.united_states.federal_appellate import ca6